/* Testimonials block Css start */

.testimonial-section {
    padding-bottom: 60px;
}

.right-direction {
    animation-direction: reverse !important;
}

.testimonials-wrap {
    position: absolute;
    will-change: transform;
    animation: testimonial-scroll 40s linear infinite;
}

@keyframes testimonial-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.testimonials-wrap:hover {
    animation-play-state: paused;
}

.marquee-wrap {
    position: relative;
    width: 100vw;
    max-width: 100%;
    height: 200px;
}

.second-testimonial-wrap {
    margin-top: -20px;
}

.second-testimonial-wrap .marquee-wrap {
    transform: translateX(-150px);
    overflow: visible !important;
}

.second-testimonial-wrap .marquee-main-wrap {
    overflow: hidden;
}

.second-testimonial-wrap .section-spacing {
    padding: 0 !important;
}

.testimonials-wrap .testimonial-item,
.testimonial-item {
    background-color: #ffffff;
    width: 350px;
    height: 200px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 40px;
    padding: 31px 29px 24px;
}

.testimonial-item:first-child {
    background-color: #ffffff;
    margin-left: 40px;
}

.testimonial-item:hover {
    cursor: pointer;
}

.testimonial-content {
    display: none;
}

.testimonial-image {
    width: 100%;
    height: 100%;
    max-height: 130px;
    object-fit: contain;
}


/* .testimonial-item:hover .testimonial-content {
    display: block;
}

.testimonial-item:hover .testimonial-image {
    display: none;
} */
@media (max-width: 1025px) {
    .testimonials-wrap .testimonial-item {
        margin-right: 20px;
    }

    .testimonial-item {
        margin-right: 20px;
    }

    .testimonial-item:first-child {
        margin-left: 20px;
    }

    .second-testimonial-wrap {
        margin-top: -40px;
    }
}

@media (max-width: 767px) {
    .testimonial-section {
        padding-bottom: 40px;
    }

    .testimonial-item {
        display: block;
        margin-right: 0;
        /* margin-bottom: 40px; */
        width: 100%;
    }

    /* .testimonial-content {
        display: block;
    } */

    .swiper-slide {
        padding: 0 0 30px;
    }

    .swiper-scrollbar-drag {
        background: #E9A23E;
    }

    .testimonial-item:first-child {
        margin-left: 0;
    }

    .second-testimonial-wrap {
        margin-top: 0;
    }
}

@media (max-width: 426px) {
    .second-testimonial-wrap .section-spacing {
        padding: 0px 16px !important;
    }

    .testimonial-item {
        width: 100%;
    }
}

/* Testimonials block Css End */