*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family: Inter, sans-serif;
min-height:100vh;
color:rgb(0,0,0);
}

/* SLIDER SECTION BACKGROUND */
.slider{
width:100%;
max-width:100%;
padding:20px 0;
margin:auto;
background: linear-gradient(120deg,#000000,#336699,#000000,#000000);
display:flex;
align-items:center;
justify-content:center;
min-height:100vh;
}

.slide{
display:none;
align-items:center;
justify-content:center;
gap:130px;
}

.slide.active{
display:flex;
}

.left img{
width:350px;
height:450px;
object-fit:cover;
}

.right{
max-width:460px;
}

.small-text{
font-size:13px;
opacity:.7;
margin-bottom:20px;
color:rgb(255, 255, 255);
}

.title{
font-family:"Playfair Display", serif;
font-size:56px;
line-height:1.1;
margin-bottom:40px;
color:#ACBFC5;
}

.arrow{
margin-right:10px;
color:#ffffff;
}

.info-row{
display:flex;
justify-content:space-between;
align-items:center;
font-size:14px;
padding:18px 0;
border-bottom:1px solid rgba(255,255,255,0.15);
color:#ffffff;
}

.info-row:last-child{
border-bottom:none;
}

.link{
font-size:13px;
opacity:.7;
cursor:pointer;
}

.link:hover{
opacity:1;
}

.nav{
display:flex;
gap:20px;
margin-top:30px;
}

.nav-btn{
display:flex;
align-items:center;
gap:10px;
cursor:pointer;
padding:10px 18px;
border:1px solid #ffffff;
font-size:14px;
transition:0.3s;
color:#ffffff;
}

.nav-btn:hover{
background:#7690C9;
color:rgb(255, 255, 255);
}

.icon{
font-size:18px;
color:#ffffff;
}

/* MOBILE */

@media (max-width:768px){

body{
padding:20px;
}

.slider{
min-height:auto;
padding:40px 20px;
}

.slide{
flex-direction:column;
gap:30px;
background:rgba(255,255,255,0.05);
padding:25px;
border-radius:10px;
}

.left img{
width:auto;
height:100%;
}

.right{
max-width:100%;
}

.title{
font-size:32px;
}

.nav{
justify-content:center;
}

}