#header {
  position: relative;
  overflow-x: clip;
  width: 100%;
  z-index: 12;
}

.header-cont {
  position: fixed;
  top: var(--sticky-h-height, 0px);
  display: flex;
  padding: var(--menu-padding-y) var(--menu-padding-x);
  background-color: rgba(1, 1, 1, 0.7);
  backdrop-filter: blur(12px);
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  transition: padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-color 0.4s ease;  
}

#main-menu-navigator {
  /*position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);*/
}

.a-link.current-menu-item {
  border-bottom: 3px solid var(--primary-t2);

}

.header-logo {
  height: var(--menu-logo-height);
  flex-shrink: 0;
  transition: height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header-logo img {
  height: 100%;
}

.menu-voices {
  gap: 24px;
}

.menu-voices a {
  color: #ffffff;
}

.menu-ctas-cont {
  gap: 16px;
}

.mobile-menu {
  z-index: 1;
}

.mobile-ham-btn,
.mobile-ham,
.mobile-ham-btn-close {
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  z-index: 1;
}

.mobile-ham-btn-close {
  position: absolute;
  right: 24px;
  top: calc(var(--sticky-h-height) + 15px);
}

.mobile-ham-btn .line,
.mobile-ham-btn-close .line {
  height: 2px;
  background-color: #ffffff;
  transition-property: transform, opacity;
  transition-duration: var(--fast-anim-duration);
  transition-timing-function: linear;
}

.mobile-ham-btn .line-middle,
.mobile-ham-btn-close .line-middle {
  position: relative;
  height: 2px;
}

.mobile-ham-btn .line-middle .line,
.mobile-ham-btn-close .line-middle .line {
  position: absolute;
  width: 100%;
  top: 0;
  left: 0;
}

.mobile-ham-btn.open .mobile-ham > .line-middle .line:first-child,
.open .mobile-ham-btn-close .mobile-ham > .line-middle .line:first-child {
  transform: rotate(-45deg);
}
.mobile-ham-btn.open .mobile-ham > .line-middle .line:last-child,
.open .mobile-ham-btn-close .mobile-ham > .line-middle .line:last-child {
  transform: rotate(45deg);
}

.mobile-ham-btn.open .mobile-ham > .line:first-child,
.open .mobile-ham-btn-close .mobile-ham > .line:first-child {
  opacity: 0;
  transform: translateY(16px);
}

.mobile-ham-btn.open .mobile-ham > .line:last-child,
.open .mobile-ham-btn-close .mobile-ham > .line:last-child {
  opacity: 0;
  transform: translateY(-16px);
}

.menu-drawer {
  position: fixed;
  width: 100vw;
  height: 100vh;
  transition-property: transform, opacity;
  transition-duration: var(--normal-anim-duration);
  transition-timing-function: ease-in-out;
  transform: translateX(100%);  
  opacity: 0;
  /* visibility: hidden; */
  z-index: 1;
}

.menu-drawer .inner {
  background-color: var(--neutral-w);
  margin-top: calc(var(--menu-height) + var(--sticky-h-height));
  width: 100%;
  height: calc(100% - (var(--menu-height) + var(--sticky-h-height)));
  position: fixed;
}

.menu-drawer .wrp-m-btns {
  padding: 0px 24px 40px;
}

.menu-drawer .inner .inner-mob-in {
  height: 100%;
  width: 100%;
}

.menu-drawer .inner .inner-mob-in .inner-mob-in-scroll {
  height: 100%;
  width: 100%;
  overflow: auto;
}

.menu-drawer .inner .inner-mob-in .inner-mob-in-scroll .menu-link-wrapper {
  padding: 0px 24px;
}

.menu-drawer .inner .inner-mob-in .inner-mob-in-scroll .menu-link-wrapper a {
  color: #ffffff;
}

.menu-drawer .inner .inner-mob-in .inner-mob-in-scroll .menu-link-wrapper:first-child {
  padding-top: 64px;
}

.menu-drawer .inner .inner-mob-in .inner-mob-in-scroll .menu-link-wrapper:last-child {
  padding-bottom: 24px;
}

.open .header-cont {
  background-color: var(--neutral-w);
}

.open .menu-drawer {
  transform: translateX(0);  
  opacity: 1;
  /* visibility: visible; */
}

/*prefooter*/
.navigation-pre-footer {
  width: 100%;
  padding: 65px 56px;
}
.navigation-pre-footer .inner-relative {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  justify-content: space-evenly;
}
.navigation-pre-footer li.prefooter-item {
  display: inline-block;
  font-size: 20px;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: normal;
  position: relative;
  color: #c2cddd;
  padding: 0;
}

.navigation-pre-footer li.prefooter-item.current-page {
  border-bottom: solid 4px #ffffff;
}

/*footer*/
footer.site-footer {
  position: relative;
  margin: 0 auto;
  padding: 0 56px;
}
.site-footer .footer-inner {
  padding-top: 40px;
  border-top: 1px solid #95a3b7;
}

footer .footer-logo {
  width: 100%;
  height: auto;
  justify-content: space-between;
  align-items: center;
}
footer .footer-logo img {
  max-width: 140px;
  margin: 0 auto;
}
footer .footer-link-row-one-two {
  width: 100%;
}

footer ul.footer-links.row-one {
  padding-top: 20px;
  padding-bottom: 0px;
}
footer ul.footer-links.row-two {
  padding-top: 0px;
  padding-bottom: 0px;
}
footer ul.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
}
footer ul.footer-links li {
  font-size: 14px;
  padding: 15px 0px 17.5px 0px;
}
footer ul.footer-links li a {
  color: #ffffff;
}
.actualCookieChoices-wrapper {
  font-size: 14px;
  padding-top: 35px;
}
footer .footer-social {
  text-align: center;
}
footer .footer-social li {
  display: inline-block;
  margin-right: 25px;
}
footer .footer-social li:last-child {
  margin-right: 0px;
}
footer .footer-social img {
  max-width: 34px;
  width: 100%;
}

footer .footer-text {
  padding-top: 70px;
  font-size: 11px;
}

footer .footer-text p {
  font-size: 11px;
}




@media screen and (max-width: 1300px) {
  .menu-voices {
    gap: 10px;
  }

  .menu-ctas-cont {
    gap: 8px;
  }
}

@media screen and (max-width: 1024px) {
  .header-cont {
      backdrop-filter: blur(20px);
      padding: 8px 24px;
  }
  .mobile-ham-btn-close {
    right: var(--menu-padding-x);
  }
  .menu-drawer .wrp-m-btns {
    max-width: 327px;
  }
}

@media screen and (max-width: 992px) {
  footer.site-footer {
    padding-left: 20px;
    padding-right: 20px;
  }

  footer .footer-logo {
    text-align: center;
  }

  footer .footer-social {
    padding-top: 33px;
  }

  footer ul.footer-links {
    justify-content: center;
  }
  footer ul.footer-links li {
    padding-right: 8px;
  }
  footer ul.footer-links li:last-child {
    padding-right: 0px;
  }  
}

@media screen and (max-width: 992px) {
  .menu-drawer .wrp-m-btns {
    max-width: 100%;
  }
}