/* body{
    overflow-x: hidden;
} */
* {
    margin:0 auto;
    padding:0; 
    max-width: 100vw;    
}

  
a {
    color: #FFFFFF;
    text-decoration: none;
    transition: 0.3s;
    text-decoration: none;
    flex: none;
    order: 1;
    flex-grow: 0;
    margin: 0px 0px;
}
  
a:hover {
  opacity: 0.7;
  color: #E86B2B;
}

nav a {
    color: #007A68;
}

header {
    background-color: #E0F2F0;
    display: flex;
    flex-direction: row-reverse;
    justify-content:space-between;
    align-items: center;
    padding: 0;
    height: 101px;
    color: #007A68;

}


.logo {
    width:400px;
}
.logo img {
    width: 70%;
    margin-left:22%;
}
.mobile-menu {
    display: none;
    cursor: pointer;

}
.mobile-menu div {
    /* display: none; */
    width: 32px;
    height: 2px;
    margin:8px 15px 8px 8px;
    /* background: #007A68; */
    color: #FFFFFF;
    transition: 0.3s;
}

nav {
    /* position: static;
    height: 30px;
    left: 0px;
    top: 0px;
    width:100%; */

    font-family: 'Poppins', sans-serif;
    font-style: normal;
    font-weight: bold;
    font-size: 13px;
    line-height: 24px;

    letter-spacing: 0.2px;
    /* font-feature-settings: 'pnum' on, 'lnum' on; */
    

    text-decoration-color: #007A68;
    display: flex;
    justify-content: space-around;
    align-items: center;
    height: 8vh;
    margin-left:5%;
}

.nav-list {
    list-style: none;
    display: flex;
}

.nav-list li {
    margin-left:20px;
    
}

@media only screen and (max-width: 480px) {
    * {
        margin: 0;
        padding: 0;
        
    }
    body{
        overflow-x: hidden  !important;
        
    }
    .nav-list {
        position: absolute;
        top:10vh;
        right: 0;
        width:100vw;
        height: 70vh;
        background:#E0F2F0;
        flex-direction: column;
        align-items: center;
        justify-content: space-around;
        transform: translateX(100%);
        transition: transform 0.3s ease-in;
        font-size: 20px;
    }
    .nav-list li {
        margin-left: 0;
        opacity: 0;
        
    }
    .nav-list a {
        color: #007A68;
        text-decoration: none;
        transition: 0.3s;
        text-decoration: none;
        flex: none;
        order: 1;
        flex-grow: 0;
        margin: 0px 0px;
    }
    .mobile-menu {
        display: block;
        /* background: black; */
        /* border: solid 1px #E86B2B; */
        /* z-index: 1; */
        /* width: 50px;
        height:50px; */
        /* margin: 38px; */

    }
    .mobile-menu div {
        /* display: block; */
        /* cursor: pointer; */
        /* width: 32px;
        height: 2px;
        margin: 10px; */
        /* border: solid 1px black; */
        
        background: #007A68;
    }

}
.nav-list.active {
    transform: translateX(0);
}

@keyframes navLinkFade {
    from {
      opacity: 0;
      transform: translateX(50px);
    }
    to {
      opacity: 1;
      transform: translateX(0);
    }
}
  
.mobile-menu.active .line1 {
    transform: rotate(-45deg) translate(-8px, 8px);
}
  
.mobile-menu.active .line2 {
    opacity: 0;
}
 
.mobile-menu.active .line3 {
    transform: rotate(45deg) translate(-5px, -7px);
}