.banner{
    position: relative;
    overflow: hidden;
   .banner_item{
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    height: 85vh;
    position: relative;
    z-index: 1;
    &::after{
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0,0,0,0.2);
        z-index: -1;
    }
  .banner_content{
    display: flex;
    height: 100%;
    width: 100%;
    align-items: end;
    .banner_text{
        text-align: center;
        padding-bottom: 100px;
        h2{
            font-size: 40px;
            font-weight: 600;
            color: $white;
            line-height: 48px;
        }
    }
  }
   }
    .swiper-pagination {
        position: absolute;
        text-align: center;
        transition: .3s opacity;
        transform: translate3d(0,0,0);
        z-index: 10;
    }
    .swiper-pagination-bullet {
        width: 18px;
        height: 8px;
        display: inline-block;
        border-radius: 10px;
        background: $white; 
    }
    .swiper-pagination-bullet-active{
        height: 8px;
        width: 40px;
    }

    .swiper-button-prev{
        height: 60px;
        width: 60px;
        background-color: #f3f3f392;
        border-radius: 50%;
        &::after{
            font-size: 24px;
            color: $white;
        }
    }
    .swiper-button-next{
        height: 60px;
        width: 60px;
        background-color: #f3f3f392;
        border-radius: 50%;
        &::after{
            font-size: 24px;
            color: $white;
        }
    }
}

.counter_main{
    .counter_wrapper{
        padding: 50px 0;
        .counter_wrap{
            text-align: center;
              .icon_img{
                height: 60px;
                width: auto;
                display: flex;
                align-items: center;
                justify-content: center;
                img{
                    height: 100%; 
                    width: 100%;
                    object-fit: contain;
                }
              }
              h4{
                font-size: 38px;
                font-weight: 900;
                color: rgba(236, 55, 10, 0.829);
                padding: 18px 0 5px 0;
              }
              h5{
               font-size: 14px;
               color: #343333;
               font-weight: 400;
              }
        }
    }
}