.testimonials_slider {
    position: relative;
    padding: 100px 0; overflow: hidden;
}

.testimonials__slider {
    max-width: 990px;
    padding: 70px 30px;
    background-position: 55% 25% !important;
    background-repeat: no-repeat !important;
    overflow: hidden;
}

.testimonials_slider__title h2 {
    font-weight: 700;
    font-size: 48px;
    line-height: 59px;
    margin-bottom: 30px;
}

.swiper-slide {
    visibility: hidden;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
    opacity: 0;
}

.swiper-slide-active {
    visibility: visible;
    opacity: 1;
    transition: all .3s ease;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -ms-transition: all .3s ease;
    -o-transition: all .3s ease;
}

.testimonials__slider_item {
    position: relative;
    max-width: 650px;
    /* margin: 0 auto; */
}

.slider_item__content {
    max-width: 650px;
    padding: 0 40px 50px;
    background: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgb(0 0 0 / 15%);
    text-align: center;
}

.slider_item__bg1 {
    position: absolute;
    content: '';
    width: calc(100% + 40px);
    height: 90%;
    top: 5%;
    z-index: -1;
    background: #ffffff;
    left: -20px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgb(0 0 0 / 15%);
}

.slider_item__bg2 {
    position: absolute;
    content: '';
    width: calc(100% + 80px);
    height: 80%;
    top: 10%;
    z-index: -2;
    background: #ffffff;
    left: -40px;
    border-radius: 10px;
    box-shadow: 0px 4px 12px rgb(0 0 0 / 15%);
}

.slider_item__author_image {
    position: relative;
    display: block;
    max-width: 100px;
    margin: 0 auto 23px;
}

.slider_item__author_image img {
    margin-top: -50px;
}

.slider_item__author_name {
    font-weight: 700;
    font-size: 24px;
    line-height: 29px;
    color: #A0C1D1;
    margin-bottom: 15px;
}

.slider_item__testimonial_content {
    font-size: 16px;
    line-height: 28px;
    color: #3d3d3d;
}

.swiper-pagination {
    position: relative;
    display: flex;
    align-items: center;
    gap: 20px;
    justify-content: center;
    margin: 20px 0 0;
}

.swiper-pagination-bullet {
    display: block;
    width: 14px;
    height: 14px;
    background: transparent;
    border-radius: 50%;
    border: 1px solid #c4c4c4;
}

.swiper-pagination-bullet-active {
    background: #c4c4c4;
}

.swiper-button {
    position: absolute;
    width: 69px;
    height: 69px;
    box-shadow: 0px 0px 10px rgb(0 0 0 / 10%);
    border-radius: 50px;
    top: 50%;
    transform: translate(0, -50%);
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    z-index: 9;
}

.swiper-button-next {
    right: 0;
}

.swiper-button-prev {
    left: 0;
}

.swiper-button svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    height: 90%;
}

@media(max-width: 769px) {
    .testimonials_slider {
        position: relative;
        padding: 50px 0 0px;
    }
    
    .swiper-button {
        display: none;
    }
}