*{
    margin:0; padding:0;
    font-family: sans-serif;
    letter-spacing: 1px;
    font-weight: 300;
}

body{
    overflow: auto;
}

/* Styling Logo*/
.logo{
    /* padding: 0vh 5vw; */
	margin-left: 30px;
    text-align: left;
    /*width: 20vw;*/
}
.logo img{
    height: auto;
    width: auto;
}

/* Styling Navigation Links*/
.nav-links{
    width: 60vw;
    display: flex;
    padding: 0 0.7vw;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
    list-style: none;
    font-weight: 600;
    margin-top: auto;
    margin-bottom: auto;
}
.nav-links li a{
    color:#f2f5f7;
    margin: 0;
    text-decoration: none;
    transition: all ease-in-out 350ms;
    padding: 10px;
}
.nav-links li a:hover{
    color:#000;
    background-color: #fff;
    padding: 10px;
    border-radius: 50px;
}
.nav-links li{
    position:relative;
}
.nav-links li a:hover::before{
    width: 80%;
}
/*Navigation Icon Styling*/

.hamburger div{
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger{
    display: none;
    /* !important */
}


/*Responsive Adding Media Queries*/

@media screen and (max-width: 1070px){
    nav{
        position: fixed;
        z-index: 3;
    }
    .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }
    .logo{
        margin-left:0px;
    }
    .nav-links{
        background: #053742;
        position: fixed;
        opacity: 1;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 0.7s ease-out;
        pointer-events: none;
    }
    .nav-links.open{
        clip-path: circle(1100px at 90% -10%);
        -webkit-clip-path: circle(1100px at 90% -10%);
        pointer-events: all;
    }
    .nav-links li{
        opacity: 0;
    }
    .nav-links li:nth-child(1){
        transition: all 0.3s ease 0.2s;
    }
    .nav-links li:nth-child(2){
        transition: all 0.3s ease 0.3s;
    }
    .nav-links li:nth-child(3){
        transition: all 0.3s ease 0.4s;
    }
    .nav-links li:nth-child(4){
        transition: all 0.3s ease 0.5s;
    }
    .nav-links li:nth-child(5){
        transition: all 0.3s ease 0.6s;
    }
    /* .nav-links li:nth-child(6){
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    .nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
        margin: 0;
    } */

    li.fade{
        opacity: 1;
    }

    /* Navigation Bar Icon on Click*/

        .toggle .bars1{
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .toggle .bars2{
            transition: all 0s ease;
            width: 0;
        }

        .toggle .bars3{
            transform: rotate(45deg) translate(-5px, -6px);
        }

}


#header{
    height: 70px;
    width: 100%;
    display: flex;
    align-items: center; /* Căn giữa theo chiều dọc */
    position: fixed;
    z-index: 10;
    box-shadow: 0 3px 20px rgba(0,0,0,0.2);
}

#menutop{
    height: 70px!important;
    position: relative!important; /* Hoặc không có thuộc tính position nếu không cần thiết */
    z-index: 1!important;
}
#content {
    z-index: 0;
    /* width: 60%; */
    height: auto;
}















/* #left { */
    /* width: 20%; */
    /* height: 400px; */
    /* background-color: #9c6; */
    /* float: left; */
/* } */
/* #right { */
    /* width: 20%; */
    /* height: 400px; */
    /* background-color: rgb(163, 39, 39); */
    /* float: left; */
/* } */