body:has(header.section) {
  padding-top: 80px;
}

body:has(header.section.is-open) {
  overflow-y: hidden;
}

header.section {
  background-color: var(--wp--preset--color--light);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 80px;
  position: fixed;
  top: var(--wp-admin--admin-bar--height, 0px);
  z-index: 1000;
  box-sizing: border-box;
  border-bottom: 1px solid #E4E4E7;
}
header.section * {
  box-sizing: border-box;
}
header.section ul {
  margin: 0px;
}
header.section .container {
  height: 100%;
}
header.section .container nav {
  height: 100%;
}
header.section .button {
  margin: 0px;
}
header.section .site-logo {
  height: 100%;
  padding: 10px 0px;
}
header.section .site-logo img {
  padding: 5px;
  height: 100%;
  object-fit: contain;
}
header.section .hamburger {
  display: flex;
  flex-direction: column;
  gap: 7px;
  cursor: pointer;
}
@media screen and (min-width: 1100px) {
  header.section .hamburger {
    display: none;
  }
}
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;
  gap: 40px;
  width: 100%;
}
header.section .container nav.navbar .left {
  height: 100%;
  display: flex;
  gap: 40px;
}
header.section .container nav.navbar .blog-contact {
  display: flex;
  gap: 40px;
  align-items: center;
}
header.section .container nav.navbar .menu {
  display: flex;
  justify-content: flex-end;
  gap: 40px;
  justify-self: flex-start;
}
header.section .container nav.navbar .menu ul {
  margin-left: 0px;
  padding-left: 0px;
  display: flex;
  align-items: center;
  gap: 40px;
  height: 100%;
}
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(--wp--preset--color--text);
  font-family: var(--wp--preset--font-family--content);
  font-size: 16px;
  font-style: normal;
  font-weight: 500;
  line-height: 120%;
  cursor: pointer;
}
header.section .container nav.navbar .menu ul li.menu-item-has-children {
  padding-right: 20px;
  cursor: pointer;
}
header.section .container nav.navbar .menu ul li.menu-item-has-children::after {
  content: "";
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 0px;
  background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20id%3D%22Icon%22%3E%3Cpath%20id%3D%22Vector%22%20d%3D%22M4%206L8%2010L12%206%22%20stroke%3D%22%231D2A5D%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: center;
  background-repeat: no-repeat;
  width: 16px;
  height: 16px;
  top: 0px;
  height: 100%;
  z-index: -1;
  cursor: pointer;
}
header.section .container nav.navbar .menu ul li:hover ul.sub-menu {
  top: 75px;
  opacity: 1;
  pointer-events: all;
  height: auto;
}
header.section .container nav.navbar .menu ul li ul.sub-menu {
  position: absolute;
  background-color: var(--wp--preset--color--light);
  flex-direction: column;
  align-items: flex-start;
  gap: 5px;
  border-top: none;
  border: 1px solid #E4E4E7;
  border-radius: 5px;
  z-index: -1;
  top: -50px;
  height: fit-content;
  min-width: 100px;
  width: fit-content;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  pointer-events: none;
  padding-right: 25px;
}
header.section .container nav.navbar .menu ul li ul.sub-menu:before {
  content: "";
  position: absolute;
  top: -10px;
  left: 50%;
  width: 16px;
  height: 16px;
  z-index: -1;
}
header.section .container nav.navbar .menu ul li ul.sub-menu li a {
  font-size: 14px;
  font-weight: 400;
  line-height: 120%;
  padding: 10px 0px;
  padding-left: 10px;
  display: block;
  width: 100%;
  text-align: left;
  color: var(--wp--preset--color--text);
  transition: all 0.3s ease-in-out;
}
header.section .container nav.navbar .menu .cta-container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1100px) {
  header.section .container nav.navbar .blog-contact {
    position: fixed;
    width: 100vw;
    bottom: 0px;
    left: 0px;
    padding: var(--wp--preset--spacing--xl) calc(100vw - var(--wp--style--global--wide-size));
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 20px;
    opacity: 0;
    pointer-events: none;
  }
  header.section .cta-container {
    display: flex;
    align-items: center;
    gap: 40px;
    width: var(--wp--style--global--content-size);
  }
  header.section .cta-container .button {
    width: 100%;
    display: flex;
    justify-content: center;
  }
  header.section.is-open .container > nav.navbar > .left .menu {
    left: 0px;
    display: flex;
  }
  header.section.is-open .container > nav.navbar > .blog-contact {
    display: flex;
    transition: opacity 0.3s ease-in-out;
    transition-delay: 0.1s;
    opacity: 1;
  }
  header.section .container > nav.navbar > .left .menu {
    display: flex;
    display: none;
    flex-direction: column;
    background-color: white;
    position: fixed;
    padding: 40px 0px;
    --offset-header: calc(var(--wp-admin--admin-bar--height,0px) + 80px);
    top: var(--offset-header, 132px);
    left: -100vw;
    height: calc(var(--innerHeight, 100vh) - var(--offset-header, 132px));
    width: 100vw;
    transition: all 0.3s ease-in-out;
    justify-content: space-between;
    align-items: center;
    gap: 0px;
  }
  header.section .container > nav.navbar > .left .menu ul.menu {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    padding: 0px;
  }
  header.section .container > nav.navbar > .left .menu ul.menu li {
    padding: var(--wp--preset--spacing--m) calc(100vw - var(--wp--style--global--wide-size));
    width: 100%;
    height: fit-content;
  }
  header.section .container > nav.navbar > .left .menu ul.menu li a {
    font-size: 18px;
  }
  header.section .container > nav.navbar > .left .menu ul.menu li.menu-item-has-children::after {
    cursor: pointer;
    position: absolute;
    top: 0px;
    right: calc(100vw - var(--wp--style--global--wide-size));
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20id%3D%22Icon%22%3E%3Cpath%20id%3D%22Vector%22%20d%3D%22M4%206L8%2010L12%206%22%20stroke%3D%22%231D2A5D%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(-90deg);
    width: 16px;
    height: 16px;
    top: 0px;
    height: 100%;
    z-index: -1;
    cursor: pointer;
  }
  header.section .container > nav.navbar > .left .menu ul.menu li.menu-item-has-children.is-open > ul.sub-menu {
    opacity: 1;
    pointer-events: all;
    left: 0px;
  }
  header.section .container > nav.navbar > .left .menu ul.menu li.menu-item-has-children ul.sub-menu {
    position: fixed;
    width: 100%;
    top: var(--offset-header, 132px);
    left: 100vw;
    height: calc(var(--innerHeight, 100vh) - var(--offset-header, 132px));
    z-index: 4;
    opacity: 0;
    box-shadow: none;
    border-radius: 0px;
    transform: none;
  }
  header.section .container > nav.navbar > .left .menu ul.menu li.menu-item-has-children ul.sub-menu .title {
    background-color: var(--wp--preset--color--light);
    border-bottom: 1px solid #E4E4E7;
    width: 100vw;
    padding: var(--wp--preset--spacing--m) calc(100vw - var(--wp--style--global--wide-size));
    position: relative;
    display: flex;
    gap: 10px;
    align-items: center;
    font-weight: 500;
  }
  header.section .container > nav.navbar > .left .menu ul.menu li.menu-item-has-children ul.sub-menu .title::before {
    content: "";
    background-image: url("data:image/svg+xml,%3Csvg%20width%3D%2216%22%20height%3D%2216%22%20viewBox%3D%220%200%2016%2016%22%20fill%3D%22none%22%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%3E%3Cg%20id%3D%22Icon%22%3E%3Cpath%20id%3D%22Vector%22%20d%3D%22M4%206L8%2010L12%206%22%20stroke%3D%22%231D2A5D%22%20stroke-width%3D%221.5%22%20stroke-linecap%3D%22round%22%20stroke-linejoin%3D%22round%22%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
    background-position: center;
    background-repeat: no-repeat;
    transform: rotate(90deg);
    width: 16px;
    height: 16px;
    top: 0px;
    cursor: pointer;
  }
  header.section .container > nav.navbar > .left .menu ul.menu li.menu-item-has-children ul.sub-menu li a {
    padding: 0px;
  }
}