header.section {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 120px;
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
  z-index: 1000;
  box-sizing: border-box;
}
header.section * {
  box-sizing: border-box;
}
header.section ul {
  margin: 0px;
}
@media screen and (max-width: 768px) {
  header.section .desktop-menu {
    display: none;
  }
}
header.section .container {
  height: 100%;
}
header.section .container nav {
  height: 100%;
  padding: 10px 0px;
}
header.section .button {
  margin: 0px;
}
header.section .site-logo {
  height: 40px;
}
header.section .site-logo img {
  height: 100%;
  object-fit: contain;
}
header.section .hamburger {
  display: flex;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}
header.section .hamburger .hamburger-line {
  height: 2px;
  width: 35px;
  background-color: var(--wp--preset--color--dark);
  display: block;
  transition: all 0.3s ease-in-out;
}
header.section.is-open .hamburger .hamburger-line {
  background-color: var(--wp--preset--color--dark);
  display: block;
  cursor: pointer;
}
header.section.is-open .hamburger .hamburger-line:nth-child(1) {
  transform: rotate(45deg) translate(2px, 9px);
}
header.section.is-open .hamburger .hamburger-line:nth-child(2) {
  opacity: 0;
  transform: translateX(-35px);
}
header.section.is-open .hamburger .hamburger-line:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -11px);
}
header.section .container {
  width: var(--wp--style--global--wide-size);
  margin: auto;
}
header.section .container nav.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0px 12px 0px 40px;
  border-radius: 9999px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: rgba(87, 91, 92, 0.4);
  backdrop-filter: blur(57px);
  max-height: 90px;
  margin-top: 30px;
}
header.section .container nav.navbar .menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 40px;
  height: 100%;
}
header.section .container nav.navbar .menu ul {
  margin-left: 0px;
  padding-left: 0px;
  display: flex;
  align-items: center;
  gap: var(--wp--preset--spacing--xs);
  height: 100%;
}
header.section .container nav.navbar .menu ul li {
  list-style: none;
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
header.section .container nav.navbar .menu ul li a {
  text-decoration: none;
  color: var(--wp--preset--color--light);
  font-family: var(--wp--preset--font-family--content);
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  cursor: pointer;
  padding: 12px 20px;
  border-radius: 9999px;
  border: 1px solid transparent;
  transition: all 0.3s ease-in-out;
}
header.section .container nav.navbar .menu ul li:hover > a {
  background-color: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.2);
}
header.section .container nav.navbar .menu ul li:hover ul.sub-menu {
  top: 100px;
  opacity: 1;
  pointer-events: all;
}
header.section .container nav.navbar .menu ul li ul.sub-menu {
  position: absolute;
  background-color: #001429;
  flex-direction: column;
  gap: 5px;
  border-top: none;
  border-radius: 8px;
  border: 1px solid #414C4A;
  z-index: -1;
  top: -100px;
  height: fit-content;
  left: 0px;
  min-width: 400px;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  max-width: 400px;
  pointer-events: none;
}
header.section .container nav.navbar .menu ul li ul.sub-menu:before {
  content: "";
  display: block;
  width: 100%;
  height: 20px;
  top: -20px;
  position: absolute;
}
header.section .container nav.navbar .menu ul li ul.sub-menu li {
  width: 100%;
  height: fit-content;
  padding: 12px 10px;
  border-bottom: 1px solid #414C4A;
}
header.section .container nav.navbar .menu ul li ul.sub-menu li:last-child {
  border-bottom: none;
}
header.section .container nav.navbar .menu ul li ul.sub-menu li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  display: flex;
  justify-content: space-between;
  width: 100%;
  text-align: left;
  color: var(--wp--preset--color--light);
  transition: all 0.3s ease-in-out;
  align-items: center;
}
header.section .container nav.navbar .menu ul li ul.sub-menu li a:after {
  content: "";
  display: block;
  background-image: url("data:image/svg+xml;base64,PHN2ZyBjbGFzcz0iYXJyb3ctd2hpdGUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjQxIiBoZWlnaHQ9IjQwIiB2aWV3Qm94PSIwIDAgNDEgNDAiIGZpbGw9Im5vbmUiPgo8cGF0aCBkPSJNMTIuMzMzMyAxMS42NjY3SDI5TTI5IDExLjY2NjdWMjguMzMzNE0yOSAxMS42NjY3TDEyLjMzMzMgMjguMzMzNCIgc3Ryb2tlPSJ3aGl0ZSIgc3Ryb2tlLXdpZHRoPSIyIiBzdHJva2UtbGluZWNhcD0ic3F1YXJlIj48L3BhdGg+Cjwvc3ZnPg==");
  background-size: 26px 26px;
  background-position: center;
  background-repeat: no-repeat;
  width: 26px;
  height: 26px;
  opacity: 0;
  transition: opacity 0.3s ease-in-out;
}
header.section .container nav.navbar .menu ul li ul.sub-menu li a:hover:after {
  display: block;
  opacity: 1;
}
header.section .container nav.navbar .menu .cta-container {
  display: flex;
  align-items: center;
}
header.section.is-open .mobile-menu .top-bar-mobile {
  background-color: var(--wp--preset--color--dark);
}
header.section.is-open .mobile-menu .menu {
  left: 0px;
}
header.section.is-open .menu-toggle span:nth-child(1) {
  transform: rotate(45deg) translate(8px, 11px);
}
header.section.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
  transform: translateX(-35px);
}
header.section.is-open .menu-toggle span:nth-child(3) {
  transform: rotate(-45deg) translate(6px, -11px);
}
header.section .mobile-menu {
  width: 100vw !important;
  padding: 0px;
  position: fixed;
  top: 0px;
}
@media screen and (min-width: 769px) {
  header.section .mobile-menu {
    display: none;
  }
}
header.section .mobile-menu .navbar-mobile {
  margin: 0px;
  padding: 0px;
}
header.section .mobile-menu .top-bar-mobile {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
  margin: 0px 2.5vw;
  transition: background-color 0.3s ease-in-out;
  padding: 12px 24px;
  position: fixed;
  width: 95vw;
  z-index: 3;
  margin-top: 20px;
  background-color: var(--wp--preset--color--dark);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 9999px;
}
header.section .mobile-menu .top-bar-mobile .site-logo {
  height: 50px;
}
header.section .mobile-menu .menu-toggle {
  display: flex;
  flex-direction: column;
  gap: 10px;
  cursor: pointer;
}
header.section .mobile-menu .menu-toggle span {
  width: 40px;
  height: 3px;
  background-color: white;
}
header.section .mobile-menu div.menu {
  display: flex;
  height: 100svh;
  width: 100vw;
  background-color: var(--wp--preset--color--dark);
  position: relative;
  left: -100vw;
  top: 0px;
  transition: all 0.3s ease-in-out;
  overflow-y: scroll;
  z-index: 2;
  box-sizing: border-box;
  padding: 150px 5vw;
}
header.section .mobile-menu div.menu * {
  box-sizing: border-box;
}
header.section .mobile-menu div.menu .contact-button-mobile {
  position: fixed;
  bottom: 0px;
  padding-bottom: var(--wp--preset--spacing--l);
  width: 90vw;
  display: flex;
  justify-content: center;
  background-color: var(--wp--preset--color--background-dark);
}
header.section .mobile-menu div.menu ul {
  padding-left: 0px;
  display: flex;
  flex-direction: column;
  gap: 30px;
  list-style: none;
  width: 100%;
  height: fit-content;
}
header.section .mobile-menu div.menu ul li {
  color: white;
  width: 100%;
}
header.section .mobile-menu div.menu ul li a {
  font-size: 28px;
  font-weight: 350;
}
header.section .mobile-menu div.menu ul li ul.sub-menu {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
  margin-top: 16px;
  gap: 0px;
}
header.section .mobile-menu div.menu ul li ul.sub-menu li {
  padding-top: var(--wp--preset--spacing--s);
  padding-bottom: var(--wp--preset--spacing--s);
}
header.section .mobile-menu div.menu ul li ul.sub-menu li a {
  font-size: 18px;
}