.navContainer {
    width: 100%; height: 76px;
    background-color: #222222e5;
    border-bottom: 1px solid transparent;
    z-index: 5;
    position: sticky;
    top: -1px;
}

.navMobile {
    width: 100%; height: 75px;
    display: flex;
    position: relative;
}

.navHamburger {
    width: 20%; height: 75px;
}

#button1 {
    width: 30px; height: 35px;
    background-color: #ffffff00;
    overflow: hidden;
    position: relative;
    margin-top: 22px; margin-left: 10px;
}

.navHIcons {
    width: 30px; height: 4px;
    background-color: white;
    position: absolute;
    transition: all 750ms ease-in-out;
}

.menuClosed .navIcon1 {
    top: 0px; left: 0px;
}

.menuClosed .navIcon2 {
    top: 12.5px; left: 0px;
}

.menuClosed .navIcon3 {
    top: 25px; left: 0px;
}

.menuClosed .navIcon4 {
    opacity: 0;
    transform: rotate(45deg);
    top: 11px; left: 59px;
}

.menuClosed .navIcon5 {
    opacity: 0;
    transform: rotate(-45deg);
    top: 11px; left: 59px;
}

.menuOpened .navIcon1 {
    top: 0px; left: -90px;
}

.menuOpened .navIcon2 {
    top: 12.5px; left: -65px;
}

.menuOpened .navIcon3 {
    top: 25px; left: -40px;
}

.menuOpened .navIcon4 {
    opacity: 1;
    top: 11px; left: -1px;
    transform: rotate(45deg);
}

.menuOpened .navIcon5 {
    opacity: 1;
    top: 11px; left: -1px;
    transform: rotate(-45deg);
}

.navExpandContainer {
    position: absolute;
    top: 75px;
    display: none;
    opacity: 0;
    margin-top: 1px;
    width: 100%; height: auto;
    background-color: #222;
    transition: all 500ms ease-in-out;
}

.navListContent ul {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(1, 1fr);
}

.navListContent li {
    width: 100%; height: 75px;
    border-bottom: 1px solid #BBB;
}

.navListContent li a {
    width: 100%; height: 100%;
    padding-left: 10px;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: white;
    font-size: 6vw;
    font-weight: bold;
    font-family: Verdana, Geneva, Tahoma, sans-serif
}

.navMImg {
    width: 80%; height: 100%;
    display: flex;
    justify-content: center;
    padding-right: 20%;
}

.navMImg img {
    width: 90%; height: 90%;
    padding-top: 5%;
}
/*
.navName {
    width: 80%; height: 75px;
    opacity: 1;
    display: flex;
    align-items: center;
    transition: opacity 500ms ease-in-out;
}

.navName p {
    padding-left: 20px;
    color: white;
    font-family: "Varela Round", serif;
    font-size: 10vw;
}
*/
.navDesktop {
    display: none
}

@media (min-width: 481px) {
    .navContainer {
        height: 165px;
        overflow: hidden;
    }
    
    .navMobile {
        display: none;
    }

    .navDesktop {
        width: 100%; height: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .navDImg {
        width: 100%; height: 75px;
        display: flex;
        justify-content: center;
        padding-top: 15px;
        padding-left: 30px;
    }

    .navDImg img {
        width: 65px; height: 65px;
    }

    .navDList {
        width: 100%; height: 100%;
    }

    .navDList ul {
        width: 100%; height: 75px;
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .navDList ul a {
        display: block;
        width: 100%; height: 100%;
        font-size: 20px;
        text-decoration: none;
        color: white;
        padding: 20px;
        transition: background-color 500ms ease-in-out;
    }

    .navDList ul a:hover {
        background-color: #666;
    }
}

@media (min-width: 1024px) {
    .navContainer {
        height: 165px;
    }
    
    .navMobile {
        display: none;
    }

    .navDesktop {
        width: 100%; height: 100%;
        display: grid;
        grid-template-columns: repeat(1, 1fr);
    }

    .navDImg {
        width: 100%; height: 75px;
        display: flex;
        justify-content: center;
        padding-top: 15px;
        padding-left: 30px;
    }

    .navDImg img {
        width: 65px; height: 65px;
    }

    .navDList {
        width: 100%; height: 100%;
    }

    .navDList ul {
        width: 100%; height: 75px;
        list-style: none;
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 20px;
    }

    .navDList ul a {
        display: block;
        width: 100%; height: 100%;
        font-size: 28px;
        text-decoration: none;
        color: white;
        padding: 20px;
        transition: background-color 500ms ease-in-out;
    }

    .navDList ul a:hover {
        background-color: #666;
    }
}