section {
    display: block;
}

.navigation {

}
.m-logo-container {
    display: flex;
    height: 44px;
    align-items: center;
    justify-content: center;
    padding-left: var(--unit-body-margin);
    padding-top: 6px;
}

.btn-container {
    display: flex;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 20%;
    /* background-color: aliceblue; */
    padding-top: 3px;
}

.menu-icon-verti {
    position: relative;
    right: 0;
    height: 60%;
    width: 48%;
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    align-items: center;
}

.menu-stroke {
    width: 100%;
    height: 3px;
    /* border-radius: 2%; */
    background-color: black;
}


.top-right-fixed-btn {
    position: fixed;
    /* top: calc(var(--unit-margin) / 1); */
    /* right: calc(var(--unit-margin) / 1); */
    top: 0;
    right: 0;
    z-index: 200;
    display: flex;
}

.close-icon {
    margin: 0;
    padding: 0;
    border: 0;
    background: none;
    position: relative;
    width: 60%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.close-stroke-up {
    transform: rotate(45deg);
}

.close-stroke-down {
    transform: rotate(-45deg);
}

.close-stroke-down, .close-stroke-up {
    width: 100%;
    height: 3px;
    position: absolute;
    background-color: black;
}

.nav-container {
    width: 100%;
    max-width: 1400px;

}

.brand {
    position: relative;
    padding-left: 20px;
    float: left;
    text-transform: uppercase;
}

nav {
    width: 100%;
    white-space: nowrap;
    justify-content: space-between;
}


.nav-list {
    display: block;
}


nav ul {
    list-style: none;
    margin: 0;
    padding: 0;

}

nav ul li {
    letter-spacing: 2px;
    position: relative;
    flex-grow: 1;
    flex-basis: 0;
    background-color: 0;
    padding-bottom: var(--unit-body-margin);
}

nav ul li ul li{
    padding-bottom: 0;
}

/*Dropdown list binds to JS toggle event*/


nav ul li a, nav ul li {
    display: block;
    padding: 0 0px;
    color: black;
    text-decoration: none;
    line-height: var(--zab-9);
    white-space: normal;
    width: 260px;
}

nav ul li a:hover {
    font-weight: 500;
background-color: var(--variable-hover-color);
}

.nav-dropdown {
    position: absolute;
    display: none;
    z-index: 1;
    padding-left: var(--square-36);
}


.nav-mobile {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    background: #262626;
    height: 70px;
    width: 70px;
}

#nav-toggle {
    position: absolute;
    left: 18px;
    top: 22px;
    cursor: pointer;
    padding: 10px 35px 16px 0px;
}

.selected {
    color: green;
    text-decoration: underline;
}

.arrow-container {
    display: flex;
    align-items: center;
    justify-content: center;

}

.arrow-item  {
    line-height: var(--zab-12);
    font-size: var(--font-size-12);
text-align: center;
    margin-block-end: calc(var(--square-36) *3);
    padding: 0px var(--square-36);
}

.arrow-item a  {
    text-decoration: none;
}

@media only screen and (max-width: 798px) {

    .nav-mobile {
        display: block;
    }


}
