*{
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    list-style: none;
    text-decoration: none;
    color: black;
    font-family:Verdana, Geneva, Tahoma, sans-serif
}

body{
    background: #FCFCFC;
}

img{
    width: 1005;
}

header{
    width: 70%;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: 0 auto ;
    padding: 50px 40px;  
}

.logo{
    margin-top: 8px; 
    display: flex;
    flex-direction: row;
    width: 750px;
}

nav .logo{
    display: none;
}

nav ul{
    display: flex;
}

#nav_check:checked ~ nav{
    left: 0;
}

nav ul li a{
    color: #212526;
    display: block;
    margin: 0 2px;
    font-weight: 600;
    padding: 8px 18px;
    transition: 0.2s;
    border-radius: 30px;
    
}

nav ul li a:hover{
    background:#f6f4ff;
}

nav ul li a.active{
    background:#675cff;
    color: #fff;
}

.hamburger{
    display: none;
    height: fit-content;
    cursor: pointer;
    padding: 3px 8px;
    border-radius: 5px;
    transition: 0.2s;
}

.hamburger:hover{
    background: #f6f4ff;
}

.hamburger div{
    width: 30px;
    height: 2px;
    margin: 6px 0;
    background: #212526;
}

#videoZone::before{
    content: "";
    background: url('./video.jpg') no-repeat 50% ; 
    position: absolute;
    top: 100px;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0.2; 
    z-index: -999;
}

#videoZone{ 
    background-size: cover; 
    background-attachment: fixed; 
    color: #fff;
    box-shadow: 0 0 8px #00004d;  
    background: #000;
}

.videoBg{  
    position: relative; 
    margin: auto;
    width: 70%;
}

 
.underBg p{
    color: #f9bd56;
    font-weight: 700; 
    text-shadow: #00004d;
}



.underBg
{ 
    width: 90%;
    /* display: inlineblock; */ /* remove this */
    margin:auto;
    justify-content: center;
    text-align: center; 
    line-height: 70px;
    height: 100%;
    text-align: center;
    width: 80%;    
    font-size: 36px;

}



.underBg a:hover{
    color: #000000 !important;
    border-radius: 10px;
    background-color: #f9bd56 !important;
}

.underBg a{
    color: #fff !important;
    border-radius: 10px;
    background-color: white !important;
    border: 1px solid #000000  !important;
    color: rgb(0, 0, 0) !important;
    padding: 20px;
}
    

@media only screen and (max-width:1100px){
    header{
        width: 90%;
        padding: 0 20px;
        margin-bottom: 20px;
    }

    nav{
        position: absolute;
        left: -450px;
        top: 0;
        z-index: 999;
        width: 400px;
        height: 100vh;
        background-color:#fefefe;
        transition: 0.2s;
        box-shadow: 2px 0 20px 0 rgba(0, 0, 0, 0.05);
    }
    nav ul{
        display: block;
        padding: 0 20px;
        margin-top: 30px;
    }
    nav .logo{
        display: flex;
        height: 62px;
        align-items: center;
        margin-left: 30px;
    }
    .hamburger{
        display: block;
    }
}