/* RESET */
*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:'Poppins',sans-serif;
}

body{
background:#000;
color:#fff;
}

/* NAV */
.sv-nav{
display:flex;
justify-content:space-between;
padding:20px 80px;
}


.sv-menu a{
margin:0 15px;
color:#fff;
text-decoration:none;
}

.sv-btn{
background:rgb(184, 150, 46);
padding:10px 25px;
border-radius:30px;
color:#000;
}

/* HERO */
.sv-services-hero{
position:relative;
height:550px;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
background:url("../image/services.png") center/cover no-repeat;
background-position:center;
}

/* OVERLAY */
.sv-hero-overlay{
position:absolute;
top:0;
left:0;
width:100%;
height:100%;

}

/* CONTENT */
.sv-hero-content{
position:relative;
z-index:2;
max-width:800px;
padding:0 20px;
}

.sv-services-hero h1{
font-size:60px;
color:rgb(184, 150, 46);
margin-bottom:15px;
}

.sv-services-hero p{
color:#ddd;
font-size:18px;
}

/* SECTION */
.sv-services{
padding:80px;
text-align:center;
}

.sv-line{
width:50px;
height:3px;
background:rgb(184, 150, 46);
margin:10px auto 30px;
}

/* GRID */
.sv-services-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:30px;
}

/* CARD */
.sv-service-card{
border:1px solid rgb(184, 150, 46);
padding:30px;
border-radius:12px;
transition:0.3s;
}

.sv-service-card i{
font-size:30px;
color:rgb(184, 150, 46);
margin-bottom:15px;
}

.sv-service-card:hover{
background:#111;
transform:translateY(-5px);
}

/* RESPONSIVE */
@media(max-width:992px){

.sv-services-grid{
grid-template-columns:repeat(2,1fr);
}

}

@media(max-width:600px){

.sv-services-grid{
grid-template-columns:1fr;
}

.sv-nav{
padding:20px;
flex-direction:column;
gap:10px;
}

.sv-services-hero{
height:300px;
}

.sv-services-hero h1{
font-size:36px;
}

.sv-services-hero p{
font-size:14px;
}

}