header.nav {
     background: linear-gradient(180deg, rgba(0, 0, 0, 0.64) 0%, rgba(0, 0, 0, 0.4736) 59.9%, rgba(0, 0, 0, 0) 100%); 
    padding: 10px;
    padding-top: 0;
    height: 70px;
    position: fixed;
    width: 100%;
    z-index: 10;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    max-width: 1200px;
    align-items: center;
    margin: 0 auto;
    padding: 0 2rem;
}

.nav-container > a {
    height: 100%;
    display: flex;
    justify-content: center;
    column-gap: 2rem;
    align-items: center;
    text-decoration: none;
    color: #fff;
}

.nav-container > a > .hamburger {
    width: 35px;
    height: auto;
}

.nav-container > a > h2, h3 {
    color: #fff !important;
    margin: 0;
    text-transform: uppercase;
}

@media(max-width: 600px){
    .nav-container > a > h3 {
        display: none;
    }
}

.nav-container > a > img {
    width: 70px;
    height: 70px;
}