html,
body {
  font-family: "Montserrat", sans-serif;
  font-weight: 200;
  overflow-x: hidden;
}

a {
  color: #ef7b10;
}
a:hover {
  color: #fd9031;
}

.flash {
  text-align: center;
  font-size: 1.5em;
  margin: 0 0 1.5em 0;
  padding: 1em;
  background-color: lightgreen;
}

.logo {
  position: relative;
  width: 100%;
  height: 7vh;
  display: flex;
  justify-content: start;
  margin-top: 0.5rem;
}
@media (min-width: 751px) and (max-width: 1200px) {
  .logo {
    height: 5vh;
  }
}
@media (max-width: 750px) {
  .logo {
    height: 4vh;
    margin-top: 0.3rem;
    margin-bottom: 1rem;
  }
}
.logo img {
  width: auto;
  height: 100%;
  margin-left: 0.6rem;
}
@media (max-width: 750px) {
  .logo img {
    margin-left: 0.3rem;
  }
}

.banner {
  position: relative;
  box-sizing: border-box;
  width: 100%;
  display: flex;
  justify-content: space-around;
  margin-top: 0.6rem;
}
@media (min-width: 1201px) {
  .banner {
    height: 80vh;
  }
}
@media (min-width: 751px) and (max-width: 1200px) {
  .banner {
    height: 75vh;
  }
}
@media (max-width: 750px) {
  .banner {
    height: auto;
    flex-direction: column;
    align-items: center;
  }
}
.banner:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 76%;
  background: #e9f6fb;
  border-radius: 0 30% 30% 0;
  z-index: -1;
}
@media (min-width: 1201px) {
  .banner:before {
    height: 80vh;
  }
}
@media (min-width: 751px) and (max-width: 1200px) {
  .banner:before {
    height: 75vh;
  }
}
@media (max-width: 750px) {
  .banner:before {
    height: 650px;
    width: 100%;
    border-radius: 10% 10% 10% 10%;
    -webkit-border-radius: 10% 10% 10% 10%;
    -moz-border-radius: 10% 10% 10% 10%;
    -ms-border-radius: 10% 10% 10% 10%;
    -o-border-radius: 10% 10% 10% 10%;
  }
}
.banner .banner__text-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  width: 40%;
}
@media (min-width: 1201px) {
  .banner .banner__text-wrapper {
    margin-left: 5%;
  }
}
@media (min-width: 751px) and (max-width: 1200px) {
  .banner .banner__text-wrapper {
    margin-left: 2%;
    width: 40%;
  }
}
@media (max-width: 750px) {
  .banner .banner__text-wrapper {
    width: 80%;
    order: 2;
  }
}
.banner .banner__text-wrapper .banner__text-main {
  color: #ef7b10;
  font-weight: 700;
  margin-bottom: 3rem;
}
@media (min-width: 1201px) {
  .banner .banner__text-wrapper .banner__text-main {
    font-size: 3rem;
  }
}
@media (min-width: 751px) and (max-width: 1200px) {
  .banner .banner__text-wrapper .banner__text-main {
    font-size: 2.2rem;
    margin-bottom: 2.3rem;
  }
}
@media (max-width: 750px) {
  .banner .banner__text-wrapper .banner__text-main {
    font-size: 2rem;
    text-align: center;
  }
}
@media (min-width: 1201px) {
  .banner .banner__text-wrapper .banner__text-sub {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    font-weight: 400;
    margin-bottom: 3rem;
  }
}
@media (min-width: 751px) and (max-width: 1200px) {
  .banner .banner__text-wrapper .banner__text-sub {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    font-weight: 400;
    margin-bottom: 2.3rem;
  }
}
@media (max-width: 750px) {
  .banner .banner__text-wrapper .banner__text-sub {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    font-weight: 400;
    margin-bottom: 2rem;
    text-align: center;
  }
}
@media (min-width: 1201px) {
  .banner .banner__text-wrapper .banner__text-sub--bold {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
  }
}
@media (min-width: 751px) and (max-width: 1200px) {
  .banner .banner__text-wrapper .banner__text-sub--bold {
    font-size: 1rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
  }
}
@media (max-width: 750px) {
  .banner .banner__text-wrapper .banner__text-sub--bold {
    font-size: 0.8rem;
    margin-bottom: 0.6rem;
    font-weight: 600;
    text-align: center;
    margin-bottom: 2rem;
  }
}
.banner .banner__image-wrapper {
  height: 100%;
  display: flex;
  align-items: center;
}
@media (min-width: 1201px) {
  .banner .banner__image-wrapper {
    width: 50%;
  }
}
@media (min-width: 751px) and (max-width: 1200px) {
  .banner .banner__image-wrapper {
    width: 60%;
  }
}
@media (max-width: 750px) {
  .banner .banner__image-wrapper {
    width: auto;
    height: 40%;
    order: 1;
  }
}
.banner .banner__image-wrapper img {
  width: 100%;
  object-fit: cover;
}

.form {
  width: 100%;
  height: auto;
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
  margin-bottom: 2rem;
}
@media (max-width: 750px) {
  .form {
    height: auto;
    margin-top: 3.5rem;
  }
}
.form .form__wrapper {
  height: 100%;
  padding: 0.2rem;
  background-color: #f7f7f7;
  border-radius: 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 751px) and (max-width: 1200px) {
  .form .form__wrapper {
    width: 80%;
  }
}
@media (min-width: 1201px) {
  .form .form__wrapper {
    width: 45%;
  }
}
@media (max-width: 750px) {
  .form .form__wrapper {
    width: 99%;
  }
}
.form .form__wrapper .form__header {
  text-align: center;
  padding: 0 2rem;
  margin-bottom: 0.9rem;
}
@media (min-width: 1201px) {
  .form .form__wrapper .form__header {
    font-size: 2rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
  }
}
@media (min-width: 751px) and (max-width: 1200px) {
  .form .form__wrapper .form__header {
    font-size: 1.5rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
  }
}
@media (max-width: 750px) {
  .form .form__wrapper .form__header {
    font-size: 1.2rem;
    margin-bottom: 0.6rem;
    font-weight: 700;
    padding: 0 0.5rem;
  }
}
.form .form__wrapper .form__subheader {
  font-size: 0.9rem;
  margin-bottom: 0.6rem;
  font-weight: 300;
  padding: 0 1.5rem;
  text-align: center;
}
@media (max-width: 750px) {
  .form .form__wrapper .form__subheader {
    font-size: 0.7rem;
    margin-bottom: 0.6rem;
    font-weight: 300;
    padding: 0 0.5rem;
  }
}
.form .form__wrapper .form__body {
  width: 90%;
  height: 100%;
  margin-top: 2rem;
}
@media (max-width: 750px) {
  .form .form__wrapper .form__body {
    width: 95%;
  }
}
.form .form__wrapper .form__body label {
  font-size: 1rem;
  width: 35%;
  font-weight: 400;
}
@media (max-width: 750px) {
  .form .form__wrapper .form__body label {
    font-size: 0.7rem;
  }
}
.form .form__wrapper .form__body label:last-child {
  font-size: 0.2rem;
}
.form .form__wrapper .form__body input {
  height: 2rem;
  padding-left: 0.4rem;
  width: 65%;
  border-radius: 7px;
  border: 1px solid darkgrey;
}
.form .form__wrapper .form__body .form__row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-bottom: 2.5rem;
}
@media (max-width: 750px) {
  .form .form__wrapper .form__body .form__row:nth-child(-n+2) {
    flex-direction: column;
  }
  .form .form__wrapper .form__body .form__row:nth-child(-n+2) input {
    width: 99%;
  }
  .form .form__wrapper .form__body .form__row:nth-child(-n+2) label {
    width: 99%;
    text-align: center;
    margin-bottom: 0.4rem;
  }
}
.form .form__wrapper .form__body .form__radio {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: space-around;
}
.form .form__wrapper .form__body .form__radio input {
  width: 25px;
  height: 25px;
  margin: 0 0.8rem 0 0;
  padding: 0;
  cursor: pointer;
}
.form .form__wrapper .form__body .form__radio label {
  font-size: 1rem;
  font-weight: 400;
}
@media (max-width: 750px) {
  .form .form__wrapper .form__body .form__radio label {
    font-size: 0.7rem;
  }
}
.form .form__wrapper .form__body .form__radio-option {
  display: flex;
  align-items: center;
}
.form .form__wrapper .form__body .form__row--gdpr {
  position: relative;
  width: 100%;
  height: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form .form__wrapper .form__body .form__row--gdpr div {
  max-height: 100%;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  white-space: nowrap;
}
.form .form__wrapper .form__body .form__row--gdpr div input {
  width: 15px;
  height: 15px;
  margin-right: 0.3rem;
}
.form .form__wrapper .form__body .form__row--gdpr div label {
  width: 90%;
  height: 100%;
  font-size: 0.7rem;
}
@media (max-width: 750px) {
  .form .form__wrapper .form__body .form__row--gdpr div label {
    font-size: 0.55rem;
  }
}
.form .form__wrapper .form__body .btn-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  margin-top: 3rem;
  padding-bottom: 2rem;
}
.form .form__wrapper .form__body .btn-wrapper .btn-wrapper__btn {
  background-color: #ef7b10;
  color: white;
  font-weight: 600;
  font-size: 1.1rem;
  border: none;
  padding: 0.8rem 1.8rem;
  border-radius: 10px;
  transition-duration: 200ms;
  cursor: pointer;
}
@media (max-width: 750px) {
  .form .form__wrapper .form__body .btn-wrapper .btn-wrapper__btn {
    padding: 0.5rem 1.2rem;
  }
}
.form .form__wrapper .form__body .btn-wrapper .btn-wrapper__btn:hover {
  background-color: #fd9031;
}
.form .form__wrapper .form__body .btn-wrapper .btn-wrapper__btn:active {
  background-color: #cc6a0e;
}

.footer {
  width: 100%;
  height: 5vh;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 300;
  padding-bottom: 0.6rem;
}
@media (max-width: 750px) {
  .footer {
    font-size: 0.5rem;
  }
}
.footer .footer__wrapper {
  height: 100%;
  width: 90%;
  display: flex;
  align-items: center;
  padding-left: 1rem;
}
@media (max-width: 750px) {
  .footer .footer__wrapper {
    width: 90%;
    padding-left: 0rem;
    flex-direction: column-reverse;
  }
}
@media (min-width: 1201px) {
  .footer .footer__wrapper {
    width: 40%;
  }
}
.footer .footer__wrapper .footer__logo img {
  width: 60px;
  height: auto;
}
.footer .footer__wrapper .footer__items {
  width: 70%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-left: 1.6rem;
}
@media (min-width: 751px) and (max-width: 1200px) {
  .footer .footer__wrapper .footer__items {
    width: 80%;
  }
}
@media (max-width: 750px) {
  .footer .footer__wrapper .footer__items {
    width: 99%;
    padding-left: 0;
    padding-bottom: 0.5rem;
  }
}
.footer .footer__wrapper .footer__items .footer__link {
  font-weight: 600;
}

/*# sourceMappingURL=styles.css.map */
