.heroSwiper .swiper-pagination {
    bottom: 40px !important;
}

.heroSwiper .swiper-pagination-bullet {
    width: 40px;
    height: 3px;
    border-radius: 0;
    background: #fff;
    opacity: .4;
    margin: 0 5px !important;
}

.heroSwiper .swiper-pagination-bullet-active {
    opacity: 1;
    background: #fff;
}   


.serviceSwiper .swiper-wrapper {
    align-items: stretch;
}

.serviceSwiper .swiper-slide {
    height: auto;
}

@media (min-width:1024px){
    .serviceSwiper .swiper-slide{
        width: calc(33.333% - 20px);
    }
}  
 
.marquee {
    overflow: hidden;
    width: 100%;
}

.marquee-track {
    display: flex;
    width: max-content;
    animation: marquee 18s linear infinite;
}

.marquee-reverse {
    animation-direction: reverse;
}

    

@keyframes marquee {
    from {
        transform: translateX(0);
    }

    to {
        transform: translateX(-50%);
    }
}   