@charset "UTF-8";
/*****************************************************
******************* Import CSS Files *****************
******************************************************/
/****************** Abstract folder *****************/
/*****************************************************
******************* Variables.scss *******************
******************************************************/
/****************** Font-size ***********************/
/********* Title *********/
/***** h1 *****/
/***** h2 *****/
/***** h3 *****/
/********* Texte *********/
/************* Container Size ***********************/
/**************** Font-family ***********************/
/****************** Colors **************************/
/**************************** Primary */
/**************************** Secondary */
/**************** transition ************************/
/*****************************************************
********************* Mixin.scss *********************
******************************************************/
/****************** Reset ***************************/
/****************** Fonts ***************************/
/***************** Margin Default ******************/
/***************** Header darkBlue ******************/
/****************** Accessibilité *******************/
/****************** Cartes & ombres *****************/
/****************** Boutons *************************/
/*@mixin btn($bg, $bg-hover, $color: #fff, $radius: 12px) {
  @include reset-btn;
  @include mainFontSemiB;
  display: inline-flex; align-items: center; justify-content: center;
  padding: .75rem 1rem;
  border-radius: $radius;
  background: $bg; color: $color; text-decoration: none; cursor: pointer;
  transition: transform .08s ease, background .2s ease, box-shadow .2s ease;

  &:hover { background: $bg-hover; }
  &:active { transform: translateY(1px); }
  &:focus-visible { @include focus-ring($bg-hover); }
}

@mixin btn-ghost($color, $hover-bg: rgba(0,0,0,.05)) {
  @include reset-btn;
  @include mainFontMed;
  display: inline-flex; align-items: center; gap: .5rem;
  padding: .5rem .75rem; border-radius: 10px;
  color: $color; background: transparent;
  &:hover { background: $hover-bg; }
  &:focus-visible { @include focus-ring($color); }
}*/
/****************** Helpers layout ******************/
/****************** Form controls ******************/
/****************** Badges/Chips *******************/
/*****************************************************
******************* Functions.scss *******************
******************************************************/
/****************** Vendors folder ******************/
/****************** Base folder *********************/
/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
}

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0;
}

/* Grouping content
   ========================================================================== */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/* Text-level semantics
   ========================================================================== */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none; /* 1 */
  text-decoration: underline; /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: 1em; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Embedded content
   ========================================================================== */
/**
 * Remove the border on images inside links in IE 10.
 */
img {
  border-style: none;
}

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers.
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: inherit; /* 1 */
  font-size: 100%; /* 1 */
  line-height: 1.15; /* 1 */
  margin: 0; /* 2 */
}

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input { /* 1 */
  overflow: visible;
}

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select { /* 1 */
  text-transform: none;
}

/**
 * Correct the inability to style clickable types in iOS and Safari.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: button;
}

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em;
}

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box; /* 1 */
  color: inherit; /* 2 */
  display: table; /* 1 */
  max-width: 100%; /* 1 */
  padding: 0; /* 3 */
  white-space: normal; /* 1 */
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * 1. Add the correct box sizing in IE 10.
 * 2. Remove the padding in IE 10.
 */
[type=checkbox],
[type=radio] {
  box-sizing: border-box; /* 1 */
  padding: 0; /* 2 */
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type=search] {
  -webkit-appearance: textfield; /* 1 */
  outline-offset: -2px; /* 2 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/* Misc
   ========================================================================== */
/**
 * Add the correct display in IE 10+.
 */
template {
  display: none;
}

/**
 * Add the correct display in IE 10.
 */
[hidden] {
  display: none;
}

/*****************************************************
******************* typographie.scss *****************
******************************************************/
/************************************************** titre */
h1, h2, h3, h4 {
  margin: 0;
  line-height: 1;
  font-family: "sohnebreit-fett", sans-serif;
  font-weight: 800;
  line-height: 1.2;
}

h1 {
  font-size: 2.8rem;
}

h2 {
  font-size: 2.4rem;
}

h3 {
  font-size: 2.8rem;
}
h3.title__big {
  font-size: 3rem;
}
h3.title__small {
  font-size: 1.8rem;
}
h3.title__tiny {
  font-size: 1.8rem;
}

@media screen and (min-width: 1024px) {
  h1 {
    font-size: 5rem;
  }
  h2 {
    font-size: 4rem;
  }
  h3 {
    font-size: 3.2rem;
  }
  h3.title__big {
    font-size: 3.8rem;
  }
  h3.title__small {
    font-size: 2.5rem;
  }
  h3.title__tiny {
    font-size: 2rem;
  }
}
/************************************** texte ****/
p, li {
  margin: 0;
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 1.5;
}
p.body__big, li.body__big {
  font-size: 1.8rem;
}
p.body__small, li.body__small {
  font-size: 1.5rem;
}
p a, li a {
  text-decoration: none;
  display: inline-block;
  color: #E3025A;
  transition: 0.4s ease;
}
p a:hover, li a:hover {
  opacity: 0.5;
}

main ul, .slide-in__wrapper ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
main ul li, .slide-in__wrapper ul li {
  position: relative;
  padding-left: 2.6rem;
}
main ul li::before, .slide-in__wrapper ul li::before {
  content: "";
  display: block;
  min-width: 1.6rem;
  width: 1.6rem;
  height: 1.6rem;
  background: url(../icons/ul-check.svg) no-repeat center/cover;
  position: absolute;
  top: 0.25rem;
  left: 0;
}

@media screen and (min-width: 1024px) {
  p, li {
    font-size: 2rem;
  }
  p.body__big, li.body__big {
    font-size: 2.2rem;
  }
  p.body__small, li.body__small {
    font-size: 1.7rem;
  }
  main ul li, .slide-in__wrapper ul li {
    padding-left: 4.3rem;
  }
  main ul li::before, .slide-in__wrapper ul li::before {
    min-width: 3rem;
    width: 3rem;
    height: 3rem;
  }
}
/****************** Layout folder *******************/
/*****************************************************
******************* Navigation.scss *******************
******************************************************/
.nav {
  position: fixed;
  width: 100vw;
  min-height: 100vh;
  top: 0;
  left: 105vw;
  background: #0B1950;
  transition: 0.3s ease;
  z-index: 1001;
}
.nav__open {
  left: 0;
}
.nav__logo {
  max-width: 13rem;
}
.nav__logo a {
  text-decoration: none;
  display: inline-block;
  color: #FFFFFF;
}
.nav__logo a p {
  font-size: 2rem;
  font-weight: bold;
}
.nav__close {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  background: #F2CB13;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  font-size: 0;
  display: flex;
}
.nav__close .close {
  margin: auto;
  width: 45%;
  height: 45%;
  position: relative;
}
.nav__close .close__el {
  width: 100%;
  height: 3px;
  background: #0B1950;
  position: absolute;
  top: 50%;
  left: 50%;
}
.nav__close .close__el:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.nav__close .close__el:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.nav__close:hover {
  cursor: pointer;
}
.nav__wrapper {
  padding: 3rem 0;
  height: calc(100vh - 6rem);
  display: flex;
  flex-direction: column;
}
.nav__content {
  min-height: calc(100vh - 6rem - 5.1rem);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.nav__content--wrapper {
  margin: auto 0;
}
.nav__menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.nav__menu--main .menu a {
  text-decoration: none;
  display: inline-block;
  color: #FFFFFF;
  font-family: "sohnebreit-fett", sans-serif;
  font-size: 2.4rem;
  line-height: 1;
  transition: 0.3s ease;
  width: 100%;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.4s ease;
}
.nav__menu--main .menu a::after {
  content: "";
  display: block;
  width: 0.67rem;
  height: 1.3rem;
  background: url(../icons/arrow-4.svg) no-repeat center/cover;
  transition: 0.4s ease;
}
.nav__menu--main .menu a:hover {
  color: #F2CB13;
  border-bottom: 1px solid #F2CB13;
  opacity: 1;
  cursor: pointer;
}
.nav__menu--main .menu a:hover::after {
  background: url(../icons/arrow-4-yellow.svg) no-repeat center/cover;
}
.nav__menu--main .menu .current-menu-item a {
  color: #F2CB13;
  border-bottom: 1px solid #F2CB13;
  pointer-events: none;
}
.nav__menu--main .menu .current-menu-item a::after {
  background: url(../icons/arrow-4-yellow.svg) no-repeat center/cover;
}
.nav__menu--main .menu .header__cta a {
  border-bottom: none;
  display: inline-block;
  background: #E3025A;
  font-family: niveau-grotesk, sans-serif;
  width: calc(100% - 8rem);
  text-align: center;
  border: 1px solid #E3025A;
  padding: 1.6rem 4rem;
  border-radius: 10rem;
  font-size: 2rem;
  margin: 2rem 0;
}
.nav__menu--main .menu .header__cta a::after {
  display: none;
}
.nav__menu--main .menu .header__cta a:hover {
  background: transparent;
  color: #E3025A;
}
.nav__menu--sec {
  margin-top: 2rem;
}
.nav__menu--sec .menu {
  gap: 0;
}
.nav__menu--sec .menu a {
  font-size: 1.4rem;
  font-family: "sohnebreit-leicht", sans-serif;
  color: #FFFFFF;
}
.nav__menu--sec .menu ul:first-child li:first-child {
  color: #F2CB13;
}
.nav__menu--sec .menu .current-menu-item a {
  color: #F2CB13;
}
.nav__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

@media screen and (min-width: 1024px) {
  .nav {
    display: none;
  }
}
/*****************************************************
********************* grid.scss **********************
******************************************************/
/*****************************************************
******************** Header.scss *********************
******************************************************/
.header__top {
  display: none;
}
.header__logo {
  max-width: 13.7rem;
}
.header__logo a {
  text-decoration: none;
  display: inline-block;
  color: #0B1950;
}
.header__logo a span {
  font-size: 2rem;
  font-weight: bold;
}
.header__logo a span.description {
  font-size: 1.6rem;
  display: block;
}
.header__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 3rem 0;
}
.header__ham {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  height: 2rem;
  width: 3rem;
}
.header__ham .ham__el {
  height: 3px;
  width: 100%;
  background: #0B1950;
  border-radius: 0.5rem;
}
.header__fixed {
  position: fixed;
  top: -100%;
  left: 0;
  width: 100vw;
  background: #0B1950;
  box-shadow: 1px 7px 20px 0px rgba(11, 25, 80, 0.1);
  transition: 0.3s ease;
  z-index: 1000;
}
.header__fixed .header__wrapper {
  padding: 2rem 0;
  border-bottom: 0;
}
.header__fixed .header__top {
  display: none;
}
.header__hide {
  top: -100%;
}
.header__show {
  top: 0;
}
.header-logo {
  text-align: center;
}
.header-logo .header__wrapper {
  justify-content: center;
  padding: 0;
  border: none;
}

@media screen and (min-width: 1024px) {
  .header__top {
    display: block;
  }
  .header__top .wrapper {
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
  }
  .header__top .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  .header__wrapper {
    padding: 5rem 0 2rem 0;
  }
  .header__top + .header__wrapper {
    padding: 2rem 0;
  }
  .header__logo {
    width: 20%;
    max-width: 18rem;
  }
  .header__logo a span {
    font-size: 3rem;
  }
  .header__logo a span.description {
    font-size: 1.8rem;
  }
  .header__ham {
    display: none;
  }
  .header__fixed {
    background: rgba(11, 25, 80, 0.8);
    max-width: 128rem;
    left: 50%;
    transform: translateX(-50%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 3rem;
  }
  .header__fixed .header__logo {
    max-width: 12rem;
  }
  .header__fixed .header__logo img {
    filter: invert(1);
    mix-blend-mode: color-dodge;
  }
  .header__fixed .header__menu--main ul .current-menu-item a {
    color: #F2CB13;
    pointer-events: none;
  }
  .header__fixed .header__menu--main a {
    color: #FFFFFF;
  }
  .header__fixed .header__menu--main a::after {
    background: #F2CB13;
  }
  .header__fixed .header__menu--main a:hover {
    color: #F2CB13;
  }
  .header__fixed .header__cta a {
    background: #F2CB13;
    color: #FFFFFF;
    border: 1px solid #F2CB13;
  }
  .header__fixed .header__cta:hover {
    background: transparent;
    color: #F2CB13;
  }
  .header__show {
    top: 2rem;
  }
}
/*****************************************************
******************** Footer.scss *********************
******************************************************/
.footer {
  background: #0B1950;
  font-size: 1.4rem;
}
.footer__logo {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.footer__logo a {
  text-decoration: none;
  display: inline-block;
  color: #FFFFFF;
  max-width: 5.5rem;
}
.footer__logo a span {
  font-size: 2rem;
  font-weight: bold;
}
.footer__logo a span.description {
  display: block;
  font-size: 1.6rem;
}
.footer p {
  font-size: 1.4rem;
}
.footer__wrapper {
  padding: 6rem 0 12rem 0;
}
.footer .copy {
  color: #FFFFFF;
  text-align: center;
  width: 55%;
  margin: 0 auto 0 auto;
}
.footer__el--bottom {
  margin-top: 4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}

@media screen and (min-width: 1024px) {
  .footer {
    overflow: hidden;
    position: relative;
  }
  .footer::after {
    content: "";
    position: absolute;
    bottom: -29.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    max-width: 144rem;
    height: 38.6rem;
    border-radius: 144rem;
    background: #2A69AC;
    filter: blur(17.8rem);
    pointer-events: none;
  }
  .footer__logo {
    text-align: left;
    align-items: flex-start;
    margin-bottom: 0;
  }
  .footer__logo a span {
    font-size: 2.6rem;
  }
  .footer__logo a span.description {
    font-size: 1.6rem;
  }
  .footer__el {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 4rem;
  }
  .footer__el--top {
    align-items: flex-start;
    margin-bottom: 5rem;
  }
  .footer__el--bottom {
    padding-top: 5rem;
    margin-top: 0;
    flex-direction: row;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
  }
  .footer__wrapper {
    padding: 10rem 0;
    position: relative;
    z-index: 2;
  }
  .footer .copy {
    width: auto;
    margin: 0;
    font-size: 1.2rem;
  }
}
/*****************************************************
******************** Sidebar.scss ********************
******************************************************/
/*****************************************************
********************* Forms.scss *********************
******************************************************/
.gform_required_legend, .gform_validation_errors {
  display: none;
}

html .gform_wrapper.gravity-theme {
  /******** Gestion des erreurs */
}
html .gform_wrapper.gravity-theme .gform_fields {
  grid-column-gap: 1.5rem;
  grid-row-gap: 1.5rem;
}
html .gform_wrapper.gravity-theme .gfield.gf_list_inline .gfield_radio {
  display: flex;
}
html .gform_wrapper.gravity-theme .gfield.gf_list_inline .gfield_radio .gchoice {
  padding-inline-end: 0;
}
html .gform_wrapper.gravity-theme .gfield.gfield_visibility_visible {
  position: relative;
}
html .gform_wrapper.gravity-theme .gfield label {
  margin: 0;
  font-size: 1.6rem;
  font-weight: initial;
}
html .gform_wrapper.gravity-theme .gfield input {
  border: 2px solid #E1E1E1;
  padding: 0;
  color: #0B1950;
  font-size: 1.8rem;
  line-height: 1 !important;
  min-height: auto !important;
  outline: none;
}
html .gform_wrapper.gravity-theme .gfield--type-text input, html .gform_wrapper.gravity-theme .gfield--type-email input, html .gform_wrapper.gravity-theme .gfield--type-phone input, html .gform_wrapper.gravity-theme .gfield--type-address input, html .gform_wrapper.gravity-theme .gfield--type-date input {
  padding: 3.5rem 3rem 1.5rem 3rem;
  border-radius: 2rem;
  background: #EDEDED;
  transition: 0.4s ease;
}
html .gform_wrapper.gravity-theme .gfield--type-text input::-moz-placeholder, html .gform_wrapper.gravity-theme .gfield--type-email input::-moz-placeholder, html .gform_wrapper.gravity-theme .gfield--type-phone input::-moz-placeholder, html .gform_wrapper.gravity-theme .gfield--type-address input::-moz-placeholder, html .gform_wrapper.gravity-theme .gfield--type-date input::-moz-placeholder {
  color: rgba(11, 25, 80, 0.5);
}
html .gform_wrapper.gravity-theme .gfield--type-text input::placeholder, html .gform_wrapper.gravity-theme .gfield--type-email input::placeholder, html .gform_wrapper.gravity-theme .gfield--type-phone input::placeholder, html .gform_wrapper.gravity-theme .gfield--type-address input::placeholder, html .gform_wrapper.gravity-theme .gfield--type-date input::placeholder {
  color: rgba(11, 25, 80, 0.5);
}
html .gform_wrapper.gravity-theme .gfield--type-text input:focus, html .gform_wrapper.gravity-theme .gfield--type-email input:focus, html .gform_wrapper.gravity-theme .gfield--type-phone input:focus, html .gform_wrapper.gravity-theme .gfield--type-address input:focus, html .gform_wrapper.gravity-theme .gfield--type-date input:focus {
  border: 2px solid #E3025A;
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-text label, html .gform_wrapper.gravity-theme .gfield--type-email label, html .gform_wrapper.gravity-theme .gfield--type-phone label, html .gform_wrapper.gravity-theme .gfield--type-address label, html .gform_wrapper.gravity-theme .gfield--type-date label {
  position: absolute;
  top: 3.6rem;
  left: 3rem;
  width: -moz-max-content;
  width: max-content;
  pointer-events: none;
  color: rgba(11, 25, 80, 0.5);
  transform: translateY(-50%);
  font-size: 1.6rem;
  transition: 0.4s ease;
  z-index: 2;
}
html .gform_wrapper.gravity-theme .gfield--type-text.onfocus label, html .gform_wrapper.gravity-theme .gfield--type-email.onfocus label, html .gform_wrapper.gravity-theme .gfield--type-phone.onfocus label, html .gform_wrapper.gravity-theme .gfield--type-address.onfocus label, html .gform_wrapper.gravity-theme .gfield--type-date.onfocus label {
  transform: translateY(-2rem);
  font-size: 1.2rem;
}
html .gform_wrapper.gravity-theme .gfield--type-date input {
  padding: 2.5rem 3rem 2.5rem 3rem;
  width: 100%;
}
html .gform_wrapper.gravity-theme .gfield--type-date .ginput_container::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../icons/select-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
  pointer-events: none;
}
html .gform_wrapper.gravity-theme .gfield--type-address span, html .gform_wrapper.gravity-theme .gfield--type-address .ginput_full:not(:last-of-type) {
  margin-bottom: 2rem;
}
html .gform_wrapper.gravity-theme .gfield--type-address label {
  left: 4rem;
}
html .gform_wrapper.gravity-theme .gfield--type-address .ginput_full, html .gform_wrapper.gravity-theme .gfield--type-address .ginput_left, html .gform_wrapper.gravity-theme .gfield--type-address .ginput_right {
  position: relative;
}
html .gform_wrapper.gravity-theme .gfield--type-address .ginput_full.onfocus label, html .gform_wrapper.gravity-theme .gfield--type-address .ginput_left.onfocus label, html .gform_wrapper.gravity-theme .gfield--type-address .ginput_right.onfocus label {
  transform: translateY(-2rem);
  font-size: 1.2rem;
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container {
  border: 2px solid #E1E1E1;
  border-radius: 2rem;
  padding: 3rem;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  position: relative;
  gap: 3rem;
  align-items: center;
  flex-direction: row-reverse;
  transition: 0.4s ease;
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container label {
  text-align: left;
  background: transparent;
  position: relative;
  left: auto;
  top: auto;
  transform: none;
  border: none;
  border-radius: 0;
  padding: 0;
  min-width: auto;
  font-size: 1.7rem;
  line-height: 1.4;
  color: rgba(11, 25, 80, 0.5);
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
  border: none;
  background: transparent;
  padding: 0;
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container input:hover, html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container input:checked {
  cursor: pointer;
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container input:hover + label, html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container input:checked + label {
  background: transparent;
  border: none;
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container .toggle {
  display: block;
  min-width: 6rem;
  height: 3.2rem;
  background: #D9D9D9;
  border-radius: 6rem;
  position: relative;
  transition: 0.8s ease;
  pointer-events: none;
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container .toggle__el {
  display: block;
  background: #FFFFFF;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  transition: 0.4s ease;
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container:hover {
  border: 2px solid #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container:hover label {
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container.toggle__active {
  border: 2px solid #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container.toggle__active label {
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container.toggle__active .toggle {
  background-color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container.toggle__active .toggle__el {
  left: calc(100% - 28px);
}
html .gform_wrapper.gravity-theme .gfield--type-address .copy_values_option_container + .ginput_container_address {
  margin-top: 2rem;
}
html .gform_wrapper.gravity-theme .gfield--type-phone input {
  padding: 3.5rem 3rem 1.5rem 5rem !important;
}
html .gform_wrapper.gravity-theme .gfield--type-phone label {
  left: 5rem;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox legend {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
  padding-top: 2rem;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox .gfield_checkbox {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice {
  position: relative;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice label {
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(11, 25, 80, 0.5);
  background: #EDEDED;
  border: 0.2rem solid #EDEDED;
  border-radius: 2rem;
  padding: 1.8rem 2.8rem;
  text-align: center;
  display: block;
  min-width: 10rem;
  max-width: 100%;
  transition: 0.4s ease;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice input:hover, html .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice input:checked {
  cursor: pointer;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice input:hover + label, html .gform_wrapper.gravity-theme .gfield--type-checkbox .gchoice input:checked + label {
  background: #FFFFFF;
  border: 0.2rem solid #E3025A;
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox {
  padding-top: 2rem;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox .gchoice {
  border: 2px solid #E1E1E1;
  border-radius: 2rem;
  padding: 3rem;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  gap: 3rem;
  align-items: center;
  flex-direction: row-reverse;
  transition: 0.8s ease;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox .gchoice label {
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0;
  min-width: auto;
  font-size: 1.7rem;
  line-height: 1.4;
  color: rgba(11, 25, 80, 0.5);
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox .gchoice input:hover, html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox .gchoice input:checked {
  cursor: pointer;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox .gchoice input:hover + label, html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox .gchoice input:checked + label {
  background: transparent;
  border: none;
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox .gchoice .toggle {
  display: block;
  min-width: 6rem;
  height: 3.2rem;
  background: #D9D9D9;
  border-radius: 6rem;
  position: relative;
  transition: 0.8s ease;
  pointer-events: none;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox .gchoice .toggle__el {
  display: block;
  background: #FFFFFF;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  transition: 0.4s ease;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox .gchoice:hover {
  border: 2px solid #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox .gchoice:hover label {
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox .gchoice.toggle__active {
  border: 1px solid #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox .gchoice.toggle__active .toggle {
  background-color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-checkbox.toggle-checkbox .gchoice.toggle__active .toggle__el {
  left: calc(100% - 28px);
}
html .gform_wrapper.gravity-theme .gfield--type-radio legend {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
  padding-top: 2rem;
}
html .gform_wrapper.gravity-theme .gfield--type-radio .gfield_radio {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1.5rem;
}
html .gform_wrapper.gravity-theme .gfield--type-radio .gchoice {
  position: relative;
}
html .gform_wrapper.gravity-theme .gfield--type-radio .gchoice label {
  font-size: 1.8rem;
  font-weight: 400;
  color: rgba(11, 25, 80, 0.5);
  background: #EDEDED;
  border: 0.2rem solid #EDEDED;
  border-radius: 2rem;
  padding: 1.8rem 2.8rem;
  max-width: -moz-max-content;
  max-width: max-content;
  min-width: 10rem;
  text-align: center;
  display: block;
  transition: 0.4s ease;
}
html .gform_wrapper.gravity-theme .gfield--type-radio .gchoice input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  outline: none;
}
html .gform_wrapper.gravity-theme .gfield--type-radio .gchoice input:hover, html .gform_wrapper.gravity-theme .gfield--type-radio .gchoice input:checked {
  cursor: pointer;
}
html .gform_wrapper.gravity-theme .gfield--type-radio .gchoice input:hover + label, html .gform_wrapper.gravity-theme .gfield--type-radio .gchoice input:checked + label {
  background: #FFFFFF;
  border: 0.2rem solid #E3025A;
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox {
  padding-top: 2rem;
}
html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox .gchoice {
  border: 2px solid #E1E1E1;
  border-radius: 2rem;
  padding: 3rem;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  gap: 3rem;
  align-items: center;
  flex-direction: row-reverse;
  transition: 0.8s ease;
}
html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox .gchoice label {
  text-align: left;
  background: transparent;
  border: none;
  border-radius: 0;
  max-width: -moz-max-content;
  max-width: max-content;
  padding: 0;
  min-width: auto;
  font-size: 1.7rem;
  line-height: 1.4;
  color: rgba(11, 25, 80, 0.5);
}
html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox .gchoice input:hover, html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox .gchoice input:checked {
  cursor: pointer;
}
html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox .gchoice input:hover + label, html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox .gchoice input:checked + label {
  background: transparent;
  border: none;
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox .gchoice .toggle {
  display: block;
  min-width: 6rem;
  height: 3.2rem;
  background: #D9D9D9;
  border-radius: 6rem;
  position: relative;
  transition: 0.8s ease;
  pointer-events: none;
}
html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox .gchoice .toggle__el {
  display: block;
  background: #FFFFFF;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  transition: 0.4s ease;
}
html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox .gchoice:hover {
  border: 2px solid #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox .gchoice:hover label {
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox .gchoice.toggle__active {
  border: 1px solid #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox .gchoice.toggle__active .toggle {
  background-color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-radio.toggle-checkbox .gchoice.toggle__active .toggle__el {
  left: calc(100% - 28px);
}
html .gform_wrapper.gravity-theme .gfield--type-select .ginput_container_select::after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1.2rem;
  background: url(../icons/select-arrow.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 3rem;
  pointer-events: none;
}
html .gform_wrapper.gravity-theme .gfield--type-select label {
  position: absolute;
  top: 3.6rem;
  left: 3rem;
  width: -moz-max-content;
  width: max-content;
  pointer-events: none;
  color: rgba(11, 25, 80, 0.5);
  transform: translateY(-50%);
  font-size: 1.6rem;
  transition: 0.4s ease;
  z-index: 2;
}
html .gform_wrapper.gravity-theme .gfield--type-select select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 2px solid #EDEDED;
  background: #EDEDED;
  padding: 3.5rem 3rem 1.5rem 3rem;
  border-radius: 2rem;
  font-size: 1.8rem;
  outline: none;
  color: transparent;
  transition: 0.4s ease;
}
html .gform_wrapper.gravity-theme .gfield--type-select select .gf_placeholder {
  color: rgba(11, 25, 80, 0.5);
}
html .gform_wrapper.gravity-theme .gfield--type-select select:focus {
  border: 2px solid rgba(227, 2, 90, 0.5);
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-select.onfocus label {
  transform: translateY(-2rem);
  font-size: 1.2rem;
}
html .gform_wrapper.gravity-theme .gfield--type-section {
  margin-bottom: 1.5rem;
}
html .gform_wrapper.gravity-theme .gfield--type-section .gsection_title {
  margin-top: 3rem;
}
html .gform_wrapper.gravity-theme .gfield--type-textarea label {
  position: absolute;
  top: 3.6rem;
  left: 3rem;
  width: -moz-max-content;
  width: max-content;
  pointer-events: none;
  color: rgba(11, 25, 80, 0.5);
  transform: translateY(-50%);
  font-size: 1.6rem;
  transition: 0.4s ease;
  z-index: 2;
}
html .gform_wrapper.gravity-theme .gfield--type-textarea textarea {
  max-height: 15rem;
  border: 2px solid #EDEDED;
  background: #EDEDED;
  border-radius: 2rem;
  padding: 3.5rem 3rem 1.5rem 3rem;
  resize: none;
  outline: none;
  line-height: 1;
  font-size: 1.8rem;
  transition: 0.4s ease;
}
html .gform_wrapper.gravity-theme .gfield--type-textarea textarea::-moz-placeholder {
  color: rgba(11, 25, 80, 0.5);
}
html .gform_wrapper.gravity-theme .gfield--type-textarea textarea::placeholder {
  color: rgba(11, 25, 80, 0.5);
}
html .gform_wrapper.gravity-theme .gfield--type-textarea textarea:focus {
  border: 2px solid #E3025A;
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-textarea.onfocus label {
  transform: translateY(-2rem);
  font-size: 1.2rem;
}
html .gform_wrapper.gravity-theme .gfield--type-fileupload {
  position: relative;
}
html .gform_wrapper.gravity-theme .gfield--type-fileupload label {
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
  margin-top: 2rem;
}
html .gform_wrapper.gravity-theme .gfield--type-fileupload .gform_fileupload_rules {
  display: none;
}
html .gform_wrapper.gravity-theme .gfield--type-fileupload .gform_fileupload_rules .gfield_label {
  display: none;
}
html .gform_wrapper.gravity-theme .gfield--type-fileupload .gform_drop_area {
  background: #EDEDED;
  border: 1px solid #EDEDED;
  color: rgba(11, 25, 80, 0.5);
  border-radius: 2rem;
}
html .gform_wrapper.gravity-theme .gfield--type-fileupload .gform_drop_area button {
  color: #E3025A;
  background: transparent;
  border: 1px solid #E3025A;
  border-radius: 1rem;
  padding: 1.4rem 1rem;
  transition: 0.4s ease;
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin: 0 auto;
}
html .gform_wrapper.gravity-theme .gfield--type-fileupload .gform_drop_area button::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1.4rem;
  background: url(../icons/downloard.svg) no-repeat center/contain;
  transition: 0.4s ease;
}
html .gform_wrapper.gravity-theme .gfield--type-fileupload .gform_drop_area button:hover {
  cursor: pointer;
  color: #E3025A;
  border: 1px solid #E3025A;
}
html .gform_wrapper.gravity-theme .gfield--type-fileupload .gform_drop_instructions {
  margin-bottom: 1.2rem;
}
html .gform_wrapper.gravity-theme .gform_footer {
  padding: 0;
  margin: 3rem 0 0 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
html .gform_wrapper.gravity-theme .gform_footer input[type=submit] {
  background: #E3025A;
  color: #FFFFFF;
  padding: 2rem 2.7rem;
  font-size: 2rem;
  font-weight: 500;
  border-radius: 110px;
  border: 1px solid #E3025A;
  transition: 0.4s ease;
  margin: 0;
  line-height: 1;
}
html .gform_wrapper.gravity-theme .gform_footer input[type=submit]:hover {
  background: transparent;
  color: #E3025A;
  cursor: pointer;
}
html .gform_wrapper.gravity-theme .gform_page_footer {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0;
  margin: 3rem 0 0 0;
}
html .gform_wrapper.gravity-theme .gform_page_footer input[type=button],
html .gform_wrapper.gravity-theme .gform_page_footer input[type=submit] {
  background: #E3025A;
  color: #FFFFFF;
  padding: 2rem 2.7rem;
  font-size: 2rem;
  font-weight: 500;
  border-radius: 110px;
  border: 1px solid #E3025A;
  transition: 0.4s ease;
  margin: 0;
  line-height: 1;
}
html .gform_wrapper.gravity-theme .gform_page_footer input[type=button]:hover,
html .gform_wrapper.gravity-theme .gform_page_footer input[type=submit]:hover {
  background: transparent;
  color: #E3025A;
  cursor: pointer;
}
html .gform_wrapper.gravity-theme .gform_page_footer input[type=button].gform_previous_button {
  background: transparent;
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield_validation_message, html .gform_wrapper.gravity-theme .validation_message {
  background: transparent;
  border: none;
  padding: 0;
  margin: 1rem 0 0 0;
  font-size: 1.6rem;
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gfield_error [aria-invalid=true] {
  border: 2px solid #E3025A;
}
html .gform_wrapper.gravity-theme .gfield_error label,
html .gform_wrapper.gravity-theme .gfield_error legend {
  color: #E3025A;
}
html .gform_wrapper.gravity-theme .gform_ajax_spinner {
  max-width: 100%;
  width: 5rem;
  display: block;
  margin: 0;
}
html .gform_wrapper.gravity-theme p.infos--field {
  font-size: 1.4rem;
  color: #4784C6;
  max-width: 75%;
}

html .gravity-theme.ui-datepicker .ui-datepicker-calendar td {
  font-size: 1.2rem;
}
html .gravity-theme.ui-datepicker .ui-datepicker-calendar th span {
  font-size: 1.4rem;
}
html .gravity-theme.ui-datepicker .ui-datepicker-header select {
  font-size: 1.4rem;
}
html .gravity-theme.ui-datepicker .ui-state-disabled .ui-state-default {
  opacity: 0.5;
}

@media screen and (min-width: 1024px) {
  html .gform_wrapper.gravity-theme .gform_fields {
    grid-row-gap: 1.5rem;
  }
  html .gform_wrapper.gravity-theme .gfield--type-fileupload .gform_drop_area button {
    padding: 2rem 3rem;
  }
  html .gravity-theme.ui-datepicker .ui-datepicker-calendar td {
    font-size: 1.6rem;
  }
  html .gravity-theme.ui-datepicker .ui-datepicker-calendar th span {
    font-size: 1.8rem;
  }
  html .gravity-theme.ui-datepicker .ui-datepicker-header select {
    font-size: 1.8rem;
  }
}
/*****************************************************
******************* Slide-in.scss *******************
******************************************************/
.slide-in {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 999999;
  pointer-events: none;
}
.slide-in .btn__close {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  background: #E3025A;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  font-size: 0;
  display: flex;
  position: absolute;
  top: 2rem;
  right: 2rem;
}
.slide-in .btn__close .close {
  margin: auto;
  width: 50%;
  height: 50%;
  position: relative;
}
.slide-in .btn__close .close__el {
  width: 100%;
  height: 3px;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
}
.slide-in .btn__close .close__el:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}
.slide-in .btn__close .close__el:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.slide-in__left {
  display: none;
  transition: 0.4s ease;
}
.slide-in__right {
  width: 100%;
  height: 100%;
  background: #FFFFFF;
  padding: 5rem 0;
  overflow-y: scroll;
  overflow-x: hidden;
  position: relative;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transform: translateX(103%);
  transition: 0.4s ease;
}
.slide-in__right::-webkit-scrollbar {
  display: none;
}
.slide-in__wrapper {
  width: 90%;
  max-width: 72rem;
  margin: 0 auto;
}
.slide-in__open {
  pointer-events: all;
}
.slide-in__open .slide-in__right {
  transform: translateX(0);
  transition: 0.4s ease;
}
.slide-in__open .btn__close {
  opacity: 1;
  pointer-events: all;
  transition: 0.4s ease;
}
.slide-in__open .slide-in__left {
  opacity: 1;
  transition: 0.4s ease;
  transition-delay: 0.2s;
}
.slide-in__multicontent .slide-in__content {
  display: none;
}
.slide-in__content .gform_wrapper {
  margin-top: 6rem;
}
.slide-in__content h1 + p,
.slide-in__content h2 + p,
.slide-in__content h3 + p,
.slide-in__content h2 + ul,
.slide-in__content h2 + ol,
.slide-in__content h3 + ul,
.slide-in__content h3 + ol,
.slide-in__content .wp-block-image + h1,
.slide-in__content .wp-block-image + h2,
.slide-in__content .wp-block-image + h3,
.slide-in__content p + p,
.slide-in__content p + ul,
.slide-in__content p + ol,
.slide-in__content ul + p,
.slide-in__content ol + p,
.slide-in__content p + figure,
.slide-in__content figure + p,
.slide-in__content figure + .wp-block-buttons,
.slide-in__content .wp-block-buttons + figure,
.slide-in__content h1 + figure,
.slide-in__content h2 + figure,
.slide-in__content h3 + figure,
.slide-in__content ol + figure,
.slide-in__content ul + figure,
.slide-in__content p + .wp-block-image,
.slide-in__content h1 + .wp-block-image,
.slide-in__content h2 + .wp-block-image,
.slide-in__content h3 + .wp-block-image,
.slide-in__content ul + .wp-block-image,
.slide-in__content ol + .wp-block-image,
.slide-in__content figure + ol,
.slide-in__content figure + ul,
.slide-in__content p + .wp-block-buttons,
.slide-in__content ol + .wp-block-buttons,
.slide-in__content ul + .wp-block-buttons {
  margin-top: 2.5rem;
}
.slide-in__content li + li {
  margin-top: 1.25rem;
}
.slide-in__content p + h1,
.slide-in__content p + h2,
.slide-in__content p + h3,
.slide-in__content h1 + h2,
.slide-in__content h2 + h3,
.slide-in__content ul + h2,
.slide-in__content ol + h2,
.slide-in__content ul + h3,
.slide-in__content ol + h3,
.slide-in__content figure + h2,
.slide-in__content figure + h3,
.slide-in__content .wp-block-buttons + h2,
.slide-in__content .wp-block-buttons + h3 {
  margin-top: 6rem;
}

@media screen and (min-width: 1024px) {
  .slide-in {
    display: flex;
    align-items: stretch;
  }
  .slide-in__right {
    width: 70%;
  }
  .slide-in__left {
    display: block;
    opacity: 0;
    width: 30%;
    height: 100%;
    background: rgba(11, 25, 80, 0.4);
  }
  .slide-in__content h1 + p,
  .slide-in__content h2 + p,
  .slide-in__content h3 + p,
  .slide-in__content h2 + ul,
  .slide-in__content h2 + ol,
  .slide-in__content h3 + ul,
  .slide-in__content h3 + ol,
  .slide-in__content p + p,
  .slide-in__content p + ul,
  .slide-in__content p + ol,
  .slide-in__content ul + p,
  .slide-in__content ol + p,
  .slide-in__content p + figure,
  .slide-in__content figure + p,
  .slide-in__content figure + .wp-block-buttons,
  .slide-in__content .wp-block-buttons + figure,
  .slide-in__content h1 + figure,
  .slide-in__content h2 + figure,
  .slide-in__content h3 + figure,
  .slide-in__content ol + figure,
  .slide-in__content ul + figure,
  .slide-in__content .wp-block-image + figure,
  .slide-in__content .wp-block-image + h1,
  .slide-in__content .wp-block-image + h2,
  .slide-in__content .wp-block-image + h3,
  .slide-in__content .wp-block-image + ul,
  .slide-in__content .wp-block-image + ol,
  .slide-in__content figure + ol,
  .slide-in__content figure + ul,
  .slide-in__content p + .wp-block-buttons,
  .slide-in__content ol + .wp-block-buttons,
  .slide-in__content ul + .wp-block-buttons {
    margin-top: 3rem;
  }
  .slide-in__content li + li {
    margin-top: 1.5rem;
  }
}
@media screen and (min-width: 1280px) {
  .slide-in__right {
    width: 55%;
  }
  .slide-in__left {
    width: 45%;
  }
}
@media screen and (min-width: 1440px) {
  .slide-in__wrapper {
    padding: 10rem 0;
  }
  .slide-in .btn__close {
    width: 6rem;
    height: 6rem;
    top: 3rem;
    right: 5rem;
  }
}
/*****************************************************
********************** Blog.scss *********************
******************************************************/
/************************************************* Archive */
.post-cards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  row-gap: 5rem;
}
.post-cards__el {
  width: 100%;
}
.post-cards__featured {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 2rem;
  padding-top: 70%;
  position: relative;
}
.post-cards__featured img {
  position: absolute;
  top: 50%;
  left: 50%;
  height: 100%;
  width: auto;
  max-width: none;
  transform: translate(-50%, -50%);
  transition: 0.4s ease;
}
.post-cards__featured a:hover img {
  transform: translate(-50%, -50%) scale(1.1);
}
.post-cards h2 {
  margin-bottom: 2rem;
}
.post-cards h2 a {
  color: #0B1950;
  transition: 0.4s ease;
}
.post-cards h2 a:hover {
  cursor: pointer;
  color: rgba(0, 0, 255, 0.5);
}
.post-cards .cat {
  list-style: none;
  margin: 0;
  padding: 0;
  margin: 2rem 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.post-cards .cat__el {
  color: rgba(0, 0, 255, 0.5);
}
.post-cards .btn-container {
  margin-top: 2rem;
}

@media screen and (min-width: 800px) {
  .post-cards {
    gap: 4%;
    justify-content: flex-start;
    align-items: stretch;
    row-gap: 5rem;
  }
  .post-cards__el {
    max-width: 48%;
  }
}
@media screen and (min-width: 1024px) {
  .post-cards {
    gap: 3.5%;
    row-gap: 5rem;
  }
  .post-cards__el {
    max-width: 31%;
  }
}
/************************************************* Single */
.single-post__cat {
  list-style: none;
  margin: 0;
  padding: 0;
  margin-bottom: 3rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: center;
  gap: 1rem;
}
.single-post__cat__el {
  color: rgba(0, 0, 255, 0.5);
}
.single-post h1 {
  margin-bottom: 3rem;
}
.single-post__infos {
  margin-bottom: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.single-post__featured {
  border-radius: 1rem;
  overflow: hidden;
  margin-bottom: 5rem;
}
.single-post .related-articles .post-cards {
  margin-top: 5rem;
}

@media screen and (min-width: 1024px) {
  .single-post__cat {
    margin-bottom: 6rem;
  }
  .single-post h1 {
    margin-bottom: 6rem;
  }
  .single-post__infos {
    margin-bottom: 6rem;
    flex-direction: row;
    align-items: center;
  }
  .single-post__featured {
    margin-bottom: 10rem;
  }
}
/*****************************************************
****************** Configurateur.scss ****************
******************************************************/
.configurateur {
  color: #FFFFFF;
  margin-top: 4rem;
  /****************** configurateur__layout */
  /****************** configurateur__selection */
  /****************** configurateur__usp */
  /****************** configurateur__block */
  /****************** configurateur__summary */
  /****************** configurateur__total */
  /****************** configurateur__mobile */
  /****************** configurateur__cta */
  /****************** configurateur__webdeal */
}
.configurateur__layout {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9rem;
}
.configurateur__selection {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
}
.configurateur__usp {
  padding: 2rem 0;
  border-bottom: 2px solid rgba(11, 25, 80, 0.25);
  margin-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.configurateur__usp-item {
  width: 75%;
  max-width: 25rem;
}
.configurateur__usp-item::before {
  top: 0.35rem;
}
.configurateur__description {
  max-width: 53rem;
}
.configurateur__promo {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.configurateur__promo-message {
  font-size: 1.4rem;
}
.configurateur__promo-message.promo-valid {
  color: #F2CB13;
}
.configurateur__promo-message.promo-invalid {
  color: #E3025A;
}
.configurateur__promo-parrain {
  width: 100%;
}
.configurateur__promo-parrain input {
  width: calc(100% - 3.2rem) !important;
}
.configurateur__prix-value {
  font-size: 2.2rem;
  font-weight: 500;
}
.configurateur__prix-info {
  display: block;
}
.configurateur__options {
  margin-top: 2rem;
  margin-bottom: 2rem;
  border-bottom: 2px solid rgba(11, 25, 80, 0.25);
  padding-bottom: 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 5rem;
}
.configurateur__block {
  width: calc(100% - 4px);
  border-radius: 2rem;
  background: #0B1950;
  border: 2px solid #FFFFFF;
  transition: 0.4s ease;
}
.configurateur__block-inner {
  padding: 3rem 2rem;
}
.configurateur__block-icon {
  width: 4rem;
  height: 4rem;
  background: #F2CB13;
  display: flex;
  border-radius: 1rem;
}
.configurateur__block-icon img {
  max-width: 2.8rem;
  margin: auto;
}
.configurateur__block-title {
  font-size: 2rem;
}
.configurateur__block-info {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.configurateur__block-info-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.configurateur__block-info-top-inner {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.configurateur__block-info-prix {
  font-weight: 500;
  font-size: 2.2rem;
}
.configurateur__block-info-prix-info {
  display: block;
  font-size: 1.6rem;
  line-height: 1;
}
.configurateur__block-info-text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 1rem;
}
.configurateur__block-info .badge {
  background: #F2CB13;
  color: #0B1950;
  padding: 0.9rem 1.2rem;
  display: inline-block;
  font-family: "sohnebreit-fett", sans-serif;
  font-size: 1.6rem;
  border-radius: 0.65rem;
  text-transform: uppercase;
}
.configurateur__block-info .toggle-switch {
  display: block;
  width: 4.5rem;
  position: relative;
  height: 2.4rem;
}
.configurateur__block-info .toggle-switch__slider {
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  transition: 0.4s ease;
}
.configurateur__block-info .toggle-switch input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  width: 100%;
  display: block;
  height: 100%;
  border-radius: 1.2rem;
  background: #C4C4C4;
  transition: 0.4s ease;
}
.configurateur__block-info .toggle-switch input:hover {
  cursor: pointer;
}
.configurateur__block-info .toggle-switch input:checked {
  background: #E3025A;
}
.configurateur__block-info .toggle-switch input:checked + .toggle-switch__slider {
  left: calc(100% - 22px);
}
.configurateur__block-preview-prix {
  display: block;
  font-weight: 500;
  font-size: 2.2rem;
}
.configurateur__block-content-footer {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.configurateur__block-content .badge {
  background: #F2CB13;
  color: #0B1950;
  padding: 0.9rem 1.2rem;
  display: inline-block;
  font-family: "sohnebreit-fett", sans-serif;
  font-size: 1.6rem;
  border-radius: 0.65rem;
  text-transform: uppercase;
}
.configurateur__block.is-active {
  background: #FFFFFF;
  color: #0B1950;
  border: 3px solid #E3025A;
}
.configurateur__option {
  position: relative;
  width: 100%;
  max-width: 29.8rem;
  border: 2px solid #F3F3F6;
  background: #F3F3F6;
  border-radius: 1rem;
  transition: 0.4s ease;
}
.configurateur__option-inner {
  padding: 2rem;
}
.configurateur__option input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
.configurateur__option input:hover {
  cursor: pointer;
}
.configurateur__option-header .badge {
  background: #C4C4C4;
  font-size: 1.8rem;
  padding: 1.5rem 2rem;
  text-transform: none;
  transition: 0.4s ease;
}
.configurateur__option-label {
  display: flex;
  justify-content: space-between;
}
.configurateur__option-content {
  margin: 2rem 0 0 0;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.configurateur__option-prix {
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
}
.configurateur__option-usp {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}
.configurateur__option-toggle {
  position: relative;
  background: #C4C4C4;
  margin: 1rem 0;
  width: 4.5rem;
  height: 2.4rem;
  border-radius: 1.2rem;
  transition: 0.4s ease;
}
.configurateur__option-toggle .toggle-radio {
  position: absolute;
  top: 50%;
  left: 3px;
  transform: translateY(-50%);
  width: 1.9rem;
  height: 1.9rem;
  background: #FFFFFF;
  border-radius: 50%;
  transition: 0.4s ease;
}
.configurateur__option.is-active {
  border: 3px solid #E3025A;
  background: #FFFFFF;
}
.configurateur__option input:checked + .configurateur__option-label .configurateur__option-header .badge {
  background: #E3025A;
  color: #FFFFFF;
}
.configurateur__option input:checked + .configurateur__option-label .configurateur__option-toggle {
  background: #E3025A;
}
.configurateur__option input:checked + .configurateur__option-label .configurateur__option-toggle .toggle-radio {
  left: calc(100% - 22px);
}
.configurateur__summary {
  width: 100%;
}
.configurateur__summary-header {
  text-align: center;
  max-width: 23rem;
  margin: 0 auto 4rem auto;
}
.configurateur__summary-inner {
  padding: 3rem 2rem;
  border-radius: 2rem;
}
.configurateur__summary-empty p {
  text-align: center;
  max-width: 34rem;
  margin: auto;
  font-weight: 500;
  font-size: 1.8rem;
  padding: 3rem 0;
}
.configurateur__summary-items {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.configurateur__summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.configurateur__summary-item-icon {
  width: 2.8rem;
  height: 2.8rem;
  background: #F2CB13;
  display: flex;
  border-radius: 0.7rem;
}
.configurateur__summary-item-icon img {
  max-width: 2rem;
  margin: auto;
}
.configurateur__summary-item-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  width: 57%;
  max-width: 22.4rem;
}
.configurateur__summary-item-title {
  font-size: 1.6rem;
  font-family: "sohnebreit-fett", sans-serif;
  font-weight: 800;
}
.configurateur__summary-item-prix {
  width: 40%;
  max-width: 22rem;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 0.5rem;
}
.configurateur__summary-item-prix-value {
  font-size: 1.8rem;
  font-weight: 500;
}
.configurateur__summary-item-info {
  font-size: 1.4rem;
  text-align: right;
}
.configurateur__summary-modem, .configurateur__summary-frais {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2.5rem;
  gap: 1rem;
}
.configurateur__summary-modem span, .configurateur__summary-frais span {
  font-weight: 400;
}
.configurateur__summary-modem span:last-child, .configurateur__summary-frais span:last-child {
  font-weight: 500;
  font-size: 1.8rem;
}
.configurateur__summary-webdeal {
  margin-top: 2.5rem;
}
.configurateur__summary-promo {
  padding: 2.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.25);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.configurateur__summary-promo input {
  text-align: center;
  background: transparent;
  outline: none;
  border-radius: 1rem;
  background: #FFF;
  border: 1px solid #FFF;
  padding: 1.6rem 1.4rem;
  color: #0B1950;
  width: calc(66% - 3.2rem);
  max-width: 29.8rem;
  font-size: 1.4rem;
  line-height: 1.4;
  display: inline-block;
}
.configurateur__summary-promo input::-moz-placeholder {
  color: #0B1950;
  font-size: 1.6rem;
}
.configurateur__summary-promo input::placeholder {
  color: #0B1950;
  font-size: 1.6rem;
}
.configurateur__summary-promo button {
  background: #E3025A;
  color: #FFFFFF;
  font-size: 1.6rem;
  padding: 1.6rem 1.1rem;
  line-height: 1.4;
  display: inline-block;
  font-weight: 500;
  border: 2px solid #E3025A;
  border-radius: 1rem;
}
.configurateur__summary-promo-message {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 1.4rem;
}
.configurateur__summary-total {
  margin: 2.5rem 0;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}
.configurateur__summary-total-title {
  font-size: 2rem;
  font-family: "sohnebreit-fett", sans-serif;
  font-weight: 800;
}
.configurateur__summary-combo {
  background: #F2CB13;
  color: #0B1950;
  border-radius: 4px;
}
.configurateur__summary-combo .badge {
  display: block;
  padding: 1rem 4rem;
  text-align: center;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.2;
}
.configurateur__summary-combo .badge span {
  font-family: "sohnebreit-fett", sans-serif;
  font-weight: 800;
}
.configurateur__summary-actions {
  margin-top: 4rem;
  position: relative;
  border-radius: 10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 2.5rem 1rem;
}
.configurateur__summary-help {
  display: inline-block;
  font-size: 2rem;
  padding: 0 1.5rem;
  background: #1a2862;
  font-weight: 500;
  position: absolute;
  top: -1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: -moz-max-content;
  width: max-content;
}
.configurateur__summary-buttons {
  display: flex;
  justify-content: center;
  gap: 1rem;
  align-items: center;
}
.configurateur__summary-buttons .btn {
  width: 48%;
}
.configurateur__summary-buttons .btn a {
  display: block;
  width: 100%;
  text-align: center;
  padding: 2.4rem 0;
  line-height: 1;
}
.configurateur__summary .countdown__container {
  margin-top: 3rem;
}
.configurateur__summary .countdown__title {
  text-align: center;
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}
.configurateur__total-line {
  display: flex;
  justify-content: space-between;
  gap: 3.5rem;
}
.configurateur__total-line span {
  line-height: 1.2;
  width: 60%;
  max-width: 18rem;
}
.configurateur__total-line span:last-child {
  text-align: right;
  font-size: 1.8rem;
  font-weight: 500;
  width: 43%;
  max-width: 22rem;
}
.configurateur__total-line span span:last-child {
  display: block;
  font-size: 1.4rem;
  font-weight: 400;
  margin-top: 0.7rem;
  width: 100%;
}
.configurateur__mobile-summary {
  background: #E3025A;
  color: #FFFFFF;
  position: fixed;
  bottom: -100%;
  left: 0;
  width: 100%;
  z-index: 100;
  transition: 0.4s ease;
}
.configurateur__mobile-summary-content {
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}
.configurateur__mobile-summary-price {
  margin: 0.5rem 0 0 0;
  line-height: 1;
  font-size: 2.2rem;
  font-weight: 500;
}
.configurateur__mobile-summary-price span {
  display: block;
  margin-top: 0.5rem;
}
.configurateur__mobile-summary-title, .configurateur__mobile-summary-price span {
  font-size: 1.4rem;
  line-height: 1.2;
  font-weight: 400;
}
.configurateur__mobile-summary-action a {
  background: #FFFFFF;
  color: #E3025A;
  font-size: 1.4rem;
  text-align: center;
  line-height: 1.1;
  padding: 2rem;
  border-radius: 10rem;
  font-weight: 500;
}
.configurateur__mobile-summary.is-active {
  display: block;
  bottom: -0.5%;
}
.configurateur__cta {
  background: #FFFFFF;
  border-radius: 1rem;
  margin-top: 2rem;
}
.configurateur__cta-inner {
  padding: 4rem 3.45rem 5rem 3.45rem;
}
.configurateur__cta-image {
  max-width: 5.7rem;
  margin: 0 auto 2.5rem auto;
}
.configurateur__cta h2 {
  font-size: 2.2rem;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 2rem;
}
.configurateur__cta .btn-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.configurateur__cta .btn-container .btn a {
  font-weight: 400;
}
.configurateur__cta .btn-container .btn a::after {
  width: 100%;
}
.configurateur__cta .btn-container .btn a:hover::after {
  width: 0;
}
.configurateur__webdeal-toggle {
  padding: 1rem 2rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  border-radius: 1rem;
  font-size: 1.4rem;
}
.configurateur__webdeal-toggle .toggle-switch {
  position: relative;
  width: 4.5rem;
  height: 2.4rem;
}
.configurateur__webdeal-toggle .toggle-switch__slider {
  position: absolute;
  top: 50%;
  left: 0.4rem;
  width: 2rem;
  height: 2rem;
  background: #FFFFFF;
  border-radius: 50%;
  transform: translateY(-50%);
  transition: 0.4s ease;
}
.configurateur__webdeal-toggle .toggle-switch input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #C4C4C4;
  border-radius: 1.6rem;
  transition: 0.4s ease;
}
.configurateur__webdeal-toggle .toggle-switch input:checked {
  background: #E3025A;
}
.configurateur__webdeal-toggle .toggle-switch input:checked + .toggle-switch__slider {
  left: calc(100% - 2.4rem);
}
.configurateur__webdeal-text {
  max-width: 26.2rem;
  width: 70%;
}

@media screen and (min-width: 700px) {
  .configurateur__usp-item {
    width: -moz-max-content;
    width: max-content;
    max-width: -moz-max-content;
    max-width: max-content;
  }
}
@media screen and (min-width: 1024px) {
  .configurateur {
    margin-top: 5rem;
    /****************** configurateur__layout */
    /****************** configurateur__selection */
    /****************** configurateur__usp */
    /****************** configurateur__block */
    /****************** configurateur__summary */
    /****************** configurateur__webdeal */
  }
  .configurateur__layout {
    flex-direction: row;
    justify-content: space-between;
    align-items: stretch;
    gap: 4rem;
  }
  .configurateur__selection {
    width: 55%;
    max-width: 69.5rem;
    gap: 3rem;
  }
  .configurateur__promo-message {
    font-size: 1.6rem;
  }
  .configurateur__promo-parrain {
    width: 100%;
  }
  .configurateur__promo-parrain input {
    width: calc(100% - 8.4rem) !important;
  }
  .configurateur__usp {
    padding: 3rem 0;
    margin-bottom: 3rem;
    justify-content: space-between;
  }
  .configurateur__usp-item::before {
    top: 0.75rem;
    width: 1.6rem;
    height: 1.6rem;
  }
  .configurateur__options {
    margin-top: 7rem;
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
  .configurateur__option {
    border: 3px solid #F3F3F6;
    border-radius: 2rem;
  }
  .configurateur__option-header {
    width: -moz-max-content;
    width: max-content;
    position: absolute;
    top: -2.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .configurateur__option-inner {
    padding: 5rem 3.2rem 3.5rem 3.2rem;
  }
  .configurateur__option-content {
    margin-top: 0;
    flex-direction: column-reverse;
    align-items: center;
    gap: 3rem;
  }
  .configurateur__option-label {
    flex-direction: column;
    align-items: center;
    gap: 3rem;
  }
  .configurateur__option-toggle {
    margin: 0;
    width: 6rem;
    height: 3.2rem;
    border-radius: 1.6rem;
  }
  .configurateur__option-toggle .toggle-radio {
    width: 2.6rem;
    height: 2.6rem;
  }
  .configurateur__option input:checked + .configurateur__option-label .configurateur__option-toggle .toggle-radio {
    left: calc(100% - 2.9rem);
  }
  .configurateur__block {
    border-radius: 2.3rem;
  }
  .configurateur__block-inner {
    padding: 3rem;
  }
  .configurateur__block-icon {
    width: 6.8rem;
    height: 6.8rem;
    border-radius: 2rem;
  }
  .configurateur__block-icon img {
    max-width: 3.5rem;
  }
  .configurateur__block-title {
    font-size: 3rem;
  }
  .configurateur__block-info {
    gap: 3rem;
  }
  .configurateur__block-info-top-inner {
    gap: 2.3rem;
  }
  .configurateur__block-info .toggle-switch {
    width: 6rem;
    height: 3.2rem;
  }
  .configurateur__block-info .toggle-switch__slider {
    width: 2.6rem;
    height: 2.6rem;
  }
  .configurateur__block-info .toggle-switch input {
    border-radius: 1.6rem;
  }
  .configurateur__block-info .toggle-switch input:checked + .toggle-switch__slider {
    left: calc(100% - 2.8rem);
  }
  .configurateur__block-content-footer {
    flex-direction: column-reverse;
    gap: 3rem;
  }
  .configurateur__block-content .badge {
    font-size: 2rem;
  }
  .configurateur__summary {
    width: 45%;
    max-width: 57.2rem;
  }
  .configurateur__summary-header {
    display: none;
  }
  .configurateur__summary-inner {
    border-radius: 3rem;
    padding: 4.4rem;
  }
  .configurateur__summary-sticky {
    position: sticky;
    top: 15%;
  }
  .configurateur__summary-items {
    gap: 2rem;
    margin-bottom: 2rem;
  }
  .configurateur__summary-webdeal {
    margin-top: 2rem;
  }
  .configurateur__summary-item {
    gap: 2rem;
  }
  .configurateur__summary-item-icon {
    width: 4.6rem;
    height: 4.6rem;
    border-radius: 1.4rem;
  }
  .configurateur__summary-item-icon img {
    max-width: 2.4rem;
  }
  .configurateur__summary-item-header {
    gap: 1.5rem;
  }
  .configurateur__summary-item-title {
    font-size: 2rem;
  }
  .configurateur__summary-item-prix {
    width: 50%;
  }
  .configurateur__summary-item-prix-value {
    font-size: 2.2rem;
  }
  .configurateur__summary-item-info {
    font-size: 1.6rem;
  }
  .configurateur__summary-modem, .configurateur__summary-frais {
    margin-bottom: 2rem;
  }
  .configurateur__summary-modem span, .configurateur__summary-frais span {
    font-size: 1.8rem;
  }
  .configurateur__summary-modem span:last-child, .configurateur__summary-frais span:last-child {
    font-size: 2.2rem;
  }
  .configurateur__summary-promo {
    padding: 2rem 0;
  }
  .configurateur__summary-promo input {
    background: transparent;
    border: 2px solid #FFF;
    padding: 1.4rem 4.2rem;
    color: #FFFFFF;
    width: calc(66% - 8.4rem);
    font-size: 1.8rem;
  }
  .configurateur__summary-promo input::-moz-placeholder {
    color: #FFFFFF;
    font-size: 1.8rem;
    opacity: 0.6;
  }
  .configurateur__summary-promo input::placeholder {
    color: #FFFFFF;
    font-size: 1.8rem;
    opacity: 0.6;
  }
  .configurateur__summary-promo button {
    font-size: 1.8rem;
    padding: 1.4rem 3.2rem;
    line-height: 1.4;
  }
  .configurateur__summary-promo-message {
    font-size: 1.6rem;
  }
  .configurateur__summary-total {
    margin: 2rem 0;
    gap: 2rem;
  }
  .configurateur__summary-combo {
    margin-bottom: 4rem;
  }
  .configurateur__summary-combo .badge {
    padding: 1rem 2.4rem;
  }
  .configurateur__summary-actions {
    border-radius: 3rem;
    padding: 2.6rem 3.7rem 2rem 3.7rem;
  }
  .configurateur__summary-help {
    font-size: 2.2rem;
    padding: 0 2.5rem;
  }
  .configurateur__summary-empty p {
    font-size: 2.2rem;
    padding: 6.6rem 0;
  }
  .configurateur__summary .countdown__container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
  }
  .configurateur__summary .countdown__title {
    text-align: left;
    font-size: 2rem;
    margin-bottom: 0;
  }
  .configurateur__total-line {
    gap: 5rem;
  }
  .configurateur__total-line span {
    font-size: 1.8rem;
  }
  .configurateur__total-line span:last-child {
    font-size: 2.2rem;
    width: 46%;
  }
  .configurateur__total-line span span:last-child {
    font-size: 1.6rem;
  }
  .configurateur__mobile-summary {
    display: none;
  }
  .configurateur__cta {
    margin-top: 5rem;
    width: 53%;
    max-width: 69.5rem;
    border: 3px solid rgba(255, 255, 255, 0.25);
    background: linear-gradient(138deg, rgba(35, 48, 98, 0.4) 2.38%, rgba(50, 69, 139, 0.4) 97.62%);
    -webkit-backdrop-filter: blur(20px);
            backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
    color: #FFFFFF;
  }
  .configurateur__cta::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
  }
  .configurateur__cta::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1px;
    height: 100%;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
  }
  .configurateur__cta-inner {
    padding: 4rem 6rem 5rem 6rem;
  }
  .configurateur__cta-image {
    max-width: 10rem;
    margin: 0 auto 2.5rem auto;
  }
  .configurateur__cta h2 {
    font-size: 2.2rem;
    text-align: center;
    line-height: 1.2;
    margin-bottom: 1.5rem;
  }
  .configurateur__cta-content {
    max-width: 39rem;
    margin: 0 auto;
  }
  .configurateur__cta .btn-container .btn a {
    color: #FFFFFF;
  }
  .configurateur__cta .btn-container .btn a::after {
    background: #FFFFFF;
    height: 1px;
  }
  .configurateur__webdeal-text {
    max-width: 31rem;
    font-size: 1.6rem;
    line-height: 1.2;
  }
}
@media screen and (min-width: 1280px) {
  .configurateur__promo-parrain {
    width: 100%;
  }
  .configurateur__promo-parrain input {
    max-width: 100%;
  }
  .configurateur__cta-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 3rem;
    padding: 4rem 5rem 5rem 5rem;
  }
  .configurateur__cta-image {
    margin: 0;
  }
  .configurateur__cta-content {
    margin: 0;
  }
  .configurateur__cta h2 {
    text-align: left;
    font-size: 2.8rem;
  }
  .configurateur__cta .btn-container {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
  }
  .configurateur__cta .btn-container .btn a {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1440px) {
  .configurateur__options {
    gap: 2rem;
  }
  .configurateur__cta-inner {
    padding: 4rem 7.8rem 5rem 7.8rem;
  }
  .configurateur__cta h2 {
    font-size: 3rem;
  }
}
.frais-offert {
  color: #F2CB13;
  font-weight: bold;
}

/*****************************************************
***************** LAYOUT OFFRES **********************
******************************************************/
/************************************************* Section offre */
.section__offre h2 + p {
  max-width: 88rem;
  margin: 0 auto;
}

/************************************************* Bloc offres */
.bloc-offres {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 8rem;
  margin-top: 8rem;
  position: relative;
}
.bloc-offres::before, .bloc-offres::after {
  content: "";
  display: block;
  position: absolute;
  background: url(../images/elt-bkg-offre.png) no-repeat center/contain;
  width: 70rem;
  height: 42rem;
  mix-blend-mode: lighten;
}
.bloc-offres::before {
  top: 30%;
  left: -55rem;
  transform: rotate(160deg);
}
.bloc-offres::after {
  top: 50%;
  right: -58rem;
  transform: rotate(20deg);
}
.bloc-offres__el {
  width: 100%;
  max-width: 56.6rem;
  position: relative;
  opacity: 1;
  z-index: 2;
}
.bloc-offres--grid::before {
  top: 15%;
}
.bloc-offres--grid::after {
  top: 65%;
}

/************************************************* Offer card */
.offer-card {
  background: #FFFFFF;
  color: #0B1950;
  border-radius: 2rem;
  position: relative;
}
.offer-card__inner {
  padding: 6rem 2rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
}
.offer-card__badge {
  background: #F2CB13;
  color: #0B1950;
  border-radius: 0.7rem;
  padding: 0.7rem 2.2rem;
  font-family: "sohnebreit-fett", sans-serif;
  font-weight: 800;
  width: -moz-max-content;
  width: max-content;
  font-size: 2rem;
  position: absolute;
  top: -2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}
.offer-card__badge img {
  max-width: 2.7rem;
}
.offer-card__badge-text {
  width: 100%;
}
.offer-card__badge-text span {
  display: inline-block;
  background: #F2CB13;
  color: #0B1950;
  padding: 0.8rem 0;
  border-radius: 0.75rem;
  text-align: center;
  width: 100%;
  font-family: "sohnebreit-fett", sans-serif;
  font-weight: 800;
  font-size: 1.6rem;
}
.offer-card__combo-toggle .toggle-switch {
  position: relative;
}
.offer-card__combo-toggle label {
  border-radius: 9rem;
  background: #EAEAEA;
  display: inline-block;
  overflow: hidden;
  font-family: "sohnebreit-fett", sans-serif;
  font-weight: 800;
  font-size: 1.4rem;
}
.offer-card__combo-toggle label .toggle-switch__slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 5.2rem;
  border-radius: 9rem;
  display: inline-block;
  border-radius: 54.757px;
  background: #E3025A;
  box-shadow: 0 0 4.563px 0 rgba(227, 2, 90, 0.5);
  transition: 0.4s ease;
}
.offer-card__combo-toggle label .toggle-switch__text {
  border-radius: 9rem;
  display: inline-block;
  padding: 1.8rem;
  position: relative;
  z-index: 5;
  transition: 0.4s ease;
}
.offer-card__combo-toggle label .toggle-switch__text.is-active {
  color: #FFFFFF;
}
.offer-card__combo-toggle input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0 !important;
  box-shadow: none;
  width: 100%;
  height: 100%;
  z-index: 10;
  background: transparent;
  border: none;
  outline: none;
}
.offer-card__combo-toggle input:hover {
  cursor: pointer;
}
.offer-card__combo-toggle input:checked + label .toggle-switch__slider {
  left: 50%;
}
.offer-card__usp li {
  font-size: 1.8rem;
  padding-left: 3.3rem;
}
.offer-card__usp li::before {
  width: 2.3rem;
  height: 2.3rem;
}
.offer-card__price {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.1rem;
}
.offer-card__price .price {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "sohnebreit-fett", sans-serif;
  color: #E3025A;
  font-size: 8.6rem;
  line-height: 0.8;
  gap: 0.8rem;
}
.offer-card__price .price__details {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}
.offer-card__price .price__decimales {
  font-size: 2.2rem;
}
.offer-card__price .price__unit {
  font-family: "sohnebreit-leicht", sans-serif;
  color: #0B1950;
  font-size: 3.5rem;
}
.offer-card__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.offer-card .countdown {
  margin: 0 0 0 0;
}
.offer-card .countdown__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}
.offer-card__promo-badge {
  font-size: 1.6rem;
}

@media screen and (min-width: 700px) {
  /************************************************* Bloc offres */
  .bloc-offres::before {
    left: -19rem;
    top: -10rem;
    transform: rotate(210deg);
  }
  .bloc-offres::after {
    top: 40rem;
    right: -18rem;
    transform: rotate(30deg);
  }
  .bloc-offres--grid::before {
    top: -10rem;
    left: -45rem;
  }
  .bloc-offres--grid::after {
    top: 75rem;
    right: -45rem;
  }
}
@media screen and (min-width: 1024px) {
  /************************************************* Section offre */
  /************************************************* Bloc offres */
  .bloc-offres {
    margin-top: 10rem;
    gap: 5rem;
  }
  .bloc-offres--grid::before {
    left: -24rem;
  }
  .bloc-offres--grid::after {
    top: 85rem;
    right: -24rem;
  }
  /************************************************* Offer card */
  .offer-card__inner {
    padding: 8.6rem 5rem 5rem 5rem;
    gap: 3.5rem;
  }
  .offer-card__badge {
    border-radius: 1rem;
    padding: 1rem 3rem;
    font-size: 2.8rem;
    top: -2.75rem;
    gap: 2.3rem;
  }
  .offer-card__badge img {
    max-width: 5.2rem;
  }
  .offer-card__badge-text span {
    padding: 1rem 0;
    border-radius: 1rem;
    font-size: 1.8rem;
  }
  .offer-card__combo-toggle label {
    border-radius: 10rem;
    font-size: 1.6rem;
  }
  .offer-card__combo-toggle label .toggle-switch__slider {
    height: 5.6rem;
    border-radius: 6rem;
  }
  .offer-card__combo-toggle label .toggle-switch__text {
    border-radius: 10rem;
    padding: 2rem;
  }
  .offer-card__usp li {
    font-size: 2.4rem;
    padding-left: 4.2rem;
  }
  .offer-card__usp li::before {
    width: 3rem;
    height: 3rem;
  }
  .offer-card__price .price {
    font-size: 10rem;
    gap: 1rem;
  }
  .offer-card__price .price__details {
    gap: 0.4rem;
  }
  .offer-card__price .price__decimales {
    font-size: 2.6rem;
  }
  .offer-card__price .price__unit {
    font-size: 4rem;
  }
  .offer-card__cta {
    gap: 2rem;
  }
  .offer-card__promo-badge {
    font-size: 1.8rem;
  }
}
@media screen and (min-width: 1325px) {
  /************************************************* Bloc offres */
  .bloc-offres--grid::before {
    top: -10rem;
    left: -49rem;
  }
  .bloc-offres--grid::after {
    top: 38rem;
    right: -49rem;
  }
}
/************************************************* Section Combo */
.section__combo h2.wp-block-heading {
  max-width: 79rem;
  margin-left: auto;
  margin-right: auto;
}
.section__combo h2.wp-block-heading + p {
  max-width: 65rem;
  margin-left: auto;
  margin-right: auto;
}

.combo-section {
  margin-top: 5rem;
}
.combo-section__content {
  border-radius: 2rem;
  overflow: hidden;
}
.combo-section__offers {
  background: #FFFFFF;
  color: #0B1950;
}
.combo-section__offers-inner {
  padding: 3rem 2rem 4rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
}
.combo-section__calculator {
  background: #E3025A;
}
.combo-section__calculator-inner {
  padding: 4.5rem 3rem;
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
  align-items: center;
}
.combo-section__calculator .btn__primaire a {
  background: #FFFFFF;
  color: #E3025A;
}
.combo-section__calculator .btn__tertiaire a {
  color: #FFFFFF;
}
.combo-section__calculator .btn__tertiaire a::after {
  background: #FFFFFF;
}

.combo-calculator__message {
  border-radius: 1.4rem;
  background: #EA4183;
  text-align: center;
}
.combo-calculator__message p {
  padding: 0.7rem 1.4rem;
}
.combo-calculator__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.3rem;
}
.combo-calculator__price {
  display: flex;
  min-height: 10.1rem;
}
.combo-calculator__price-label, .combo-calculator__price-badge {
  font-size: 1.6rem;
  display: block;
  text-align: center;
}
.combo-calculator__price-main {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 8.6rem;
  font-family: "sohnebreit-fett", sans-serif;
  font-weight: 800;
  color: #F2CB13;
  line-height: 0.8;
}
.combo-calculator__price-decimales {
  font-size: 2.2rem;
}
.combo-calculator__price-decimales-container {
  display: flex;
  flex-direction: column;
}
.combo-calculator__price-unit {
  font-family: "sohnebreit-leicht", sans-serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: #FFFFFF;
}
.combo-calculator__price-empty {
  margin: auto;
  text-align: center;
}
.combo-calculator__promo-badge {
  font-size: 1.6rem;
  display: block;
  text-align: center;
}

html .combo-offer-button {
  border-radius: 2rem;
  border: 2px solid #C4C4C4;
  transition: 0.4s ease;
}
html .combo-offer-button__inner {
  padding: 3rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
html .combo-offer-button__left {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
html .combo-offer-button__icon {
  background: #F2CB13;
  border-radius: 1rem;
  width: 4rem;
  min-width: 4rem;
  height: 4rem;
  display: flex;
}
html .combo-offer-button__icon img {
  margin: auto;
  max-width: 2.8rem;
}
html .combo-offer-button__content {
  width: 71%;
}
html .combo-offer-button__content h3 {
  font-size: 1.8rem;
}
html .combo-offer-button__content h3 + p {
  margin-top: 0;
}
html .combo-offer-button__content p {
  line-height: 1.2;
}
html .combo-offer-button__toggle {
  position: relative;
}
html .combo-offer-button__toggle label {
  display: block;
  background: #C4C4C4;
  width: 4.5rem;
  height: 2.4rem;
  border-radius: 1.2rem;
  transition: 0.4s ease;
}
html .combo-offer-button__toggle label span {
  display: block;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 2px;
  transition: 0.4s ease;
}
html .combo-offer-button__toggle input {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0 !important;
  box-shadow: none;
  z-index: 2;
}
html .combo-offer-button__toggle input:hover {
  cursor: pointer;
}
html .combo-offer-button__toggle input:checked + label {
  background: #E3025A;
}
html .combo-offer-button__toggle input:checked + label span {
  left: calc(100% - 22px);
}
html .combo-offer-button:hover, html .combo-offer-button.is-active {
  border-color: #E3025A;
  cursor: pointer;
}

@media screen and (min-width: 1024px) {
  .section__combo {
    max-width: 151.2rem;
    margin: 0 auto;
    position: relative;
  }
  .section__combo::before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    max-height: 102.5rem;
    position: absolute;
    bottom: 0;
    left: 0;
    background: url(../images/elt-bkg-combo.webp) no-repeat center/contain;
    z-index: 2;
    mix-blend-mode: lighten;
  }
  .section__combo .wp-block-group__inner-container::before, .section__combo .wp-block-group__inner-container::after {
    content: "";
    display: block;
    height: 100%;
    width: 100%;
    max-width: 12.3rem;
    position: absolute;
    top: 0;
    z-index: 3;
  }
  .section__combo .wp-block-group__inner-container::before {
    left: 0;
    background: linear-gradient(90deg, #0B1950 0%, rgba(11, 25, 80, 0) 100%);
  }
  .section__combo .wp-block-group__inner-container::after {
    right: 0;
    background: linear-gradient(270deg, #0B1950 0%, rgba(11, 25, 80, 0) 100%);
  }
  .section__combo .wp-block-columns {
    position: relative;
    z-index: 10;
  }
  .combo-section__content {
    box-shadow: 0 0 44px 0 rgba(255, 255, 255, 0.25);
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0;
  }
  .combo-section__offers {
    width: 58%;
    max-width: 76.4rem;
  }
  .combo-section__offers-inner {
    padding: 9.5rem 5rem;
  }
  .combo-section__calculator {
    width: 42%;
    max-width: 54.8rem;
    display: flex;
  }
  .combo-section__calculator-inner {
    padding: 6.2rem;
    gap: 4rem;
    margin: auto;
  }
  .combo-calculator__message {
    border-radius: 2.1rem;
  }
  .combo-calculator__message p {
    padding: 1.1rem 2.1rem;
  }
  .combo-calculator__cta {
    gap: 2rem;
  }
  .combo-calculator__price {
    min-height: 14.5rem;
  }
  .combo-calculator__price-label, .combo-calculator__price-badge {
    font-size: 2.2rem;
  }
  .combo-calculator__price-label {
    margin-bottom: 1rem;
  }
  .combo-calculator__price-badge {
    margin-top: 1rem;
  }
  .combo-calculator__price-main {
    font-size: 10rem;
  }
  .combo-calculator__price-decimales {
    font-size: 2.6rem;
  }
  .combo-calculator__price-unit {
    font-size: 4rem;
  }
  .combo-calculator__promo-badge {
    font-size: 2.2rem;
    margin-top: 1rem;
  }
  html .combo-offer-button {
    border-radius: 2.2rem;
  }
  html .combo-offer-button__inner {
    padding: 3.4rem 2.3rem;
  }
  html .combo-offer-button__icon {
    border-radius: 2rem;
    width: 6.8rem;
    min-width: 6.8rem;
    height: 6.8rem;
  }
  html .combo-offer-button__icon img {
    max-width: 3.5rem;
  }
  html .combo-offer-button__left {
    gap: 2.2rem;
    max-width: 35.2rem;
  }
  html .combo-offer-button__content {
    width: 100%;
  }
  html .combo-offer-button__content h3 {
    font-size: 2.5rem;
  }
  html .combo-offer-button__toggle label {
    width: 6rem;
    height: 3.2rem;
    border-radius: 1.6rem;
  }
  html .combo-offer-button__toggle label span {
    width: 2.6rem;
    height: 2.6rem;
  }
  html .combo-offer-button__toggle input:checked + label span {
    left: calc(100% - 28px);
  }
}
@media screen and (min-width: 1280px) {
  .combo-calculator__cta {
    width: 100%;
  }
  .combo-calculator__cta .btn__primaire {
    width: 100%;
  }
  .combo-calculator__cta .btn__primaire a {
    display: block;
    width: calc(100% - 8rem);
    text-align: center;
    padding: 2.6rem 4rem;
    font-size: 2.4rem;
  }
}
/*****************************************************
*********************** faq.scss *********************
******************************************************/
.faq {
  /******************************************* container **/
  /******************************************* accordeon **/
}
.faq__container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5rem;
}
.faq-accordion {
  display: flex;
  flex-direction: column;
}
.faq-question {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  color: #0B1950;
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.8rem;
  text-align: left;
}
.faq-question:hover {
  cursor: pointer;
}
.faq-icon {
  min-width: 2.4rem;
  height: 2.4rem;
  transition: 0.4s ease;
}
.faq-answer {
  padding-top: 3rem;
}
.faq-answer p, .faq-answer li {
  font-size: 1.5rem;
}
.faq-item {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(11, 25, 80, 0.2);
  width: 100%;
}
.faq-item:first-child {
  border-top: 1px solid rgba(11, 25, 80, 0.2);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
}

/*****************************************************
******************* .faq-block **********************
******************************************************/
.faq-block {
  /******************************************* Tabs (mode multi-services) **/
  /******************************************* Content (accordéons) **/
  /******************************************* Accordion **/
  /******************************************* Item **/
  /******************************************* Question **/
  /******************************************* Icon **/
  /******************************************* Answer **/
  /******************************************* Message vide **/
}
.faq-block .faq-tabs {
  display: flex;
  gap: 0;
  margin-bottom: 4rem;
}
.faq-block .faq-tab {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.5rem 3rem;
  font-size: 1.6rem;
  border: 2px solid #0B1950;
  border-radius: 10rem;
  font-weight: 600;
  color: rgba(11, 25, 80, 0.6);
  background: transparent;
  transition: all 0.3s ease;
  cursor: pointer;
}
.faq-block .faq-tab img {
  width: 2.4rem;
  height: 2.4rem;
  opacity: 0.6;
  transition: opacity 0.3s ease;
}
.faq-block .faq-tab:hover {
  color: #0B1950;
}
.faq-block .faq-tab:hover img {
  opacity: 1;
}
.faq-block .faq-tab.active {
  color: #0B1950;
}
.faq-block .faq-tab.active img {
  opacity: 1;
}
.faq-block .faq-content {
  position: relative;
}
.faq-block .faq-accordion {
  display: none;
  flex-direction: column;
}
.faq-block .faq-accordion.active {
  display: flex;
}
.faq-block:not(:has(.faq-tabs)) .faq-accordion {
  display: flex;
}
.faq-block .faq-item {
  padding: 3rem 0;
  border-bottom: 1px solid rgba(11, 25, 80, 0.2);
  width: 100%;
}
.faq-block .faq-item:first-child {
  border-top: 1px solid rgba(11, 25, 80, 0.2);
}
.faq-block .faq-item.active .faq-icon {
  transform: rotate(180deg);
}
.faq-block .faq-question {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  width: 100%;
  color: #0B1950;
  font-weight: 700;
  line-height: 1.4;
  font-size: 1.8rem;
  text-align: left;
}
.faq-block .faq-question:hover {
  cursor: pointer;
}
.faq-block .faq-icon {
  min-width: 2.4rem;
  height: 2.4rem;
  transition: 0.4s ease;
}
.faq-block .faq-answer {
  padding-top: 3rem;
}
.faq-block .faq-answer p, .faq-block .faq-answer li {
  font-size: 1.5rem;
}
.faq-block .faq-empty {
  padding: 3rem 0;
  text-align: center;
  color: rgba(11, 25, 80, 0.6);
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .faq {
    /******************************************* container **/
    /******************************************* accordeon **/
  }
  .faq__container {
    flex-direction: row-reverse;
    justify-content: space-between;
  }
  .faq__container .wp-block-column {
    max-width: 63rem;
  }
  .faq__container .wp-block-column:last-child {
    max-width: 32.5rem;
  }
  .faq__container .bloc-cta-lucie {
    position: sticky;
    top: 10%;
  }
  .faq-item {
    padding: 5rem 0;
  }
  .faq-question {
    font-size: 2rem;
  }
  .faq-question span {
    max-width: 85%;
  }
  .faq-answer p, .faq-answer li {
    font-size: 1.7rem;
  }
  /******************************************* .faq-block desktop **/
  .faq-block {
    /******************************************* Tabs desktop **/
  }
  .faq-block .faq-tab {
    padding: 2rem 4rem;
    font-size: 1.8rem;
  }
  .faq-block .faq-tab img {
    width: 3rem;
    height: 3rem;
  }
  .faq-block .faq-tabs {
    margin-bottom: 5rem;
  }
  .faq-block .faq-item {
    padding: 5rem 0;
  }
  .faq-block .faq-question {
    font-size: 2rem;
  }
  .faq-block .faq-question span {
    max-width: 85%;
  }
  .faq-block .faq-answer p, .faq-block .faq-answer li {
    font-size: 1.7rem;
  }
}
/*****************************************************
********************* section.scss *******************
******************************************************/
/********************************************* Section App TV */
.section__app h2.wp-block-heading {
  max-width: 57rem;
  margin-left: auto;
  margin-right: auto;
}
.section__app h2.wp-block-heading + p {
  max-width: 80.5rem;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1024px) {
  .section__app .wp-block-columns {
    justify-content: space-between;
  }
  .section__app .columns-type-tiers .wp-block-column:first-child {
    width: 40%;
    max-width: 44.8rem;
  }
  .section__app .columns-type-tiers .wp-block-column:last-child {
    width: 60%;
    max-width: 50rem;
  }
}
/********************************************* Section contact */
.section__contact h2.wp-block-heading {
  max-width: 72rem;
  margin-left: auto;
  margin-right: auto;
}
.section__contact h2.wp-block-heading + p {
  max-width: 80.5rem;
  margin-left: auto;
  margin-right: auto;
}

/*****************************************************
********************* shop.scss **********************
******************************************************/
html .shops {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
html .shops__el {
  background: #FFFFFF;
  color: #0B1950;
  border-radius: 10px;
  box-shadow: 0px 0px 34px 0px rgba(0, 0, 0, 0.1);
  max-width: 60rem;
  width: 100%;
}
html .shops__el .wrapper {
  padding: 3.3rem 2.5rem;
}
html .shops__divider {
  width: 80%;
  height: 1px;
  background: rgba(11, 25, 80, 0.1);
  margin: 3rem auto;
}
html .shops__title {
  font-family: "sohnebreit-fett", sans-serif;
  font-size: 2.4rem;
  text-align: center;
  line-height: 1.2;
  margin-bottom: 1rem;
}
html .shops__title--container {
  margin-bottom: 2rem;
}
html .shops__message {
  color: #E3025A;
  text-align: center;
}
html .shops__address {
  text-align: center;
}
html .shops__address + .shops__address {
  margin-top: 1rem;
}
html .shops__address img {
  display: none;
}
html .shops__service p {
  text-align: center;
  font-family: "sohnebreit-fett", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  margin: 0;
  margin-bottom: 1.5rem;
  color: #0B1950;
}
html .shops__service ul li {
  padding: 0;
  text-align: center;
}
html .shops__service ul li::before {
  display: none;
}
html .shops__service ul li + li {
  margin-top: 0.5rem;
}
html .shops__link p {
  text-align: center;
  font-family: "sohnebreit-fett", sans-serif;
  font-size: 1.6rem;
  line-height: 1;
  margin: 0;
  margin-bottom: 2rem;
  color: #0B1950;
}
html .shops__link .btn-container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3rem;
}
html .shops__link .btn-container a {
  font-size: 0;
  display: block;
  width: 4.2rem;
  height: 4.2rem;
  transition: 0.4s ease;
}
html .shops__link .btn-container a.waze {
  background: url(../icons/Waze.png) no-repeat center/contain;
}
html .shops__link .btn-container a.maps {
  background: url(../icons/google-maps.svg) no-repeat center/contain;
}
html .shops__link .btn-container a.plan {
  background: url(../icons/apple-plan.svg) no-repeat center/contain;
}
html .shops__link .btn-container a:hover {
  transform: scale(0.9);
}

@media screen and (min-width: 1024px) {
  html .shops__el {
    max-width: 100%;
  }
  html .shops__el .wrapper {
    padding: 6.6rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  html .shops__divider {
    margin: 0;
    width: 1px;
    height: 80%;
  }
  html .shops__title {
    font-size: 2.8rem;
    text-align: left;
  }
  html .shops__title--container {
    margin-bottom: 3.5rem;
  }
  html .shops__message {
    text-align: left;
  }
  html .shops__address {
    text-align: left;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  html .shops__address img {
    display: inline-block;
    width: 2.1rem;
    max-height: 2.2rem;
  }
  html .shops__service {
    width: 30%;
  }
  html .shops__service p {
    text-align: left;
  }
  html .shops__service ul li {
    text-align: left;
  }
  html .shops__link {
    width: 25%;
  }
  html .shops__link p {
    text-align: center;
    font-family: "sohnebreit-fett", sans-serif;
    font-size: 1.6rem;
    line-height: 1;
    margin: 0;
    margin-bottom: 2rem;
    color: #0B1950;
  }
  html .shops__link .btn-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 3rem;
  }
  html .shops__link .btn-container a {
    font-size: 0;
    display: block;
    width: 4.2rem;
    height: 4.2rem;
    transition: 0.4s ease;
  }
  html .shops__informations {
    width: 45%;
  }
}
@media screen and (min-width: 1280px) {
  html .shops__divider {
    height: 14rem;
  }
  html .shops__el .wrapper {
    padding: 6.6rem;
  }
  html .shops__informations {
    width: 39%;
  }
}
@media screen and (min-width: 1420px) {
  html .shops__link {
    width: 22%;
  }
  html .shops__informations {
    width: 34%;
  }
}
/*****************************************************
******************* parcours.scss *********************
******************************************************/
.page-template-page-parcours {
  color: #FFFFFF;
  position: relative;
  width: 100vw;
  min-height: 100vh;
}
.page-template-page-parcours:before {
  content: "";
  position: absolute;
  top: -20rem;
  left: 0;
  width: 100%;
  height: 100%;
  max-height: 31.5rem;
  border-radius: 150rem;
  background: #4784C6;
  filter: blur(17.9rem);
}

.page__parcours {
  position: relative;
  z-index: 3;
  width: 100%;
  min-height: calc(100vh - 16rem);
  display: flex;
}

html .page-template-page-parcours .page__entry {
  padding: 8rem 0;
}

.page-template-page-parcours .page__content {
  margin: auto;
  max-width: 60.5rem;
  width: 100%;
}
.page-template-page-parcours .page__content .wp-block-image + .gform_wrapper {
  margin-top: 3rem;
}

.parcours__container .wp-block-columns {
  background: #FFFFFF;
  color: #0B1950;
  border-radius: 2rem;
  border: 3px solid rgba(255, 255, 255, 0.5);
  max-width: 60.5rem;
  width: 100%;
  margin: 0 auto;
}
.parcours__container .wp-block-columns .wp-block-column {
  padding: 5rem 1rem;
}
.parcours__section .titre {
  text-align: center;
  font-size: 2.4rem;
  font-family: "sohnebreit-fett", sans-serif;
  font-weight: 800;
  line-height: 1.2;
  color: #0B1950;
  opacity: 0;
  animation: fadein 1s 0.2s ease forwards;
}
.parcours__section--conv {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  gap: 1rem;
  margin: 3.5rem 0;
}
.parcours__section .avatar {
  display: block;
  min-width: 4.7rem;
  width: 4.7rem;
  height: 5rem;
  background: url(../images/elt-lucie.webp) no-repeat center/contain;
  transform: scale(0);
  animation: scalein 0.1s 0.4s forwards;
}
.parcours__section--CGV p {
  font-size: 1.6rem;
}
.parcours-anim {
  opacity: 0;
  transform: translateY(-1rem);
  animation: apparition 0.5s 0.5s ease forwards;
}
.parcours-anim-container .gform_page_footer {
  opacity: 0;
  transform: translateY(-1rem);
  animation: apparition 0.5s 0.9s ease forwards;
}
.parcours-anim-bulle .parcours-anim {
  animation: apparition 0.5s 1s ease forwards;
}
.parcours-anim-bulle .gform_page_footer {
  animation: apparition 0.5s 1.4s ease forwards;
}
.parcours-anim-bulle--2 .parcours-anim {
  animation: apparition 0.5s 2.6s ease forwards;
}
.parcours-anim-bulle--2 .gform_page_footer {
  animation: apparition 0.5s 3s ease forwards;
}
.parcours-anim-bulle--3 .parcours-anim {
  animation: apparition 0.5s 3.2s ease forwards;
}
.parcours-anim-bulle--3 .gform_page_footer {
  animation: apparition 0.5s 3.6s ease forwards;
}
.parcours-anim-bulle-after--3 .parcours-anim {
  animation: apparition 0.5s 0.8s ease forwards;
}
.parcours-anim-bulle-after--3 .parcours-section__conv .avatar {
  animation-delay: 1.2s;
}
.parcours-anim-bulle-after--3 .parcours-section__conv .conversation__el {
  animation-delay: 1.4s;
}
.parcours-anim-bulle-after--3 .parcours-section__conv .conversation__el:nth-child(2) {
  animation-delay: 2.6s;
}
.parcours-anim-bulle-after--3 .parcours-section__conv .conversation__el:nth-child(3) {
  animation-delay: 3.8s;
}
.parcours-anim-bulle-after--3 .gform_page_footer {
  animation: apparition 0.5s 4.2s ease forwards;
}

html .page-template-page-parcours .gform_wrapper.gravity-theme .gform_page_footer input[type=button],
html .page-template-page-parcours .gform_wrapper.gravity-theme .gform_page_footer input[type=submit] {
  width: 100%;
}

.conversation {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 37rem;
}
.conversation__el {
  border-radius: 15px 15px 15px 0;
  background: linear-gradient(90deg, #4784C6 0%, #7DAFE5 100%);
  color: #FFFFFF;
  transform-origin: bottom left;
  transform: scale(0);
  animation: scalein 0.3s 0.6s ease-out forwards;
  padding: 1rem 2rem;
}
.conversation__el:nth-child(2), .conversation__el:nth-child(3) {
  height: 0;
  overflow: hidden;
  transform: scale(1);
  padding: 0 2rem;
  transform-origin: bottom center;
  animation: discuss 0.5s 1.8s ease-out forwards;
}
.conversation__el:nth-child(3) {
  animation: discuss 0.5s 2.8s ease-out forwards;
}
.conversation__el p {
  font-size: 1.6rem;
}

.arianne {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  height: 0.4rem;
}
.arianne__el {
  display: block;
  width: 2rem;
  height: 100%;
  border-radius: 5rem;
  background: #EDEDED;
}
.arianne__el--current {
  background: #E3025A;
}

@keyframes fadein {
  to {
    opacity: 1;
  }
}
@keyframes scalein {
  to {
    transform: scale(1);
  }
}
@keyframes apparition {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes discuss {
  to {
    height: auto;
    padding: 1rem 2rem;
  }
}
@media screen and (min-width: 1024px) {
  .parcours__container {
    position: relative;
  }
  .parcours__container::before, .parcours__container::after {
    content: "";
    position: absolute;
    width: 52.6rem;
    height: 42.1rem;
    background: url(../images/elt-bkg-parcours.webp) no-repeat center/cover;
    z-index: -1;
    mix-blend-mode: lighten;
  }
  .parcours__container::before {
    top: 10rem;
    right: -25rem;
  }
  .parcours__container::after {
    top: 50rem;
    left: -25rem;
    transform: rotate(180deg);
  }
  .parcours__container .wp-block-columns .wp-block-column {
    padding: 5rem;
  }
  .parcours__section .titre {
    font-size: 3.4rem;
  }
  .conversation__el p {
    font-size: 2rem;
  }
  html .page-template-page-parcours .gform_wrapper.gravity-theme .gform_page_footer input[type=button],
  html .page-template-page-parcours .gform_wrapper.gravity-theme .gform_page_footer input[type=submit] {
    padding: 2.6rem 2.7rem;
  }
}
/****************** Components folder ***************/
/*****************************************************
******************** buttons.scss ********************
******************************************************/
a {
  text-decoration: none;
  display: inline-block;
}

.btn,
.editor-styles-wrapper .btn {
  text-decoration: none;
  display: inline-block;
}
.btn a,
.editor-styles-wrapper .btn a {
  text-decoration: none;
  display: inline-block;
  font-weight: 500;
}
.btn__primaire a, .btn__primaire .wp-block-button__link,
.editor-styles-wrapper .btn__primaire a,
.editor-styles-wrapper .btn__primaire .wp-block-button__link {
  background: #E3025A;
  color: #FFFFFF;
  padding: 2rem 4rem;
  line-height: 1.4;
  border-radius: 10rem;
  font-size: 1.8rem;
  border: 2px solid #E3025A;
  transition: 600ms cubic-bezier(0.325, 1.32, 0, 0.985);
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.btn__primaire a span, .btn__primaire .wp-block-button__link span,
.editor-styles-wrapper .btn__primaire a span,
.editor-styles-wrapper .btn__primaire .wp-block-button__link span {
  transition: 600ms cubic-bezier(0.325, 1.32, 0, 0.985);
  position: relative;
  display: inline-block;
}
.btn__primaire a::after, .btn__primaire .wp-block-button__link::after,
.editor-styles-wrapper .btn__primaire a::after,
.editor-styles-wrapper .btn__primaire .wp-block-button__link::after {
  content: attr(data-hover);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-400%);
  width: 100%;
  text-align: center;
  transition: 600ms cubic-bezier(0.325, 1.32, 0, 0.985);
}
.btn__primaire a:hover, .btn__primaire .wp-block-button__link:hover,
.editor-styles-wrapper .btn__primaire a:hover,
.editor-styles-wrapper .btn__primaire .wp-block-button__link:hover {
  transform: scale(0.9);
}
.btn__primaire a:hover span, .btn__primaire .wp-block-button__link:hover span,
.editor-styles-wrapper .btn__primaire a:hover span,
.editor-styles-wrapper .btn__primaire .wp-block-button__link:hover span {
  transform: translateY(100px);
}
.btn__primaire a:hover::after, .btn__primaire .wp-block-button__link:hover::after,
.editor-styles-wrapper .btn__primaire a:hover::after,
.editor-styles-wrapper .btn__primaire .wp-block-button__link:hover::after {
  transform: translateX(-50%) translateY(-50%);
}
.btn__secondaire a, .btn__secondaire .wp-block-button__link,
.editor-styles-wrapper .btn__secondaire a,
.editor-styles-wrapper .btn__secondaire .wp-block-button__link {
  background: transparent;
  padding: 2rem 4rem;
  line-height: 1.4;
  border-radius: 10rem;
  font-size: 1.8rem;
  border: 2px solid #E3025A;
  color: #E3025A;
  transition: 600ms cubic-bezier(0.325, 1.32, 0, 0.985);
  position: relative;
  display: inline-block;
  overflow: hidden;
}
.btn__secondaire a span, .btn__secondaire .wp-block-button__link span,
.editor-styles-wrapper .btn__secondaire a span,
.editor-styles-wrapper .btn__secondaire .wp-block-button__link span {
  transition: 600ms cubic-bezier(0.325, 1.32, 0, 0.985);
  position: relative;
  display: inline-block;
}
.btn__secondaire a::after, .btn__secondaire .wp-block-button__link::after,
.editor-styles-wrapper .btn__secondaire a::after,
.editor-styles-wrapper .btn__secondaire .wp-block-button__link::after {
  content: attr(data-hover);
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-400%);
  width: 100%;
  text-align: center;
  transition: 600ms cubic-bezier(0.325, 1.32, 0, 0.985);
}
.btn__secondaire a:hover, .btn__secondaire .wp-block-button__link:hover,
.editor-styles-wrapper .btn__secondaire a:hover,
.editor-styles-wrapper .btn__secondaire .wp-block-button__link:hover {
  background: #E3025A;
  color: #FFFFFF;
  transform: scale(0.9);
}
.btn__secondaire a:hover span, .btn__secondaire .wp-block-button__link:hover span,
.editor-styles-wrapper .btn__secondaire a:hover span,
.editor-styles-wrapper .btn__secondaire .wp-block-button__link:hover span {
  transform: translateY(100px);
}
.btn__secondaire a:hover::after, .btn__secondaire .wp-block-button__link:hover::after,
.editor-styles-wrapper .btn__secondaire a:hover::after,
.editor-styles-wrapper .btn__secondaire .wp-block-button__link:hover::after {
  transform: translateX(-50%) translateY(-50%);
}
.btn__secondaire--darkblue a, .btn__secondaire--darkblue .wp-block-button__link,
.editor-styles-wrapper .btn__secondaire--darkblue a,
.editor-styles-wrapper .btn__secondaire--darkblue .wp-block-button__link {
  color: #0B1950;
  border-color: #0B1950;
}
.btn__secondaire--darkblue a:hover, .btn__secondaire--darkblue .wp-block-button__link:hover,
.editor-styles-wrapper .btn__secondaire--darkblue a:hover,
.editor-styles-wrapper .btn__secondaire--darkblue .wp-block-button__link:hover {
  background: transparent;
  color: #0B1950;
}
.btn__tertiaire a, .btn__tertiaire .wp-block-button__link,
.editor-styles-wrapper .btn__tertiaire a,
.editor-styles-wrapper .btn__tertiaire .wp-block-button__link {
  color: #0B1950;
  background: transparent;
  border-radius: 0;
  padding: 0;
  font-size: 1.6rem;
  position: relative;
  transition: 0.4s ease;
}
.btn__tertiaire a::after, .btn__tertiaire .wp-block-button__link::after,
.editor-styles-wrapper .btn__tertiaire a::after,
.editor-styles-wrapper .btn__tertiaire .wp-block-button__link::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: #0B1950;
  position: absolute;
  bottom: -1rem;
  left: 0;
  transition: 0.4s ease;
}
.btn__tertiaire a:hover::after, .btn__tertiaire .wp-block-button__link:hover::after,
.editor-styles-wrapper .btn__tertiaire a:hover::after,
.editor-styles-wrapper .btn__tertiaire .wp-block-button__link:hover::after {
  width: 0;
}

@media screen and (min-width: 1024px) {
  .btn__primaire a, .btn__primaire .wp-block-button__link, .editor-styles-wrapper .btn__primaire a, .editor-styles-wrapper .btn__primaire .wp-block-button__link {
    font-size: 2rem;
    padding: 1.6rem 4rem;
  }
  .btn__primaire--huge a, .btn__primaire--huge .wp-block-button__link, .editor-styles-wrapper .btn__primaire--huge a, .editor-styles-wrapper .btn__primaire--huge .wp-block-button__link {
    padding: 2.6rem 8rem;
    font-size: 2.4rem;
  }
  .btn__secondaire a, .btn__secondaire .wp-block-button__link, .editor-styles-wrapper .btn__secondaire a, .editor-styles-wrapper .btn__secondaire .wp-block-button__link {
    font-size: 2rem;
    padding: 1.6rem 4rem;
  }
  .btn__secondaire--huge a, .btn__secondaire--huge .wp-block-button__link, .editor-styles-wrapper .btn__secondaire--huge a, .editor-styles-wrapper .btn__secondaire--huge .wp-block-button__link {
    padding: 2.6rem 8rem;
    font-size: 2.4rem;
  }
  .btn__tertiaire a, .btn__tertiaire .wp-block-button__link, .editor-styles-wrapper .btn__tertiaire a, .editor-styles-wrapper .btn__tertiaire .wp-block-button__link {
    font-size: 2rem;
  }
}
/*****************************************************
********************* Menu.scss **********************
******************************************************/
/************************************************* All */
.menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.menu {
  list-style: none;
  margin: 0;
  padding: 0;
}
.menu a {
  text-decoration: none;
  display: inline-block;
}

header .menu .menu-item-has-children .sub-menu {
  margin-top: 1rem;
  padding-left: 2rem;
  gap: 1.5rem;
}
header .menu .menu-item-has-children .sub-menu a {
  font-size: 2rem;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  header .menu .menu-item-has-children {
    position: relative;
    display: flex;
    align-items: center;
    gap: 1rem;
  }
  header .menu .menu-item-has-children::after {
    content: "";
    display: block;
    width: 1rem;
    height: 0.8rem;
    background: url(../../assets/icons/submenu-arrow.svg) no-repeat center/cover;
    transition: 0.4s ease;
  }
  header .menu .menu-item-has-children .sub-menu {
    margin-top: 0;
    padding-left: 0;
    position: absolute;
    z-index: 2;
    border-radius: 0.5rem;
    left: 50%;
    top: 130%;
    width: -moz-max-content;
    width: max-content;
    pointer-events: none;
    opacity: 0;
    background: #FFFFFF;
    box-shadow: 0 0 20px 3px rgba(0, 0, 0, 0.1);
    transform: translateX(-50%) translateY(-1rem);
    transition: 0.5s ease;
    padding: 3rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
  }
  header .menu .menu-item-has-children .sub-menu::before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -1.5rem;
    left: 50%;
    display: block;
    width: 100%;
    height: 2rem;
    content: "";
    transform: translateX(-50%);
  }
  header .menu .menu-item-has-children .sub-menu a {
    font-size: 1.6rem;
    line-height: 1;
    font-weight: 400;
  }
  header .menu .menu-item-has-children:hover::after {
    transform: rotate(180deg);
  }
  header .menu .menu-item-has-children:hover .sub-menu {
    transform: translateX(-50%) translateY(0);
    pointer-events: all;
    opacity: 1;
  }
}
/************************************************* Header */
.header__menu--desktop {
  display: none;
}

@media screen and (min-width: 1024px) {
  .header__menu--desktop {
    display: block;
  }
  .header__menu ul {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 3rem;
  }
  .header__menu ul .current-menu-item a {
    color: #E3025A;
    pointer-events: none;
  }
  .header__menu ul .current-menu-item a::after {
    width: 100%;
  }
  .header__menu a {
    color: #0B1950;
    font-size: 1.5rem;
    transition: 0.3s ease;
  }
  .header__menu a:hover {
    opacity: 1;
    cursor: pointer;
    color: #E3025A;
  }
  .header__menu--main a {
    font-size: 1.8rem;
    position: relative;
  }
  .header__menu--main a::after {
    content: "";
    display: block;
    background: #E3025A;
    width: 0%;
    height: 1px;
    transition: 0.3s ease;
    position: absolute;
    bottom: -0.5rem;
    left: 50%;
    transform: translateX(-50%);
  }
  .header__menu--main a:hover::after {
    width: 100%;
  }
  .header__menu--main .header__cta a {
    background: #E3025A;
    color: #FFFFFF;
    border-radius: 10rem;
    font-weight: 500;
    display: inline-block;
    padding: 1.2rem 2rem;
    border: 1px solid #E3025A;
    transition: 0.4s ease;
  }
  .header__menu--main .header__cta a::after {
    display: none;
  }
  .header__menu--main .header__cta a:hover {
    background: transparent;
    color: #E3025A;
  }
  .header__menu--main .header__cta.current-menu-item a {
    color: #FFFFFF;
    pointer-events: none;
  }
  .header__menu--top a, .header__menu--business a {
    opacity: 0.7;
    font-size: 1.6rem;
  }
  .header__menu--business .menu {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 4rem;
  }
  .header__menu--business .menu::before {
    content: "";
    position: absolute;
    left: calc(50% - 1rem);
    top: 50%;
    width: 2.2rem;
    height: 1.2rem;
    border-radius: 999px;
    background: rgba(227, 2, 90, 0.25);
    transform: translateY(-50%) translateX(-50%);
  }
  .header__menu--business .menu::after {
    content: "";
    position: absolute;
    top: 50%;
    left: calc(50% - 1.6rem);
    width: 1rem;
    height: 1rem;
    border-radius: 50%;
    background: #E3025A;
    box-shadow: 0 2px 6px rgba(227, 2, 90, 0.3);
    transform: translateY(-50%) translateX(-50%);
    transition: 0.25s ease;
  }
  .header__menu--business .menu.is-pro::after {
    left: calc(50% + 0.2rem);
  }
}
@media screen and (min-width: 1280px) {
  .header__menu--main a {
    font-size: 2rem;
  }
  .header__menu--main ul {
    gap: 5rem;
  }
  .header__menu--main .header__cta a {
    padding: 1.6rem 4rem;
  }
}
/************************************************* Footer */
.footer__menu a {
  color: #FFFFFF;
  font-size: 1.6rem;
}
.footer__menu .menu-titre {
  padding-bottom: 2rem;
  margin-bottom: 3rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: 0.3s ease;
}
.footer__menu .menu-titre:last-child {
  margin-bottom: 0;
}
.footer__menu .menu-titre a {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.2;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: 0.3s ease;
}
.footer__menu .menu-titre a::after {
  content: "";
  display: block;
  width: 1.5rem;
  height: 1rem;
  background: url(../icons/accordeon.svg) no-repeat center/contain;
  transition: 0.2s ease;
}
.footer__menu .menu-titre .sub-menu {
  overflow: hidden;
  height: 0;
  transition: 0.2s ease;
}
.footer__menu .menu-titre .sub-menu li {
  margin-bottom: 1rem;
}
.footer__menu .menu-titre .sub-menu li:last-child {
  margin-bottom: 0;
}
.footer__menu .menu-titre .sub-menu li:first-child {
  margin-top: 1.5rem;
}
.footer__menu .menu-titre .sub-menu a {
  font-weight: 400;
  font-size: 1.6rem;
}
.footer__menu .menu-titre .sub-menu a:after {
  display: none;
}
.footer__menu .menu-titre .sub-menu a:hover {
  color: #F2CB13;
}
.footer__menu .menu-titre-open a::after {
  transform: rotate(180deg);
  background: url(../icons/accordeon-activ.svg) no-repeat center/contain;
}
.footer__menu .menu-titre-open > a {
  color: #F2CB13;
}
.footer__menu .menu-titre-open .sub-menu {
  height: 100%;
}
.footer__menu .menu-titre:hover a {
  opacity: 1;
}
.footer__menu .menu-titre:hover a::after {
  background: url(../icons/accordeon-activ.svg) no-repeat center/contain;
}
.footer__menu .menu-titre:hover > a {
  color: #F2CB13;
}
.footer__menu .menu-titre:hover, .footer__menu .menu-titre-open:hover {
  cursor: pointer;
  border-bottom: 1px solid #F2CB13;
}
.footer__menu--bottom ul {
  gap: 0.15rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}
.footer__menu--bottom a {
  font-size: 1.4rem;
}

@media screen and (min-width: 1024px) {
  .footer__menu {
    margin-bottom: 0;
    width: 100%;
  }
  .footer__menu ul {
    flex-direction: row;
    justify-content: flex-start;
  }
  .footer__menu a {
    transition: 0.3s ease;
  }
  .footer__menu a:hover {
    opacity: 0.5;
  }
  .footer__menu--bottom ul {
    gap: 2rem;
  }
}
@media screen and (min-width: 1280px) {
  .footer__menu .menu-titre {
    padding-bottom: 0;
    margin-bottom: 0;
    border-bottom: none;
    width: 20%;
  }
  .footer__menu .menu-titre > a {
    pointer-events: none;
  }
  .footer__menu .menu-titre .sub-menu {
    height: 100%;
  }
  .footer__menu .menu-titre .sub-menu li:first-child {
    margin-top: 2rem;
  }
  .footer__menu .menu-titre a::after {
    display: none;
  }
  .footer__menu .menu-titre:hover, .footer__menu .menu-titre-open {
    cursor: inherit;
    border-bottom: none;
  }
  .footer__menu .menu-titre:hover > a, .footer__menu .menu-titre-open > a {
    color: #FFFFFF;
  }
  .footer__menu .menu {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .footer__menu--bottom {
    width: -moz-max-content;
    width: max-content;
  }
}
/************************************************* Social */
.socials .menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 2rem;
}
.socials a {
  display: block;
  font-size: 0;
  max-width: 2.5rem;
  width: 100%;
  max-height: 2.5rem;
  height: 100%;
  line-height: 1;
  transition: 0.4s ease;
  margin: auto;
}
.socials a:hover {
  opacity: 0.5;
}
.socials li {
  width: 2.5rem;
  height: 2.5rem;
  display: flex;
}
.socials li.facebook a {
  max-height: 2rem;
  background: url(../..//assets/icons/facebook.svg) no-repeat center bottom/contain;
}
.socials li.instagram a {
  max-width: 2rem;
  background: url(../..//assets/icons/instagram.svg) no-repeat center bottom/contain;
}
.socials li.youtube a {
  background: url(../..//assets/icons/youtube.svg) no-repeat center bottom/contain;
}
.socials li.linkedin a {
  max-width: 2rem;
  background: url(../..//assets/icons/linkedin.svg) no-repeat center/contain;
}

@media screen and (min-width: 1024px) {
  .socials li {
    width: 1.5rem;
    height: 1.5rem;
  }
}
/*****************************************************
***************** Custom-block.scss ******************
******************************************************/
/******************************************* Bloc Surtitre **/
.bloc-surtitre {
  margin-bottom: 1rem;
}
.bloc-surtitre--center {
  text-align: center;
}
.bloc-surtitre--left {
  text-align: left;
}
.bloc-surtitre--right {
  text-align: right;
}
.bloc-surtitre p {
  font-family: "sohnebreit-fett", sans-serif;
  color: #0B1950;
  display: inline-block;
  background: #F2CB13;
  padding: 1rem 2rem;
  border-radius: 1rem;
  font-size: 1.6rem;
  line-height: 1;
}
.bloc-surtitre--pink p {
  background: #E3025A;
  color: #FFFFFF;
}
.bloc-surtitre--yellow p {
  background: #F2CB13;
  color: #0B1950;
}
.bloc-surtitre--darkblue p {
  background: #0B1950;
  color: #FFFFFF;
}

@media screen and (min-width: 1024px) {
  .bloc-surtitre {
    margin-bottom: 3rem;
  }
  .bloc-surtitre p {
    font-size: 1.8rem;
  }
}
/******************************************* Conditions produits **/
.conditions-header {
  margin-bottom: 3rem;
}
.conditions-header h2 {
  font-size: 2.8rem;
  line-height: 1.1;
  margin-bottom: 3rem;
}
.conditions-main__el {
  padding-bottom: 3rem;
  margin-bottom: 3rem;
  border-bottom: 2px solid rgba(11, 25, 80, 0.25);
  transition: 0.4s ease;
}
.conditions-main__el:hover {
  cursor: pointer;
  border-bottom: 2px solid #E3025A;
}
.conditions-main__el:hover .conditions-main__container h3 {
  color: #E3025A;
}
.conditions-main__el--active .conditions-main__container::after {
  transform: rotate(-180deg);
}
.conditions-main__el--active .conditions-main__content {
  opacity: 1;
  pointer-events: all;
  height: -moz-max-content;
  height: max-content;
}
.conditions-main__container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.conditions-main__container div {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.conditions-main__container::after {
  content: "";
  display: block;
  width: 1.6rem;
  height: 0.8rem;
  background: url(../icons/accordeon-faq.svg) no-repeat center/cover;
  transition: 0.3s ease;
}
.conditions-main__container h3 {
  transition: 0.3s ease;
}
.conditions-main__content {
  overflow: hidden;
  opacity: 0;
  height: 0;
  pointer-events: none;
  transition: 0.5s ease;
}
.conditions-main__content .btn-container {
  padding-top: 3rem;
}
.conditions-main__content__el {
  margin-top: 5rem;
}
.conditions-cta {
  border: 2px solid #E3025A;
  border-radius: 2rem;
  margin-top: 3rem;
}
.conditions-cta__wrapper {
  padding: 3rem;
}
.conditions-cta__img {
  max-width: 10rem;
  margin: 0 auto 3rem auto;
}
.conditions-cta__content p {
  font-size: 2rem;
  line-height: 1.2;
  font-family: "sohnebreit-fett", sans-serif;
  text-align: center;
  margin-bottom: 1.5rem;
}
.conditions-cta__content .btn-container {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  text-align: center;
  gap: 1rem;
}
.conditions p a {
  color: #E3025A;
  text-decoration: underline;
  transition: 0.4s ease;
}
.conditions p a:hover {
  opacity: 0.5;
  text-decoration: none;
}

@media screen and (min-width: 1024px) {
  .conditions-header {
    margin-bottom: 5rem;
  }
  .conditions-header h2 {
    font-size: 3.8rem;
    margin-bottom: 5rem;
  }
  .conditions-main__content h2, .conditions-main__content h3 {
    max-width: 90%;
  }
  .conditions-cta {
    margin-top: 5rem;
  }
  .conditions-cta__img {
    margin: 0;
  }
  .conditions-cta__wrapper {
    padding: 3rem 4rem;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    align-items: center;
  }
  .conditions-cta__content .btn-container {
    justify-content: flex-start;
    flex-direction: row;
    align-items: center;
  }
  .conditions-cta__content p {
    font-size: 2.2rem;
    text-align: left;
  }
}
/******************************************* Countdown **/
html .countdown {
  line-height: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.5rem;
}
html .countdown__container p + p {
  margin-top: 0;
}
html .countdown__el {
  display: flex;
  flex-direction: column;
  align-items: center;
}
html .countdown__numb {
  font-size: 2.5rem;
  font-family: "sohnebreit-fett", sans-serif;
  font-weight: 800;
  line-height: 1.2;
}
html .countdown__text {
  font-size: 0.9rem;
  letter-spacing: 0.973px;
  line-height: 1.5;
}
html .countdown__divider {
  font-size: 2.9rem;
  line-height: 1;
}

/******************************************* Bloc Webdeal **/
.bloc-webdeal__inner {
  padding: 4rem 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
.bloc-webdeal__visuel {
  max-width: 15rem;
}
.bloc-webdeal__content {
  text-align: center;
  max-width: 54rem;
}
.bloc-webdeal__content h2 {
  max-width: 94%;
}
.bloc-webdeal__cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
}
.bloc-webdeal__cta .countdown__container {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .bloc-webdeal__inner {
    padding: 5rem;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: 5rem;
  }
  .bloc-webdeal__visuel {
    min-width: 21rem;
    max-width: 21rem;
  }
  .bloc-webdeal__content {
    text-align: left;
  }
  .bloc-webdeal__cta .btn a {
    padding: 2.6rem 5rem;
  }
}
/******************************************* Bloc Nperf **/
.bloc-nperf {
  background: linear-gradient(138deg, #233062 2.38%, #32458B 97.62%);
  border-radius: 2rem;
}
.bloc-nperf__inner {
  padding: 4rem 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 3rem;
  align-items: center;
}
.bloc-nperf__visuel {
  max-width: 14.3rem;
}
.bloc-nperf__content {
  text-align: center;
  max-width: 78.2rem;
}
.bloc-nperf__content h3 {
  margin-bottom: 3rem;
}
.bloc-nperf__content p {
  font-size: 1.8rem;
}
.bloc-nperf__content p a {
  color: #F2CB13;
}

@media screen and (min-width: 1024px) {
  .bloc-nperf__inner {
    padding: 2.2rem 5rem;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 10rem;
  }
  .bloc-nperf__visuel {
    min-width: 14.3rem;
  }
  .bloc-nperf__content {
    text-align: left;
  }
  .bloc-nperf__content h3 {
    margin-bottom: 2rem;
  }
  .bloc-nperf__content p {
    font-size: 2.2rem;
  }
}
/******************************************* Bloc Selling points **/
.bloc-selling-points {
  margin-top: 5rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
}
.bloc-selling-points__item {
  width: 100%;
  max-width: 42.2rem;
  border-radius: 2rem;
  border: 1px solid rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.5);
}
.bloc-selling-points__item-inner {
  padding: 3rem;
}
.bloc-selling-points__item-top {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  margin-bottom: 3rem;
  min-height: 4.4rem;
}
.bloc-selling-points__item-icon {
  max-width: 4rem;
  min-width: 4rem;
}
.bloc-selling-points.has-last-single .bloc-selling-points__item:last-child {
  max-width: 100%;
}
.bloc-selling-points.has-last-single .bloc-selling-points__item:last-child .bloc-selling-points__item-inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10rem;
}
.bloc-selling-points.has-last-single .bloc-selling-points__item:last-child .bloc-selling-points__item-top {
  margin: 0;
  max-width: 40rem;
}
.bloc-selling-points.has-last-single .bloc-selling-points__item:last-child .bloc-selling-points__item-content {
  max-width: 64.2rem;
}
.bloc-selling-points.has-last-double .bloc-selling-points__item:nth-last-child(-n+2) {
  max-width: 64.4rem;
}

@media screen and (min-width: 1024px) {
  .bloc-selling-points__item-inner {
    padding: 4rem;
  }
  .bloc-selling-points__item-top {
    min-height: 4.9rem;
  }
}
/******************************************* Bloc CTA Lucie **/
.bloc-cta-lucie {
  border-radius: 1rem;
  border: 2px solid #E3025A;
  max-width: 32.5rem;
  margin: 0 auto;
}
.bloc-cta-lucie__inner {
  padding: 4rem 5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.5rem;
  text-align: center;
}
.bloc-cta-lucie-img {
  max-width: 10.1rem;
  margin: 0 auto;
}
.bloc-cta-lucie .btn-container {
  width: 100%;
}
.bloc-cta-lucie .btn-container .btn {
  width: 100%;
}
.bloc-cta-lucie .btn-container a {
  padding: 1.6rem;
  display: block;
  width: calc(100% - 3.2rem);
}

@media screen and (min-width: 1024px) {
  .bloc-cta-lucie {
    margin: 0;
  }
  .bloc-cta-lucie__inner {
    padding: 4rem;
  }
  .bloc-cta-lucie-img {
    max-width: 10.1rem;
    margin: 0 auto;
  }
}
/******************************************* Bloc 100 chaines HD **/
.bloc-chaines {
  background: #4784C6;
  border-radius: 3rem;
  overflow: hidden;
  margin-top: 2rem;
}
.bloc-chaines__img {
  padding-top: 57%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.bloc-chaines__content {
  text-align: center;
}
.bloc-chaines__content .bloc-surtitre {
  margin: 0;
}
.bloc-chaines__content-inner {
  padding: 5rem 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 3rem;
}
.bloc-chaines__content h2 {
  font-size: 3rem;
}
.bloc-chaines__content .btn a {
  padding: 1.6rem 4rem;
  font-size: 1.6rem;
}

@media screen and (min-width: 1024px) {
  .bloc-chaines {
    border-radius: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .bloc-chaines__img {
    padding-top: 0;
    width: 48%;
    max-width: 60.5rem;
    background-position: left center;
  }
  .bloc-chaines__content {
    width: 52%;
    max-width: 70.7rem;
  }
  .bloc-chaines__content-inner {
    padding: 9.2rem 2rem 7.5rem 2rem;
    gap: 3.5rem;
  }
  .bloc-chaines__content h2 {
    font-size: 3.8rem;
  }
  .bloc-chaines__content .btn a {
    font-size: 2rem;
  }
}
/******************************************* Bloc Message d'information **/
html .message-information {
  background: #4784C6;
  color: #FFFFFF;
  border-radius: 2rem;
  margin-top: 5rem;
}
html .message-information__content {
  padding: 3rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2rem;
  text-align: center;
}
html .message-information__content p + p {
  margin: 0;
}
html .message-information__content p.titre {
  font-family: "sohnebreit-fett", sans-serif;
  font-weight: 800;
  font-size: 2rem;
}

@media screen and (min-width: 1024px) {
  html .message-information__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    gap: auto;
    text-align: left;
  }
  html .message-information__content P.content {
    width: 70%;
    max-width: 91rem;
  }
}
@media screen and (min-width: 1280px) {
  html .message-information__content P.content {
    width: 100%;
  }
}
/******************************************* Bouton besoin d'aide **/
.btn-help {
  position: fixed;
  bottom: 5rem;
  right: 2rem;
  z-index: 100;
}
.btn-help__wrapper {
  position: relative;
}
.btn-help__content {
  position: absolute;
  bottom: 0;
  right: 0;
  width: -moz-max-content;
  width: max-content;
  background: #FFFFFF;
  border-radius: 2rem;
  transform-origin: bottom right;
  z-index: 3;
  max-width: 28.5rem;
  transform: scale(0);
  pointer-events: none;
  box-shadow: 0px 0px 30px 0px rgba(11, 25, 80, 0.1);
  transition: 0.4s ease;
}
.btn-help__content__inner {
  padding: 3.1rem 2.4rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
}
.btn-help__content-visuel {
  max-width: 4.6rem;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto;
}
.btn-help__content--show {
  transform: scale(1);
  pointer-events: all;
}
.btn-help__title {
  text-align: center;
  font-size: 1.8rem;
  font-family: "sohnebreit-fett", sans-serif;
  font-weight: 800;
  line-height: 1.2;
}
.btn-help__btns {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  width: 100%;
}
.btn-help__btn {
  width: 100%;
}
.btn-help__btn a {
  text-align: center;
  display: block;
  width: calc(100% - 2rem);
  background: #F9DDE5;
  color: #E3025A;
  border-radius: 1rem;
  padding: 2.8rem 1rem;
  font-size: 1.6rem;
  line-height: 1;
  transition: 0.4s ease;
}
.btn-help__btn a:hover {
  background: #E3025A;
  color: #FFFFFF;
}
.btn-help__btn-close {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  position: absolute;
  top: -2.5rem;
  left: -2.5rem;
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  background: #E3025A;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0;
  cursor: pointer;
  transition: 0.4s ease;
}
.btn-help__btn-close .cross {
  width: 1.5rem;
  height: 1.5rem;
  position: relative;
}
.btn-help__btn-close .cross__el {
  width: 100%;
  height: 3px;
  background: #FFFFFF;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  transition: 0.4s ease;
}
.btn-help__btn-close .cross__el:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.btn-help__btn-close:hover {
  background: #FFFFFF;
}
.btn-help__btn-close:hover .cross__el {
  background: #E3025A;
}
.btn-help__btn-open {
  background: transparent;
  border: none;
  outline: none;
  padding: 0;
  overflow: hidden;
  background: #E3025A;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  gap: 1rem;
  line-height: 1;
  padding-left: 1.5rem;
  border-radius: 10rem;
  font-size: 1.6rem;
  transition: 0.4s ease;
  transform: translateX(150%);
}
.btn-help__btn-open-show {
  transform: translateX(0);
}
.btn-help__btn-open-hide {
  transform: translateX(150%);
}
.btn-help__btn-open:hover {
  cursor: pointer;
  background: #FFFFFF;
  color: #E3025A;
}
.btn-help__visuel {
  border-radius: 50%;
  overflow: hidden;
  width: 4.6rem;
  height: 4.6rem;
}

@media screen and (min-width: 1024px) {
  .btn-help__content {
    border-radius: 2rem;
    max-width: 38.5rem;
  }
  .btn-help__content__inner {
    padding: 3.1rem 4.4rem;
    gap: 2.5rem;
  }
  .btn-help__content-visuel {
    max-width: 6rem;
  }
  .btn-help__title {
    font-size: 2rem;
  }
  .btn-help__btns {
    gap: 1.25rem;
  }
  .btn-help__btn a {
    font-size: 1.8rem;
  }
}
/******************************************* Bloc h3 avec icon **/
.h3-icon {
  display: flex;
  gap: 2rem;
  align-items: center;
  line-height: 1;
}
.h3-icon__icon {
  max-width: 4.9rem;
}

/************************************* Bloc selfcare **/
.selfcare-section ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
}
.selfcare-section ul li {
  width: 100%;
  max-width: 25rem;
  padding-left: 0;
  margin-top: 0;
  border: 1px solid #E6E8F0;
  border-radius: 12px;
  background-color: #FFFFFF;
  overflow: hidden;
  transition: 0.4s ease;
}
.selfcare-section ul li + li {
  margin-top: 0;
}
.selfcare-section ul li::before {
  content: none;
}
.selfcare-section ul li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
  height: auto;
  text-decoration: none;
  text-align: center;
  color: #0B1950;
  opacity: 1;
}
.selfcare-section ul li a .selfcare-section__icon {
  margin-bottom: 12px;
}
.selfcare-section ul li a .selfcare-section__icon img {
  width: 40px;
  height: 40px;
  display: block;
}
.selfcare-section ul li a p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
}
.selfcare-section ul li a:hover {
  border: #E3025A;
  background: #E3025A;
  box-shadow: 0px 4px 22px 0px rgba(96, 22, 55, 0.3);
}
.selfcare-section ul li a:hover img {
  filter: invert(1);
  mix-blend-mode: color-dodge;
}
.selfcare-section ul li a:hover p {
  color: #FFFFFF;
}

@media (min-width: 1024px) {
  .selfcare-section ul li a {
    padding: 32px 16px;
  }
  .selfcare-section ul li a .selfcare-section__icon img {
    width: 48px;
    height: 48px;
  }
  .selfcare-section ul li a p {
    font-size: 18px;
  }
}
/************************************* Bloc contact **/
.bloc-contact {
  text-align: center;
  /* wrapper réel dans ton PHP */
  /* un item */
}
.bloc-contact .cta-contact__bottom.contact__desktop {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 48px;
}
.bloc-contact .contact__el {
  width: 100%;
  max-width: 42rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  /* ton wrapper actuel "center" */
  /* le bouton est directement le <a class="btn btn__secondaire"> */
}
.bloc-contact .contact__el img {
  width: 40px;
  height: auto;
  display: block;
  margin: 0 auto 18px;
}
.bloc-contact .contact__el p {
  margin: 0 0 24px;
  max-width: 180px;
}
.bloc-contact .contact__el .center {
  display: flex;
  justify-content: center;
  width: 100%;
}
.bloc-contact .contact__el a.btn.btn__secondaire {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
  opacity: 1;
}
.bloc-contact .contact__el a.btn.btn__secondaire span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.bloc-contact .contact__el a.btn.btn__secondaire:hover {
  opacity: 1;
}
@media (min-width: 1024px) {
  .bloc-contact .cta-contact__bottom.contact__desktop {
    flex-direction: row;
    align-items: flex-start;
    gap: 10px;
  }
  .bloc-contact .contact__el {
    flex: 1 1 0;
    max-width: 48rem;
  }
}

/*****************************************************
******************** Calls to action *****************
******************************************************/
.cta {
  border: 1px solid #0B1950;
  border-radius: 2rem;
  overflow: hidden;
  display: flex;
  text-align: center;
  margin: 5rem auto 0 auto;
}
.cta__wrapper {
  margin: auto;
  padding: 3rem 2rem;
}
.cta h2 {
  margin-bottom: 2rem;
}
.cta__content a {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .cta {
    margin: 10rem auto 0 auto;
  }
  .cta__wrapper {
    padding: 6rem 2rem;
  }
}
/*****************************************************
********************** Spacer.scss *******************
******************************************************/
.spacer__base {
  height: 8rem !important;
}
.spacer__big {
  height: 8rem !important;
}

@media screen and (min-width: 1024px) {
  .spacer__base {
    height: 10rem !important;
  }
  .spacer__big {
    height: 15rem !important;
  }
}
/*****************************************************
********************* Images.scss ********************
******************************************************/
img {
  display: block;
  width: 100%;
  height: auto;
}

.hallow figure {
  position: relative;
}
.hallow figure img {
  position: relative;
  z-index: 3;
}
.hallow figure::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  border-radius: 35.2rem;
  background: #4784C6;
  filter: blur(52px);
}

/*****************************************************
**************** Notification-bar.scss **************
******************************************************/
.notification-bar {
  background: var(--notification-bg, #E3025A);
  color: #FFFFFF;
  position: relative;
  z-index: 50;
  font-size: 14px;
  line-height: 1;
  /********************************* icon */
  /********************************* viewport */
}
.notification-bar p {
  line-height: 0.4rem;
}
.notification-bar__viewport {
  height: 5rem;
  overflow: hidden;
  position: relative;
  padding-inline: 1.6rem;
  display: flex;
}
.notification-bar__track {
  display: flex;
  align-items: center;
  margin: auto 0;
  gap: 3rem;
  will-change: transform;
}
.notification-bar__item {
  display: inline-flex;
  align-items: center;
  gap: 3rem;
  white-space: nowrap;
}
.notification-bar__icon {
  width: 2.5rem;
  height: 2.5rem;
  flex: 0 0 auto;
}
.notification-bar__txt {
  font-size: 1.6rem;
}
.notification-bar__title {
  font-weight: 700;
  margin-right: 1.5rem;
  font-size: 1.6rem;
  font-family: var(--font-title);
}
.notification-bar__link {
  display: block;
  color: inherit;
  text-decoration: none;
  height: 100%;
  width: 100%;
}
.notification-bar__link:hover {
  color: #fff;
  text-decoration: none;
}
.notification-bar__viewport {
  position: relative;
  isolation: isolate;
}
.notification-bar__viewport::before, .notification-bar__viewport::after {
  content: "";
  position: absolute;
  top: 0;
  width: 7%;
  max-width: 16rem; /* largeur du fondu */
  height: 100%;
  pointer-events: none;
  z-index: 2;
}
.notification-bar__viewport::before {
  left: 0;
  background: linear-gradient(to right, var(--notification-bg, #E3025A) 0%, transparent 100%);
}
.notification-bar__viewport::after {
  right: 0;
  background: linear-gradient(to left, var(--notification-bg, #E3025A) 0%, transparent 100%);
}

/* Pause au survol ou au focus clavier */
.notification-bar:hover .notification-bar__track,
.notification-bar__link:hover .notification-bar__track,
.notification-bar__viewport:hover .notification-bar__track,
.notification-bar:focus-within .notification-bar__track {
  animation-play-state: paused;
}

/* Respecte les préférences utilisateur */
@media (prefers-reduced-motion: reduce) {
  .notification-bar__track {
    animation: none !important;
    transform: translateX(0) !important;
  }
}
/*****************************************************
******************* product-card.scss *******************
******************************************************/
/* Shop & archives produits */
.woocommerce ul.products li.product .product-image {
  position: relative;
  width: 100%;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 12px;
  background: #f5f5f7;
}

.woocommerce ul.products li.product .product-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

/* Neutralise des hauteurs forcées par certains thèmes/plugins */
.woocommerce ul.products li.product a img {
  max-height: none !important;
}

/*****************************************************
*********************** hero.scss ********************
******************************************************/
/************************************************* hero service */
.hero-service .container, .hero-homepage .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
}
.hero-service__content, .hero-homepage__content {
  background: #FFFFFF;
  border-radius: 2rem;
}
.hero-service__content h1, .hero-homepage__content h1 {
  margin-top: 2.5rem;
  max-width: 80%;
}
.hero-service__wrapper, .hero-homepage__wrapper {
  padding: 3rem 2rem;
}
.hero-service__visual, .hero-homepage__visual {
  display: block;
  width: 100%;
  border-radius: 2rem;
  padding-top: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
.hero-service__badge, .hero-homepage__badge {
  background: #F2CB13;
  color: #0B1950;
  font-size: 1.6rem;
  font-family: "sohnebreit-fett", sans-serif;
  font-weight: 800;
  width: -moz-max-content;
  width: max-content;
  padding: 1rem 2rem;
  border-radius: 1rem;
  display: flex;
  align-items: center;
  gap: 1rem;
}
.hero-service__badge img, .hero-homepage__badge img {
  max-width: 3rem;
}
.hero-service__ctas, .hero-homepage__ctas {
  margin-top: 2.5rem;
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 1.5rem;
}
.hero-service__ctas .btn, .hero-homepage__ctas .btn {
  width: 100%;
}
.hero-service__ctas .btn a, .hero-homepage__ctas .btn a {
  width: calc(100% - 8rem);
  text-align: center;
}
.hero-service__usp-list, .hero-homepage__usp-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-service__usp-list li, .hero-homepage__usp-list li {
  width: 75%;
  max-width: 19.9rem;
}
.hero-service__usp-list li + li, .hero-homepage__usp-list li + li {
  margin: 0 !important;
}

@media screen and (min-width: 1024px) {
  .hero-service .container, .hero-homepage .container {
    display: flex;
    align-items: stretch;
    gap: 2rem;
  }
  .hero-service__wrapper, .hero-homepage__wrapper {
    padding: 5rem;
  }
  .hero-service__content, .hero-homepage__content {
    width: 58%;
    max-width: 75.7rem;
  }
  .hero-service__content h1, .hero-homepage__content h1 {
    margin-top: 3rem;
    max-width: 96%;
  }
  .hero-service__description, .hero-homepage__description {
    max-width: 90%;
  }
  .hero-service__visual, .hero-homepage__visual {
    max-width: 53.5rem;
    padding-top: 0;
    width: 40%;
  }
  .hero-service__badge, .hero-homepage__badge {
    font-size: 1.8rem;
  }
  .hero-service__ctas, .hero-homepage__ctas {
    margin-top: 3rem;
  }
  .hero-service__ctas .btn, .hero-homepage__ctas .btn {
    width: -moz-max-content;
    width: max-content;
  }
  .hero-service__ctas .btn a, .hero-homepage__ctas .btn a {
    width: -moz-max-content;
    width: max-content;
  }
  .hero-service__usp-list, .hero-homepage__usp-list {
    gap: 2.5rem;
  }
  .hero-service__usp-list li, .hero-homepage__usp-list li {
    width: auto;
    max-width: -moz-max-content;
    max-width: max-content;
    padding-left: 2.6rem;
  }
  .hero-service__usp-list li::before, .hero-homepage__usp-list li::before {
    min-width: 1.6rem;
    width: 1.6rem;
    height: 1.6rem;
    top: 1rem;
  }
  .hero-service__usp-list li + li, .hero-homepage__usp-list li + li {
    margin: 0 !important;
  }
}
@media screen and (min-width: 1150px) {
  .hero-service__visual, .hero-homepage__visual {
    position: relative;
  }
  .hero-service__visual::before, .hero-homepage__visual::before {
    content: "";
    position: absolute;
    top: 50%;
    right: -15rem;
    width: 41.3rem;
    height: 32.5rem;
    transform: translateY(-50%);
    background: url(../images/elt-bkg-hero-service.png) no-repeat center/cover;
    mix-blend-mode: lighten;
    z-index: -1;
  }
}
/************************************************* hero homepage */
.hero-homepage {
  margin-bottom: 2rem;
}
.hero-homepage--pink .hero-homepage__content {
  background: url(../images/elt-bkg-hero-homepage-pink.webp) #E3025A no-repeat center/cover;
  color: #FFFFFF;
}
.hero-homepage--pink .btn__primaire a {
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #E3025A;
}
.hero-homepage--pink .btn__secondaire a {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.hero-homepage--light-pink .hero-homepage__content {
  background: #EC5E90;
  color: #FFFFFF;
}
.hero-homepage--light-pink .btn__primaire a {
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #E3025A;
}
.hero-homepage--light-pink .btn__secondaire a {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.hero-homepage--dark-blue .hero-homepage__content {
  background: #0B1950;
  color: #FFFFFF;
}
.hero-homepage--light-blue .hero-homepage__content {
  background: #4784C6;
  color: #FFFFFF;
}
.hero-homepage--light-blue .btn__primaire a {
  background: #FFFFFF;
  border: 2px solid #FFFFFF;
  color: #E3025A;
}
.hero-homepage--light-blue .btn__secondaire a {
  border-color: #FFFFFF;
  color: #FFFFFF;
}
.hero-homepage--yellow .hero-homepage__content {
  background: #F2CB13;
  color: #0B1950;
}
.hero-homepage--yellow .hero-homepage__badge {
  background: #E3025A;
  color: #FFFFFF;
}

/*****************************************************
*********************** Usp.scss *********************
******************************************************/
/******************************************* Bloc USP **/
.bloc-usp__grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 2rem;
}
.bloc-usp + .bloc-nperf {
  margin-top: 2rem;
}

/******************************************* USP Card **/
html .usp-card {
  width: 100%;
  max-width: 42.2rem;
  display: flex;
  border-radius: 2rem;
  min-height: 29.7rem;
  max-height: 29.7rem;
}
html .usp-card img {
  width: auto;
  margin: 0 auto;
}
html .usp-card__icon + h3 {
  margin-top: 3rem;
}
h3 + html .usp-card__icon {
  margin-top: 2rem;
}
html .usp-card h3 + p {
  margin: 0;
}
html .usp-card__inner {
  padding: 5rem 2.5rem;
  margin: auto;
  text-align: center;
}
html .usp-card--blue {
  background: #4784C6;
}
html .usp-card--pink {
  background: #E3025A;
}
html .usp-card--light-pink {
  background: #F9CCDE;
  color: #0B1950;
}
html .usp-card--dark-pink {
  background: #FE7BD1;
  color: #0B1950;
}
html .usp-card--yellow {
  background-color: #F2CB13;
  color: #0B1950;
}
html .usp-card--motif-infini {
  background-image: url(../images/usp-motif-infini.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
html .usp-card--motif-waves {
  background-image: url(../images/usp-motif-waves.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
html .usp-card--motif-circles {
  background-image: url(../images/usp-motif-circles.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
html .usp-card--motif-signal {
  background-image: url(../images/usp-motif-signal.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
html .usp-card--layout-titre-description h3 + p {
  margin-top: 2.2rem;
  font-size: 1.8rem;
}
html .usp-card--layout-titre-icone-description .usp-card__icon {
  margin: 2rem 0;
}
html .usp-card--layout-titre-icone-description p {
  font-size: 1.8rem;
}
html .usp-card--layout-titre-soustitre p {
  font-family: "sohnebreit-leicht", sans-serif;
  font-weight: 300;
  font-size: 2.8rem;
}
html .usp-card--layout-icone-titre-soustitre h3 span {
  font-family: "sohnebreit-leicht", sans-serif;
  font-weight: 300;
}

@media screen and (min-width: 1024px) {
  html .usp-card {
    border-radius: 3rem;
  }
  html .usp-card__inner {
    padding: 5rem 6rem;
  }
  html .usp-card--layout-titre-description h3 + p {
    font-size: 2.2rem;
  }
  html .usp-card--layout-titre-icone-description p {
    font-size: 2.2rem;
  }
  html .usp-card--layout-titre-soustitre p {
    font-size: 3.2rem;
  }
}
/****************** Woocommerce folder ********************/
/****************** Pages folder ********************/
/*****************************************************
********************** Pages.scss ********************
******************************************************/
.page__entry {
  padding: 5rem 0 0 0;
}
.page__content h1 + p,
.page__content h2 + p,
.page__content h3 + p,
.page__content h2 + ul,
.page__content h2 + ol,
.page__content h3 + ul,
.page__content h3 + ol,
.page__content .wp-block-image + h1,
.page__content .wp-block-image + h2,
.page__content .wp-block-image + h3,
.page__content p + p,
.page__content p + ul,
.page__content p + ol,
.page__content ul + p,
.page__content ol + p,
.page__content p + figure,
.page__content figure + p,
.page__content figure + .wp-block-buttons,
.page__content .wp-block-buttons + figure,
.page__content h1 + figure,
.page__content h2 + figure,
.page__content h3 + figure,
.page__content ol + figure,
.page__content ul + figure,
.page__content p + .wp-block-image,
.page__content h1 + .wp-block-image,
.page__content h2 + .wp-block-image,
.page__content h3 + .wp-block-image,
.page__content ul + .wp-block-image,
.page__content ol + .wp-block-image,
.page__content figure + ol,
.page__content figure + ul,
.page__content p + .wp-block-buttons,
.page__content ol + .wp-block-buttons,
.page__content ul + .wp-block-buttons {
  margin-top: 2.5rem;
}
.page__content li + li {
  margin-top: 1.25rem;
}
.page__content p + h1,
.page__content p + h2,
.page__content p + h3,
.page__content h1 + h2,
.page__content h2 + h3,
.page__content ul + h2,
.page__content ol + h2,
.page__content ul + h3,
.page__content ol + h3,
.page__content figure + h2,
.page__content figure + h3,
.page__content .wp-block-buttons + h2,
.page__content .wp-block-buttons + h3 {
  margin-top: 6rem;
}

.message-information__container + .page__entry {
  padding-top: 7rem;
}

@media screen and (min-width: 1024px) {
  .page__entry {
    padding: 10rem 0 0 0;
  }
  .page__content h1 + p,
  .page__content h2 + p,
  .page__content h3 + p,
  .page__content h2 + ul,
  .page__content h2 + ol,
  .page__content h3 + ul,
  .page__content h3 + ol,
  .page__content p + p,
  .page__content p + ul,
  .page__content p + ol,
  .page__content ul + p,
  .page__content ol + p,
  .page__content p + figure,
  .page__content figure + p,
  .page__content figure + .wp-block-buttons,
  .page__content .wp-block-buttons + figure,
  .page__content h1 + figure,
  .page__content h2 + figure,
  .page__content h3 + figure,
  .page__content ol + figure,
  .page__content ul + figure,
  .page__content .wp-block-image + figure,
  .page__content .wp-block-image + h1,
  .page__content .wp-block-image + h2,
  .page__content .wp-block-image + h3,
  .page__content .wp-block-image + ul,
  .page__content .wp-block-image + ol,
  .page__content figure + ol,
  .page__content figure + ul,
  .page__content p + .wp-block-buttons,
  .page__content ol + .wp-block-buttons,
  .page__content ul + .wp-block-buttons {
    margin-top: 3rem;
  }
  .page__content li + li {
    margin-top: 1.5rem;
  }
}
/************************************************* WP Default style */
.wp-block-columns {
  gap: 4rem;
  margin-bottom: 0;
}

.wp-block-separator {
  border: none;
  height: 2px;
  background: rgba(255, 255, 255, 0.25);
}

@media screen and (min-width: 782px) {
  .wp-block-columns {
    flex-wrap: wrap !important;
    justify-content: center;
  }
  .wp-block-columns:not(.is-not-stacked-on-mobile) > .wp-block-column {
    flex-basis: auto;
    flex-grow: 0;
  }
}
@media screen and (min-width: 1024px) {
  .wp-block-columns {
    gap: 6rem;
    flex-wrap: nowrap !important;
  }
  .columns-type {
    /* 50/50 */
    /* 1/3 - 2/3 */
    /* 2/3 - 1/3 */
  }
  .columns-type-fullwidth .wp-block-column {
    width: 100%;
  }
  .columns-type-default .wp-block-column {
    width: 50%;
  }
  .columns-type-tiers .wp-block-column:first-child {
    width: 40%;
  }
  .columns-type-tiers .wp-block-column:last-child {
    width: 60%;
  }
  .columns-type-tiers-reverse .wp-block-column:first-child {
    width: 60%;
  }
  .columns-type-tiers-reverse .wp-block-column:last-child {
    width: 40%;
  }
}
/************************************************* Page formulaire */
.page-template-page-formulaire {
  min-height: 100vh;
  background: #0B1950;
  color: #FFFFFF;
  display: flex;
  flex-direction: column;
}
.page-template-page-formulaire .page {
  min-height: 100%;
  margin: auto 0;
}
.page-template-page-formulaire .page__entry {
  padding: 6rem 0;
}
.page-template-page-formulaire .page__content h1 + p {
  margin-top: 2.5rem;
}
.page-template-page-formulaire .page__content .gform_wrapper {
  margin-top: 5rem;
  background: #FFFFFF;
  color: #0B1950;
  padding: 2rem;
  border-radius: 1.5rem;
}
.page-template-page-formulaire .header {
  padding-top: 5rem;
}
.page-template-page-formulaire .header__logo {
  margin: 0 auto;
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .page-template-page-formulaire .page__entry {
    padding: 6rem 0 6rem 0;
  }
  .page-template-page-formulaire .page__content h1 + p {
    margin-top: 3.5rem;
  }
  .page-template-page-formulaire .page__content .gform_wrapper {
    margin-top: 7rem;
    padding: 5rem 4rem;
  }
}
/************************************************* Thank you page */
.page-template-page-ty {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

/************************************************* Page 404 */
.error404 {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: url(../images/background-404-eltrona.gif) repeat;
  color: #FFFFFF;
  position: relative;
}
.error404:before {
  width: 100vw;
  min-height: 100vh;
  background: rgba(0, 0, 0, 0.65);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  pointer-events: none;
}
.error404 .page__404 {
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 10;
  margin: auto;
  width: 100%;
}
.error404__logo {
  max-width: 7rem;
  margin: 0 auto 4rem auto;
}
.error404__content {
  max-width: 70rem;
  width: 100%;
  text-align: center;
}
.error404__content h1 + p {
  margin-top: 2rem;
}
.error404__content p + .btn {
  margin-top: 4rem;
}
.error404__content p {
  max-width: 90%;
  margin-left: auto;
  margin-right: auto;
}

@media screen and (min-width: 1024px) {
  .error404__logo {
    max-width: 12rem;
  }
}
/************************************************* Page légales */
/************************************************* Password protected page */
.post-password-form {
  max-width: 55rem;
  padding: 5rem;
  margin: 0 auto;
  background: #FFFFFF;
  color: #0B1950;
  border-radius: 2rem;
}
.post-password-form p + p {
  margin: 0;
}
.post-password-form label {
  display: block;
  font-size: 1.8rem;
  font-weight: 400;
  margin-bottom: 2rem;
  margin-top: 2rem;
  font-family: "sohnebreit-fett", sans-serif;
}
.post-password-form label input {
  padding: 1.5rem 3rem 1.5rem 3rem;
  margin-top: 1rem;
  border-radius: 2rem;
  border: 2px solid #E1E1E1;
  font-size: 1.8rem;
  line-height: 1 !important;
  min-height: auto !important;
  outline: none;
  background: #EDEDED;
  transition: 0.4s ease;
  display: block;
  width: calc(100% - 6rem);
}
.post-password-form label input::-moz-placeholder {
  color: rgba(11, 25, 80, 0.5);
}
.post-password-form label input::placeholder {
  color: rgba(11, 25, 80, 0.5);
}
.post-password-form label input:focus {
  border: 2px solid #E3025A;
  color: #E3025A;
}
.post-password-form label + input {
  margin-top: 2rem;
  background: #E3025A;
  color: #FFFFFF;
  padding: 2rem 2.7rem;
  font-size: 2rem;
  font-weight: 500;
  border-radius: 110px;
  border: 1px solid #E3025A;
  transition: 0.4s ease;
  margin: 0;
  line-height: 1;
}
.post-password-form label + input:hover {
  background: transparent;
  color: #E3025A;
  cursor: pointer;
}

/********************************************* Page header white */
.page-template-page-configurateur,
.page-template-page-service,
.home,
.page-template-page-parcours {
  background: #0B1950;
}
.page-template-page-configurateur .header__top .wrapper,
.page-template-page-service .header__top .wrapper,
.home .header__top .wrapper,
.page-template-page-parcours .header__top .wrapper {
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}
.page-template-page-configurateur .header__ham .ham__el,
.page-template-page-service .header__ham .ham__el,
.home .header__ham .ham__el,
.page-template-page-parcours .header__ham .ham__el {
  background: #FFFFFF;
}
.page-template-page-configurateur .header__menu--main a, .page-template-page-configurateur .header__menu--top a, .page-template-page-configurateur .header__menu--business a,
.page-template-page-service .header__menu--main a,
.page-template-page-service .header__menu--top a,
.page-template-page-service .header__menu--business a,
.home .header__menu--main a,
.home .header__menu--top a,
.home .header__menu--business a,
.page-template-page-parcours .header__menu--main a,
.page-template-page-parcours .header__menu--top a,
.page-template-page-parcours .header__menu--business a {
  color: #FFFFFF;
}
.page-template-page-configurateur .header__menu--main a::after, .page-template-page-configurateur .header__menu--top a::after, .page-template-page-configurateur .header__menu--business a::after,
.page-template-page-service .header__menu--main a::after,
.page-template-page-service .header__menu--top a::after,
.page-template-page-service .header__menu--business a::after,
.home .header__menu--main a::after,
.home .header__menu--top a::after,
.home .header__menu--business a::after,
.page-template-page-parcours .header__menu--main a::after,
.page-template-page-parcours .header__menu--top a::after,
.page-template-page-parcours .header__menu--business a::after {
  background: #F2CB13;
}
.page-template-page-configurateur .header__menu--main a:hover, .page-template-page-configurateur .header__menu--top a:hover, .page-template-page-configurateur .header__menu--business a:hover,
.page-template-page-service .header__menu--main a:hover,
.page-template-page-service .header__menu--top a:hover,
.page-template-page-service .header__menu--business a:hover,
.home .header__menu--main a:hover,
.home .header__menu--top a:hover,
.home .header__menu--business a:hover,
.page-template-page-parcours .header__menu--main a:hover,
.page-template-page-parcours .header__menu--top a:hover,
.page-template-page-parcours .header__menu--business a:hover {
  color: #F2CB13;
}
.page-template-page-configurateur .header__menu--main ul .current-menu-item a, .page-template-page-configurateur .header__menu--top ul .current-menu-item a, .page-template-page-configurateur .header__menu--business ul .current-menu-item a,
.page-template-page-service .header__menu--main ul .current-menu-item a,
.page-template-page-service .header__menu--top ul .current-menu-item a,
.page-template-page-service .header__menu--business ul .current-menu-item a,
.home .header__menu--main ul .current-menu-item a,
.home .header__menu--top ul .current-menu-item a,
.home .header__menu--business ul .current-menu-item a,
.page-template-page-parcours .header__menu--main ul .current-menu-item a,
.page-template-page-parcours .header__menu--top ul .current-menu-item a,
.page-template-page-parcours .header__menu--business ul .current-menu-item a {
  color: #F2CB13;
}
.page-template-page-configurateur .header__menu--main ul .current-menu-item a::after, .page-template-page-configurateur .header__menu--top ul .current-menu-item a::after, .page-template-page-configurateur .header__menu--business ul .current-menu-item a::after,
.page-template-page-service .header__menu--main ul .current-menu-item a::after,
.page-template-page-service .header__menu--top ul .current-menu-item a::after,
.page-template-page-service .header__menu--business ul .current-menu-item a::after,
.home .header__menu--main ul .current-menu-item a::after,
.home .header__menu--top ul .current-menu-item a::after,
.home .header__menu--business ul .current-menu-item a::after,
.page-template-page-parcours .header__menu--main ul .current-menu-item a::after,
.page-template-page-parcours .header__menu--top ul .current-menu-item a::after,
.page-template-page-parcours .header__menu--business ul .current-menu-item a::after {
  width: 100%;
}
.page-template-page-configurateur .header__menu--main .header__cta.current-menu-item a, .page-template-page-configurateur .header__menu--top .header__cta.current-menu-item a, .page-template-page-configurateur .header__menu--business .header__cta.current-menu-item a,
.page-template-page-service .header__menu--main .header__cta.current-menu-item a,
.page-template-page-service .header__menu--top .header__cta.current-menu-item a,
.page-template-page-service .header__menu--business .header__cta.current-menu-item a,
.home .header__menu--main .header__cta.current-menu-item a,
.home .header__menu--top .header__cta.current-menu-item a,
.home .header__menu--business .header__cta.current-menu-item a,
.page-template-page-parcours .header__menu--main .header__cta.current-menu-item a,
.page-template-page-parcours .header__menu--top .header__cta.current-menu-item a,
.page-template-page-parcours .header__menu--business .header__cta.current-menu-item a {
  color: #FFFFFF;
}
.page-template-page-configurateur .header__menu--main .header__cta:hover a:hover, .page-template-page-configurateur .header__menu--top .header__cta:hover a:hover, .page-template-page-configurateur .header__menu--business .header__cta:hover a:hover,
.page-template-page-service .header__menu--main .header__cta:hover a:hover,
.page-template-page-service .header__menu--top .header__cta:hover a:hover,
.page-template-page-service .header__menu--business .header__cta:hover a:hover,
.home .header__menu--main .header__cta:hover a:hover,
.home .header__menu--top .header__cta:hover a:hover,
.home .header__menu--business .header__cta:hover a:hover,
.page-template-page-parcours .header__menu--main .header__cta:hover a:hover,
.page-template-page-parcours .header__menu--top .header__cta:hover a:hover,
.page-template-page-parcours .header__menu--business .header__cta:hover a:hover {
  color: #E3025A;
}
.page-template-page-configurateur .header__menu--business .menu::before,
.page-template-page-service .header__menu--business .menu::before,
.home .header__menu--business .menu::before,
.page-template-page-parcours .header__menu--business .menu::before {
  background: rgba(255, 255, 255, 0.4);
}
.page-template-page-configurateur .header__menu--business .menu::after,
.page-template-page-service .header__menu--business .menu::after,
.home .header__menu--business .menu::after,
.page-template-page-parcours .header__menu--business .menu::after {
  background: #F2CB13;
}
.page-template-page-configurateur .header__fixed .header__logo img,
.page-template-page-service .header__fixed .header__logo img,
.home .header__fixed .header__logo img,
.page-template-page-parcours .header__fixed .header__logo img {
  filter: invert(0);
  mix-blend-mode: normal;
}

.page-template-page-configurateur .page__entry {
  padding: 5rem 0;
}
.page-template-page-configurateur .page__content {
  color: #FFFFFF;
  max-width: 69rem;
}
.page-template-page-configurateur .page__content h1 + p {
  margin-top: 2rem;
}

@media screen and (min-width: 1024px) {
  .page-template-page-configurateur .page > .container {
    position: relative;
  }
  .page-template-page-configurateur .page > .container::before {
    content: "";
    position: absolute;
    top: 0rem;
    right: 0;
    width: 100%;
    max-width: 52.6rem;
    height: 100%;
    max-height: 42.1rem;
    background: url(../images/elt-bkg-configurateur.webp) no-repeat center center;
    mix-blend-mode: lighten;
  }
  .page-template-page-configurateur .page__entry {
    padding: 8rem 0;
  }
  .page-template-page-configurateur .page__content h1 + p {
    margin-top: 2.5rem;
  }
}
/*****************************************************
********************* Landing pages ******************
******************************************************/
/************************************************* Default */
.lp__entry {
  padding: 5rem 0;
}

.glass-effect-black {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  /* Bordure très subtile */
  border: 1px solid rgba(255, 255, 255, 0.12);
  /* Glass sombre */
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /* Ligne lumineuse en haut */
  /* Ligne lumineuse à gauche */
}
.glass-effect-black::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
}
.glass-effect-black::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.35), transparent, rgba(255, 255, 255, 0.15));
}

@media screen and (min-width: 1024px) {
  .lp__entry {
    padding: 10rem 0;
  }
}
/************************************************* LP #1 */
/************************************************* LP #2 */
/************************************************* LP #3 */
/*************************************
  PAGE CONCOURS
*************************************/
.lp-template-page-concours .header__logo {
  margin: 6rem auto;
}

.lp-template-page-concours {
  color: #FFFFFF;
  background: url(../images/Background-Black-Concours.webp) #000000 no-repeat center top/cover;
}

.page__concours {
  text-align: left;
  /* ====== SECTION 1 : HERO ====== */
  /* ====== SECTION 2 : STEPS ====== */
  /* ====== STEP ITEM ====== */
  /* ====== FORM ====== */
}
.page__concours .concours-hero {
  padding: 32px 0;
  /* label au-dessus du countdown */
  /* ====== COUNTDOWN (structure exacte demandée) ====== */
  /* boutons */
}
.page__concours .concours-hero__grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page__concours .concours-hero__left, .page__concours .concours-hero__right {
  width: 100%;
}
.page__concours .concours-hero__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 16px;
}
.page__concours .concours-hero .concours-countdown__label {
  margin: 30px 0 12px;
  text-align: center;
}
.page__concours .concours-hero .countdown {
  margin: 0;
  padding: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: 16px;
}
.page__concours .concours-hero .countdown__el {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-width: 56px;
  text-align: center;
}
.page__concours .concours-hero .countdown__numb {
  display: block;
  font-weight: 700;
  line-height: 1;
  font-size: 22px;
}
.page__concours .concours-hero .countdown__text {
  display: block;
  margin-top: 6px;
  font-size: 12px;
  line-height: 1.1;
  opacity: 0.8;
}
.page__concours .concours-hero .countdown__divider {
  display: block;
  width: 1px;
  height: 34px;
  opacity: 0.25;
  background: currentColor;
}
.page__concours .concours-hero__right {
  text-align: left;
}
.page__concours .concours-hero__logo {
  margin-bottom: 16px;
  text-align: center;
  max-width: 380px;
}
.page__concours .concours-hero__logo__desktop {
  display: none;
}
.page__concours .concours-hero__logo__mobile {
  display: block;
  text-align: center;
  margin: auto;
}
.page__concours .concours-hero__logo__mobile img {
  max-width: 300px;
}
.page__concours .concours-hero__texte {
  margin: 20px 0px;
}
.page__concours .concours-hero__texte p {
  margin: 0 0 12px;
}
.page__concours .concours-hero .btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  margin-top: 12px;
}
.page__concours .concours-hero .btn a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  text-align: center;
  opacity: 1;
}
.page__concours .concours-hero .btn a:hover {
  opacity: 1;
}
.page__concours .concours-hero .btn a span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.page__concours .concours-hero .btn.btn__tertiaire a {
  color: #fff;
  opacity: 1;
  margin-top: 20px;
  /* overwrite du after bleu */
}
.page__concours .concours-hero .btn.btn__tertiaire a::after {
  background-color: #fff;
}
.page__concours .concours-hero .btn.btn__tertiaire a:hover {
  color: #fff;
  opacity: 1;
}
.page__concours .concours-hero .btn.btn__tertiaire a:hover::after {
  background-color: #fff;
}
.page__concours .concours-hero .btn.btn__tertiaire a span {
  color: inherit;
}
.page__concours .concours-steps {
  padding: 80px 0px;
  /* liste steps */
}
.page__concours .concours-steps__grid {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 4rem 2rem;
}
.page__concours .concours-steps__left, .page__concours .concours-steps__right {
  width: 100%;
}
.page__concours .concours-steps__right {
  font-family: "sohnebreit-fett", sans-serif;
}
.page__concours .concours-steps__left h2 {
  margin: 0 0 14px;
  text-align: left;
}
.page__concours .concours-steps__texte {
  margin: 2rem 0px;
  font-size: 1.8rem;
}
.page__concours .concours-steps__texte p {
  margin: 0 0 12px;
}
.page__concours .concours-steps__list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.page__concours .concours-step {
  display: flex;
  align-items: center;
  gap: 14px;
}
.page__concours .concours-step__num {
  background-color: #F2CB13;
  flex: 0 0 44px;
  height: 44px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  color: #0B1950;
}
.page__concours .concours-step__text {
  flex: 1 1 auto;
  font-size: 1.5rem;
}
.page__concours .concours-step__text p {
  margin: 0 0 10px;
}
.page__concours .concours-form {
  padding: 40px 0;
}

/* ====== SLIDE-IN (logo Eltrona dans le wrapper) ====== */
.slide-in__concours {
  color: #0B1950;
}
.slide-in__concours h2 {
  text-align: center;
  margin-bottom: 2rem;
}
.slide-in__concours .gform_wrapper {
  margin-top: 3rem;
}
.slide-in__concours .slide-in__wrapper .logo__form {
  display: block;
  width: 50px;
  height: auto;
  margin: 0 auto 16px;
}

/* ====== DESKTOP ====== */
@media (min-width: 1024px) {
  .page__concours .concours-hero {
    padding: 60px 0;
  }
  .page__concours .concours-hero__grid {
    flex-direction: row;
    align-items: flex-start;
    gap: 100px;
  }
  .page__concours .concours-hero__left {
    flex: 0 0 42%;
  }
  .page__concours .concours-hero__right {
    flex: 1 1 auto;
  }
  .page__concours .concours-hero__logo {
    text-align: left;
  }
  .page__concours .concours-hero__logo__desktop {
    display: block;
  }
  .page__concours .concours-hero__logo__desktop img {
    max-width: 380px;
    margin: 0 auto;
  }
  .page__concours .concours-hero__logo__mobile {
    display: none;
  }
  .page__concours .concours-hero .countdown {
    justify-content: center;
    padding: 18px 22px;
  }
  .page__concours .concours-hero .countdown__el {
    min-width: 70px;
  }
  .page__concours .concours-hero .countdown__numb {
    font-size: 28px;
  }
  .page__concours .concours-hero .countdown__text {
    font-size: 13px;
  }
  .page__concours .concours-hero .countdown__divider {
    height: 44px;
  }
  .page__concours .concours-steps__grid {
    flex-direction: row;
    align-items: center;
    gap: 64px;
    padding: 5rem;
  }
  .page__concours .concours-steps__left {
    flex: 0 0 50%;
  }
  .page__concours .concours-steps__right {
    flex: 1 1 auto;
  }
  .page__concours .concours-steps__list {
    gap: 30px;
  }
  .page__concours .concours-steps__texte {
    max-width: 400px;
    line-height: 150%;
  }
  .page__concours .concours-step {
    gap: 16px;
    align-items: center;
    font-size: 2rem;
  }
  .page__concours .concours-step__num {
    flex-basis: 52px;
    height: 52px;
  }
  .page__concours .concours-step__text {
    font-size: 2rem;
  }
  .page__concours .concours-form {
    padding: 70px 0;
  }
}
/*****************************************************
********************** Home.scss *********************
******************************************************/
/*****************************************************
******************** Contact.scss ********************
******************************************************/
/*****************************************************
********************** faq.scss *********************
******************************************************/
.post-type-archive-faq h1 {
  margin-bottom: 1em;
}

.post-type-archive-faq .page-header {
  margin: 5em auto;
}

.post-type-archive-faq h2 {
  margin-bottom: 1em;
  color: #E3025A;
}

.post-type-archive-faq h3 {
  font-size: 1.4em;
}

.post-type-archive-faq .site-main {
  margin-bottom: 3em;
  min-height: 600px;
}

.faq__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 1rem 0 2rem;
}

.faq__filter {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #E3025A;
  padding: 1rem 2rem;
  border-radius: 999px;
  background: #fff;
  cursor: pointer;
  transition: 0.4s ease;
}

.faq__filter:hover {
  border-color: #E3025A;
  background-color: #E3025A;
  color: #FFFFFF;
}

.faq__filter.is-active {
  border-color: #E3025A;
  background-color: #E3025A;
  color: #FFFFFF;
}

.faq__panel {
  display: none;
}

.faq__panel.is-active {
  display: block;
}

.accordeon {
  display: grid;
  gap: 0.6rem;
}

.accordeon__el {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  padding: 1em;
}

.accordeon__el .titre {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.9rem 1rem;
  cursor: pointer;
}

.accordeon__el .content {
  height: 0;
  overflow: hidden;
  transition: height 0.25s ease, opacity 0.2s ease;
  opacity: 0;
}

.accordeon__el .content__inner {
  padding: 0.5rem 1rem 1rem;
}

/****************** Themes folder *******************/
/*****************************************************
********************* Theme.scss *********************
******************************************************/
/*****************************************************
********************* admin.scss *********************
******************************************************/
/*****************************************************
********************* Tools.scss *********************
******************************************************/
.align__center {
  text-align: center;
}
.align__left {
  text-align: left;
}
.align__right {
  text-align: right;
}

.has-white-background-color {
  background: #FFFFFF;
}
.has-white-color {
  color: #FFFFFF;
}
.has-darkblue-background-color {
  background: #0B1950;
}
.has-darkblue-color {
  color: #0B1950;
}
.has-yellow-background-color {
  background: #F2CB13;
}
.has-yellow-color {
  color: #F2CB13;
}
.has-pink-background-color {
  background: #E3025A;
}
.has-pink-color {
  color: #E3025A;
}
.has-lightpink-background-color {
  background: #EC5E90;
}
.has-lightpink-color {
  color: #EC5E90;
}
.has-ultralightpink-background-color {
  background: #F9CCDE;
}
.has-ultralightpink-color {
  color: #F9CCDE;
}
.has-lightblue-background-color {
  background: #4784C6;
}
.has-lightblue-color {
  color: #4784C6;
}
.has-gradientblue-background-color {
  background: linear-gradient(138deg, #233062 2.38%, #32458B 97.62%);
}

.glass-effect {
  border: 3px solid rgba(255, 255, 255, 0.25);
  background: linear-gradient(138deg, rgba(35, 48, 98, 0.4) 2.38%, rgba(50, 69, 139, 0.4) 97.62%);
  -webkit-backdrop-filter: blur(20px);
          backdrop-filter: blur(20px);
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}
.glass-effect::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.8), transparent);
}
.glass-effect::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 1px;
  height: 100%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.8), transparent, rgba(255, 255, 255, 0.3));
}

.hide {
  display: none;
}

.display {
  display: block;
}

@media screen and (min-width: 600px) {
  .hide__600 {
    display: none;
  }
  .display__600 {
    display: block;
  }
}
@media screen and (min-width: 700px) {
  .hide__700 {
    display: none;
  }
  .display__700 {
    display: block;
  }
}
@media screen and (min-width: 800px) {
  .hide__800 {
    display: none;
  }
  .display__800 {
    display: block;
  }
}
@media screen and (min-width: 900px) {
  .hide__900 {
    display: none;
  }
  .display__900 {
    display: block;
  }
}
@media screen and (min-width: 1024px) {
  .hide__1024 {
    display: none;
  }
  .display__1024 {
    display: block;
  }
}
@media screen and (min-width: 1100px) {
  .hide__1100 {
    display: none;
  }
  .display__1100 {
    display: block;
  }
}
@media screen and (min-width: 1200px) {
  .hide__1200 {
    display: none;
  }
  .display__1200 {
    display: block;
  }
}
@media screen and (min-width: 1280px) {
  .hide__1280 {
    display: none;
  }
  .display__1280 {
    display: block;
  }
}
@media screen and (min-width: 1400px) {
  .hide__1400 {
    display: none;
  }
  .display__1400 {
    display: block;
  }
}
/*****************************************************
********************* login.scss *********************
******************************************************/
/***** Page *****/
/***** Form *****/
/* Style du fond */
html body.login {
  background-color: #0B1950; /* Couleur de fond de la page */
  color: #0B1950;
  min-height: 100vh;
  display: flex;
}

/* Logo de la page de connexion */
html #login {
  padding: 0;
  margin: auto;
}

html #login h1 a {
  background-image: url("../images/Logo-full-white-ELT.svg");
  background-size: contain;
  width: 100%;
  height: 5rem;
  outline: none;
  box-shadow: none;
  margin-bottom: 5rem;
}

html .login .dashicons-visibility:before {
  color: #0B1950;
}

html .login form {
  background-color: #FFFFFF;
  padding: 30px;
  border-radius: 15px;
  box-shadow: 0px 0px 3rem rgba(11, 25, 80, 0.15);
}

html .login form label {
  color: #0B1950;
}

html .login form .input,
html .login form input[type=checkbox],
html .login input[type=text],
html .login input[type=password] {
  outline: none;
  background: transparent;
  color: #0B1950;
  border: 1px solid #0B1950;
  box-shadow: none;
  transition: 0.3s ease;
}

html .login input[type=text]:focus,
html .login input[type=password]:focus {
  border: 1px solid #E3025A;
  color: #E3025A;
}

html body.login .language-switcher {
  display: none;
}

html .login .button-primary {
  background: #0B1950;
  color: #FFFFFF;
  transition: 0.3s ease;
}

html .login .button-primary:hover {
  background: #E3025A;
  color: #FFFFFF;
  border: none;
}

html .login #nav a,
html .login #backtoblog a,
html .login .privacy-policy-link {
  color: #FFFFFF;
  transition: 0.3s ease;
}

html .login #nav a:hover,
html .login #backtoblog a:hover,
html .login .privacy-policy-link:hover {
  color: rgba(255, 255, 255, 0.5);
}

html .login .message,
html .login .notice,
html .login .success {
  border-left: none;
  padding: 0;
  background: transparent;
  box-shadow: none;
  color: #F2CB13;
}

html .login .notice-error {
  color: #E3025A;
}

html .login .notice-error a {
  display: none;
}

/*****************************************************
******************* Theme variables ******************
******************************************************/
/****************** Fonts ***************************/
@font-face {
  font-family: "sohnebreit-fett";
  src: url(../fonts/SohneBreit-Fett.woff), url(../fonts/SohneBreit-Fett.woff2);
  font-style: normal;
  font-weight: 800;
}
@font-face {
  font-family: "sohnebreit-leicht";
  src: url(../fonts/SohneBreit-Leicht.woff);
  font-style: normal;
  font-weight: 300;
}
/***************** Html & body ***************************/
html, body {
  font-size: 10px;
  min-height: 100vh;
  scrollbar-width: none;
}
html::-webkit-scrollbar, body::-webkit-scrollbar {
  display: none;
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  font-size: 1.6rem;
  font-family: niveau-grotesk, sans-serif;
  color: #0B1950;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
  line-height: 1;
}

@media screen and (min-width: 1024px) {
  html, body {
    scrollbar-width: thin;
    scrollbar-color: #FFFFFF rgba(255, 255, 255, 0.1);
  }
  html::-webkit-scrollbar, body::-webkit-scrollbar {
    display: block;
  }
  html::-webkit-scrollbar-track, body::-webkit-scrollbar-track {
    background: rgba(11, 25, 80, 0.1);
  }
  html::-webkit-scrollbar-thumb, body::-webkit-scrollbar-thumb {
    background: #0B1950;
  }
}
/****************** Container *************************/
.container {
  max-width: 131.2rem;
  width: 90%;
  margin: 0 auto;
}
.container__base {
  max-width: 131.2rem;
}
.container__med {
  max-width: 110rem;
  width: 90%;
}
.container__small {
  max-width: 106.1rem;
  width: 90%;
}
.container__tiny {
  max-width: 88rem;
  width: 90%;
}
.container__fullwidth {
  max-width: 100%;
  width: 100%;
}
