.header-mobile {
  background-color: var(--orange);
  color: var(--black);
  width: 100%;
  height: 100%;
  overflow-y: auto;
  position: fixed;
  z-index: 98;
  transform: translateY(-100%);
  transition: all 500ms;
}
.header-mobile.show {
  transform: translateY(0);
}
.header-mobile--wrapper {
  padding-top: 150px;
}
.header-mobile_links-list {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding-bottom: 48px;
}
.header-mobile_links-list li {
  list-style: none;
  transition: all 300ms;
  padding: 12px 22px;
  border-radius: 10px;
  border: 1px solid transparent;
}
.header-mobile_links-list li:hover {
  border-color: black;
}
.header-mobile_links-list li a {
  text-decoration: none;
  color: var(--black);
  font-weight: 500;
  font-size: 28px;
  line-height: 1;
}
.bottom-menu--wrapper {
  padding: 48px 0;
  display: flex;
  justify-content: center;
}
.bottom-menu--wrapper a {
  text-decoration: none;
}
.download-button.download-button--mobile {
  background-color: transparent;
  font-size: 14px;
  color: var(--black);
}
.download-button.download-button--mobile:hover {
  background-color: var(--black);
}

.header-desktop h1 {
  color: white;
}
.header-desktop {
  position: fixed;
  top: 36px;
  left: 0;
  z-index: 99;
  height: 56px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-left: 36px;
  padding-right: 36px;
  align-items: center;
}
.header_links {
  display: none;
}

.btn-header {
  display: none;
}
.contact-button {
  padding: 21px 28px;
  border-radius: 15px;
  background-color: var(--black);
  transition: all 300ms;
  border: 2px solid var(--orange);
  color: white;
  cursor: pointer;
  font-size: 10px;
}
.contact-button:hover {
  background-color: var(--dark-grey);
}
.contact-button a {
  text-decoration: none;
  color: white;
  font-size: 12px;
}
.swiper-title {
  position: absolute;
  z-index: 2;
  top: 50%;
  left: 50%;
  color: white;
  font-size: 20px;
  transform: translate(-50%, -50%);
  line-height: 22px;
  font-weight: 500;
  text-align: center;
}

.swiper-button-next,
.swiper-button-prev {
  display: none !important;
}
.hamburger-menu {
  border: 1px solid transparent;
  background-color: transparent;
  position: fixed;
  top: 36px;
  right: var(--gutter);
  cursor: pointer;
  z-index: 99;
  transform: scale(1);
  transition: all 300ms;
}
.hamburger-menu:hover {
  transform: scale(1.1);
}
.menu-spin {
  transform: rotate(0);
  transition: all 1s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.menu-spin.spin {
  transform: rotate(135deg);
}

.header_logo svg path {
  display: none;
}
.header_logo {
  position: fixed;
  z-index: 99;
  top: 36px;
  padding: 12px 18px;
  border-radius: 16px;
  display: flex;
  place-items: center;
  left: var(--gutter);
  background-color: rgba(255, 255, 255, 0.5);
  backdrop-filter: blur(8px);
  box-shadow: 2px 0 10px rgba(0, 0, 0, 0.075);
}
.header_logo a {
  display: inline-block;
  margin: auto;
}
.header_logo img {
  display: block;
}

/* RESPONSIVE */
@media (min-width: 768px) {
  .swiper-title {
    font-size: 34px;
    line-height: 34px;
  }
  .swiper-button-next,
  .swiper-button-prev {
    display: flex !important;
  }
}
@media (min-width: 1024px) {
  .header-mobile {
    display: none;
  }
}
@media (min-width: 1024px) {
  .contact-button {
    padding: 21px 28px;
    border-radius: 15px;
    background-color: var(--black);
    transition: all 300ms;
    color: white;
    cursor: pointer;
    font-size: 12px;
  }
  /* .contact-button a {
    text-decoration: none;
    color: white;
    font-size: 12px;
  } */
  .swiper-title {
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    color: white;
    font-size: 64px;
    transform: translate(-50%, -50%);
    line-height: 64px;
    font-weight: 500;
  }
  .header_links {
    display: block;
  }

  .header_links-list {
    display: flex;
    gap: 12px;
    padding-left: 12px;
    align-items: center;
    border-radius: 16px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(8px);
    height: 62px;
    box-shadow: 2px 0 10px rgba(0, 0, 0, 0.075);
  }
  .header_links-list li {
    list-style: none;
    /* padding: 21px 28px; */
  }
  .header_links-list li a {
    display: inline-block;
    padding: 12px 8px;
    border-radius: 6px;
    transition: all 0.3s ease-in-out;
    font-size: 12px;
    text-decoration: none;
    color: var(--black);
  }
  .header_links-list li.cta {
    height: 100%;
  }
  .header_links-list li.cta a {
    height: 100%;
    background-color: var(--orange);
    padding: 12px 24px;
    border-radius: 0;
    display: flex;
    align-items: center;
  }
  .header_links-list li a:hover {
    background-color: white;
  }
  .header_links-list li.cta a:hover {
    background-color: rgb(254, 120, 44);
  }
  .btn-header {
    display: block;
  }
  .hamburger-menu {
    display: none;
  }
  .header_logo {
    position: unset;
  }
  .header_logo svg path {
    display: block;
  }
}
@media (min-width: 1280px) {
  .header-desktop {
    padding-left: 66px;
    padding-right: 66px;
  }
}
@media (min-width: 1536px) {
}
