.tariffs-hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
  text-align: center;

  margin-top: 80px;
  margin-bottom: 120px;
}

.tariffs-hero h1 {
  font-size: 48px;
  font-weight: 600;
}

.tariffs-hero h2 {
  font-size: 24px;
  font-weight: 500;
}

.tariffs-list {
  display: grid;
  grid-template-columns: repeat(3, 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) {
  .tariffs-hero {
    margin-bottom: 40px;
  }

  .tariffs-hero h1 {
    font-size: 18px;
  }

  .tariffs-hero h2 {
    font-size: 14px;
  }

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

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

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

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

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

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

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