.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.3);
        z-index: -1;
       }
       .banner_content{
        height: 85vh;
        width: 100%;
        display: flex;
        justify-content: center;
        align-items: end;
         border-bottom: 5px solid $primaryColor;
         h4{
            font-size: 36px;
            font-weight: 500;
            color: $white;
            padding-bottom: 80px;
            line-height: 45px;
         }
       }
    }
    .swiper-button-prev {
        color: #fff;
        left: 20px;
    }
    .swiper-button-next {
        color: #fff;
        right: 20px;
    }
    .swiper-pagination-bullet-active{
        background-color: #fff;
    }
    .swiper-pagination-bullet{
        background-color: #ebebeba1;
    }
 }