/* HERO */
.hero-header {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1;
}

.hero {
  height: 100dvh;
  max-height: 1024px;
  position: relative;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  object-fit: cover;
  background-color: #2e5eda;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
  z-index: 1;
}

.hero-title {
  font-size: 44px;
  letter-spacing: 0%;
  font-weight: 600;
  text-align: center;
}

.hero-button {
  width: 346px;
  height: 78px;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-description {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
  margin-top: 12px;
  margin-bottom: 20px;
}

/* ABOUT US */
.about-us {
  display: grid;
  grid-template-columns: 2fr 1fr;
  align-items: center;
  gap: 110px;
  margin-top: 100px;
  margin-bottom: 80px;
}

.about-us-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}

.about-us h3 {
  font-size: 36px;
  font-weight: 600;
}

.about-us p {
  font-size: 20px;
  margin-bottom: 20px;
  font-weight: 500;
}

.about-us-button {
  width: 253px;
  height: 63px;
}

/* LEARNING */
.learning-title {
  margin-bottom: 44px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

/* INDUSTRIES */
.industries {
  padding-block: 70px;
  margin-top: 100px;
  overflow: hidden;
}

.industries-list {
  display: flex;
  gap: 60px;
  width: 120%;
  transform: translateX(-60px);
  color: white;
  font-size: 20px;
}

.industries-list-2 {
  transform: translateX(-300px);
  margin-top: 56px;
}

.industries-title {
  margin-bottom: 52px;
  color: white;
}

/* TARIFFS */
.tariffs {
  margin-block: 60px;
}

.tariffs-title {
  margin-bottom: 58px;
}

.tariffs-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
}

@media (max-width: 1450px) {
  .tariffs-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 36px;
  }
}

.tariff-card {
  align-items: center;
  position: relative;

  h4 {
    font-size: 28px;
    font-weight: 600;
    text-transform: uppercase;
  }

  p {
    font-size: 22px;
    font-weight: 500;
  }
}

.tariff-card-list {
  width: 100%;
}

.tariff-card-list li {
  width: 100%;
  list-style: inside;
  font-size: 20px;
}

.tariff-vr-image {
  position: absolute;
  bottom: 20px;
  right: 20px;
}

.tariff-vr-image-premium {
  position: absolute;
  right: 20px;
  bottom: 20px;
  top: 20px;
  align-self: center;
}

@media (max-width: 1024px) {
  .hero {
    margin-top: -80px;
  }

  .hero-title {
    font-size: 18px;
    text-wrap: pretty;
  }

  .hero-description {
    font-size: 12px;
  }

  .hero-button {
    font-size: 14px;
    width: 220px;
    height: 50px;
    padding: 0px;
  }

  .about-us {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    justify-content: center;
    gap: 20px;
  }

  .manimage {
    width: 100%;
    aspect-ratio: 16/9;
    border-radius: 10px;
    object-fit: cover;
  }

  .about-us-content {
    align-items: center;
  }

  .about-us-content > h2 {
    font-size: 18px;
    text-align: center;
  }

  .about-us-content > p {
    font-size: 12px;
    text-align: center;
  }

  .about-us-button {
    font-size: 14px;
    width: 220px;
    height: 50px;
    padding: 0px;
  }

  .section-title {
    font-size: 18px;
    text-align: center;
  }

  .learning .cards {
    grid-template-columns: 1fr;
  }

  .industries-list {
    font-size: 14px;
    gap: 80px;
  }

  .tariffs-list {
    grid-template-columns: 1fr;
  }

  .tariff-card {
    h4 {
      font-size: 18px;
    }

    p {
      font-size: 16px;
      font-weight: 500;
    }

    .tariff-vr-image-premium {
      width: 40%;
      position: absolute;
      bottom: 20px;
      right: 20px;
      top: auto;
    }
  }

  .tariff-card-premium {
    padding-bottom: 120px;
  }

  .tariff-card-list li {
    font-size: 14px;
  }
}
