.hero-slider{
    position:relative;
    height:100vh;
    overflow:hidden;
}
.hero-slider video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hero-slider::after {
    position: absolute;
    content: '';
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, #000000a3, transparent);
}
.heroSwiper,
.heroSwiper .swiper-slide{
    height:100%;
}

.heroSwiper .swiper-slide{
    position:relative;
}

.heroSwiper .swiper-slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    animation: zoom-in-zoom-out 150s ease-out infinite;
}
@keyframes zoom-in-zoom-out {
  0% {
    transform: scale(1, 1);
  }
  50% {
    transform: scale(1.2, 1.1);
  }
  100% {
    transform: scale(1, 1);
  }
}
.overlay{
    position:absolute;
    inset:0;
    background: linear-gradient(177deg, rgb(0 0 0) 0%, rgba(0, 0, 0, .3) 40%, rgba(0, 0, 0, 0) 100%);
    z-index:1;
}
.slide-content {
    position: absolute;
    left: 0;
    top: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: end;
    padding-bottom: 100px;
}
.caption {
    color: #fff;
    font-size: 72px;
    line-height: 1;
    font-weight: 700;
    margin-bottom: 30px;
    width: 588px;
}
.thumbSwiper{
    position:absolute!important;
    right:50px;
    bottom:40px;
    width:260px;
    z-index:10;
}
.thumbSwiper .swiper-slide{
    width:80px;
    height:80px;
    border-radius:15px;
    overflow:hidden;
    cursor:pointer;
    opacity:.5;
}
.thumbSwiper .swiper-slide-thumb-active{
    opacity:1;
}
.thumbSwiper img{
    width:100%;
    height:100%;
    object-fit:cover;
}
.slide-count {
    position: absolute;
    right: 350px;
    bottom: 70px;
    color: #ffffff;
    z-index: 20;
    font-size: 16px;
    font-weight: 600;
}
#current {
    color: #F5821F;
}

#common_banner {
    height: 400px;
    position: relative;
    overflow: hidden;
}
#common_banner img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.common_banner_content {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(177deg, rgb(0 0 0) 0%, rgba(0, 0, 0, .3) 40%, rgba(0, 0, 0, 0) 100%);
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding-top: 80px;
}
.common_heading {
    color: #FFFFFF;
    font-size: 48px;
    font-weight: 700;
    line-height: 54px;
    width: 590px;
    margin: auto;
}
.bread_crum {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 10px;
    gap: 5px;
    color: #EDEDED;
}
.bread_crum a{
    text-decoration: none;
    color: #EDEDED;
    font-size: 14px;
    font-weight: 500;
}
.bread_crum .active{
    color: #F5821F;
}