.hero-slider{
position:relative;
width:100%;
height:100vh;
overflow:hidden;
margin-top:0;
}

.slide{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
opacity:0;
transition:1s ease-in-out;
}

.slide.active{
opacity:1;
z-index:1;
}

.slide img{
width:100%;
height:100%;
object-fit:cover;
object-position:center;
}

/* OVERLAY */

.overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;
background:rgba(0,0,0,0.55);
}

/* HEADER FIX */

.header{
position:fixed;
top:0;
left:0;
width:100%;
z-index:9999;
background:rgba(0,0,0,0.6);
backdrop-filter:blur(10px);
}

/* HERO CONTENT */

.hero-content{
position:absolute;
top:50%;
left:50%;
transform:translate(-50%,-50%);
width:90%;
text-align:center;
z-index:2;
color:#fff;
}

.hero-content h1{
font-size:70px;
font-weight:800;
line-height:1.1;
margin-bottom:20px;
}

.hero-content p{
font-size:24px;
line-height:1.6;
margin-bottom:30px;
}

/* ===================================
TABLET
=================================== */

@media(max-width:992px){

.hero-slider{
height:85vh;
}

.hero-content h1{
font-size:48px;
}

.hero-content p{
font-size:18px;
}

}

/* ===================================
MOBILE RESPONSIVE FIX
=================================== */

@media(max-width:768px){

/* HEADER */

.header{
padding:12px 0;
}

.logo h2{
font-size:24px;
}

/* SLIDER */

.hero-slider{
height:75vh;
min-height:550px;
}

/* IMAGE */

.slide img{
object-fit:cover;
object-position:center;
}

/* CONTENT */

.hero-content{
width:95%;
top:55%;
}

.hero-content h1{
font-size:32px;
line-height:1.3;
margin-bottom:15px;
}

.hero-content p{
font-size:15px;
line-height:1.6;
margin-bottom:20px;
}

/* BUTTON */

.btn{
padding:12px 24px;
font-size:14px;
}

/* MENU */

nav{
display:none;
position:absolute;
top:75px;
left:0;
width:100%;
background:#111827;
padding:20px 0;
}

nav.active{
display:block;
}

nav ul{
flex-direction:column;
gap:20px;
text-align:center;
}

.menu-toggle{
display:block;
font-size:28px;
color:#fff;
cursor:pointer;
}

}

/* ===================================
SMALL MOBILE
=================================== */

@media(max-width:480px){

.hero-slider{
height:70vh;
min-height:500px;
}

.hero-content h1{
font-size:26px;
}

.hero-content p{
font-size:14px;
}

.btn{
font-size:13px;
padding:10px 20px;
}

.logo h2{
font-size:20px;
}

}