#contact .s2 h3 {
  margin-bottom: 3rem;
}
#contact .s2 .locations {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
#contact .s2 .locations .location {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  position: relative;
  height: 515px;
  text-align: center;
}
#contact .s2 .locations .location h3 {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 2rem);
  font-size: 2rem;
  line-height: 1em;
  transition: opacity 0.3s ease;
  margin: 0;
}
#contact .s2 .locations .location > div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: calc(100% - 2rem);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease;
}
#contact .s2 .locations .location > div h4 {
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 2rem;
}
#contact .s2 .locations .location > div a {
  display: inline-block;
  color: #fff;
  font-size: 1.2rem;
  line-height: 1.12em;
  margin-bottom: 1rem;
  transition: color 0.3s ease;
}
#contact .s2 .locations .location > div a:hover {
  color: #42ADFF;
}
#contact .s2 .locations .location:hover > h3:first-of-type {
  opacity: 0;
  visibility: hidden;
}
#contact .s2 .locations .location:hover > div {
  opacity: 1;
  visibility: visible;
}
#contact .s2 .locations .tn {
  background-image: url(/i/nashville-bg-img.jpg);
}
#contact .s2 .locations .tx {
  background-image: url(/i/dallas-bg-img.jpg);
}
#contact .s2 .locations .ca {
  background-image: url(/i/sherman-oaks-bg-img.jpg);
}
#contact .s3 .bg-parallax {
  background: url(/i/form-bg-img-parralax.jpg) no-repeat center/cover;
}
#contact .s3 form {
  position: relative;
  z-index: 1;
  text-align: center;
}
#contact .s3 form input.hidhp {
  display: none;
}
#contact .s3 form input {
  display: inline-block;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6rem;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: solid 1px #fff;
  padding-bottom: 23px;
  -webkit-appearance: none;
  margin-bottom: 4rem;
}
#contact .s3 form .row {
  display: -webkit-flexbox;
  display: -ms-flexbox;
  display: flex;
  align-items: flex-end;
  gap: 1rem;
}
#contact .s3 form .row input {
  width: 50%;
}
#contact .s3 form ::placeholder {
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3.5px;
}
#contact .s3 form label {
  display: block;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  color: #fff;
  text-transform: uppercase;
  letter-spacing: 3.5px;
  margin-bottom: 1rem;
}
#contact .s3 form .custom-select {
  width: 50%;
  position: relative;
  margin-bottom: 4rem;
  text-align: left;
}
#contact .s3 form .custom-select select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  width: 100%;
  background: none;
  border: solid 1px #fff;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6rem;
  color: #fff;
  background-color: transparent;
  padding: 12px;
  cursor: pointer;
  padding-right: 2rem;
}
#contact .s3 form .custom-select select option {
  color: #fff;
  background-color: #000;
}
#contact .s3 form .custom-select::after {
  content: "";
  position: absolute;
  top: 68%;
  right: 1rem;
  width: 0.6rem;
  height: 0.6rem;
  pointer-events: none;
  transform: translateY(-50%);
  padding: 3px;
  background: url(/i/svg/dropdown-icon.svg) no-repeat center/cover;
}
#contact .s3 form textarea {
  display: block;
  width: 100%;
  font-family: "Manrope", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6rem;
  color: #fff;
  background: transparent;
  border: none;
  border-bottom: solid 1px #fff;
  padding-bottom: 23px;
  margin-bottom: 4rem;
  height: 56px;
}
#contact .s3 form button {
  width: 368px;
  background: none;
  border: none;
  cursor: pointer;
  border: solid 1px rgba(255, 255, 255, 0.45);
}
#contact .s3 form button span {
  color: #fff;
  width: 100%;
}
#contact .s3 form button:hover span {
  color: #42ADFF;
}
#contact .s3 form .captcha-wrapper {
  display: flex;
  justify-content: center;
  margin-bottom: 3rem;
}
#contact .s3 .response {
  position: relative;
  top: 2rem;
  z-index: 1;
  text-align: center;
  color: #fff;
}

@media screen and (max-width: 1250px) {
  #contact .s2 .locations {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (max-width: 767px) {
  #contact .s2 .locations .location {
    height: 450px;
  }
  #contact .s2 .locations .location h3 {
    font-size: 1.8rem;
  }
  #contact .s2 .locations .location > div h4 {
    font-size: 14px;
  }
  #contact .s2 .locations .location > div a {
    font-size: 1rem;
  }
  #contact .s3 form .row {
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  #contact .s3 form .row input, #contact .s3 form .row textarea {
    margin-bottom: 2rem;
    width: 100%;
  }
  #contact .s3 form .custom-select {
    width: 100%;
    margin-bottom: 2rem;
  }
  #contact .s3 form ::placeholder, #contact .s3 form label {
    font-size: 14px;
  }
  #contact .s3 form button {
    width: 250px;
  }
}

/*# sourceMappingURL=contact-us.css.map */
