body {
    margin: 0;
    padding: 0;
}

a {
    text-decoration: none;
}

.header-container {
    max-width: 100%;
    display: flex;
    height: 10em;
    overflow: hidden;
}

.header-col-1 {
    width: 50%;
}

.header-col-2 {
    width: 50%;
    padding-top: 1em;
    padding-top: 50px;
}

.list {
    display: flex;
    gap: 6em;
    background-color: black;
    height: 1em;
    padding-top: 1em;
    padding-bottom: 30px;
    box-shadow: 7.3px 14.6px 14.6px hsl(0deg 0% 0% / 0.27);
}

li {
    color: #31f2bb;
    font-family: "New Hero", sans-serif;
    font-weight: 600;
    font-style: normal;
    font-size: 1.2em;
    list-style: none;
    padding-top: .25em;
    height: 25px;
}

#logo {
    width: 12em;
    height: auto;
}

/*====HAMBURGER===============*/
.menu {
    display: none;
    
    padding-top: 10px;
    padding-left: 10px;
    padding-bottom: 10px;
    margin-top: 50px;
    width: 222px;

    position: relative;
    z-index: 1;

    user-select: none;

    appearance: none;
    border: none;
    outline: none;
    cursor: pointer;
}
.menu-line {
    width: 30px;
    height: 2.5px;
    border-radius: 6px;
    background-color: #31F2BB;
    margin-bottom: 6px;
    display: block;
    position: relative;
    z-index: 1;
    transform-origin: 0 0;
    transition: 0.4s;
}

.activeNav, .navBtn:hover {
    color: #007FFF;
    cursor: pointer;
  }

.menu:hover .menu-line:nth-child(2) {
    background-color: #007FFF;
    transform: translateX(10px);
}

.menu.active .menu-line:nth-child(1) {
    transform: translate(0px, -2px) rotate(47deg);
}

.menu.active .menu-line:nth-child(3) {
    transform: translate(-3px, 3px) rotate(-47deg);
}

.menu.active .menu-line:nth-child(2) {
    transform: translateX(15px);
    opacity: 0;
}

@media (max-width: 480px) {
    .navbar {
        flex-direction: column;
    }
    
    .burgerBackground {
        padding-bottom: 42px;
        height: 20px;
        background-color: black;
        padding-left: 10px;
        margin-top: 16px;
        box-shadow: 7.3px 14.6px 14.6px hsl(0deg 0% 0% / 0.27);
    }

    .menu {
        display: block;
        position: absolute;
        top: 25px;
        z-index: 4;
        overflow: hidden;
        width: 30px;
        height: 50px;
    }

    .list, li {
        display: block;
        margin-top: 15px;
        padding: 5px;
        text-align: left;
        width: 60px;
        padding-left: 40px;
    }

    .list {
        width: 207px;
        text-align: center;
        display: none;
        padding-top: 40px;
        position: absolute;
        z-index: 3;
        overflow: hidden;
    }


    #logo {
        padding-top: 1.4em;
        width: 8em;
        height: auto;
    }

    .active {
        display: block;
        height: 160px;
        position: absolute;
        overflow: hidden;
        padding-left: 10px;
        box-shadow: 7.3px 14.6px 14.6px hsl(0deg 0% 0% / 0.27);
    }
}

@media (min-width: 480px) and (max-width: 900px) {
    .navbar {
        flex-direction: column;
    }
    
    .burgerBackground {
        padding-bottom: 42px;
        height: 20px;
        background-color: black;
        padding-left: 10px;
        margin-top: 16px;
        box-shadow: 7.3px 14.6px 14.6px hsl(0deg 0% 0% / 0.27);
    }

    .menu {
        display: block;
        position: absolute;
        top: 25px;
        z-index: 4;
        overflow: hidden;
        width: 30px;
        height: 50px;
    }

    .list, li {
        display: block;
        margin-top: 15px;
        padding: 5px;
        text-align: left;
        width: 60px;
        padding-left: 40px;
    }

    .list {
        width: 167px;
        text-align: center;
        display: none;
        padding-top: 40px;
        position: absolute;
        z-index: 3;
        overflow: hidden;
    }


    #logo {
        padding-top: 1.4em;
        width: 8em;
        height: auto;
    }

    .active {
        display: block;
        height: 160px;
        position: absolute;
        overflow: hidden;
        padding-left: 10px;
    }
}