.testimonial_wrapper {
    display: flex;
    gap: 36px;
}
.testimonial_wrapper .image_wrapper {
    width: 33%;
}
.testimonial_wrapper .content_wrapper {
    width: 64%;
}

.testimonial_wrapper .image_wrapper img {
    width: 100%;
    height: 100%;
}
.testimonial-swiper {
    padding-top: 30px;
    overflow: hidden;
}
.testimonial-swiper .swiper-slide {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.testi_title {
    color: var(--primary-blue);
    font-family: var(--outfit-bold);
    font-size: var(--font-30);
    line-height: 37px;
}
.testi_desc {
    color: var(--primary-blue);
    font-family: var(--outfit-regular);
    font-size: var(--font-20);
    line-height: 25px;
    margin: 0;

    display: flex;
    flex-direction: column;
    gap: 20px;
}
.testi_author {
    color: var(--primary-blue);
    font-family: var(--outfit-bold);
    font-size: var(--font-20);
    line-height: 25px;
    width: 335px;
    max-width: 100%;
    margin-left: auto;
}

.testi-swiper-btn {
    display: flex;
    justify-content: center;
    gap: 26.25px;
    height: 100%;
    padding-top: 50px;
}
.testi-swiper-button-prev, 
.testi-swiper-button-next {
    top: unset;
    bottom: unset;
    left: unset;
    right: unset;
    position: relative;
    display: block;
    height: 56.25px;
    width: 56.25px;
}

@media(max-width:992px) {
    .testimonial_wrapper {
        flex-wrap: wrap;
    }
    .testimonial_wrapper .image_wrapper,
    .testimonial_wrapper .content_wrapper {
        width: 100%;
    }
}
@media(max-width: 768px) {
    .testimonial_block .container {
        padding: 0 !important;
    }
    .testimonial_wrapper .content_wrapper {
        padding-left: 35px !important;
        padding-right: 35px !important;
    }
}