*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Arial,sans-serif;
}

body{
background:#111;
}

.hero-slider{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
}

.slides{
position:relative;
height:100%;
}

.slide{
position:absolute;
width:100%;
height:100%;
opacity:0;
transition:1s;
}

.slide.active{
opacity:1;
z-index:2;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
}

.slide::after{
content:"";
position:absolute;
left:0;
top:0;
width:100%;
height:100%;
background:rgba(0,0,0,0);
}

.content{

position:absolute;
left:8%;
top:50%;
transform:translateY(-50%);
color:#fff;
z-index:10;
max-width:550px;

}

.content h1{

font-size:58px;
margin-bottom:20px;
line-height:1.1;
font-weight:700;

}

.content p{

font-size:20px;
margin-bottom:30px;
line-height:1.7;

}

.btn{

display:inline-block;
padding:15px 35px;
background:#d4af37;
color:#000;
font-weight:bold;
text-decoration:none;
border-radius:40px;
transition:.4s;

}

.btn:hover{

background:#fff;

}

.dots{

position:absolute;
bottom:35px;
width:100%;
text-align:center;
z-index:100;

}

.dot{

display:inline-block;
width:14px;
height:14px;
background:#ffffff88;
border-radius:50%;
margin:6px;
cursor:pointer;
transition:.3s;

}

.dot.active{

background:#d4af37;
width:35px;
border-radius:20px;

}

/* Tablet */

@media(max-width:991px){

.content{

left:7%;
max-width:450px;

}

.content h1{

font-size:42px;

}

.content p{

font-size:18px;

}

}

/* Mobile */

@media(max-width:768px){

.hero-slider{

height:80vh;

}

.content{

left:20px;
right:20px;
max-width:100%;

}

.content h1{

font-size:30px;

}

.content p{

font-size:16px;

}

.btn{

padding:13px 25px;
font-size:15px;

}

}

/* Small Mobile */

@media(max-width:480px){

.hero-slider{

height:75vh;

}

.content h1{

font-size:24px;

}

.content p{

font-size:14px;

}

.btn{

width:100%;
text-align:center;

}

}