#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 17px 0;
  background-color: var(--primary-color);
  z-index: 200;
}
.hdr-logo {
  display: inline-block;
}
.hdr-logo img {
  min-height: 55px;
}
.hdr-links {
  display: flex;
  align-items: center;
  justify-content: end;
}
.hdr-links-col {
  margin-left: 36px;
}
.hdr-links-col.col-dots a {
  display: flex;
  align-items: center;
  height: 30px;
}
.hdr-links-col a {
  font-size: 0.875rem;
  letter-spacing: 0.0175rem;
  color: #E6F0F1;
}
.hdr-links-col a strong {
  font-weight: 600;
  color: var(--secondary-color);
}
.hdr-links-col a strong:hover {
  color: #fff;
}
.hdr-links-col.col-support a {
  display: flex;
  align-items: center;
}
.hdr-links-col.col-support a:hover {
  color: var(--secondary-color);
}
.hdr-links-col.col-support img {
  margin-right: 12px;
}
.main-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  padding: 0 24px;
  background-color: var(--secondary-color);
  border-radius: 30px;
  z-index: 201;
  transition: all .2s ease-in-out;
}
#headernav {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 0;
}
#headernav > li {
  position: relative;
  margin: 0 24px;
}
#headernav > .menu-item-has-children > a {
  position: relative;
}
#headernav > li > a:hover {
  color: var(--secondary-color);
}
#headernav > .menu-item-has-children > a::after {
  content: "";
  position: absolute;
  bottom: 18px;
  right: -12px;
  width: 8px;
  height: 8px;
  background-image: url('/wp-content/uploads/2025/10/submenu-arrow-light.svg');
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  pointer-events: none;
  transition: all .2s ease-in-out;
}
#headernav > li > a {
  display: block;
  padding: 15px 0;
  font-weight: 600;
  color: #fff;
}
#headernav .sub-menu {
  list-style: none;
  padding: 0;
  margin: 0;
  position: absolute;
  top: 80%;
  left: 0;
  opacity: 0;
  width: 300px;
  padding: 11px 24px;
  /* background-color: #47B0BE; */
  background-color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
  pointer-events: none;
  transition: all .2s ease-in-out;
}
#headernav > li:hover .sub-menu {
  top: 100%;
  opacity: 1;
  pointer-events: auto;
}
#headernav .sub-menu li {
  margin: 8px 0;
}
#headernav .sub-menu a {
  font-weight: 600;
  color: #fff;
}
#headernav .sub-menu a:hover {
  color: var(--primary-color);
}
.nav-mobile-backdrop {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  z-index: 200;
  opacity: .5;
}
.nav-mobile-backdrop.show-backdrop {
  display: block;
}

@media only screen and (max-width: 1440px) {
  .hdr-links-col a {
    font-size: 0.75rem;
  }
}

@media only screen and (max-width: 1280px) {
  #header {
    padding: 10px 0;
  }
  #header .b2-row .b2-col.col-2 {
    width: 66%;
  }
  #headernav > .menu-item-has-children > a::after {
    filter: brightness(0.5);
  }
  #headernav > li > a:hover {
    color: #fff;
  }
  .main-nav {
    display: none;
    width: 330px;
    height: 100%;
    top: 0;
    bottom: auto;
    left: auto;
    right: 0;
    transform: none;
    padding: 40px;
    border-radius: 0;
  }
  .main-nav.show-menu {
    display: block;
  }
  #headernav {
    width: 100%;
    display: block;
  }
  #headernav .sub-menu {
    position: relative;
    border-radius: 0;
    width: 100%;
    background: transparent;
    padding: 0;
    height: 0;
    overflow: hidden;
    opacity: 1 !important;
  }
  #headernav > .menu-item-has-children:hover > a::after {
    transform: none;
    bottom: 18px;
  }
  .show-submenu .sub-menu {
    height: auto !important;
  }
}


.main-nav.active {
  border-top-left-radius: 0;
  border-top-right-radius: 0;
}