/* reset */
* {
  box-sizing: inherit;
  margin: 0;
  padding: 0;
  border-radius: 0;
  border: none;
  outline: none;
  background: none;
  -webkit-margin-before: 0;
  -webkit-margin-after: 0;
  -webkit-margin-start: 0;
  -webkit-margin-end: 0;
  -webkit-padding-before: 0;
  -webkit-padding-start: 0;
  -webkit-padding-end: 0;
  -webkit-padding-after: 0;
}

*::before,
*::after {
  box-sizing: inherit;
}

*:active,
*:hover {
  outline: 0;
}

html {
  box-sizing: border-box;
  font-size: 100%;
  height: 100%;
}

body {
  position: relative;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

b,
i,
em,
strong,
h1,
h2,
h3,
h4,
h5,
h6,
th,
td,
pre,
ins,
del,
address,
input,
select,
button,
textarea {
  text-transform: inherit;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  font-style: inherit;
  letter-spacing: inherit;
}

textarea,
input {
  appearance: none;
  background-clip: padding-box;
}

a,
ins,
del,
button {
  color: inherit;
  text-decoration: none;
}

ul,
ol,
menu {
  list-style: none;
}

table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}

pre,
textarea {
  overflow: auto;
  max-width: 100%;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

svg:not(:root) {
  overflow: hidden;
}

form {
  width: 100%;
}

button {
  cursor: pointer;
  overflow: visible;
}

textarea {
  resize: none;
}

::moz-focus-inner {
  padding: 0;
  border: none;
}

/* styles */
body {
  font-family: SimplonBP, sans-serif;
  font-size: 1.05rem;
  font-weight: 400;
  font-style: normal;
  line-height: 1.45;
  color: white;
  background-color: #001954;
  overflow-x: hidden;
  position: relative;
}

.zsiq_floatmain {
  opacity: 0 !important;
  pointer-events: none !important;
}

.layout-section {
  width: 100%;
  max-width: 98em;
  padding-right: 1rem;
  padding-left: 1rem;
  margin: 0 auto;
  padding-top: 3rem;
}

.layout-section p + p {
  margin-top: 1rem;
}

.layout-section.-split.-top {
  align-items: flex-start;
}

.layout-section__title {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.15;
  text-transform: uppercase;
  color: #aae4f4;
  margin-bottom: 1.5rem;
}

.layout-section__title.-no-bottom {
  margin-bottom: 0;
}

.layout-section__split {
  width: 100%;
}

.layout-section__split.-half {
  position: relative;
}

.layout-section__split + .layout-section__split {
  margin-top: 3rem;
}

.home-form {
  width: 100%;
}

.home-form__section.-button {
  margin-top: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-form__fieldset {
  width: 100%;
  margin-bottom: 1.15rem;
}

.input {
  width: 100%;
  height: 3rem;
  color: white;
  font-size: 1rem;
  font-weight: 500;
  border: 1px solid #aae4f4;
  border-radius: 2rem;
  padding: 0 1.5rem;
  transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
}

.input::placeholder {
  color: rgba(255, 255, 255, 0.55);
  transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
}

.input:focus {
  border: 1px solid #eb5b29;
}

.input:focus::placeholder {
  color: white;
}

.input.-hidden {
  display: none;
}

.input.-invalid {
  border: 1px solid #eb5b29;
}

.input.-invalid::placeholder {
  color: #eb5b29;
}

.input + .input {
  margin-top: 1rem;
}

.input.-textarea {
  height: 13.5rem;
  border-radius: 1rem;
  padding: 0.75rem 1rem;
}

.input__select {
  width: 100%;
  height: 100%;
  color: white;
}

.input__select option {
  color: black;
}

.button {
  font-size: 0.9rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  min-width: 5rem;
  height: 2.75rem;
  color: white;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid #eb5b29;
  border-radius: 2rem;
  padding: 0.25rem 1.25rem 0;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 250ms cubic-bezier(0.4, 0.25, 0.3, 1);
  user-select: none;
}

.button:hover {
  background-color: #eb5b29;
  cursor: pointer;
}

@media (min-width: 23.4375em) {
  .layout-section {
    padding-right: 1.5rem;
    padding-left: 1.5rem;
    padding-top: 4rem;
  }
}

@media (min-width: 35.5em) {
  .layout-section {
    padding-right: 2.5rem;
    padding-left: 2.5rem;
  }
}

@media (max-width: 35.5em) {
  .button {
    width: 100%;
  }
}

@media (min-width: 47.8125em) {
  .layout-section {
    padding-right: 3rem;
    padding-left: 3rem;
    padding-top: 5rem;
  }

  .layout-section__title {
    font-size: 3rem;
  }

  .home-form__section.-button {
    margin-top: 2rem;
  }

  .input + .input {
    margin-top: 1rem;
  }
}

@media (min-width: 59.375em) {
  .layout-section.-split {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .layout-section.-split.-reverse {
    flex-direction: row-reverse;
  }

  .layout-section__split {
    width: 50%;
  }

  .layout-section__split.-half {
    width: 55%;
  }

  .layout-section__split.-small {
    width: 40%;
  }

  .layout-section__split.-large {
    width: 60%;
  }

  .layout-section__split + .layout-section__split {
    margin-top: 0;
    margin-left: 2rem;
  }

  .home-form {
    margin-left: 1rem;
  }
}

@media (min-width: 75em) {
  .layout-section {
    padding-right: 5rem;
    padding-left: 5rem;
    padding-top: 7rem;
  }

  .layout-section__title {
    font-size: 3.5rem;
  }

  .layout-section__split.-small {
    width: 35%;
  }

  .layout-section__split.-large {
    width: 65%;
  }

  .layout-section__split + .layout-section__split {
    margin-left: 3rem;
  }

  .home-form__section.-button {
    margin-top: 3rem;
  }

  .home-form__fieldset {
    display: flex;
  }

  .home-form__fieldset input,
  .home-form__fieldset .-select {
    width: 50%;
  }

  .input + .input {
    margin-top: 0;
    margin-left: 1rem;
  }

  .input.-fill {
    width: 100%;
  }
}

@media (min-width: 87.5em) {
  .layout-section {
    padding-right: 6rem;
    padding-left: 6rem;
  }

  .layout-section__split.-half {
    width: 60%;
  }

  .layout-section__split + .layout-section__split {
    margin-left: 3.5rem;
  }
}

@media (min-width: 118.75em) {
  .home-form {
    margin-left: 4rem;
  }
}

.home-newsletter-form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.home-newsletter-form .input {
  margin-right: 2rem;
}

.home-newsletter-form .button {
  flex-shrink: 0;
}
