/*** colors ***/
/*** breakpoints (top-end) ***/
*,
*::before,
*::after {
  box-sizing: border-box;
}

.contactFormArea {
  display: flex;
  flex-flow: column wrap;
  align-items: center;
  justify-content: center;
  min-height: 50vh;
  width: 92%;
  margin: 40px auto 100px;
}
.contactFormArea .header {
  font-size: 16px;
  font-weight: 290;
  line-height: 1.95;
  letter-spacing: -0.2px;
  text-align: center;
}
.contactFormArea .bigCta {
  font-size: 4vw;
  text-align: center;
  font-weight: 680;
}
.contactFormArea .bigCta a {
  text-decoration: none;
}
.contactFormArea .contactForm {
  width: 100%;
  max-width: 500px;
  display: flex;
  flex-flow: column nowrap;
}
.contactFormArea .contactForm .formGroup {
  margin: 0 0 18px;
  width: 100%;
}
.contactFormArea .contactForm .formGroup label {
  display: block;
  margin-bottom: 2px;
  color: #5a6269;
}
.contactFormArea .contactForm .formGroup input, .contactFormArea .contactForm .formGroup textarea {
  font-size: inherit;
  font-weight: 380;
  letter-spacing: inherit;
  font-family: inherit;
  width: 100%;
  padding: 8px 18px;
  border-radius: 2px;
  border: 0.5px solid #23282c;
  background-color: #fff;
}
.contactFormArea .contactForm .formGroup textarea {
  overflow: auto;
  height: 100px;
}
.contactFormArea .contactForm .formGroup .select {
  width: 100%;
  border: 0.5px solid #23282c;
  border-radius: 2px;
  padding: 0.25em 0.5em;
  cursor: pointer;
  line-height: 1.1;
  background-color: #fff;
  font-size: inherit;
  font-weight: inherit;
  letter-spacing: inherit;
  display: grid;
  grid-template-areas: "select";
  align-items: center;
  position: relative;
}
.contactFormArea .contactForm .formGroup .select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background-color: transparent;
  border: none;
  padding: 0 1em 0 0;
  margin: 7px 0;
  width: 100%;
  font-family: inherit;
  font-size: inherit;
  cursor: inherit;
  line-height: inherit;
  outline: none;
  grid-area: select;
}
.contactFormArea .contactForm .formGroup .select select:focus + .focus {
  position: absolute;
  top: -1px;
  left: -1px;
  right: -1px;
  bottom: -1px;
  border: 2px solid Highlight;
  border-radius: inherit;
}
.contactFormArea .contactForm .formGroup .select::after {
  content: "";
  grid-area: select;
  width: 0.8em;
  height: 0.5em;
  background-color: #23282c;
  -webkit-clip-path: polygon(100% 0%, 0 0%, 50% 100%);
          clip-path: polygon(100% 0%, 0 0%, 50% 100%);
  justify-self: end;
}
.contactFormArea .contactForm button {
  justify-self: center;
  margin: 14px 0;
  border: none;
  background: transparent;
  font-size: 18px;
  letter-spacing: inherit;
  font-weight: 760;
  font-family: inherit;
  text-decoration: underline;
  text-decoration-thickness: 0.18em;
  text-underline-offset: 6px;
  cursor: pointer;
  transition: 300ms ease;
}
.contactFormArea .contactForm button:hover {
  text-underline-offset: 2px;
}
