.viewbox {
    width: 25px;
    height: 26px;
    z-index: 99;
    position: absolute;
    transform: translateX(-50%);
    right: 49.3%;
    bottom: -32px;
  }
  
  #progress {
    stroke-dasharray: 296 296;
    stroke-dashoffset: 296;
    animation: grow 5s ease-out infinite;
  }
  
  @keyframes grow {
    100% { stroke-dashoffset: 0; }
  }




.section-hero img{
	width:100%;
	object-fit:cover;
}
.section-hero{
	position:relative;
}

.hero-banner-item img {
    width: 100%;
    max-height: 828px;
}
.hero-banner-item {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}
.hero-banner-item .banner-item-text {
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        flex-direction: column;
        gap: 12px;
        max-width: 41%;
}

.hero-banner-item > .container {
    position: absolute;
    top: 50%;
    transform: translate(-52%, -50%);
    z-index: 33;
    left: 52%;
}

.hero-title {
    font-size: clamp(30px, 6vw, 55px);
    line-height: 58px;
    color: #ffffff;
}
.hero-desc {
    font-size: 20px;
    line-height: 34px;
    color: #FFF;
    margin-bottom: 28px;
}

.banner-item-text .blog-btn {
    color: #FFF;
    margin-top: 10px;
}
.banner-item-text .blog-btn i {
    background-color: #E60012;
}
.hero-pg {
    display: flex;
    justify-content: center;
    align-items: end;
    flex-direction: row-reverse;
    position: absolute;
    z-index: 9;
    left: 50%;
    transform: translateX(-50%);
    bottom: -24px;
    line-height: 1;
    gap: 19px;
}
.sw-controller-hero {
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
	bottom: 55px;
}


.hero-pg .swiper-pagination-bullet {
      transition: all 0.4s;
      height: 10px;
      width: 10px;
      border-radius: 50%;
      background-color: #ffffff80;
}
.hero-pg .swiper-pagination-bullet-active {
position: relative;
    background-color: var(--color1);
}


.hero-pg .swiper-pagination-bullet:not(:last-of-type){
    display: flex;
    justify-content: center;
    align-items: center;
}
.sw-heroBanner {
    position: absolute;
    left: 15px;
    bottom: 0;
    z-index: 9;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.sw-heroBanner i {
    font-size: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s;
    color: #72706f;
}
.sw-heroBanner > div:hover > i {
    color: #FFF;
}

/* .hero-pg .swiper-pagination-bullet-active:before{
    content: "";
    z-index: 9;
	display: inline-block !important;
  stroke-dasharray: 1000;
  stroke-dashoffset: 0;
  animation: dash linear 120s;
  animation-iteration-count: unset;
  background-color: transparent !important;
  height: 19px;
  width: 19px;
  border-radius: 50%;
  position: absolute;
  border: 1px solid #FCB534;
  top: -5px;
  right: -4px;
} */


@keyframes dash {
  from {
    stroke-dashoffset: 1000;
  }

  to {
    stroke-dashoffset: 0;
  }
}


.hero-banner-item:after {
    background: linear-gradient(0deg, #212121 0%, rgba(33, 33, 33, 0.64) 49%, rgba(33, 33, 33, 0) 100%);
    height: 60%;
    width: 100%;
    content: "";
    position: absolute;
    bottom: 0;
}

.section-slider{
    position: relative;
}




@media (max-width:991.98px){

    .hero-banner-item .banner-item-text{
        justify-content: center;
    align-items: center;
    max-width: 100%;
    padding-inline: 12px;
    }

    .hero-desc {
        font-size: 16px;
        line-height: 30px;
        text-align: center;
    }

    .hero-title {
        font-size: 36px;
        line-height: 51px;
        text-align: center;
    }

    .hero-banner-item:after{
        height: 75%;
    }
}







/* slide down ................................ */

.down-section{
    margin-block: 24px 80px;
}

.down-txt{
    font-size: 15px;
    line-height: 18px;
    color: var(--color2);

}
.down-div{
    position: relative;
    margin-top: 66px;
    padding-top: 8px;
}
.down-div:before{
    content: "";
    width: 2px;
    height: 34px;
    position: absolute;
    top: -36px;
    right: 50%;
    transform: translateX(-50%);
    display: block;
    background-color: #0B2650;
    opacity: 90%;
}



@media (max-width:767.98px) {
    .down-section{
        margin-block: 24px 64px !important;
    }
}



