@import url(/_assets/tmp/layout.css);

#section-head {
  width: 99.9%;
  margin-left: auto;
  margin-right: auto;
  margin: 2rem auto 4rem auto;
}

#directory {
  padding: .75rem 0;
}

.directory-active {
  color: var(--primary-color);
  font-weight: 600;
}

#page-title {
  font-family: Montserrat-Black, sans-serif;
  font-size: 3rem;
  margin: 2rem 0 1rem 0;
  line-height: 1;
  color: var(--primary-color);
}

#page-tagline {
  font-size: 2rem;
  font-family: Helvetica;
  font-weight: 400;
  line-height: 1.2;
  color: gray;
}

@media (max-width: 900px){
  #section-head {
    margin: 5rem auto 2rem auto;
  }
  
  #page-title {
    font-size: 2.8rem;
  }
}

/* ================================================================================================== */

#section-main {
  width: 100%;
  padding: 3rem 0;
  font-size: 1.1rem;
}

#container-main {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  overflow-x: hidden;
  position: relative;
}

#address-bar {
  width: 22.5%;
}

.address-title {
  color: var(--primary-color);
  font-weight: 600;
}

.address-desc {
  margin-bottom: 1.5rem;
}

#form {
  width: 70%;
  display: flex;
  flex-direction: column;
}

#form label {
  margin-bottom: .2rem;
}

#form input {
  margin-bottom: 1rem;
  padding: .5rem 1rem;
  font-size: 1.1rem;
  font-family: Montserrat-Regular, sans-serif;
  width: 100%;
}

#form textarea {
  margin-bottom: 2rem;
  padding: .5rem 1rem;
  font-size: 1.1rem;
  font-family: Montserrat-Regular, sans-serif;
  width: 100%;
  min-width: 100%;
  max-width: 100%;
  min-height: 17rem;
  height: 17rem;
  max-height: 50rem;
}

#submit-button {
  width: fit-content;
  padding: 10px 30px;
  cursor: pointer;
  display: block;
  font-family: Montserrat-Regular, sans-serif;
  font-size: 1.1rem;
  background-color: var(--secondary-color);
  color: white;
  border: 1px solid var(--secondary-color);
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#submit-button:hover {
  background-color: var(--primary-color);
  border: 1px solid white;
}

@media (max-width: 1050px){
  #address-bar {
    width: 0px;
    height: 0px;
    max-width: 0px;
    overflow: hidden;
  }

  #container-main {
    justify-content: flex-start;
  }

  #form {
    width: 100%;
    margin: 0 auto;
  }

  #form input, #form textarea {
    width: 100%;
  }

  #submit-button {
  width: 100%;
  }
}

/* ================================================================================================================ */

#section-closing {
  padding-bottom: 3rem;
  text-align: center;
}

#closing-statement {
  text-align: center;
  margin: 3rem auto 2rem auto;
  width: 80%;
  display: block;
}

#closing-button {
  border: 1.5px solid var(--primary-color);
  color: var(--primary-color);
  background-color: white;
  font-weight: 600;
  padding: 10px 35px;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  -ms-border-radius: 10px;
  -o-border-radius: 10px;
}

#closing-button:hover {
  background-color: var(--primary-color);
  color: white;
}