
.nav-wrapper {
	background-color: var(--nav-bg);
	z-index: 100;
}

.navigation {
    display: flex;
    height: 8vh;
    align-items: center;
    width: 95%;
    margin: auto;
    justify-content: space-between;
}

.logo {
    width: 40px;
}

.menu {
    width: 33px;
    cursor: pointer;
}

.menuControl {
    width: 100%;
    height: 2px;
    background-color: var(--navigationText);
}

.hamburger
{
    display:  flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    height: 100%;
}

.hamburger-layer {
    margin:  4px 0px;
}

.closeMenu-1{
    transform: rotateZ(45deg);
}

.closeMenu-2{
    transform:rotate(-45deg) translateY(-1.5px);
}

#mobileNavigation {
    width: 100%;
}

.mobile-nav-links {
    margin: auto;
    text-align: center;
    font-size: 2em;
    letter-spacing: 2px;
    position: relative;
    
}

.mobile-nav-links li {
    margin: 2em;
}

.mobile-nav-links{
    color: var(--navigationText);
    font-family: 'Lora', serif;
}

.nav-social-media {
    position: absolute;
    bottom: 2em;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
}

.social-media-svg {
    width: 30px;
    height: 30px;
    margin: 0 1em;
}

.nav-links {
    display: none;
	list-style: none;
}

.nav-links li {
    height: 100%;
    color: black;
}

.nav-links a{
    font-size: 1.4em;
    font-family: 'Lora', serif;
    letter-spacing: 1px;
}

.bottom-border {
    color:  var(--navigationText);
}


.bottom-border {
    border-bottom: 1px solid var(--nav-bg);
    padding-bottom: .5em;
    transition: border-color 1s, color 1s;
}

.special-nav{
    color: var(--primary);
}

.special-border {
    border-bottom: 1px solid var(--nav-bg);
    padding-bottom: .5em;
    transition: border-color 1s, color 1s;
}

.bottom-border:hover {
    border-color: white;
    color: white;
}

.special-border:hover {
    border-color: var(--primary);
}

.selectedNav a{
    border-color: white;
    color: white;
}

.fixed {
    position: fixed;
    width: 100%;
    height: 100%;
}

@media screen and (min-width: 950px) {
    .menu {
        display: none;
    }

	.nav-links {
        display: flex;
        /* justify-content: space-between; */
        /* width: 30%; */
	}

    .nav-links li{
        margin: 0 2em;
    }
}