@charset "UTF-8";
/*
0 - 600px:      Phone
600 - 900px:    Tablet
[1200 - 1800]   Normal styles
1800px + :      Big desktop
$breakpoint arguement choices:
- phone
- tablet
- desktop
- big-desktop
*/
@font-face {
  font-family: "FiraRegular";
  src: url("../font/FiraSans-Regular.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FiraMedium";
  src: url("../font/FiraSans-Medium.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FiraBold";
  src: url("../font/FiraSans-Bold.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "FiraSemiBold";
  src: url("../font/FiraSans-SemiBold.ttf");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "cc2";
  font-weight: 400;
  font-style: normal;
  src: url("../font/cc2/cc2.woff") format("woff");
}
@font-face {
  font-family: "icons";
  font-weight: 400;
  font-style: normal;
  src: url("../font/icons/icomoon.woff") format("woff");
}
body {
  color: #000000 !important;
  font-family: "FiraRegular", sans-serif !important;
  font-size: 16px !important;
  line-height: 28px !important;
}

a,
.a__text-link--blue {
  position: relative;
  color: #00A0E1;
  text-decoration: underline;
  cursor: pointer;
}
a:hover,
.a__text-link--blue:hover {
  text-decoration: none;
}

.link--black {
  color: #000000;
}

.link--noline {
  text-decoration: none;
  width: 75%;
}

.link-icon {
  margin-left: 30px;
}
.link-icon::before {
  position: absolute;
  content: "";
  background-image: url("../img/icn-download.png");
  width: 13px;
  height: 18px;
  top: 2px;
  left: -25px;
}

.heading-primary {
  color: #FFF;
  font-size: 50px;
  line-height: 60px;
  font-family: FiraSemiBold;
  animation: moveInleft 1s ease-out;
}
@media only screen and (max-width: 900px) {
  .heading-primary {
    font-size: 36px;
    line-height: 46px;
  }
}
@media only screen and (max-width: 600px) {
  .heading-primary {
    font-size: 28px;
    line-height: 38px;
  }
}
.heading-primary__subtitle {
  font-family: FiraRegular;
  font-weight: normal;
  font-size: 24px;
  line-height: 32px;
  display: block;
}
.heading-primary__subtitle--blue {
  color: #00A0E1;
}
.heading-primary__subtitle--black {
  color: #000000;
}

.heading-secondary {
  color: #000000;
  font-size: 38px;
  line-height: 48px;
}
@media only screen and (max-width: 900px) {
  .heading-secondary {
    font-size: 28px;
    line-height: 38px;
  }
}
@media only screen and (max-width: 600px) {
  .heading-secondary {
    font-size: 28px;
    line-height: 38px;
  }
}
.heading-secondary__bold {
  font-family: FiraSemiBold;
}
.heading-secondary__bold--blue {
  color: #00A0E1;
}
.heading-secondary__medium {
  font-family: FiraRegular;
}
.heading-secondary__small {
  font-family: FiraRegular;
  font-size: 24px;
  line-height: 30px;
}
.heading-secondary--orange {
  color: #F03C00;
}

.heading-tertiary {
  color: #000000;
}
.heading-tertiary--xsmall {
  font-size: 20px;
  line-height: 25px;
  font-family: FiraMedium;
}
.heading-tertiary--small {
  font-size: 22px;
  line-height: 30px;
  font-family: FiraRegular;
}
.heading-tertiary--medium {
  font-size: 24px;
  line-height: 32px;
  font-family: FiraMedium;
}
.heading-tertiary--medium--blue {
  font-size: 24px;
  line-height: 32px;
  font-family: FiraRegular;
  font-weight: normal;
  color: #00A0E1;
}
.heading-tertiary--large {
  font-size: 26px;
  line-height: 34px;
  font-family: FiraSemiBold;
}

.heading-sticky--blue {
  font-size: 24px;
  color: #00A0E1;
}
.heading-sticky--black {
  font-size: 24px;
  color: #000000;
}
.heading-sticky--regular {
  font-size: 18px;
}

.paragraph {
  line-height: 25px;
}
.paragraph__legal {
  margin-top: 20px;
  font-size: 13px;
  line-height: 20px;
  text-align: left;
}
.paragraph__legal--super {
  vertical-align: super;
  font-size: 10px;
  position: relative;
  vertical-align: baseline;
  top: -8px;
}
.paragraph__legal--grey {
  color: #888888;
}
.paragraph__icon {
  position: relative;
  margin-left: 60px;
}
.paragraph__icon::before {
  content: "";
  background-image: url(../img/icon-idea.png);
  background-size: cover;
  background-repeat: no-repeat;
  width: 37px;
  height: 40px;
  position: absolute;
  top: -2px;
  left: -55px;
}

.remark {
  font-size: 13px;
  line-height: 20px;
  position: absolute;
  bottom: -75px;
  right: -10%;
}
@media (max-width: 840px) {
  .remark {
    text-align: right;
    right: 0;
  }
}
@media (max-width: 400px) {
  .remark {
    bottom: -65px;
  }
}
.remark::before {
  background-image: url(../img/icon-arrow-2.png);
  content: "";
  display: block;
  width: 40px;
  height: 64px;
  margin-right: 6px;
  position: absolute;
  top: -68px;
  margin-left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 600px) {
  .remark::before {
    background-image: url(../img/icon-arrow-2-small.png);
    width: 31px;
    height: 50px;
    top: -60px;
  }
}

.ul-list {
  margin-top: 10px;
  list-style-type: none;
}
.ul-list__title {
  color: #000000;
  font-size: 19px;
}
.ul-list__list {
  margin: 22px 10px;
  list-style-type: none;
}
.ul-list__list-item-nobullet {
  padding: 5px 0;
  line-height: 26px;
  position: relative;
}
.ul-list__list-item {
  padding: 5px 0;
  line-height: 26px;
  margin-left: 35px;
  position: relative;
}
.ul-list__list-item::before {
  color: #00A0E1;
  font-family: "icons";
  content: "\ea10";
  position: absolute;
  left: -35px;
}
.ul-list__list-item--green:before {
  color: #00c736;
  font-family: "icons";
  content: "\ea10";
  position: absolute;
  left: -35px;
}
.ul-list__list-item-exclusion {
  padding: 5px 0;
  line-height: 26px;
  margin-left: 35px;
  position: relative;
}
.ul-list__list-item-exclusion::before {
  background-image: url("../img/bullet-exclusion.png");
  width: 25px;
  height: 25px;
  content: "";
  position: absolute;
  left: -35px;
}
.ul-list__list-item-exclusion-v2 {
  padding: 5px 0;
  line-height: 26px;
  margin-left: 35px;
  position: relative;
}
.ul-list__list-item-exclusion-v2::before {
  color: #888888;
  font-family: "icons";
  content: "\ea0f";
  position: absolute;
  left: -35px;
}
.ul-list__list-sub-item {
  margin: 15px 30px;
}
.ul-list__list-sub-item li {
  list-style-type: disc;
}

.ol-list__list {
  margin: 22px;
  list-style-type: decimal;
}
.ol-list__list li::marker {
  font-size: 16px;
}
.ol-list__marker--normal li::marker {
  font-weight: normal !important;
}
.ol-list__list-item {
  padding: 15px 0;
  line-height: 26px;
}
.ol-list__list-title, .ol-list__list-item::marker {
  font-family: "Fira Sans", sans-serif;
  font-weight: 500;
  font-size: 22px;
}
.ol-list__list-sub-item {
  margin-left: 40px;
}
.ol-list__list-sub-item li {
  margin-top: 15px;
}
.ol-list__list-sub-item li::marker {
  font-weight: 600;
}

.ul-list-default {
  list-style-type: disc;
  margin-bottom: 15px;
}
.ul-list-default__list-item {
  margin: 5px 10px;
}

.info-quote {
  text-align: center;
}

.info-quote ul {
  text-align: left;
  line-height: 25px;
  max-width: 800px;
  margin: 0px auto;
  padding: 0 20px;
  margin: 22px 10px;
}

.info-quote ul li {
  padding: 5px 0;
  line-height: 26px;
  list-style-type: disc;
}

.u-text--blue {
  color: #00A0E1;
}
.u-text--bold {
  font-family: FiraBold;
}
@media only screen and (max-width: 600px) {
  .u-text--xsmall {
    font-size: 12px;
  }
}

@media (max-width: 840px) {
  .heading-primary,
  .heading-tertiary--blue,
  .heading-tertiary--black,
  .paragraph__general--left {
    text-align: center;
  }
}
.section-switch-text {
  font-size: 16px;
  line-height: 22px;
  display: block;
  margin-top: 15px;
}

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

@font-face {
  font-family: "Light";
  src: url("../font/DMSans-Light.woff") format("woff");
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: "Regular";
  src: url("../font/DMSans-Regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: "Medium";
  src: url("../font/DMSans-Medium.woff") format("woff");
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: "Semibold";
  src: url("../font/DMSans-SemiBold.woff") format("woff");
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: "Bold";
  src: url("../font/DMSans-Bold.woff") format("woff");
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: "EthiasSans";
  src: url("../font/EthiasSans-Regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: "EthiasScript";
  src: url("../font/EthiasScript-Regular.woff") format("woff");
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: "Terrific";
  src: url("../font/totally-terrific.otf") format("woff");
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: "B2C Icons";
  src: url("../font/b2c.woff") format("woff");
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
@font-face {
  font-family: "Ethias";
  src: url("../font/ethias.woff") format("woff");
  font-style: normal;
  font-display: swap;
  -webkit-font-smoothing: antialiased;
  -webkit-font-smoothing: subpixel-antialiased;
  -moz-osx-font-smoothing: grayscale;
}
* {
  font-weight: 400;
}

[class^=icon-b2c-],
[class*=" icon-b2c-"],
[class^=icon-],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: "B2C Icons", serif !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-b2c-surfly:before {
  content: "\e9da";
}

.icon-b2c-burger:before {
  content: "\e901";
}

.icon-hamburger:before {
  content: "\e901";
}

.icon-b2c-lock:before {
  content: "\e902";
}

.icon-b2c-star-empty:before {
  content: "\e903";
}

.icon-b2c-star-full:before {
  content: "\e904";
}

.icon-b2c-star-half:before {
  content: "\e905";
}

.icon-b2c-cross-thin:before {
  content: "\e906";
}

.icon-b2c-cross-bold:before {
  content: "\e907";
}

.icon-b2c-search:before {
  content: "\e908";
}

.icon-b2c-search-input:before {
  content: "\e909";
}

.icon-b2c-chat:before {
  content: "\e90a";
}

.icon-b2c-arrow-semi-right:before {
  content: "\e9db";
}

.icon-b2c-arrow-thin-right:before {
  content: "\e90b";
}

.icon-b2c-arrow-thin-left:before {
  content: "\e90c";
}

.icon-b2c-arrow-thin-down:before {
  content: "\e90d";
}

.icon-b2c-arrow-thin-up:before {
  content: "\e90e";
}

.icon-b2c-arrow-down-nav:before {
  content: "\e9f3";
}

.icon-b2c-arrow-right:before {
  content: "\e90f";
}

.icon-arrow-right:before {
  content: "\e90f";
}

.icon-b2c-arrow-left:before {
  content: "\e910";
}

.icon-arrow-left:before {
  content: "\e910";
}

.icon-b2c-arrow-down:before {
  content: "\e911";
}

.icon-b2c-arrow-up:before {
  content: "\e912";
}

.icon-b2c-arrow-full-right:before {
  content: "\e913";
}

.icon-b2c-arrow-full-left:before {
  content: "\e914";
}

.icon-b2c-arrow-full-down:before {
  content: "\e915";
}

.icon-b2c-arrow-full-up:before {
  content: "\e916";
}

.icon-b2c-arrow-draw:before {
  content: "\e917";
}

.icon-b2c-urgency:before {
  content: "\e91b";
}

.icon-b2c-facebook:before {
  content: "\e91a";
}

.icon-b2c-twitter:before {
  content: "\e918";
}

.icon-b2c-linkedin:before {
  content: "\e919";
}

.icon-b2c-youtube:before {
  content: "\e91c";
}

.icon-b2c-tiktok:before {
  content: "\e91d";
}

.icon-b2c-enveloppe:before {
  content: "\e900";
}

.icon-b2c-instagram:before {
  content: "\e91e";
}

.icon-b2c-info:before {
  content: "\e92f";
}

.icon-b2c-info2:before {
  content: "\e91f";
}

body {
  font-size: 16px;
  font-family: "Regular", Arial, sans-serif;
  line-height: 1.5;
  color: #212121;
  background-color: #FFF6ED;
}

.hide-lang {
  display: none;
}

.show-lang {
  display: initial;
}

.u-row {
  margin: 0 auto;
  position: relative;
  padding: 15px;
}
.u-row--large {
  max-width: 1200px;
}
.u-row--mediumlarge {
  max-width: 1000px;
}
.u-row--medium {
  max-width: 840px;
}
.u-row--small {
  max-width: 600px;
}

.u-content-align--left {
  text-align: left;
}
.u-content-align--right {
  text-align: right;
}
@media only screen and (max-width: 850px) {
  .u-content-align--right {
    text-align: left;
  }
}
.u-content-align--center {
  text-align: center;
}

@media (min-width: 840px) {
  .u-min-height--50 {
    min-height: 50px;
  }
  .u-min-height--75 {
    min-height: 60px;
  }
  .u-min-height--80 {
    min-height: 75px;
  }
  .u-min-height--100 {
    min-height: 100px;
  }
  .u-min-height--120 {
    min-height: 120px;
  }
  .u-min-height--150 {
    min-height: 150px;
  }
  .u-min-height--175 {
    min-height: 175px;
  }
  .u-min-height--210 {
    min-height: 210px;
  }
}
.u-content-center {
  display: flex;
  align-content: flex-start;
  justify-content: center;
  align-items: center;
}

.u-spacer__both--small {
  margin: 15px 0;
}
.u-spacer__both--medium {
  margin: 35px 0;
}
.u-spacer__both--large {
  margin: 125px 0;
}
@media only screen and (max-width: 600px) {
  .u-spacer__both--large {
    margin: 75px 0;
  }
}
.u-spacer__top {
  margin-top: 75px !important;
}
.u-spacer__top--small {
  margin-top: 15px;
}
.u-spacer__top--medium {
  margin-top: 35px;
}
.u-spacer__top--large {
  margin-top: 75px;
}
@media only screen and (max-width: 600px) {
  .u-spacer__top--large {
    margin-top: 35px;
  }
}
.u-spacer__bottom--small {
  margin-bottom: 12px;
}
.u-spacer__bottom--medium {
  margin-bottom: 35px;
}
.u-spacer__bottom--large {
  margin-bottom: 75px;
}
@media only screen and (max-width: 600px) {
  .u-spacer__bottom--large {
    margin-bottom: 35px;
  }
}
.u-spacer__bottom--xlarge {
  margin-bottom: 125px;
}
@media only screen and (max-width: 600px) {
  .u-spacer__bottom--xlarge {
    margin-bottom: 75px;
  }
}

@media (max-width: 840px) {
  .u-content-spacer__both {
    margin: 25px 0;
  }
}
.u-padding--5 {
  padding: 5px;
}
.u-padding--10 {
  padding: 10px;
}

.u-bgcolor--white {
  background-color: #FFF;
}
.u-bgcolor--blue {
  background-color: #EFF7FC;
}
.u-bgcolor--gradient {
  background: linear-gradient(#EFF7FC, #FFF);
}

.u-color--grey {
  color: #888888;
}

.u-flex {
  display: flex;
}
.u-flex__gap--10 {
  gap: 10px;
}
.u-flex__gap--20 {
  gap: 20px;
}

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

.u-flex-align-top {
  align-self: flex-start;
  margin-top: 50px;
}

.u-flex-just-start {
  justify-content: flex-start !important;
}

.u-flex-just-center {
  justify-content: center !important;
}

.u-flex-wrap {
  flex-wrap: wrap !important;
}

.u-flex-alignitems-center {
  align-items: center;
}

.u-flex-align-center {
  align-self: center;
}

@media (max-width: 600px) {
  .u-mobile-spec {
    margin-top: 0;
    text-align: left;
    margin-left: 20px;
  }
}
@media only screen and (max-width: 600px) {
  .u-display-none-mobile {
    display: none;
  }
}

.u-flex--0 {
  flex: 0;
}
@media only screen and (max-width: 850px) {
  .u-flex--0 {
    flex: 1;
  }
}

.u-position-absolute {
  position: absolute;
  padding: 0;
  width: 100%;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.a-link--absolute {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

@keyframes moveInleft {
  0% {
    opacity: 0;
    transform: translateX(-100px);
  }
  80% {
    transform: translateX(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveInbottom {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  80% {
    transform: translateY(-10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
@keyframes moveIntop {
  0% {
    opacity: 0;
    transform: translateY(-30px);
  }
  80% {
    transform: translateY(10px);
  }
  100% {
    opacity: 1;
    transform: translate(0);
  }
}
.table-row {
  padding: 15px;
  border: 1px solid #addff3;
  border-radius: 8px;
  margin-bottom: 35px;
}

.table-accordion-panel .content {
  padding: 6px;
  line-height: 25px;
}

.table-accordion-panel .content p {
  margin: 10px 0;
}

.table-accordion {
  cursor: pointer;
  padding: 5px;
  text-align: left;
  margin: 0;
  outline: none;
  transition: 0.4s;
  border-radius: 4px;
  position: relative;
}

.table-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}

.table-accordion:after {
  content: "▾";
  font-weight: bold;
  font-size: 25px;
  color: #22a7df;
  top: 7px;
  right: 12px;
  position: absolute;
}

.active:after {
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  content: "▴";
}

.faq-content {
  padding: 25px 50px;
  border: 1px solid #addff3;
  background-color: #fff;
  border-radius: 20px;
}
.faq-content .faq-row {
  padding: 15px 0;
  border-bottom: 1px solid #addff3;
  background-color: #fff;
}
.faq-content .faq-row--no-line {
  padding: 15px 0 0 0;
  border-bottom: none;
  background-color: #fff;
}
.faq-content .faq-title {
  font-size: 20px;
  font-weight: normal;
  margin-bottom: 20px;
}
.faq-content .faq-subtitle {
  font-size: 20px;
  font-weight: normal;
  margin-top: 10px;
}
.faq-content .faq-question {
  font-size: 18px;
  line-height: 26px;
  font-weight: bold;
  width: 90%;
}
.faq-content .faq-image {
  max-width: 600px;
}
.faq-content .table-accordion {
  cursor: pointer;
  text-align: left;
  margin: 0;
  outline: none;
  transition: 0.4s;
  border-radius: 4px;
  position: relative;
}
.faq-content .table-accordion-panel {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
.faq-content .table-accordion:after {
  content: "▾";
  font-weight: bold;
  font-size: 30px;
  color: #22a7df;
  right: 12px;
  position: absolute;
}
@media screen and (max-width: 800px) {
  .faq-content .table-accordion:after {
    right: 0;
  }
}
.faq-content .active {
  margin-bottom: 15px;
}
.faq-content .active:after {
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
  content: "▴";
}
.faq-content .faq-list {
  padding: 0;
  margin: 0;
  margin-left: 20px;
}
.faq-content .faq-list__item {
  margin-bottom: 5px;
}

.faq-content p,
.content-box p {
  padding: 5px 0;
  line-height: 25px;
}

.faq-list__item--decimal {
  list-style-type: decimal;
}

.faq-list__item--line {
  list-style-type: none;
}

.faq-list__item--line:before {
  content: "-";
  margin-left: -15px;
  margin-right: 10px;
}

.contact-list__ul {
  margin: 0;
  padding: 0;
  margin-top: 6px;
}
.contact-list__ul--top-spacing {
  margin-top: 12px !important;
}
.contact-list__list-item {
  position: relative;
}
.contact-list__list-item--dash {
  list-style-type: none;
  margin-left: 22px;
}
.contact-list__list-item--dash:before {
  content: "–";
  position: absolute;
  margin-left: -20px;
}
.contact-list__list-item--disc {
  margin-left: 16px;
}
.contact-list__list-item--decimal {
  margin-left: 18px;
  list-style-type: decimal;
}
.contact-list__list-item--v-green {
  margin-left: 35px;
  list-style-type: none;
  display: flex;
  align-items: center;
}
.contact-list__list-item--v-green::before {
  content: "";
  position: absolute;
  width: 18px;
  height: 14px;
  left: -35px;
  background-image: url("../img/v-green.png");
}

.btn:link, .btn:visited, .btn {
  display: inline-block;
  font-size: 18px;
  border: 1px solid #00A0E1;
  text-decoration: none;
  border-radius: 100px;
  text-align: center;
  padding: 15px 30px;
  transition: all 0.4s;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  cursor: pointer;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}
.btn:active {
  transform: translateY(-1px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
.btn--white {
  background-color: #FFF;
  color: #00A0E1;
}
.btn--white:hover {
  background: #00A0E1;
  color: #FFF;
}
.btn--translucent {
  background-color: #FFF;
  color: #00A0E1;
  border: 1px solid #00A0E1;
}
.btn--translucent:hover {
  background: #E4F2FA;
}
.btn--blue {
  background-color: #00A0E1;
  color: #FFF;
}
.btn--blue:hover {
  background: #0190CC;
}
.btn--orange {
  background-color: #F03C00;
  color: #FFF;
  border: 1px solid #F03C00 !important;
}
.btn--orange:hover {
  background: #D94204;
}
@media only screen and (max-width: 600px) {
  .btn--mobile {
    padding: 5px !important;
  }
}
.btn--max-width-250 {
  max-width: 250px;
}
.btn--max-width-300 {
  max-width: 300px;
}

.button-remark__text {
  font-size: 14px;
}
.button-remark__text::before {
  background-image: url(../img/button-arrow.png);
  content: "";
  display: inline-block;
  width: 25px;
  height: 38px;
  margin-right: 6px;
}
.button-remark__text::after {
  background-image: url(../img/icon-like.png);
  content: "";
  display: inline-block;
  width: 27px;
  height: 25px;
  margin-left: 6px;
  margin-top: 5px;
}

.btn-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}

.btn-content-mobile {
  display: none;
}
@media only screen and (max-width: 600px) {
  .btn-content-mobile {
    display: flex;
    width: 30px;
    height: 30px;
    justify-content: center;
    align-items: center;
  }
  .btn-content-mobile img {
    fill: #FFF;
    height: 26px;
  }
}

@media only screen and (max-width: 600px) {
  .btn-content-desktop {
    display: none;
  }
}

.patch-promo {
  position: absolute;
  z-index: 1000;
}
.patch-promo--position-1 {
  left: 75px;
  top: 50px;
}
@media only screen and (max-width: 600px) {
  .patch-promo--position-1 {
    top: 15px;
    left: 25px;
  }
}
.patch-promo--position-2 {
  left: 5px;
  top: 0;
}
@media only screen and (max-width: 600px) {
  .patch-promo--position-2 {
    left: 35px;
  }
}
.patch-promo--position-3 {
  right: -10px;
  top: -25px;
}
@media only screen and (max-width: 600px) {
  .patch-promo--position-3 {
    top: -15px;
    left: 25px;
  }
}
.patch-promo .textes {
  position: absolute;
  z-index: 100;
  width: 130px;
  margin: 0 auto;
  padding: 0 10px;
}
.patch-promo .text-1, .patch-promo .text-2, .patch-promo .text-3 {
  display: block;
  color: white;
  font-family: "FiraRegular";
  transform: none;
  text-align: center;
}
.patch-promo .text-1 {
  font-size: 14px;
  position: absolute;
  width: 110px;
  text-align: center;
}
.patch-promo .text-2 {
  padding-top: 24px;
  font-family: "FiraBold";
  font-size: 52px;
  line-height: 43px;
}
.patch-promo .text-3 {
  padding-top: 6px;
  font-size: 16px;
  line-height: 16px;
}
.patch-promo .small {
  display: inline-block;
  font-size: 25px;
}
.patch-promo .sup {
  display: inline-block;
  vertical-align: super;
  font-size: 12px;
}
.patch-promo .circle {
  width: 130px;
  height: 130px;
  background: linear-gradient(#F03C00, #F03C00 55%, #00A0E1 45%);
  border-radius: 50%;
}

.table table {
  width: 50%;
  margin: 0 auto;
  border-collapse: collapse;
}
.table td,
.table th {
  background-color: #FFF;
  padding: 10px;
  margin: 5px;
  border: 2px solid #EFF7FC;
}
.table th {
  color: white;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
}
.table th:not(:first-child) {
  background: #00A0E1;
}
.table th:first-child {
  background: transparent;
}
.table__colum-title {
  font-weight: bold;
}

.table-container {
  margin: 10px 0;
}

.table-montants {
  display: inline-block;
  text-align: left;
}

.table-montants {
  width: 100%;
}

.table-montants ul {
  display: inline-block;
  list-style-type: none;
  padding: 0 5px !important;
}

.table-montants ul.ul-2 {
  width: 16%;
  min-width: 125px;
  vertical-align: text-top;
}

.table-montants ul.ul-2:last-child {
  width: 16%;
  min-width: 125px;
}

.td-width--50 {
  width: 49% !important;
}

.table-montants ul li {
  padding: 10px;
  margin: 2px;
  text-align: left;
  height: auto;
}

.table-montants .ul-2 li {
  background-color: white;
}

.table-montants .ul-2 li:first-child {
  background-color: #0098d1;
  color: white;
  font-family: "FiraBold";
  min-height: 95px;
}

.height-2lines {
  min-height: 40px;
}

.height-3lines {
  min-height: 55px;
}

.height-4lines {
  min-height: 70px;
}

.height-6lines {
  min-height: 100px;
}

.height-8lines {
  min-height: 175px;
}

.height-10lines {
  min-height: 275px;
}

.table-container.desktop-only {
  display: none;
}

.table-container.mobile-only {
  display: block;
}

.table-montants ul li {
  padding: 4px;
}

.table-montants,
.table-montants ul.ul-1,
.table-montants ul.ul-2,
.table-montants ul.ul-2:last-child {
  width: 100%;
  margin: 0 auto;
}

.table-montants ul.ul-1 {
  background-color: #0098d1;
  color: white;
  font-weight: 600;
}

.table-montants ul.ul-2 li {
  padding: 4px;
  padding-inline-start: 0px;
}

.table-montants .ul-2 li:first-child {
  background-color: #eaf6fb;
  color: inherit;
  font-family: "FiraRegular";
  min-height: 0;
  padding: 10px;
}

.lp-stickyheader {
  position: fixed;
  z-index: 99;
  top: 0;
  right: 0;
  margin-top: -178px;
  opacity: 0;
  -webkit-transition: all 0.6s;
  -moz-transition: all 0.6s;
  transition: all 0.6s;
}
.lp-stickyheader.is-shown {
  top: 178px;
  opacity: 1;
  left: 0;
}
.lp-stickyheader__container {
  display: flex;
  align-items: center;
  padding: 5px 15px;
  background-color: #FFF;
  border-bottom: 1px solid #DEEEF0;
}
.lp-stickyheader__img {
  height: 50px;
}
.lp-stickyheader__img--vertical {
  height: 75px;
}
.lp-stickyheader__col-1, .lp-stickyheader__col-2, .lp-stickyheader__col-3, .lp-stickyheader__col-4 {
  padding: 0 10px;
}
.lp-stickyheader__col-3 {
  margin-left: auto;
}

@media (max-width: 840px) {
  .lp-stickyheader__container {
    justify-content: center;
    display: -webkit-box;
    overflow-x: scroll;
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE 10+ */
  }
  .lp-stickyheader__container::-webkit-scrollbar {
    background: transparent; /* Chrome/Safari/Webkit */
    width: 0px;
    height: 0px;
  }
  .lp-stickyheader__col-1,
  .lp-stickyheader__col-2 {
    display: none;
  }
  .lp-stickyheader__col-3,
  .lp-stickyheader__col-4 {
    margin: 5px 0;
  }
}
.lp-header-hero {
  background-color: #eff7fc;
  position: relative;
  /*height: 450px;
  background-image: url(../img/header-img-splash.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position-y: bottom;
  }*/
}
@media only screen and (max-width: 850px) {
  .lp-header-hero img {
    display: none;
  }
}
@media only screen and (max-width: 850px) {
  .lp-header-hero {
    height: 350px;
    background-image: url(../img/header-img-splash-mobile.jpg);
    background-position: bottom;
    background-size: cover;
    background-repeat: no-repeat;
  }
}

.lp-header {
  height: auto;
}
.lp-header__background {
  background: #207BBE;
}
.lp-header__img {
  width: 350px;
}
@media only screen and (max-width: 600px) {
  .lp-header__img {
    width: 150px;
  }
}
.lp-header__img--horizontal {
  width: 100%;
}
.lp-header__img--absolute {
  position: absolute;
  bottom: 0;
  right: -100px;
  width: 400px;
}
@media (max-width: 840px) {
  .lp-header__img--absolute {
    position: initial;
    max-width: 350px;
    margin-bottom: -23px;
  }
}
.lp-header .headline {
  margin: 35px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap-reverse;
  gap: 50px;
}
.lp-header .headline--top {
  align-items: flex-end;
}
@media (max-width: 840px) {
  .lp-header .headline--bottom {
    align-items: flex-end;
    flex-wrap: wrap;
    margin: 0 !important;
  }
}
.lp-header .headline--center {
  align-items: center;
}
.lp-header .headline__text-container {
  flex: 1 1 60%;
}
.lp-header .headline__logo-container {
  flex: 1 1 30%;
}
.lp-header .headline__logo-container--animationBottom {
  animation: moveInbottom 0.3s ease-out 0.4s;
  animation-fill-mode: backwards;
}

@media (max-width: 840px) {
  .mobile header {
    display: block !important;
  }
  .lp-header .headline {
    margin: 0 auto 35px;
    text-align: center;
    gap: 5px;
  }
  .lp-header .headline__text-container {
    flex: 1 1 100%;
  }
  .lp-header .headline__text-container {
    flex: 1 1 100%;
  }
  .lp-header .headline .u-content-align--left {
    text-align: center;
  }
  .lp-header .headline .lp-header__img--horizontal {
    width: 50%;
  }
}
.header-banner-container {
  position: relative;
  background-color: #DEEEF0;
  padding: 25px;
}

.header-banner {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
}
@media only screen and (max-width: 600px) {
  .header-banner {
    flex-direction: column;
    gap: 10px;
  }
}
.header-banner__icn img {
  max-width: 75px;
}
.header-banner__text {
  font-family: "FiraMedium";
  font-size: 28px;
  line-height: 38px;
  max-width: 65%;
}
@media only screen and (max-width: 600px) {
  .header-banner__text {
    max-width: 100%;
    font-size: 22px;
    line-height: 28px;
    text-align: center;
  }
}
.header-banner__btn {
  flex: 0 0 auto;
}

.hero-section {
  height: 400px;
  background-image: url(../img/hero-section-splash.jpg);
  background-size: cover;
  background-repeat: none;
}

.hero-section-jeasy {
  height: 600px;
  background-image: url(../../img/jeasy-background.jpg);
  background-size: cover;
  background-repeat: none;
}

.section-footer {
  border-top: 2px solid #EFF7FC;
}
.section-footer .footer__container {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  flex-wrap: wrap;
}
.section-footer .footer__logo {
  width: 100px;
}
.section-footer .footer__spacer-right {
  margin-right: 35px;
}
@media only screen and (max-width: 600px) {
  .section-footer .footer__spacer-right {
    margin-right: 0;
  }
}
.section-footer .footer__spacer-icon {
  color: #EFF7FC;
}
@media only screen and (max-width: 600px) {
  .section-footer .footer__spacer-icon {
    display: none;
  }
}
@media only screen and (max-width: 600px) {
  .section-footer .footer__col2 {
    margin-top: 35px;
  }
}
@media only screen and (max-width: 600px) {
  .section-footer span {
    display: block;
  }
}

.modal {
  position: fixed;
  padding: 75px 100px;
  width: 75%;
  max-height: 90vh;
  overflow: auto;
  border-radius: 20px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -55%) scale(0.8);
  background: #fff;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transition: all 0.3s 0.3s;
}
@media only screen and (max-width: 850px) {
  .modal {
    padding: 20px 35px;
    width: 95%;
  }
}
.modal--max {
  width: 95%;
  padding: 50px;
}
.modal:target {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
  z-index: 1000;
  transition: all 0.3s 0.3s;
}
.modal-close {
  position: absolute;
  padding: 10px;
  max-width: 500px;
  border-radius: 10px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0.8);
  background: rgba(255, 255, 255, 0.9);
}
.modal .close {
  position: absolute;
  right: 25px;
  top: 25px;
  padding: 5px;
  color: #000000;
  transition: color 0.3s;
  font-size: 30px;
  text-decoration: none;
}
.modal .close:hover {
  color: #888888;
}
.modal__img {
  max-width: 100%;
  margin-top: 15px;
}

.close-modal {
  background: rgba(0, 0, 0, 0.6);
  cursor: default;
  position: fixed;
  z-index: 100;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto; /* Enable scroll if needed */
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  opacity: 0;
  visibility: hidden;
  /* "delay" the visibility transition */
  -webkit-animation-name: animatetop;
  -webkit-animation-duration: 0.4s;
  animation-name: animatetop;
  animation-duration: 0.4s;
  transition: all 0.3s 0.3s;
}

.modal:target + .close-modal {
  opacity: 1;
  visibility: visible;
  /* cancel visibility transition delay */
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
}

.title-modal {
  color: #0b5168;
  font-family: "FiraRegular";
  font-size: 22px;
  text-align: center;
  padding-bottom: 30px;
}

.btn-modal {
  margin-top: 40px;
  cursor: pointer;
  text-decoration: none;
  padding: 12px 16px;
  color: white;
  background-color: #B6CACE;
  border-radius: 4px;
  font-size: 16px;
  width: 100px;
  margin: 40px auto 40px;
  text-align: center;
}

.btn-modal:hover {
  color: #394F5D;
}

.lp-card-container {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
.lp-card-container--block {
  display: block;
}
.lp-card-container .lp-card {
  padding: 10px 30px;
  position: relative;
}
.lp-card-container .lp-card--white {
  flex: 1 1 33%;
}
.lp-card-container .lp-card--small {
  flex: 0 1 50px;
}
.lp-card-container .lp-card--border {
  background: white;
  padding: 50px;
  border-radius: 20px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  margin: 50px 10px;
}
.lp-card-container .lp-card--border--less-padding {
  padding: 35px 25px;
}
.lp-card-container .lp-card--border--2 {
  flex: 1 1 45%;
}
.lp-card-container .lp-card--border--3 {
  flex: 1 1 28%;
}
.lp-card-container .lp-card--border--4 {
  flex: 1 1 20%;
}
.lp-card-container .lp-card--border--5 {
  display: flex;
  width: 100%;
  margin: 10px;
}
.lp-card-container .lp-card--transparent {
  margin: 50px 10px;
}
.lp-card-container .lp-card--transparent--2 {
  flex: 0 1 42%;
}
.lp-card-container .lp-card--transparent--3 {
  flex: 1 1 28%;
}
.lp-card-container .lp-card--transparent--4 {
  flex: 1 1 20%;
}
.lp-card-container .lp-card--transparent--5 {
  display: flex;
  width: 100%;
  margin: 10px;
}
@media only screen and (max-width: 850px) {
  .lp-card-container .lp-card--transparent--5 {
    display: block;
  }
}
.lp-card-container .lp-card--pointer {
  cursor: pointer;
  transition: all 0.2s;
  border: 3px solid transparent;
}
.lp-card-container .lp-card--pointer:hover {
  border: 3px solid #00A0E1;
}
.lp-card-container .lp-card__link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}
.lp-card-container .lp-card__img {
  height: 50px;
}
@media (max-width: 600px) {
  .lp-card-container .lp-card__img {
    height: initial;
  }
}
.lp-card-container .lp-card__img img {
  margin-bottom: 30px;
  height: 50px;
}
.lp-card-container .lp-card__img img:not(:last-child) {
  margin-right: 10px;
}
@media (max-width: 600px) {
  .lp-card-container .lp-card__img img {
    height: 40px;
  }
}
.lp-card-container .lp-card__img--big img {
  margin-bottom: 30px;
  height: 75px;
}
.lp-card-container .lp-card__img--big-horizontal img {
  margin-bottom: 40px;
  margin-top: 40px;
  height: 75px;
}
.lp-card-container .lp-card__img--large img {
  margin-bottom: 30px;
  height: 125px;
}
.lp-card-container .lp-card__img--medium img {
  margin-bottom: 30px;
  height: 115px;
}
.lp-card-container .lp-card__img--xlarge img {
  margin-bottom: 30px;
  width: 100%;
}
.lp-card-container .lp-card__logo img {
  height: 40px;
}
.lp-card-container .lp-card__img--horizontal {
  width: 10%;
  text-align: center;
  max-width: initial !important;
}
.lp-card-container .lp-card__img-large--horizontal {
  width: 40%;
  text-align: center;
  max-width: initial !important;
}
.lp-card-container .lp-card__img-large--horizontal img {
  height: 200px;
}
@media only screen and (max-width: 600px) {
  .lp-card-container .lp-card__img-large--horizontal {
    width: 100%;
  }
}
.lp-card-container .lp-card__img--bottom {
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.2s;
}
.lp-card-container .lp-card__img--bottom img {
  height: 85px;
}
.lp-card-container .lp-card__img--rotate {
  transform: translateX(-50%) rotate(90deg);
  transition: all 0.2s;
}
.lp-card-container .lp-card__title {
  font-family: "FiraMedium", sans-serif;
  font-size: 22;
}
.lp-card-container .lp-card__icon--plus {
  position: absolute;
  width: 30px;
  height: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: #F03C00;
  font-family: FiraMedium;
  font-size: 25px;
  border: 1px solid #F03C00;
  padding: 1px 0;
  border-radius: 100px;
}

.lp-card-container-left {
  text-align: left;
}

.lp-card-block {
  background: white;
  padding: 50px 100px;
  margin-bottom: 75px;
  border-radius: 8px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.lp-card-block--dotted {
  border: 4px #cccccc dotted;
}

@media (max-width: 840px) {
  .guarantees {
    padding: 25px;
    margin: 30px 0;
  }
}
.timeline {
  margin: 150px 0 75px;
  text-align: center;
  display: flex;
}
@media only screen and (max-width: 850px) {
  .timeline {
    flex-direction: column;
  }
}
.timeline__main-col {
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 850px) {
  .timeline__main-col {
    flex-direction: column;
    align-items: center;
  }
}
.timeline__main-col--grey {
  color: #888888;
}
.timeline__sub-col {
  position: relative;
}
@media only screen and (max-width: 850px) {
  .timeline__sub-col {
    margin-bottom: 100px;
  }
}
.timeline__sub-col--1 {
  width: 120px;
  margin-right: 6px;
}
.timeline__sub-col--2 {
  width: 200px;
}
.timeline__sub-col--3 {
  width: 175px;
}
.timeline__sub-col--4 {
  width: 200px;
  margin-left: 40px;
  text-align: left;
}
@media only screen and (max-width: 850px) {
  .timeline__sub-col--4 {
    text-align: center;
    margin-left: 0;
    margin-bottom: 0;
  }
}
.timeline__icon {
  position: absolute;
  width: 35px;
  height: 35px;
  top: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-family: FiraMedium;
  font-size: 25px;
  padding: 5px 1px 0;
  border-radius: 100px;
  background-color: #FFF;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.timeline__title {
  font-family: FiraMedium;
  font-size: 22px;
  line-height: 30px;
}
.timeline__title--blue {
  color: #00A0E1;
}
.timeline__paragraph--blue {
  font-family: FiraMedium;
  color: #00A0E1;
}
@media only screen and (max-width: 850px) {
  .timeline__border {
    transform: rotate(90deg) translatey(-50%);
    height: 200px;
    order: 5;
  }
}
.timeline__border--dotted {
  border-bottom: 5px dashed #888888;
  margin: 10px 0;
}
.timeline__border--blue {
  position: relative;
  border-bottom: 5px solid #00A0E1;
  margin: 10px 0;
}
.timeline__border--blue .triangle {
  position: absolute;
  top: -8px;
  right: -15px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 20px;
  border-color: transparent transparent transparent #00A0E1;
}
@media only screen and (max-width: 850px) {
  .timeline__border--blue .triangle {
    top: 100%;
    transform: translatey(-40%);
  }
}
.timeline__paragraph-small {
  font-size: 12px;
}
.timeline__img {
  position: absolute;
  width: 90px;
  height: 90px;
  top: -100px;
  left: 50%;
  transform: translateX(-50%);
}

.video-container {
  max-width: 550px;
  margin: 0 auto;
}

.video-yt {
  aspect-ratio: 16/9;
  width: 100%;
}

.alternate-content {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  text-align: center;
}
@media only screen and (max-width: 600px) {
  .alternate-content__reverse {
    flex-direction: column-reverse;
  }
}
.alternate-content__item:not(:last-child) {
  margin-right: 35px;
}
@media only screen and (max-width: 600px) {
  .alternate-content__item:not(:last-child) {
    margin-right: 0;
  }
}
.alternate-content__item--1 {
  width: 15%;
  margin-right: 50px;
}
@media only screen and (max-width: 600px) {
  .alternate-content__item--1 {
    width: 100%;
  }
}
.alternate-content__item--picto {
  width: 100px;
  margin-right: 50px;
}
@media only screen and (max-width: 600px) {
  .alternate-content__item--picto {
    margin-right: 0;
  }
}
.alternate-content__item--2 {
  width: 85%;
}
@media only screen and (max-width: 600px) {
  .alternate-content__item--2 {
    width: 100%;
  }
}
.alternate-content__item--55 {
  width: 50%;
}
@media only screen and (max-width: 600px) {
  .alternate-content__item--55 {
    width: 100%;
  }
}
.alternate-content__item--65 {
  width: 65%;
}
@media only screen and (max-width: 600px) {
  .alternate-content__item--65 {
    width: 100%;
  }
}
.alternate-content__item--45 {
  width: 45%;
}
@media only screen and (max-width: 600px) {
  .alternate-content__item--45 {
    width: 100%;
  }
}
.alternate-content__item--35 {
  width: 35%;
}
@media only screen and (max-width: 600px) {
  .alternate-content__item--35 {
    width: 100%;
  }
}
.alternate-content__item--25 {
  width: 25%;
}
@media only screen and (max-width: 600px) {
  .alternate-content__item--25 {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  .alternate-content .img {
    width: 80%;
  }
}

.language-redirect .wrapper {
  max-width: 984px;
  margin: 0 auto;
  width: 100%;
}

body .language-redirect .pg-lang {
  background: white;
}

.language-redirect .pg-lang-total header {
  background: white;
}

.language-redirect .pg-lang-total .content {
  background: none;
}

.language-redirect .pg-lang-total {
  background: url(../img/langue/hiver.jpg) repeat-x scroll center 50px white;
  width: 100%;
  height: 100%;
}

.language-redirect .pg-lang-total header .ombre {
  background: url(../img/langue/ombre01.png) left bottom no-repeat;
  width: 100%;
  height: 19px;
  position: absolute;
  bottom: -40px;
  margin: auto;
  z-index: 1;
}

.language-redirect .pg-lang-total header .wrapper {
  padding: 20px 10px;
}

.language-redirect .taal-index {
  font-family: "FiraRegular";
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  padding-top: 100px;
}

.language-redirect .taal-nl-fr {
  display: inline-block;
  width: 270px;
  vertical-align: middle;
  margin: auto;
  text-align: left;
}

.language-redirect .taal-nl-fr a {
  text-decoration: none;
  font-size: 23px;
  color: white;
  padding: 30px 25px 30px 35px;
  display: block;
  line-height: 1.2em;
  background: #009bd8;
  border-radius: 4px;
  margin: 20px;
  font-family: "FiraRegular";
  height: auto;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.language-redirect .taal-nl-fr a:hover {
  background: #227faa;
  -webkit-transition: all 250ms ease;
  -moz-transition: all 250ms ease;
  -ms-transition: all 250ms ease;
  -o-transition: all 250ms ease;
  transition: all 250ms ease;
}

.language-redirect .top {
  width: 100%;
  background: white;
  position: relative;
}

.language-redirect .top .ethias {
  background: url(../img/langue/logo.png) no-repeat bottom;
  width: 127px;
  height: 80px;
}

.language-redirect .top .logo-epf {
  background: url(../img/logo-ethiaspensionfund.png) no-repeat bottom;
  width: 140px;
  height: 66px;
}

.language-redirect .taal-index .wrapper {
  text-align: center;
}

@media screen and (max-width: 500px) {
  .language-redirect .taal-index {
    padding-top: 40px;
  }
}
.lp-nav {
  padding: 10px 20px;
  position: relative;
  z-index: 1;
  width: 100%;
}
.lp-nav__wrapper {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}
.lp-nav__logo {
  display: flex;
  align-items: center;
  gap: 25px;
}
.lp-nav__logo img {
  width: 140px;
}
@media only screen and (max-width: 600px) {
  .lp-nav__logo img {
    width: 85px;
  }
}
.lp-nav__cta {
  margin-left: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}
.lp-nav__cta > * {
  flex-shrink: 0;
}
@media (max-width: 840px) {
  .lp-nav__cta {
    padding-left: 15px;
    justify-content: flex-start;
    gap: 0;
    margin-left: 0;
  }
}
.lp-nav__link, .lp-nav__btn {
  margin-right: 25px;
}
@media (max-width: 840px) {
  .lp-nav__language {
    padding-right: 15px;
  }
}

#cookiebanner {
  display: flex;
  z-index: 1000;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background-color: #FFF;
  transition: opacity 0.8s ease;
  font-size: 18px;
  box-shadow: 0 5px 10px rgba(0, 160, 225, 0.4);
}
#cookiebanner.hide {
  opacity: 0;
  display: none;
}

.cookiebanner__flex-item {
  padding: 15px;
}

.slide-submission {
  margin-bottom: 50px;
}
.slide-submission__col {
  width: 200px;
}
@media only screen and (max-width: 850px) {
  .slide-submission__col {
    width: 100%;
    margin-bottom: 25px;
  }
}
.slide-submission__callout {
  background-color: #F03C00;
  color: #FFF;
  border-radius: 20px;
  text-align: center;
  padding: 25px;
  height: 100px;
  display: flex;
  flex: 1;
  justify-content: center;
  align-items: center;
}
.slide-submission__callout--higlight {
  background-color: #D94204;
}
.slide-submission__text {
  margin-top: 35px;
}

.arrow {
  margin-left: 5px;
  width: 48px;
  position: relative;
  margin-top: 50px;
}
@media only screen and (max-width: 850px) {
  .arrow {
    margin: 0 auto;
    transform: rotate(90deg);
  }
}

.line {
  width: 18px;
  background: #f1b2aa;
  height: 20px;
  position: absolute;
  left: 0;
  top: -10px;
}

.point {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid #f1b2aa;
  position: absolute;
  top: -20px;
  left: 15px;
}

.highlight {
  background-color: yellow;
  padding: 5px 0;
}

.highlight--orange {
  background-color: #F03C00;
  padding: 5px 0;
}

.splashpage {
  margin: 40px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .splashpage {
    margin: 10px;
  }
}
.splashpage__tab {
  display: none;
  width: 100%;
  max-width: 700px;
}
.splashpage__show-tab {
  display: block;
}
.splashpage__language {
  display: flex;
  justify-content: center;
  gap: 30px;
}
.splashpage__lang-button {
  font-size: 18px;
  line-height: 1.5;
  text-transform: uppercase;
  color: #969696;
  cursor: pointer;
  transition: all 0.4s;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.splashpage__lang-button:hover {
  color: #FF6F0D;
}
.splashpage__lang-button.active {
  color: #FF6F0D;
}
.splashpage__lang-button.active::after {
  display: none;
}
.splashpage__container--white {
  margin-top: 20px;
  padding: 70px;
  background-color: #FFF;
  border-radius: 15px;
  box-shadow: 0 12px 16px -4px rgba(20, 20, 20, 0.1);
}
@media only screen and (max-width: 600px) {
  .splashpage__container--white {
    padding: 50px 25px;
  }
}
.splashpage__logo {
  display: flex;
  justify-content: center;
  max-width: 600px;
  margin: 0 auto;
  padding: 30px 0 100px 0;
  gap: 30px;
}
.splashpage__logo img {
  width: 100%;
  max-width: 175px;
}
@media only screen and (max-width: 600px) {
  .splashpage__logo img {
    max-width: 200px;
  }
}
@media only screen and (max-width: 600px) {
  .splashpage__logo {
    padding: 20px 0 50px 0;
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}
.splashpage__logo-separator {
  width: 1px;
  background-color: #3D0112;
}
@media only screen and (max-width: 600px) {
  .splashpage__logo-separator {
    display: none;
  }
}
.splashpage__section-button {
  position: relative;
  padding: 15px 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.splashpage__section-button:last-child {
  padding: 15px 0 0 0;
}
.splashpage__section-button::after {
  font-family: "B2C Icons", sans-serif;
  content: "\e9db";
  font-size: 22px;
  margin-left: auto;
  color: #FFF;
  background-color: #FF6F0D;
  border-radius: 100px;
  width: 55px;
  height: 55px;
  transition: all 0.4s;
  flex: 55px 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 600px) {
  .splashpage__section-button::after {
    font-size: 18px;
    width: 45px;
    height: 45px;
    flex: 45px 0 0;
  }
}
.splashpage__section-button:hover::after {
  background-color: #FFBC89;
}
.splashpage__section-title {
  font-family: "Semibold", sans-serif;
  font-size: 28px;
  line-height: 35px;
  color: #212121;
  margin-bottom: 15px;
}
.splashpage__section-description {
  color: #4A4A4A;
  line-height: 22px;
}
.splashpage__section-link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.splashpage__section-separator {
  height: 1px;
  width: 100%;
  background-color: #3D0112;
  margin: 25px 0;
}
.splashpage__section-list {
  margin: 35px 100px;
  padding: 0;
  list-style-type: none;
  color: #4A4A4A;
  line-height: 26px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 600px) {
  .splashpage__section-list {
    margin: 25px 15px;
  }
}
.splashpage__section-list a {
  color: #4A4A4A;
  text-decoration: none;
}
.splashpage__section-list a:hover {
  text-decoration: underline;
}
.splashpage__section-list li:not(:last-child):after {
  content: "|";
  padding: 0 8px 0 4px;
}

.section-content {
  padding: 75px 0;
}
@media only screen and (max-width: 600px) {
  .section-content {
    padding: 35px 0;
  }
}

#section-home,
#section-ssd {
  animation: moveIntop 0.3s;
}

.guarantees-list {
  display: flex;
}

.guarantees-list__col {
  margin: 0 25px;
  width: 90%;
}

.flex-container {
  display: flex;
  flex-direction: column;
}
@media only screen and (max-width: 600px) {
  .flex-container {
    flex-direction: row;
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.flex-container__col--left {
  flex: 0 0 65px;
}
@media only screen and (max-width: 600px) {
  .flex-container__col {
    align-items: flex-start;
    justify-content: flex-start;
  }
}
.flex-container__img {
  height: 50px;
}
@media only screen and (max-width: 600px) {
  .flex-container__img {
    height: initial;
  }
}
.flex-container__img img {
  margin-bottom: 30px;
  height: 50px;
}
.flex-container__img img:not(:last-child) {
  margin-right: 20px;
}
@media only screen and (max-width: 600px) {
  .flex-container__img img {
    margin-bottom: 5px;
    margin-top: 5px;
    height: 40px;
  }
}

.flex-container-multi-image {
  position: relative;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 600px) {
  .flex-container-multi-image img {
    position: absolute;
    height: 28px;
  }
}
@media only screen and (max-width: 600px) {
  .flex-container-multi-image .multi-image-1 {
    left: 40%;
    transform: translateX(-50%);
  }
  .flex-container-multi-image .multi-image-2 {
    top: 35px;
    right: -20px;
  }
  .flex-container-multi-image .multi-image-3 {
    top: 45px;
    left: -10px;
  }
}