*{
    padding:0px;
    margin:0px;
    box-sizing: border-box;
    font-family: "Open Sans", sans-serif;
    color: #ffffff;
}

.hero{
    background-color: #000000;
    padding:50px 50px;
    width:100%;
    height: 100vh;
}
header .logo img{
    width:100px;
}
header{
    display: flex;
    align-items: center;
    justify-content: space-between;
    z-index: 6;
    position: relative;
}
header nav{
background-color: #ffffff;
padding:40px;
width: 40%;
height: 100vh;
position: fixed;
top:0px;
right:0px;
display: flex;
align-items: center;
justify-content: center;
text-align: center;
z-index: 7;
transform: translateX(100%);
transition: .5s;
}
header nav.active{
    transform: translateX(0%); 
}
header nav a{
    color: #222;
    font-size: 20px;
    padding:15px;
    display: block;
    text-decoration: none;
    font-weight: bold;
}

header .ham{
    width:60px;
    padding:10px;
    background-color: #000000;
    position: relative;
    z-index: 8;
    cursor: pointer;
}
video{
    width:100%;
    height: 100vh;
    position:absolute;
    top:0px;
    left:0px;
    object-fit: cover;
    z-index: 2;
    opacity: .7;
}
.content-wrap{
    width:100%;
    height: 100vh;
    position: absolute;
    left:0px;
    top:0px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 3;
}
.content h1{
    font-size: 60px;
    text-transform: uppercase;
    font-weight: bold;
}
.content h2{
    font-size: 30px;
}
.content a{
    border:2px solid #ffffff;
    display: block;
    width:200px;
    margin:30px auto;
    text-align: center;
    text-transform: uppercase;
    border-radius: 50px;
    padding:15px;
    text-decoration: none;
    font-size: 18px;
    font-weight: bold;
    letter-spacing: 1px;
    transition: .5s;
}
.content a:hover{
    background-color: #ffffff;
    color:#000000;
}
.social-icons{
position: absolute;
left:50px;
bottom:50px;
}
.social-icons ul{
    display: flex;
    align-items: center;
    gap:30px;
    list-style-type: none;
}
.social-icons ul img{
    width:25px;
}

@media(max-width:767px){
    .content h1{
        font-size: 30px;
    }
    .content h2{
        font-size: 18px;
    }
}

