@charset "UTF-8";
/* =========================================
   Global CSS Reset
   ========================================= */
/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

/* HTML & Body */
html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100dvh;
  text-rendering: optimizeSpeed;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}

/* Remove list styles */
ul,
ol {
  list-style: none;
}

/* Links */
a {
  text-decoration: none;
  color: inherit;
}

/* Images & media */
img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
}

/* Forms */
input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: none;
  outline: none;
}

button {
  cursor: pointer;
}

textarea {
  resize: vertical;
}

/* Tables */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Headings */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: inherit;
}

/* Paragraphs */
p {
  overflow-wrap: break-word;
}

/* Strong & emphasis */
strong {
  font-weight: bold;
}

em {
  font-style: italic;
}

/* Remove default focus outline only if custom focus is defined later */
:focus {
  outline: none;
}

/* Accessibility – reduce motion */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
input {
  /* Firefox */
  -moz-appearance: textfield;
  /* Chrome */
}
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}
input {
  /* Opéra*/
}
input::-o-inner-spin-button {
  -o-appearance: none;
  margin: 0;
}

.header {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  padding: 2.4rem 4rem;
  transition: all 0.3s ease;
}
@media (min-width: 300px) and (max-width: 767px) {
  .header.open {
    height: 100dvh;
  }
}
.header.is-scrolled {
  transform: translateY(-100%);
}
.header.header--light {
  background: #FFFFFF;
}
.header.is-allready-scrolled {
  background: #FFFFFF;
}
.header.is-top {
  background: transparent;
}
@media (min-width: 1280px) {
  .header {
    padding: 2.4rem max(4rem, (100vw - 1280px) / 2);
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .header {
    padding: 1.6rem;
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .open .header__branding {
    display: none;
  }
}
.header__branding__title {
  color: #FFFFFF;
}
.header--light .header__branding__title {
  color: #0E70F1;
}
.is-allready-scrolled .header__branding__title {
  color: #0E70F1;
}
.header__branding__title svg {
  width: 14.1rem;
  height: 2.6rem;
  pointer-events: none;
}
.header__nav {
  margin-left: 6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .header__nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100dvh;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0);
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    z-index: -1;
    transition: opacity 0.3s ease;
    opacity: 0;
    margin-left: 0;
    pointer-events: none;
    z-index: 101;
  }
  .header__nav.open {
    pointer-events: all;
    opacity: 1;
    background: rgba(14, 112, 241, 0.8);
  }
}
.header__nav__toggle svg {
  width: 2.2rem;
  height: 2.2rem;
  pointer-events: none;
}
.header__nav__toggle .header__nav__toggle__closed {
  display: flex;
}
.header__nav__toggle .header__nav__toggle__opened {
  display: none;
}
.header__nav__toggle.open .header__nav__toggle__closed {
  display: none;
}
.header__nav__toggle.open .header__nav__toggle__opened {
  display: flex;
}
.header__nav__list {
  display: flex;
  flex-direction: row;
  gap: 3.2rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .header__nav__list {
    background: #FFFFFF;
    width: 100%;
    height: 100%;
    border-radius: 2rem;
    transform: translateX(150%);
    transition: transform 0.3s ease;
    overflow: hidden;
    opacity: 0;
    position: relative;
    overflow-y: scroll;
    gap: 2.4rem;
    flex-direction: column;
    padding: 3.2rem;
  }
  .open .header__nav__list {
    transform: translateX(0%);
    opacity: 1;
    z-index: 1000;
  }
}
.header__nav__list__item--title {
  display: none;
}
@media (min-width: 300px) and (max-width: 767px) {
  .header__nav__list__item--title {
    display: block;
    font-family: "Playpen Sans";
    font-weight: 400;
    font-size: 1.6rem;
    font-style: normal;
    line-height: 100%;
    letter-spacing: 0%;
    text-transform: uppercase;
    color: #0E70F1;
    margin-bottom: 1.6rem;
    font-size: 2rem;
  }
}
.header__nav__list__item a {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  font-weight: 500;
  line-height: 110%;
  color: #FFFFFF;
}
.header--light .header__nav__list__item a {
  color: #0E70F1;
}
.is-allready-scrolled .header__nav__list__item a {
  color: #0E70F1;
}
@media (min-width: 300px) and (max-width: 767px) {
  .header__nav__list__item a {
    color: #022256 !important;
  }
}
.header__nav__list__item a[aria-current=page] {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.6rem;
}
.header__nav__list__item--mobile {
  display: none !important;
}
@media (min-width: 300px) and (max-width: 767px) {
  .header__nav__list__item--mobile {
    display: flex !important;
  }
}
.header__nav__list__item--mobile:last-of-type {
  margin-top: auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.header__nav__list__item--mobile__logout {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
.header__nav__list__item--mobile__logout:hover {
  background: #022256;
  color: #FFFFFF;
}
.header__nav__list__item--mobile__logout svg {
  display: none;
}
.header__nav__list__item--mobile__close {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #FFFFFF;
  background: #022256;
}
.header__nav__secondary {
  margin-left: auto;
}
@media (min-width: 300px) and (max-width: 767px) {
  .open .header__nav__secondary {
    display: none;
  }
}
.header__nav__secondary__list {
  display: flex;
  flex-direction: row;
  align-items: center;
  width: max-content;
  gap: 0.8rem;
}
.header__nav__secondary__list__toggle {
  display: none;
}
@media (min-width: 300px) and (max-width: 767px) {
  .header__nav__secondary__list__toggle {
    display: flex;
    border-radius: 1.2rem;
    padding-top: 1rem;
    padding-right: 1.6rem;
    padding-bottom: 1rem;
    padding-left: 1.6rem;
    transition: all 0.3s ease;
    cursor: pointer;
    width: max-content;
    display: flex;
    justify-content: center;
    align-items: center;
    max-height: 3.8rem;
    font-family: "Rethink Sans";
    font-weight: 500;
    font-style: medium;
    font-size: 1.6rem;
    line-height: 110%;
    letter-spacing: 0%;
    background: #022256;
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .header__nav__secondary__list__pro {
    display: none;
  }
}
.header__nav__secondary__list__pro a {
  color: #FFFFFF;
}
.is-allready-scrolled .header__nav__secondary__list__pro a[aria-current=page] {
  color: #022256;
}
.header__nav__secondary__list__pro a:not([aria-current=page]) {
  background: #0449B7;
}
.header__nav__secondary__list__pro a:not([aria-current=page]):hover {
  background: #A3DDFA;
  color: #022256;
}
.header__nav__secondary__list__space a {
  color: #FFFFFF;
}
.header__nav__secondary__list__space a:not([aria-current=page]) {
  background: #022256;
}
.header__nav__secondary__list__space a:not([aria-current=page]):hover {
  background: #A3DDFA;
  color: #022256;
}
.header__nav__secondary__list__space a:not([aria-current=page]):hover svg {
  color: #022256;
  transition: all 0.3s ease;
}
.header__nav__secondary__list__space a svg {
  color: #FF9C00;
  width: 1.8rem;
  height: 1.8rem;
  margin-right: 8px;
}
.header__nav__secondary__list__space a svg rect {
  width: 1.8rem;
  height: 1.8rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .header__nav__secondary__list__space a {
    background: #0449B7 !important;
    color: #FFFFFF;
  }
  .je-suis-un-pro-page .header__nav__secondary__list__space a {
    background: #0E70F1 !important;
  }
  .header__nav__secondary__list__space a svg {
    color: #FFFFFF;
    width: 2.2rem;
    height: 2.2rem;
    margin-right: 0;
  }
  .header__nav__secondary__list__space a svg rect {
    width: 2.2rem;
    height: 2.2rem;
  }
  .header__nav__secondary__list__space a span {
    display: none;
  }
}
.header__nav__secondary__list__signin button {
  border-radius: 1.2rem;
  padding-top: 1rem;
  padding-right: 1.6rem;
  padding-bottom: 1rem;
  padding-left: 1.6rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 3.8rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #022256;
  color: #FFFFFF;
}
.header__nav__secondary__list__signin button:hover {
  background: #A3DDFA;
  color: #022256;
}
.header__nav__secondary__list__signin button:hover svg {
  color: #022256;
  transition: all 0.3s ease;
}
.header__nav__secondary__list__signin button svg {
  color: #FF9C00;
  width: 1.8rem;
  height: 1.8rem;
}
.header__nav__secondary__list__signin button svg rect {
  width: 1.8rem;
  height: 1.8rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .header__nav__secondary__list__signin button {
    background: #0449B7;
    color: #FFFFFF;
  }
  .je-suis-un-pro-page .header__nav__secondary__list__signin button {
    background: #0E70F1;
  }
  .header__nav__secondary__list__signin button svg {
    color: #FFFFFF;
    width: 2.2rem;
    height: 2.2rem;
  }
  .header__nav__secondary__list__signin button svg rect {
    width: 2.2rem;
    height: 2.2rem;
  }
  .header__nav__secondary__list__signin button span {
    display: none;
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .header__nav__secondary__list__logout {
    display: none;
  }
}
.header__nav__secondary__list__logout button {
  border-radius: 1.2rem;
  padding-top: 1rem;
  padding-right: 1.6rem;
  padding-bottom: 1rem;
  padding-left: 1.6rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 3.8rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #A3DDFA !important;
  color: #022256 !important;
  padding: 1rem !important;
}
.header__nav__secondary__list__logout button:hover {
  background: #FF9C00 !important;
  color: #022256 !important;
}
.header__nav__secondary__list li svg {
  pointer-events: none;
}
.header__nav__secondary__list li a:not([aria-current=page]) {
  border-radius: 1.2rem;
  padding-top: 1rem;
  padding-right: 1.6rem;
  padding-bottom: 1rem;
  padding-left: 1.6rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 3.8rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
}
.header__nav__secondary__list li a[aria-current=page] {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  padding: 0 1.6rem;
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 0.6rem;
}

.footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 3.2rem 4rem;
}
@media (min-width: 1280px) {
  .footer {
    padding: 3.2rem max(4rem, (100vw - 1280px) / 2);
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .footer {
    padding: 7.2rem 1.6rem 2.4rem;
  }
}
.footer__top {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-bottom: 2.4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .footer__top {
    flex-direction: column;
    gap: 4.8rem;
    margin-bottom: 4rem;
  }
}
.footer__branding {
  display: flex;
  flex-direction: column;
  width: 28.8rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .footer__branding {
    flex-direction: row;
    flex-wrap: wrap;
    width: 100%;
  }
}
.footer__branding__logo {
  width: max-content;
  margin-bottom: 4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .footer__branding__logo {
    order: 1;
    margin-bottom: 0;
  }
}
.footer__branding__logo svg {
  width: 14.4rem;
  height: 2.7rem;
}
.footer__branding__subtitle {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: -2%;
  margin-bottom: 1.6rem;
  color: #022256;
}
@media (min-width: 300px) and (max-width: 767px) {
  .footer__branding__subtitle {
    order: 3;
    width: 28.3rem;
  }
}
.footer__branding__text {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .footer__branding__text {
    font-size: 1.6rem;
  }
}
.footer__branding__text {
  color: #022256;
  margin-bottom: 4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .footer__branding__text {
    order: 4;
    margin-bottom: 0;
    width: 28.3rem;
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .footer__branding__socials {
    margin-left: auto;
    order: 2;
    margin-top: -0.7rem;
    margin-bottom: 4rem;
  }
}
.footer__branding__socials__list {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
}
.footer__branding__socials__list li a {
  display: block;
  border-radius: 1.2rem;
  padding-top: 1rem;
  padding-right: 1.6rem;
  padding-bottom: 1rem;
  padding-left: 1.6rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 3.8rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #022256;
}
.footer__navs {
  display: flex;
  flex-direction: row;
  gap: 6.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .footer__navs {
    flex-direction: column;
    gap: 4.8rem;
  }
}
.footer__navs__item {
  width: 18.7rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .footer__navs__item {
    width: 100%;
  }
}
.footer__navs__item__title {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #022256;
  margin-bottom: 4.2rem;
}
.footer__navs__item__list {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .footer__navs__item__list {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 1.6rem;
    width: 100%;
  }
  .footer__navs__item__list li {
    width: calc(50% - 1.6rem);
  }
}
.footer__navs__item__list li a {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #0E70F1;
  transition: all 0.3s ease;
}
.footer__navs__item__list li a:hover {
  text-decoration: underline;
}
.footer__bottom {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: end;
  width: 100%;
}
.footer__bottom a {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 120%;
  letter-spacing: 0%;
  color: #022256;
}
.footer__bottom__copyright {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 120%;
  letter-spacing: 0%;
  color: #022256;
}
.footer__bottom__copyright br {
  display: none;
}
@media (min-width: 300px) and (max-width: 767px) {
  .footer__bottom__copyright {
    text-align: end;
  }
  .footer__bottom__copyright br {
    display: block;
  }
}

.home__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  height: 65.5rem;
  min-height: 655px;
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  background: #0E70F1;
  padding: 0 0 0 4rem;
}
@media (min-width: 1280px) {
  .home__header {
    padding: 0 0 0 max(4rem, (100vw - 1280px) / 2);
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .home__header {
    min-height: 400px;
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header {
    flex-direction: column;
    padding: 10rem 0.8rem 4.8rem;
    gap: 3.2rem;
    height: max-content;
    position: relative;
  }
}
.home__header__part:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  width: 60.2rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(1) {
    width: 100%;
  }
}
.home__header__part:nth-of-type(1) h1 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 115%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(1) h1 {
    font-size: 3.6rem;
  }
}
.home__header__part:nth-of-type(1) h1 {
  color: #FFFFFF;
  margin-bottom: 4.8rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(1) h1 {
    margin-bottom: 3.3rem;
    padding: 0 0.8rem;
  }
}
.home__header__part:nth-of-type(1) h1 span {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 4.4rem;
  line-height: 110%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(1) h1 span {
    font-size: 3.2rem;
  }
}
.home__header__part:nth-of-type(1) h1 span {
  color: #A3DDFA;
}
.home__header__part:nth-of-type(1) nav ul {
  display: flex;
  flex-direction: row;
  gap: 4rem;
  margin-bottom: 2.8rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(1) nav ul {
    gap: 2.4rem;
    padding: 0 0.8rem;
  }
}
.home__header__part:nth-of-type(1) nav ul li {
  font-family: "Rethink Sans";
  font-size: 1.8rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
  cursor: pointer;
}
.home__header__part:nth-of-type(1) nav ul li button.selected {
  font-weight: 700;
  font-style: bold;
  text-decoration: underline;
  text-decoration-color: #FFFFFF;
  text-decoration-thickness: 0.2rem;
  text-underline-offset: 0.8rem;
}
.home__header__part:nth-of-type(1) label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  padding: 0.8rem 0.8rem 0.8rem 1.6rem;
  margin-bottom: 2.3rem;
  border-radius: 1.6rem;
  background: #FFFFFF;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(1) label {
    margin-bottom: 0;
  }
}
.home__header__part:nth-of-type(1) label input {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: Medium;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 0%;
  width: 100%;
  color: #022256;
}
.home__header__part:nth-of-type(1) label input::placeholder {
  color: #022256;
}
.home__header__part:nth-of-type(1) label button {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
.home__header__part:nth-of-type(1) label button:hover {
  background: #022256;
  color: #FFFFFF;
}
.home__header__part:nth-of-type(1) label button {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(1) label button span {
    display: none;
  }
}
.home__header__part:nth-of-type(1) label button svg {
  display: none;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(1) label button svg {
    display: inline;
    width: 2.4rem;
    height: 2.4rem;
  }
}
.home__header__part:nth-of-type(1) p {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 100%;
  letter-spacing: 0%;
  color: #FFFFFF;
}
.home__header__part:nth-of-type(1) p svg {
  width: 2rem;
  height: 2rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(1) p {
    display: none;
  }
}
.home__header__part:nth-of-type(2) {
  width: 67.8rem;
  height: 100%;
  position: relative;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(2) {
    width: 100%;
    display: flex;
    flex-direction: column;
    height: max-content;
    padding: 0 0.8rem;
    z-index: 1;
  }
}
.home__header__part:nth-of-type(2) p {
  position: absolute;
  z-index: 1;
  font-family: "Playpen Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 130%;
  letter-spacing: -2%;
  color: #FFFFFF;
  width: fit-content;
  max-width: 15.3rem;
  padding: 1.2rem 1.6rem;
  border: 1.5px solid #FFFFFF;
  background: #0E70F1;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(2) p {
    position: static;
    padding: 0.9rem 1.2rem 1rem;
  }
}
.home__header__part:nth-of-type(2) p:nth-of-type(1) {
  top: 50%;
  right: 4rem;
  transform: translateY(-50%);
  margin-top: -14.1rem;
  border-radius: 1.2rem 1.2rem 1.2rem 0;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(2) p:nth-of-type(1) {
    transform: unset;
    margin: 4.6rem 0 0 auto;
    max-width: 13rem;
  }
}
.home__header__part:nth-of-type(2) p:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
  right: 41.6rem;
  margin-top: 1rem;
  border-radius: 1.2rem 0 1.2rem 1.2rem;
  max-width: 13.1rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(2) p:nth-of-type(2) {
    transform: unset;
    margin: 2.4rem 0 0 1.1rem;
    max-width: 12rem;
  }
}
.home__header__part:nth-of-type(2) p:nth-of-type(3) {
  top: 50%;
  transform: translateY(-50%);
  right: 11.7rem;
  margin-top: 17rem;
  border-radius: 0 1.2rem 1.2rem 1.2rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__part:nth-of-type(2) p:nth-of-type(3) {
    transform: unset;
    margin: 3.6rem 3.9rem 1.2rem auto;
    max-width: 15rem;
  }
}
.home__header__visuel {
  position: absolute;
  margin-bottom: 3.3rem;
  right: max(0px, (100vw - 1280px) / 2);
  width: 73.3rem;
  height: 60.6rem;
  margin-top: auto;
  overflow: hidden;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__header__visuel {
    width: 34.3rem;
    height: 31.9rem;
    right: unset;
    left: 50%;
    transform: translateX(-50%);
    bottom: 4.8rem;
    margin: 0;
    z-index: 0;
  }
}
.home__header__visuel picture {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home__blog {
  display: flex;
  flex-direction: column;
  margin: 0 max(4rem, (100vw - 1280px) / 2) 12.8rem;
  padding-top: 6.4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__blog {
    margin: 0 0 8rem;
    padding-bottom: 20rem;
    position: relative;
    overflow: hidden;
    width: 100vw;
  }
}
.home__blog__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 3.9rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__blog__header {
    padding: 0 1.6rem;
    flex-direction: column;
  }
}
.home__blog__part {
  display: flex;
  flex-direction: column;
}
.home__blog__part i {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: #A3DDFA;
  color: #022256;
  width: max-content;
  padding: 0.6rem 1.2rem 0.3rem;
  border-radius: 0.8rem;
  margin-bottom: 1.9rem;
}
.home__blog__part:first-of-type {
  width: 69.4rem;
  margin-top: 6.4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__blog__part:first-of-type {
    width: 100%;
    margin-top: 0;
  }
}
.home__blog__part:first-of-type h2 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__blog__part:first-of-type h2 {
    font-size: 3.2rem;
  }
}
.home__blog__part:first-of-type h2 {
  color: #0E70F1;
  margin-bottom: 1.6rem;
}
.home__blog__part:first-of-type p {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
  color: #022256;
}
.home__blog__part:last-of-type {
  position: relative;
  width: calc(100% - 69.4rem);
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__blog__part:last-of-type {
    width: 100%;
    position: absolute;
    bottom: 0;
  }
}
.home__blog__part:last-of-type a {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  margin-top: auto;
  margin-left: auto;
  margin-right: 10rem;
  position: relative;
  z-index: 1;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__blog__part:last-of-type a {
    margin-right: auto;
    margin-left: 0;
    margin-bottom: 8.6rem;
  }
}
.home__blog__part:last-of-type img {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 0;
  width: 49rem;
  height: 24.4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__blog__part:last-of-type img {
    width: 30rem;
    height: 13.2rem;
    justify-self: end;
    top: unset;
    bottom: 0;
  }
}
.home__blog__list {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__blog__list {
    width: calc(100vw - 3.2rem);
    overflow-x: scroll;
    margin: 0 1.6rem;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    /* Hide scrollbar for Chrome, Safari and Opera */
  }
  .home__blog__list::-webkit-scrollbar {
    display: none;
  }
  .home__blog__list {
    /* Hide scrollbar for IE, Edge and Firefox */
    -ms-overflow-style: none; /* IE and Edge */
    scrollbar-width: none; /* Firefox */
  }
}
.home__blog__list__item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  flex: 1;
  border-radius: 0.8rem;
  border: 1px solid #A3DDFA;
  padding: 1.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__blog__list__item {
    flex: none;
    width: 30rem;
    height: 24rem;
    scroll-snap-align: start; /* ou center */
  }
}
.home__blog__list__item:hover {
  border: 1px solid #0E70F1;
  transition: all 0.3s ease;
}
.home__blog__list__item__header__meta {
  font-family: "Playpen Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 130%;
  letter-spacing: -2%;
  color: #022256;
  margin-bottom: 1.2rem;
}
.home__blog__list__item__header h3 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #0E70F1;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__blog__list__item__header h3 {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
}
.home__blog__list__item__header h3:hover {
  text-decoration: underline;
}
.home__blog__list__item__content {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-top: auto;
}
@media (min-width: 300px) and (max-width: 767px) {
  .home__blog__list__item__content {
    margin-bottom: 3.2rem;
  }
}
.home__blog__list__item__footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.home__blog__list__item__footer p {
  font-family: "Playpen Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 130%;
  letter-spacing: -2%;
  color: #022256;
}
.home__blog__list__item__footer p span[aria-hidden=true] {
  color: #FF9C00;
}
.home__blog__list__item__footer a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  font-family: "Playpen Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 130%;
  letter-spacing: -2%;
  color: #022256;
}
.home__blog__list__item__footer a:hover {
  text-decoration: underline;
}
.home__blog__list__item__footer a svg {
  width: 2rem;
  height: 1.8rem;
}

.estimate__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  height: max-content;
  min-height: 68rem;
  padding: 0 4rem 8rem 4rem;
}
@media (min-width: 1280px) {
  .estimate__header {
    padding: 0 max(4rem, (100vw - 1280px) / 2) 8rem max(4rem, (100vw - 1280px) / 2);
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__header {
    padding: 0;
    flex-direction: column;
    min-height: unset;
    margin-bottom: 6.4rem;
    width: 100vw;
    overflow: hidden;
  }
}
.estimate__header__image {
  position: absolute;
  width: 49.1rem;
  height: 37.4rem;
  top: 21.8rem;
  left: 40.5rem;
  margin-left: max(4rem, (100vw - 1280px) / 2);
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__header__image {
    top: 3.2rem;
    left: unset;
    right: -7.3rem;
    width: 20.7rem;
    height: 15.7rem;
  }
}
.estimate__header__part:nth-of-type(1) {
  display: flex;
  flex-direction: column;
  width: 38.9rem;
  margin-top: 13.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__header__part:nth-of-type(1) {
    width: 100%;
    margin-top: 10.2rem;
    padding: 0 1.6rem;
  }
}
.estimate__header__part:nth-of-type(1) h1 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 115%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__header__part:nth-of-type(1) h1 {
    font-size: 3.6rem;
  }
}
.estimate__header__part:nth-of-type(1) h1 {
  margin-bottom: 2.4rem;
  color: #022256;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__header__part:nth-of-type(1) h1 {
    margin-bottom: 1.6rem;
    width: 75%;
  }
}
.estimate__header__part:nth-of-type(1) h1 span {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 4.4rem;
  line-height: 110%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__header__part:nth-of-type(1) h1 span {
    font-size: 3.2rem;
  }
}
.estimate__header__part:nth-of-type(1) h1 span {
  font-weight: 500;
  font-size: 4.4rem;
  color: #0E70F1;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__header__part:nth-of-type(1) h1 span {
    font-size: 3.4rem;
  }
}
.estimate__header__part:nth-of-type(1) ul {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  margin-bottom: 2.8rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__header__part:nth-of-type(1) ul {
    margin-bottom: 3.2rem;
  }
}
.estimate__header__part:nth-of-type(1) ul li svg {
  display: inline;
  width: 2rem;
  height: 2rem;
  margin-right: 0.8rem;
  margin-bottom: -0.1rem;
}
.estimate__header__part:nth-of-type(1) ul li {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__header__part:nth-of-type(1) ul li {
    font-size: 1.6rem;
  }
}
.estimate__header__part:nth-of-type(1) ul li {
  color: #022256;
}
.estimate__header__part:nth-of-type(1) ul li span {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: -2%;
  color: #0E70F1;
}
.estimate__header__part:nth-of-type(1) p {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__header__part:nth-of-type(1) p {
    font-size: 1.6rem;
  }
}
.estimate__header__part:nth-of-type(1) p {
  color: #022256;
  margin-bottom: 4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__header__part:nth-of-type(1) p {
    margin-bottom: 1.6rem;
  }
}
.estimate__header__part:nth-of-type(2) {
  width: 49.1rem;
  height: max-content;
  position: relative;
  padding: 2.4rem;
  border: 1px solid #A3DDFA;
  border-radius: 2rem;
  margin-top: 11rem;
  background: #FFFFFF;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__header__part:nth-of-type(2) {
    width: 100%;
    margin-top: 0;
    border: unset;
    padding: 3.2rem 0.8rem;
  }
}
.estimate__form {
  display: flex;
  flex-direction: column;
  gap: 1.6rem;
  scroll-margin-top: 7rem;
}
.estimate__form .is-invalid {
  color: red !important;
}
.estimate__form .is-invalid span {
  color: red !important;
}
.estimate__form label.is-invalid {
  top: 1rem !important;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
}
.estimate__form .error-message {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: red;
  margin-top: 0.5rem;
}
.estimate__form input.is-invalid, .estimate__form select.is-invalid, .estimate__form textarea.is-invalid {
  color: red;
  border: 1px solid red !important;
}
.estimate__form__buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-top: 4rem;
  width: 100%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__form__buttons {
    margin-top: 0;
  }
}
.estimate__form__buttons a {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #0E70F1;
  text-decoration: underline;
}
.estimate__form__buttons button {
  margin: 0 !important;
}
.estimate__form__info {
  position: absolute;
  top: 5.3rem;
  right: 2.4rem;
  font-family: "Rethink Sans";
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: right;
  color: #022256;
  width: 7.5rem;
}
.estimate__form__info i {
  color: #0E70F1;
}
.estimate__form fieldset {
  border: none;
}
.estimate__form fieldset legend {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #0E70F1;
  margin-bottom: 3.2rem;
}
.estimate__form fieldset legend#result-title {
  margin-bottom: 1.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__form fieldset legend {
    padding: 0 0.8rem;
  }
}
.estimate__form fieldset legend span {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #022256;
  background: #A3DDFA;
  width: max-content;
  padding: 0.6rem 0.8rem;
  border-radius: 0.8rem;
}
.estimate__form fieldset p {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
  margin: 2.4rem 0 1.2rem;
}
.estimate__form fieldset p span {
  color: #0E70F1;
}
.estimate__form fieldset .form-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.estimate__form fieldset .form-row .form-group, .estimate__form fieldset .form-row .form-group-select {
  flex: 1;
  width: unset !important;
}
.estimate__form fieldset .form-group {
  position: relative;
  margin-bottom: 1.6rem;
}
.estimate__form fieldset .form-group input {
  width: 100%;
  padding: 2.1rem 1.2rem;
  border: 1px solid #0E70F1;
  border-radius: 0.8rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
}
.estimate__form fieldset .form-group input:focus {
  outline: none;
  border-color: #0E70F1;
  padding: 3.1rem 1.2rem 1.1rem;
}
.estimate__form fieldset .form-group input:not(:placeholder-shown) {
  padding: 3.1rem 1.2rem 1.1rem;
}
.estimate__form fieldset .form-group input:focus + label, .estimate__form fieldset .form-group input:not(:placeholder-shown) + label {
  top: 1rem;
  color: #0E70F1;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
}
.estimate__form fieldset .form-group input:focus + label::after, .estimate__form fieldset .form-group input:not(:placeholder-shown) + label::after {
  top: 2rem;
  color: #022256;
}
.estimate__form fieldset .form-group label {
  position: absolute;
  top: 2.3rem;
  left: 1.2rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
  pointer-events: none;
  transition: all 0.2s ease;
}
.estimate__form fieldset .form-group label span {
  color: #0E70F1;
}
.estimate__form fieldset .form-group-squarem label {
  width: calc(100% - 2.4rem);
}
.estimate__form fieldset .form-group-squarem label::after {
  content: "m²";
  position: absolute;
  right: 0;
  top: 0rem;
  color: #022256;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  transition: top 0.3s ease;
}
.estimate__form fieldset .form-group-info {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  color: #022256;
  margin: 0.8rem 0 0;
}
.estimate__form fieldset .form-group-info svg {
  display: inline;
  width: 2rem;
}
.estimate__form fieldset .form-group-radio {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  margin-bottom: 1.6rem;
}
.estimate__form fieldset .form-group-radio-item {
  flex: 1;
  height: 16.4rem;
  position: relative;
  display: flex;
  justify-content: center;
  padding-bottom: 1.6rem;
  overflow: hidden;
}
.estimate__form fieldset .form-group-radio-item input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.estimate__form fieldset .form-group-radio-item label {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
  margin-top: auto;
}
.estimate__form fieldset .form-group-radio-item label::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #0E70F1;
  border-radius: 0.8rem;
}
.estimate__form fieldset .form-group-radio-item input:checked + label::after {
  border: 3px solid #0E70F1;
}
.estimate__form fieldset .form-group-radio-item input:checked + label::before {
  content: "✓";
  position: absolute;
  top: 1rem;
  right: 1rem;
  color: #FFFFFF;
  background: #0E70F1;
  width: 1.6rem;
  height: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  font-size: 1.4rem;
  text-align: center;
}
.estimate__form fieldset .form-group-radio-item img {
  position: absolute;
  width: 13.2rem;
  height: 9.8rem;
  top: 1.6rem;
  left: 50%;
  transform: translateX(-50%);
}
.estimate__form fieldset .form-group-select {
  display: flex;
  flex-direction: column;
  position: relative;
  margin-bottom: 1.6rem;
  position: relative;
}
.estimate__form fieldset .form-group-select:after {
  content: url("/static/images_new/iconchevron.png");
  font: normal normal normal 12px/1 FontAwesome;
  color: white;
  right: 1.4rem;
  top: 2.2rem;
  height: 1.6rem;
  position: absolute;
  pointer-events: none;
  z-index: 10;
  color: #0E70F1;
}
.estimate__form fieldset .form-group-select select {
  width: 100%;
  border: 1px solid #0E70F1;
  border-radius: 0.8rem;
  min-height: 6rem;
  height: 6rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  -webkit-appearance: none;
}
.estimate__form fieldset .form-group-select select:focus {
  outline: none;
  border-color: #0E70F1;
  padding: 3rem 1.2rem 1rem;
}
.estimate__form fieldset .form-group-select select:not(:placeholder-shown) {
  padding: 3rem 1.2rem 1rem;
}
.estimate__form fieldset .form-group-select select:focus + label, .estimate__form fieldset .form-group-select select:not(:placeholder-shown) + label {
  top: 1rem;
  color: #0E70F1;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
}
.estimate__form fieldset .form-group-select label {
  position: absolute;
  top: 2.4rem;
  left: 1.2rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
  pointer-events: none;
  transition: all 0.2s ease;
}
.estimate__form fieldset .form-group-select label span {
  color: #0E70F1;
}
.estimate__form fieldset .form-group-checkbox {
  width: calc(50% - 1.6rem);
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}
.estimate__form fieldset .form-group-checkbox--full {
  width: 100%;
}
.estimate__form fieldset .form-group-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.estimate__form fieldset .form-group-checkbox .checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  border: 1px solid #0E70F1;
  border-radius: 4px;
  margin-right: 8px;
  transition: all 0.2s ease;
}
.estimate__form fieldset .form-group-checkbox {
  /* Hover */
}
.estimate__form fieldset .form-group-checkbox:hover .checkmark {
  border-color: #0E70F1;
}
.estimate__form fieldset .form-group-checkbox {
  /* Checked state */
}
.estimate__form fieldset .form-group-checkbox input:checked + .checkmark {
  background-color: #0E70F1;
  border-color: #0E70F1;
}
.estimate__form fieldset .form-group-checkbox {
  /* Tick */
}
.estimate__form fieldset .form-group-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}
.estimate__form fieldset .form-group-checkbox input:checked + .checkmark::after {
  display: block;
}
.estimate__form fieldset .form-group-checkbox .checkmark::after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.estimate__form fieldset .form-group-checkbox .label-text {
  line-height: 1;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
}
.estimate__form fieldset .form-group-button {
  border-radius: 1.2rem;
  padding-top: 1rem;
  padding-right: 1.6rem;
  padding-bottom: 1rem;
  padding-left: 1.6rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 3.8rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #0E70F1;
  margin: 0;
}
.estimate__form fieldset .form-group-button svg {
  height: 2rem;
  width: 2rem;
}
.estimate__form fieldset .form-group-button.bar::before, .estimate__form fieldset .form-group-button.bar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 2px;
  background: #0E70F1;
  transform-origin: center;
}
.estimate__form fieldset .form-group-button.bar::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.estimate__form fieldset .form-group-button.bar::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.estimate__form .form-group-submit {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
.estimate__form .form-group-submit:hover {
  background: #022256;
  color: #FFFFFF;
}
.estimate__form .form-group-submit {
  margin-top: 3.2rem;
  margin-left: auto;
  margin-right: auto;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__form .form-group-submit {
    margin-top: 0;
  }
}
.estimate__form .form-group-submit:disabled {
  background: #51758C;
  cursor: not-allowed;
}
.estimate__result {
  background: #0E70F1;
  height: 55rem;
  border-radius: 2rem;
  display: flex;
  flex-direction: column;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__result {
    height: 60.9rem;
  }
}
.estimate__result--loading {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__result--loading {
    min-height: 60.9rem;
  }
}
.estimate__result--loading h2 {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #FFFFFF;
  margin-bottom: 3.2rem;
  text-align: center;
}
.estimate__result--loading {
  /* HTML: <div class="loader"></div> */
}
.estimate__result--loading .loader {
  width: 60px;
  aspect-ratio: 2;
  --_g: no-repeat radial-gradient(circle closest-side,#FFF 90%,#FFF0);
  background: var(--_g) 0% 50%, var(--_g) 50% 50%, var(--_g) 100% 50%;
  background-size: 33.3333333333% 50%;
  animation: l3 1s infinite linear;
  margin-bottom: 3.2rem;
  margin-left: auto;
  margin-right: auto;
}
@keyframes l3 {
  20% {
    background-position: 0% 0%, 50% 50%, 100% 50%;
  }
  40% {
    background-position: 0% 100%, 50% 0%, 100% 50%;
  }
  60% {
    background-position: 0% 50%, 50% 100%, 100% 0%;
  }
  80% {
    background-position: 0% 50%, 50% 50%, 100% 100%;
  }
}
.estimate__result--loading p {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__result--loading p {
    font-size: 1.6rem;
  }
}
.estimate__result--loading p {
  color: #FFFFFF;
  text-align: center;
}
.estimate__result--result {
  display: flex;
  flex-direction: column;
  padding: 3.2rem 2.4rem;
  height: 100%;
  width: 100%;
}
.estimate__result--result h2 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
}
.estimate__result--result h3 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .estimate__result--result h3 {
    font-size: 3.2rem;
  }
}
.estimate__result--result h3 {
  color: #FFFFFF;
  margin-bottom: 0.7rem;
  margin-top: 1.6rem;
  text-align: center;
}
.estimate__result--result p {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
}
.estimate__result--result__prices {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 1rem;
}
.estimate__result--result__prices span {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
}
.estimate__result--result a {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
.estimate__result--result a:hover {
  background: #022256;
  color: #FFFFFF;
}
.estimate__result--result a {
  margin-top: auto;
}

.pro__header {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  height: 49rem;
  padding: 5.7rem 4rem 0 4rem;
}
@media (min-width: 1280px) {
  .pro__header {
    padding: 5.7rem max(4rem, (100vw - 1280px) / 2) 0 max(4rem, (100vw - 1280px) / 2);
    min-height: 490px;
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__header {
    padding: 0 0.8rem;
    height: max-content;
    min-height: unset;
  }
}
.pro__header__part:first-of-type {
  display: flex;
  flex-direction: column;
  width: 59.2rem;
  margin-top: 7.9rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__header__part:first-of-type {
    width: 100%;
    margin-top: 9.8rem;
  }
}
.pro__header__part:first-of-type h1 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 115%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__header__part:first-of-type h1 {
    font-size: 3.6rem;
  }
}
.pro__header__part:first-of-type h1 {
  margin-bottom: 1.6rem;
  width: 49rem;
  color: #022256;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__header__part:first-of-type h1 {
    width: 100%;
    padding: 0 0.8rem;
  }
}
.pro__header__part:first-of-type h1 span {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 4.4rem;
  line-height: 110%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__header__part:first-of-type h1 span {
    font-size: 3.2rem;
  }
}
.pro__header__part:first-of-type h1 span {
  font-weight: 500;
  font-size: 4.4rem;
  color: #0E70F1;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__header__part:first-of-type h1 span {
    font-size: 3.4rem;
  }
}
.pro__header__part:first-of-type p {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__header__part:first-of-type p {
    font-size: 1.6rem;
  }
}
.pro__header__part:first-of-type p {
  color: #022256;
  margin-bottom: 3.2rem;
  width: 49rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__header__part:first-of-type p {
    width: 100%;
    padding: 0 0.8rem;
  }
}
.pro__header__part:first-of-type label {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  gap: 0.8rem;
  width: 100%;
  padding: 0.8rem 0.8rem 0.8rem 1.6rem;
  border-radius: 1.6rem;
  background: #FFFFFF;
  border: 1px solid #0E70F1;
}
.pro__header__part:first-of-type label input {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: Medium;
  font-size: 1.6rem;
  line-height: 100%;
  letter-spacing: 0%;
  width: 100%;
  color: #022256;
}
.pro__header__part:first-of-type label input::placeholder {
  color: #022256;
}
.pro__header__part:first-of-type label button {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
.pro__header__part:first-of-type label button:hover {
  background: #022256;
  color: #FFFFFF;
}
.pro__header__part:first-of-type label button {
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__header__part:first-of-type label button span {
    display: none;
  }
}
.pro__header__part:first-of-type label button svg {
  display: none;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__header__part:first-of-type label button svg {
    display: inline;
    width: 2.4rem;
    height: 2.4rem;
  }
}
.pro__header__part:last-of-type {
  width: 59.2rem;
  height: 41.1rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__header__part:last-of-type {
    display: none;
  }
}
.pro__header__part:last-of-type img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro__map {
  min-height: 760px;
  height: 76rem;
  background-color: #A3DDFA;
  margin: 3.2rem max(0px, (100vw - 40px - 1280px) / 2) 12.8rem;
  border-radius: 2rem;
  padding: 3.2rem 4rem;
  display: flex;
  flex-direction: row;
  align-items: stretch; /* valeur par défaut */
  gap: 11.8rem;
  position: relative;
  scroll-margin-top: 9rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__map {
    scroll-margin-top: 7rem;
    display: flex;
    flex-direction: column;
    margin: 4.4rem 0 9.6rem;
    padding: 0.8rem;
    height: max-content;
    gap: 3.2rem;
  }
}
.pro__map__mobile-nav {
  display: none;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__map__mobile-nav {
    display: flex;
    flex-direction: row;
    width: 100%;
  }
  .pro__map__mobile-nav li {
    flex: 1;
    border-radius: 1.2rem;
    padding-top: 1.4rem;
    padding-right: 2rem;
    padding-bottom: 1.4rem;
    padding-left: 2rem;
    transition: all 0.3s ease;
    cursor: pointer;
    font-family: "Rethink Sans";
    font-weight: 500;
    font-style: medium;
    font-size: 1.6rem;
    line-height: 110%;
    letter-spacing: 0%;
    text-align: center;
    color: #022256;
    cursor: pointer;
  }
  .pro__map__mobile-nav li.selected {
    color: #FFFFFF;
    background: #0E70F1;
    cursor: initial;
  }
}
.pro__map__list {
  flex: 1;
  height: 100%;
}
.pro__map__list__pagination {
  margin-top: 5rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__map__list__pagination {
    margin-bottom: 2.4rem;
    padding: 0.8rem;
  }
  .pro__map__list__pagination:not(.visible) {
    display: none;
  }
}
.pro__map__list__pagination__items {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
}
.pro__map__list__pagination__items button {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  padding: 1.4rem 1.6rem;
  background: #0E70F1;
  color: #FFFFFF;
}
.pro__map__list__pagination__items button:disabled {
  opacity: 0;
}
.pro__map__list__pagination__items__subs {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.pro__map__list__pagination__items__subs button {
  background: transparent;
  color: #022256;
}
.pro__map__list__pagination__items__subs .active button {
  background: #022256;
  color: #FFFFFF;
  text-decoration: underline;
  pointer-events: none;
}
.pro__map__list__filters {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
  position: relative;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__map__list__filters {
    flex-wrap: wrap;
    padding: 0 0.8rem;
  }
}
.pro__map__list__filters__button {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
  background: #FFFFFF;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  padding: 0.8rem 1.2rem;
  border: 2px solid #FFFFFF;
}
.pro__map__list__filters__button:hover {
  border: 2px solid #022256;
}
.pro__map__list__filters__button svg {
  pointer-events: none;
}
.pro__map__list__filters__button.open svg {
  rotate: 180deg;
  transition: all 0.3s ease;
}
.pro__map__list__filters--modal {
  position: absolute;
  top: 4.6rem;
  width: 34rem;
  background: #FFFFFF;
  padding: 1.6rem 1.2rem 1.2rem;
  border-radius: 0.8rem;
  z-index: 10;
  display: none;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
}
.pro__map__list__filters--modal.open {
  display: flex;
  flex-direction: column;
  transform: translateX(-100%);
}
.pro__map__list__filters--modal p {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
  margin-bottom: 2rem;
}
.pro__map__list__filters--modal p i {
  font-style: normal;
}
.pro__map__list__filters--modal input[type=range] {
  width: 100%;
  margin-bottom: 3.2rem;
  -webkit-appearance: none;
  width: 100%;
  height: 0.8rem;
  background: #A3DDFA;
  border-radius: 1.6rem;
  outline: none;
  -webkit-transition: 0.2s;
  transition: opacity 0.2s;
  background-image: linear-gradient(#0E70F1, #0E70F1);
  background-size: 50% 100%;
  background-repeat: no-repeat;
}
.pro__map__list__filters--modal input[type=range]:hover {
  opacity: 1;
}
.pro__map__list__filters--modal input[type=range]::-webkit-slider-thumb, .pro__map__list__filters--modal input[type=range]::-moz-range-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 1.6rem;
  height: 1.6rem;
  background: #0E70F1;
  border-radius: 50%;
  outline: none;
  border: unset;
  cursor: pointer;
}
.pro__map__list__filters--modal button {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #0E70F1;
  color: #FFFFFF;
  width: 100%;
}
.pro__map__list__filters--modal .form-group-checkbox {
  width: 100%;
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 1.6rem;
  user-select: none;
  margin-bottom: 1.6rem;
}
.pro__map__list__filters--modal .form-group-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.pro__map__list__filters--modal .form-group-checkbox .checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  border: 1px solid #0E70F1;
  border-radius: 4px;
  margin-right: 8px;
  transition: all 0.2s ease;
}
.pro__map__list__filters--modal .form-group-checkbox {
  /* Hover */
}
.pro__map__list__filters--modal .form-group-checkbox:hover .checkmark {
  border-color: #0E70F1;
}
.pro__map__list__filters--modal .form-group-checkbox {
  /* Checked state */
}
.pro__map__list__filters--modal .form-group-checkbox input:checked + .checkmark {
  background-color: #0E70F1;
  border-color: #0E70F1;
}
.pro__map__list__filters--modal .form-group-checkbox {
  /* Tick */
}
.pro__map__list__filters--modal .form-group-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}
.pro__map__list__filters--modal .form-group-checkbox input:checked + .checkmark::after {
  display: block;
}
.pro__map__list__filters--modal .form-group-checkbox .checkmark::after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.pro__map__list__filters--modal .form-group-checkbox .label-text {
  line-height: 1;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
}
.pro__map__list__filters .pro__map__list__filters__honoraire--modal label {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
  padding: 0 0 1.6rem 0;
  position: relative;
}
.pro__map__list__filters .pro__map__list__filters__honoraire--modal label:first-of-type {
  padding: 0 0 1.6rem 0;
  border-bottom: 1px solid rgba(14, 112, 241, 0.2);
}
.pro__map__list__filters .pro__map__list__filters__honoraire--modal label:last-of-type {
  padding: 1.6rem 0 0.6rem;
}
.pro__map__list__filters .pro__map__list__filters__honoraire--modal label input {
  width: 100%;
  height: 100%;
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.pro__map__list__tags {
  display: flex;
  flex-direction: row;
  gap: 1.2rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__map__list__tags {
    flex-wrap: wrap;
    margin-top: 3.2rem;
    padding: 0 0.8rem;
  }
}
.pro__map__list__tags p {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  margin-top: 1.6rem;
  padding: 0.8rem 1.2rem;
  border-radius: 0.8rem;
  background: #0E70F1;
  color: #FFFFFF;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__map__list__tags p {
    margin-top: 0;
  }
}
.pro__map__list__tags p button {
  cursor: pointer;
}
.pro__map__list__tags p button svg {
  pointer-events: none;
}
.pro__map__list__pro__count {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  margin-top: 3.4rem;
  color: #022256;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__map__list__pro__count {
    padding: 0 0.8rem;
  }
}
.pro__map__list__pro__list {
  width: 100%;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-top: 1.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__map__list__pro__list {
    padding: 0 0.8rem;
  }
  .pro__map__list__pro__list:not(.visible) {
    display: none;
  }
}
.pro__map__list__pro__card {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  width: calc(50% - 0.8rem);
  padding: 1.2rem;
  background: #FFFFFF;
  border-radius: 1.2rem;
  position: relative;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__map__list__pro__card {
    width: 100%;
    padding: 2rem 1.2rem;
  }
}
.pro__map__list__pro__card__picture {
  width: 9.2rem;
  height: 9.2rem;
  border-radius: 50%;
  overflow: hidden;
  background: rgba(0, 0, 255, 0.432);
  margin: auto 0;
}
.pro__map__list__pro__card__picture img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pro__map__list__pro__card__content {
  display: flex;
  flex-direction: column;
  color: #022256;
}
.pro__map__list__pro__card__content__name {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2rem;
  line-height: 120%;
  letter-spacing: -2%;
  margin-bottom: 0.4rem;
}
.pro__map__list__pro__card__content__other {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  margin-top: 0.8rem;
}
.pro__map__list__pro__card button {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
.pro__map__list__pro__card button:hover {
  background: #022256;
  color: #FFFFFF;
}
.pro__map__list__pro__card button {
  position: absolute;
  right: 1.2rem;
  bottom: 1.2rem;
  padding: 1.1rem;
  border-radius: 0.8rem;
}
.pro__map__list__pro__card button svg {
  width: 1.2rem;
  height: 1.2rem;
}
.pro__map__map {
  height: 100%;
  width: 38.9rem;
  display: flex;
  border-radius: 1.2rem;
  overflow: hidden;
}
@media (min-width: 300px) and (max-width: 767px) {
  .pro__map__map {
    width: 100%;
    height: 48.5rem;
  }
  .pro__map__map:not(.visible) {
    display: none;
  }
}
.pro__map__map #gmap {
  width: 38.9rem;
  height: 100%;
}

#modal__pro {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: end;
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}
@media (min-width: 300px) and (max-width: 767px) {
  #modal__pro {
    padding: 4rem 0 0;
  }
}
#modal__pro.open {
  z-index: 100;
  opacity: 1;
  background: rgba(14, 112, 241, 0.8);
}
#modal__pro.open .modal__pro__content {
  transform: translateX(0%);
  opacity: 1;
}
#modal__pro.open .modal__pro__buttons {
  transform: translateX(0%);
  opacity: 1;
}
#modal__pro .modal__pro__content {
  background: #FFFFFF;
  width: 51.5rem;
  height: 100%;
  border-radius: 2rem;
  transform: translateX(150%);
  transition: transform 0.3s ease;
  overflow: hidden;
  opacity: 0;
}
@media (min-width: 300px) and (max-width: 767px) {
  #modal__pro .modal__pro__content {
    width: 100%;
  }
}
#modal__pro .modal__pro__buttons {
  position: absolute;
  bottom: 1.6rem;
  right: 1.6rem;
  width: 51.5rem;
  height: 15.1rem;
  border-bottom-left-radius: 2rem;
  border-bottom-right-radius: 2rem;
  overflow: hidden;
  padding: 3.2rem;
  display: flex;
  flex-direction: row;
  align-items: end;
  justify-content: space-between;
  transform: translateX(150%);
  transition: transform 0.3s ease;
  opacity: 0;
}
@media (min-width: 300px) and (max-width: 767px) {
  #modal__pro .modal__pro__buttons {
    bottom: 0;
    right: 0;
    border-radius: unset;
    padding: 0 1.2rem 2.4rem;
    width: 100vw;
  }
}
#modal__pro .modal__pro__buttons::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 0;
  left: 0;
  top: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 50.4%);
}
#modal__pro .modal__pro__buttons button {
  z-index: 1;
}
#modal__pro .modal__pro__buttons button:first-of-type {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #022256;
  color: #FFFFFF;
}
#modal__pro .modal__pro__buttons button:last-of-type {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
#modal__pro .modal__pro__buttons button:last-of-type:hover {
  background: #022256;
  color: #FFFFFF;
}
#modal__pro .modal__pro__buttons button:last-of-type {
  margin-left: auto;
  padding: 1.4rem 3.3rem;
}
#modal__pro iframe {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
}

.inscription__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  height: 65.5rem;
  min-height: 655px;
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  background: #0449B7;
  padding: 0 4rem 0 4rem;
}
@media (min-width: 1280px) {
  .inscription__header {
    padding: 0 max(4rem, (100vw - 1280px) / 2) 0 max(4rem, (100vw - 1280px) / 2);
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  .inscription__header {
    min-height: 400px;
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header {
    padding: 9.8rem 1.6rem 0;
    flex-direction: column;
    height: max-content;
    min-height: unset;
  }
}
.inscription__header img {
  position: absolute;
}
.inscription__header img:nth-of-type(1) {
  height: 51rem;
  left: max(0rem, (100vw - 1280px) / 2);
  bottom: 2.5rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header img:nth-of-type(1) {
    display: none;
  }
}
.inscription__header img:nth-of-type(2) {
  height: 47rem;
  right: max(0rem, (100vw - 1280px) / 2);
  bottom: 3.1rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header img:nth-of-type(2) {
    display: none;
  }
}
.inscription__header img:nth-of-type(3) {
  display: none;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header img:nth-of-type(3) {
    display: block;
    bottom: 0;
    left: 1.6rem;
    width: calc(100vw - 3.2rem);
  }
}
.inscription__header__part {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 64.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header__part {
    width: 100%;
    align-items: start;
  }
}
.inscription__header__part h1 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 115%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header__part h1 {
    font-size: 3.6rem;
  }
}
.inscription__header__part h1 {
  color: #FFFFFF;
  margin-bottom: 2.4rem;
  text-align: center;
  width: 59.2rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header__part h1 {
    width: 100%;
    text-align: start;
    margin-bottom: 1.6rem;
  }
}
.inscription__header__part h1 span {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 4.4rem;
  line-height: 110%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header__part h1 span {
    font-size: 3.2rem;
  }
}
.inscription__header__part h1 span {
  color: #FF9C00;
  font-size: 4.4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header__part h1 span {
    font-size: 3.4rem;
  }
}
.inscription__header__part p {
  width: 59.2rem;
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header__part p {
    font-size: 1.6rem;
  }
}
.inscription__header__part p {
  color: #FFFFFF;
  text-align: center;
  margin-bottom: 2.4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header__part p {
    width: 100%;
    text-align: start;
  }
}
.inscription__header__part ul {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header__part ul {
    justify-content: flex-start;
  }
}
.inscription__header__part ul li {
  background: #022256;
  color: #FFFFFF;
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: -2%;
  padding: 0.4rem 1.2rem;
  border-radius: 0.8rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header__part ul li {
    background: transparent;
    padding: 0;
    font-family: "Playpen Sans";
    font-weight: 400;
    font-size: 1.8rem;
    line-height: 150%;
    letter-spacing: -2%;
    font-size: 1.6rem;
  }
}
.inscription__header__part ul li span {
  display: none;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header__part ul li span {
    display: inline-flex;
    margin-right: 0.8rem;
  }
}
.inscription__header__part a {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
.inscription__header__part a:hover {
  background: #022256;
  color: #FFFFFF;
}
.inscription__header__part a {
  margin-top: 4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__header__part a {
    margin-bottom: 24.7rem;
    margin-top: 3.2rem;
  }
}
.inscription__section {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.6rem;
  padding: 9.6rem 4rem 3.2rem 4rem;
}
@media (min-width: 1280px) {
  .inscription__section {
    padding: 9.6rem max(4rem, (100vw - 1280px) / 2) 3.2rem max(4rem, (100vw - 1280px) / 2);
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section {
    padding: 7.2rem 1.6rem;
    align-items: flex-start;
    overflow: hidden;
  }
}
.inscription__section__bullet {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: #A3DDFA;
  color: #022256;
  width: max-content;
  padding: 0.6rem 0.8rem;
  border-radius: 0.8rem;
}
.inscription__section h2 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section h2 {
    font-size: 3.2rem;
  }
}
.inscription__section h2 {
  width: 59.2rem;
  color: #0E70F1;
  text-align: center;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section h2 {
    width: 100%;
    text-align: left;
  }
}
.inscription__section__desc {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__desc {
    font-size: 1.6rem;
  }
}
.inscription__section__desc {
  width: 59.2rem;
  color: #022256;
  text-align: center;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__desc {
    width: 100%;
    text-align: left;
    margin-top: 1.6rem;
  }
}
.inscription__section__cards {
  display: flex;
  flex-direction: row;
  gap: 1.6rem;
  width: 100%;
  overflow: hidden;
  margin-top: 4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__cards {
    flex-direction: column;
  }
}
.inscription__section__cards li {
  width: calc(25% - 1.6rem);
  padding: 2.4rem;
  width: 288;
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-left-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__cards li {
    width: 28.3rem;
    gap: 1.2rem;
    padding: 1.6rem;
  }
}
.inscription__section__cards li:nth-of-type(1) {
  background: #022256;
}
.inscription__section__cards li:nth-of-type(2) {
  background: #0449B7;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__cards li:nth-of-type(2) {
    margin-left: auto;
  }
}
.inscription__section__cards li:nth-of-type(3) {
  background: #0E70F1;
}
.inscription__section__cards li:nth-of-type(4) {
  background: #A3DDFA;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__cards li:nth-of-type(4) {
    margin-left: auto;
  }
}
.inscription__section__cards li:nth-of-type(4) h3, .inscription__section__cards li:nth-of-type(4) p {
  color: #022256;
}
.inscription__section__cards li span {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: #FF9C00;
  width: max-content;
  padding: 0.6rem 1.2rem;
  border-radius: 0.8rem;
}
.inscription__section__cards li h3 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #FFFFFF;
}
.inscription__section__cards li p {
  width: 100%;
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  color: #FFFFFF;
  text-align: left;
  white-space: pre-wrap;
}
.inscription__section__ref {
  display: flex;
  flex-direction: row;
  justify-content: center;
  gap: 3.75rem;
  width: 100%;
  overflow: hidden;
  margin-top: 4rem;
  padding: 0 5.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__ref {
    padding: 0;
    flex-wrap: wrap;
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__ref[data-count="4"] {
    padding: 0 3.5rem;
    gap: 1.6rem 3rem;
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__ref[data-count="4"] li {
    flex: unset;
    width: 11.8rem;
    height: 8.5rem;
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__ref[data-count="6"] {
    padding: 0 3.5rem;
    gap: 1.6rem 3rem;
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__ref[data-count="6"] li {
    flex: unset;
    width: 9.4rem;
    height: 6.8rem;
  }
}
.inscription__section__ref li {
  flex: 1;
  max-width: 15rem;
  aspect-ratio: 150/108;
  overflow: hidden;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__ref li {
    aspect-ratio: unset;
    max-width: unset;
  }
}
.inscription__section__ref li img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.inscription__section__subscribes {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  gap: 5.6rem;
  width: 100%;
  margin-top: 4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__subscribes {
    flex-direction: column;
    gap: 2.4rem;
  }
}
.inscription__section__subscribes__item {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: 3.2rem 1.6rem 1.6rem;
  border-radius: 1.2rem;
  border: 1px solid #A3DDFA;
  position: relative;
  /* ABONNEMENT */
}
.inscription__section__subscribes__item .ribbon {
  --f: .5em; /* control the folded part */
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #fff;
  position: absolute;
  top: 0;
  right: 0;
  line-height: 1.8;
  padding-inline: 1lh;
  padding-bottom: var(--f);
  border-image: conic-gradient(rgba(0, 0, 0, 0.5333333333) 0 0) 51%/var(--f);
  clip-path: polygon(100% calc(100% - var(--f)), 100% 100%, calc(100% - var(--f)) calc(100% - var(--f)), var(--f) calc(100% - var(--f)), 0 100%, 0 calc(100% - var(--f)), 999px calc(100% - var(--f) - 999px), calc(100% - 999px) calc(100% - var(--f) - 999px));
  transform: translate(29.2893218813%, -100%) rotate(45deg);
  transform-origin: 0% 100%;
  background-color: #0E70F1; /* green color */
}
.inscription__section__subscribes__item:nth-of-type(2) {
  background: #0449B7;
  border: 1px solid #0449B7;
}
.inscription__section__subscribes__item:nth-of-type(2) h3 {
  color: #FF9C00;
}
.inscription__section__subscribes__item:nth-of-type(2) .inscription__section__subscribes__item__price,
.inscription__section__subscribes__item:nth-of-type(2) .inscription__section__subscribes__item__desc,
.inscription__section__subscribes__item:nth-of-type(2) .inscription__section__subscribes__item__info {
  color: #FFFFFF;
}
.inscription__section__subscribes__item:nth-of-type(2) button {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  opacity: 0.8;
  cursor: wait;
}
.inscription__section__subscribes__item:nth-of-type(2) ul {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
}
.inscription__section__subscribes__item:nth-of-type(2) ul li {
  color: #FFFFFF;
}
.inscription__section__subscribes__item h3 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #0E70F1;
  margin-bottom: 0.8rem;
}
.inscription__section__subscribes__item__price {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #022256;
  text-align: left;
  margin-bottom: 1.6rem;
}
.inscription__section__subscribes__item__price span {
  font-size: 3.2rem;
}
.inscription__section__subscribes__item__desc {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  margin-bottom: 2.4rem;
  color: #022256;
  height: 9.6rem;
}
.inscription__section__subscribes__item__desc strong, .inscription__section__subscribes__item__desc b {
  font-weight: 700;
}
.inscription__section__subscribes__item button, .inscription__section__subscribes__item a {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  width: 100%;
  border: 1px solid #022256;
  color: #022256;
  margin-bottom: 2.4rem;
}
.inscription__section__subscribes__item ul {
  padding-top: 2.4rem;
  border-top: 1px solid rgba(4, 73, 183, 0.2);
  margin-bottom: 2.4rem;
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.inscription__section__subscribes__item ul li {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.inscription__section__subscribes__item ul li svg {
  margin-right: 0.8rem;
  margin-top: -0.2rem;
}
.inscription__section__subscribes__item__info {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.3rem;
  line-height: 120%;
  letter-spacing: 0%;
  color: #022256;
  margin-top: auto;
}
.inscription__section__parts {
  display: flex;
  flex-direction: row;
  justify-content: center;
  margin-top: 4rem;
  margin-bottom: 9.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__parts {
    flex-direction: column;
    margin-bottom: 2.4rem;
    width: 100%;
  }
}
.inscription__section__parts__item {
  width: 39.6rem;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__parts__item {
    width: 100%;
  }
}
.inscription__section__parts__item:first-of-type {
  padding-right: 5.6rem;
  border-right: 1px solid rgba(14, 112, 241, 0.2);
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__parts__item:first-of-type {
    border-right: unset;
    padding: 0 0 3.2rem;
    border-bottom: 1px solid rgba(14, 112, 241, 0.2);
  }
}
.inscription__section__parts__item:last-of-type {
  padding-left: 5.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__section__parts__item:last-of-type {
    padding: 3.2rem 0 0;
  }
}
.inscription__section__parts__item h3 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #022256;
  margin-bottom: 2.4rem;
  text-align: center;
}
.inscription__section__parts__item h4 {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: -2%;
  color: #0E70F1;
  margin-bottom: 0.8rem;
  text-align: center;
}
.inscription__section__parts__item h4 svg {
  display: inline;
}
.inscription__section__parts__item p {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  color: #022256;
  text-align: center;
}
.inscription__section__parts__item p:first-of-type {
  margin-bottom: 2.4rem;
}
.inscription__contact {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  margin: 0 max(4rem, (100vw - 1280px) / 2) 2.4rem;
  padding: 3.2rem;
  border-radius: 2rem;
  background: #A3DDFA;
  margin-top: 2.4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__contact {
    margin: 0 1.6rem;
    padding: 3.2rem 2.4rem;
    width: calc(100% - 3.2rem);
    flex-direction: column;
  }
}
.inscription__contact__visuel {
  position: absolute;
  right: 30.4rem;
  bottom: 0;
  height: 100%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__contact__visuel {
    right: 0;
    width: 28.3rem;
    height: auto;
  }
}
.inscription__contact__part {
  display: flex;
  flex-direction: column;
}
.inscription__contact__part:first-of-type {
  width: 56rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__contact__part:first-of-type {
    width: 100%;
  }
}
.inscription__contact__part:first-of-type h2 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #0E70F1;
  margin-bottom: 1.6rem;
}
.inscription__contact__part:first-of-type p {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  color: #022256;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__contact__part:last-of-type {
    width: 100%;
    margin-top: 11.2rem;
    position: relative;
    z-index: 1;
  }
}
.inscription__contact__part:last-of-type button {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
.inscription__contact__part:last-of-type button:hover {
  background: #022256;
  color: #FFFFFF;
}
.inscription__contact__part:last-of-type button {
  margin-top: auto;
  margin-left: auto;
}
@media (min-width: 300px) and (max-width: 767px) {
  .inscription__contact__part:last-of-type button {
    margin-left: unset;
    margin-right: auto;
  }
}

.je-suis-un-pro-page .faq {
  margin-bottom: 14.4rem;
}

.richtext {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 12rem auto;
  max-width: 79.4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .richtext {
    padding: 0 1.6rem;
  }
}
.richtext {
  color: #022256;
}
.richtext h1 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 115%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .richtext h1 {
    font-size: 3.6rem;
  }
}
.richtext h1 {
  color: #0E70F1;
  margin-bottom: 1.6rem;
}
.richtext h2 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .richtext h2 {
    font-size: 3.2rem;
  }
}
.richtext h2 {
  color: #0E70F1;
}
.richtext h3 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #0E70F1;
  margin: 3.2rem 0 0.4rem;
}
.richtext p, .richtext a, .richtext i, .richtext li {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .richtext p, .richtext a, .richtext i, .richtext li {
    font-size: 1.6rem;
  }
}
.richtext b {
  font-weight: 800;
}
.richtext a {
  color: #0E70F1;
  text-decoration: underline;
}

.professionnel-page.iframe-page {
  padding: 3.2rem 3.2rem 15.1rem;
  height: 100%;
  overflow-y: scroll;
}
@media (min-width: 300px) and (max-width: 767px) {
  .professionnel-page.iframe-page {
    padding: 1.6rem 1.6rem 15.1rem;
    height: max-content;
  }
}
.professionnel-page:not(.iframe-page) {
  margin: 18rem auto 15.6rem;
  max-width: 75rem;
  border: 1px solid #A3DDFA;
  padding: 3.2rem 1.6rem;
  border-radius: 2rem;
  scale: 1.2;
}
@media (min-width: 300px) and (max-width: 767px) {
  .professionnel-page:not(.iframe-page) {
    width: 100%;
    scale: 1;
    margin: 8rem 0 4rem;
    border: unset;
  }
}

.professional__profile__header {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.6rem;
  margin-bottom: 3.2rem;
}
.professional__profile__header__part {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}
.professional__profile__header__part__visuel {
  width: 10.4rem;
  height: 9.3rem;
  overflow: hidden;
  border-radius: 1.2rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .professional__profile__header__part__visuel {
    height: 12.1rem;
  }
}
.professional__profile__header__part__visuel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.professional__profile__header__part:nth-of-type(2) {
  flex: 1;
}
.professional__profile__header__part h1 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #0E70F1;
}
.professional__profile__header__part__other {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .professional__profile__header__part__other {
    gap: 1.2rem;
  }
}
.professional__profile__header__part__other span {
  display: flex;
  flex-direction: row;
  gap: 0.8rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
}
.professional__profile__header__part__other span svg {
  width: 1.6rem;
  height: 1.6rem;
}
.professional__profile__header__info {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: -2%;
  color: #022256;
  width: 100%;
  margin-top: 3.2rem;
}
.professional__profile__header__info svg {
  display: inline;
  width: 2rem;
  margin-right: 0.4rem;
}
.professional__profile__content h2 {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #0E70F1;
  margin-bottom: 0.8rem;
}
.professional__profile__content p, .professional__profile__content li {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  color: #022256;
}
.professional__profile__content ul {
  list-style: disc;
  padding-left: 2rem;
}
.professional__profile__content__text {
  margin-bottom: 3.2rem;
}

.err404__header {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.6rem;
  height: calc(100dvh - 6.4rem);
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  background: #0E70F1;
  margin-bottom: 9.6rem;
}
.err404__header h1 {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 4.4rem;
  line-height: 110%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .err404__header h1 {
    font-size: 3.2rem;
  }
}
.err404__header h1 {
  font-size: 20rem;
  color: #FFFFFF;
}
.err404__header p {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 115%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .err404__header p {
    font-size: 3.6rem;
  }
}
.err404__header p {
  color: #FFFFFF;
  text-align: center;
}
.err404__header a {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
.err404__header a:hover {
  background: #022256;
  color: #FFFFFF;
}
.err404__header a {
  margin-top: 4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .err404__header h1 {
    font-size: 10rem;
  }
}

.blog__header {
  display: flex;
  flex-direction: row;
  align-items: center;
  position: relative;
  height: max-content;
  min-height: 550px;
  border-bottom-right-radius: 2rem;
  border-bottom-left-radius: 2rem;
  padding: 0 4rem 0 4rem;
}
@media (min-width: 1280px) {
  .blog__header {
    padding: 0 max(4rem, (100vw - 1280px) / 2) 0 max(4rem, (100vw - 1280px) / 2);
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__header {
    padding: 9.8rem 1.6rem 0;
    flex-direction: column;
    height: max-content;
    min-height: unset;
  }
}
.blog__header__part {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 0 auto;
  width: 64.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__header__part {
    width: 100%;
    align-items: start;
  }
}
.blog__header__part h1 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 4.8rem;
  line-height: 115%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__header__part h1 {
    font-size: 3.6rem;
  }
}
.blog__header__part h1 {
  margin-bottom: 2.4rem;
  color: #022256;
  text-align: center;
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__header__part h1 {
    margin-bottom: 1.6rem;
  }
}
.blog__header__part h1 span {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 4.4rem;
  line-height: 110%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__header__part h1 span {
    font-size: 3.2rem;
  }
}
.blog__header__part h1 span {
  font-weight: 500;
  font-size: 4.4rem;
  color: #0E70F1;
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__header__part h1 span {
    font-size: 3.4rem;
  }
}
.blog__header__part p {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__header__part p {
    font-size: 1.6rem;
  }
}
.blog__header__part p {
  color: #022256;
  margin-bottom: 4rem;
  text-align: center;
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__header__part p {
    margin-bottom: 1.6rem;
  }
}
.blog__header img {
  position: absolute;
}
.blog__header img:nth-of-type(1) {
  height: 40rem;
  left: max(0rem, (100vw - 1280px) / 2 + 4rem);
  bottom: 0;
  transform: scaleX(-1);
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__header img:nth-of-type(1) {
    display: none;
  }
}
.blog__header img:nth-of-type(2) {
  height: 20rem;
  right: max(0rem, (100vw - 1280px) / 2 + 4rem);
  bottom: 10rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__header img:nth-of-type(2) {
    display: none;
  }
}
.blog__content {
  display: flex;
  flex-direction: row;
  align-items: stretch;
  margin: 0 max(4rem, (100vw - 1280px) / 2) 12.8rem;
  padding-top: 6.4rem;
  gap: 1.6rem;
  position: relative;
  scroll-margin-top: 9rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__content {
    flex-direction: column;
    margin: 0 0.8rem;
    padding-top: 3.2rem;
    margin-bottom: 7.2rem;
  }
}
.blog__content__list {
  flex: 1;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.blog__content__list__item {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  border-radius: 0.8rem;
  border: 1px solid #A3DDFA;
  padding: 1.6rem;
  width: calc(50% - 1.2rem);
  height: max-content;
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__content__list__item {
    width: 100%;
  }
}
.blog__content__list__item__header__meta {
  font-family: "Playpen Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 130%;
  letter-spacing: -2%;
  color: #022256;
  margin-bottom: 1.2rem;
}
.blog__content__list__item__header h3 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #0E70F1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 5.8rem;
}
.blog__content__list__item__content {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog__content__list__item__footer {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
.blog__content__list__item__footer p {
  font-family: "Playpen Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 130%;
  letter-spacing: -2%;
  color: #022256;
}
.blog__content__list__item__footer p span[aria-hidden=true] {
  color: #FF9C00;
}
.blog__content__list__item__footer a {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.8rem;
  font-family: "Playpen Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 130%;
  letter-spacing: -2%;
  color: #022256;
}
.blog__content__list__item__footer a svg {
  width: 2rem;
  height: 1.8rem;
}
.blog__content__menu {
  width: 25rem;
  align-self: flex-start;
  position: sticky;
  top: 9rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__content__menu {
    display: none;
  }
}
.blog__content__menu h2 {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  color: #0E70F1;
  font-weight: 600;
}
.blog__content__menu ul {
  display: flex;
  flex-direction: column;
  margin-top: 1.6rem;
  margin-bottom: 3.2rem;
  gap: 1.2rem;
}
.blog__content__menu ul li a {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .blog__content__menu ul li a {
    font-size: 1.6rem;
  }
}
.blog__content__menu ul li a {
  color: #022256;
}
.blog__content__menu ul li a span {
  color: #0E70F1;
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: -2%;
}
.blog__content__menu__item__article a {
  text-decoration: underline;
}
.blog__content__menu__item__article p {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: rgba(2, 34, 86, 0.5);
}

.steps {
  margin: 9.6rem 0 12.8rem 0;
}
@media (min-width: 300px) and (max-width: 767px) {
  .steps {
    margin: 7.2rem 0 0 0;
  }
}
.steps__list {
  display: flex;
  flex-direction: column;
  gap: 12.8rem;
  width: 100%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .steps__list {
    gap: 9.6rem;
    padding: 0 1.6rem;
    width: 100%;
    margin-bottom: 9.6rem;
  }
}
.steps__step {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  gap: 11.7rem;
  width: 110rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .steps__step {
    width: 100%;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5.6rem;
  }
}
.steps__step:nth-child(odd) {
  margin-left: auto;
  margin-right: 4rem;
}
@media (min-width: 1280px) {
  .steps__step:nth-child(odd) {
    margin-right: max(4rem, (100vw - 1280px) / 2);
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .steps__step:nth-child(odd) {
    margin: 0;
  }
}
.steps__step:nth-child(even) {
  margin-left: 4rem;
  margin-right: auto;
}
@media (min-width: 1280px) {
  .steps__step:nth-child(even) {
    margin-left: max(4rem, (100vw - 1280px) / 2);
  }
}
@media (min-width: 300px) and (max-width: 767px) {
  .steps__step:nth-child(even) {
    margin: 0;
  }
  .steps__step:nth-child(even) .steps__step__text {
    order: 1;
  }
  .steps__step:nth-child(even) .steps__step__image {
    order: 2;
  }
}
.steps__step:nth-child(even) .steps__step__text {
  order: 2;
}
.steps__step__text {
  display: flex;
  flex-direction: column;
  width: 49.1rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .steps__step__text {
    width: 100%;
  }
}
.steps__step__text__bullet {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: #A3DDFA;
  width: max-content;
  padding: 0.6rem 0.8rem;
  border-radius: 0.8rem;
  margin-bottom: 1.9rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .steps__step__text__bullet {
    margin-bottom: 1.6rem;
  }
}
.steps__step__text h3 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .steps__step__text h3 {
    font-size: 3.2rem;
  }
}
.steps__step__text h3 {
  color: #0E70F1;
  margin-bottom: 3.2rem;
}
.steps__step__text__desc {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .steps__step__text__desc {
    font-size: 1.6rem;
  }
}
.steps__step__text__desc {
  color: #022256;
  margin-bottom: 3.2rem;
  white-space: pre-wrap;
}
.steps__step__text a {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
.steps__step__text a:hover {
  background: #022256;
  color: #FFFFFF;
}
.steps__step__image {
  width: 49.1rem;
  height: 47.2rem;
  background: #0E70F1;
  border-radius: 2rem;
  overflow: hidden;
}
@media (min-width: 300px) and (max-width: 767px) {
  .steps__step__image {
    width: 100%;
    aspect-ratio: 1/1;
    height: auto;
  }
}
.steps__step__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.avis {
  display: flex;
  flex-direction: row;
  position: relative;
  height: 100dvh;
  max-height: 646px;
  margin: 0 max(4rem, (100vw - 1280px) / 2) 6.4rem;
  padding: 7.2rem 10.1rem 8.8rem;
  border-radius: 2rem;
  background: #022256;
}
.avis--light {
  background: #A3DDFA;
}
@media (min-width: 300px) and (max-width: 767px) {
  .avis {
    margin: 0 0 9.6rem 0;
    width: 100%;
    height: max-content;
    max-height: unset;
    padding: 7.2rem 1.6rem 8rem 1.6rem;
    flex-direction: column;
    gap: 7.2rem;
  }
}
.avis__visuel {
  position: absolute;
  width: 50.7rem;
  height: 30.2rem;
  bottom: 12.1rem;
  left: 0;
  z-index: 1;
}
@media (min-width: 300px) and (max-width: 767px) {
  .avis__visuel {
    width: 29.9rem;
    height: auto;
    bottom: unset;
    top: 5.5rem;
    left: unset;
    right: 0;
  }
}
.avis__part {
  display: flex;
  flex-direction: column;
}
@media (min-width: 300px) and (max-width: 767px) {
  .avis__part {
    position: relative;
    z-index: 2;
  }
}
.avis__part__bullet {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: #A3DDFA;
  width: max-content;
  padding: 0.6rem 0.8rem;
  border-radius: 0.8rem;
  padding: 0.6rem 1.2rem;
  margin-bottom: 1.9rem;
}
.avis--light .avis__part__bullet {
  background: #FFFFFF;
}
.avis__part:first-of-type {
  width: 40.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .avis__part:first-of-type {
    width: 100%;
  }
}
.avis__part:first-of-type h2 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 3.6rem;
  line-height: 120%;
  letter-spacing: -2%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .avis__part:first-of-type h2 {
    font-size: 3.2rem;
  }
}
.avis__part:first-of-type h2 {
  width: 28.8rem;
  color: #FF9C00;
}
.avis--light .avis__part:first-of-type h2 {
  color: #022256;
}
@media (min-width: 300px) and (max-width: 767px) {
  .avis__part:first-of-type h2 {
    width: 70%;
  }
}
.avis__part:last-of-type {
  display: flex;
  align-items: end;
  justify-content: end;
  width: calc(100% - 40.6rem);
  height: 100%;
  position: relative;
}
@media (min-width: 300px) and (max-width: 767px) {
  .avis__part:last-of-type {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
.avis__part:last-of-type a {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
.avis__part:last-of-type a:hover {
  background: #022256;
  color: #FFFFFF;
}
.avis__part:last-of-type a {
  margin-top: 4rem;
}
.avis__part:last-of-type article {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
  position: absolute;
  width: 26.1rem;
  padding: 1.6rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .avis__part:last-of-type article {
    position: static;
    padding: 1.6rem 1.6rem 3.2rem;
  }
}
.avis__part:last-of-type article .avis__stars {
  display: flex;
  flex-direction: row;
  gap: 0.4rem;
}
.avis__part:last-of-type article blockquote p {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  font-style: italic;
}
.avis__part:last-of-type article footer {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 1.6rem;
  padding-top: 1rem;
}
.avis__part:last-of-type article footer .avis__photo {
  width: 6.4rem;
  height: 6.4rem;
  overflow: hidden;
  border-radius: 50%;
  background: #FFFFFF;
}
.avis__part:last-of-type article footer .avis__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.avis__part:last-of-type article footer p {
  font-family: "Playpen Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 130%;
  letter-spacing: -2%;
}
.avis__part:last-of-type article:nth-of-type(1) {
  background: #FF9C00;
  border-radius: 1.2rem 1.2rem 1.2rem 0;
  color: #022256;
  top: 0;
  right: 21rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .avis__part:last-of-type article:nth-of-type(1) {
    border-radius: 1.2rem 1.2rem 0 1.2rem;
    width: 28.3rem;
    margin-left: auto;
  }
}
.avis__part:last-of-type article:nth-of-type(2) {
  background: #A3DDFA;
  border-radius: 1.2rem 1.2rem 0 1.2rem;
  color: #022256;
  right: 0;
  top: 13.6rem;
}
.avis--light .avis__part:last-of-type article:nth-of-type(2) {
  background: #0E70F1;
  color: #FFFFFF;
}
@media (min-width: 300px) and (max-width: 767px) {
  .avis__part:last-of-type article:nth-of-type(2) {
    border-radius: 1.2rem 1.2rem 1.2rem 0;
    width: 26.1rem;
    margin-top: -1.6rem;
    margin-right: auto;
  }
}
.avis__part:last-of-type article:nth-of-type(3) {
  width: 28.8rem;
  background: #0E70F1;
  border-radius: 1.2rem 1.2rem 1.2rem 0;
  color: #FFFFFF;
  right: 30.4rem;
  top: 26.3rem;
}
.avis--light .avis__part:last-of-type article:nth-of-type(3) {
  background: #0449B7;
}
@media (min-width: 300px) and (max-width: 767px) {
  .avis__part:last-of-type article:nth-of-type(3) {
    border-radius: 1.2rem 1.2rem 0 1.2rem;
    width: 28.3rem;
    margin-top: -1.6rem;
    margin-left: auto;
  }
}

.contact {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
  margin: 0 max(4rem, (100vw - 1280px) / 2) 2.4rem;
  padding: 3.2rem;
  border-radius: 2rem;
  background: #0E70F1;
}
@media (min-width: 300px) and (max-width: 767px) {
  .contact {
    margin: 0 1.6rem;
    padding: 3.2rem 2.4rem;
    width: calc(100% - 3.2rem);
    flex-direction: column;
  }
}
.contact__visuel {
  position: absolute;
  right: 23.1rem;
  bottom: 0;
  width: 40.2rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .contact__visuel {
    right: unset;
    transform: scaleX(-1);
    left: 0;
    width: 100vw;
  }
}
.contact__part {
  display: flex;
  flex-direction: column;
}
.contact__part__bullet {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: #A3DDFA;
  width: max-content;
  padding: 0.6rem 0.8rem;
  border-radius: 0.8rem;
  background: #022256;
  color: #FFFFFF;
  margin-bottom: 1.9rem;
  padding: 0.6rem 1.2rem;
}
.contact__part:first-of-type {
  width: 55.8rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .contact__part:first-of-type {
    width: 100%;
  }
}
.contact__part:first-of-type h2 {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #FFFFFF;
  margin-bottom: 1.6rem;
}
.contact__part:first-of-type .contact__part__text {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .contact__part:first-of-type .contact__part__text {
    font-size: 1.6rem;
  }
}
.contact__part:first-of-type .contact__part__text {
  color: #FFFFFF;
}
@media (min-width: 300px) and (max-width: 767px) {
  .contact__part:last-of-type {
    width: 100%;
    margin-top: 3.2rem;
    padding-bottom: 12.4rem;
  }
}
.contact__part:last-of-type button {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  margin-top: auto;
  margin-left: auto;
}
@media (min-width: 300px) and (max-width: 767px) {
  .contact__part:last-of-type button {
    margin-top: 0;
    margin-right: auto;
    margin-left: unset;
  }
}

.breadcrumb {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin: 0 max(4rem, (100vw - 1280px) / 2) 2.4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .breadcrumb {
    margin: 0 1.6rem 3.2rem;
  }
}
.breadcrumb li {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
}
.breadcrumb li:not(:last-of-type) {
  display: flex;
  flex-direction: row;
  gap: 0.6rem;
}
.breadcrumb li:not(:last-of-type)::after {
  content: "•";
  display: block;
  color: #A3DDFA;
}
.breadcrumb li a {
  color: #0E70F1;
  text-decoration: underline;
}

.faq {
  margin: 0 auto;
  max-width: 79.4rem;
}
@media (min-width: 300px) and (max-width: 767px) {
  .faq {
    width: calc(100% - 3.2rem);
    margin-bottom: 9.6rem;
  }
}
.faq h2 {
  font-family: "Playpen Sans";
  font-weight: 400;
  font-size: 1.6rem;
  font-style: normal;
  line-height: 100%;
  letter-spacing: 0%;
  text-transform: uppercase;
  background: #A3DDFA;
  width: max-content;
  padding: 0.6rem 0.8rem;
  border-radius: 0.8rem;
  margin-bottom: 4.8rem;
}
.faq .faq-item {
  border-bottom: 1px solid rgba(14, 112, 241, 0.2);
  padding: 2.4rem 0;
}
.faq .faq-item:first-of-type {
  border-top: 1px solid rgba(14, 112, 241, 0.2);
}
.faq .faq-item summary {
  cursor: pointer;
  list-style: none;
  position: relative;
  padding-right: 3.2rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #022256;
}
@media (min-width: 300px) and (max-width: 767px) {
  .faq .faq-item summary {
    font-family: "Rethink Sans";
    font-weight: 500;
    font-size: 2rem;
    line-height: 120%;
    letter-spacing: -2%;
  }
}
.faq .faq-item summary::after {
  content: "+";
  font-size: 4rem;
  font-weight: 100;
  position: absolute;
  right: 0;
  transition: transform 0.2s ease;
  color: #0E70F1;
}
@media (min-width: 300px) and (max-width: 767px) {
  .faq .faq-item summary::after {
    font-size: 3rem;
  }
}
.faq .faq-item[open] summary::after {
  content: "−";
}
.faq .faq-item[open] summary {
  color: #0E70F1;
}
.faq .faq-item p {
  margin-top: 1.6rem;
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .faq .faq-item p {
    font-size: 1.6rem;
  }
}
.faq .faq-item p {
  color: #022256;
  white-space: pre-wrap;
}

.modal-register, .modal-login, .modal-message, .modal-forgot {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  padding: 1.6rem;
  background: rgba(255, 255, 255, 0);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  z-index: -1;
  transition: opacity 0.3s ease;
  opacity: 0;
}
@media (min-width: 300px) and (max-width: 767px) {
  .modal-register, .modal-login, .modal-message, .modal-forgot {
    padding: 0.8rem 0 0;
    align-items: end;
  }
}
.modal-register.open, .modal-login.open, .modal-message.open, .modal-forgot.open {
  z-index: 100;
  opacity: 1;
  background: rgba(14, 112, 241, 0.8);
}
.modal-register__content, .modal-login__content, .modal-message__content, .modal-forgot__content {
  background: #FFFFFF;
  width: 51.5rem;
  height: max-content;
  border-radius: 2rem;
  transform: translateX(150%);
  transition: transform 0.3s ease;
  overflow: hidden;
  opacity: 0;
  padding: 1.6rem;
  position: relative;
  max-height: calc(100dvh - 6.4rem);
  overflow-y: scroll;
}
@media (min-width: 300px) and (max-width: 767px) {
  .modal-register__content, .modal-login__content, .modal-message__content, .modal-forgot__content {
    width: 100%;
    max-height: calc(100dvh - 0.8rem);
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    padding-bottom: 3.2rem;
  }
}
.open .modal-register__content, .open .modal-login__content, .open .modal-message__content, .open .modal-forgot__content {
  transform: translateX(0%);
  opacity: 1;
}
.modal-register__content--close, .modal-login__content--close, .modal-message__content--close, .modal-forgot__content--close {
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #022256;
  color: #FFFFFF;
  margin: 0;
  margin-top: 3.2rem;
}
.modal-register__content .modal--title, .modal-login__content .modal--title, .modal-message__content .modal--title, .modal-forgot__content .modal--title {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 2.4rem;
  line-height: 120%;
  letter-spacing: -2%;
  color: #0E70F1;
}
@media (min-width: 300px) and (max-width: 767px) {
  .modal-register__content, .modal-login__content, .modal-message__content, .modal-forgot__content {
    width: 100%;
  }
}
.modal-register__content__message, .modal-login__content__message, .modal-message__content__message, .modal-forgot__content__message {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.8rem;
  line-height: 150%;
  letter-spacing: 0%;
}
@media (min-width: 300px) and (max-width: 767px) {
  .modal-register__content__message, .modal-login__content__message, .modal-message__content__message, .modal-forgot__content__message {
    font-size: 1.6rem;
  }
}
.modal-register__content__message, .modal-login__content__message, .modal-message__content__message, .modal-forgot__content__message {
  margin-top: 3.2rem;
  margin-bottom: 2.4rem;
  color: #022256;
}
.modal-register__content__buttons, .modal-login__content__buttons, .modal-message__content__buttons, .modal-forgot__content__buttons {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.modal-register__form, .modal-login__form, .modal-message__form, .modal-forgot__form {
  display: flex;
  margin-top: 1.6rem;
  flex-direction: column;
}
.modal-register__form .form-global-error, .modal-login__form .form-global-error, .modal-message__form .form-global-error, .modal-forgot__form .form-global-error {
  display: none;
}
.modal-register__form .form-global-error.is-invalid, .modal-login__form .form-global-error.is-invalid, .modal-message__form .form-global-error.is-invalid, .modal-forgot__form .form-global-error.is-invalid {
  display: block;
}
.modal-register__form .is-invalid, .modal-login__form .is-invalid, .modal-message__form .is-invalid, .modal-forgot__form .is-invalid {
  color: red !important;
}
.modal-register__form .is-invalid span, .modal-login__form .is-invalid span, .modal-message__form .is-invalid span, .modal-forgot__form .is-invalid span {
  color: red !important;
}
.modal-register__form label.is-invalid, .modal-login__form label.is-invalid, .modal-message__form label.is-invalid, .modal-forgot__form label.is-invalid {
  top: 1rem !important;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
}
.modal-register__form .error-message, .modal-login__form .error-message, .modal-message__form .error-message, .modal-forgot__form .error-message {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: red;
  margin-top: 0.5rem;
}
.modal-register__form input.is-invalid, .modal-register__form select.is-invalid, .modal-register__form textarea.is-invalid, .modal-login__form input.is-invalid, .modal-login__form select.is-invalid, .modal-login__form textarea.is-invalid, .modal-message__form input.is-invalid, .modal-message__form select.is-invalid, .modal-message__form textarea.is-invalid, .modal-forgot__form input.is-invalid, .modal-forgot__form select.is-invalid, .modal-forgot__form textarea.is-invalid {
  color: red;
  border: 1px solid red !important;
}
.modal-register__form__info, .modal-login__form__info, .modal-message__form__info, .modal-forgot__form__info {
  position: absolute;
  top: 4rem;
  right: 1.6rem;
  font-family: "Rethink Sans";
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 120%;
  letter-spacing: 0%;
  text-align: right;
  color: #022256;
  width: 7.5rem;
}
.modal-register__form__info i, .modal-login__form__info i, .modal-message__form__info i, .modal-forgot__form__info i {
  color: #0E70F1;
}
.modal-register__form__link, .modal-login__form__link, .modal-message__form__link, .modal-forgot__form__link {
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
  text-decoration: underline;
  margin-top: 0.8rem;
  text-align: end;
}
.modal-register__form .form-row, .modal-login__form .form-row, .modal-message__form .form-row, .modal-forgot__form .form-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: 1.6rem;
}
.modal-register__form .form-row .form-group, .modal-register__form .form-row .form-group-select, .modal-login__form .form-row .form-group, .modal-login__form .form-row .form-group-select, .modal-message__form .form-row .form-group, .modal-message__form .form-row .form-group-select, .modal-forgot__form .form-row .form-group, .modal-forgot__form .form-row .form-group-select {
  flex: 1;
  width: unset !important;
}
.modal-register__form .form-group, .modal-login__form .form-group, .modal-message__form .form-group, .modal-forgot__form .form-group {
  position: relative;
  margin-bottom: 1.6rem;
}
.modal-register__form .form-group-submit, .modal-login__form .form-group-submit, .modal-message__form .form-group-submit, .modal-forgot__form .form-group-submit {
  margin: 3.2rem auto 0;
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
.modal-register__form .form-group-submit:hover, .modal-login__form .form-group-submit:hover, .modal-message__form .form-group-submit:hover, .modal-forgot__form .form-group-submit:hover {
  background: #022256;
  color: #FFFFFF;
}
.modal-register__form .form-group input, .modal-register__form .form-group textarea, .modal-login__form .form-group input, .modal-login__form .form-group textarea, .modal-message__form .form-group input, .modal-message__form .form-group textarea, .modal-forgot__form .form-group input, .modal-forgot__form .form-group textarea {
  width: 100%;
  padding: 2.1rem 1.2rem;
  border: 1px solid #0E70F1;
  border-radius: 0.8rem;
  resize: none;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
}
.modal-register__form .form-group input:focus, .modal-register__form .form-group textarea:focus, .modal-login__form .form-group input:focus, .modal-login__form .form-group textarea:focus, .modal-message__form .form-group input:focus, .modal-message__form .form-group textarea:focus, .modal-forgot__form .form-group input:focus, .modal-forgot__form .form-group textarea:focus {
  outline: none;
  border-color: #0E70F1;
  padding: 3.1rem 1.2rem 1.1rem;
}
.modal-register__form .form-group input:not(:placeholder-shown), .modal-register__form .form-group textarea:not(:placeholder-shown), .modal-login__form .form-group input:not(:placeholder-shown), .modal-login__form .form-group textarea:not(:placeholder-shown), .modal-message__form .form-group input:not(:placeholder-shown), .modal-message__form .form-group textarea:not(:placeholder-shown), .modal-forgot__form .form-group input:not(:placeholder-shown), .modal-forgot__form .form-group textarea:not(:placeholder-shown) {
  padding: 3.1rem 1.2rem 1.1rem;
}
.modal-register__form .form-group input:focus + label, .modal-register__form .form-group input:not(:placeholder-shown) + label, .modal-register__form .form-group textarea:focus + label, .modal-register__form .form-group textarea:not(:placeholder-shown) + label, .modal-login__form .form-group input:focus + label, .modal-login__form .form-group input:not(:placeholder-shown) + label, .modal-login__form .form-group textarea:focus + label, .modal-login__form .form-group textarea:not(:placeholder-shown) + label, .modal-message__form .form-group input:focus + label, .modal-message__form .form-group input:not(:placeholder-shown) + label, .modal-message__form .form-group textarea:focus + label, .modal-message__form .form-group textarea:not(:placeholder-shown) + label, .modal-forgot__form .form-group input:focus + label, .modal-forgot__form .form-group input:not(:placeholder-shown) + label, .modal-forgot__form .form-group textarea:focus + label, .modal-forgot__form .form-group textarea:not(:placeholder-shown) + label {
  top: 1rem;
  color: #0E70F1;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.4rem;
  line-height: 110%;
  letter-spacing: 0%;
}
.modal-register__form .form-group input:focus + label::after, .modal-register__form .form-group input:not(:placeholder-shown) + label::after, .modal-register__form .form-group textarea:focus + label::after, .modal-register__form .form-group textarea:not(:placeholder-shown) + label::after, .modal-login__form .form-group input:focus + label::after, .modal-login__form .form-group input:not(:placeholder-shown) + label::after, .modal-login__form .form-group textarea:focus + label::after, .modal-login__form .form-group textarea:not(:placeholder-shown) + label::after, .modal-message__form .form-group input:focus + label::after, .modal-message__form .form-group input:not(:placeholder-shown) + label::after, .modal-message__form .form-group textarea:focus + label::after, .modal-message__form .form-group textarea:not(:placeholder-shown) + label::after, .modal-forgot__form .form-group input:focus + label::after, .modal-forgot__form .form-group input:not(:placeholder-shown) + label::after, .modal-forgot__form .form-group textarea:focus + label::after, .modal-forgot__form .form-group textarea:not(:placeholder-shown) + label::after {
  top: 2rem;
  color: #022256;
}
.modal-register__form .form-group label, .modal-login__form .form-group label, .modal-message__form .form-group label, .modal-forgot__form .form-group label {
  position: absolute;
  top: 2.3rem;
  left: 1.2rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
  pointer-events: none;
  transition: all 0.2s ease;
}
.modal-register__form .form-group label span, .modal-login__form .form-group label span, .modal-message__form .form-group label span, .modal-forgot__form .form-group label span {
  color: #0E70F1;
}
.modal-register__form .form-group-info, .modal-login__form .form-group-info, .modal-message__form .form-group-info, .modal-forgot__form .form-group-info {
  font-family: "Rethink Sans";
  font-weight: 400;
  font-size: 1.6rem;
  line-height: 150%;
  letter-spacing: 0%;
  color: #022256;
  margin: 0.8rem 0 0;
}
.modal-register__form .form-group-info svg, .modal-login__form .form-group-info svg, .modal-message__form .form-group-info svg, .modal-forgot__form .form-group-info svg {
  display: inline;
  width: 2rem;
}
.modal-register__form .form-group-info a, .modal-login__form .form-group-info a, .modal-message__form .form-group-info a, .modal-forgot__form .form-group-info a {
  color: #0E70F1;
  text-decoration: underline;
}
.modal-register__form .form-group-info--offset-b, .modal-login__form .form-group-info--offset-b, .modal-message__form .form-group-info--offset-b, .modal-forgot__form .form-group-info--offset-b {
  margin-bottom: 1.2rem;
}
.modal-register__form .form-group-button, .modal-login__form .form-group-button, .modal-message__form .form-group-button, .modal-forgot__form .form-group-button {
  border-radius: 1.2rem;
  padding-top: 1rem;
  padding-right: 1.6rem;
  padding-bottom: 1rem;
  padding-left: 1.6rem;
  transition: all 0.3s ease;
  cursor: pointer;
  width: max-content;
  display: flex;
  justify-content: center;
  align-items: center;
  max-height: 3.8rem;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  color: #0E70F1;
  margin: 0;
}
.modal-register__form .form-group-button svg, .modal-login__form .form-group-button svg, .modal-message__form .form-group-button svg, .modal-forgot__form .form-group-button svg {
  height: 2rem;
  width: 2rem;
  pointer-events: none;
}
.modal-register__form .form-group-button.bar::before, .modal-register__form .form-group-button.bar::after, .modal-login__form .form-group-button.bar::before, .modal-login__form .form-group-button.bar::after, .modal-message__form .form-group-button.bar::before, .modal-message__form .form-group-button.bar::after, .modal-forgot__form .form-group-button.bar::before, .modal-forgot__form .form-group-button.bar::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 3rem;
  height: 2px;
  background: #0E70F1;
  transform-origin: center;
}
.modal-register__form .form-group-button.bar::before, .modal-login__form .form-group-button.bar::before, .modal-message__form .form-group-button.bar::before, .modal-forgot__form .form-group-button.bar::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.modal-register__form .form-group-button.bar::after, .modal-login__form .form-group-button.bar::after, .modal-message__form .form-group-button.bar::after, .modal-forgot__form .form-group-button.bar::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.modal-register__form .form-group-checkbox, .modal-login__form .form-group-checkbox, .modal-message__form .form-group-checkbox, .modal-forgot__form .form-group-checkbox {
  width: 100%;
  position: relative;
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  font-size: 16px;
  user-select: none;
}
.modal-register__form .form-group-checkbox input, .modal-login__form .form-group-checkbox input, .modal-message__form .form-group-checkbox input, .modal-forgot__form .form-group-checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.modal-register__form .form-group-checkbox .checkmark, .modal-login__form .form-group-checkbox .checkmark, .modal-message__form .form-group-checkbox .checkmark, .modal-forgot__form .form-group-checkbox .checkmark {
  position: relative;
  height: 20px;
  width: 20px;
  border: 1px solid #0E70F1;
  border-radius: 4px;
  margin-right: 8px;
  transition: all 0.2s ease;
}
.modal-register__form .form-group-checkbox, .modal-login__form .form-group-checkbox, .modal-message__form .form-group-checkbox, .modal-forgot__form .form-group-checkbox {
  /* Hover */
}
.modal-register__form .form-group-checkbox:hover .checkmark, .modal-login__form .form-group-checkbox:hover .checkmark, .modal-message__form .form-group-checkbox:hover .checkmark, .modal-forgot__form .form-group-checkbox:hover .checkmark {
  border-color: #0E70F1;
}
.modal-register__form .form-group-checkbox, .modal-login__form .form-group-checkbox, .modal-message__form .form-group-checkbox, .modal-forgot__form .form-group-checkbox {
  /* Checked state */
}
.modal-register__form .form-group-checkbox input:checked + .checkmark, .modal-login__form .form-group-checkbox input:checked + .checkmark, .modal-message__form .form-group-checkbox input:checked + .checkmark, .modal-forgot__form .form-group-checkbox input:checked + .checkmark {
  background-color: #0E70F1;
  border-color: #0E70F1;
}
.modal-register__form .form-group-checkbox input:focus-visible + .checkmark, .modal-login__form .form-group-checkbox input:focus-visible + .checkmark, .modal-message__form .form-group-checkbox input:focus-visible + .checkmark, .modal-forgot__form .form-group-checkbox input:focus-visible + .checkmark {
  outline: 2px solid #000;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #FF9C00;
}
.modal-register__form .form-group-checkbox, .modal-login__form .form-group-checkbox, .modal-message__form .form-group-checkbox, .modal-forgot__form .form-group-checkbox {
  /* Tick */
}
.modal-register__form .form-group-checkbox .checkmark::after, .modal-login__form .form-group-checkbox .checkmark::after, .modal-message__form .form-group-checkbox .checkmark::after, .modal-forgot__form .form-group-checkbox .checkmark::after {
  content: "";
  position: absolute;
  display: none;
}
.modal-register__form .form-group-checkbox input:checked + .checkmark::after, .modal-login__form .form-group-checkbox input:checked + .checkmark::after, .modal-message__form .form-group-checkbox input:checked + .checkmark::after, .modal-forgot__form .form-group-checkbox input:checked + .checkmark::after {
  display: block;
}
.modal-register__form .form-group-checkbox .checkmark::after, .modal-login__form .form-group-checkbox .checkmark::after, .modal-message__form .form-group-checkbox .checkmark::after, .modal-forgot__form .form-group-checkbox .checkmark::after {
  left: 7px;
  top: 3px;
  width: 5px;
  height: 10px;
  border: solid #fff;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.modal-register__form .form-group-checkbox .label-text, .modal-login__form .form-group-checkbox .label-text, .modal-message__form .form-group-checkbox .label-text, .modal-forgot__form .form-group-checkbox .label-text {
  line-height: 1;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  color: #022256;
}
.modal-register__form .form-group-checkbox .label-text a, .modal-login__form .form-group-checkbox .label-text a, .modal-message__form .form-group-checkbox .label-text a, .modal-forgot__form .form-group-checkbox .label-text a {
  color: #0E70F1;
  text-decoration: underline;
}
.modal-register__form .form-group-checkbox .label-text i, .modal-login__form .form-group-checkbox .label-text i, .modal-message__form .form-group-checkbox .label-text i, .modal-forgot__form .form-group-checkbox .label-text i {
  color: #0E70F1;
}
.modal-register .form-group-submit, .modal-login .form-group-submit, .modal-message .form-group-submit, .modal-forgot .form-group-submit {
  margin: 3.2rem 0 0 auto;
  border-radius: 1.2rem;
  padding-top: 1.4rem;
  padding-right: 2rem;
  padding-bottom: 1.4rem;
  padding-left: 2rem;
  transition: all 0.3s ease;
  cursor: pointer;
  font-family: "Rethink Sans";
  font-weight: 500;
  font-style: medium;
  font-size: 1.6rem;
  line-height: 110%;
  letter-spacing: 0%;
  background: #FF9C00;
  color: #022256;
  width: max-content;
}
.modal-register .form-group-submit:hover, .modal-login .form-group-submit:hover, .modal-message .form-group-submit:hover, .modal-forgot .form-group-submit:hover {
  background: #022256;
  color: #FFFFFF;
}

html {
  background-color: #FFFFFF;
  background: url("/wp-content/themes/suze-2023/assets/medias/backgrounds/pattern_noise_20.jpg");
  font-size: 10px;
  scroll-behavior: smooth;
  width: 100vw;
  overflow-x: hidden;
  /* Hide scrollbar for Chrome, Safari and Opera */
}
html::-webkit-scrollbar {
  display: none;
}
html {
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
@media (min-width: 300px) and (max-width: 767px) {
  html {
    font-size: 2.6666666667vw;
    font-size: calc(2.6666666667vw - var(0px) / 37.5);
  }
}
@media (min-width: 768px) and (max-width: 1279px) {
  html {
    font-size: 0.78125vw;
    font-size: calc(0.78125vw - var(0px) / 37.5);
  }
}

body {
  background-color: #FFFFFF;
  width: 100vw;
  /* Hide scrollbar for Chrome, Safari and Opera */
}
body::-webkit-scrollbar {
  display: none;
}
body {
  /* Hide scrollbar for IE, Edge and Firefox */
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
body.overflow-hidden {
  overflow-y: hidden;
  touch-action: none;
  -ms-touch-action: none;
}

.skip-link {
  opacity: 0;
  width: 0;
  height: 0;
}
.skip-link:focus {
  opacity: 1;
}

.visually-hidden, .sr-only {
  display: block;
  width: 0;
  height: 0;
  opacity: 0;
}

.sr-only {
  position: absolute;
}

body.tabpressed :focus-visible {
  outline: 2px solid #000;
  outline-offset: 2px;
  box-shadow: 0 0 0 4px #FF9C00;
}

.d-none {
  display: none;
}

/*# sourceMappingURL=style2.css.map */
