.hero-container {
  /* box-sizing: border-box; */
  position: relative;
  min-height: 100vh;
  /* padding: 60px 0 0 60px; */
  padding: 100px 0 0;
  /* background: linear-gradient(to right, #8e99b1, #5170af); */
  overflow: hidden;

  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  /* margin-bottom: -60px; */

  background: radial-gradient(circle at top center, #6c80ac, transparent 60%),
    radial-gradient(circle at bottom center, #65aef0, transparent 60%),
    linear-gradient(to bottom right, #979eb3, #5b78b2),
    linear-gradient(to bottom left, #5170ae, #547cba);
}

.hero-content-wrapper {
  height: -webkit-fill-available;
  width: -webkit-fill-available;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}

.hero-content {
  width: -webkit-fill-available;
  color: #fff;
  padding-right: 16px;
  padding-left: 60px;
  /* pointer-events: none; */
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  align-items: center;
}

.hero-divider {
  position: absolute;
  top: -40%;
  bottom: -20%;
  left: 0;
  right: -32px;
  border: 7px solid #bad3ea;
  border-radius: 50%;
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-top-color: transparent;
}

.hero-divider::after {
  content: "";
  position: absolute;
  inset: -1px;

  border-radius: 50%;
  border: 9px solid rgba(186, 211, 234, 0.35);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-top-color: transparent;

  filter: blur(2px);
}

.hero-content h2 {
  color: #ffffff;
  font-size: 4rem;
  margin-bottom: 16px;
  font-weight: 400;
}

.hero-content h4 {
  font-size: 2rem;
  line-height: 1.6;
  margin-bottom: 64px;
  font-weight: 300;
  color: #684f4b;
}

.hero-install-buttons {
  z-index: 10;
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-install-buttons button {
  background-color: #ffffff;
  display: flex;
  padding: 12px;
  padding-right: 24px;
  border-radius: 12px;
  border: none;
  cursor: pointer;
}

.hero-install-buttons button:hover {
  cursor: pointer;
  /* transform: translateY(-4px); */
  background: #009961;
  transition-duration: 500ms;
}

.hero-install-buttons button img {
  width: 48px;
  height: auto;
}

.hero-button-text {
  margin-left: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.hero-button-text h6 {
  color: #000000;
  display: flex;
  align-items: center;
  font-size: 18px;
  margin: 0;
}

.hero-button-text h6:first-child {
  font-weight: 100;
}

.hero-image {
  position: relative;
  z-index: 1;
  height: 100vh;
}

.hero-image img {
  height: 100%;
  display: block;
}

.hero-header {
  background: rgba(255, 255, 255, 0.01);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

@media (max-width: 1500px) {
  .hero-content-wrapper {
    position: static;
  }

  .hero-content {
    position: absolute;
    width: 100%;
    z-index: 10;
  }

  .hero-divider {
    display: none;
  }

  .hero-install-buttons {
    justify-content: space-evenly;
  }
}

/* 📱 Mobile */
@media (max-width: 900px) {
  .hero-container {
    flex-direction: column;
    text-align: center;
    padding: 40px 20px;
  }

  .hero-image {
    max-width: 100%;
    /* display: none; */
    position: absolute;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .hero-image img {
    height: auto;
    max-width: 100%;
  }

  .hero-install-buttons {
    justify-content: center;
  }

  .hero-install-buttons > a {
    width: 100%;
  }

  .hero-install-buttons > a > button {
    width: 100%;
  }

  .hero-content {
    position: static;
    margin-top: 100px;
    padding-left: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 70vh;
  }

  .hero-divider {
    display: none;
  }

  .hero-content h2 {
    background-color: #00000094;
    padding: 12px;
    border-radius: 12px;
    font-size: 2.2rem;
    margin-bottom: 12px;
  }

  .hero-content h4 {
    background-color: #ffffffd0;
    padding: 12px;
    border-radius: 12px;
    font-size: 1.2rem;
    line-height: 1.4;
    margin-bottom: 32px;
  }

  .navmenu {
    padding: 0 !important;
  }

  .hero-install-buttons button img {
    width: 24px;
    height: auto;
  }

  .hero-button-text {
    margin-left: 8px;
    display: flex;
    flex-direction: column;
    justify-content: space-around;
  }

  .hero-button-text h6 {
    color: #000000;
    display: flex;
    align-items: center;
    font-size: 14px;
    margin: 0;
  }
}

@media (max-width: 428px) {
  .hero-container {
    min-height: 106vh;
  }
}
