@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@200;300;400;500;600;700&display=swap');
*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'Poppins', sans-serif;

}

/*nav bar */
::-webkit-scrollbar {
    width: 1px;
}
::-webkit-scrollbar-track {
    background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
    background: black;
}
::selection{
  background: rgb(0,123,255,0.3);
}


.content{
  max-width: 100%;
  margin: auto;
  padding: 0 30px;
}
.navbar{
  position: fixed;
  width: 100%;
  z-index: 10;
  padding: 10px;
  transition: all 0.1s ease;

}
.navbar.sticky{
  background: white;
  padding:0px 50px;
  box-shadow: 0px 3px 5px 0px rgba(0,0,0,0.1);
  height: 80px;
}


.navbar.sticky .logo img{
  margin-top: 0%;
  width: 120px;
}


.logo img{

  margin-left: 80px;
  margin-top: 0px;
}

.navbar .content{
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.navbar .menu-list{
  display: inline-flex;
  padding-right:0px;
}
.menu-list li{
  list-style: none;
  margin-top: 0px;

 
}
.menu-list ul {
  margin-right: 60px;
  margin-top: 1px;  
}
.menu-list li a{
  color: black;
  font-size: 21px;
  font-weight: 400;
  margin-left: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #081467;
}
.menu-list li a:hover{
  color: #fc9206;
}



.icon{
  color: black;
  font-size: 30px;
  cursor: pointer;
  display: none;
}
.menu-list .cancel-btn{
  position: absolute;
  right: 30px;
  top: 20px;
}
  

  
.nav-blank{
  width: 100%;
  height: 100px;
}