header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 4.5rem;
  width: 100%;
  display: flex;
  justify-content: center;
  background: var(--Koo-Midnight-Green, #263228);
}
header.hide {
  transform: translateY(-100%);
  transition: transform 0.3s ease-in-out;
}
header.show {
  transform: translateY(0);
  transition: transform 0.3s ease-in-out;
}
header nav {
  display: flex;
  justify-content: space-between;
  height: 100%;
  width: 1072px;
}
header nav .nav_left {
  display: flex;
  align-items: center;
  gap: 26px;
}
header nav .nav_left #hamburger_btn {
  display: none;
}
header nav .nav_left .header_logo {
  width: 5.625rem;
  height: 2.5rem;
}
header nav .nav_left ul {
  display: flex;
  list-style: none;
  margin: 0;
}
header nav .nav_left ul div {
  display: flex;
  align-items: center;
}
header nav .nav_left ul img {
  width: 8px;
  height: 5px;
  cursor: pointer;
}
header nav .nav_left ul li {
  padding: 0.25rem 1rem;
}
header nav .nav_left ul li a {
  font-family: "Suisse Intl", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  letter-spacing: -1%;
  color: #fff;
  text-decoration: none;
}
header nav .nav_right {
  display: flex;
  align-items: center;
}
header nav .nav_right button {
  padding: 4px 36px;
  border-radius: 4px;
  border: 1px solid #fff;
  background: none;
  height: 32px;
  cursor: pointer;
}
header nav .nav_right button a {
  font-family: "Suisse Intl", sans-serif;
  font-weight: 700;
  font-size: 10px;
  line-height: 24px;
  letter-spacing: -1%;
  color: #fff;
  text-decoration: none;
}

header.active {
  background-color: var(--Koo-Midnight-Green, #263228);
  z-index: 99;
}
header.active #hamburger_btn {
  content: url("../images/hamburger_btn_black-white.png");
}
header.active nav .nav_left .header_logo {
  content: url("../images/KOO_LOGO_black-white.png");
  cursor: pointer;
}
header.active ul li a {
  color: white !important;
}
header.active .nav_right button {
  border-color: white;
}
header.active .nav_right button a {
  color: white !important;
}
header.active .sub_nav_container {
  display: block;
}

.chevron-up {
  content: url("../images/chevron-up.png"); /* Ganti dengan gambar chevron-up */
}

.sub_nav_container {
  display: none;
  position: absolute;
  top: 4.5rem;
  width: 100%;
  background: var(--Koo-Midnight-Green, #263228);
  color: white;
  z-index: 98;
}
.sub_nav_container .sub_nav_section {
  display: flex;
  margin-left: 212px;
  margin-right: 212px;
  margin-bottom: 40px;
}
.sub_nav_container .sub_nav_section.mobile {
  display: none;
}
.sub_nav_container .sub_nav_section h3 a {
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
  text-align: left;
  width: 200px;
  cursor: pointer;
  text-decoration: none;
  color: #fff;
}
.sub_nav_container .sub_nav_section h3 .mobile {
  display: none;
}
.sub_nav_container .sub_nav_section ul {
  list-style: none;
  display: none;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
  padding-left: 42px;
}
.sub_nav_container .sub_nav_section ul li a {
  text-decoration: none;
  color: #8c8c8c;
  font-weight: 700;
  font-size: 12px;
  line-height: 24px;
}
.sub_nav_container .sub_nav_section ul li a:hover {
  color: #c4b497;
}
.sub_nav_container .sub_nav_section h3:hover + ul,
.sub_nav_container .sub_nav_section ul:hover {
  display: block;
  opacity: 1;
}

@media screen and (max-width: 1024px) {
  header nav {
    width: 700px;
  }
}
@media screen and (max-width: 768px) {
  header {
    padding: 0 1.5rem;
  }
  header nav .nav_left {
    gap: 16px;
  }
  header nav .nav_left #hamburger_btn {
    display: block;
  }
  header nav .nav_left .header_logo {
    width: 4.375rem;
    height: 1.875rem;
  }
  header nav .nav_left ul {
    display: none;
  }
  header nav .nav_right {
    display: none;
  }
  header.active {
    background-color: var(--Koo-Midnight-Green, #263228);
    z-index: 99;
  }
  header.active #list_header {
    display: none;
  }
  header.active #hamburger_btn {
    content: url("../images/hamburger_btn_black-white.png");
  }
  header.active nav .nav_left .header_logo {
    content: url("../images/KOO_LOGO_black-white.png");
    cursor: pointer;
  }
  header.active ul li a {
    color: white !important;
  }
  header.active .nav_right button {
    border-color: white;
  }
  header.active .nav_right button a {
    color: white !important;
  }
  header.active .sub_nav_container {
    display: block;
  }
  .sub_nav_container .sub_nav_section {
    display: block;
    margin-left: 20px;
    margin-right: 20px;
    margin-top: 20px;
  }
  .sub_nav_container .sub_nav_section.mobile {
    display: block;
  }
  .sub_nav_container .sub_nav_section h3 {
    width: 100%;
    margin-bottom: 10px;
  }
  .sub_nav_container .sub_nav_section h3 .contact_us {
    border: 1px solid #fff;
    border-radius: 6px;
    padding: 10px 30px;
  }
  .sub_nav_container .sub_nav_section h3 .mobile {
    display: inline-block;
  }
  .sub_nav_container .sub_nav_section ul {
    padding-left: 0;
  }
  .sub_nav_container .sub_nav_section ul li {
    padding: 5px 0;
  }
  #list_header {
    display: none;
    position: absolute;
    top: 4.5rem;
    width: 100%;
    background: var(--Koo-Midnight-Green, #263228);
    color: white;
    z-index: 98;
    left: 0;
  }
  #list_header li a {
    color: white;
  }
}/*# sourceMappingURL=nav.css.map */