.nav {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 80px;
    z-index: 100;
    background: transparent;
    transition: all 0.3s ease;
}

.nav:hover {
    background: black;
    transition: all 0.3s ease;
}

.nav.sticky {
    position: fixed;
    height: 80px;
    margin: auto;
    background: black;
    z-index: 100;
    transition: all 0.3s ease;
}

.nav .navSection {
    position: relative;
    width: 1280px;
    margin: auto;
    z-index: 1000;
    transition: all 0.3s ease;
}

.logo {
    position: absolute;
    width: 200px;
    height: 60px;
    padding-top: 10px;
    transition: all 0.3s ease;
    z-index: 100000000;
}

.menu {
    position: relative;
    display: flex;
    text-transform: uppercase;
    float: right;
    right: 0;
    z-index: 1000000;
    transition: all 0.3s ease;
}

.menu li a {
    position: relative;
    font-size: 22px;
    font-weight: 400;
    z-index: 10001;
    text-align: center;
    color: white;
}

.menu li {
    position: relative;
    text-align: center;
    margin-left: 30px;
    padding-top: 30px;
    transition: all 0.3s ease;

}

.menu li:after {
    content: '';
    border-top: 2px solid white;
    width: 100%;
    position: absolute;
    display: block;
    transform: rotateY(90deg);
    transition: transform 0.25s linear;
}

.menu li:hover {
    transform: scale(1);
}

.menu li:hover:after {
    transform: rotate(0deg);
}

.nav .hamburger div {
    right: 0;
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.nav .hamburger {
    position: absolute;
    margin-top: 30px;
    right: 0;
    display: none;
}