.banner{
    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: 100vh;
        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:rgba(36, 63, 58, 0.553);
            z-index: -1;
            opacity: .9;
            
        }
    }
}

  .bannerContent{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 6;
.content_carry{
     position: relative;
    .heart_Shape{
      width: 600px;
      img{
        width: 600px;
      }
    }
    .banner_text{
        text-align: center;
        position: absolute;
        top: 60%;
        left: 50%;
        transform: translate(-50% , -60%);
        width: 500px;
        h3{
            font-size: 24px;
            color: $white;
            font-weight: 500;
            text-transform: uppercase;
            
        }
        h4{
            font-size: 50px;
            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: 28px;
            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: 20px;
        }
    }
}
    
}