.testimonials {
    padding: 0;
    height: 550px;
    text-align: center;
    position: relative;
    background-color: #EDDCD5;
    color: #333;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
    margin-top: 60px;
}

.swiper {
    width: 100%;
    height: 100%;
    background-color: #EDDCD5;
    position: relative;
}

.swiper__figure-left {
    position: absolute;
    width: 53%;
    height: 100%;
    background-image: url('../images/about-us-page/testimonials/Testimonial-left.svg');
    background-size: 66%;
    background-repeat: no-repeat;
    background-position: top left;
    top: 0;
    left: 0;
}

.swiper__figure-right {
    position: absolute;
    width: 38%;
    height: 100%;
    background-image: url('../images/about-us-page/testimonials/Testimonial-right.svg');
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom right;
    right: 0;
    bottom: 0;
}

.swiper__figure-woman {
    position: absolute;
    width: 26%;
    height: 65%;
    background-image: url('../images/about-us-page/testimonials/Woman-testimonial.svg');
    background-size: 250px;
    background-repeat: no-repeat;
    background-position: bottom right;
    right: 3%;
    bottom: 23px;
    z-index: 1;
}

.swipe__title {
    position: absolute;
    top: 88px;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 28px;
    line-height: 36px;
}

.swiper-slide {
    font-size: 22px;
    line-height: 32px;
    font-weight: 400;
    color: #777;
    padding: 137px 90px 96px 90px;
}

.swipe__slide-container {
    background: white;
    height: 100%;
    text-align: center;
    padding: 20px 80px;
    box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.05);
    border-radius: 20px;
    width: 80%;
    margin: auto;
    position: relative;
    display: table;
}

.swipe__text {
    height: 260px;
    overflow-y: auto;
    margin: 0;
    display: table-cell;
    vertical-align: middle;
}

.swiper-horizontal>.swiper-pagination-bullets {
    bottom: 40px;
}

.swiper-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
}

.swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background: red;
    /* rgba(255, 255, 255, 0.8); */
    bottom: 50px;
    margin: 6px !important;
}

.swiper-pagination-bullet-active {
    background-color: white;
    width: 15px;
    height: 15px;
}

.swiper-button-prev,
.swiper-button-next {
    border-radius: 50%;
    width: 48px;
    height: 48px;
    background-image: url('../images/home-page/slider/arrow.png');
    background-color: #F2EAE7;
    background-size: 28px;
    background-repeat: no-repeat;
    background-position: center;

}

.swiper-button-next {
    transform: rotate(180deg);
    right: 60px;
}

.swiper-button-prev {
    left: 60px;
}

.swiper-button-next::after,
.swiper-button-prev::after {
    content: '';
}

.swiper__quote {
    background-image: url('../images/about-us-page/testimonials/Quote-marks.svg');
    position: absolute;
    width: 70px;
    height: 70px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100%;
}

.swiper__quote--left {
    top: 9px;
    left: 15px;
}

.swiper__quote--right {
    bottom: 6px;
    right: 8px;
    transform: rotate(180deg);
}


@media screen and (min-width: 1540px) {
    .testimonials {
        height: auto;
    }

    .swiper__figure-woman {
        right: 4%;
    }
}


@media screen and (max-width: 1024px) {
    .swiper-slide {
        padding: 120px 50px 96px 50px;
    }

    .swipe__slide-container {
        padding: 40px 80px;
        width: 92%;
    }

    .swiper .section-title {
        top: 66px;
    }

    .swiper-figure-left {
        background-size: 100%;
    }

    .swiper-figure-right {
        width: 57%;
    }

    .swiper__figure-woman {
        right: 0%;
    }
}

@media screen and (max-width: 800px) {
    .swiper-slide {
        font-size: 20px;
        line-height: 30px;
    }

    .figure-woman {
        right: 0%;
    }
}

@media screen and (max-width: 480px) {
    .testimonials {
        height: 660px;
    }

    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }

    .swiper-horizontal>.swiper-pagination-bullets {
        bottom: 18px;
    }

    .swiper-slide {
        padding: 80px 20px 110px 20px;
        font-size: 18px;
        line-height: 28px;
    }

    .swipe__slide-container {
        padding: 65px 20px;
        width: 100%;
    }

    .swipe__title {
        top: 48px;
        font-size: 26px;
        line-height: 34px;
    }

    .swiper__quote {
        width: 50px;
        height: 50px;
    }

    .swiper__figure-woman {
        display: none;
    }
}