
.navigation{
  position: absolute;
  width: 100%;
  height: 12vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 50px 30px;
  z-index: 100;
  color: white;
  /* background-color: lavender; */
  
  
  /* display: none; */
}



.nav-logo{
  width: 120px;
  display: flex;
  justify-content: center;
  align-items: center;
  

}
.nav-logo > a > img {
  height: 50px;

}

.hide-logo{
  opacity: 0;
  
}




/* ====== MENU BUTTON ===== */
.nav-menu-btn {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  transition: all .5s ease-in-out;
  height: 34px;
  width: 120px;
  
}
.menu-btn-title{
  margin-left: 10px;
  position: relative;
  z-index: -100;
}
.menu-btn__burger {
  position: absolute;
  z-index: 10;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px rgba(255,101,47,.2);
  transition: all .5s ease-in-out;
  /* border: 2px solid red; */

}
.menu-btn__burger,
.menu-btn__burger::before,
.menu-btn__burger::after {
  width: 32px;
  height: 4px;
}
.menu-btn__burger::before {
  transform: translateY(-10px);
}
.menu-btn__burger::after {
  transform: translateY(10px);
}

.menu-btn__burger::before,
.menu-btn__burger::after {
  content: '';
  position: absolute;
  background: #fff;
  border-radius: 5px;
  transition: all .5s ease-in-out;
}

/* ANIMATION */
.nav-menu-btn.open .menu-btn__burger {
  transform: translateX(-50px);
  background: transparent;
  box-shadow: none;
}
.nav-menu-btn.open .menu-btn__burger::before {
  transform: rotate(45deg) translate(35px, -35px);
}
.nav-menu-btn.open .menu-btn__burger::after {
  transform: rotate(-45deg) translate(35px, 35px);
}

/* ===== MENU BUTTON ENDS ===== */



/* ==== dropdown ===== */

.nav-dropdown{
  position: relative;
  cursor: pointer;
  text-transform: capitalize;
  font-size: 1rem;
  height: 35px;
  width: 120px;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  
  
  
}

.dropdown-layer{
  position: absolute;
  top: 0;
  background-color: black;
  opacity: 0.7;
  pointer-events: none;
  width: 120px;
  height: 70px;
  max-height: 0px;
  transition: all 0.2s ease;
  z-index: -1;
}
.fa-angle-down,
.fa-angle-up{
  margin-left: 10px;
}
.language-options{
  margin-top: 10px;
  position: absolute;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
  align-items: center;
  /* background: red; */
  
  top: 35px;
  width: 100%;
  list-style: none;
  height: 35px;
  opacity: 0;
  
  transform: translate(-5px,-10px);
  transition: all 0.6s ease;
}
.language-options > li {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  /* cursor: pointer; */
}

.dropdown-open{
  opacity: 1;
}
.show-dropdown-layer{
  max-height: 70px;
}

@media screen and (max-width:768px){
  .navigation{
    padding: 0 5vw;
    height: 80px;
  }
  .nav-logo > a > img {
    height: 40px !important;
    margin-top: 10px;
  }
  .nav-logo,
  .nav-menu-btn{
    width: 50px;
  }
  .nav-dropdown{
    width: 50px;
  }
  .menu-btn__burger,
  .menu-btn__burger::before,
  .menu-btn__burger::after {
    width: 25px;
    height: 3px;
  }
  .menu-btn__burger::before {
    transform: translateY(-9px);
  }
  .menu-btn__burger::after {
    transform: translateY(9px);
  }
  
  
  .nav-logo > a > img {
    height: 40px;
    
  }
  .nav-dropdown{
    font-size: 14px;
  }
  .fa-angle-down{
    margin-left: 5px;
  }
  .language-options > li > a {
    font-size: 14px;
  }
  
}
@media screen and (max-width:500px){
  .navigation{
    padding: 0 4vw 0 2vw;
    
  }
  
}