/*navbar css start*/
nav{
    height:50px;
    width:100vw;
    
    background-color:#a0454e;
    top:0px;
    display: flex;
    position:fixed;
    z-index: 10;
    }
.navbar{
    height:50px;
    width:100vw;

    background-color:black;
    top:0px;
    display: flex;
    position:relative;
    z-index: 10;
    }
/*Styling Links*/
.menu{
    display: flex;
    list-style: none; 
    
    position: relative;
    justify-content: space-evenly;
    align-items: center;
    text-transform: uppercase;
    margin:0 auto;
    

}
.menu-item{
    position:relative;
    padding:15px  20px;
    color: #ebedee;
    cursor: pointer;
    text-decoration: none;
}

.menu-item:hover{
    z-index: 10;
    color:azure;
     font-weight: bold;
    
}

.menu li a{
    text-decoration:none;
    color: #ebedee;
    cursor: pointer;
       
        
  }
.menu li a:hover{
    text-decoration: none;
      color:azure;
      font-weight: bold;
}


.submenu{
    position: absolute;
    top: 100%;
    left:0;
    
    list-style:none;
    padding:3px;
    display: none;
    min-width:150px;
    white-space:nowrap;
    
    
}
.submenu li a {
    text-decoration: none;
    font-size:small;
    color:#364156;
    padding:2px;
}
   
.submenu li a:hover{
    text-decoration: none;
    color:rgb(1, 9, 17);
    font-weight:900;
}
/*Styling Hamburger Icon*/
.hamburger div{
    width: 30px;
    height:3px;
    background: #f2f5f7;
    margin:5px;  
    transition: all 0.3s ease;
    position: relative;
    right:5px;
}
.hamburger{
    display: none;
}


/*Stying for small screens*/
@media screen and (max-width: 700px){
    navbar{
        position:relative;
        z-index: 3;
        top:0px;
    }

    .hamburger{
        display: block;
        right: 5px;
        position:absolute;
        cursor: pointer;
     
        top: 50%;
        transform: translate(-5%, -50%);
        z-index: 2;
       transition: all 0.7s ease;
    }
    .menu{
        position:relative;
        background: #1f1c2c;
        height: 100vh;
        width: 100%;
        color:white;
        font-weight: 300;
        
 
    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;
    }
  .menu.open{
        clip-path: circle(1000px at 90% -10%);
        -webkit-clip-path: circle(1000px at 90% -10%);
        pointer-events: all;
    }
    .menu li{
        opacity: 0;
        position:relative;
        margin-top:0;
     }
   
  .menu li:nth-child(1){
        transition: all 0.5s ease 0.2s;
    }
    .menu li:nth-child(2){
        transition: all 0.5s ease 0.4s;
    }
    .menu li:nth-child(3){
        transition: all 0.5s ease 0.6s;
    }
    .menu li:nth-child(4){
        transition: all 0.15s ease 0.8s;
    }
    .menu li:nth-child(5){
        transition: all 0.15s ease 1.0s;
    }

    .submenu{
      
      
        min-width:100%;
        height:25px;
        position:absolute;
        top:100%;
        width:fit-content;
        color:white;
        font-size: medium;
        padding:10px;
        text-align: center;
       
        
    }



    .submenu li a{
        position:relative;
        font-size:medium;
        color:white;
        font-size:smaller;
        margin-right:40px;
        
   
        
    }
    .submenu li a:hover{
 
      font-weight: bold;
      color: #c3cfe2;
    }
    .menu-item{
        color:white;
    }
    

    .menu li a{
    text-decoration:none;
    color: white;
    font-weight: 300;
    cursor: pointer;
       
        
  }

    .navbar li{
        transition:  0.2s ease-in-out;

    }


     
    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);
}

/*navbar css end*/