/* ------------------------------------------------------------ *\
  Vendor
\* ------------------------------------------------------------ */
.datepicker {
  width: min-content;
}
.datepicker:not(.active) {
  display: none;
}
.datepicker-dropdown {
  position: absolute;
  z-index: 20;
  padding-top: 4px;
}
.datepicker-dropdown.datepicker-orient-top {
  padding-top: 0;
  padding-bottom: 4px;
}
.datepicker-picker {
  display: flex;
  flex-direction: column;
  border-radius: 4px;
  background-color: hsl(0, 0%, 100%);
}
.datepicker-dropdown .datepicker-picker {
  box-shadow: 0 2px 3px rgba(10, 10, 10, 0.1), 0 0 0 1px rgba(10, 10, 10, 0.1);
}
.datepicker-main {
  flex: auto;
  padding: 2px;
}
.datepicker-footer {
  box-shadow: inset 0 1px 1px rgba(10, 10, 10, 0.1);
  background-color: hsl(0, 0%, 96%);
}
.datepicker-title {
  box-shadow: inset 0 -1px 1px rgba(10, 10, 10, 0.1);
  background-color: hsl(0, 0%, 96%);
  padding: 0.375rem 0.75rem;
  text-align: center;
  font-weight: 700;
}
.datepicker-controls {
  display: flex;
}
.datepicker-header .datepicker-controls {
  padding: 2px 2px 0;
}
.datepicker-controls .button {
  display: inline-flex;
  position: relative;
  align-items: center;
  justify-content: center;
  margin: 0;
  border: 1px solid gainsboro;
  border-radius: 4px;
  box-shadow: none;
  background-color: hsl(0, 0%, 100%);
  cursor: pointer;
  padding: calc(0.375em - 1px) 0.75em;
  height: 2.25em;
  vertical-align: top;
  text-align: center;
  line-height: 1.5;
  white-space: nowrap;
  color: hsl(0, 0%, 21%);
  font-size: 16px;
}
.datepicker-controls .button:focus, .datepicker-controls .button:active {
  outline: none;
}
.datepicker-controls .button:hover {
  border-color: #b8b8b8;
  color: hsl(0, 0%, 21%);
}
.datepicker-controls .button:focus {
  border-color: hsl(217, 71%, 53%);
  color: hsl(0, 0%, 21%);
}
.datepicker-controls .button:focus:not(:active) {
  box-shadow: 0 0 0 0.125em rgba(50, 115, 220, 0.25);
}
.datepicker-controls .button:active {
  border-color: #474747;
  color: hsl(0, 0%, 21%);
}
.datepicker-controls .button[disabled] {
  cursor: not-allowed;
}
.datepicker-header .datepicker-controls .button {
  border-color: transparent;
  font-weight: bold;
}
.datepicker-header .datepicker-controls .button:hover {
  background-color: #f9f9f9;
}
.datepicker-header .datepicker-controls .button:active {
  background-color: #f2f2f2;
}
.datepicker-footer .datepicker-controls .button {
  flex: auto;
  margin: calc(0.375rem - 1px) 0.375rem;
  border-radius: 2px;
  font-size: 14px;
}
.datepicker-controls .view-switch {
  flex: auto;
}
.datepicker-controls .prev-button,
.datepicker-controls .next-button {
  padding-right: 0.375rem;
  padding-left: 0.375rem;
  flex: 0 0 14.2857142857%;
}
.datepicker-controls .prev-button.disabled,
.datepicker-controls .next-button.disabled {
  visibility: hidden;
}
.datepicker-view,
.datepicker-grid {
  display: flex;
}
.datepicker-view {
  align-items: stretch;
  width: 24.5rem;
}
.datepicker-grid {
  flex-wrap: wrap;
  flex: auto;
}
.datepicker .days {
  display: flex;
  flex-direction: column;
  flex: auto;
}
.datepicker .days-of-week {
  display: flex;
}
.datepicker .week-numbers {
  display: flex;
  flex-direction: column;
  flex: 0 0 9.6774193548%;
}
.datepicker .weeks {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  flex: auto;
}
.datepicker span {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  cursor: default;
  -webkit-touch-callout: none;
  user-select: none;
}
.datepicker .dow {
  height: 24px;
  font-size: 15px;
  font-weight: 700;
}
.datepicker .week {
  flex: auto;
  color: #b8b8b8;
  font-size: 14px;
}
.datepicker-cell, .datepicker .days .dow {
  flex-basis: 14.2857142857%;
}
.datepicker-cell {
  height: 3.5rem;
}
.datepicker-cell:not(.day) {
  flex-basis: 25%;
  height: 7rem;
}
.datepicker-cell:not(.disabled):hover {
  background-color: #f9f9f9;
  cursor: pointer;
}
.datepicker-cell.focused:not(.selected) {
  background-color: #e9e9e9;
}
.datepicker-cell.selected, .datepicker-cell.selected:hover {
  background-color: hsl(217, 71%, 53%);
  color: #fff;
  font-weight: 600;
}
.datepicker-cell.disabled {
  color: gainsboro;
}
.datepicker-cell.prev:not(.disabled), .datepicker-cell.next:not(.disabled) {
  color: hsl(0, 0%, 48%);
}
.datepicker-cell.prev.selected, .datepicker-cell.next.selected {
  color: #e6e6e6;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today) {
  border-radius: 0;
  background-color: hsl(0, 0%, 96%);
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today):not(.disabled):hover {
  background-color: #efefef;
}
.datepicker-cell.highlighted:not(.selected):not(.range):not(.today).focused {
  background-color: #e9e9e9;
}
.datepicker-cell.today:not(.selected) {
  background-color: hsl(171, 100%, 41%);
}
.datepicker-cell.today:not(.selected):not(.disabled) {
  color: #fff;
}
.datepicker-cell.today.focused:not(.selected) {
  background-color: #00ccad;
}
.datepicker-cell.range-end:not(.selected), .datepicker-cell.range-start:not(.selected) {
  background-color: #b8b8b8;
  color: #fff;
}
.datepicker-cell.range-end.focused:not(.selected), .datepicker-cell.range-start.focused:not(.selected) {
  background-color: #b3b3b3;
}
.datepicker-cell.range-start:not(.range-end) {
  border-radius: 4px 0 0 4px;
}
.datepicker-cell.range-end:not(.range-start) {
  border-radius: 0 4px 4px 0;
}
.datepicker-cell.range {
  border-radius: 0;
  background-color: gainsboro;
}
.datepicker-cell.range:not(.disabled):not(.focused):not(.today):hover {
  background-color: #d7d7d7;
}
.datepicker-cell.range.disabled {
  color: #c6c6c6;
}
.datepicker-cell.range.focused {
  background-color: #d1d1d1;
}
.datepicker-input.in-edit {
  border-color: #276bda;
}
.datepicker-input.in-edit:focus, .datepicker-input.in-edit:active {
  box-shadow: 0 0 0.25em 0.25em rgba(39, 107, 218, 0.2);
}
/* ------------------------------------------------------------ *\
	Generic
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
  SCSS Functions
\* ------------------------------------------------------------ */
/* example usage*/
/* ------------------------------------------------------------ *\
    Fonts
\* ------------------------------------------------------------ */
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-Regular.woff2") format("woff2"), url("../assets/fonts/OpenSans-Regular.woff") format("woff"), url("../assets/fonts/OpenSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-SemiBold.woff2") format("woff2"), url("../assets/fonts/OpenSans-SemiBold.woff") format("woff"), url("../assets/fonts/OpenSans-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Open Sans";
  src: url("../assets/fonts/OpenSans-Bold.woff2") format("woff2"), url("../assets/fonts/OpenSans-Bold.woff") format("woff"), url("../assets/fonts/OpenSans-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "AvenirNext LT Pro";
  src: url("../assets/fonts/AvenirNextLTPro-Bold.woff2") format("woff2"), url("../assets/fonts/AvenirNextLTPro-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
/* ------------------------------------------------------------ *\
	Base
\* ------------------------------------------------------------ */
html {
  font-size: 50%;
}
.new-base-styles {
  color: #0F0A80;
  font-family: "Open Sans", "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 2.4rem;
  line-height: 1.2;
  /*  Reset  */
}
@media (max-width: 1199px) {
  .new-base-styles {
    font-size: 2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .new-base-styles {
    font-size: 1.6rem;
  }
}
.new-base-styles a {
  color: inherit;
  text-decoration: underline;
}
.new-base-styles a:hover {
  text-decoration: none;
}
.new-base-styles a[href^=tel] {
  text-decoration: none;
}
.new-base-styles .h1,
.new-base-styles h1,
.new-base-styles .h2,
.new-base-styles h2,
.new-base-styles .h3,
.new-base-styles h3,
.new-base-styles .h4,
.new-base-styles h4,
.new-base-styles .h5,
.new-base-styles h5,
.new-base-styles .h6,
.new-base-styles h6 {
  font-weight: 700;
  margin-bottom: calc(1.2em / 2);
}
.new-base-styles .h1:last-child,
.new-base-styles h1:last-child,
.new-base-styles .h2:last-child,
.new-base-styles h2:last-child,
.new-base-styles .h3:last-child,
.new-base-styles h3:last-child,
.new-base-styles .h4:last-child,
.new-base-styles h4:last-child,
.new-base-styles .h5:last-child,
.new-base-styles h5:last-child,
.new-base-styles .h6:last-child,
.new-base-styles h6:last-child {
  margin-bottom: 0;
}
.new-base-styles .h1,
.new-base-styles h1 {
  font-size: 10rem;
}
@media (max-width: 1399px) {
  .new-base-styles .h1,
  .new-base-styles h1 {
    font-size: 8.4rem;
  }
}
@media (max-width: 1199px) {
  .new-base-styles .h1,
  .new-base-styles h1 {
    font-size: 7.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .new-base-styles .h1,
  .new-base-styles h1 {
    font-size: 6rem;
  }
}
@media (max-width: 424px) {
  .new-base-styles .h1,
  .new-base-styles h1 {
    font-size: 5.2rem;
  }
}
.new-base-styles .h2,
.new-base-styles h2 {
  font-size: 9.2rem;
}
@media (max-width: 1399px) {
  .new-base-styles .h2,
  .new-base-styles h2 {
    font-size: 7.5rem;
  }
}
@media (max-width: 1199px) {
  .new-base-styles .h2,
  .new-base-styles h2 {
    font-size: 6.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .new-base-styles .h2,
  .new-base-styles h2 {
    font-size: 5.4rem;
  }
}
@media (max-width: 424px) {
  .new-base-styles .h2,
  .new-base-styles h2 {
    font-size: 4.5rem;
  }
}
.new-base-styles .h3,
.new-base-styles h3 {
  font-size: 7.6rem;
}
@media (max-width: 1399px) {
  .new-base-styles .h3,
  .new-base-styles h3 {
    font-size: 6.4rem;
  }
}
@media (max-width: 1199px) {
  .new-base-styles .h3,
  .new-base-styles h3 {
    font-size: 5.4rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .new-base-styles .h3,
  .new-base-styles h3 {
    font-size: 4.5rem;
  }
}
@media (max-width: 424px) {
  .new-base-styles .h3,
  .new-base-styles h3 {
    font-size: 3.8rem;
  }
}
.new-base-styles .h4,
.new-base-styles h4 {
  font-size: 4.2rem;
}
@media (max-width: 1399px) {
  .new-base-styles .h4,
  .new-base-styles h4 {
    font-size: 3.6rem;
  }
}
@media (max-width: 1199px) {
  .new-base-styles .h4,
  .new-base-styles h4 {
    font-size: 3.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .new-base-styles .h4,
  .new-base-styles h4 {
    font-size: 2.8rem;
  }
}
@media (max-width: 424px) {
  .new-base-styles .h4,
  .new-base-styles h4 {
    font-size: 2.5rem;
  }
}
.new-base-styles .h5,
.new-base-styles h5 {
  font-size: 3.6rem;
  font-weight: 400;
}
@media (max-width: 1399px) {
  .new-base-styles .h5,
  .new-base-styles h5 {
    font-size: 3.3rem;
  }
}
@media (max-width: 1199px) {
  .new-base-styles .h5,
  .new-base-styles h5 {
    font-size: 3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .new-base-styles .h5,
  .new-base-styles h5 {
    font-size: 2.8rem;
  }
}
@media (max-width: 424px) {
  .new-base-styles .h5,
  .new-base-styles h5 {
    font-size: 2.5rem;
  }
}
.new-base-styles .h6,
.new-base-styles h6 {
  font-size: 2.8rem;
  font-weight: 400;
}
@media (max-width: 1199px) {
  .new-base-styles .h6,
  .new-base-styles h6 {
    font-size: 2.6rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .new-base-styles .h6,
  .new-base-styles h6 {
    font-size: 2.4rem;
  }
}
@media (max-width: 424px) {
  .new-base-styles .h6,
  .new-base-styles h6 {
    font-size: 2.2rem;
  }
}
.new-base-styles p,
.new-base-styles ul,
.new-base-styles ol,
.new-base-styles dl,
.new-base-styles table,
.new-base-styles blockquote {
  margin-bottom: 1.2em;
}
.new-base-styles p:last-child,
.new-base-styles ul:last-child,
.new-base-styles ol:last-child,
.new-base-styles dl:last-child,
.new-base-styles table:last-child,
.new-base-styles blockquote:last-child {
  margin-bottom: 0;
}
.new-base-styles hr {
  margin-bottom: 1.2em;
}
.new-base-styles img {
  max-width: 100%;
  border: 0 none;
  height: auto;
  display: inline-block;
  vertical-align: middle;
  image-rendering: -webkit-optimize-contrast;
}
.new-base-styles button,
.new-base-styles input {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
}
.site-navbar a {
  text-decoration: none;
}
/* ------------------------------------------------------------ *\
	Helpers
\* ------------------------------------------------------------ */
/* sr-only */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
/* ------------------------------------------------------------ *\
	Components
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	Accordion alt
\* ------------------------------------------------------------ */
.accordion-alt .accordion__section {
  border: 0.25rem solid #5dc1e3;
  margin-bottom: 5.12rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .accordion-alt .accordion__section {
    margin-bottom: 3rem;
  }
}
.accordion-alt .accordion__section:last-child {
  margin: 0;
}
.accordion-alt .accordion__section.is-current .accordion__toggle i:before {
  transform: rotate(90deg);
}
.accordion-alt .accordion__section.is-current .accordion__body {
  opacity: 1;
  grid-template-rows: 1fr;
  pointer-events: auto;
}
.accordion-alt .accordion__head {
  background: #5ec2e6;
  color: #FFF;
}
.accordion-alt .accordion__toggle {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  padding: 1.88rem 3.25rem 1.5rem 2rem;
  cursor: pointer;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .accordion-alt .accordion__toggle {
    padding: 1.5rem 1rem;
  }
}
.accordion-alt .accordion__toggle span {
  flex: 1;
  margin-right: 1rem;
}
.accordion-alt .accordion__toggle i {
  font-style: normal;
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  position: relative;
}
.accordion-alt .accordion__toggle i:before, .accordion-alt .accordion__toggle i:after {
  content: "";
  position: absolute;
  background: currentColor;
}
.accordion-alt .accordion__toggle i:before {
  top: 0;
  bottom: 0;
  left: 50%;
  width: 0.4rem;
  transform: translateX(-50%);
  transition: transform 0.4s;
}
.accordion-alt .accordion__toggle i:after {
  top: 50%;
  left: 0;
  right: 0;
  height: 0.4rem;
  transform: translateY(-50%);
}
.accordion-alt .accordion__body {
  display: grid;
  transition-property: grid-template-rows, opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  grid-template-rows: 0fr;
  opacity: 0;
  pointer-events: none;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .accordion-alt .accordion__body {
    line-height: 1.2;
  }
}
.accordion-alt .accordion__body-inner {
  overflow: hidden;
}
.accordion-alt .accordion__entry {
  padding: 2.5rem 7.5rem 2.5rem 3rem;
  font-weight: 500;
  font-size: 1.88rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .accordion-alt .accordion__entry {
    padding: 2.5rem 1.5rem;
    font-size: 1.62rem;
  }
}
.accordion-alt .accordion__entry p {
  margin-bottom: 0;
}
.accordion-alt .accordion__content {
  padding: 3.25rem 1.25rem 3.5rem 3rem;
  font-weight: 500;
  font-size: 1.88rem;
  line-height: 0.95;
  letter-spacing: -0.019em;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .accordion-alt .accordion__content {
    padding: 2.5rem 1.5rem;
    line-height: 1.2;
    font-size: 1.62rem;
  }
}
.accordion-alt .accordion__content p {
  margin-bottom: 14px;
}
.accordion-alt .accordion__content p:last-child {
  margin: 0;
}
@media (hover: hover) and (pointer: fine) {
  .accordion-alt .accordion__content a:hover {
    text-decoration: underline;
  }
}
/* ------------------------------------------------------------ *\
	Accordion
\* ------------------------------------------------------------ */
.accordion {
  font-size: 2.43rem;
}
@media (max-width: 1199px) {
  .accordion {
    font-size: 2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .accordion {
    font-size: 1.64rem;
  }
}
.accordion .accordion__cols {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-gap: 2rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .accordion .accordion__cols {
    grid-template-columns: 100%;
    grid-gap: 1.5rem;
  }
}
.accordion .accordion__section {
  border-radius: 1.8rem;
  background-color: #E4F3FB;
  overflow: hidden;
  margin-bottom: 2.1rem;
}
@media (max-width: 1199px) {
  .accordion .accordion__section {
    margin-bottom: 1.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .accordion .accordion__section {
    border-radius: 1.3rem;
    margin-bottom: 1.5rem;
  }
}
.accordion .accordion__section:last-child {
  margin-bottom: 0;
}
.accordion .accordion__section.is-current .accordion__toggle:after {
  transform: rotate(90deg);
}
.accordion .accordion__section.is-current .accordion__body {
  opacity: 1;
  grid-template-rows: 1fr;
  pointer-events: auto;
}
.accordion .accordion__toggle {
  transition: opacity 0.4s ease;
}
.accordion .accordion__toggle:hover {
  opacity: 0.5;
}
.accordion .accordion__toggle,
.accordion .accordion__section-btn {
  appearance: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  outline: none;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.6rem;
  text-align: left;
  text-transform: none;
  margin-bottom: 0;
  padding-block: 1.4rem;
}
@media (max-width: 1199px) {
  .accordion .accordion__toggle,
  .accordion .accordion__section-btn {
    padding-block: 1.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .accordion .accordion__toggle,
  .accordion .accordion__section-btn {
    padding-block: 0.9rem;
  }
}
.accordion .accordion__toggle:after,
.accordion .accordion__section-btn:after {
  content: ">";
  font-size: 4rem;
  line-height: 1;
  transition: transform 0.5s ease;
}
@media (max-width: 1199px) {
  .accordion .accordion__toggle:after,
  .accordion .accordion__section-btn:after {
    font-size: 3.3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .accordion .accordion__toggle:after,
  .accordion .accordion__section-btn:after {
    font-size: 2.7rem;
  }
}
.accordion .accordion__section-btn {
  height: 100%;
  color: #FFF;
  background-color: #E73844;
  border-radius: inherit;
  transition: background-color 0.4s ease;
}
.accordion .accordion__section-btn:hover {
  background-color: #d31926;
}
.accordion .accordion__toggle,
.accordion .accordion__section-btn,
.accordion .accordion__body {
  padding-inline: 4.6rem 3.7rem;
}
@media (max-width: 1199px) {
  .accordion .accordion__toggle,
  .accordion .accordion__section-btn,
  .accordion .accordion__body {
    padding-inline: 3.6rem 3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .accordion .accordion__toggle,
  .accordion .accordion__section-btn,
  .accordion .accordion__body {
    padding-inline: 3.1rem 2.5rem;
  }
}
.accordion .accordion__body {
  display: grid;
  transition-property: grid-template-rows, opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  grid-template-rows: 0fr;
  opacity: 0;
  pointer-events: none;
}
.accordion .accordion__body-inner {
  min-height: 0;
  padding-right: 5%;
}
.accordion .accordion__entry {
  font-size: 0.9em;
  padding-bottom: 2rem;
}
/* ------------------------------------------------------------ *\
	Box Checkbox
\* ------------------------------------------------------------ */
.box-checkbox {
  color: #5EC2E6;
  font-size: 1.6rem;
  border-radius: 1.1rem;
  border: 0.5rem solid #5EC2E6;
  background-color: #ffffff;
  padding: 1.9rem 2.2rem 4.2rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .box-checkbox {
    border-width: 0.3rem;
    border-radius: 0.8rem;
    padding: 1.6rem 1.6rem 2.4rem;
  }
}
.box-checkbox .box__head {
  margin-bottom: 2.5rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .box-checkbox .box__head {
    margin-bottom: 1.6rem;
  }
}
.box-checkbox .box__head:last-child {
  margin-bottom: 0;
}
@media (min-width: 1399.02px) {
  .box-checkbox .box__head h4 {
    font-size: 4.8rem;
  }
}
.box-checkbox .box__head span {
  color: #E73844;
}
.box-checkbox .box__entry {
  margin-bottom: 2.3rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .box-checkbox .box__entry {
    margin-bottom: 1.6rem;
  }
}
.box-checkbox .box__entry:last-child {
  margin-bottom: 0;
}
.box-checkbox .box__checkbox {
  padding-left: 0.4rem;
}
@media (max-width: 1199px) {
  .box-checkbox .box__checkbox {
    padding-left: 0;
  }
}
/* ------------------------------------------------------------ *\
	Btn Alt
\* ------------------------------------------------------------ */
html .btn-alt {
  appearance: none;
  display: inline-block;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  outline: none;
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 0rem 2rem;
  color: #FFF;
  font-size: 3.8rem;
  font-weight: 400;
  line-height: 1.2;
  border-radius: 3.8rem;
  background-color: #E73844;
  padding: 2.4rem 3.5rem;
  transition-property: color, background-color;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}
@media (max-width: 1399px) {
  html .btn-alt {
    font-size: 3rem;
    padding: 1.8rem 2.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  html .btn-alt {
    gap: 0 0.9rem;
    font-size: 2.1rem;
    border-radius: 2.4rem;
    padding: 1.3rem 1.9rem;
  }
}
@media (max-width: 424px) {
  html .btn-alt {
    font-size: 1.8rem;
    padding: 1.2rem 1.8rem;
  }
}
html .btn-alt:hover {
  background-color: #d31926;
}
html .btn-alt:after {
  display: block;
  flex-shrink: 0;
  width: 2.4rem;
  aspect-ratio: 1;
  background-color: currentColor;
  mask-repeat: no-repeat;
  mask-size: cover;
  mask-position: center center;
}
/*  Btn blue  */
html .btn-alt--blue {
  background-color: #5EC2E6;
}
html .btn-alt--blue:hover {
  background-color: #32b1df;
}
/*  Btn Border White  */
html .btn-alt--border-white {
  color: #FFF;
  background-color: transparent;
}
html .btn-alt--border-white:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  border: 0.5rem solid #FFF;
}
html .btn-alt--border-white:hover {
  color: #0F0A80;
  background-color: #FFF;
}
/*  Btn Pdf  */
html .btn-alt--pdf:after {
  content: "";
  width: 4rem;
  aspect-ratio: 0.91;
  mask-image: url("../assets/images/ico-pdf.png");
}
@media (max-width: 1199px) {
  html .btn-alt--pdf:after {
    width: 3.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  html .btn-alt--pdf:after {
    width: 2.4rem;
  }
}
/*  Btn block  */
html .btn-alt--block {
  width: 100%;
  padding-inline: 1.5rem;
}
/*  Btn block mobile  */
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  html .btn-alt--block-mobile {
    width: 100%;
    padding-inline: 1.5rem;
  }
}
/* ------------------------------------------------------------ *\
	Checkbox alt
\* ------------------------------------------------------------ */
.checkbox-alt input {
  display: none;
}
.checkbox-alt input:checked ~ label span:after {
  opacity: 1;
  visibility: visible;
}
.checkbox-alt label {
  letter-spacing: 0.028em;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
}
@media (hover: hover) and (pointer: fine) {
  .checkbox-alt a:hover {
    text-decoration: underline;
  }
}
.checkbox-alt strong {
  flex: 0 1 auto;
  margin-right: 1.25rem;
}
.checkbox-alt span {
  flex: 0 0 2.5rem;
  width: 2.5rem;
  height: 2.5rem;
  display: block;
  border: 0.25rem solid #000;
  background: #FFF;
  position: relative;
}
.checkbox-alt span:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 0.38rem;
  display: inline-block;
  transform: rotate(45deg) translate(-50%, -50%);
  height: 1.5rem;
  width: 0.88rem;
  border-bottom: 0.25rem solid #000;
  border-right: 0.25rem solid #000;
  transition: opacity 0.4s, visibility 0.4s;
  opacity: 0;
  visibility: hidden;
}
/* ------------------------------------------------------------ *\
	Checkbox
\* ------------------------------------------------------------ */
.checkbox {
  display: flex;
  align-items: center;
  gap: 2.8rem;
  font-size: 3rem;
}
@media (max-width: 1399px) {
  .checkbox {
    font-size: 2.7rem;
    gap: 1.6rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .checkbox {
    font-size: 2.3rem;
  }
}
@media (max-width: 424px) {
  .checkbox {
    font-size: 2rem;
  }
}
.checkbox input[type=checkbox] {
  flex-shrink: 0;
  appearance: none;
  color: #5EC2E6;
  width: 3.2rem;
  aspect-ratio: 1.231;
  background: #FFF;
  border: 0.1rem solid #5EC2E6;
  margin: 0;
}
@media (max-width: 1399px) {
  .checkbox input[type=checkbox] {
    width: 2.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .checkbox input[type=checkbox] {
    width: 2.4rem;
  }
}
.checkbox input[type=checkbox]:checked {
  background: #FFF url("../assets/images/ico-check.svg") no-repeat center center/contain;
}
/* ------------------------------------------------------------ *\
	Field alt
\* ------------------------------------------------------------ */
.field-alt {
  background: #FFF;
  border: 0;
  appearance: none;
  border-radius: 0;
  font-size: 1.88rem;
  line-height: 1.4;
  width: 100%;
  display: block;
  padding: 0.25rem 0.38rem;
  outline: 0;
  transition: box-shadow 0.4s;
}
.field-alt:focus {
  box-shadow: 0 0 0 0.38rem #7ca8d9;
}
/* ------------------------------------------------------------ *\
	Field
\* ------------------------------------------------------------ */
.field {
  display: block;
  width: 100%;
  height: 7.9rem;
  border: 2px solid var(--field-border-color, #E4F3FB);
  box-shadow: none !important;
  outline: none;
  color: #0F0A80;
  font-size: 3.6rem;
  font-weight: 400;
  border-radius: 2rem;
  background-color: #E4F3FB;
  padding: 0 3rem;
}
@media (max-width: 1399px) {
  .field {
    height: 7rem;
    font-size: 3.3rem;
    padding: 0 2.5rem;
  }
}
@media (max-width: 1199px) {
  .field {
    height: 6.5rem;
    font-size: 3rem;
    padding: 0 2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .field {
    height: 5.5rem;
    font-size: 2.6rem;
    border-radius: 1.2rem;
  }
}
.field::placeholder {
  opacity: 0.67;
}
.field:-webkit-autofill, .field:-webkit-autofill:active {
  -webkit-text-fill-color: inherit;
  -webkit-box-shadow: 0 0 0 1000px #fff inset;
  transition: all 0s 50000s;
}
.field::-webkit-outer-spin-button, .field::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
.field[type=number] {
  -moz-appearance: textfield;
}
/* ------------------------------------------------------------ *\
	Footer Alt
\* ------------------------------------------------------------ */
.footer-alt {
  color: #FFF;
  font-size: 2.6rem;
  text-align: center;
  font-weight: 600;
  background-color: #5EC2E6;
}
@media (max-width: 1399px) {
  .footer-alt {
    font-size: 2rem;
  }
}
@media (max-width: 1199px) {
  .footer-alt {
    font-size: 1.6rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer-alt {
    --shell-gutter: .9rem;
  }
}
.footer-alt:before {
  content: "";
  display: block;
  height: 1.7rem;
  background: linear-gradient(to bottom, #5EC2E6 50%, #FFF 50%);
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer-alt:before {
    height: 1rem;
    background: #FFF;
  }
}
.footer-alt .footer__content {
  padding-block: 10rem 18.3rem;
}
@media (max-width: 1399px) {
  .footer-alt .footer__content {
    padding-block: 7.5rem 15rem;
  }
}
@media (max-width: 1199px) {
  .footer-alt .footer__content {
    padding-block: 5rem 10rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .footer-alt .footer__content {
    padding-block: 2.9rem 6.2rem;
  }
}
.footer-alt .footer__entry a {
  text-decoration: none;
}
.footer-alt .footer__entry a:hover {
  text-decoration: underline;
}
/* ------------------------------------------------------------ *\
	Form Step
\* ------------------------------------------------------------ */
.form-step .form__steps {
  position: relative;
}
.form-step .form__step {
  transition-property: opacity, visibility;
  transition-duration: 0.4s;
  transition-timing-function: ease;
}
.form-step .form__step:not(.is-current) {
  position: absolute;
  inset: 0 0 auto;
  opacity: 0;
  visibility: hidden;
}
.form-step .form__head {
  font-size: 3rem;
  margin-bottom: 2.3rem;
}
@media (max-width: 1199px) {
  .form-step .form__head {
    font-size: 2.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form-step .form__head {
    font-size: 2.6rem;
  }
}
@media (max-width: 424px) {
  .form-step .form__head {
    font-size: 2.4rem;
  }
}
.form-step .form__head:last-child {
  margin-bottom: 0;
}
.form-step .form__body {
  margin-bottom: 5rem;
}
@media (max-width: 1199px) {
  .form-step .form__body {
    margin-bottom: 3rem;
  }
}
.form-step .form__body:last-child {
  margin-bottom: 0;
}
.form-step .form__body--family {
  display: grid;
  transition-property: grid-template-rows, opacity;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  grid-template-rows: 0fr;
  opacity: 0;
  pointer-events: none;
  margin-bottom: 0;
}
.form-step.show-partner-fields .form__body--family {
  opacity: 1;
  grid-template-rows: 1fr;
  pointer-events: auto;
}
.form-step .form__body-inner {
  min-height: 0;
}
.form-step .form__row {
  margin-bottom: 2.3rem;
}
.form-step .form__row:last-child {
  margin-bottom: 0;
}
.form-step .form__row--postcode {
  padding-right: 3.1%;
}
@media (max-width: 1399px) {
  .form-step .form__row--postcode {
    padding-right: 0;
  }
}
.form-step .form__row--box {
  margin-top: 3.1rem;
}
.form-step .form__cols {
  display: flex;
  flex-wrap: wrap;
  gap: 4rem;
}
@media (max-width: 1399px) {
  .form-step .form__cols {
    gap: 2.8rem;
  }
}
.form-step .form__col {
  flex: 1 0 0;
}
@media (max-width: 575px) {
  .form-step .form__col {
    flex-basis: 100%;
  }
}
.form-step .form__label {
  display: inline-block;
  margin-bottom: 2rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form-step .form__label {
    margin-bottom: 1.4rem;
  }
}
.form-step .form__label:last-child {
  margin-bottom: 0;
}
.form-step .form__field {
  flex: 1;
  width: auto;
  transition: border-color 0.4s;
  font-size: 16px;
}
.form-step .form__controls {
  position: relative;
  display: flex;
  gap: 1.5rem 5.8rem;
  flex-wrap: wrap;
  align-items: center;
  transition: gap 0.4s;
}
@media (max-width: 1399px) {
  .form-step .form__controls {
    gap: 1.5rem 3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form-step .form__controls {
    gap: 1.5rem 1.6rem;
  }
}
.form-step .form__controls:after {
  padding: 0 1rem;
  display: inline-block;
  flex: 0 0 100%;
  font-size: 1.8rem;
  color: #E73844;
}
.form-step .form__controls.is-invalid {
  --field-border-color: #E73844;
}
.form-step .form__controls.is-invalid:after {
  content: attr(data-error-message);
}
.form-step .form__controls-btn {
  flex-shrink: 0;
  font-size: 2.4rem;
  padding: 1.2rem 1.1rem;
}
@media (max-width: 1399px) {
  .form-step .form__controls-btn {
    font-size: 2.1rem;
    padding: 1rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form-step .form__controls-btn {
    font-size: 1.8rem;
  }
}
.form-step .form__actions {
  padding-inline: 1%;
  margin-top: 10rem;
}
@media (max-width: 1399px) {
  .form-step .form__actions {
    padding-inline: 0;
    margin-top: 8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .form-step .form__actions {
    margin-top: 6rem;
  }
}
.form-step .form__actions:first-child {
  margin-top: 0;
}
.form-step .form__btn {
  flex: 0 0 auto;
}
@media (max-width: 1023px) {
  .form-step .form__btn {
    font-size: 2.5rem;
    padding: 1.2rem 2.2rem;
  }
}
/* ------------------------------------------------------------ *\
	Grid
\* ------------------------------------------------------------ */
.grid {
  display: flex;
  flex-flow: row wrap;
  /*  Grid col 1of2  */
  /*  Grid col 1of3  */
}
.grid .grid__col {
  max-width: 100%;
  flex: 1;
}
.grid .grid__col--1of2 {
  max-width: 50%;
  flex: 0 0 50%;
}
.grid .grid__col--1of3 {
  max-width: 33.3333333333%;
  flex: 0 0 33.3333333333%;
}
/* ------------------------------------------------------------ *\
	Header Alt
\* ------------------------------------------------------------ */
.header-alt {
  position: relative;
  background-color: #FFF;
}
.header-alt .header__inner {
  display: flex;
  justify-content: space-between;
  gap: 3rem;
  padding-right: 2.05%;
  padding-block: 7.4rem 5.4rem;
}
@media (max-width: 1199px) {
  .header-alt .header__inner {
    padding-right: 0;
    padding-block: 5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .header-alt .header__inner {
    flex-wrap: wrap;
    gap: 5.6rem 1.6rem;
  }
}
.header-alt .header__aside {
  align-self: flex-start;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: fit-content;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .header-alt .header__aside {
    width: 100%;
  }
}
.header-alt .menu_btn {
  float: none;
  flex-shrink: 0;
  position: relative;
  inset: 0;
  width: 13rem;
  margin-right: -10px;
}
@media (max-width: 424px) {
  .header-alt .menu_btn {
    width: 8rem;
  }
}
.header-alt .menu_btn .bar1,
.header-alt .menu_btn .bar2,
.header-alt .menu_btn .bar3 {
  border-radius: 1rem;
  width: 100%;
  height: 2rem;
}
@media (max-width: 424px) {
  .header-alt .menu_btn .bar1,
  .header-alt .menu_btn .bar2,
  .header-alt .menu_btn .bar3 {
    height: 1rem;
  }
}
.header-alt .menu_btn.change .bar1 {
  transform: rotate(-45deg) translate(-1.13rem, 3rem);
}
@media (max-width: 424px) {
  .header-alt .menu_btn.change .bar1 {
    transform: rotate(-45deg) translate(-0.83rem, 1.5rem);
  }
}
.header-alt .menu_btn.change .bar3 {
  transform: rotate(45deg) translate(-0.78rem, -2.63rem);
}
@media (max-width: 424px) {
  .header-alt .menu_btn.change .bar3 {
    transform: rotate(45deg) translate(-0.88rem, -1.65rem);
  }
}
.header-alt .header__logo {
  margin-top: 1rem;
  max-width: 47.9rem;
}
@media (max-width: 1199px) {
  .header-alt .header__logo {
    margin-top: 0;
    max-width: 37.2rem;
  }
}
@media (max-width: 424px) {
  .header-alt .header__logo {
    max-width: 34.5rem;
  }
}
.header-alt .header__content {
  text-align: right;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .header-alt .header__content {
    width: 100%;
    text-align: left;
  }
}
.header-alt .header__contact {
  color: #5EC2E6;
}
.header-alt .header__contact a {
  display: inline-block;
  color: #E73844;
}
.header-alt .header__trusted {
  font-size: 3rem;
  margin-top: 3.3rem;
}
@media (max-width: 1199px) {
  .header-alt .header__trusted {
    font-size: 2.6rem;
    margin-top: 2.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .header-alt .header__trusted {
    display: none;
  }
}
.header-alt .header__trusted:first-child {
  margin-bottom: 0;
}
.header-alt .header__trusted p {
  margin-bottom: 1.8rem;
}
.header-alt .header__trusted p:last-child {
  margin-bottom: 0;
}
.header-alt .header__trusted img {
  max-width: min(23.7rem, 100%);
}
@media (max-width: 1199px) {
  .header-alt .header__trusted img {
    max-width: min(21.5rem, 100%);
  }
}
/*  Header Alt Home  */
.header-alt--home {
  background-color: #E4F3FB;
}
/* ------------------------------------------------------------ *\
	Hero
\* ------------------------------------------------------------ */
.hero {
  background-color: #E4F3FB;
  overflow: hidden;
}
.hero:after {
  content: "";
  display: block;
  height: 2.2rem;
  background: linear-gradient(to bottom, #5EC2E6 33.33%, #FFF 33.33%, #FFF 66.66%, #E73844 66.66%);
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .hero:after {
    height: 0.9rem;
    background: #5EC2E6;
  }
}
.hero .hero__shell {
  position: relative;
  padding-block: 1.5rem 5rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .hero .hero__shell {
    padding-block: 6.5rem 5.65rem;
  }
}
@media (max-width: 424px) {
  .hero .hero__shell {
    padding-block: 4rem 5.5rem;
  }
}
.hero .hero__head {
  max-width: 75%;
}
@media (max-width: 1199px) {
  .hero .hero__head {
    max-width: 100%;
  }
}
.hero .hero__list,
.hero .hero__actions {
  max-width: 55%;
}
@media (max-width: 1199px) {
  .hero .hero__list,
  .hero .hero__actions {
    max-width: 60%;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .hero .hero__head,
  .hero .hero__list,
  .hero .hero__actions {
    position: relative;
    left: 1.3rem;
    max-width: 100%;
  }
}
@media (max-width: 575px) {
  .hero .hero__head,
  .hero .hero__list,
  .hero .hero__actions {
    left: 0;
  }
}
.hero .hero__head {
  color: #5EC2E6;
  margin-bottom: 7.1rem;
}
@media (max-width: 1199px) {
  .hero .hero__head {
    margin-bottom: 5.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .hero .hero__head {
    margin-bottom: 4rem;
  }
}
.hero .hero__head:last-child {
  margin-bottom: 0;
}
.hero .hero__head span {
  color: #E73844;
}
@media (min-width: 575.02px) and (max-width: 767px) {
  .hero .hero__head h1 {
    font-size: 5rem;
  }
}
.hero .hero__list {
  padding-left: 0.55%;
  margin-bottom: 8.4rem;
}
@media (max-width: 1199px) {
  .hero .hero__list {
    margin-bottom: 6rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .hero .hero__list {
    padding-left: 1.4%;
    margin-bottom: 4.4rem;
  }
}
.hero .hero__list:last-child {
  margin-bottom: 0;
}
.hero .hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 3.1rem 2.8rem;
  padding-left: 0.55%;
}
@media (max-width: 1199px) {
  .hero .hero__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .hero .hero__actions {
    padding-left: 0.95%;
  }
}
@media (max-width: 424px) {
  .hero .hero__actions {
    gap: 2.4rem;
  }
}
.hero .hero__btn {
  min-width: 28.6rem;
}
@media (max-width: 1399px) {
  .hero .hero__btn {
    min-width: 24rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .hero .hero__btn {
    min-width: 17.3rem;
  }
}
@media (max-width: 424px) {
  .hero .hero__btn {
    min-width: initial;
  }
}
@media (min-width: 424.02px) and (max-width: 767px) {
  .hero .hero__btn:last-child {
    font-size: 2.4rem;
    padding-block: 1.5rem;
    margin-left: 1.2%;
  }
}
.hero .hero__image {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  position: absolute;
  inset: 0 2.7% 0 auto;
  max-width: 42%;
}
@media (max-width: 1199px) {
  .hero .hero__image {
    max-width: 50%;
    right: -5%;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .hero .hero__image {
    right: -15.1%;
    max-width: min(68.9%, 40rem);
  }
}
@media (max-width: 424px) {
  .hero .hero__image {
    right: -18%;
  }
}
.hero .hero__image img {
  max-height: 100%;
  width: auto;
}
/* ------------------------------------------------------------ *\
	List Ticks
\* ------------------------------------------------------------ */
.list-ticks {
  --line-height: 1.2;
  --icon-size: 4.2rem;
  --icon-gap: 2.8rem;
  font-size: 4.2rem;
}
@media (max-width: 1399px) {
  .list-ticks {
    font-size: 3.6rem;
  }
}
@media (max-width: 1199px) {
  .list-ticks {
    --icon-size: 3rem;
    --icon-gap: 2rem;
    font-size: 3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .list-ticks {
    --icon-size: 2.2rem;
    --icon-gap: 1.3rem;
    font-size: 2.3rem;
  }
}
.list-ticks ul {
  list-style: none;
}
.list-ticks li {
  position: relative;
  padding-left: calc(var(--icon-size) + var(--icon-gap));
  margin-bottom: 1.7rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .list-ticks li {
    margin-bottom: 0.9rem;
  }
}
.list-ticks li:last-child {
  margin-bottom: 0;
}
.list-ticks li:before {
  content: "";
  position: absolute;
  top: calc(0.5em * var(--line-height));
  transform: translateY(-50%);
  left: 0;
  display: block;
  width: var(--icon-size);
  aspect-ratio: 1;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  background-image: url("../assets/images/ico-tick.png");
}
/* ------------------------------------------------------------ *\
	Logo
\* ------------------------------------------------------------ */
.logo {
  position: relative;
  display: inline-block;
  vertical-align: middle;
  text-decoration: none;
  font-size: 0;
  line-height: 0;
  text-indent: -4004px;
}
.logo > img {
  display: block;
  width: 100%;
}
/* ------------------------------------------------------------ *\
	Section Accordion
\* ------------------------------------------------------------ */
.section-accordion {
  --shell-width: 168.7rem;
  margin-block: 11.6rem;
}
@media (max-width: 1199px) {
  .section-accordion {
    margin-block: 7.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-accordion {
    --shell-gutter: 2.8rem;
    margin-block: 3.4rem;
  }
}
.section-accordion .section__head {
  color: #5EC2E6;
  text-align: center;
  margin-bottom: 13.3rem;
}
@media (max-width: 1199px) {
  .section-accordion .section__head {
    margin-bottom: 10rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-accordion .section__head {
    margin-bottom: 7.3rem;
  }
}
.section-accordion .section__head:last-child {
  margin-bottom: 0;
}
.section-accordion .section__head span {
  color: #E73844;
}
@media (min-width: 575.02px) and (max-width: 767px) {
  .section-accordion .section__head h2 {
    font-size: 5rem;
    line-height: 1.43;
  }
}
/* ------------------------------------------------------------ *\
	Section Callout
\* ------------------------------------------------------------ */
.section-callout {
  --shell-width: 150.5rem;
  color: #FFF;
  background-color: #E73844;
}
.section-callout:before {
  content: "";
  display: block;
  height: 1.4rem;
  background: linear-gradient(to bottom, #5EC2E6 50%, #FFF 50%);
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-callout:before {
    height: 0.9rem;
    background: #5EC2E6;
  }
}
.section-callout:after {
  content: "";
  display: block;
  height: 1.5rem;
  background: linear-gradient(to bottom, #FFF 50%, #5EC2E6 50%);
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-callout:after {
    height: 0.9rem;
    background: #5EC2E6;
  }
}
.section-callout .section__inner {
  display: grid;
  grid-template-columns: 62% 1fr;
  align-items: center;
  grid-gap: 14.1rem 1.6rem;
  padding-left: 2%;
  padding-block: 8.7rem 5.8rem;
}
@media (max-width: 1399px) {
  .section-callout .section__inner {
    padding-left: 0;
    grid-template-columns: 60% 1fr;
    grid-gap: 14.1rem 3.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-callout .section__inner {
    grid-template-columns: 100%;
    padding-block: 7.1rem 8.4rem;
  }
}
@media (max-width: 424px) {
  .section-callout .section__inner {
    grid-gap: 7.5rem;
  }
}
.section-callout .section__head {
  margin-bottom: 7.1rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-callout .section__head {
    text-align: center;
    margin-bottom: 9.4rem;
  }
}
.section-callout .section__head:last-child {
  margin-bottom: 0;
}
.section-callout .section__head span {
  color: #5EC2E6;
}
.section-callout .section__entry {
  font-size: 3.6rem;
  padding-right: 5%;
  margin-bottom: 6.6rem;
}
@media (max-width: 1399px) {
  .section-callout .section__entry {
    font-size: 3.2rem;
  }
}
@media (max-width: 1199px) {
  .section-callout .section__entry {
    font-size: 2.8rem;
    padding-right: 0;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-callout .section__entry {
    font-size: 2.4rem;
    padding-inline: 0.8rem;
    margin-bottom: 7.2rem;
  }
}
.section-callout .section__entry:last-child {
  margin-bottom: 0;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-callout .section__actions {
    text-align: center;
  }
}
.section-callout .section__btn {
  font-size: 3rem;
  border-radius: 4rem;
  padding: 2.25rem 3.9rem;
}
.section-callout .section__image {
  padding-top: 0.8rem;
}
@media (max-width: 1199px) {
  .section-callout .section__image {
    padding-top: 0;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-callout .section__image {
    padding-inline: 3%;
  }
}
.section-callout .section__image img {
  border-radius: 50%;
}
/* ------------------------------------------------------------ *\
	Section Form
\* ------------------------------------------------------------ */
.section-contact-form {
  position: relative;
  overflow: hidden;
  background: #e8f6f9;
  font-family: "Ariel", sans-serif;
}
.section-contact-form:before {
  content: "";
  display: block;
  height: 2.1rem;
  background: linear-gradient(to bottom, #5EC2E6 33.33%, #FFF 33.33%, #FFF 66.66%, #E73844 66.66%);
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form:before {
    height: 0.9rem;
    background: #5EC2E6;
  }
}
.section-contact-form:after {
  content: "";
  display: block;
  height: 1.8rem;
  background: linear-gradient(to bottom, #E73844 50%, #FFF 50%);
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form:after {
    height: 0.9rem;
    background: #E73844;
  }
}
.section-contact-form h4 {
  font-size: 2.5rem;
  letter-spacing: 0.008em;
  line-height: 1;
  font-family: "AvenirNext LT Pro", sans-serif;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form h4 {
    font-size: 2.25rem;
  }
}
.section-contact-form .section__inner {
  max-width: 131.75rem;
  margin: 0 auto;
  padding: 5.625rem 0 7.5rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__inner {
    padding: 4rem 0;
  }
}
.section-contact-form .section__header {
  padding: 2.5rem 2.25rem 2.38rem;
  color: #2f3a8c;
  background: #b0e1f2;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__header {
    padding: 2rem 1.5rem;
  }
}
.section-contact-form .section__content-head {
  background: #5ec2e6;
  padding: 2.5rem 2.25rem 2.38rem;
  color: #FFF;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__content-head {
    padding: 2rem 1.5rem;
  }
}
.section-contact-form .section__content-body {
  padding: 3.62rem 2.62rem 4.62rem;
  font-size: 1.88rem;
  line-height: 1.2;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__content-body {
    font-size: 1.5rem;
    padding: 2.5rem 1.88rem;
  }
}
.section-contact-form .section__content-body h6 {
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  margin-bottom: 1.38rem;
}
.section-contact-form .section__content-body p {
  margin-bottom: 0;
}
.section-contact-form .section__content-body p strong {
  font-size: 1.88rem;
  letter-spacing: 0.02em;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__content-body p strong {
    font-size: 1.6rem;
  }
}
.section-contact-form .section__content-body strong span {
  margin-left: 1.25rem;
}
.section-contact-form .section__content--size1 .section__content-body {
  padding: 4.12rem 0.25rem 4.62rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__content--size1 .section__content-body {
    padding: 2.5rem 1.88rem;
  }
}
.section-contact-form .section__content--size1 .section__row + .section__row {
  margin-top: 1.88rem;
}
.section-contact-form .section__row + .section__row {
  margin-top: 1.29rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__row + .section__row {
    margin-top: 2.4rem;
  }
}
.section-contact-form .section__cols {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6.62rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__cols {
    display: block;
  }
}
.section-contact-form .section__col {
  flex: 1;
}
.section-contact-form .section__col--size1 {
  flex: 0 0 30.75rem;
  text-align: right;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__col--size1 {
    text-align: left;
    margin-bottom: 1rem;
  }
}
.section-contact-form .section__col--size2 {
  flex: 0 0 19.5rem;
  text-align: right;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__col--size2 {
    text-align: left;
    margin-bottom: 1rem;
  }
}
.section-contact-form .section__cols--size1 {
  gap: 0;
}
.section-contact-form .section__fields-alt {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
}
.section-contact-form .section__fields-alt > span {
  flex: 0 1 auto;
  margin: 0 0.5rem;
}
.section-contact-form .section__fields-alt .section__field-alt {
  flex: 0 0 3.88rem;
  max-width: 3.88rem;
}
.section-contact-form .section__field-alt {
  max-width: 25rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__field-alt {
    max-width: 100%;
  }
}
.section-contact-form .section__field-alt--big {
  max-width: 29.25rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__field-alt--big {
    max-width: 100%;
  }
}
.section-contact-form .section__direct-debit {
  align-self: flex-end;
  padding-bottom: 0.88rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__direct-debit {
    padding-bottom: 0;
    margin-top: 2.5rem;
  }
}
.section-contact-form .section__direct-debit img {
  margin-bottom: 1.62rem;
}
.section-contact-form .section__accordion {
  margin-top: 1.25rem;
}
.section-contact-form .section__accordion:first-child {
  margin: 0;
}
.section-contact-form .section__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: center;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__grid {
    display: block;
  }
}
.section-contact-form .section__foot {
  margin-top: 4.75rem;
  font-size: 1.75rem;
  letter-spacing: 0.04em;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-contact-form .section__foot {
    font-size: 1.5rem;
    margin-top: 3rem;
  }
}
.section-contact-form .section__foot-inner {
  padding: 0 2.25rem;
}
.section-contact-form .section__foot-inner h4 {
  margin-bottom: 2.25rem;
  letter-spacing: 0;
}
.section-contact-form .section__foot-inner p {
  margin-bottom: 1.25rem;
}
.section-contact-form .section__foot-actions {
  margin-top: 3.62rem;
}
.section-contact-form .section__btn {
  color: #FFF;
  background: #e83843;
  text-align: center;
  display: block;
  padding: 1.25rem 1.25rem;
  border-radius: 124.88rem;
/*  box-shadow: 0 0.25rem 0 0.12rem rgba(0, 0, 0, 0.6); */
  transition: box-shadow 0.4s;
}
@media (hover: hover) and (pointer: fine) {
  .section-contact-form .section__btn:hover {
    box-shadow: none;
  }
}
/* ------------------------------------------------------------ *\
	Section Form
\* ------------------------------------------------------------ */
.section-form {
  --shell-width: 174rem;
  overflow: hidden;
}
.section-form:before {
  content: "";
  display: block;
  height: 2.2rem;
  background: linear-gradient(to bottom, #5EC2E6 33.33%, #FFF 33.33%, #FFF 66.66%, #E73844 66.66%);
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-form:before {
    height: 0.9rem;
    background: #5EC2E6;
  }
}
.section-form:after {
  content: "";
  display: block;
  height: 1.8rem;
  background: linear-gradient(to bottom, #E73844 50%, #FFF 50%);
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-form:after {
    height: 0.9rem;
    background: #E73844;
  }
}
.section-form .section__inner {
  display: grid;
  grid-template-columns: 53.9% 1fr;
  grid-gap: 0 6rem;
}
@media (max-width: 1199px) {
  .section-form .section__inner {
    grid-template-columns: 50% 1fr;
    grid-gap: 0 3%;
  }
}
@media (max-width: 1023px) {
  .section-form .section__inner {
    grid-template-columns: 100%;
  }
}
.section-form .section__content {
  padding-block: 7.8rem 8.5rem;
}
.section-form .section__head {
  color: #5EC2E6;
  margin-bottom: 2rem;
}
.section-form .section__head:after {
  content: "";
  display: block;
  height: 0.8rem;
  background: linear-gradient(to right, #5EC2E6 25%, #E73844 15%);
  margin-left: 1rem;
  margin-top: 2.9rem;
}

.section-form .section__head2 {
  color: #5EC2E6;
  margin-bottom: 2rem;
}
.section-form .section__head2:after {
  content: "";
  display: block;
  height: 0.8rem;
  background: linear-gradient(to right, #5EC2E6 50%, #E73844 15%);
  margin-left: 1rem;
  margin-top: 2.9rem;
}

.section-form .section__head3 {
  color: #5EC2E6;
  margin-bottom: 2rem;
}
.section-form .section__head3:after {
  content: "";
  display: block;
  height: 0.8rem;
  background: linear-gradient(to right, #5EC2E6 75%, #E73844 15%);
  margin-left: 1rem;
  margin-top: 2.9rem;
}
@media (max-width: 1399px) {
  .section-form .section__head:after {
    margin-left: 0;
  }
}
.section-form .section__head span {
  color: #E73844;
}
.section-form .section__form {
  padding-inline: 0.6% 3.5%;
}
@media (max-width: 1399px) {
  .section-form .section__form {
    padding-inline: 0;
  }
}
.section-form .section__aside {
  position: relative;
  isolation: isolate;
  padding-left: 10.9%;
  padding-block: 11.2rem 10rem;
}
@media (max-width: 1399px) {
  .section-form .section__aside {
    padding-left: 7.5%;
  }
}
@media (max-width: 1199px) {
  .section-form .section__aside {
    padding-block: 9rem;
  }
}
@media (max-width: 1023px) {
  .section-form .section__aside {
    padding-left: 0;
    padding-block: 7.5rem;
  }
}
.section-form .section__aside:before {
  content: "";
  z-index: -1;
  position: absolute;
  inset: 0 auto 0 0;
  width: max(100% + (100vw - var(--shell-width)) / 2, 100% + var(--shell-gutter));
  background-color: #E4F3FB;
}
@media (max-width: 1023px) {
  .section-form .section__aside:before {
    width: auto;
    inset: 0 calc(var(--shell-gutter) * -1);
  }
}
.section-form .section__entry {
  font-size: 3rem;
  margin-bottom: 6.8rem;
}
@media (max-width: 1199px) {
  .section-form .section__entry {
    font-size: 2.8rem;
    margin-bottom: 5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-form .section__entry {
    font-size: 2.6rem;
  }
}
@media (max-width: 424px) {
  .section-form .section__entry {
    font-size: 2.4rem;
  }
}
.section-form .section__entry:last-child {
  margin-bottom: 0;
}
.section-form .section__entry span,
.section-form .section__entry strong {
  color: #E73844;
}
.section-form .section__list {
  --icon-gap: 1.9rem;
  font-size: 3.2rem;
  padding-left: 2.8%;
  margin-bottom: 9rem;
}
@media (max-width: 1199px) {
  .section-form .section__list {
    --icon-size: 3rem;
    --icon-gap: 2rem;
    font-size: 2.7rem;
    margin-bottom: 6.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-form .section__list {
    --icon-size: 2.2rem;
    --icon-gap: 1.3rem;
    font-size: 2.3rem;
  }
}
.section-form .section__list:last-child {
  margin-bottom: 0;
}
.section-form .section__list li {
  margin-bottom: 1.1rem;
}
.section-form .section__list li:last-child {
  margin-bottom: 0;
}
.section-form .section__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 2.1rem;
}
@media (max-width: 1399px) {
  .section-form .section__actions {
    gap: 1.3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-form .section__actions {
    flex-direction: column;
    align-items: flex-start;
  }
}
.section-form .section__btn {
  font-size: 2.2rem;
  padding: 1.3rem 2.2rem;
  gap: 0 1.4rem;
}
@media (max-width: 1399px) {
  .section-form .section__btn {
    font-size: 2rem;
    gap: 0 1rem;
    padding: 1rem 2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-form .section__btn {
    font-size: 1.8rem;
    gap: 0 0.6rem;
    padding: 0.8rem 1.8rem;
  }
}
.section-form .section__btn:after {
  width: 2.6rem;
}
/* ------------------------------------------------------------ *\
	Section Steps
\* ------------------------------------------------------------ */
.section-steps {
  --shell-width: 150.5rem;
  text-align: center;
  overflow: hidden;
  margin-block: 6.8rem 6.2rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-steps {
    margin-block: 7.2rem 7.7rem;
  }
}
.section-steps .section__head {
  color: #5EC2E6;
  margin-bottom: 4.2rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-steps .section__head {
    margin-bottom: 8.3rem;
  }
}
.section-steps .section__head:last-child {
  margin-bottom: 0;
}
.section-steps .section__head span {
  color: #E73844;
}
.section-steps .section__steps {
  margin-bottom: 6rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-steps .section__steps {
    margin-bottom: 8.8rem;
  }
}
.section-steps .section__steps:last-child {
  margin-bottom: 0;
}
.section-steps .section__btn {
  padding-inline: 5rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-steps .section__btn {
    font-size: 3.75rem;
    border-radius: 4rem;
    padding: 2.5rem 5.3rem;
  }
}
@media (max-width: 575px) {
  .section-steps .section__btn {
    font-size: 3.4rem;
  }
}
@media (max-width: 424px) {
  .section-steps .section__btn {
    font-size: 3rem;
    padding: 2rem 3.2rem;
  }
}
/* ------------------------------------------------------------ *\
	Section Table
\* ------------------------------------------------------------ */
.section-table {
  --shell-width: 154rem;
  margin-block: 14.5rem 24.9rem;
}
@media (max-width: 1199px) {
  .section-table {
    margin-block: 10rem 15rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-table {
    margin-block: 5.4rem 0;
  }
}
.section-table .section__head {
  color: #5EC2E6;
  text-align: center;
  margin-bottom: 7.8rem;
}
@media (max-width: 1199px) {
  .section-table .section__head {
    margin-bottom: 6rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-table .section__head {
    margin-bottom: 4.1rem;
  }
}
.section-table .section__head:last-child {
  margin-bottom: 0;
}
@media (min-width: 575.02px) and (max-width: 767px) {
  .section-table .section__head h2 {
    font-size: 4.7rem;
  }
}
.section-table .section__head span {
  color: #E73844;
}
.section-table .section__content {
  border-radius: 1.8rem;
  background-color: #E4F3FB;
  padding: 5.4rem 4.3rem 4.1rem;
}
@media (max-width: 1199px) {
  .section-table .section__content {
    padding: 4rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-table .section__content {
    border-radius: 0;
    margin-inline: calc(var(--shell-gutter) * -1);
    padding-inline: var(--shell-gutter);
    padding-block: 1.5rem 3.5rem;
  }
}
.section-table .section__table {
  margin-bottom: 6rem;
}
@media (max-width: 1199px) {
  .section-table .section__table {
    margin-bottom: 5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-table .section__table {
    margin-inline: calc(var(--shell-gutter) / -2);
    margin-bottom: 4rem;
  }
}
.section-table .section__table:last-child {
  margin-bottom: 0;
}
.section-table .section__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 3rem 5rem;
}
@media (max-width: 1199px) {
  .section-table .section__actions {
    gap: 3rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-table .section__actions {
    gap: 2.9rem 3.1rem;
    padding-inline: 5.5%;
  }
}
@media (max-width: 575px) {
  .section-table .section__actions {
    gap: 3rem 1rem;
  }
}
@media (max-width: 424px) {
  .section-table .section__actions {
    padding-inline: 2.5%;
  }
}
.section-table .section__btn {
  font-size: 3rem;
  min-width: 22.6rem;
  padding: 1.6rem 3rem;
}
@media (max-width: 1399px) {
  .section-table .section__btn {
    font-size: 2.7rem;
    padding: 1.4rem 2.6rem;
  }
}
@media (max-width: 1199px) {
  .section-table .section__btn {
    font-size: 2.4rem;
    min-width: initial;
    padding: 1.2rem 2.2rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-table .section__btn {
    font-size: 1.8rem;
    padding: 1rem 1.8rem;
  }
}
@media (max-width: 424px) {
  .section-table .section__btn {
    width: 100%;
  }
}
.section-table .section__btn--end {
  margin-left: auto;
  padding: 2rem 3rem;
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .section-table .section__btn--end {
    padding: 1.2rem 2.4rem;
    margin-left: 0.5rem;
  }
}
@media (max-width: 424px) {
  .section-table .section__btn--end {
    margin-left: auto;
    order: -1;
  }
}
/* ------------------------------------------------------------ *\
  Shell
\* ------------------------------------------------------------ */
:root {
  --shell-width: 171.7rem;
  --shell-gutter: 2rem;
}
.shell {
  width: min(var(--shell-width), 100% - var(--shell-gutter) * 2);
  margin-inline: auto;
}
/*  Shell Fluid  */
.shell--fluid {
  --shell-width: 100%;
}
/* ------------------------------------------------------------ *\
	Step
\* ------------------------------------------------------------ */
.step {
  --icon-offset: 4.3rem;
  --icon-height: 12.1rem;
  --padding: 3.6rem;
  --padding-top: 1.5rem;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  border-radius: 1.8rem;
  min-height: 45.3rem;
  background-color: #E4F3FB;
  padding: var(--padding);
  padding-top: calc(var(--icon-height) - var(--icon-offset) + var(--padding-top));
  margin-top: var(--icon-offset);
}
@media (max-width: 1199px) {
  .step {
    --icon-offset: 3.7rem;
    --icon-height: 11rem;
    --padding: 2rem;
    min-height: 40rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .step {
    --icon-offset: 3.3rem;
    --icon-height: 9.3rem;
    --padding-top: 0.8rem;
    --padding: 2.4rem;
    min-height: 35.2rem;
    max-width: min(34.6rem, 100%);
    margin-inline: auto;
  }
}
.step .step__icon {
  position: absolute;
  top: calc(var(--icon-offset) * -1);
  left: 50%;
  transform: translateX(-50%);
}
.step .step__icon img {
  width: auto;
  max-height: var(--icon-height);
}
/* ------------------------------------------------------------ *\
	Steps
\* ------------------------------------------------------------ */
.steps {
  --gap: 8.8rem;
}
@media (max-width: 1399px) {
  .steps {
    --gap: 4.7rem;
  }
}
.steps .steps__items {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gap) 0;
  margin-inline: calc(var(--gap) / -2);
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .steps .steps__items {
    margin-inline: 0;
  }
}
.steps .steps__item {
  display: flex;
  flex-direction: column;
  flex: 0 0 33.3333333333%;
  padding-inline: calc(var(--gap) / 2);
}
@media (max-width: 1199px) {
  .steps .steps__item {
    flex: 0 0 50%;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .steps .steps__item {
    display: block;
    flex: 0 0 100%;
    padding-inline: 0;
  }
}
/* ------------------------------------------------------------ *\
	Table
\* ------------------------------------------------------------ */
.table {
  --first-col-size: 46.7%;
  font-size: 3.2rem;
  line-height: 1;
}
@media (max-width: 1399px) {
  .table {
    font-size: 2.5rem;
  }
}
@media (max-width: 1199px) {
  .table {
    font-size: 1.8rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .table {
    font-size: 1.3rem;
  }
}
.table tr:first-child td {
  border-top: none;
}
.table tr:last-child td {
  border-bottom: none;
}
.table td {
  vertical-align: middle;
  padding-block: 1.84rem;
  padding-inline: 3.9rem;
  border-inline: 0.9rem solid #FFF;
  border-block: 0.7rem solid #FFF;
}
@media (max-width: 1199px) {
  .table td {
    padding-block: 1.3rem;
    padding-inline: 2.7rem;
    border-inline-width: 0.6rem;
    border-block-width: 0.5rem;
  }
}
@media (max-width: 767px), screen and (max-width: 812px) and (orientation: landscape) {
  .table td {
    border-inline-width: 0.4rem;
    border-block-width: 0.3rem;
    padding-block: 0.76rem;
    padding-inline: 1.6rem;
  }
}
.table td:nth-child(1) {
  width: var(--first-col-size);
  padding-left: 0rem;
  border-left: none;
  text-align: right;
}
.table td:nth-child(2) {
  width: calc(100% - var(--first-col-size));
  color: #FFF;
  text-align: center;
  background-color: #5EC2E6;
  border-right: none;
}
/* ------------------------------------------------------------ *\
	Wrapper
\* ------------------------------------------------------------ */
.wrapper {
  position: relative;
  min-height: 100vh;
}
/* ------------------------------------------------------------ *\
	Overwrites
\* ------------------------------------------------------------ */
/* ------------------------------------------------------------ *\
	VanillaJS Datepicker Overwrites
\* ------------------------------------------------------------ */
.datepicker {
  color: #000;
  font-size: 16px;
}

.floatright
{
	float: right;
}

.addpadd
{
	padding: 0 40px 0 40px;
}

.prevstep
{
	text-decoration: none;
}

.hidd
{
  display: none;
}