.nav-component {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  max-height: 135px;
  z-index: 9;
  transition: 0.4s ease-in-out all;
}
.nav-component #nav-close-full-screen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  opacity: 0;
  max-height: 0;
}
.nav-component .nav-outer-container {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
  width: 100%;
  height: 140px;
  max-width: 1200px;
  margin: auto;
  transition: 0.2s ease-in-out all;
}
.nav-component .nav-outer-container .nav-container {
  width: 100%;
  padding: 0 50px;
  transition: 0.2s ease-in-out all;
}
.nav-component .nav-outer-container .nav-container .nav-menu {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  transition: 0.2s ease-in-out all;
}
.nav-component .nav-outer-container .nav-container .nav-menu .logo-space {
  width: 100px;
}
.nav-component .nav-outer-container .nav-container .nav-menu .menu-main-btn {
  display: none;
}
.nav-component #nav-btn {
  position: fixed;
  top: 20px;
  right: 50%;
  transform: translateX(50%) rotate(0);
  width: 100px;
  height: 100px;
  transition: 0.4s ease-in-out all;
  cursor: pointer;
}
.nav-component #nav-btn img {
  max-width: 100%;
}

.sticky {
  max-height: 0px;
}
.sticky .nav-outer-container {
  max-height: 0;
  width: 0;
  right: 90px;
  opacity: 0;
  align-items: center;
  justify-content: center;
  transition: 0.2s ease-in-out all;
  overflow: hidden;
}
.sticky .nav-outer-container .nav-menu {
  flex-direction: column !important;
  transition: 0.2s ease-in-out all;
}
.sticky .nav-outer-container .nav-menu .menu-main-btn {
  display: none;
}
.sticky #nav-btn {
  width: 70px;
  height: 70px;
  right: 20px;
  transform: translateX(0) rotate(360deg);
  transition: 0.4s ease-in-out all;
}

.done .nav-component {
  display: none !important;
}

#main-menu-header {
  position: fixed;
  height: 150px;
  max-height: 150px;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 9;
  transition: 0.3s ease-in-out all;
}
#main-menu-header .main-header {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 100%;
  padding: 0 20px;
}
#main-menu-header .main-header .info-menu,
#main-menu-header .main-header .contents-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  gap: 100px;
}
#main-menu-header .main-header .info-menu .menu-item,
#main-menu-header .main-header .contents-menu .menu-item {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: 0.3s ease-in-out all;
}
#main-menu-header .main-header .info-menu .menu-item:hover,
#main-menu-header .main-header .contents-menu .menu-item:hover {
  color: var(--theme-light-romance);
}
#main-menu-header .main-header .header-logo-container {
  max-width: 80px;
  transition: 0.5s ease-in-out all;
}
#main-menu-header .main-header .header-logo-container img {
  max-width: 100%;
}
#main-menu-header.sticky {
  max-height: 60px;
  background-color: var(--theme-light-romance);
}
#main-menu-header.sticky .menu-item {
  color: var(--theme-text) !important;
}
#main-menu-header.sticky .header-logo-container {
  max-width: 30px;
}

#main-menu-header-mobile {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-height: 60px;
  height: 100vh;
  z-index: 9;
  transition: 0.4s ease-in-out all;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  overflow: hidden;
}
#main-menu-header-mobile .main-header-mobile-btn {
  width: 20px;
  height: 20px;
  cursor: pointer;
}
#main-menu-header-mobile .main-header-mobile-btn .fa-bars {
  font-weight: 900 !important;
}
#main-menu-header-mobile .mobile-menu {
  background-color: var(--theme-light-romance);
  padding: 50px;
  padding-top: 100px;
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 10;
  width: 50%;
  height: 100dvh;
  transition: 0.4s ease-in-out all;
}
#main-menu-header-mobile .mobile-menu .mobile-close-btn {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}
#main-menu-header-mobile .mobile-menu .contents-menu {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 30px;
}
#main-menu-header-mobile .mobile-menu .contents-menu .menu-item {
  cursor: pointer;
  position: relative;
}
#main-menu-header-mobile .mobile-menu .contents-menu .menu-item::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  display: block;
  width: 0;
  height: 2px;
  background-color: var(--theme-text);
  transition: 0.3s ease-in-out all;
}
#main-menu-header-mobile .mobile-menu .contents-menu .menu-item:hover::after {
  width: 100%;
}
#main-menu-header-mobile .mobile-menu.active {
  right: 0;
}

@media screen and (max-width: 767px) {
  #main-menu-header {
    display: none;
  }
  #main-menu-header-mobile {
    display: flex;
    transition: 0.4s ease-in-out all;
  }
  #main-menu-header-mobile .header-logo-container {
    display: block;
    max-width: 40px;
  }
  #main-menu-header-mobile .header-logo-container img {
    max-width: 100%;
  }
  #main-menu-header-mobile .main-header-mobile-btn .fa-bars {
    font-size: 20px;
    color: var(--theme-light-romance);
    transition: 0.3s ease-in-out all;
  }
  #main-menu-header-mobile .main-header-mobile-btn .fa-bars:hover {
    color: var(--theme-text);
  }
  #main-menu-header-mobile.sticky {
    background-color: var(--theme-light-romance);
  }
  #main-menu-header-mobile.sticky .main-header-mobile-btn .fa-bars {
    color: var(--theme-text);
  }
  #main-menu-header-mobile.sticky .main-header-mobile-btn .fa-bars:hover {
    color: var(--theme-light-romance);
  }
  .header-logo-container {
    display: none;
  }
}/*# sourceMappingURL=menu-header.css.map */