/** Main Nav Bar **/
.main_nav{
  position: fixed;
  top: 0;
  width: 100%;
  background: var(--bgGlass);
  z-index: 999;
}
.main_nav .container{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
  margin: 0 auto;
  border-radius: 0 0 10px 10px;
  z-index: 999;
}
/** Main Nav End **/

/** Main Nav Branding **/
.main_nav .branding{
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 50px;
  z-index: 999;
  cursor: pointer;
}
.main_nav .branding img{
  height: 40px;
}
@media (max-width: 900px){
  .main_nav .branding img{
    height: 35px;
  }
}
/** Main Nav Branding End **/

/** Main Nav Links **/
.main_nav .links{
  display: flex;
  gap: 10px;
  list-style: none;
  align-items: center;
}
.main_nav .links a{
  text-decoration: none;
  color: white;
  font-size: 16px;
  font-family: var(--fontFamily1);
  font-weight: 500;
  height: 35px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  transition: .1s;
}
.main_nav .links a:hover{
  background: rgb(47, 56, 61);
}
.main_nav .links a:active{
  background: rgb(57, 68, 74);
}
.main_nav .links a.active{
  background: #ffffff;
  color: rgb(0, 0, 0);
}
/** Main Nav Links End **/