section {
    padding: 2em 5em;
}

/*Panel 2*/
.panel-2 {
    display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
}

.panel-2 div {
    width: 100%;
        max-width: 600px;
}

.panel-2 div h2 {
    text-align: center;
}

/*Panel 3*/
.panel-3 {
    display: flex;
        align-items: flex-start;
}

.panel-3 img {
    height: auto;
    object-fit: cover;
    width: calc(100% / 3);
}

/*Panel 4*/
.panel-4-title {
    text-align: center;
    padding-bottom: 5px;
}

.panel-4-section {
    display: flex;
        gap: 1rem;
        justify-content: space-around;
        align-items: center;
    padding: 2em 0;
}

.panel-4-section h2 {
    text-align: center;
}

.panel-4-section img, .panel-4-section-text {
    width: 40%;
}

.order-reverse img {
    order: 2;
}

/*Panel 5*/
.panel-5 {
    background-color: var(--whitesmoke);
    display: flex;
        align-items: center;
    /* margin: 20px; */
}

.panel-5 img {
    padding: 10px;
    width: 50%;
}

.panel-5 div {
    padding: 10px;
}

/*Media Queries*/
@media only screen and (max-width: 1200px) {
    .panel-5 {
        flex-direction: column;
    }

    .panel-5 img {
        width: 100%;
    }
}

@media only screen and (max-width:992px) {
    .panel-4-section {
        flex-direction: column;
            justify-content: start;
    }

    .order-reverse img {
        order: -1;
    }

    .panel-4-section-text {
        width: 100%;
    }

    .panel-4-section img {
        width: 100%;
            max-width: 480px;
    }

    .panel-4 {
        flex-direction: column;
    }
}