h1 {
  color: white;
  font-size: 2.5em;
}

h2 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 1.6em;
}

#form-container h2 {
  text-align: center;
}

#showcase {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  height: 50vh;

  display: flex;
  align-items: center;
  justify-content: center;
}

#showcase-overlay {
  width: 100%;
  height: 50vh;
  position: absolute;
  background: #333;
  opacity: 0.7;
  z-index: 1;
}

#showcase-content {
  position: relative;
  z-index: 2;

  display: grid;
  justify-content: center;
}

.contact-card {
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 32px 32px;

  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;

  margin: 0 20%;
  margin-top: 50px;
}

.contact-card:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.contact-card#team {
  padding: 0 32px 50px 32px;
}

.brand {
  padding: 30px;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand img {
  width: 350px;
  height: auto;
}

.team-img {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 180px;
  width: 180px;
  margin-bottom: 30px;
  justify-self: center;
  border-radius: 50%;
}

.contact-data {
  justify-self: center;
  align-self: center;
  display: grid;
}

.contact-data h2 {
  font-size: 1.6em;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 1.2;
  margin: 0;
}

.contact-data p {
  margin: 0;
}

.contact-data a,
#form-container a {
  color: rgb(33, 37, 41);
}
.contact-data a:hover,
#form-container a:hover {
  color: rgba(33, 37, 41, 0.8);
  text-decoration: none;
  transition-duration: 0.5s;
}

.contact-card .underline {
  width: 70%;
  height: 2px;
  background-color: #000000;
  margin-top: 25px;
}

.owner {
  margin-top: 50px;
}

#form-container {
  background-color: #ffffff;
  border: 1px solid #000000;
  border-radius: 5px;
  padding: 64px;

  margin: 50px 20%;
}

#form-container h2 {
  text-align: center;
}

#form-container h2 {
  line-height: 1.2;
  letter-spacing: 1px;
  margin-bottom: 0.5rem;
}

#form-container:hover {
  box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
}

.form-top {
  margin-top: 32px;
}

#button-container {
  display: grid;
}

#form-container .jbtn {
  justify-self: center;
  margin-top: 30px;
  font-weight: 600;
  width: 200px;
}

/* .btn {
  justify-self: center;
  width: 40%;
  font-weight: 600;
  font-size: 1em;
  letter-spacing: 1px;
  text-decoration: none;
  color: #000000;
  background: #ffffff;
  border: #000000 2px solid;
  padding: 8px 16px;
  border-radius: 0;
  margin-top: 30px;
  text-transform: uppercase;
}
.btn:hover {
  border: #000000 2px solid;
  background: black;
  color: white;
} */

#policy {
  height: 74px;
  display: flex;
  align-items: center;
}

/*  ---  Media Queries  ---  */
@media (max-width: 1200px) {
  .contact-card#company {
    grid-template-columns: 1fr;
  }
  .brand {
    min-height: 25vh;
  }
  .corp {
    margin-top: 24px;
  }
}
/*  ---  Tablet  ---  */
@media (max-width: 900px) {
  .contact-card {
    grid-template-columns: 1fr;
    margin: 0 10%;
    margin-top: 50px;
  }

  .owner {
    margin-bottom: 24px;
  }

  #form-container {
    padding: 32px;
    margin: 50px 10%;
  }
}

/*  ---  Smartphone  ---  */
@media (max-width: 480px) {
  .contact-card {
    margin: 0 15px;
    margin-top: 50px;
    padding: 15px;
  }

  .brand {
    padding: 0;
  }

  .brand img {
    width: 325px;
  }

  .owner {
    margin-bottom: 50px;
  }

  #form-container {
    margin: 50px 15px;
    padding: 32px 0;
  }
}
