.testimonials {
    padding: 4rem;
    padding-top: calc(var(--header-height) + 2rem) !important;

    padding-left: 20%;
    padding-right: 20%;

    text-align: center;
}

.testimonials .horizontal {
    display: flex;
    flex-direction: row;
    gap: 5rem;
    margin-top: 2rem;
}

.testimonials img {
    width: 100%;
}

.testimonials .content {
    padding: 1rem;
}

.testimonials .left,
.testimonials .right {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    flex: 1;

    background-color: var(--gold);
    border-radius: 10px;
    padding: 2rem;

    box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}

.testimonials .content {
    flex: 1;
}

.quote {
    font-size: 2rem;
    font-weight: 600;
}

@media only screen and (max-width: 865px) {
    .testimonials {
        padding-left: 10%;
        padding-right: 10%;
    }

    .testimonials .horizontal {
        flex-direction: column;
    }

    .testimonials .left,
    .testimonials .right {
        padding: 1rem;
    }
}