.text-slider-wrapper-2 {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    overflow: hidden;
    position: relative;
    z-index: 1;
}
.text-slider-wrapper-2 .text-item-2 {
    display: flex;
    gap: 30px;
    will-change: transform;
    transform: translateX(0);
    white-space: nowrap;
    animation: marquee_text 15s linear infinite;
    padding-right: 30px;
}
@media only screen and (min-width: 992px) {
    .text-slider-wrapper-2 .text-item-2 {
        gap: 40px;
        padding-right: 40px;
    }
}
@media only screen and (min-width: 1200px) {
    .text-slider-wrapper-2 .text-item-2 {
        gap: 50px;
        padding-right: 50px;
    }
}
.text-slide {
    display: flex;
    gap: 20px;
    align-items: center;
}
.text-slide:hover .text:before {
    width: 100%;
}
.text-slide:hover svg {
    fill: #121212;
}
@media only screen and (min-width: 768px) {
    .text-slide span {
        margin-top: 10px;
    }
}
.text-slide .text {
    font: 400 35px "Epilogue", sans-serif;
    text-shadow: 1px 0 0 black, 0 1px 0 black, -1px 0 0 black, 0 -1px 0 black;
    color: #7FE85A;
    font-style: italic;
    position: relative;
    cursor: pointer;
}
@media only screen and (min-width: 576px) {
    .text-slide .text {
        font-size: 40px;
    }
}
@media only screen and (min-width: 768px) {
    .text-slide .text {
        font-size: 45px;
    }
}
@media only screen and (min-width: 992px) {
    .text-slide .text {
        font-size: 70px;
    }
}
@media only screen and (min-width: 1200px) {
    .text-slide .text {
        font-size: 80px;
    }
}
@media only screen and (min-width: 1400px) {
    .text-slide .text {
        font-size: 100px;
    }
}
.text-slide .text:before {
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
    font-style: italic;
    width: 0;
    color: #121212;
    white-space: nowrap;
    content: attr(data-hover);
    transition: all 0.5s cubic-bezier(0.17, 0.67, 0.32, 0.87);
}
.text-slider-two-active .swiper-wrapper {
    transition-timing-function: linear;
}
.testimonial-six-top {
    margin-bottom: 40px;
}
@media only screen and (min-width: 768px) {
    .testimonial-six-top {
        margin-bottom: 60px;
    }
}
@media only screen and (min-width: 992px) {
    .testimonial-six-top {
        margin-bottom: 120px;
    }
}
.text-slider-active .swiper-wrapper {
    transition-timing-function: linear;
}
.slider-thumb-wrapper .thumb-pagination .swiper-pagination {
    position: inherit;
    text-align: start;
    margin-top: 20px;
    font: 400 20px "Epilogue", sans-serif;
    color: #121212;
}
@media only screen and (min-width: 992px) {
    .slider-thumb-wrapper .thumb-pagination .swiper-pagination {
        margin-top: 50px;
    }
}
.testimonial-six-content {
    display: grid;
    grid-template-columns: 40px 1fr;
}
.testimonial-six-content p {
    font: 400 20px/1.55 "Epilogue", sans-serif;
    color: #121212;
    margin: 0;
}
@media only screen and (min-width: 576px) {
    .testimonial-six-content p {
        font-size: 22px;
        line-height: 1.45;
    }
}
@media only screen and (min-width: 992px) {
    .testimonial-six-content p {
        font-size: 24px;
    }
}
@media only screen and (min-width: 1200px) {
    .testimonial-six-content p {
        font-size: 26px;
    }
}
@media only screen and (min-width: 1400px) {
    .testimonial-six-content p {
        font-size: 28px;
    }
}
.testimonial-six-wrapper {
    background-color: #7FE85A;
    border-radius: 20px;
    max-width: 1680px;
    margin: auto;
    padding: 80px 0;
}
@media only screen and (min-width: 768px) {
    .testimonial-six-wrapper {
        padding: 100px 0;
        border-radius: 38px;
    }
}
.avatar-wrapper.testimonial-avatar-two .avatar-content h5 {
    font: 500 20px "Epilogue", sans-serif;
    color: #121212;
}
@media only screen and (min-width: 992px) {
    .avatar-wrapper.testimonial-avatar-two .avatar-content h5 {
        font-size: 22px;
    }
}
@media only screen and (min-width: 1200px) {
    .avatar-wrapper.testimonial-avatar-two .avatar-content h5 {
        font-size: 28px;
    }
}
.avatar-wrapper.testimonial-avatar-two .avatar-content .designation {
    font: 400 16px "Poppins", serif;
    color: #121212;
}
@media only screen and (min-width: 1200px) {
    .avatar-wrapper.testimonial-avatar-two .avatar-content .designation {
        font-size: 18px;
    }
}
.avatar-wrapper.testimonial-avatar-two .avatar-thumb {
    height: 80px;
    width: 80px;
    border: 2px solid #FFFFFF;
    border-radius: 50%;
    overflow: hidden;

}

.avatar-wrapper.testimonial-avatar-two .avatar-thumb img{
    object-fit: cover;
}

@keyframes marquee_text {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-100%);
    }
}

.avatar-wrapper {
    display: flex;
    gap: 20px;
    align-items: center;
    background: #7FE85A;
}
