.hero-banner{
    width:100%;
}
.mob-display {
    display: none;
}
.bannerSwiper{
    width:100%;
    height:100vh;
}

.bannerSwiper .swiper-slide{
    width:100%;
    height:100%;
}

.bannerSwiper .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:fill;
    display:block;
}

.swiper-pagination-bullet{
    width:80px;
    height:5px;
    border-radius:20px;
    background:#fff;
    opacity:1;
}
.swiper-pagination{
    bottom: 150px !important;
}

.swiper-pagination-bullet-active{
    background:#FF5900;
}

.scroll-down{
    position:absolute;
    left:50%;
    bottom:0px;
    transform:translateX(-50%);
    z-index:100;
    text-align:center;
}

.scroll-down a{
    color:#fff;
    text-decoration:none;
    display:flex;
    flex-direction:column;
    align-items:center;
}

.mouse{
    width:28px;
    height:48px;
    border:2px solid #fff;
    border-radius:20px;
    position:relative;
    margin-bottom:12px;
}

.wheel{
    width:4px;
    height:8px;
    background:#fff;
    border-radius:5px;
    position:absolute;
    top:8px;
    left:50%;
    transform:translateX(-50%);
    animation:scrollWheel 1.8s infinite;
}

.scroll-text{
    font-size:14px;
    letter-spacing:2px;
    text-transform:uppercase;
}

@keyframes scrollWheel{

    0%{
        opacity:1;
        top:8px;
    }

    100%{
        opacity:0;
        top:24px;
    }

}