/* Hero Area */
.hero-area {
    position: relative;
}

.hero-slider,
.hero-slide {
    height: 100vh;
}

.hero-slide {
    position: relative;
    background-size: cover;
    background-position: center;
    display: flex !important;
    align-items: center;
}

/* Background images */
.slide-1 { background-image: url('../img/silder_web/silder_1.jpg'); }
.slide-2 { background-image: url('../img/silder_web/silder_2.jpg'); }
.slide-3 { background-image: url('../img/silder_web/silder_3.jpg'); }
.slide-4 { background-image: url('../img/silder_web/silder_4.jpg'); }
.slide-5 { background-image: url('../img/silder_web/silder_5.jpg'); }

/* Overlay */
.overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, rgba(0,0,0,.7), rgba(0,0,0,.2));
}

/* Content */
.hero-content {
    position: relative;
    color: #fff;
    max-width: 650px;
    padding: 80px;
    margin-left: 8%;
    z-index: 2;
}

.tagline {
    font-size: 14px;
    letter-spacing: 2px;
    /* color: #ffcccb; */
    text-transform: uppercase;
    margin-bottom: 12px;
    display: inline-block;
}

.hero-content h1 {
    font-size: 54px;
    line-height: 1.2;
    margin-bottom: 20px;
    color:white;
}

.hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: .95;
    color:white;
}

/* Button */
.btn.primary {
    padding: 14px 34px;
    background: #ff4d4d;
    color: #fff;
    text-decoration: none;
    font-weight: 600;
    border-radius: 4px;
    transition: 0.3s;
}

.btn.primary:hover {
    background: #e63939;
}

/* Slick arrows */
.slick-prev,
.slick-next {
    width: 55px;
    height: 55px;
    background: rgba(0,0,0,.6);
    border-radius: 50%;
    z-index: 10;
}

.slick-prev:hover,
.slick-next:hover {
    background: #ff4d4d;
}

.slick-prev:before,
.slick-next:before {
    font-size: 26px;
    color: #fff;
}

/* Dots */
.slick-dots {
    bottom: 30px;
}

.slick-dots li button:before {
    font-size: 12px;
    color: #fff;
    opacity: .6;
}

.slick-dots li.slick-active button:before {
    color: #ff4d4d;
    opacity: 1;
}

/* Responsive */
@media(max-width: 768px) {
    .hero-content {
        padding: 40px;
        margin-left: 5%;
    }
    .hero-content h1 {
        font-size: 36px;
    }
}
