/*  HERO SLIDER */

.hero-slider{
    position:relative;
    width:100%;
    height:100vh;
    min-height:700px;
    overflow:hidden;
    background:#000;
}


.slide{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    opacity:0;
    transition:opacity 1.2s ease-in-out;
    z-index:1;
}

.slide.active{
    opacity:1;
    z-index:2;
}

.slide img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
}


.overlay{
    position:absolute;
    top:0;
    left:0;
    width:100%;
    height:100%;
    background:rgba(0,0,0,.35);
    z-index:3;
}

.hero-content{
    position:absolute;
    top:50%;
    left:50%;
    transform:translate(-50%,-50%);
    width:90%;
    max-width:900px;
    text-align:center;
    color:#fff;
    z-index:5;
}

.hero-content h1{
    margin:0 0 20px;
    font-size:68px;
    font-weight:700;
    line-height:1.1;
    color:#fff;
}

.hero-content p{
    margin:0 auto 35px;
    max-width:800px;
    font-size:22px;
    line-height:1.8;
    color:#fff;
}

.hero-btn{
    display:inline-block;
    padding:16px 40px;
    background:#d4af37;
    color:#fff;
    text-decoration:none;
    font-size:18px;
    font-weight:600;
    border-radius:5px;
    transition:.3s;
}

.hero-btn:hover{
    background:#b88c13;
    color:#fff;
}

@media (max-width:1024px){

.hero-slider{
    min-height:600px;
}

.hero-content{
    max-width:700px;
}

.hero-content h1{
    font-size:52px;
}

.hero-content p{
    font-size:18px;
}

}

@media (max-width:768px){

.hero-slider{
    height:450px;
    min-height:450px;
}

.hero-content{
    width:90%;
}

.hero-content h1{
    font-size:36px;
    line-height:1.2;
    margin-bottom:15px;
}

.hero-content p{
    font-size:16px;
    line-height:1.6;
    margin-bottom:20px;
}

.hero-btn{
    padding:12px 28px;
    font-size:15px;
}

}

@media (max-width:480px){

.hero-slider{
    height:380px;
    min-height:380px;
}

.hero-content{
    width:92%;
}

.hero-content h1{
    font-size:30px;
}

.hero-content p{
    font-size:15px;
    line-height:1.5;
}

.hero-btn{
    padding:10px 22px;
    font-size:14px;
}

}