






/*------------------------------------*\
  NORMALIZE
\*------------------------------------*/


html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
}
body {
  margin: 0;
}
main {
  display: block;
}
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}
hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
}
pre {
  font-family: monospace, monospace;
  font-size: 1em;
}
a {
  background-color: transparent;
}
abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}
b, strong {
  font-weight: 700;
}
code, kbd, samp {
  font-family: monospace, monospace;
  font-size: 1em;
}
small {
  font-size: 80%;
}
sub, sup {
  position: relative;
  font-size: 50%;
  line-height: 0;
  vertical-align: baseline;
}
sub {
  bottom: -0.25em;
}
sup {
  top: -0.85em;
}
img {
  display: block;
  border-style: none;
}
button, input, optgroup, select, textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}
button, input {
  overflow: visible;
}
button, select {
  text-transform: none;
}
button, [type="button"], [type="reset"], [type="submit"] {
  -webkit-appearance: button;
}
button::-moz-focus-inner, [type="button"]::-moz-focus-inner, 
[type="reset"]::-moz-focus-inner, [type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}
button:-moz-focusring, [type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring, [type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText;
}
fieldset {
  padding: 0.35em 0.75em 0.625em;
}
legend {
  box-sizing: border-box;
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}
progress {
  vertical-align: baseline;
}
textarea {
  overflow: auto;
}
[type="checkbox"], [type="radio"] {
  box-sizing: border-box;
  padding: 0;
}
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto;
}
[type="search"] {
  -webkit-appearance: textfield;
  outline-offset: -2px;
}
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none;
}
::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}
details {
  display: block;
}
summary {
  display: list-item;
}
template {
  display: none;
}
[hidden] {
  display: none;
}





/*------------------------------------*\
  RESET
\*------------------------------------*/


*, *::before, *::after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
button {
  color: inherit;
  background-color: transparent;
  padding: 0;
  border-width: 0;
  cursor: pointer;
}
img {
  width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
input::-moz-focus-inner {
  padding: 0;
  border: 0;
  margin: 0;
}
ul, ol, dd {
  list-style: none;
  padding: 0;
  margin: 0;
}
h1, h2, h3, h4, h5, h6 {
  font-size: inherit; 
  font-weight: inherit;
  margin: 0; 
}
p {
  margin: 0;
}

input[type=email],
input[type=phone],
input[type=text],
input[type=radio],
input[type=checkbox],
textarea,
select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

a[href^="tel"] {
  color: inherit;
}

.grecaptcha-badge {
  visibility: hidden;
}











/*------------------------------------*\
  #GLOBAL
\*------------------------------------*/


/*

FONTS

font-family: 'Foundry Sterling W01', Arial, sans-serif;

font-weight: 400;
font-weight: 500;
font-weight: 600;
font-weight: 700;

COLORS

Light Gray: #f2f2f2;
Gray: #55565a;

Light Blue: #edf5fb;
Blue: #00a0dd;
Dark Blue: #003764;

Light Green: #6cc04a;
Green: #026937;

Orange: #e24301;

*/


:root {
  --light-gray: #f2f2f2;
  --gray: #55565a;

  --light-blue: #edf5fb;
  --blue: #00a0dd;
  --dark-blue: #003764;

  --light-green: #6cc04a;
  --green: #026937;

  --orange: #e24301;
}





/*------------------------------------*\
  #LAYOUT
\*------------------------------------*/


/*
html {
  scroll-behavior: smooth;
}
*/

.container {
  position: relative;
  width: 90%;
  max-width: 1250px;
  margin-left: auto;
  margin-right: auto;
}

section {
  margin: 6em 0;
}

[class*="section--"] {
  padding: 6em 0;
  margin: 0;
}

.section--gray {
  background: var(--light-gray);
}
.section--light-blue {
  background: var(--light-blue);
}
.section--blue {
  background: var(--blue);
}
.section--dark-blue {
  background: var(--dark-blue);
}
.section--green {
  background: var(--light-green);
}

section.section--blue h2,
section.section--blue p,
section.section--dark-blue h2,
section.section--dark-blue p,
section.section--green h2,
section.section--green p {
  color: #fff;
}

/*
.anchor {
  scroll-margin-top: 6em;
}
*/
.anchor {
  position: relative;
  display: block;
  top: -6em;
  visibility: hidden;
}
.cta + .anchor,
.text + .anchor,
.page--theme-secondary .faq + .anchor {
  top: -12em;
}


@media only screen and (max-width: 1300px) {
  section {
    margin: 6em 0;
  }
  [class*="section--"] {
    padding: 6em 0;
  }
  /*
  .anchor {
    scroll-margin-top: 6em;
  }
  */
}

@media only screen and (max-width: 1100px) {
  section {
    margin: 5em 0;
  }
  [class*="section--"] {
    padding: 5em 0;
  }
  /*
  .anchor {
    scroll-margin-top: 5em;
  }
  */
  .anchor {
    top: -5em;
  }
  .cta + .anchor,
  .text + .anchor,
  .page--theme-secondary .faq + .anchor {
    top: -10em;
  }
}

@media only screen and (max-width: 900px) {
  section {
    margin: 4em 0;
  }
  [class*="section--"] {
    padding: 4em 0;
  }
  /*
  .anchor {
    scroll-margin-top: 4em;
  }
  */
  .anchor {
    top: -4em;
  }
  .cta + .anchor,
  .text + .anchor,
  .page--theme-secondary .faq + .anchor {
    top: -8em;
  }
}

@media only screen and (max-width: 750px) {
  section {
    margin: 3em 0;
  }
  [class*="section--"] {
    padding: 3em 0;
  }
  /*
  .anchor {
    scroll-margin-top: 3em;
  }
  */
  .anchor {
    top: -3em;
  }
  .cta + .anchor,
  .text + .anchor,
  .page--theme-secondary .faq + .anchor {
    top: -6em;
  }
}

@media only screen and (max-width: 500px) {
  .container {
    width: 84%;
  }
}





/*------------------------------------*\
  #HEADER
\*------------------------------------*/


.page-head {
  -webkit-position: sticky;
          position: sticky;
  width: 100%;
  top: 0;
  background: #fff;
  -webkit-transition: box-shadow 0.5s ease;
          transition: box-shadow 0.5s ease;
  z-index: 99999;
}

.page-head .container {
  max-width: 100%;
}

.page-head__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1.4em 0;
}

.page-head__logo {
  width: 220px;
}
.page--theme-standard-logo .page-head__logo {
  width: 350px;
}

.page-head__cta,
.cta__phone {
  display: flex;
  align-items: center;
}

.cta__phone {
  margin-right: 2em;
}
.cta__phone span,
.cta__phone a {
  display: block;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
}
.cta__phone span {
  padding-right: 0.4em;
}
.cta__phone a {
  color: var(--dark-blue);
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}
.cta__phone a:hover {
  color: var(--blue);
}

.shadow {
  box-shadow: 0 0 10px rgba(85,86,90, 0.4);
}


@media only screen and (max-width: 1100px) {
  .page-head .container {
    width: 100%;
  }
  .page-head__inner {
    padding: 1.2em;
  }
  .page-head__logo {
    width: 200px;
  }
  .page--theme-standard-logo .page-head__logo {
    width: 320px;
  }
  .cta__phone {
    margin-right: 1.2em;
  }
  .cta__phone span,
  .cta__phone a {
    font-size: 0.95em;
  }
}

@media only screen and (max-width: 900px) {
  .page-head__logo {
    width: 180px;
  }
  .page--theme-standard-logo .page-head__logo {
    width: 290px;
  }
  .cta__phone span,
  .cta__phone a {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 750px) {
  .page-head__inner {
    padding: 1em;
  }
  .page-head__logo {
    width: 160px;
  }
  .page--theme-standard-logo .page-head__logo {
    width: 260px;
  }
  .cta__phone {
    margin-right: 1em;
  }
  .cta__phone span,
  .cta__phone a {
    font-size: 0.85em;
  }
}

@media only screen and (max-width: 650px) {
  .cta__phone span {
    display: none;
  }
  .page--theme-standard-logo .page-head__logo {
    width: 230px;
  }
}

@media only screen and (max-width: 550px) {
  .cta__phone {
    display: none;
  }
  .page--theme-standard-logo .page-head__logo {
    width: 200px;
  }
}

@media only screen and (max-width: 400px) {
  .page-head .button {
    font-size: 0.8em;
  }
  .page--theme-standard-logo .page-head__logo {
    width: 180px;
  }
}





/*------------------------------------*\
  #TYPE
\*------------------------------------*/


body {
  font-size: 100%;
  font-family: 'Foundry Sterling W01', Arial, sans-serif;
  font-weight: 400;
  color: var(--gray);
}

.page-content h1 {
  font-size: 3em;
  font-weight: 700;
  line-height: 1.2;
  color: #fff;
  margin-bottom: 0.4em;
}
.page-content h2 {
  font-size: 2.2em;
  font-weight: 700;
  line-height: 1.2;
  color: var(--blue);
  margin-bottom: 0.5em;
}
.page-content h3 {
  font-size: 1.6em;
  font-weight: 600;
  line-height: 1.4;
  color: var(--dark-blue);
  margin-bottom: 0.7em;
}
.page-content h4 {
  font-size: 1.4em;
  font-weight: 500;
  line-height: 1.4;
  color: var(--blue);
  margin-bottom: 0.4em;
}
.page-content h5,
.page-content h6 {
  font-size: 1.3em;
  font-weight: 600;
  line-height: 1.4;
  margin-bottom: 0.2em;
}
.page-content h6 {
  color: var(--blue);
  margin-bottom: 0.6em;
}
.text h6 {
  color: var(--orange);
  margin-bottom: 0.2em;
}

.page-content p,
.page-content li {
  font-size: 1.2em;
  line-height: 1.7;
}
.page-content p {
  margin-bottom: 1em;
}
.page-content p a,
.page-content li a {
  font-weight: 600;
  text-decoration: underline;
  color: var(--dark-blue);
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}
.page-content p a:hover,
.page-content li a {
  color: var(--blue);
}

.page-content ul,
.page-content ol {
  margin: 0 0 1em 0;
}
.page-content li {
  position: relative;
  padding-left: 1.5em;
  margin: 0.4em 0;
}
.page-content li::before {
  position: absolute;
  content: '\2022';
  font-weight: 700;
  top: -0.15em;
  left: 0;
  font-size: 1.2em;
  line-height: 1.7;
  color: var(--blue);
}
.page-content ol {
  counter-reset: numbers;
}
.page-content ol li {
  padding-left: 2em;
}
.page-content ol li::before {
  content: counter(numbers, decimal) '.';
  counter-increment: numbers;
  top: -0.05em;
  font-size: 1.1em;
}


@media only screen and (max-width: 1300px) {
  .page-content h1 {
    font-size: 2.8em;
  }
}

@media only screen and (max-width: 1200px) {
  .page-content h1 {
    font-size: 2.6em;
  }
  .page-content h2 {
    font-size: 2em;
  }
}

@media only screen and (max-width: 1100px) {
  .page-content h1 {
    font-size: 2.4em;
  }
  .page-content h2 {
    font-size: 1.8em;
  }
  .page-content h3 {
    font-size: 1.5em;
  }
  .page-content h4 {
    font-size: 1.3em;
  }
  .page-content h5,
  .page-content h6 {
    font-size: 1.2em;
  }
  .page-content p,
  .page-content li {
    font-size: 1.1em;
  }
  .page-content li::before {
    top: -0.1em;
    font-size: 1.1em;
  }
  .page-content ol li {
    padding-left: 1.5em;
  }
  .page-content ol li::before {
    top: -0.05em;
    font-size: 1.05em;
  }
}

@media only screen and (max-width: 900px) {
  .page-content h1 {
    font-size: 2.1em;
  }
  .page-content h2 {
    font-size: 1.7em;
  }
  .page-content h3 {
    font-size: 1.4em;
  }
  .page-content p,
  .page-content li {
    font-size: 1.05em;
  }
  .page-content li::before {
    top: -0.05em;
    font-size: 1.05em;
  }
  .page-content ol li::before {
    top: 0.025em;
    font-size: 1em;
  }
}

@media only screen and (max-width: 750px) {
  .page-content h1 {
    font-size: 1.9em;
  }
  .page-content h2 {
    font-size: 1.6em;
  }
  .page-content h3 {
    font-size: 1.3em;
  }
  .page-content h4 {
    font-size: 1.2em;
  }
  .page-content h5,
  .page-content h6 {
    font-size: 1.1em;
  }
  .page-content p,
  .page-content li {
    font-size: 1em;
    line-height: 1.6;
  }
  .page-content li {
    padding-left: 1.4em;
    margin: 0.3em 0;
  }
  .page-content li::before {
    top: 0;
    font-size: 1em;
    line-height: 1.6;
  }
}

@media only screen and (max-width: 500px) {
  .page-content h1 {
    font-size: 1.7em;
  }
  .page-content h2 {
    font-size: 1.5em;
  }
}










/*------------------------------------*\
  #COMMON
\*------------------------------------*/





/*------------------------------------*\
  #BUTTONS
\*------------------------------------*/


.button {
  display: inline-block;
  font-size: 1em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: center;
  white-space: nowrap;
  padding: 1em 1.2em;
  background: var(--orange);
  cursor: pointer;
  -webkit-transition: background 0.5s ease, color 0.5s ease;
          transition: background 0.5s ease, color 0.5s ease;
}
.button:hover {
  background: #ce3c00;
}

.button + .button {
  margin-left: 1em;
}

.button--dark-blue {
  background: var(--dark-blue);
}
.button--dark-blue:hover {
  background: #002e53;
}

.button--blue {
  background: var(--blue);
}
.button--blue:hover {
  background: #0090c7;
}

.button--green {
  background: var(--light-green);
}
.button--green:hover {
  background: #60ac41;
}


@media only screen and (max-width: 1100px) {
  .button {
    font-size: 0.95em;
    padding: 1em 1.1em;
  }
}

@media only screen and (max-width: 900px) {
  .button {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 750px) {
  .button {
    font-size: 0.85em;
    padding: 1em;
  }
}






/*------------------------------------*\
  #FORM
\*------------------------------------*/


.form {
  background: var(--light-gray);
  padding: 7em 0;
  margin: 0;
}

.form__inner {
  display: flex;
  justify-content: space-between;
}

.form__content {
  width: 35%;
  margin-top: 3em;
}
.form__content h2 {
  color: var(--dark-blue);
}
.form__content .disclaimer {
  margin-top: 1.5em;
}
.form__content .disclaimer p {
  font-size: 90%;
  margin-bottom: 0.6em;
}

.form__wrap {
  width: 45%;
}
.form__wrap p {
  display: none;
  font-size: 1em;
  line-height: 1.6;
  text-align: center;
  padding: 0 2em;
  margin: 2em 0 0;
}

.form__wrap form {
  width: 100%;
  background: #fff;
  padding: 3em;
  border-radius: 12px;
}

.form__wrap label {
  display: block;
  font-size: 1em;
  font-weight: 700;
  line-height: 1.3;
  color: var(--dark-blue);
  margin-bottom: 0.8em;
}

.form__wrap input,
.form__wrap textarea,
.form__wrap select {
  display: block;
  width: 100%;
  font-family: 'Foundry Sterling W01', Arial, sans-serif;
  font-size: 1.1em;
  font-weight: 500;
  line-height: 1.3;
  color: var(--gray);
  background: #fff;
  padding: 0.8em 1em;
  border: 2px solid #e6e6e6;
  border-radius: 8px;
  margin-bottom: 1.2em;
  -webkit-transition: border-color 0.5s ease;
          transition: border-color 0.5s ease;
}
.form__wrap textarea {
  resize: vertical;
}
.form__wrap input:focus,
.form__wrap textarea:focus,
.form__wrap select:focus {
  outline: 0;
  border-color: var(--blue);
}

::-webkit-input-placeholder {
  color: var(--gray);
}
::-moz-placeholder { 
  color: var(--gray);
  opacity: 1;
}
:-ms-input-placeholder { 
  color: var(--gray);
}
::-ms-input-placeholder { 
  color: var(--gray);
}
::placeholder { 
  color: var(--gray);
}


.select {
  position: relative;
  width: 100%;
  margin-bottom: 1.2em;
}
.select::after {
  position: absolute;
  content: '';
  width: 10px;
  height: 10px;
  top: 1.3em;
  right: 1.3em;
  border: solid var(--gray);
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  pointer-events: none;
}
.select select {
  padding-right: 2.6em;
  margin: 0;
  cursor: pointer;
}

.ah-form select {
  padding-right: 2.6em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='444.819' height='444.819' fill='%2355565a'%3E%3Cpath d='M434.252 114.203l-21.409-21.416c-7.419-7.04-16.084-10.561-25.975-10.561-10.095 0-18.657 3.521-25.7 10.561L222.41 231.549 83.653 92.791c-7.042-7.04-15.606-10.561-25.697-10.561-9.896 0-18.559 3.521-25.979 10.561l-21.128 21.416C3.615 121.436 0 130.099 0 140.188c0 10.277 3.619 18.842 10.848 25.693l185.864 185.865c6.855 7.23 15.416 10.848 25.697 10.848 10.088 0 18.75-3.617 25.977-10.848l185.865-185.865c7.043-7.044 10.567-15.608 10.567-25.693.001-9.901-3.523-18.559-10.566-25.985z'/%3E%3C/svg%3E");
  background-repeat: no-repeat no-repeat;
  background-position: right 1em top 50%, 0 0;
  background-size: 0.8em auto, 100%;
  cursor: pointer;
}

.form__wrap input[type=submit],
.form__wrap input[type=button] {
  display: block;
  width: 100%;
  font-size: 1.1em;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  padding: 1em 1.2em;
  background: var(--orange);
  border: none;
  border-radius: 8px;
  margin: 1.5em 0 0;
  cursor: pointer;
  -webkit-transition: background 0.5s ease, color 0.5s ease;
          transition: background 0.5s ease, color 0.5s ease;
}
.form__wrap input[type=submit]:hover,
.form__wrap input[type=button]:hover {
  background: #ce3c00;
}

.ah-submit {
  position: relative;
}
.ah-submit--loading::after {
  position: absolute;
  display: block;
  content: '';
  width: 1.8em;
  height: 1.8em;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border: 4px solid transparent;
  border-right-color: #fff;
  border-radius: 50%;
  margin: auto;
  opacity: 0;
  animation: button--animate 0.8s linear infinite;
}
.ah-submit.ah-submit--loading::after {
  opacity: 1;
}
.ah-submit--loading input[type=submit] {
  color: transparent;
}

@keyframes button--animate {
  from {
    transform: rotate(0);
  }
  to {
    transform: rotate(360deg);
  }
}

.form--dark-blue {
  background: var(--dark-blue);
}
.form--dark-blue h2,
.form--dark-blue p {
  color: #fff;
}
.form--dark-blue .form__wrap label {
  color: var(--gray);
}

.form--center .form__inner {
  display: block;
}
.form--center .form__content {
  width: 100%;
  max-width: 900px;
  text-align: center;
  margin: 0 auto 4em;
}
.form--center .form__content h2 {
  margin: 0;
}
.form--center .form__content p {
  display: none;
}
.form--center .form__wrap {
  width: 100%;
  max-width: 600px;
  margin: 0 auto;
}
.form--center .form__wrap p {
  display: block;
  margin: 3em 0 0;
  padding: 0 3em;
}


@media only screen and (max-width: 1300px) {
  .form {
    padding: 6em 0;
  }
  .form__content {
    width: 40%;
  }
  .form__wrap {
    width: 50%;
  }
}

@media only screen and (max-width: 1100px) {
  .form {
    padding: 5em 0;
  }
  .form__content {
    margin-top: 2.5em;
  }
  .form__wrap {
    width: 52%;
  }
  .form__wrap form {
    padding: 2.5em;
  }
  .form__wrap label {
    font-size: 0.95em;
  }
  .form__wrap input,
  .form__wrap select,
  .form__wrap input[type=submit],
  .form__wrap input[type=button] {
    font-size: 1.05em;
  }
  .select::after {
    width: 9px;
    height: 9px;
  }
  .form--center .form__content {
    max-width: 850px;
    margin: 0 auto 3.5em;
  }
  .form--center .form__wrap {
    max-width: 550px;
  }
  .form--center .form__wrap p {
    margin: 2.5em 0 0;
    padding: 0 2.5em;
  }
}

@media only screen and (max-width: 900px) {
  .form {
    padding: 4em 0;
  }
  .form__inner {
    display: block;
  }
  .form__content,
  .form--center .form__content {
    width: 100%;
    max-width: 600px;
    text-align: center;
    margin: 0 auto 3em;
  }
  .form__wrap {
    width: 100%;
    max-width: 500px;
    margin: 0 auto;
  }
  .form__wrap form {
    padding: 2em;
  }
  .form__wrap p {
    display: block;
    font-size: 0.95em;
    line-height: 1.5;
  }
  .form--center .form__wrap {
    max-width: 500px;
  }
  .form--center .form__wrap p {
    margin: 2em 0 0;
    padding: 0 2em;
  }
}

@media only screen and (max-width: 750px) {
  .form {
    padding: 3em 0;
  }
  .form__wrap label {
    font-size: 0.9em;
  }
  .form__wrap input,
  .form__wrap select,
  .form__wrap input[type=submit],
  .form__wrap input[type=button] {
    font-size: 1em;
  }
  .select::after {
    width: 9px;
    height: 9px;
    top: 1.25em;
    right: 1.25em;
  }
  .ah-form select {
    background-size: 0.75em auto, 100%;
  }
  .form__wrap p {
    font-size: 0.9em;
  }
  .ah-submit--loading::after {
    width: 1.5em;
    height: 1.5em;
    border: 3px solid transparent;
    border-right-color: #fff;
  }
}

@media only screen and (max-width: 500px) {
  .form,
  .form--dark-blue {
    background: #fff;
    padding: 3em 8%;
  }
  .form .container {
    width: 100%;
  }
  .form__content,
  .form__wrap,
  .form--center .form__content {
    width: 100%;
    max-width: 100%;
  }
  .form__content,
  .form--center .form__content {
    text-align: left;
    margin: 0 0 2em;
  }
  .form__content h2 {
    color: var(--dark-blue);
  }
  .form__wrap {
    background: #fff;
  }
  .form__wrap form {
    padding: 0;
    border-radius: 0;
  }
  .form__wrap p,
  .form--center .form__wrap p {
    color: var(--gray);
    text-align: left;
    padding: 0;
    margin-top: 1.5em;
  }
}





/*------------------------------------*\
  #SWITCH
\*------------------------------------*/


.switch {
  position: relative;
  display: block;
  width: 60px;
  height: 30px;
}
.switch__input { 
  width: 0;
  height: 0;
  opacity: 0;
}
.switch__slider {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #e6e6e6;
  border-radius: 20px;
  -webkit-transition: all 0.5s ease;
          transition: all 0.5s ease;
  cursor: pointer;
}
.switch__slider::before {
  position: absolute;
  content: '';
  width: 24px;
  height: 24px;
  top: 3px;
  left: 3px;
  background: #fff;
  border-radius: 15px;
  -webkit-transition: all 0.5s ease;
          transition: all 0.5s ease;
}
.switch__input:checked + .switch__slider {
  background: var(--orange);
}
.switch__input:checked + .switch__slider::before {
  -webkit-transform: translateX(30px);
          transform: translateX(30px);
}





/*------------------------------------*\
  #CHECKBOX
\*------------------------------------*/


.checkbox {
  margin-bottom: 1.2em;
}

.checkbox__input:not(:checked),
.checkbox__input:checked {
  position: absolute;
  left: -9999px;
}
.checkbox__label {
  position: relative;
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4;
  color: var(--gray);
  padding-left: 1.8em;
  margin: 0;
}
.checkbox__label::before {
  content: '';
  position: absolute;
  width: 1.2em;
  height: 1.2em;
  top: 0.1em;
  left: 0;
  background: #fff;
  border: 2px solid #e6e6e6;
  border-radius: 4px;
  -webkit-transition: border-color 0.5s ease;
          transition: border-color 0.5s ease;
}
.checkbox__label:hover::before {
  border: 2px solid var(--blue);
  cursor: pointer;
}
.checkbox__input:checked + .checkbox__label::after {
  content: '';
  position: absolute;
  width: 11px;
  height: 7px;
  top: 0.38em;
  left: 0.25em;
  border: 3px solid #fff;
  border-top: none;
  border-right: none;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.checkbox__input:checked + .checkbox__label::before {
  background: var(--blue);
  border: 2px solid var(--blue);
}





/*------------------------------------*\
  #FOOTER
\*------------------------------------*/


.page-foot {
  background: var(--dark-blue);
  padding: 3.5em 0;
}

.page-foot .container {
  max-width: 100%;
}

.page-foot__upper,
.page-foot__lower {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.page-foot__logo {
  width: 180px;
}

.social {
  display: flex;
}
.social__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2.2em;
  height: 2.2em;
  background: var(--orange);
  border-radius: 50%;
  margin-right: 0.8em;
  -webkit-transition: background 0.5s ease;
          transition: background 0.5s ease;
}
.social__icon:last-child {
  margin-right: 0;
}
.social__icon img {
  width: 16px;
}
.social__icon:hover {
  background: var(--blue);
}

.page-foot__lower {
  align-items: flex-start;
  border-top: 1px solid var(--blue);
  padding-top: 2em;
  margin-top: 2.5em;
}
.page-foot__lower p,
.page-foot__lower a {
  display: block;
  font-size: 1em;
  font-weight: 400;
  line-height: 1.8;
  color: #fff;
}
.page-foot__lower a {
  -webkit-transition: color 0.5s ease;
          transition: color 0.5s ease;
}
.page-foot__lower a:hover {
  text-decoration: underline;
}
.page-foot__info {
  width: 40%;
}
.info__address {
  display: flex;
}
.info__address p span {
  margin-right: 0.3em;
}
.page-foot__disclaimers {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 60%;
  max-width: 600px;
}
.page-foot__disclaimers a {
  margin-left: 1.5em;
}


@media only screen and (max-width: 1100px) {
  .page-foot__logo {
    width: 160px;
  }
  .page-foot__lower p,
  .page-foot__lower a {
    font-size: 0.95em;
  }
  .page-foot__disclaimers a {
    margin-left: 1em;
  }
}

@media only screen and (max-width: 1000px) {
  .page-foot__lower p,
  .page-foot__lower a {
    line-height: 1.7;
  }
  .page-foot__info {
    width: 35%;
  }
  .info__address {
    display: block;
  }
  .info__address p span {
    display: none;
  }
  .page-foot__disclaimers {
    width: 65%;
    max-width: 400px;
  }
}

@media only screen and (max-width: 900px) {
  .page-foot {
    padding: 3em 0;
  }
  .page-foot__logo {
    width: 140px;
  }
  .social__icon {
    width: 2em;
    height: 2em;
    margin-right: 0.6em;
  }
  .social__icon img {
    width: 14px;
  }
  .page-foot__lower {
    padding-top: 1.8em;
    margin-top: 2em;
  }
  .page-foot__lower p,
  .page-foot__lower a {
    font-size: 0.9em;
  }
}

@media only screen and (max-width: 750px) {
  .page-foot__logo {
    width: 130px;
  }
  .social__icon {
    width: 1.8em;
    height: 1.8em;
    margin-right: 0.5em;
  }
  .social__icon img {
    width: 14px;
  }
}

@media only screen and (max-width: 600px) {
  .page-foot__upper,
  .page-foot__lower {
    flex-direction: column;
    justify-content: center;
  }
  .page-foot__logo {
    margin-bottom: 1.5em;
  }
  .page-foot__lower {
    padding-top: 1.8em;
    margin-top: 1.8em;
  }
  .page-foot__info {
    width: 100%;
    text-align: center;
    margin-bottom: 1em;
  }
  .info__address {
    display: flex;
    justify-content: center;
  }
  .info__address p span {
    display: inline-block;
    margin-right: 0.3em;
  }
  .page-foot__disclaimers {
    justify-content: center;
    width: 100%;
    max-width: 100%;
  }
  .page-foot__disclaimers a {
    margin: 0 0.5em;
  }
}





/*------------------------------------*\
  #MODAL
\*------------------------------------*/


.js-scroll {
  overflow: hidden;
}

.modal-overlay {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0,0,0, 0.6);
  padding: 5% 0;
  overflow-y: scroll;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  z-index: 9999999;
  transition: opacity 0.6s cubic-bezier(0.55,0,0.1,1), visibility 0.6s cubic-bezier(0.55,0,0.1,1);
}
.modal-overlay.active {
  opacity: 1;
  visibility: visible;
}

.modal {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 90%;
  max-width: 500px;
  background: #fff;
  padding: 2em;
  border-radius: 8px;
  margin: auto;
  opacity: 0;
  visibility: hidden;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  overflow-y: auto;
  transform: scale(1.2);
  transition: all 0.6s cubic-bezier(0.55,0,0.1,1);
}
.modal-overlay.active .modal {
  visibility: visible;
  opacity: 1;
  transform: scale(1);
}

.modal__inner {
  width: 100%;
  opacity: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
  transition: opacity 0.6s cubic-bezier(0.55,0,0.1,1);
  transition-delay: 0.3s;
}
.modal-overlay.active .modal__inner {
  opacity: 1;
}

.modal__close {
  position: absolute;
  font-family: 'Foundry Sterling W01', Arial, sans-serif;
  font-size: 1.8em;
  font-weight: 700;
  line-height: 1;
  color: var(--gray);
  top: 0;
  right: 0.25em;
  cursor: pointer;
  opacity: 0;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;       
  transition: opacity 0.6s cubic-bezier(0.55,0,0.1,1), transform 0.6s cubic-bezier(0.55,0,0.1,1), color 0.5s ease;
  transition-delay: 0.3s;
}
.modal-overlay.active .modal__close {
  opacity: 1;
}
.modal__close:hover {
  color: var(--blue);
}

.modal__content h2 {
  margin-bottom: 0.2em;
}
.modal__content h3 {
  margin-bottom: 0.2em;
}
.modal__content p {
  font-size: 1em;
  font-weight: 500;
  line-height: 1.4;
}
.modal__content form {
  margin-top: 1.5em;
}
.modal__content .form__wrap {
  width: 100%;
}
.modal__content .form__input {
  margin-bottom: 0;
}
.modal__content .form__wrap input[type=submit],
.modal__content .form__wrap input[type=button] {
  margin: 1em 0 0;
}

.modal__content .checkbox__label {
  font-weight: 500;
  color: var(--gray);
}

.wrap-inputs .form__input {
  margin-bottom: 1.2em;
}

.form__buttons {
  display: flex;
  justify-content: space-between;
}
.form__buttons input[type=submit],
.form__buttons input[type=button],
.form__buttons .ah-submit {
  width: 48%;
}
.form__buttons input[type=button] {
  background: var(--dark-blue);
}
.form__buttons input[type=button]:hover {
  background: #002e53;
}
.form__buttons input[type=submit]:disabled {
  color: var(--gray);
  background: #e6e6e6;
  cursor: default;
}
.form__buttons .ah-submit input[type=submit] {
  width: 100%;
}

.modal__content .form__message p {
  display: block;
  font-weight: 500;
  color: var(--orange);
  text-align: left;
  padding: 0;
  margin: 0.6em 0 0;
}








