*{
    margin: 0px;
    padding: 0px;
    box-sizing: border-box;
    font-family: akagi-pro, sans-serif;
    font-weight: 400;
    font-style: normal;
}

header{
  	margin-top: -60px;
  	height: 110px;
    display: flex;
    justify-content: space-around;
    align-items: center;
  	-webkit-box-shadow: 0px 2px 26px -8px rgba(0,0,0,0.75);
	-moz-box-shadow: 0px 2px 26px -8px rgba(0,0,0,0.75);
	box-shadow: 0px 2px 26px -8px rgba(0,0,0,0.75);
  	z-index:30;
}
	

.container {
  max-width: 1430px;
  width: 90%;
}

.logo img{
    width: 170px;
    margin-bottom: 20px;
  	
}

nav{
  	display: flex;
    justify-content: space-around;
    align-items: center;
    min-height: 8vh;
    background-color: white;
    height: 30px;
    z-index: 20;
}

.nav-links{
    display: flex;
    justify-content: space-around;
    width: 45%;
}

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

.nav-links a{
    text-decoration: none;
    font-weight: bold;
    font-size: 14px;
    color: black;
  	letter-spacing: 0.1em;
}

.nav-links a:hover{
    color: lightgray;
}

.social-icons{
    margin-bottom: 20px;
  	
}

.social-icons li{
    list-style: none;
}

.burger{
    display: none;
}

.burger div{
    width: 25px;
    height: 3px;
    background-color: black;
    margin: 5px;
    transition: all 0.3s ease;
}

.special-menu-item {
	color: white !important;
	background: black;
	border-radius: 4px;
	padding: 5px;
}



@media screen and (max-width: 768px){
    body, html{
        overflow-x: hidden;
    }
    
    .header{height: 40px;}
    
    .social-icons{
        display: none;
    }
    
    .nav-links{
        position: absolute;
        right: 0px;
        height: 68vh;
        top: 13vh;
        background-color: white;
        z-index: 10;
        /*display: flex;*/
        flex-direction: column;
        align-items: center;
        /*width: 15%;*/
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
        box-shadow: rgb(220, 220, 220) 0px 2px 10px;
    }
  
    .nav-links li{
        opacity: 0;
    }
    .burger{
        display: block;
        cursor: pointer;
      	z-index: 20;
    }  
}


@media screen and (max-width: 667px){
    .social-icons{
        display: none;
    }
    
    .nav-links{
        height: 72vh;
        top: 12vh;
        width: 60%;
       
    }
}

@media screen and (max-width: 1124px){
    .nav-links{
        width: 60%;
    }
  
}

@media screen and (min-width: 1280px){
  .container{width: 70%;}
}

@media (min-width: 1920px){
  .logo img{
    width: 230px;
  	margin-bottom: 20px;
	}
  .nav-links{
    display: flex;
    justify-content: space-around;
    
	}
  	.nav-links a{
    font-size: 16px;
	}
  	header{
  	height: 150px;
	}
}

.nav-active{
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from{
        opacity: 1;
        /*transform: translateX(110px);*/
    }
    to{
        opacity: 1;
        /*transform: translateX(0px);*/
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px, 6px);
}

.toggle .line2{
    opacity: 0;
}

.toggle .line3{
    transform: rotate(45deg) translate(-5px, -6px);
}



