*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
.header{
    width: 100%;
    height: 100vh;
    background-image:linear-gradient(rgba(0,0,0,0.8),rgba(0,0,0,0.8)) ,url('../img/6498.png') ;
    background-size: cover;
    background-position: center;
 
}
.container{
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 100px;
}
.navbar{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-around;
    padding: 25px 0;
}
nav{
    flex: 1;
    text-align: right;
}
.logo{
    width: 120px;
    cursor: pointer;
}
.user-icon{
    width: 30px;
    border-radius: 50%;
    cursor: pointer;
}
nav ul li{
    display: inline-block;
    list-style: none;
    margin-right: 30px;
    text-transform: capitalize;
}
nav ul li a{
    text-decoration: none;
    color: #fff;
    font-size: 13px;
    padding: 5px 2px ;
}
nav ul li a:hover{
border-bottom: 1px solid #009BA7;
}
.content{
max-width: 600px;
color:#fff;
margin-top: 15%;
}
.content h1{
    font-size: 56px;
    line-height: 70px;
    letter-spacing: 1px;
    margin: 15px 0;
    text-transform: uppercase
}
p{
    font-size:12px ;
    line-height: 22px;
}
span{
    color:#009BA7;
}
.btn-box{
    margin-top: 20px;
}
.butten{
    width: 150px;
    border:1px solid#009BA7;
    color:#fff;
    padding: 10px;
    margin-right: 10px;
    border-radius: 25px;
    cursor: pointer;
    background-color: #009BA7;
    text-transform: capitalize;
    letter-spacing: 1px;
}
.btn{
border: 1px solid #fff;
background: transparent;
}
.sidebar{
    width: 80px;
    height: 100vh;
    background: #000;
    position:absolute;
    top:0;
    left: 0;
}
.logo-icon{
    width: 20px;
    margin: 30px;
}
.social-links{
    width: 80px;
    position: absolute;
    bottom: 20px;
}
.social-links img{
height: 15px;
display: block;
margin: 25px auto;
cursor: pointer;

}