a {
  cursor: pointer;
}

p:empty {
  display: none;
}

.navbar-container {
  height: 160px;
  position: fixed;
  padding-left: var(--spacing--40);
  padding-right: var(--spacing--40);
  width: 100%;
  z-index: 1000;
  justify-content: space-between;
  display: flex;
  flex-direction: row;
  background: var(--wp--preset--color--light);
  align-items: center;
  transition: background-color 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

html:not([data-scroll="0"]) .navbar-container {
  background: var(--wp--preset--color--light);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}


.menu {
  display: flex;
  flex-direction: row;
  gap: 40px;
}

.navbar-logo {
  height: 100%;
}

.navbar-logo svg {
  flex-shrink: 1;
  height: 100%;
}

.navbar-logo a {
  height: 100%;
  opacity: 1;
  transition: opacity 0.3s ease-in-out;
}

.navbar-logo a:hover {
  opacity: 0.7;
}

.menu-item a {
  color: var(--wp--preset--color--dark);
  font-weight: 400;
  font-size: var(--wp--preset--font-size--menu-item);
  font-family: var(--wp--preset--font-family--jost) !important;
  line-height: normal;
  transition: color 0.3s ease-in-out;
  text-align: center;
  display: flex;
}

.menu-item a:hover,
.current-menu-item a {
  color: var(--wp--preset--color--blue);
}

.navbar-menu {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 40px;
}

.buttons-wrapper {
  gap: 20px;
  display: flex;
  flex-direction: row;
}

.menu-button {
  display: none;
  background-color: var(--wp--preset--color--light);
  color: var(--wp--preset--color--dark);
  padding: 12px 24px;
  font-size: var(--wp--preset--font-size--button);
  font-family: var(--wp--preset--font-family--league-spartan) !important;
  cursor: pointer;
  font-weight: 400 !important;
  transition: background-color .3s ease-in-out, color .3s ease-in-out;
  letter-spacing: 0.64px;
  text-transform: uppercase;
  border-radius: 10px;
}

.menu-button:hover {
  background-color: var(--wp--preset--color--gray);
  color: var(--wp--preset--color--red);
}

.menu-container {
  display: none;
}

a.menu-burger {
  display: none;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  color: var(--wp--preset--color--dark);
  font-size: var(--wp--preset--font-size--button);
  font-family: var(--wp--preset--font-family--jost) !important;
  font-weight: 300 !important;
  border: 1px solid var(--wp--preset--color--dark);
  padding: 12px 24px;
  transition: background-color 0.3s ease-in-out, border-color 0.3s ease-in-out;
}

a.menu-burger:hover {
  border: 1px solid var(--wp--preset--color--gray);
  background-color: var(--wp--preset--color--gray);
}

.burger {
  width: 24px;
  height: 2px;
  background: currentColor;
  position: relative;
  display: inline-block;
}

.burger::before,
.burger::after {
  content: "";
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
}

.burger::before {
  top: -7px;
}

.burger::after {
  top: 7px;
}


.menu-burger .label {
  position: relative;
  display: inline-block;
  line-height: 1;
  height: 22px;
  width: 47px;
  overflow: hidden;
}

.menu-burger .text {
  position: absolute;
  left: 0;
  right: 0;
  top: 3px;
  transform: translateY(0);
  transition: transform .3s ease;
  will-change: transform;
}

.menu-burger .text--close {
  transform: translateY(150%);
}

.menu-burger.open .text--menu {
  transform: translateY(-150%);
}

.menu-burger.open .text--close {
  transform: translateY(0);
}

.menu-burger .burger {
  transition: background-color .2s ease;
}

.menu-burger .burger::before,
.menu-burger .burger::after {
  transition: top .3s ease, transform .3s ease;
}

.menu-burger.open .burger {
  background: transparent;
}

.menu-burger.open .burger::before {
  top: 0;
  transform: rotate(45deg);
}

.menu-burger.open .burger::after {
  top: 0;
  transform: rotate(-45deg);
}


.menu-item-41,
.menu-item-149 {
  display: none;
}

@media not all and (min-width: 1537px) {}

@media not all and (min-width: 1281px) {
  html:has(#menu-modal.open) {
    overflow: hidden;
  }

  .menu-item-41,
  .menu-item-149 {
    display: block;
  }

  a.menu-burger {
    display: inline-flex;
  }

  .navbar-container .menu-menu-container {
    display: none;

  }



  .menu-container {
    display: flex;
    height: calc(100dvh - 160px);
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    background-color: var(--wp--preset--color--light);
    z-index: 1000;
    flex-direction: column;
    transform: translateX(110%);
    transition: transform 0.3s ease-in-out;
  }

  .menu-container.open {
    transform: translateX(0);
  }

  .menu-menu-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 60px;
    height: 100%;
    padding-left: var(--wp--custom--px);
    padding-right: var(--wp--custom--px);
    padding-bottom: 40px;
    padding-top: 20px;
    max-height: 100dvh;
    overflow: auto;
  }

  .menu-menu-container::-webkit-scrollbar {
    display: none;
  }

  .menu {
    display: flex;
    flex-direction: column;
    gap: 40px;
    z-index: 1001;
    align-items: center;
  }
}

@media not all and (min-width: 1025px) {}

@media not all and (min-width: 769px) {
  .buttons-wrapper .border-button {
    display: none;
  }
}

@media not all and (min-width: 641px) {
  .btn-contact {
    display: none;
  }
}