.banner{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    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{
            content: "";
            width: 100%;
            height: 100%;
            position: absolute;
            left: 0;
            top: 0;
            background-color: #3d5963;
            z-index: -1;
            opacity: .7;
            
        }
    }
}

  .bannerContent{
    position: absolute;
    top: 40%;
    left: 50%;
    transform: translate(-50%,-40%);
    z-index: 2;

    .banner_text{
        text-align: center;
        &::before{
            position: absolute;
            content: '';
            top: 50%;
            transform: translate(-10%, -50%);
            right: -40%;
            background-image: url(../images/dd-2.png);
            height: 450px;
            background-repeat: no-repeat;
            width: 240px;
            z-index: -1;
        }
        &::after{
            position: absolute;
            content: '';
            top: 50%;
            transform: translate(-10%, -50%);
            left: -40%;
            background-image: url(../images/dd.png);
            height: 450px;
            background-repeat: no-repeat;
            width: 240px;
            z-index: -1;
        }
        h3{
            font-size: 24px;
            color: $white;
            font-weight: 500;
            text-transform: uppercase;
            
        }
        h4{
            font-size: 60px;
            color: $white;
            font-weight: 900;
            text-transform: uppercase;
            line-height: 70px;
            padding-top: 15px;
            font-family: 'Playfair Display', serif;
            span{
                font-size: 40px;
            }
        }
        p{
            font-size: 30px;
            color: rgb(238, 238, 238);
            font-weight: 700;
            text-align: center !important;
            padding-top: 20px;
            span{
                font-size: 60px;
                font-family: 'Playfair Display', serif;
                padding: 0 5px;

            }
        }
        .heartBan{
            font-size: 50px;
            color: $white;
            position: relative;
            top: 210px;
        }
    }
}