*{
    margin: 0;
    padding: 0;
    text-decoration: none;
    list-style-type: none;
    font-family: 'Poppins', sans-serif;
}
/* HEADING */
header{
    width: 100%;
    background-color: #ffffff;
    max-width: 100%;
    height: 90px;
}
#header-container{
    display: flex;
    height: 90px;
    align-items: center;
    margin: 0 40px;
}
#logo{
    flex-grow: 1;
}
#nav{
    flex-grow: 1;
}
#nav ul{
    display: flex;
    justify-content: center;
}
#nav li{
    padding: 10px;
    margin-left: 18px;
}
#nav i{
    color: #004666e8;
}
#nav a{
    font-size: 15px;
    font-weight: 600;
    color: #004666e8;
}
#nav a:hover{
    text-decoration: underline;
}
#nav a.active{
color: rgb(209, 73, 49);
text-decoration: none;
}
#nav .icon{
    display: none;
}
#social a{
    font-size: 25px;
    color: honeydew;
}
#logo p{
    font-size: 40px;
    color: gray;
}
.burger{
    display: none;
    cursor: pointer;
}
.burger div{
    width: 30px;
    height: 4px;
    background-color: #004666e8;
    margin: 7px;
    transition: all 0.3s ease;
}
@media screen and (max-width: 880px){
    #nav a{
        font-size: 12px;
    }
    #logo p{
        font-size: 20px;
        color: gray;
    }
}
@media screen and (max-width:720px){
    body{
        overflow-x: hidden;
    }
    .nav-links{
        position: absolute;
        right: 0px;
        height: 92vh;
        top: 90px;
        background-color: #ffffff;
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 50%;
        z-index: 3;
        transform: translateX(100%);
        transition: transform 0.5s ease-in;
    }
    #nav li{
        opacity: 0;
        margin-bottom: 30px;
        border-bottom: 1px solid #004666e8;
        width: 200px;
    }
    #nav a{
        font-size: 18px;
    }
    .burger{
        display: block;
    }
    #logo p{
        font-size: 20px;
        color: gray;
    }
}
@media screen and (max-width:425px){
    #nav li{
        opacity: 0;
        margin-bottom: 30px;
        border-bottom: none;
        width: 100%;
    }
    #nav a{
        font-size: 16px;
    }
    #header-container{
        margin: 0 20px;
    }
}


.nav-active{
    transform: translateX(0%);
}

@keyframes navLinkFade{
    from{
    opacity:0;
    transform:translateX(50px);
    }
    to{
       opacity: 1;
       transform: translateX(0px); 
    }
}

.toggle .line1{
    transform: rotate(-45deg) translate(-5px,10px);
}
.toggle .line2{
    opacity: 0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-10px);
}