*{
    margin: 0;
    padding: 0;
    color: #000;
    font-family: "Bookman Old Style" !important;  
    letter-spacing: 1px;
    font-weight: 300;
}
section, div, .section, .div {
    font-family: "Bookman Old Style" !important;  
  }
body{
    overflow-x: hidden;
}
nav {
    /* height: 6rem; */
    /* width: 88%; */
    background-color: #f35104;
    box-shadow: 0 3px 20px rgb(0 0 0 / 20%);
    /*display: flex;
    position: absolute;*/
    z-index: 10;
    /* margin: -1% 0% 0% 12.4%; */
}

/*Styling logo*/


/*Styling Links*/
.nav-links{
    display: flex;
    list-style-type: none; 
    /*width: 88vw;
     margin: 1.5% 0% 0% 8%; */
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
	margin-bottom:0;
}
.nav-links li a{
   /* text-decoration: none;*/
    margin: 0 0.7vw;
    color: #fff;
    font-weight:600;
	padding:10px 5px;
	display:block;
	font-size:14px;
}
.nav-links li a:hover {
    color: #000;
}
.nav-links li {
    position: relative;
  /*  margin: 0% 6% 1% -6%;*/
}
.nav-links li a::before {
    content: "";
    display: none;
	/*display:inline-block;*/
    height: 3px;
    width: 0%;
    background-color: #000;
    position: absolute;
    transition: all ease-in-out 250ms;
    margin: 0 0 0 10%;
}
.nav-links li a:hover::before{
    width: 80%;
}

/*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: #f35104;
    border: 1.5px solid #f35104;
    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: 800px){
    nav{
        position: absolute;
        z-index: 3;
    }
    .hamburger{
        display:block;
        position: absolute;
        cursor: pointer;
        right: 5%;
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
        transition: all 0.7s ease;
    }
    .nav-links{
    position: absolute;
    background: #000;
    height: 80vh;
    width: 100%;
    margin: 1px 0px 0px 1px;
        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-links li a {
        font-weight: 700;
        font-size: 15px;
    }
    .nav-links.open{
        
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    .nav-links li{
        opacity: 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;
        margin: 0px 0px 0px -13px;
    }
    .nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
        margin: 0;
        margin: 0px 0px 0px -13px;
    }
    li.fade{
        opacity: 1;
    }
}
/*Animating Hamburger Icon on Click*/
.toggle .line1{
    transform: rotate(-45deg) translate(-5px,6px);
}
.toggle .line2{
    transition: all 0.7s ease;
    width:0;
}
.toggle .line3{
    transform: rotate(45deg) translate(-5px,-6px);
}

@media only screen and (max-width: 600px) {
  .nav-links li a:hover {
    color: #fff;
}
}
