/* roboto-regular - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/roboto-v47-latin-regular.woff2") format("woff2");
}
/* roboto-500 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 500;
  src: url("../fonts/roboto-v47-latin-500.woff2") format("woff2");
}
/* roboto-700 - latin */
@font-face {
  font-display: swap;
  font-family: "Roboto";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/roboto-v47-latin-700.woff2") format("woff2");
}
*,
*:after,
*:before {
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  text-rendering: optimizeSpeed;
}

.clear:before, .clear:after {
  content: " ";
  display: table;
}
.clear:after {
  clear: both;
}

.no-overflow {
  overflow: hidden;
}

.is-hidden {
  display: none;
}

.is-block {
  display: block;
}

.is-inlineblock {
  display: inline-block;
}

.is-relative {
  position: relative;
}

.is-uppercase {
  text-transform: uppercase;
}

.is-left {
  text-align: left;
}

.is-center {
  text-align: center;
}

.is-right {
  text-align: right;
}

.is-justify {
  text-align: justify;
}

.is-capitalized {
  text-transform: capitalize !important;
}

.no-liststyle {
  list-style: none;
}

.light {
  font-weight: normal !important;
}

.bold {
  font-weight: 700 !important;
}

.color-accent {
  color: #114d8f;
  fill: #114d8f;
}

.color-accent-light {
  color: #c3d7dd;
  fill: #c3d7dd;
}

.color-beige {
  color: #d6c9b0;
  fill: #d6c9b0;
}

.color-secondary {
  color: #ffd403;
  fill: #ffd403;
}

.color-light {
  color: #fff;
  fill: #fff;
}

.color-greylight {
  color: #f2f2f2;
  fill: #f2f2f2;
}

.color-grey {
  color: #666;
  fill: #666;
}

.color-bg-accent {
  background: #114d8f;
}

.color-bg-accent-light {
  background: #c3d7dd;
}

.color-bg-accent-light-2 {
  background: #eaf1f3;
}

.color-bg-beige {
  background: #d6c9b0;
}

.color-bg-lightgrey {
  background: #f2f2f2;
}

.color-bg-greysecondary {
  background: #686868;
}

.color-bg-grey {
  background: #454545;
}

.color-bg-light {
  background: #fff !important;
}

.button {
  background: #ffd403;
  text-transform: uppercase;
  color: #114d8f;
  padding: 15px 20px;
  display: inline-block;
  cursor: pointer;
  transition: 0.5s;
  border: none;
  font-weight: 400;
  border-radius: 0;
  margin-bottom: 0;
  margin-top: 20px;
  border-radius: 3px;
  line-height: 1.2;
  font-size: 1.6rem;
  text-align: center;
}
.button b {
  font-weight: 600;
}
@media screen and (min-width: 600px) {
  .button {
    font-size: 2.1rem;
    padding: 15px 50px;
  }
}
@media screen and (max-width: 580px) {
  .button {
    width: 100%;
  }
}
.button:hover {
  text-decoration: none;
  background: rgb(22.41875, 101.54375, 188.58125);
  color: #fff;
}
.button--light:hover {
  background: #fff;
  color: #114d8f;
}

.icon {
  min-width: 20px;
  width: 20px;
  height: 15px;
  display: inline-block;
}

.icon--footer {
  height: 20px;
  margin-top: 3px;
}

.icon--faq {
  height: 20px;
  width: 20px;
  margin-top: 7px;
  margin-right: 20px;
  float: right;
  transition: 0.5s;
}

.icon--open {
  transform: rotate(180deg);
}

.is-flex {
  display: flex;
}

.is-flex--wrap {
  flex-wrap: wrap;
}

.is-flex--column {
  flex-direction: column;
}

.is-flex--start {
  justify-content: flex-start;
}

.is-flex--center {
  justify-content: center;
}

.is-flex--end {
  justify-content: flex-end;
}

.is-flex--between {
  justify-content: space-between;
}

.is-flex--around {
  justify-content: space-around;
}

.is-flex--top {
  align-items: flex-start;
}

.is-flex--bottom {
  align-items: flex-end;
}

.is-flex--middle {
  align-items: center;
}

.is-flex--right {
  align-items: flex-end;
}

.is-flexitem {
  flex: 1;
}

.is-flexitem--start {
  align-self: flex-start;
}

.is-flexitem--end {
  align-self: flex-end;
}

.padding-0 {
  padding: 0px;
}

.paddingleft-0 {
  padding-left: 0px;
}

.paddingright-0 {
  padding-right: 0px;
}

.paddingbottom-0 {
  padding-bottom: 0px;
}

.paddingtop-0 {
  padding-top: 0px;
}

.margin-0 {
  margin: 0px;
}

.marginleft-0 {
  margin-left: 0px;
}

.marginright-0 {
  margin-right: 0px;
}

.marginbottom-0 {
  margin-bottom: 0px;
}

.margintop-0 {
  margin-top: 0px !important;
}

.padding-1 {
  padding: 5px;
}

.paddingleft-1 {
  padding-left: 5px;
}

.paddingright-1 {
  padding-right: 5px;
}

.paddingbottom-1 {
  padding-bottom: 5px;
}

.paddingtop-1 {
  padding-top: 5px;
}

.margin-1 {
  margin: 5px;
}

.marginleft-1 {
  margin-left: 5px;
}

.marginright-1 {
  margin-right: 5px;
}

.marginbottom-1 {
  margin-bottom: 5px;
}

.margintop-1 {
  margin-top: 5px !important;
}

.padding-2 {
  padding: 10px;
}

.paddingleft-2 {
  padding-left: 10px;
}

.paddingright-2 {
  padding-right: 10px;
}

.paddingbottom-2 {
  padding-bottom: 10px;
}

.paddingtop-2 {
  padding-top: 10px;
}

.margin-2 {
  margin: 10px;
}

.marginleft-2 {
  margin-left: 10px;
}

.marginright-2 {
  margin-right: 10px;
}

.marginbottom-2 {
  margin-bottom: 10px;
}

.margintop-2 {
  margin-top: 10px !important;
}

.padding-3 {
  padding: 15px;
}

.paddingleft-3 {
  padding-left: 15px;
}

.paddingright-3 {
  padding-right: 15px;
}

.paddingbottom-3 {
  padding-bottom: 15px;
}

.paddingtop-3 {
  padding-top: 15px;
}

.margin-3 {
  margin: 15px;
}

.marginleft-3 {
  margin-left: 15px;
}

.marginright-3 {
  margin-right: 15px;
}

.marginbottom-3 {
  margin-bottom: 15px;
}

.margintop-3 {
  margin-top: 15px !important;
}

.padding-4 {
  padding: 20px;
}

.paddingleft-4 {
  padding-left: 20px;
}

.paddingright-4 {
  padding-right: 20px;
}

.paddingbottom-4 {
  padding-bottom: 20px;
}

.paddingtop-4 {
  padding-top: 20px;
}

.margin-4 {
  margin: 20px;
}

.marginleft-4 {
  margin-left: 20px;
}

.marginright-4 {
  margin-right: 20px;
}

.marginbottom-4 {
  margin-bottom: 20px;
}

.margintop-4 {
  margin-top: 20px !important;
}

.padding-5 {
  padding: 25px;
}

.paddingleft-5 {
  padding-left: 25px;
}

.paddingright-5 {
  padding-right: 25px;
}

.paddingbottom-5 {
  padding-bottom: 25px;
}

.paddingtop-5 {
  padding-top: 25px;
}

.margin-5 {
  margin: 25px;
}

.marginleft-5 {
  margin-left: 25px;
}

.marginright-5 {
  margin-right: 25px;
}

.marginbottom-5 {
  margin-bottom: 25px;
}

.margintop-5 {
  margin-top: 25px !important;
}

.padding-6 {
  padding: 30px;
}

.paddingleft-6 {
  padding-left: 30px;
}

.paddingright-6 {
  padding-right: 30px;
}

.paddingbottom-6 {
  padding-bottom: 30px;
}

.paddingtop-6 {
  padding-top: 30px;
}

.margin-6 {
  margin: 30px;
}

.marginleft-6 {
  margin-left: 30px;
}

.marginright-6 {
  margin-right: 30px;
}

.marginbottom-6 {
  margin-bottom: 30px;
}

.margintop-6 {
  margin-top: 30px !important;
}

.padding-7 {
  padding: 35px;
}

.paddingleft-7 {
  padding-left: 35px;
}

.paddingright-7 {
  padding-right: 35px;
}

.paddingbottom-7 {
  padding-bottom: 35px;
}

.paddingtop-7 {
  padding-top: 35px;
}

.margin-7 {
  margin: 35px;
}

.marginleft-7 {
  margin-left: 35px;
}

.marginright-7 {
  margin-right: 35px;
}

.marginbottom-7 {
  margin-bottom: 35px;
}

.margintop-7 {
  margin-top: 35px !important;
}

.padding-8 {
  padding: 40px;
}

.paddingleft-8 {
  padding-left: 40px;
}

.paddingright-8 {
  padding-right: 40px;
}

.paddingbottom-8 {
  padding-bottom: 40px;
}

.paddingtop-8 {
  padding-top: 40px;
}

.margin-8 {
  margin: 40px;
}

.marginleft-8 {
  margin-left: 40px;
}

.marginright-8 {
  margin-right: 40px;
}

.marginbottom-8 {
  margin-bottom: 40px;
}

.margintop-8 {
  margin-top: 40px !important;
}

.padding-9 {
  padding: 45px;
}

.paddingleft-9 {
  padding-left: 45px;
}

.paddingright-9 {
  padding-right: 45px;
}

.paddingbottom-9 {
  padding-bottom: 45px;
}

.paddingtop-9 {
  padding-top: 45px;
}

.margin-9 {
  margin: 45px;
}

.marginleft-9 {
  margin-left: 45px;
}

.marginright-9 {
  margin-right: 45px;
}

.marginbottom-9 {
  margin-bottom: 45px;
}

.margintop-9 {
  margin-top: 45px !important;
}

.padding-10 {
  padding: 50px;
}

.paddingleft-10 {
  padding-left: 50px;
}

.paddingright-10 {
  padding-right: 50px;
}

.paddingbottom-10 {
  padding-bottom: 50px;
}

.paddingtop-10 {
  padding-top: 50px;
}

.margin-10 {
  margin: 50px;
}

.marginleft-10 {
  margin-left: 50px;
}

.marginright-10 {
  margin-right: 50px;
}

.marginbottom-10 {
  margin-bottom: 50px;
}

.margintop-10 {
  margin-top: 50px !important;
}

.padding-11 {
  padding: 55px;
}

.paddingleft-11 {
  padding-left: 55px;
}

.paddingright-11 {
  padding-right: 55px;
}

.paddingbottom-11 {
  padding-bottom: 55px;
}

.paddingtop-11 {
  padding-top: 55px;
}

.margin-11 {
  margin: 55px;
}

.marginleft-11 {
  margin-left: 55px;
}

.marginright-11 {
  margin-right: 55px;
}

.marginbottom-11 {
  margin-bottom: 55px;
}

.margintop-11 {
  margin-top: 55px !important;
}

.padding-12 {
  padding: 60px;
}

.paddingleft-12 {
  padding-left: 60px;
}

.paddingright-12 {
  padding-right: 60px;
}

.paddingbottom-12 {
  padding-bottom: 60px;
}

.paddingtop-12 {
  padding-top: 60px;
}

.margin-12 {
  margin: 60px;
}

.marginleft-12 {
  margin-left: 60px;
}

.marginright-12 {
  margin-right: 60px;
}

.marginbottom-12 {
  margin-bottom: 60px;
}

.margintop-12 {
  margin-top: 60px !important;
}

.padding-13 {
  padding: 65px;
}

.paddingleft-13 {
  padding-left: 65px;
}

.paddingright-13 {
  padding-right: 65px;
}

.paddingbottom-13 {
  padding-bottom: 65px;
}

.paddingtop-13 {
  padding-top: 65px;
}

.margin-13 {
  margin: 65px;
}

.marginleft-13 {
  margin-left: 65px;
}

.marginright-13 {
  margin-right: 65px;
}

.marginbottom-13 {
  margin-bottom: 65px;
}

.margintop-13 {
  margin-top: 65px !important;
}

.padding-14 {
  padding: 70px;
}

.paddingleft-14 {
  padding-left: 70px;
}

.paddingright-14 {
  padding-right: 70px;
}

.paddingbottom-14 {
  padding-bottom: 70px;
}

.paddingtop-14 {
  padding-top: 70px;
}

.margin-14 {
  margin: 70px;
}

.marginleft-14 {
  margin-left: 70px;
}

.marginright-14 {
  margin-right: 70px;
}

.marginbottom-14 {
  margin-bottom: 70px;
}

.margintop-14 {
  margin-top: 70px !important;
}

.padding-15 {
  padding: 75px;
}

.paddingleft-15 {
  padding-left: 75px;
}

.paddingright-15 {
  padding-right: 75px;
}

.paddingbottom-15 {
  padding-bottom: 75px;
}

.paddingtop-15 {
  padding-top: 75px;
}

.margin-15 {
  margin: 75px;
}

.marginleft-15 {
  margin-left: 75px;
}

.marginright-15 {
  margin-right: 75px;
}

.marginbottom-15 {
  margin-bottom: 75px;
}

.margintop-15 {
  margin-top: 75px !important;
}

.padding-16 {
  padding: 80px;
}

.paddingleft-16 {
  padding-left: 80px;
}

.paddingright-16 {
  padding-right: 80px;
}

.paddingbottom-16 {
  padding-bottom: 80px;
}

.paddingtop-16 {
  padding-top: 80px;
}

.margin-16 {
  margin: 80px;
}

.marginleft-16 {
  margin-left: 80px;
}

.marginright-16 {
  margin-right: 80px;
}

.marginbottom-16 {
  margin-bottom: 80px;
}

.margintop-16 {
  margin-top: 80px !important;
}

.padding-17 {
  padding: 85px;
}

.paddingleft-17 {
  padding-left: 85px;
}

.paddingright-17 {
  padding-right: 85px;
}

.paddingbottom-17 {
  padding-bottom: 85px;
}

.paddingtop-17 {
  padding-top: 85px;
}

.margin-17 {
  margin: 85px;
}

.marginleft-17 {
  margin-left: 85px;
}

.marginright-17 {
  margin-right: 85px;
}

.marginbottom-17 {
  margin-bottom: 85px;
}

.margintop-17 {
  margin-top: 85px !important;
}

.padding-18 {
  padding: 90px;
}

.paddingleft-18 {
  padding-left: 90px;
}

.paddingright-18 {
  padding-right: 90px;
}

.paddingbottom-18 {
  padding-bottom: 90px;
}

.paddingtop-18 {
  padding-top: 90px;
}

.margin-18 {
  margin: 90px;
}

.marginleft-18 {
  margin-left: 90px;
}

.marginright-18 {
  margin-right: 90px;
}

.marginbottom-18 {
  margin-bottom: 90px;
}

.margintop-18 {
  margin-top: 90px !important;
}

.padding-19 {
  padding: 95px;
}

.paddingleft-19 {
  padding-left: 95px;
}

.paddingright-19 {
  padding-right: 95px;
}

.paddingbottom-19 {
  padding-bottom: 95px;
}

.paddingtop-19 {
  padding-top: 95px;
}

.margin-19 {
  margin: 95px;
}

.marginleft-19 {
  margin-left: 95px;
}

.marginright-19 {
  margin-right: 95px;
}

.marginbottom-19 {
  margin-bottom: 95px;
}

.margintop-19 {
  margin-top: 95px !important;
}

.padding-20 {
  padding: 100px;
}

.paddingleft-20 {
  padding-left: 100px;
}

.paddingright-20 {
  padding-right: 100px;
}

.paddingbottom-20 {
  padding-bottom: 100px;
}

.paddingtop-20 {
  padding-top: 100px;
}

.margin-20 {
  margin: 100px;
}

.marginleft-20 {
  margin-left: 100px;
}

.marginright-20 {
  margin-right: 100px;
}

.marginbottom-20 {
  margin-bottom: 100px;
}

.margintop-20 {
  margin-top: 100px !important;
}

.top-0 {
  top: 0px;
}

.left-0 {
  left: 0px;
}

.right-0 {
  right: 0px;
}

.bottom-0 {
  bottom: 0px;
}

.top-1 {
  top: 5px;
}

.left-1 {
  left: 5px;
}

.right-1 {
  right: 5px;
}

.bottom-1 {
  bottom: 5px;
}

.top-2 {
  top: 10px;
}

.left-2 {
  left: 10px;
}

.right-2 {
  right: 10px;
}

.bottom-2 {
  bottom: 10px;
}

.top-3 {
  top: 15px;
}

.left-3 {
  left: 15px;
}

.right-3 {
  right: 15px;
}

.bottom-3 {
  bottom: 15px;
}

.top-4 {
  top: 20px;
}

.left-4 {
  left: 20px;
}

.right-4 {
  right: 20px;
}

.bottom-4 {
  bottom: 20px;
}

.top-5 {
  top: 25px;
}

.left-5 {
  left: 25px;
}

.right-5 {
  right: 25px;
}

.bottom-5 {
  bottom: 25px;
}

.top-6 {
  top: 30px;
}

.left-6 {
  left: 30px;
}

.right-6 {
  right: 30px;
}

.bottom-6 {
  bottom: 30px;
}

.top-7 {
  top: 35px;
}

.left-7 {
  left: 35px;
}

.right-7 {
  right: 35px;
}

.bottom-7 {
  bottom: 35px;
}

.top-8 {
  top: 40px;
}

.left-8 {
  left: 40px;
}

.right-8 {
  right: 40px;
}

.bottom-8 {
  bottom: 40px;
}

.top-9 {
  top: 45px;
}

.left-9 {
  left: 45px;
}

.right-9 {
  right: 45px;
}

.bottom-9 {
  bottom: 45px;
}

.top-10 {
  top: 50px;
}

.left-10 {
  left: 50px;
}

.right-10 {
  right: 50px;
}

.bottom-10 {
  bottom: 50px;
}

.top-11 {
  top: 55px;
}

.left-11 {
  left: 55px;
}

.right-11 {
  right: 55px;
}

.bottom-11 {
  bottom: 55px;
}

.top-12 {
  top: 60px;
}

.left-12 {
  left: 60px;
}

.right-12 {
  right: 60px;
}

.bottom-12 {
  bottom: 60px;
}

.top-13 {
  top: 65px;
}

.left-13 {
  left: 65px;
}

.right-13 {
  right: 65px;
}

.bottom-13 {
  bottom: 65px;
}

.top-14 {
  top: 70px;
}

.left-14 {
  left: 70px;
}

.right-14 {
  right: 70px;
}

.bottom-14 {
  bottom: 70px;
}

.top-15 {
  top: 75px;
}

.left-15 {
  left: 75px;
}

.right-15 {
  right: 75px;
}

.bottom-15 {
  bottom: 75px;
}

.top-16 {
  top: 80px;
}

.left-16 {
  left: 80px;
}

.right-16 {
  right: 80px;
}

.bottom-16 {
  bottom: 80px;
}

.top-17 {
  top: 85px;
}

.left-17 {
  left: 85px;
}

.right-17 {
  right: 85px;
}

.bottom-17 {
  bottom: 85px;
}

.top-18 {
  top: 90px;
}

.left-18 {
  left: 90px;
}

.right-18 {
  right: 90px;
}

.bottom-18 {
  bottom: 90px;
}

.top-19 {
  top: 95px;
}

.left-19 {
  left: 95px;
}

.right-19 {
  right: 95px;
}

.bottom-19 {
  bottom: 95px;
}

.top-20 {
  top: 100px;
}

.left-20 {
  left: 100px;
}

.right-20 {
  right: 100px;
}

.bottom-20 {
  bottom: 100px;
}

.headline, h3 {
  position: relative;
  font-size: 30px;
  font-weight: 400;
  margin: 0;
  line-height: 1.2;
  padding-bottom: 15px;
  margin-bottom: 20px;
  text-transform: uppercase;
}
.headline b, h3 b {
  font-weight: 700;
}
@media screen and (max-width: 860px) {
  .headline, h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 640px) {
  .headline, h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .headline br, h3 br {
    display: none;
  }
}

.headline--small {
  font-size: 16px;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}
@media screen and (max-width: 600px) {
  .headline--small {
    font-size: 1.7rem;
  }
}

.headline--big {
  font-size: 35px;
  text-transform: uppercase;
  margin: 0;
  line-height: 1.2;
  font-weight: 700;
}

.headline--mid {
  font-size: 25px;
  margin: 0;
  font-weight: 700;
  line-height: 1.2;
}
.headline--mid.is-center {
  margin-bottom: 30px;
  position: relative;
}
.headline--mid.is-center::after {
  left: 50%;
  margin-left: -55px;
  content: "";
  width: 100px;
  height: 3px;
  background: #fff;
  position: absolute;
  bottom: -30px;
}

.headline--underline {
  position: relative;
  margin-bottom: 50px;
}
.headline--underline::after {
  content: "";
  position: absolute;
  bottom: -15px;
  left: 50%;
  margin-left: -225px;
  width: 450px;
  height: 1px;
  background: rgba(0, 0, 0, 0.4);
}
@media screen and (max-width: 600px) {
  .headline--underline::after {
    margin-left: -130px;
    width: 260px;
  }
}

.text--larger {
  font-size: 110%;
}

.text--secondary {
  font-size: 90%;
}

.text--small {
  font-size: 75%;
}

.line-height--1 {
  line-height: 1.2;
}

.weight-black {
  font-weight: 900;
}

.weight-light {
  font-weight: 400;
}

input,
textarea {
  background: #ebebeb;
  border: 2px solid #ebebeb;
  text-transform: uppercase;
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  padding: 5px 10px;
  margin-bottom: 10px;
  transition: 0.5s;
  line-height: 1.5;
  width: 100%;
  font-size: 16px;
  height: 45px;
}
input:focus,
textarea:focus {
  outline: none;
  border-color: #333;
}

textarea {
  height: 80px;
}
textarea:focus {
  outline: none;
  border-color: #333;
}

input[type=submit] {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  margin: 0;
}

.forms label {
  font-size: 90%;
  font-weight: 400;
  color: #ffd403;
  cursor: pointer;
}
.forms input[type=text] {
  width: 100%;
}
.forms input[type=email] {
  width: 100%;
}
.forms input[type=radio] {
  display: none;
}
.forms input[type=radio] + label {
  color: #595959;
}
.forms input[type=radio]:hover + label {
  color: #114d8f;
}
.forms input[type=radio]:checked + label {
  color: #ffd403;
}
.forms select {
  width: 100%;
  height: 40px;
  margin-top: 7px;
  padding: 0;
}

@media (max-width: 820px) {
  h3:after {
    left: 50% !important;
    margin-left: -55px !important;
  }
}
*,
*:after,
*:before {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-size: 170%;
  line-height: 1.7;
  color: #434343;
  background-color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Roboto", Helvetica, Arial, sans-serif;
  font-weight: 700;
  margin: 0;
  line-height: 1.2;
}

h1 {
  font-size: 48px;
}

h2 {
  font-size: 36px;
  margin-bottom: 40px;
}

h4 {
  font-size: 20px;
  margin-bottom: 10px;
  font-weight: 700;
  text-transform: uppercase;
}

h5 {
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

h6 {
  font-size: 20px;
  font-weight: 400;
  margin-top: 15px;
}

p {
  margin-bottom: 25px;
}

img {
  max-width: 100%;
  vertical-align: middle;
  height: auto;
}

a {
  color: #114d8f;
  text-decoration: none;
  transition: 0.5s;
}

::selection {
  background-color: #2f4278;
  color: #fff;
  text-shadow: none;
}

::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999;
}

::-moz-placeholder {
  /* Firefox 19+ */
  color: #999;
}

:-ms-input-placeholder {
  /* IE 10+ */
  color: #999;
}

:-moz-placeholder {
  /* Firefox 18- */
  color: #999;
}

.wrapper {
  max-width: 1140px;
  padding: 0 25px;
  margin: 0 auto;
  position: relative;
}
.wrapper--min {
  max-width: 1024px;
}
.wrapper--ty {
  max-width: 630px;
}

.header {
  background: #fff;
  padding: 20px 0;
}
.header__logo {
  max-width: 250px;
  padding: 30px 0;
}
.header .contact {
  font-size: 1.8rem;
  text-transform: uppercase;
  line-height: 1.2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.header .contact a {
  font-size: 4rem;
  font-weight: 500;
  color: #114d8f;
}
@media screen and (min-width: 900px) {
  .header .contact {
    padding-right: 65px;
    flex-direction: column;
    gap: 0;
  }
}

@media screen and (max-width: 900px) {
  .header {
    padding-bottom: 15px;
  }
  .header .is-flex {
    flex-direction: column;
    align-items: center;
  }
  .header .contact {
    font-size: 1.5rem;
    padding-top: 10px;
  }
  .header .contact a {
    font-size: 2.3rem;
    font-weight: normal;
    display: inline;
  }
}
.featured {
  background: #617a96;
  background: linear-gradient(90deg, rgb(97, 122, 150) 0%, rgb(36, 68, 105) 100%);
  color: white;
  overflow: hidden;
  padding-top: 50px;
  padding-bottom: 50px;
}
@media screen and (min-width: 1000px) {
  .featured {
    background: url(../images/featured-image.webp) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
@media screen and (max-width: 450px) {
  .featured {
    background-size: contain;
  }
}
.featured__image {
  margin-bottom: 10px;
}
@media screen and (min-width: 1000px) {
  .featured__image {
    display: none;
  }
}
.featured a {
  color: inherit;
  text-decoration: none;
}
.featured .spacer {
  flex: 1;
  min-width: 10%;
}
.featured__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  max-width: 680px;
}
.featured__content h1 {
  text-transform: uppercase;
  font-size: 3rem;
  font-weight: 400;
  border-bottom: 1px solid rgba(255, 255, 255, 0.6);
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.featured__content h1 span {
  font-size: 4.75rem;
  font-weight: 700;
}
.featured__content p {
  font-size: 20px;
  margin: 0;
  padding: 0;
  line-height: 1.3;
}
.featured__content hr {
  width: 100%;
  margin: 20px 0;
  border-color: rgba(255, 255, 255, 0.6);
}
.featured .form {
  position: relative;
  background: #fff;
  color: #434343;
  max-width: 380px;
  min-width: 380px;
  margin: 20px auto 0;
  padding: 10px 20px;
}
.featured .form > p {
  text-transform: uppercase;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1;
  margin: 10px 0;
  border-bottom: 2px solid rgba(0, 0, 0, 0.2);
  padding-bottom: 10px;
  color: #114d8f;
}
.featured .form > p b {
  display: block;
  font-size: 4rem;
  font-weight: 800;
}
@media screen and (max-width: 450px) {
  .featured .form > p {
    font-size: 2rem;
  }
  .featured .form > p b {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1090px) {
  .featured__content h1 {
    font-size: 3.5rem;
  }
  .featured__content h1 span {
    font-size: 5.8rem;
  }
  .featured .headline a {
    color: #ffd403;
  }
}
@media screen and (max-width: 1000px) {
  .featured {
    padding-top: 0;
  }
  .featured .wrapper > .is-flex {
    flex-direction: column-reverse;
  }
  .featured .form {
    width: 100%;
    max-width: none;
    min-width: initial;
  }
  .featured__content {
    padding-top: 50px;
    max-width: none;
  }
}
@media screen and (min-width: 680px) {
  .featured br {
    display: none;
  }
}
.featured--thankyou .is-flex {
  min-height: 500px;
  font-size: 3rem;
}

form {
  padding-top: 15px;
}
form input[type=submit] {
  height: auto;
  margin-bottom: 15px;
  padding: 15px;
  font-size: 19px;
}

.label {
  text-transform: uppercase;
  font-size: 16px;
  margin-bottom: 5px;
}

.form__small {
  font-size: 13px;
  font-style: normal;
  font-weight: 300;
  line-height: 1.1;
  margin: 0 0 10px;
}
.form__small label {
  margin: 0;
}
.form input[type=checkbox] {
  margin: 0 10px;
  padding: 0;
  width: 15px;
}
.form input[type=submit] {
  font-size: 3rem;
}

.testimonials {
  background: url(../images/testimonials-bg.webp) no-repeat;
  background-size: cover;
  background-position: 35% center;
  color: white;
  overflow: hidden;
}
.testimonials .tns-controls > button {
  position: absolute;
  top: 45%;
  transition: all 0.5s;
  background: transparent;
  width: 80px;
  height: 80px;
  z-index: 3;
  border: none;
  opacity: 0.7;
}
.testimonials .tns-controls > button:first-of-type {
  left: -100px;
}
.testimonials .tns-controls > button:last-of-type {
  right: -100px;
}
.testimonials .tns-controls > button:hover {
  opacity: 1;
}
.testimonials .tns-controls .icon--nav {
  fill: #fff;
  width: 50px;
  height: 50px;
}
.testimonials p {
  position: relative;
  margin: 5px 0;
  font-size: 2.3rem;
}
@media screen and (max-width: 750px) {
  .testimonials p {
    font-size: 1.5rem;
  }
}
.testimonials p:last-of-type {
  margin-top: 40px;
  font-size: 1.8rem;
}
.testimonials p:last-of-type::before {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 1px;
  background: rgba(255, 255, 255, 0.5);
  left: 50%;
  top: -20px;
  margin-left: -25px;
}
.testimonials .wrapper {
  max-width: 900px;
}

.tns-outer > button {
  display: none;
}

.tns-nav {
  position: absolute;
  bottom: -40px;
  width: calc(100% - 50px);
}
.tns-nav > button {
  background: transparent;
  width: 15px;
  height: 15px;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 0;
  margin: 0 5px;
}
.tns-nav > button.tns-nav-active {
  background: #fff;
  opacity: 1;
}

.services .is-flex {
  gap: 30px;
}
@media screen and (max-width: 690px) {
  .services .col {
    width: 100%;
  }
}
.services img {
  margin: 10px 0;
}
@media screen and (max-width: 690px) {
  .services .is-flex {
    flex-wrap: wrap;
  }
  .services img {
    width: 100%;
  }
}

.faq__list {
  border-top: 1px solid rgba(0, 0, 0, 0.4);
}
.faq__item {
  display: flex;
  justify-content: space-between;
  flex-direction: row-reverse;
  border-bottom: 1px solid rgba(0, 0, 0, 0.4);
  padding: 30px;
}
@media screen and (max-width: 750px) {
  .faq__item {
    padding: 20px 0;
  }
}
.faq__content {
  padding-right: 30px;
}
.faq__content.active .faq__a {
  max-height: 800px;
  margin-top: 20px;
}
.faq__q {
  flex: 1;
}
.faq__a {
  max-height: 0;
  overflow: hidden;
}
.faq__button {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 4rem;
  line-height: 1;
}
.faq__button .faq__close {
  opacity: 0;
  visibility: hidden;
}
.faq__button.active .faq__open {
  opacity: 0;
  visibility: hidden;
}
.faq__button.active .faq__close {
  opacity: 1;
  visibility: visible;
}
.faq__button a {
  color: #114d8f;
  position: absolute;
}

.js-img-compare {
  aspect-ratio: 1/1;
}

.calltoaction {
  border-top: 10px solid #18416d;
  background-image: url(../images/cta-logo.webp);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 60%;
}

footer {
  background: #d6c9b0;
}
footer .wrapper {
  padding-top: 50px;
  padding-bottom: 50px;
}
footer p {
  margin: 30px 0 0;
}
footer img {
  width: 357px;
}

.thankyou {
  background: url(../images/thank-you.webp) no-repeat;
  background-size: cover;
  background-position: center;
  color: white;
  overflow: hidden;
  padding: 140px 0;
  margin-bottom: 100px;
}
.thankyou h2 {
  font-size: 23px;
  margin-bottom: 20px;
}
.thankyou hr {
  max-width: 75%;
}
@media screen and (max-width: 460px) {
  .thankyou .button {
    font-size: 18px;
    padding: 15px;
  }
}

.images-compare-container {
  display: inline-block;
  position: relative;
  overflow: hidden;
}

.images-compare-before {
  will-change: clip;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  pointer-events: none;
  overflow: hidden;
}

.images-compare-after {
  pointer-events: none;
}

.images-compare-before img,
.images-compare-after img {
  max-width: 100%;
  height: auto;
  display: block;
}

.images-compare-separator {
  position: absolute;
  background: white;
  height: 100%;
  width: 1px;
  z-index: 4;
  left: 0;
  top: 0;
}

.images-compare-handle {
  height: 42px;
  width: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  border: 3px solid white;
  -webkit-border-radius: 1000px;
  -moz-border-radius: 1000px;
  border-radius: 1000px;
  -webkit-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
  -moz-box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
  box-shadow: 0 0 12px rgba(51, 51, 51, 0.5);
  z-index: 3;
  background: rgba(0, 0, 0, 0.7);
  cursor: pointer;
}

.images-compare-left-arrow,
.images-compare-right-arrow {
  width: 0;
  height: 0;
  border: 6px inset transparent;
  position: absolute;
  top: 50%;
  margin-top: -6px;
}

.images-compare-left-arrow {
  border-right: 6px solid white;
  left: 50%;
  margin-left: -17px;
}

.images-compare-right-arrow {
  border-left: 6px solid white;
  right: 50%;
  margin-right: -17px;
}

.images-compare-label {
  font-family: sans-serif;
  text-transform: uppercase;
  font-weight: bold;
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 1;
  color: rgba(0, 0, 0, 0.4);
  background: rgba(255, 255, 255, 0.7);
  padding: 10px;
  border-radius: 5px;
  pointer-events: none;
  display: none;
}

.images-compare-container .images-compare-label {
  display: inherit;
}

.images-compare-before .images-compare-label {
  left: 10px;
}

.images-compare-after .images-compare-label {
  left: auto;
  right: 10px;
}

.beforeafter .wrapper {
  gap: 100px;
}
@media screen and (max-width: 940px) {
  .beforeafter .wrapper {
    flex-direction: column;
    gap: 0;
  }
}
.beforeafter__container {
  display: flex;
  justify-content: center;
}
.beforeafter__col {
  flex: 1;
}

.logos {
  padding: 40px 0;
}
@media screen and (max-width: 1023px) {
  .logos {
    padding: 40px;
  }
}
.logos__list {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logos__list img {
  filter: grayscale(100%);
  opacity: 0.5;
}
.logos__item {
  text-align: center;
}
.logos .icon {
  width: 20px;
  height: 20px;
}
.logos .tns-controls button {
  position: absolute;
  z-index: 3;
  top: 40%;
  padding: 0;
  background: transparent;
  border: none;
  fill: #454545;
  opacity: 0.5;
  transition: all 0.3s ease;
}
.logos .tns-controls button:first-child {
  left: -10px;
}
.logos .tns-controls button:last-child {
  right: -10px;
}

.why .wrapper {
  background: url(../images/icon.webp) no-repeat;
  background-size: 40%;
  background-position: 50% 100%;
}

.meet {
  background: url(../images/meet-bg.webp) no-repeat;
  background-size: cover;
  background-position: 70% center;
  color: white;
  overflow: hidden;
  padding: 100px 0 0;
}
.meet .is-flex {
  gap: 50px;
}
@media screen and (max-width: 800px) {
  .meet .is-flex {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 0;
  }
}
.meet__content {
  flex: 1;
  padding-bottom: 50px;
}
.meet__image {
  flex: 1;
}
@media screen and (min-width: 801px) {
  .meet__image {
    max-width: 45%;
    min-width: 45%;
  }
}
.meet__image img {
  max-width: 300px;
}
