.testimonials-section {
    background-color: var(--main-color);
}

.testimonials-block {
    width: 1230px;
    margin: 0 auto;
    padding: 15px 0;
    position: relative;
}

.testimonials__list {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
    display: flex;
}

.testimonials__item {
    width: 100%;
}

.testimonial {
    display: flex;
    align-items: center;
}

.testimonial__photo {
    min-width: 107px;
    max-width: 107px;
    height: 107px;
    margin-right: 40px;
}

.testimonial__photo img {
    width: 100%;
    border-radius: 50%;
    border: 3px solid #ffffff;
    object-fit: contain;
}

.testimonial__text {
    padding: 10px 20px 25px 40px;
    position: relative;
    letter-spacing: 0.9px;
    line-height: 26px;
    font-weight: 400;
    font-size: 14px;
    color:#ffffff;

}
.testimonial__text::before {
    content: '';
    background: transparent url(../../../images/quote.png) no-repeat scroll center bottom;
    width: 40px;
    height: 35px;
    position: absolute;
    top: -10px;
    display: block;
    left: -5px;
}

.testimonial__name-link {
    letter-spacing: 0.8px;
    color: #497015;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 500;
    position: relative;
    padding-left: 20px;
}
.testimonial__name {
    padding-left: 40px;
    position: relative;
}

.testimonial__name::before {
    content: "";
    height: 1px;
    width: 10px;
    border: 1px solid #497015;
    position: absolute;
    top: 10px;
    left: 32px;
    background-color: #497015;
}


.testimoneals-slider__btn {
    background-color: transparent;
    width: 30px;
    height: 30px;
    top: 40%;
    position: absolute;
    border: none;
}

.testimoneals-slider__btn::before {
    font-size: 35px;
    font-family: "FontAwesome";
    color: #abc493;
    top: 5px;
}

.testimoneals-slider__btn--left {
    left: 0;
}

.testimoneals-slider__btn--left::before {
    content: "\f104";
    left: 10px;
}

.testimoneals-slider__btn--right {
    right: 0;
}

.testimoneals-slider__btn--right::before {
    content: "\f105";
    right: 10px;
}

.testimoneals-slider__btn:hover::before {
    color: #497015;
}

@media(max-width: 1200px) {
    .testimonials-block {
        width: 90%;
    }
    .testimonial__photo {
        width: 50%;
        height: auto;
    }
}

@media(max-width: 767px) {
    .testimonial {
        flex-direction: column;
    }
    .testimonial__photo {
        margin-right: 0;
        margin-bottom: 20px;
        width: 107px;
        height: 107px;
    }
}
