/* Hero section */
.hero {
  background: linear-gradient(
      0deg,
      rgba(0, 35, 124, 0.2),
      rgba(0, 35, 124, 0.2)
    ),
    linear-gradient(0deg, rgba(0, 0, 0, 0.493), rgba(0, 0, 0, 0.493)),
    url("/images/hero-image.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height: 100vh;
  /* display: none; */
}

.hero-content {
  /* background: #000; */
  height: 100%;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 60%;
  /* padding-top: 100px; */
  padding-left: 60px;
  gap: 10px;
}

.hero-content h1 {
  display: flex;
  flex-direction: column;
  font-weight: 400;
  font-size: 72px;
  line-height: 87.84px;
}

.hero-content h1 span:nth-child(2) {
  font-weight: 600;
}

.hero-content a {
  margin-top: 20px;
  display: inline-block;
  /* background: #000; */
  width: fit-content;
}
  
/* Media query */
@media screen and (max-width: 900px) {
  .hero-content {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }

  .hero-content a {
    margin: 20px auto 0;
  }
  .hero-content h1 {
    display: flex;
    flex-direction: column;
    font-weight: 400;
    font-size: 72px;
    line-height: 70.84px;
  }
  .hero-content p {
    width: 70%;
    margin: 0 auto;
  }

  .hero-content button {
    margin: 20px auto;
  }
}
@media screen and (max-width: 602px) {
  .hero-content h1 {
    font-size: 60px;
  }
  .hero-content p {
    width: 100%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 530px) {
  .hero-content h1 {
    font-size: 52px;
    line-height: 56.84px;
  }
}
@media screen and (max-width: 500px) {
  .hero-content h1 {
    font-size: 40px;
    line-height: 48.84px;
  }
  .hero-content p {
    font-size: 14px;
    line-height: 20px;
  }
}
@media screen and (max-width: 400px) {
  .hero-content h1 {
    font-size: 40px;
    line-height: 41.4px;
    /* background: #000; */
  }
  @media screen and (max-width: 300px) {
    .hero-content h1 {
      font-size: 28px;
      line-height: 31.4px;
      /* background: #000; */
    }
    .hero-content p {
      font-size: 12px;
      line-height: 20px;
    }
  }
}
