.header-box {
  width: 100%;
  position: relative;
  background-color: #52b8cd;
  z-index: 100;
}
header {
  position: sticky !important;
  top: 0;
  z-index: 50;
  transition: top 0.3s;
}
header.hide {
  top: -100px;
}
.header .logo img {
  width: 100%;
}

.header-mobile-menu {
  display: none;
}
.burger {
  width: 24px;
  height: 24px;
  padding: 0;
  border: none;
  background: transparent;
  appearance: none;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
  z-index: 11;

  cursor: pointer;
}

.burger:focus-visible {
  outline: 2px solid white;
  outline-offset: 4px;
}
.burger span {
  display: block;
  position: absolute;
  width: 100%;
  height: 2px;
  transition: all 0.3s;
  border-radius: 9999px;
  left: 0;
  background-color: white;
  border-radius: 9999px;
}
.burger span:nth-child(1) {
  top: 15%;
  transform: translateY(-50%);
}
.burger span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.burger span:nth-child(3) {
  top: 85%;
  transform: translateY(-50%);
}
.header[data-state="open"] .burger span:nth-child(1) {
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
.header[data-state="open"] .burger span:nth-child(2) {
  opacity: 0;
}
.header[data-state="open"] .burger span:nth-child(3) {
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
}
.header-container {
  width: 100%;
  height: 80px;
  align-items: center;
  display: flex;
  justify-content: space-between;
  gap: 24px;
}

.header-links {
  display: flex;
  flex: 1 1 auto;
  justify-content: center;
  gap: 24px;
}

.header-right {
  display: flex;
  gap: 24px;
  align-items: center;
  flex-shrink: 0;
}

.header-mobile-menu_content {
  position: absolute;
  top: 0;
  transform: translateY(-100%);
  left: 0;
  transition: all 0.3s;
  z-index: 50;
  background: linear-gradient(to bottom, #52b8cd, #79cbdb);
  width: 100%;
  padding: 20px 20px 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 32px;
  transition: all 0.3s;
  overflow: auto;
  max-height: calc(100dvh - 80px);
}
.header-mobile-menu_content-buttons {
  display: flex;
  justify-content: space-between;
  gap: 24px;
}
.header-mobile-menu_content .header-links {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* hero -------------------------------------------------------------------- */
.hero-block {
  width: 100%;
  overflow: hidden;
  max-width: 100%;
  padding-bottom: 80px;
}
.hero-container {
  width: 100%;
  background: linear-gradient(to bottom, #52b8cd, #95d8e5);
}
.hero {
  display: flex;
  flex-direction: row;
  padding-bottom: 10px;
  gap: 40px;
}
.hero__img {
  margin-top: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero__img-desc {
  transform: translateY(9.8%);
}
.hero__img img {
  width: 111.7%;
}
.hero__info {
  display: flex;
  flex-direction: column;
  color: white;
  max-width: 496px;
  padding-top: 40px;
  padding-bottom: 80px;
}

.hero__info-desc {
  font-size: 18px;
  margin-bottom: 33px;
  display: block;
  line-height: 25px;
}

.hero > div {
  width: 100%;
}
.hero__img-mob {
  display: none;
  width: 100%;
  transform: none;
}
@media screen and (max-width: 1280px) {
}
@media screen and (max-width: 1024px) {
  .header-links {
    display: none;
  }
  .header-mobile-menu {
    display: block;
  }
  .header-container {
    height: 64px;
  }
  .hide-for-mobile {
    display: none !important;
  }
  .header[data-state="open"] .header-mobile-menu_content {
    top: 64px;
    transform: translateY(0%);
  }
  .header-right .btn {
    height: 32px;
  }

  .hero {
    flex-direction: column;
    padding-bottom: 40px;
    overflow: hidden;
  }
  .hero__img-desc {
    display: none;
  }
  .hero__info {
    max-width: 100%;
    padding-bottom: 0px;
  }
  .hero__info h1 {
    margin-bottom: 29px;
  }
  .hero__info-desc {
    margin-top: 40px;
  }
  .hero__img-mob img {
    width: 120%;
  }
  .hero__img-mob {
    display: flex;
    justify-content: center;
  }
  .hero__img-mob img {
    width: 108dvw;
    flex-shrink: 0;
  }

  .header-container {
    height: 64px;
  }
  .header[data-state="open"] .header-mobile-menu_content {
    top: 64px;
  }

  .header-mobile-menu_content {
    max-height: calc(100dvh - 64px);
  }
}

@media screen and (max-width: 480px) {
  .hero__info {
    padding-top: 23px;
  }

  .hero__info-desc {
    font-size: 16px;
    line-height: 22px;
    margin-bottom: 18px;
    margin-top: 36px;
  }
  .header .logo img {
    max-width: 117px;
  }
  .hero-block {
    padding-bottom: 64px;
  }
}
