body {
  padding-top: 80px;
}
body.logged-in {
  padding-top: 80px;
}
@media screen and (max-width: 1300px) {
  body.logged-in {
    padding-top: 32px;
  }
}
body.logged-in header.section {
  top: 32px;
}
@media screen and (max-width: 1300px) {
  body.logged-in header.section {
    top: 0px;
  }
}

header.section {
  color: var(--color-text);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 80px;
  position: fixed;
  top: 0px;
  z-index: 1003;
  filter: drop-shadow(0px 4px 4px rgba(0, 95, 119, 0.04));
}
@media screen and (max-width: 1301px) {
  header.section {
    background-color: white;
  }
}
@media screen and (min-width: 1301px) {
  header.section:after {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    background-color: var(--background-primary);
    position: absolute;
    z-index: 10009;
  }
}
header.section .container > nav > .menu {
  position: relative;
  z-index: 10010;
}
header.section ul {
  margin: 0px;
}
header.section .button {
  margin: 0px;
}
header.section .site-logo a {
  height: 72px;
  width: 150px;
  display: block;
  position: relative;
}
@media screen and (max-width: 1300px) {
  header.section .site-logo a {
    height: 45px;
    width: auto;
  }
}
header.section .site-logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  position: relative;
  z-index: 10010;
  position: absolute;
  top: 20%;
  left: 25%;
}
@media screen and (max-width: 1300px) {
  header.section .site-logo a img {
    position: relative;
    top: 0px;
    left: 0px;
  }
}
@media screen and (max-width: 1300px) {
  header.section .site-logo a {
    background-color: white;
  }
  header.section .site-logo a img.logo-desktop {
    display: none;
  }
}
@media screen and (min-width: 1301px) {
  header.section .site-logo a:after {
    content: "";
    display: block;
    width: 250px;
    height: 120px;
    background-color: white;
    position: absolute;
    z-index: 10009;
    top: -20px;
    filter: drop-shadow(0px 4px 4px rgba(0, 95, 119, 0.04));
    transform: rotate(-14deg);
  }
  header.section .site-logo a img.logo-mobile {
    display: none;
  }
}
header.section .hamburger {
  display: flex;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}
@media screen and (min-width: 1301px) {
  header.section .hamburger {
    display: none;
  }
}
header.section .hamburger .hamburger-line {
  height: 3px;
  width: 35px;
  background-color: var(--primary);
  display: block;
  transition: all 0.3s ease-in-out;
}
header.section.is-open .hamburger .hamburger-line {
  background-color: var(--primary);
  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(5px, -12px);
}
header.section .container {
  width: var(--container-large-width);
  margin: auto;
}
header.section .container nav.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.section .container nav.navbar .menu {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  height: 80px;
}
header.section .container nav.navbar .menu ul {
  margin-left: 0px;
  padding-left: 0px;
  display: flex;
  align-items: center;
  gap: 40px;
}
header.section .container nav.navbar .menu ul li {
  list-style: none;
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
header.section .container nav.navbar .menu ul li a {
  text-decoration: none;
  color: var(--primary);
  font-family: var(--typo-text);
  font-size: 15px;
  font-style: normal;
  font-weight: 400;
  line-height: 120%;
  cursor: pointer;
  transition: all 0.3s ease-in-out;
  position: relative;
}
header.section .container nav.navbar .menu ul li a:after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0px;
  width: 0%;
  height: 1px;
  background-color: var(--primary);
  transition: all 0.3s ease-in-out;
}
header.section .container nav.navbar .menu ul li a:hover:after {
  width: 100%;
}
header.section .container nav.navbar .menu ul li.menu-item-has-children {
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
header.section .container nav.navbar .menu ul li.menu-item-has-children::after {
  content: "";
  width: 12px;
  height: 8px;
  background: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%228%22%20viewBox%3D%220%200%2012%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M1.41%200.294922L6%204.87492L10.59%200.294922L12%201.70492L6%207.70492L0%201.70492L1.41%200.294922Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  cursor: pointer;
}
header.section .container nav.navbar .menu ul li:hover ul.sub-menu {
  top: 80px;
  opacity: 1;
  pointer-events: all;
  transition-delay: 0.3s;
}
header.section .container nav.navbar .menu ul li ul.sub-menu {
  position: absolute;
  background-color: var(--background-primary);
  color: var(--color-text);
  flex-direction: column;
  gap: 5px;
  padding: 10px 20px;
  border-top: none;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  z-index: -1;
  top: -50px;
  left: -20px;
  min-width: 220px;
  width: fit-content;
  opacity: 0;
  transition: opacity 0.3s ease-in-out, top 0.3s ease-in-out;
  pointer-events: none;
}
header.section .container nav.navbar .menu ul li ul.sub-menu:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-bottom: 10px solid var(--background-primary);
  z-index: -1;
}
header.section .container nav.navbar .menu ul li ul.sub-menu li {
  width: 100%;
}
header.section .container nav.navbar .menu ul li ul.sub-menu li a {
  font-size: 16px;
  font-weight: 400;
  line-height: 120%;
  padding: 11px 15px;
  display: block;
  width: 100%;
  text-align: left;
  transition: all 0.3s ease-in-out;
  color: var(--color-text);
  border-radius: 3px;
}
header.section .container nav.navbar .menu ul li ul.sub-menu li a:hover {
  background-color: #222;
}
header.section .container nav.navbar .menu .cta-container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1300px) {
  header.section .cta-container {
    display: flex;
    align-items: center;
    gap: 40px;
    width: var(--container-width);
  }
  header.section .cta-container .button {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  header.section.is-open .container > nav.navbar > .menu {
    left: 0px;
  }
  header.section .container > nav.navbar > .menu {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    background-color: var(--background-primary);
    position: fixed;
    padding-bottom: 40px;
    height: inherit;
    --offset-header: 80px;
    --heightMenu: calc(var(--innerHeight,100vh) - var(--offset-header,132px));
    top: var(--offset-header, 132px);
    left: -100vw;
    height: var(--heightMenu);
    width: 100vw;
    transition: all 0.3s ease-in-out;
    gap: 0px;
  }
  header.section .container > nav.navbar > .menu ul.menu {
    flex-direction: column;
    justify-content: flex-start;
    position: relative;
    width: var(--container-width);
    height: inherit;
    width: 100%;
    gap: 0px;
  }
  header.section .container > nav.navbar > .menu ul.menu li {
    width: 100%;
    height: 100px;
  }
  header.section .container > nav.navbar > .menu ul.menu li a {
    font-size: 20px;
    padding: 20px;
    width: 100%;
  }
  header.section .container > nav.navbar > .menu ul.menu li.menu-item-has-children::after {
    content: "";
    position: absolute;
    top: calc(50% - 6px);
    right: 20px;
    width: 18px;
    height: 12px;
    transform: rotate(-90deg);
    background: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%228%22%20viewBox%3D%220%200%2012%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M1.41%200.294922L6%204.87492L10.59%200.294922L12%201.70492L6%207.70492L0%201.70492L1.41%200.294922Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
  }
  header.section .container > nav.navbar > .menu ul.menu li ul.sub-menu {
    all: inherit;
    position: absolute;
    width: 100vw;
    height: var(--heightMenu);
    top: 0px;
    left: 0px;
    background-color: var(--background-primary);
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    z-index: 10003;
    left: -100vw;
    transition: all 0.3s ease-in-out;
  }
  header.section .container > nav.navbar > .menu ul.menu li ul.sub-menu::before {
    all: inherit;
  }
  header.section .container > nav.navbar > .menu ul.menu li ul.sub-menu.is-open {
    left: 0px;
  }
  header.section .container > nav.navbar > .menu ul.menu li ul.sub-menu li {
    padding: 10px;
    height: 100px;
  }
  header.section .container > nav.navbar > .menu ul.menu li ul.sub-menu li.sub-menu-title {
    background-color: var(--background-primary);
    cursor: pointer;
  }
  header.section .container > nav.navbar > .menu ul.menu li ul.sub-menu li.sub-menu-title span {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  header.section .container > nav.navbar > .menu ul.menu li ul.sub-menu li.sub-menu-title span::before {
    content: "";
    width: 18px;
    height: 12px;
    transform: rotate(90deg);
    background: url("data:image/svg+xml,%3Csvg%20width%3D%2212%22%20height%3D%228%22%20viewBox%3D%220%200%2012%208%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%0A%3Cpath%20d%3D%22M1.41%200.294922L6%204.87492L10.59%200.294922L12%201.70492L6%207.70492L0%201.70492L1.41%200.294922Z%22%20fill%3D%22white%22%2F%3E%0A%3C%2Fsvg%3E%0A");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
  }
  header.section .container > nav.navbar > .menu ul.menu li ul.sub-menu li a, header.section .container > nav.navbar > .menu ul.menu li ul.sub-menu li span {
    font-size: 20px;
    padding: 20px;
    width: 100%;
    font-weight: 500;
  }
}