/* Header Container */
.header {
  display: block !important;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  padding: 15px 75px 0;
  background-color: #02355374;
}

/* Inner header layout */
.header_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 85px;
  padding-bottom: 15px;
  border-bottom: 1.5px solid #f3f3f3;
}

/* Logo */
.header_left img {
  height: 90px;
  width: auto;
  cursor: pointer !important;
  margin-left: 10px;
}

/* Menu h3 */
.header_nav-h3-wrapper {
  background-color: #ffffff;
  padding: 5px 16px;
  border-radius: 25px;
  cursor: pointer !important;
}

.header_nav-h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  color: #000;
  font-weight: 500;
}

.header_nav-h3-text {
  font-size: 16px;
}

.header_nav-h3-text.is-close {
  display: none;
}

/* Nav list (with smooth animation) */
.header_nav-list {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  background-color: #01263bc0;
  color: #fff;
  max-height: 0;
  opacity: 0;
  transform: translateY(-15px);
  overflow: hidden;
  pointer-events: none;
  transition: all 0.4s ease;
  z-index: 50;
  padding: 0;
}

/* When menu is open */
.header_nav-list.open {
  max-height: 500px;
  opacity: 1;
  transform: translateY(0);
  padding: 1rem 0;
  pointer-events: auto;
}

/* Nav links */
.header_nav-list ul {
  list-style: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  padding: 0;
  margin: 0;
}

.header_nav-list li a {
  color: #fff;
  text-decoration: none;
  font-size: 17px;
  padding: 8px 12px;
  transition: 0.5s;
}

.header_nav-list li a:hover {
  color: #ffffff;
  text-decoration: underline;
  cursor: pointer !important;
}

/* Responsive */
@media (max-width: 768px) {
  .header {
    padding: 15px 15px 0;
  }

  .header_left img {
    height: 60px;
  }

  .header_inner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    height: auto;
    padding-bottom: 2px;
  }

  .header_nav-list ul {
    gap: 0.1rem;
  }

  .header_nav-list li a {
    font-size: 14px;
  }
}



@media (max-width: 450px) {
.header_nav-list ul  {
   justify-content: space-around !important;
   
}

.header_nav-list li a {
    font-size: 12px;
    padding: 8px 7px;
   
}
}