/* Hero Section */
.hero {
  position: relative;
  background-image: url("../img/hero-bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  text-align: center;
  padding: 112px 0 112px 0;
  border: 10px solid var(--mainbg);
  border-radius: 24px;
  height: 100vh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media (min-width: 868.02px) {
  .hero {
    min-height: 700px;
  }
}

.hero h1 {
  font-size: 5rem;
  margin-top: 120px;
  margin-bottom: 20px;
  color: white;
  line-height: 100%;
  font-family: "FK Display";
}

.hero p {
  font-size: 1.75rem;
  max-width: 550px;
  margin: 0 auto 110px;
  line-height: 36px;
  color: #cbd5e0;
  font-weight: 350;
}

@media (max-width: 868px) {
  .hero .container {
    align-self: center;
  }

  .hero h1 {
    font-size: 3rem;
    padding-left: 40px;
    padding-right: 40px;
    line-height: 120%;
    padding-bottom: 20px;
    margin-top: 0px;
  }

  .hero p {
    font-size: 1.125rem;
    line-height: 140%;
    color: #cbd5e0;
    padding-left: 30px;
    padding-right: 30px;
    margin-bottom: 0px;
  }
}
