.main {
  width: 100%;
  padding-top: 7vh;
}
.title {
  width: 100%;
  height: 40vh;
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-color: rgba(0, 0, 0, 0.8);
  background-blend-mode: darken;

  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.title > h1 {
  font-size: 2em;
  text-transform: uppercase;
  font-weight: 300;

  margin-bottom: 2rem;
}

#title-link {
  font-family: "Montserrat";
  text-decoration: none;
  word-spacing: 1em;
}

#title-link > a {
  color: #ebcd1e;
}

/* content area */

.content {
  padding: 1.5em;
  height: 100%;
}

.contact-form {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 1em 0;
}

.contact-form > form {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-around;
}

.contact-form > form > input {
  width: 100%;
  height: 3em;
  margin: 0.5em 0;
  padding: 0.5em;
  color: #333;
  border: 1px #ccc solid;
  font-family: "Roboto";
}
.contact-form > form > textarea {
  width: 100%;
  margin-top: 0.5em;
  margin-bottom: 2em;
  padding: 0.5em;
  color: #ccc;
  border: 1px #ccc solid;
  font-family: "Roboto";
}
#contact-head {
  color: #666;
  text-transform: uppercase;
  font-size: 2em;
  font-weight: 100;
  text-align: left;
  margin: 1em 0;
}

.contact-info > p {
  color: #666;

  margin: 1em 0;
}

iframe {
  width: 100%;
  height: 40vh;
  border: none;
}

/* tablet */

@media only screen and (min-width: 680px) {
  #contact-head {
    font-weight: 300;
  }
}

/* desktop */
@media only screen and (min-width: 920px) {
  .content {
    width: 60%;
    height: 80vh;
    display: flex;
    justify-content: space-evenly;
    align-content: center;
    margin: auto;
    padding: 5% 0;
  }

  #contact-head {
    font-weight: 300;
    letter-spacing: 2px;
  }

  .contact-form {
    width: 50%;
    height: max-content;
    padding: 0 1em;
    font-weight: 700;
  }

  .contact-info {
    width: 50%;
    height: max-content;

    align-items: center;
    padding: 0 5em;
  }

  #btn {
    width: 10em;
  }

  .contact-info > p {
    margin: 2em 0;
  }

  .map-location {
    height: 50vh;
  }
}
