@charset "UTF-8";
section,
#problems {
  scroll-margin-top: 160px;
}

body.menu-open {
  overflow-y: hidden;
  height: 100vh;
  touch-action: none;
}

.site-header {
  width: 100%;
}
.site-header .header-class {
  position: fixed;
  z-index: 99999999;
  left: 50%;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 1024px) {
  .site-header .header-class {
    top: 10px;
  }
}
.site-header .menu-header-container {
  width: 100%;
}
.site-header .menu-header-container .menu {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 32px;
}
.site-header .menu-header-container .menu li a {
  text-transform: uppercase;
  font-size: 16px;
  font-weight: 500;
  color: #0C5367;
}
.site-header .menu-header-container .menu li .is-current {
  color: #01263E;
  font-weight: 700;
}
.site-header .mobile-menu-overlay {
  position: fixed;
  inset: 0;
  width: 100%;
  background: #0C5367;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease;
  overflow-y: auto;
  top: -30px;
}
.site-header .mobile-menu-overlay.show {
  opacity: 1;
  visibility: visible;
}
.site-header .mobile-menu-overlay::-webkit-scrollbar {
  width: 8px;
}
.site-header .mobile-menu-overlay::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 4px;
}
.site-header .mobile-menu-overlay::-webkit-scrollbar-thumb {
  background: #138BC1;
  border-radius: 4px;
}
.site-header .mobile-menu-overlay::-webkit-scrollbar-thumb:hover {
  background: #0891b2;
}
.site-header .mobile-menu-content {
  padding: 160px 20px 40px;
  display: flex;
  flex-direction: column;
}
.site-header .mobile-menu-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-grow: 1;
}
.site-header .mobile-menu-list > li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  position: relative;
}
.site-header .mobile-menu-list > li.menu-item-has-children > a {
  cursor: pointer;
  position: relative;
  padding-right: 52px;
  /* space for arrow */
}
.site-header .mobile-menu-list > li.menu-item-has-children > a::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2306b6d4' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.3s ease;
}
.site-header .mobile-menu-list li.menu-item-has-children.open > a::after {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%230891b2' stroke-width='2.5'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M5 15l7-7 7 7'/%3E%3C/svg%3E");
}
.site-header .mobile-menu-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: white;
  text-decoration: none;
  font-weight: 500;
  font-size: 18px;
  transition: all 0.3s ease;
  min-height: 60px;
  width: 100%;
  box-sizing: border-box;
}
.site-header .mobile-menu-list a:hover {
  background-color: rgba(6, 182, 212, 0.2);
  color: #138BC1;
}
.site-header .mobile-menu-list .sub-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
  background: rgba(0, 0, 0, 0.3);
  list-style: none;
  padding: 0;
  margin: 0;
}
.site-header .mobile-menu-list .sub-menu.show {
  max-height: 700px;
}
.site-header .mobile-menu-list .sub-menu li a {
  padding: 16px 20px 16px 40px;
  color: #cbd5e1;
  font-size: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  justify-content: flex-start;
}
.site-header .mobile-menu-list .sub-menu li a:hover {
  background-color: rgba(6, 182, 212, 0.15);
  color: #138BC1;
}
.site-header .mobile-menu-actions {
  margin-top: auto;
  padding: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.site-header .mobile-action-btn {
  display: block;
  width: 100%;
  text-align: center;
  background: linear-gradient(135deg, #138BC1, #0891b2);
  color: white;
  padding: 16px 24px;
  border-radius: 12px;
  text-decoration: none;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 16px;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(6, 182, 212, 0.3);
}
.site-header .mobile-action-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(6, 182, 212, 0.4);
}
.site-header .hamburger {
  width: 24px;
  height: 18px;
  position: relative;
  cursor: pointer;
  z-index: 10000;
}
.site-header .hamburger span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: white;
  border-radius: 1px;
  opacity: 1;
  left: 0;
  transform: rotate(0deg);
  transition: 0.25s ease-in-out;
}
.site-header .open {
  color: white;
}
.site-header .open span {
  color: white;
  background: white;
}
.site-header .hamburger span:nth-child(1) {
  top: 0;
}
.site-header .hamburger span:nth-child(2) {
  top: 8px;
}
.site-header .hamburger span:nth-child(3) {
  top: 16px;
}
.site-header .hamburger.open span:nth-child(1) {
  top: 8px;
  transform: rotate(135deg);
}
.site-header .hamburger.open span:nth-child(2) {
  opacity: 0;
  left: -60px;
}
.site-header .hamburger.open span:nth-child(3) {
  top: 8px;
  transform: rotate(-135deg);
}
.site-header body.menu-open {
  overflow: hidden;
  position: fixed;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 767px) {
  .site-header .header-border {
    border-top: 2px solid #138BC1;
  }
}
.site-header #mobile-menu-btn {
  background: transparent;
  border: 0 !important;
}

/* Single pill – shows ONLY current language, click switches to the other */
#header-lang-toggle .lang-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  line-height: 1;
  border-radius: 9999px;
  color: #143852;
  font-weight: 500;
  text-decoration: none;
  transition: transform 0.08s ease, box-shadow 0.2s ease, background 0.2s ease;
}

#header-lang-toggle .lang-pill.is-disabled {
  pointer-events: none;
  opacity: 0.7;
}

#header-lang-toggle .lang-flag img {
  width: 20px;
  height: 14px;
  display: block;
  border-radius: 2px;
}

/* Optional: hide text on very small screens, keep just the flag */
@media (max-width: 480px) {
  #header-lang-toggle .lang-name {
    display: none;
  }
}/*# sourceMappingURL=header.css.map */
