
nav *{
    margin: 0;
    padding: 0;
    color:black;    
    letter-spacing: 1px;
    font-weight: 400;
}
#menu-button{
    display:none;
}

#logo a {
    padding: 10px 30px!important;
}

.navs li a {
    margin: 0px 1.7vw !important;
}

nav ul:nth-child(2) li a {
    margin:0;
}

.folltxt{
    font-size: calc(1vw + 0.9vh) !important;
    padding: 3% 0% 2% 0% !important;
    text-align: center;
}

body{
    overflow-x: hidden;

}
nav *{
    font-size:initial;
}
nav{
    display: flex;
    justify-content: space-between;
    width: 100vw;
  
    display: flex;
    position: absolute;
    z-index: 10;
}

/*Styling logo*/
nav .logo{
    padding:1vh 1vw;    
     
}
.social-icons li a{
margin:0;
}

/*Styling Links*/
nav .nav-links{
    display: flex;
    
    list-style: none;     
    padding: 0 0.7vw;
    justify-content: space-between;
    align-items: center;
    text-transform: uppercase;
}
nav .nav-links li a{
    text-decoration: none;
    margin: 0 0.7vw;
    display: inline-block;
}
nav .nav-links li a:hover,nav .nav-links li a:hover i{
    color: #a5a1a1;
}
nav .nav-links li {
    position: relative;
}
nav .nav-links li a::before {
    content: "";
    display: block;
    height: 3px;
    width: 0%;
    background-color: #61DAFB;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
}
nav .nav-links li a:hover::before{
    
}

/*Styling Buttons*/
nav .login-button{
    background-color: transparent;
    border: 1.5px solid #f2f5f7;
    border-radius: 2em;    
    margin-left: 2vw;
    font-size: 1rem;
    cursor: pointer;
    padding: 10px

}
nav .login-button:hover {
    color: #131418;
    background-color: #f2f5f7;
    border:1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}
nav .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;
}
nav .join-button:hover {
    color: #f2f5f7;
    background-color: transparent;
    border:1.5px solid #f2f5f7;
    transition: all ease-in-out 350ms;
}

/*Styling Hamburger Icon*/
nav .hamburger div{
    width: 30px;
    height:3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}
nav .hamburger{
    display: none;
}

/*Stying for small screens*/
@media screen and (max-width: 800px){
    nav{
        position: fixed;
        z-index: 3;
    }
    nav .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }
    nav .nav-links{
        position: fixed;
        background: #131418;
        height: 100vh;
        width: 100%;
        flex-direction: column;
        clip-path: circle(50px at 90% -20%);
        -webkit-clip-path: circle(50px at 90% -10%);
        transition: all 1s ease-out;
        pointer-events: none;
    }
    nav .nav-links.open{
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    nav .nav-links li{
        opacity: 0;
    }
    nav .nav-links li:nth-child(1){
        transition: all 0.5s ease 0.2s;
    }
    nav .nav-links li:nth-child(2){
        transition: all 0.5s ease 0.4s;
    }
    nav .nav-links li:nth-child(3){
        transition: all 0.5s ease 0.6s;
    }
    nav .nav-links li:nth-child(4){
        transition: all 0.5s ease 0.7s;
    }
    nav .nav-links li:nth-child(5){
        transition: all 0.5s ease 0.8s;
    }
    nav .nav-links li:nth-child(6){
        transition: all 0.5s ease 0.9s;
        margin: 0;
    }
    nav .nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
        margin: 0;
    }
    nav li.fade{
        opacity: 1;
    }
}
/*Animating Hamburger Icon on Click*/
nav .toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
nav .toggle .line2{
    transition: all 0.7s ease;
    width:0;
}
nav .toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}










#footer h5{
       font-size: calc(1.2vw + 1vh);
       color: #fff;
       padding: 0% 0% 2% 0%;
}
#footer p{
       font-size: calc(0.5vw + 0.5vh);
       color: #fff;
       padding: 0% 0% 2% 0%;
}
.ftdv{
    display: flex;
}



    @media screen and (max-width:1100px) {
    

#footer p{
       font-size: calc(0.9vw + 0.9vh);
}

}

    @media screen and (max-width:710px) {
    
#footer h5{
       font-size: calc(1.8vw + 1.8vh);
}

#footer p{
       font-size: calc(1vw + 1vh);
}

}



    @media screen and (max-width:710px) {
    
#footer .social-icons{
    text-align: left;
}

}