#slide1 {
    padding-left: 4rem;
    padding-bottom: 4rem;
    background: url("../images/slide3.jpg");
    background-size: cover;
    background-position: center;
}

.sliding-box {
    height: 70vh;
}

.client-section {
    display: flex;
    justify-content: space-evenly;
    align-items: center;
    gap: 3rem;
    padding: 5rem 2rem;
}

.client-section:nth-child(even) {
    flex-direction: row-reverse;
}

.client-section-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    align-items: baseline;
    max-width: 700px;
}

.client-section-content img {
    width: 200px;
}

.feedback {
    padding: 1rem 1rem;
    border: 1px solid black;
    font-style: italic;
    border-radius: 8px;
    font-weight: 300;
    font-size: 14px;
}

#footer {
    margin-top: 0;
}

@media screen and (max-width:1200px) {
    .client-section-image img {
        width: 300px;
    }
}

@media screen and (max-width:850px) {
    .client-section-content img {
        width: 140px;
    }

    .client-section {
        padding: 3rem 2rem;
    }
}

@media screen and (max-width:750px) {
    .client-section-content img {
        width: 100px;
    }

    .feedback {
        font-size: 8px;
    }

    .client-section-image img {
        width: 200px;
    }

    .special-text {
        font-size: 10px;
    }
}

@media screen and (max-width:600px) {
    .client-section-image img {
        width: 150px;
    }

    .special-text {
        font-size: 8px;
    }

    .sliding-box {
        height: 60vh;
    }

    #footer {
        padding-top: 1rem;
    }

    #footer .credit {
        font-size: 8px;
    }
}

@media screen and (max-width:500px) {
    .sliding-box {
        height: 50vh;
    }

    .client-section-content img {
        width: 70px;
    }

    .client-section-image img {
        width: 150px;
    }
}

@media screen and (max-width:450px) {
    .client-section {
        flex-direction: column !important;
        font-size: 12px
    }

    .client-section-image img {
        width: 250px;
    }
}