*{
    margin:0;
    padding:0;
    box-sizing: border-box;
    font-family: "poppins"
}
body {
    margin-top: .3px;
    margin-left: 0px;
    margin-right: 0px;

}
.menu {

    top:0;
    position: relative;
    margin-top:10px;
}

nav {
    display: flex;
    top:0%;
    justify-content: space-around;
    align-items: center;
    min-height: 12vh;
    background-color: white;
    font-family: "poppins";
    width:100%;
    z-index: 1;
    
}
.nav-logo{
  height:80px;
  width:80px;
  margin-left:20px;
 margin-bottom:-.3%;
}

.ani-menu {
    display: none;
    opacity: 0;
    position: absolute;
    width: 100%;
    
}
/*
.menu-title{
  background-color:red;
}
*/
.menu:focus .ani-menu,
.menu:focus-within .ani-menu,
.menu:hover .ani-menu{
    display: block;
    opacity: 1;
    z-index: 1;
   transition-delay:0s, 0s, 0.3s;
  
    transform: translateY(0.1em);
    
    transition: all 0.3s ease 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    -webkit-transition: all 0.3s ease 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    -moz-transition: all 0.3s ease 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    -ms-transition: all 0.3s ease 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
    -o-transition: all 0.3s ease 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}

nav a {
    color: #000000;
    display:block;
    padding: 15px 40px;
    text-decoration: none;
    font-family: "poppins";
}

.ani-menu a{
    display:block;
    padding: 15px 30px;
    font-family: "poppins";
}

.width-1 {
    width:100%;
}

.width-2 {
    width: 100%;
}

.ani-menu a:hover {
    background: rgba(26, 54, 47, 0.7);
    position: relative;
}



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

nav > ul {  
    text-align: center;
   

    
}

nav > ul > li {
    display: inline-block;
}

nav > ul > li:first-child {
    border-left: none;
}

.ani-menu {
    background: #ffffff;
}



.burger {
    display: none;
    cursor: pointer;
    margin-right: -20%;
}

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


@media screen and (min-width: 950px) and (max-width: 1011px){
    .menu{
        font-size: 1.4vw;
    }


}

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


}




@media screen and (max-width: 950px) {
    body {
        overflow-x: hidden;
        
    }
    .nav-logo{
      margin-left: -50px;
    }
    

    .ani {
        position: fixed;
        right: 0px;
        height: 92vh;
        top:8vh;
        background-color: white;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    .menu {
        opacity: 0;
        margin-top:10%;
    }
 .width-1{
     width:100%;
 }
 nav a {
   padding: 15px 10px;
 }

    .burger {
        display: block;
        margin-right: -17.5%;
    }
}
@media only screen and (max-width: 351px){
  .ani-menu a{
    padding: 15px 20px;
  }
}


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

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

.cool .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.cool .line2{
    opacity: 0;
}
.cool .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}


