/* hero */

.hero {
  background-image: linear-gradient(
      rgba(0, 0, 0, 0),
      rgba(0, 0, 0, 0.4),
      rgba(0, 0, 0, 0.8),
      rgba(0, 0, 0, 0.9)
    ),
    url("../images/people/brainstorm-on-couch.jpg");
  width: auto;
  background-size: cover;
  background-position: center;
  height: 600px;
  padding: 0px;
  color: #fff;
  display: flex;
  justify-content: center;
}

.hero h1 {
  font-size: 5rem;
  text-align: center;
  margin: 0;
}

.hero .container {
  display: flex;
  height: 95%;
  margin: 0 20px;
  flex-direction: column;
  justify-content: end;
  align-items: center;
  /* border: 1px solid white; */
}

.hero-heading {
  margin-bottom: 16px;
}

.hero-text {
  width: 100%;
  margin: 40px 0;
  font-size: large;
  font-family: var(--alt-font-family);
  text-align: center;
}

.hero-strong-text {
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  .hero {
    background-image: linear-gradient(
        rgba(0, 0, 0, 0),
        rgba(0, 0, 0, 0.5),
        rgba(0, 0, 0, 0.8),
        rgba(0, 0, 0, 0.9)
      ),
      url("../images/people/brainstorm-on-couch.jpg");

    width: auto;
    background-size: cover;
    background-position: center;
    height: 200px;
    padding: 0px;
    color: #fff;
    text-align: center;
    justify-content: center;
    align-items: center;
  }

  .hero h1 {
    font-size: 2rem;
    text-align: center;
  }

  .hero .container {
    display: flex;
    height: 95%;
    width: 75%;
    margin: 0;
    flex-direction: column;
    justify-content: end;
    align-items: center;
  }

  .hero-heading {
    margin-bottom: 0px;
  }

  .hero-text {
    margin-bottom: 20px;
    max-width: 600px;
    font-size: 14px;
    font-family: var(--alt-font-family);
    justify-content: center;
    align-items: center;
  }
}

/* form section */

.contact .container {
  display: grid;
  grid-template-columns: 33% 67%;
  gap: 40px;
}

.contact .container h2 {
  font-size: xx-large;
}

@media screen and (max-width: 768px) {
  .contact .container {
    display: flex;
    flex-wrap: wrap;
  }

  .contact .container h2 {
    font-size: xx-large;
  }
}
