.viph-header {
  --header-teal: #00576a;
  --header-teal-dark: #004f60;
  --header-ink: #005367;
  --header-contact-text: #ffffff;
  --header-contact-bg: #00576a;
  --header-soft: #d8eef3;
  position: relative;
  z-index: 100000;
  width: 100%;
  background: #fff;
  overflow: visible;
}

.main-body.viph-header-is-sticky {
  padding-top: var(--viph-header-height, 0px);
}

.viph-header.viph-header--sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100000;
  box-shadow: 0 10px 28px rgba(0, 53, 68, 0.12);
  animation: viphHeaderStickyIn 0.24s ease both;
}

.viph-header.viph-header--sticky .viph-header__top {
  display: none;
}

@keyframes viphHeaderStickyIn {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.viph-header * {
  box-sizing: border-box;
}

.viph-header a {
  color: inherit;
  text-decoration: none;
}

.viph-header__top {
  height: 34px;
  background: var(--header-teal-dark);
  color: #fff;
}

.viph-header__inner {
  width: min(1320px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
}

.viph-header__top .viph-header__inner {
  justify-content: flex-end;
  gap: 28px;
}

.viph-header__lang {
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  letter-spacing: 0;
}

#viph-google-translate,
.goog-te-banner-frame.skiptranslate,
iframe.goog-te-banner-frame,
body > .skiptranslate,
.goog-te-balloon-frame,
#goog-gt-tt,
.goog-tooltip,
.goog-tooltip:hover {
  display: none !important;
  visibility: hidden !important;
}

body {
  top: 0 !important;
}

.viph-header__main {
  height: 91px;
  background: #fff;
  overflow: visible;
  position: relative;
  z-index: 2;
}

.viph-header__main .viph-header__inner {
  justify-content: space-between;
  gap: 40px;
  overflow: visible;
}

.viph-header__logo {
  flex: 0 0 auto;
  width: 132px;
  display: flex;
  align-items: center;
}

.viph-header__logo img {
  display: block;
  width: 83px;
  max-height: 70px;
  object-fit: contain;
}

.viph-header__nav {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 0;
  overflow: visible;
}

.viph-header__menu {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 1.8vw, 36px);
  overflow: visible;
}

.viph-header__item {
  position: relative;
  z-index: 1;
}

.viph-header__link {
  display: inline-flex;
  align-items: center;
  min-height: 91px;
  color: var(--header-ink);
  font-size: 15px;
  line-height: 1.2;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.viph-header .viph-header__link,
.viph-header .viph-header__link:hover,
.viph-header .viph-header__link:focus,
.viph-header .viph-header__link:active,
.viph-header .viph-header__dropdown a,
.viph-header .viph-header__dropdown a:hover,
.viph-header .viph-header__dropdown a:focus,
.viph-header .viph-header__dropdown a:active {
  color: var(--header-ink) !important;
  text-decoration: none !important;
}

.viph-header__item:hover > .viph-header__dropdown,
.viph-header__item:focus-within > .viph-header__dropdown,
.viph-header__dropdown-item:hover > .viph-header__dropdown--level-3,
.viph-header__dropdown-item:focus-within > .viph-header__dropdown--level-3,
.viph-header__dropdown-item:hover > .viph-header__dropdown--level-4,
.viph-header__dropdown-item:focus-within > .viph-header__dropdown--level-4 {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
  pointer-events: auto;
}

.viph-header__dropdown {
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: 100001;
  min-width: 310px;
  max-width: calc(100vw - 32px);
  padding: 0 18px 18px;
  margin: 0;
  list-style: none;
  background: #fff;
  border-radius: 0 0 32px 32px;
  box-shadow: 0 18px 35px rgba(0, 53, 68, 0.08);
  opacity: 0;
  visibility: hidden;
  transform: translate(-50%, 8px);
  pointer-events: none;
  transition: opacity 0.18s ease, transform 0.18s ease, visibility 0.18s ease;
}

.viph-header__dropdown a {
  display: block;
  padding: 13px 0;
  color: var(--header-ink);
  font-size: 17px;
  line-height: 1.2;
  font-weight: 400;
  white-space: normal;
  overflow-wrap: break-word;
}

.viph-header__dropdown-item {
  position: relative;
}

.viph-header__dropdown-item.has-children > a {
  padding-right: 28px;
}

.viph-header__dropdown-item.has-children > a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2px;
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translateY(-50%) rotate(45deg);
}

.viph-header__dropdown--level-3,
.viph-header__dropdown--level-4 {
  top: 0;
  left: calc(100% - 1px);
  transform: translate(8px, 0);
  border-radius: 0 24px 24px 24px;
}

.viph-header__dropdown-item:hover > .viph-header__dropdown--level-3,
.viph-header__dropdown-item:focus-within > .viph-header__dropdown--level-3,
.viph-header__dropdown-item:hover > .viph-header__dropdown--level-4,
.viph-header__dropdown-item:focus-within > .viph-header__dropdown--level-4 {
  transform: translate(0, 0);
}

.viph-header__actions {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  gap: 39px;
}

.viph-header__search-wrap {
  position: relative;
}

@media (min-width: 992px) {
  .viph-header__search-wrap {
    margin-left: 20px;
  }
}

.viph-header__search-wrap.is-open {
  z-index: 3;
}

.viph-header__search-wrap,
.viph-header__search-wrap:focus,
.viph-header__search-wrap:focus-within {
  outline: none;
  box-shadow: none;
}

.viph-header__search {
  width: 54px;
  height: 54px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--header-soft);
  color: var(--header-ink);
  padding: 0;
  cursor: pointer;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.viph-header__search:focus,
.viph-header__search:active,
.viph-header__search-wrap.is-open .viph-header__search {
  outline: none;
  box-shadow: none;
}

.viph-header__search svg,
.viph-header__search-submit svg {
  width: 28px;
  height: 28px;
  stroke-width: 1.9;
}

.viph-header__search-dropdown {
  display: none;
  position: absolute;
  top: calc(100% + 14px);
  right: 0;
  z-index: 120;
  width: min(360px, calc(100vw - 24px));
  padding: 14px;
  background: #fff;
  border: 1px solid rgba(0, 83, 103, 0.12);
  border-radius: 8px;
  box-shadow: 0 18px 35px rgba(0, 53, 68, 0.12);
}

.viph-header__search-wrap.is-open .viph-header__search-dropdown {
  display: block;
}

.viph-header__search-form {
  display: flex;
  align-items: center;
  height: 48px;
  border: 1px solid rgba(0, 83, 103, 0.18);
  border-radius: 999px;
  overflow: hidden;
  background: #fff;
}

.viph-header__search-input {
  flex: 1 1 auto;
  min-width: 0;
  height: 100%;
  border: 0;
  padding: 0 18px;
  color: var(--header-ink);
  font-size: 15px;
  line-height: 1.2;
  outline: 0;
}

.viph-header__search-input::placeholder {
  color: rgba(0, 83, 103, 0.62);
}

.viph-header__search-submit {
  flex: 0 0 48px;
  width: 48px;
  height: 48px;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--header-contact-bg);
  color: var(--header-contact-text);
  padding: 0;
}

.viph-header__contact {
  min-width: 111px;
  height: 54px;
  padding: 0 25px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--header-contact-bg);
  color: var(--header-contact-text);
  font-size: 17px;
  line-height: 1;
  font-weight: 700;
  text-transform: uppercase;
  white-space: nowrap;
}

.viph-header .viph-header__contact,
.viph-header .viph-header__contact:hover,
.viph-header .viph-header__contact:focus {
  color: var(--header-contact-text);
}

.viph-header__mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  background: var(--header-soft);
  color: var(--header-ink);
  padding: 0;
  flex-direction: column;
  gap: 4px;
}

.viph-header__mobile-toggle span,
.viph-header__mobile-toggle::before,
.viph-header__mobile-toggle::after {
  content: "";
  display: block;
  width: 19px;
  height: 2px;
  margin: 0;
  border-radius: 999px;
  background: currentColor;
}

.viph-mobile-menu {
  position: fixed;
  top: 0;
  left: 0;
  right: auto;
  width: min(390px, 88vw);
  height: 100vh;
  height: 100dvh;
  z-index: 8888;
  background: #fff;
  color: var(--header-ink);
  overflow: hidden;
  transform: translateX(-100%);
  transition: transform 0.34s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 18px 0 45px rgba(0, 53, 68, 0.14);
}

.viph-mobile-menu.active {
  transform: translateX(0);
}

.viph-mobile-menu__overlay.site-overlay {
  z-index: 7777;
  background: rgba(0, 45, 55, 0.56);
  backdrop-filter: blur(2px);
}

.viph-mobile-menu__container.site-nav-container {
  width: 100%;
  height: 100%;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
}

.viph-mobile-menu__head {
  position: sticky;
  top: 0;
  z-index: 2;
  min-height: 88px;
  padding: 18px 22px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
  border-bottom: 1px solid rgba(0, 83, 103, 0.1);
}

.viph-mobile-menu__logo {
  display: inline-flex;
  align-items: center;
}

.viph-mobile-menu__logo img {
  display: block;
  width: 78px;
  max-height: 60px;
  object-fit: contain;
}

.viph-mobile-menu__close.site-close-handle {
  position: relative;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--header-soft);
  color: var(--header-ink);
  padding: 0;
  box-shadow: none;
}

.viph-mobile-menu__close span,
.viph-mobile-menu__close::before,
.viph-mobile-menu__close::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
}

.viph-mobile-menu__close span {
  opacity: 0;
}

.viph-mobile-menu__close::before {
  transform: rotate(45deg);
}

.viph-mobile-menu__close::after {
  transform: rotate(-45deg);
}

.viph-mobile-menu__nav {
  padding: 18px 22px 24px;
}

.viph-mobile-menu__list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.viph-mobile-menu__list--level-2,
.viph-mobile-menu__list--level-3,
.viph-mobile-menu__list--level-4 {
  display: none;
  padding-left: 14px;
  border-left: 1px solid rgba(0, 83, 103, 0.14);
}

.viph-mobile-menu__item.is-open > .viph-mobile-menu__list {
  display: block;
}

.viph-mobile-menu__row {
  min-height: 48px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid rgba(0, 83, 103, 0.1);
}

.viph-mobile-menu__link {
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 0;
  color: var(--header-ink);
  font-size: 17px;
  line-height: 1.22;
  font-weight: 800;
  text-transform: uppercase;
}

.viph-mobile-menu__list--level-2 .viph-mobile-menu__link {
  font-size: 15px;
  font-weight: 700;
  text-transform: none;
}

.viph-mobile-menu__list--level-3 .viph-mobile-menu__link,
.viph-mobile-menu__list--level-4 .viph-mobile-menu__link {
  font-size: 14px;
  font-weight: 600;
  color: rgba(0, 83, 103, 0.84);
}

.viph-mobile-menu__submenu-toggle {
  flex: 0 0 auto;
  position: relative;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: rgba(216, 238, 243, 0.76);
  color: var(--header-ink);
  padding: 0;
}

.viph-mobile-menu__submenu-toggle::before,
.viph-mobile-menu__submenu-toggle::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  transform: translate(-50%, -50%);
  transition: transform 0.2s ease;
}

.viph-mobile-menu__submenu-toggle::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.viph-mobile-menu__item.is-open > .viph-mobile-menu__row > .viph-mobile-menu__submenu-toggle::after {
  transform: translate(-50%, -50%) rotate(0deg);
}

.viph-mobile-menu__item.is-active > .viph-mobile-menu__row > .viph-mobile-menu__link {
  color: var(--header-contact-bg);
}

.viph-mobile-menu__foot {
  padding: 0 22px 28px;
}

.viph-mobile-menu__contact {
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--header-contact-bg);
  color: var(--header-contact-text) !important;
  font-size: 15px;
  font-weight: 800;
  text-transform: uppercase;
}

.viph-mobile-menu__langs {
  margin-top: 18px;
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--header-ink);
  font-size: 14px;
  font-weight: 800;
}

html.viph-mobile-menu-open,
html.viph-mobile-menu-open body {
  overflow: hidden;
}

.main-body.sidebar-move {
  right: 0 !important;
}

.site-nav.style--sidebar.viph-mobile-menu {
  right: auto;
  left: 0;
  transform: translateX(-100%);
}

.site-nav.style--sidebar.viph-mobile-menu.active {
  transform: translateX(0);
}

@media (max-width: 1199px) {
  .viph-header__inner {
    width: min(100% - 32px, 1040px);
  }

  .viph-header__main .viph-header__inner {
    gap: 22px;
  }

  .viph-header__menu {
    gap: 12px;
  }

  .viph-header__link,
  .viph-header__contact,
  .viph-header__dropdown a {
    font-size: 14px;
  }

  .viph-header__actions {
    gap: 18px;
  }
}

@media (max-width: 991px) {
  .viph-header {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
  }

  .viph-header__main {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-bottom: 1px solid rgba(0, 87, 106, 0.08);
  }

  .viph-header.viph-header--search-open {
    margin-bottom: 88px;
  }

  .viph-header__top {
    width: 100%;
    max-width: 100%;
  }

  .viph-header__inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 16px;
    padding-right: 16px;
  }

  .viph-header__main .viph-header__inner {
    position: relative;
    min-height: 76px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 10px;
  }

  .viph-header__nav {
    display: none;
  }

  .viph-header__mobile-toggle {
    grid-column: 1;
    justify-self: start;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .viph-header__logo {
    grid-column: 2;
    justify-self: center;
    justify-content: center;
    width: auto;
    min-width: 0;
  }

  .viph-header__logo img {
    width: 76px;
    max-height: 62px;
  }

  .viph-header__actions {
    grid-column: 3;
    justify-self: end;
    min-width: 0;
    gap: 12px;
  }

  .viph-header__search,
  .viph-header__contact {
    height: 46px;
  }

  .viph-header__search {
    width: 46px;
  }

  .viph-header__search-dropdown {
    position: fixed;
    top: 108px;
    left: max(16px, calc((100vw - 720px) / 2));
    right: max(16px, calc((100vw - 720px) / 2));
    width: auto !important;
    max-width: none;
  }
}

@media (min-width: 992px) {
  .viph-mobile-menu,
  .viph-mobile-menu__overlay {
    display: none;
  }
}

@media (max-width: 575px) {
  .viph-header__inner {
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding-left: 10px;
    padding-right: 10px;
  }

  .viph-header__top {
    height: 28px;
  }

  .viph-header__top .viph-header__inner {
    justify-content: flex-end;
    gap: 16px;
  }

  .viph-header__lang {
    font-size: 14px;
  }

  .viph-header__main .viph-header__inner {
    min-height: 66px;
    gap: 6px;
  }

  .viph-header__mobile-toggle {
    width: 38px;
    height: 38px;
  }

  .viph-header__mobile-toggle span,
  .viph-header__mobile-toggle::before,
  .viph-header__mobile-toggle::after {
    width: 18px;
  }

  .viph-header__logo img {
    width: 60px;
    max-height: 50px;
  }

  .viph-header__actions {
    gap: 7px;
  }

  .viph-header__search,
  .viph-header__contact {
    height: 38px;
  }

  .viph-header__search {
    width: 38px;
  }

  .viph-header__search svg,
  .viph-header__search-submit svg {
    width: 24px;
    height: 24px;
  }

  .viph-header__contact {
    min-width: 62px;
    padding: 0 9px;
    font-size: 11px;
    max-width: 86px;
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .viph-header__search-dropdown {
    top: 96px;
    left: 10px;
    right: 10px;
    width: auto !important;
  }

  .viph-header.viph-header--search-open {
    margin-bottom: 82px;
  }

  .viph-mobile-menu {
    width: min(336px, 90vw);
  }

  .viph-mobile-menu__head,
  .viph-mobile-menu__nav,
  .viph-mobile-menu__foot {
    padding-left: 18px;
    padding-right: 18px;
  }

  .viph-mobile-menu__link {
    font-size: 16px;
  }
}
