.banner{
    .banner_slide_content{
       background-position: center !important;
       background-repeat: no-repeat !important;
       background-size: cover !important;
       height: 85vh;
       width: 100%;
       position: relative;
       z-index: 1;
       &::after{
        position: absolute;
        content: '';
        top: 0;
        left: 0;
        height: 100%;
        width: 100%;
        background-color: rgba(0,0,0,0.4);
        z-index: -1;
       }
       .banner_content{
        height: 85vh;
        width: 50%;
        display: flex;
        justify-content: center;
        align-items: center;
         h2{
            font-size: 46px;
            font-weight: 900;
            color: $white;
            line-height: 56px;
         }
         h6{
            color: #fff;
         }
       }
    }
    .swiper-button-prev {
        color: #fff;
        left: 20px;
        height: 60px;
        width: 60px;
        background-color: #f3f3f36e;
        border-radius: 50%;
        &::after{
            font-size: 26px;
            color: #ffffff;
        }
    }
    .swiper-button-next {
        color: #fff;
        height: 60px;
        width: 60px;
        background-color: #f3f3f36e;
        border-radius: 50%;
        &::after{
            font-size: 26px;
            color: #ffffff;
        }
        right: 20px;
    }
    .swiper-pagination-bullet-active{
        background-color: #fff;
    }
    .swiper-pagination-bullet{
        background-color: #ebebeba1;
    }
 }
