.banner{
    position: relative;
    overflow: hidden;
    .slick-active .bannerItem{
        -webkit-transform: scale(1.15);
        transform: scale(1.15);
    }
    .prev{
        height: 80px;
        width: 80px;
        color: white;
        font-size: 50px;
        background-color: rgba(226, 225, 225, 0.418);
        text-align: center;
        line-height: 80px;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        left: 5%;
        z-index: 2;
        transform: translateY(-50%);
        cursor: pointer;
    }
    .next{
        height: 80px;
        width: 80px;
        color: white;
        font-size: 50px;
        background-color: rgba(226, 225, 225, 0.418);
        text-align: center;
        line-height: 80px;
        border-radius: 50%;
        position: absolute;
        top: 50%;
        right: 5%;
        z-index: 2;
        transform: translateY(-50%);
        cursor: pointer;
    }
    .bannerItem{
        height: 90vh;
    
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        position: relative;
        -webkit-transform: scale(1);
        transform: scale(1);
        -webkit-transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
        transition: opacity 1500ms ease-in, -webkit-transform 7000ms ease;
        transition: transform 7000ms ease, opacity 1500ms ease-in;
        transition: transform 7000ms ease, opacity 1500ms ease-in, -webkit-transform 7000ms ease;
        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;
        }
    }


   
}

  .bannerContent{
    position: absolute;
    top: 60%;
    left: 50%;
    transform: translate(-50%,-60%);
    z-index: 2;
    .banner_text{
        text-align: center;
        h3{
            font-size: 25px;
            color: $white;
            font-weight: 500;
            text-transform: uppercase;
        }
        h4{
            font-size: 56px;
            color: $white;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 70px;
            padding-top: 25px
        }
        p{
            font-size: 16px;
            color: rgb(238, 238, 238);
            font-weight: 400;
            line-height: 28px;
            text-align: center !important;
            padding: 15px 100px;
            
        }
        .ban_btn{
            margin-top: 50px; 
            a{
                padding: 17px 36px;
                background-color: $primaryColor;
                font-size: 16px;
                color: $white;
                font-weight: 500;
                border-radius: 4px;
                text-transform: uppercase;
            }
        }
    }
}