.testimonials {
    width: 100%;
    height: 400px;
}

.testimonials .container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 80px;
}

.testimonials-slider {
    display: flex;
    justify-content: center;
    width: 1000px;   
    height: 300px;
    padding-right: 50px;
}

.testimonials-wrapper {
    position: relative;
    display: flex;
    column-gap: 10px;
}

.swiper {
  box-sizing: border-box;
}

.swiper-slide + .testimonials-slide {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    max-width: 360px;
    width: 100%;
    padding: 0 30px;
    opacity: .4;
    transform: scale(.8);
    transition: .6s;
}

.slide-header {
    font-size: 24px;
    font-weight: 700;
    margin-top: 20px;
}

.slide-description {
    text-align: center;
    margin-top: 8px;
}

.testimonials-slide .img {
    width: 120px;
    height: 120px;
}

.testimonials-slide .img > img {
    width: 100%;
}

.swiper-slide + .testimonials-slide + .swiper-slide-active {
    opacity: 1;
    transform: scale(1.1);
}

.testimonials-slide {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

@media (max-width: 768px) {
    .testimonials-slider {
        padding-right: 0px;
    }

    .swiper-slide + .testimonials-slide {
        opacity: 1;
    }

    .swiper-slide + .testimonials-slide {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        max-width: auto;
        width: 90%;
        padding: 0 50px;
    }

}

#testimonial-copy p + p {
    margin-top: 24px;
}
