/* hello */


.marquee-section {
    overflow: hidden !important;
}

.marquee-item .elementor-icon-list-items {
    flex-wrap: nowrap !important;
    width: max-content;
}

.marquee-item {
    position: relative !important;
    overflow: hidden !important;
    animation: marquee 12s linear infinite;
    width: max-content !important;
    max-width: max-content !important;
}

@keyframes marquee {
    0% {
        left: 0;
    }

    100% {
        left: -100%;
    }
}





@media(min-width: 992px) {
    .login-link {
        display: none;
    }
}

@media(min-width:1440px) {
    .review-slider .swiper-wrapper {
        left: calc((var(--content-width) - 100vh) * 2);
    }
}

@media(max-width:1400px) {
    br {
        display: none;
    }
}

@media(max-width:767px) {
    .marquee-item {
    animation: marquee 8s linear infinite;
}
}