#total_nav {
    position: fixed;
    z-index: 99;
    width: 100%;
    transition: all .5s linear;
}
#bottom_nav {
    background: #FFFFFF;
    padding: 15px 0px;
}
.sticky {
    position: fixed;
    top: 0;
    width: 100%;
    background: #fff;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    transition: all .5s linear;
}
.sticky .nav-links li a {
    color: #3d3d3d;
    transition: all .5s linear;
}
.sticky .nav-links li a:hover {
    color: #3d3d3d;
    transition: all .5s linear;
}
.nav_contact {
    display: flex;
    align-items: center;
    background: #04BE57;
    text-decoration: none;
    border-radius: 50px;
    padding: 5px 5px 5px 10px;
    font-size: 14px;
    font-weight: 500;
    color: #FFFFFF;
}
.nav_contact:hover{
    color: #fff;
}
.nav_contact img{
    margin-left: 10px;
    animation: phonering-alo-circle-img-anim 1s infinite ease-in-out;
}
@keyframes phonering-alo-circle-img-anim {
    0% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    10% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    20% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    30% {
        -webkit-transform:rotate(-25deg) scale(1) skew(1deg);
                transform:rotate(-25deg) scale(1) skew(1deg)
    }

    40% {
        -webkit-transform:rotate(25deg) scale(1) skew(1deg);
                transform:rotate(25deg) scale(1) skew(1deg)
    }

    50% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }

    100% {
        -webkit-transform:rotate(0) scale(1) skew(1deg);
                transform:rotate(0) scale(1) skew(1deg)
    }
}
nav {
    display: flex;
    z-index: 10;
    justify-content: space-between;
    align-items: center;
}
.nav_mail {
    margin-right: 40px;
}
/*Styling logo*/
/*Styling Links*/
.nav-links {
    display: flex;
    list-style: none;
    padding: 0;
    justify-content: space-evenly;
    align-items: center;
    margin: 0;
}
.nav-links li a {
    text-decoration: none;
    color: #4A4A4A;
    font-size: 14px;
    padding: 0px 12px;
    font-weight: 500;
    text-transform: uppercase;
}
.nav-links .active::after {
    position: absolute;
    content: '';
    bottom: -32px;
    left: 0;
    background: #04be57;
    width: 100%;
    height: 2px;
}
.nav-links li a:hover {
    color: #04BE57;
}
.nav-links li {
    position: relative;
    margin-left: 20px;
}
nav .active a {
    color: #04BE57!important;
}
/*Styling Buttons*/
.login-button{
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    margin-left: 2vw;
    font-size: 1rem;
    cursor: pointer;

}
.login-button:hover {
    color: #131418;
    background-color: #f2f5f7;
    border:1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}
.join-button{
    color: #131418;
    background-color: #61DAFB;
    border: 1.5px solid #61DAFB;
    border-radius: 2em;
    padding: 0.6rem 0.8rem;
    font-size: 1rem;
    cursor: pointer;
}
.join-button:hover {
    color: #f2f5f7;
    background-color: transparent;
    border:1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
.hamburger div{
    width: 30px;
    height:3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}
.hamburger{
    display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 991px){
    .fix_icons{
        display: none;
    }
    .nav-links li a{
        color: #fff!important;
    }
    .nav_contact{
        display: none;
    }
    .nav-links .active::after{
        display: none;
    }
    footer {
        padding: 30px 5px 70px;
    }
    .fixed_section{
        display: flex;
    }
    .nav-links li {
        position: relative;
        margin-left: 0;
        padding: 20px 20px;
        border-bottom: 1px solid #ffffff0f;
    }
    .hamburger {
        display: block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
        background: #04BE57;
        padding: 3px 5px;
    }
    .nav-links {
        display: block;
        position: fixed;
        background: #04BE57;
        height: 100vh;
        width: 300px;
        flex-direction: column;
        transition: all .2s ease-out;
        right: 0;
        top: 0;
        transform: translate(100%, 0%);
    }
    .sticky .nav-links li a {
        color: #ffffff;
    }
    .nav-links .active {
        background: #282828;
    }
    nav .active a {
        background: transparent;
    }
    .nav-links li a:hover {
        background: transparent;
    }
    .nav-links li a {
        font-size: 16px;
        width: 100%;
        display: inline-block;
        padding: 0px 10px;
    }
    .sticky .nav-links li a:hover {
        color: #ffffff;
    }
    .hamburger div {
        background: #ffffff;
        height: 1px;
        margin: 7px 0px;
    }
    .lines3 {
        top: 72px;
    }
    .nav-links.open{
        transform: translate(0%, 0%);
    }
    .nav-links li:nth-child(1){
        transition: all 0.5s ease 0.2s;
    }
    .nav-links li:nth-child(2){
        transition: all 0.5s ease 0.4s;
    }
    .nav-links li:nth-child(3){
        transition: all 0.5s ease 0.6s;
    }
    .nav-links li:nth-child(4){
        transition: all 0.5s ease 0.7s;
    }
    .nav-links li:nth-child(5){
        transition: all 0.5s ease 0.8s;
    }
    .nav-links li:nth-child(6){
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    .nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
        margin: 0;
    }
}
/*Animating Hamburger Icon on Click*/
.togglebar .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.togglebar .line2{
    transition: all 0.7s ease;
    width:0;
}
.togglebar .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}
