*{
margin:0;
padding:0;
box-sizing:border-box;
font-family:Poppins,sans-serif;
}

header{

display:flex;
justify-content:space-between;
align-items:center;
padding:18px 70px;
background:#fff;

}

.logo{

display:flex;
align-items:center;
gap:20px;

}

.logo img{

width:90px;

}

.logo h1{

font-size:52px;
color:#f26a00;
font-weight:800;

}

.top-right{

display:flex;
align-items:center;
gap:25px;

}

.contact{

display:flex;
gap:25px;
font-size:20px;

}

.contact span{

display:flex;
align-items:center;
gap:8px;

}

.contact i{

color:#f26a00;

}

.btn{

background:#f26a00;
color:#fff;
padding:14px 28px;
text-decoration:none;
border-radius:6px;
font-size:18px;

}

nav{

background:#000;
display:flex;
justify-content:center;
gap:45px;
padding:18px;

}

nav a{

color:#fff;
text-decoration:none;
font-size:20px;
font-weight:500;

}

.hero{

height:700px;

background:url("images/skill2.jpg");

background-size:cover;

background-position:center;

}

.overlay{

height:100%;
background:rgba(0,0,0,.55);
display:flex;
align-items:center;

}

.content{

margin-left:80px;
color:#fff;

}

.content h4{

display:inline-block;
background:#f26a00;
padding:12px 20px;
margin-bottom:25px;

}

.content h2{

font-size:80px;
line-height:90px;
margin-bottom:20px;

}

.content p{

font-size:28px;
width:700px;
margin-bottom:35px;

}

.hero-btn{

background:#f26a00;
padding:18px 40px;
color:white;
text-decoration:none;
border-radius:5px;
font-size:22px;

}
/*================ FOOTER =================*/

.footer{

background:#111;
color:#fff;
padding:70px 8% 20px;

}

.footer-container{

display:grid;
grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
gap:50px;

}

.footer-box h2{

font-size:32px;
margin-bottom:20px;
color:#ff7300;

}

.footer-box h3{

font-size:24px;
margin-bottom:20px;
color:#ff7300;

}

.footer-box p{

font-size:17px;
line-height:30px;
color:#ddd;

}

.footer-box ul{

list-style:none;

}

.footer-box ul li{

margin:12px 0;

}

.footer-box ul li a{

text-decoration:none;
color:#ddd;
transition:.3s;

}

.footer-box ul li a:hover{

color:#ff7300;

}

.social{

display:flex;
gap:15px;
margin-top:20px;

}

.social a{

width:45px;
height:45px;
background:#222;

display:flex;
justify-content:center;
align-items:center;

border-radius:50%;

text-decoration:none;

color:#fff;

font-size:20px;

transition:.4s;

}

.social a:hover{

background:#ff7300;
transform:translateY(-5px);

}

.footer hr{

margin:40px 0 20px;
border:1px solid #333;

}

.copyright{

text-align:center;
font-size:16px;
color:#aaa;

}