.testimonials-slider-wrapper {
    padding: 0 40px 0 0;
}

.testimonials-slider-wrapper .tns-outer {
    position: relative;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1024px) {
    .testimonials-slider-wrapper {
        padding: 0 40px;
    }
}

@media (max-width: 600px) {
    .testimonials-slider-wrapper {
        padding: 0 20px;
    }
}

.testimonials-slider {
    color: #000;
}

.testimonials-slider .testimonial-text {
    font-style: italic;
    font-size: 17px;
}

.testimonials-slider .testimonial-info-wrapper {
    display: flex;
    gap: 30px;
}

.testimonials-slider .testimonial-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
}

.testimonials-slider .testimonial-image {
    max-width: 77px;
    max-height: 77px;
    min-width: 77px;
    min-height: 77px;
    height: 100%;
    width: 100%;
    border-radius: 77px;
    overflow: hidden;
}

.testimonials-slider .testimonial-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonials-slider .testimonial-name {
    font-weight: 700;
}

.testimonials-slider .testimonial-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.testimonials-slider-wrapper .tns-nav{
    position: relative;
    max-width: calc(100% - 2 * 77px - 40px);
    transform: translate(-50%, -57.5px);
    left: 50%;
    bottom: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
    align-content: center;
    order: 1;
}

@media (max-width: 460px) {
    .testimonials-slider-wrapper .tns-nav{
        margin-top: 20px;
        max-width: 100%;
        transform: translate(-50%, 0);
    }
}

.testimonials-slider-wrapper .tns-nav button{
    appearance: none;
    width: 100%;
    height: 100%;
    min-width: 30px;
    min-height: 30px;
    max-width: 30px;
    max-height: 30px;
    border-radius: 50px;
    background-color: #fff;
    border: 5px solid #6f6f6f;
}

.testimonials-slider-wrapper .tns-nav button.tns-nav-active {
    background-color: #fee235;
    border-color: #fee235;
}

.testimonials-slider-wrapper .tns-controls {
    margin-top: 50px;
    display: flex;
    justify-content: space-between;
}

.testimonials-slider-wrapper .tns-controls button{
    appearance: none;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: 100%;
    min-width: 82px;
    min-height: 82px;
    max-width: 82px;
    max-height: 82px;
    border-radius: 100px;
    font-size: 0;
    color: transparent;
    background-color: #fee235;
}

.testimonials-slider-wrapper .tns-controls button::after{
    content: "";
    width: 28.74px;
    height: 23px;
}

.testimonials-slider-wrapper .tns-controls button[data-controls="prev"]::after {
    background-image: var(--arrow);
}

.testimonials-slider-wrapper .tns-controls button[data-controls="next"]::after {
    background-image: var(--arrow);
    transform: rotateZ(180deg);
}