@font-face{
    font-family: 'Dream-Avenue';
    src: url("../Dream-Avenue.ttf") format("truetype");
   }
* {
    margin: 0;
    padding: 0;
}
nav{
    height: 4rem;
    width: 100%;
    display: flex;
    position: fixed;
    z-index: 10;
    background-color: #000000;
    box-shadow: 0 3px 20px rgba(0,0,0,0.2);
    top: 0;
}
img#logoImg {
    border-radius: 50%;
    width: 100px;
    position: absolute;
    top: 0;
    left: 0;
    background: white;
    border: 1px solid #9393931a;

}
/* Styling Logo*/

.logo{
    padding: 3vh 3vw;
    text-align: left;
    width: 20vw;
}

.logo img{
    height: auto;
    width: 4rem;
}

/* Styling Navigation Links*/

.nav-links{
    width: 80vw;
    display: flex;
    padding: 0 0.7vw;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
    list-style: none;
    font-weight: 600;
    /* margin-top: 55px; */


}

.nav-links li a{
    margin: 0 0.7vw;
    text-decoration: none;
    transition: all ease-in-out 350ms;
    padding: 10px;
    color: white;
    font-family: "Dream-Avenue";
    letter-spacing: 2px;
    text-transform: math-auto;

}
span#image_shadows strong {
    background: none;
}

a#navbar_anker:hover{
    color:rgb(0, 0, 0);
    background-color: #fff;
    padding: 1px;
    border-radius: 50px;
    font-family: "Dream-Avenue";
}


.nav-links li{
    position:relative;
}

.nav-links li a:hover::before{
    width: 80%;
}


/*Buttons Styling*/



/*Navigation Icon Styling*/

.hamburger div{
    width: 30px;
    height: 3px;
    background: #f2f5f7;
    margin: 5px;
    transition: all 0.3s ease;
}

.hamburger{
    display: none;
}
li.social_icons_varsha {
    width: 200px;
}
a#social_links {
    padding: 0;
    margin: 4px;
}
a#social_links img {
    width: 25px;
}




/*Responsive Adding Media Queries*/

@media screen and (max-width: 800px){
    li.social_icons_varsha.fade {
        background: none;
        text-align: center;
    }
    nav{
        position: fixed;
        z-index: 3;
        background-color: black;
    }
    .logo {
        width: 100%;
        width: 100%;
        background: black;
        z-index: 1
    }
    .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{
        background: #053742;
        position: fixed;
        opacity: 1;
        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-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;
    }
    .nav-links li:nth-child(7){
        transition: all 0.5s ease 1s;
        margin: 0;
    }

    li.fade{
        opacity: 1;
    }

    /* Navigation Bar Icon on Click*/

        .toggle .bars1{
            transform: rotate(-45deg) translate(-5px, 6px);
        }

        .toggle .bars2{
            transition: all 0s ease;
            width: 0;
        }

        .toggle .bars3{
            transform: rotate(45deg) translate(-5px, -6px);
        }

}
nav#varsha_navbar {
    background-color: black;
    display: flex;
    justify-content: space-between;
    width: 100%;
    position: fixed;
    top: 0;
    height: 80px;
}
a#navbar_anker {
    color: white;
    height: 20px;

}
span {
    background: none;
}