*,
*::before,
*::after {
  box-sizing: border-box;
}

* {
  margin: 0;
}

html {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img,
picture,
video,
canvas,
svg {
  display: block;
  max-width: 100%;
  height: auto;
}

input,
button,
textarea,
select {
  font: inherit;
  color: inherit;
}

button {
  cursor: pointer;
  background: none;
  border: 0;
  padding: 0;
}

a {
  color: inherit;
  text-decoration: none;
}

ul,
ol {
  list-style: none;
  padding: 0;
}

p,
h1,
h2,
h3,
h4,
h5,
h6 {
  overflow-wrap: break-word;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 2px solid #2a8073;
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
h1,
.h1 {
  font-size: 6rem;
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-weight: 800;
  color: #002945;
  font-size: clamp(2.5rem, 9vw, 6rem);
}

h2,
.h2 {
  font-size: 3.75rem;
  line-height: 1.084;
  letter-spacing: 0;
  font-weight: 800;
  color: #002945;
  font-size: clamp(2rem, 5vw, 3.75rem);
}

h3,
.h3 {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  color: #002945;
  font-size: clamp(1.75rem, 4vw, 3rem);
}

h4,
.h4 {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  color: #002945;
  font-size: clamp(1.5rem, 3vw, 2.125rem);
}

h5,
.h5 {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
  color: #002945;
}

h6,
.h6 {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
  color: #002945;
}

.subtitle {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
}

.caption {
  font-size: 0.75rem;
  line-height: 1.167;
  letter-spacing: 0;
  font-weight: 400;
  color: #929292;
}

.ui-text {
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-transform: uppercase;
}

p {
  margin-bottom: 16px;
}
p:last-child {
  margin-bottom: 0;
}

strong,
b {
  font-weight: 700;
}

:root {
  --color-navy: #002945;
  --color-blue: #2a8073;
  --color-blue-light: #e6f3f2;
  --color-yellow: #35a091;
  --color-grey: #929292;
  --color-paragraph: #6f6f6f;
  --color-divider: #e9e9e9;
  --color-white: #ffffff;
  --container-max: 1120px;
  --header-height: 118px;
}

body {
  font-family: "Univers", "Inter", "Helvetica Neue", Arial, sans-serif;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 400;
  color: #6f6f6f;
  background: #ffffff;
  overflow-x: hidden;
}

a {
  transition: color 0.25s ease;
}
a:hover {
  color: #2a8073;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 40px;
  }
}
@media (min-width: 1280px) {
  .container {
    padding-inline: 80px;
  }
}

.section {
  padding-block: 20px;
}

.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
}
.skip-link:focus {
  left: 8px;
  top: 8px;
  z-index: 1000;
  width: auto;
  height: auto;
  clip: auto;
  background: #ffffff;
  color: #002945;
  padding: 8px 16px;
  border-radius: 8px;
}

.grid {
  display: grid;
  gap: 24px;
}

.grid--2 {
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .grid--2 {
    grid-template-columns: repeat(2, 1fr);
  }
}

.grid--3 {
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .grid--3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .grid--3 {
    grid-template-columns: repeat(3, 1fr);
  }
}

.grid--4 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 1024px) {
  .grid--4 {
    grid-template-columns: repeat(4, 1fr);
  }
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  transition: background-color 0.25s ease, box-shadow 0.25s ease;
}
.site-header.is-scrolled {
  background: #ffffff;
  box-shadow: 0 2px 24px rgba(0, 0, 0, 0.08);
}
@media (min-width: 1280px) {
  .site-header.is-scrolled .site-header__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding-block: 12px;
  }
  .site-header.is-scrolled .site-header__logo {
    height: 46px;
  }
  .site-header.is-scrolled .site-nav, .site-header.is-scrolled .site-header__btn {
    box-shadow: none;
  }
  .site-header.is-scrolled .site-nav {
    background: #e6f3f2;
  }
}
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding-block: 24px 20px;
  transition: padding 0.25s ease;
}
@media (min-width: 1280px) {
  .site-header__inner {
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;
  }
}
.site-header__logo {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 64px;
}
@media (min-width: 768px) {
  .site-header__logo {
    height: 72px;
  }
}
@media (min-width: 1280px) {
  .site-header__logo {
    height: 84px;
  }
}
.site-header__logo-img {
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: contain;
}
.site-header__logo-text {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
  color: #002945;
}
.site-header__bar {
  display: none;
}
@media (min-width: 1280px) {
  .site-header__bar {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
  }
}
.site-header__cta {
  display: none;
}
@media (min-width: 1280px) {
  .site-header__cta {
    display: flex;
  }
}
.site-header__btn {
  min-height: 54px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}

.site-nav {
  display: none;
}
@media (min-width: 1280px) {
  .site-nav {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    height: 54px;
    padding: 0 20px;
    background: #ffffff;
    border-radius: 999px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  }
}
.site-nav__list {
  display: flex;
  align-items: center;
  gap: 15px;
}
.site-nav a {
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-weight: 700;
  text-transform: none;
  color: #2d3e73;
  white-space: nowrap;
}
.site-nav a:hover {
  color: #2a8073;
}
.site-nav .current-menu-item > a {
  color: #2a8073;
}

.nav-toggle {
  display: inline-flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 48px;
  height: 48px;
  background: #339f8f;
  border-radius: 999px;
  box-shadow: 0 4px 24px rgba(0, 41, 69, 0.08);
  position: relative;
  right: 8px;
}
@media (min-width: 1280px) {
  .nav-toggle {
    display: none;
  }
}
.nav-toggle__bar {
  display: block;
  width: 22px;
  height: 2px;
  margin-inline: auto;
  background: #ffffff;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-open .nav-toggle {
  z-index: 101;
}

.nav-open {
  overflow: hidden;
}

.mobile-nav {
  display: none;
}

.nav-open .mobile-nav {
  display: flex;
  flex-direction: column;
  position: fixed;
  top: 16px;
  right: 14px;
  left: auto;
  z-index: 90;
  width: min(310px, 100vw - 32px);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 78px 28px 28px;
  background: #e6f3f2;
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 41, 69, 0.22);
}

@media (min-width: 1280px) {
  .mobile-nav {
    display: none !important;
  }
}
.mobile-nav__list {
  list-style: none;
  margin: 0 0 22px;
  padding: 0;
  text-align: right;
}
.mobile-nav__list a {
  display: block;
  padding: 12px 2px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #002945;
}
.mobile-nav__list a:hover {
  color: #2a8073;
}
.mobile-nav__list .current-menu-item > a {
  color: #2a8073;
}

.mobile-nav__cta {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.mobile-nav__cta .btn {
  width: 100%;
  justify-content: center;
  min-height: 56px;
  border-radius: 999px;
}

.site-footer {
  padding-block: 40px;
}
.site-footer__card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 64px;
  min-height: 230px;
  padding: 30px;
  background: #002945;
  color: #ffffff;
  border-radius: 30px;
}
.site-footer__top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.site-footer__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.site-footer__btn {
  min-height: 36px;
  padding: 8px 20px;
  background: #339f8f;
  color: #ffffff;
}
.site-footer__btn:hover {
  background: #ffffff;
  color: #002945;
}
.site-footer__links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 24px;
}
.site-footer__list {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.site-footer__list a {
  font-size: 0.875rem;
  line-height: 1.714;
  letter-spacing: 0;
  font-weight: 700;
  color: #e9e9e9;
}
.site-footer__list a:hover {
  color: #ffffff;
}
.site-footer__socials {
  display: flex;
  align-items: center;
  gap: 10px;
}
.site-footer__socials li {
  display: inline-flex;
}
.site-footer__socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 999px;
  background: #339f8f;
  color: #ffffff;
}
.site-footer__socials a:hover {
  background: #ffffff;
  color: #002945;
}
.site-footer__socials svg {
  display: block;
  width: 20px;
  height: 20px;
}
.site-footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  gap: 20px 40px;
}
.site-footer__brand {
  display: inline-flex;
  align-items: center;
}
.site-footer__logo {
  width: 145px;
  height: 48px;
}
.site-footer__logo-text {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
  color: #ffffff;
}
.site-footer__copy {
  display: flex;
  align-items: center;
  gap: 16px;
  flex: 1 1 auto;
  font-size: 0.75rem;
  line-height: 1.167;
  letter-spacing: 0;
  font-weight: 400;
  color: #ffffff;
}
.site-footer__legal {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  font-size: 0.75rem;
  line-height: 1.167;
  letter-spacing: 0;
  font-weight: 400;
  color: #ffffff;
}
.site-footer__legal a {
  color: #ffffff;
}
.site-footer__legal a:hover {
  color: #e6f3f2;
}
.site-footer__legal-list {
  display: inline-flex;
  gap: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-weight: 700;
  padding: 14px 22px;
  border-radius: 999px;
  text-align: center;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}
.btn--primary {
  background: #2a8073;
  color: #ffffff;
}
.btn--primary:hover {
  background: #002945;
  color: #ffffff;
}
.btn--secondary {
  background: transparent;
  color: #002945;
  border: 1px solid currentColor;
}
.btn--secondary:hover {
  background: #002945;
  color: #ffffff;
}
.btn--ghost {
  background: #ffffff;
  color: #002945;
}
.btn--ghost:hover {
  background: #e6f3f2;
}
.btn--yellow {
  background: #35a091;
  color: #002945;
}
.btn--yellow:hover {
  background: #002945;
  color: #ffffff;
}
.btn--light {
  background: #e6f3f2;
  color: #002945;
}
.btn--light:hover {
  background: #ffffff;
}
.btn--dark {
  background: #002945;
  color: #ffffff;
}
.btn--dark:hover {
  background: #2a8073;
  color: #ffffff;
}

.i-arrow {
  flex-shrink: 0;
  transition: transform 0.25s ease;
}

.btn:hover .i-arrow,
.btn:focus-visible .i-arrow {
  transform: rotate(45deg);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-weight: 700;
  color: #002945;
}
.link-arrow:hover {
  color: #2a8073;
  gap: 12px;
}

.bg--white {
  background: #ffffff;
}

.bg--light {
  background: #e6f3f2;
}

.bg--navy {
  background: #002945;
  color: #ffffff;
}

.bg--blue {
  background: #2a8073;
  color: #ffffff;
}

.bg--yellow {
  background: #35a091;
  color: #002945;
}

.bg--dark {
  background: #1c1c1c;
  color: #ffffff;
}

.bg--navy :is(h1, h2, h3, h4, h5, h6),
.bg--blue :is(h1, h2, h3, h4, h5, h6),
.bg--dark :is(h1, h2, h3, h4, h5, h6) {
  color: #ffffff;
}

.bg--yellow :is(h1, h2, h3, h4, h5, h6) {
  color: #002945;
}

body {
  position: relative;
}

.page-decor {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}
.page-decor__top {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
}
.page-decor__top::before {
  content: "";
  position: absolute;
  aspect-ratio: 2829/1730;
  transform: translateX(-50%);
  background: url("../images/maquette/bg-logo.svg") no-repeat center/contain;
  left: 82%;
  top: -230px;
  width: 560px;
}
@media (min-width: 768px) {
  .page-decor__top::before {
    left: 74%;
    top: -520px;
    width: 1200px;
  }
}
@media (min-width: 1024px) {
  .page-decor__top::before {
    left: 70%;
    top: -1100px;
    width: 2500px;
  }
}
.home .page-decor__top::before {
  top: -190px;
}
@media (min-width: 768px) {
  .home .page-decor__top::before {
    top: -360px;
  }
}
@media (min-width: 1024px) {
  .home .page-decor__top::before {
    top: -400px;
  }
}

.site-main,
.site-footer {
  position: relative;
  z-index: 1;
}

.prose {
  color: #6f6f6f;
}
.prose a.btn::after {
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  margin-left: 8px;
  background-color: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath d='M1.6 6.4 6.4 1.6M2.4 1.6h4v4' fill='none' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 8 8'%3E%3Cpath d='M1.6 6.4 6.4 1.6M2.4 1.6h4v4' fill='none' stroke='black' stroke-width='1.2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E") no-repeat center/contain;
  transition: transform 0.25s ease;
}
.prose a.btn:hover::after,
.prose a.btn:focus-visible::after {
  transform: rotate(45deg);
}
.prose h2,
.prose h3,
.prose h4 {
  color: #002945;
  margin-bottom: 16px;
}
.prose h2 {
  font-size: clamp(2rem, 3.75vw, 3rem);
  line-height: 1;
}
.prose h3,
.prose h4 {
  margin-top: 24px;
}
.prose h3:first-child,
.prose h4:first-child {
  margin-top: 0;
}
.prose p {
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 400;
  margin-bottom: 16px;
}
.prose p:last-child {
  margin-bottom: 0;
}
.prose strong,
.prose b {
  color: #002945;
  font-weight: 700;
}
.prose a:not(.btn) {
  color: #2a8073;
  text-decoration: underline;
}
.prose a.btn {
  text-decoration: none;
}
.prose ul:not(.swoosh-list),
.prose ol {
  margin: 0 0 16px 24px;
}
.prose ul:not(.swoosh-list) {
  list-style: disc;
}
.prose ol {
  list-style: decimal;
}
.prose li {
  margin-bottom: 4px;
}

.lead {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
  color: #002945;
}

.prose .lead {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
  color: #002945;
  margin-bottom: 12px;
}
.prose .stmt {
  color: #002945;
  font-weight: 800;
  font-size: clamp(2rem, 3.75vw, 3rem);
  line-height: 1.18;
}
.prose .stmt--h4 {
  color: #002945;
  font-weight: 800;
  font-size: clamp(1.6rem, 3vw, 2.125rem);
  line-height: 1;
}

mark,
.hl {
  background: #35a091;
  color: #ffffff;
  padding: 0 0.12em;
  -webkit-box-decoration-break: clone;
  box-decoration-break: clone;
}

mark.is-navy {
  background: #002945;
  color: #ffffff;
}

mark.is-yellow {
  background: #35a091;
  color: #ffffff;
}

.stmt {
  color: #002945;
  font-weight: 800;
  line-height: 1.18;
  font-size: clamp(2rem, 3.75vw, 3rem);
  margin: 12px 0;
}
.stmt mark {
  padding: 0.12em 0.16em;
}

.stmt--h4 {
  font-size: clamp(1.6rem, 3vw, 2.125rem);
  line-height: 1;
}

.swoosh--jaune {
  transform: rotate(-100deg);
}

.swoosh-list {
  list-style: none;
  margin: 20px 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.swoosh-list li {
  position: relative;
  padding-left: 29px;
  color: #002945;
  font-weight: 700;
  line-height: 1.5;
  margin: 0;
}
.swoosh-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 19px;
  height: 19px;
  background-color: #002945;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M6.75817 18.3821C4.90572 22.7332 4.50459 27.5653 5.61424 32.1623C6.7239 36.7593 9.28527 40.8763 12.9187 43.9031C16.5521 46.93 21.0641 48.7055 25.7859 48.9665C30.5077 49.2275 35.1879 47.96 39.1327 45.352C43.0776 42.744 46.0771 38.9344 47.6866 34.4877C49.2961 30.041 49.4299 25.1941 48.0683 20.6654C46.7066 16.1366 43.9219 12.1672 40.127 9.34551C36.3321 6.52379 31.729 5 27 5' stroke='black' stroke-width='10'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M6.75817 18.3821C4.90572 22.7332 4.50459 27.5653 5.61424 32.1623C6.7239 36.7593 9.28527 40.8763 12.9187 43.9031C16.5521 46.93 21.0641 48.7055 25.7859 48.9665C30.5077 49.2275 35.1879 47.96 39.1327 45.352C43.0776 42.744 46.0771 38.9344 47.6866 34.4877C49.2961 30.041 49.4299 25.1941 48.0683 20.6654C46.7066 16.1366 43.9219 12.1672 40.127 9.34551C36.3321 6.52379 31.729 5 27 5' stroke='black' stroke-width='10'/%3E%3C/svg%3E") no-repeat center/contain;
  transform: rotate(270deg);
}

.swoosh-list--grey li {
  color: #6f6f6f;
  font-weight: 400;
}
.swoosh-list--grey li strong {
  color: #6f6f6f;
  font-weight: 700;
}

.swoosh-list--mixed li {
  font-weight: 400;
}
.swoosh-list--mixed li strong {
  font-weight: 700;
  color: #002945;
}

.bg--navy .swoosh-list li {
  color: #ffffff;
}
.bg--navy .swoosh-list li::before {
  background-color: #35a091;
  -webkit-mask-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M6.75817 18.3821C4.90572 22.7332 4.50459 27.5653 5.61424 32.1623C6.7239 36.7593 9.28527 40.8763 12.9187 43.9031C16.5521 46.93 21.0641 48.7055 25.7859 48.9665C30.5077 49.2275 35.1879 47.96 39.1327 45.352C43.0776 42.744 46.0771 38.9344 47.6866 34.4877C49.2961 30.041 49.4299 25.1941 48.0683 20.6654C46.7066 16.1366 43.9219 12.1672 40.127 9.34551C36.3321 6.52379 31.729 5 27 5' stroke='black' stroke-width='10'/%3E%3C/svg%3E);
  mask-image: url(data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M6.75817 18.3821C4.90572 22.7332 4.50459 27.5653 5.61424 32.1623C6.7239 36.7593 9.28527 40.8763 12.9187 43.9031C16.5521 46.93 21.0641 48.7055 25.7859 48.9665C30.5077 49.2275 35.1879 47.96 39.1327 45.352C43.0776 42.744 46.0771 38.9344 47.6866 34.4877C49.2961 30.041 49.4299 25.1941 48.0683 20.6654C46.7066 16.1366 43.9219 12.1672 40.127 9.34551C36.3321 6.52379 31.729 5 27 5' stroke='black' stroke-width='10'/%3E%3C/svg%3E);
  transform: rotate(270deg);
}

.js-anim .reveal {
  opacity: 0;
  transition: opacity 0.75s cubic-bezier(0.22, 0.61, 0.36, 1), transform 0.75s cubic-bezier(0.22, 0.61, 0.36, 1), filter 0.75s cubic-bezier(0.22, 0.61, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
}

.js-anim .reveal.is-visible {
  opacity: 1;
}

.js-anim .reveal:not(.is-visible) {
  transform: translateY(30px);
}

.js-anim [data-reveal=zoom] .reveal {
  transition-timing-function: cubic-bezier(0.34, 1.3, 0.64, 1);
}

.js-anim [data-reveal=zoom] .reveal:not(.is-visible) {
  transform: translateY(18px) scale(0.92);
}

.js-anim [data-reveal=blur] .reveal {
  filter: blur(0);
}

.js-anim [data-reveal=blur] .reveal:not(.is-visible) {
  transform: translateY(22px);
  filter: blur(12px);
}

.js-anim [data-reveal=slide] {
  overflow-x: clip;
}

.js-anim [data-reveal=slide] .reveal:not(.is-visible) {
  transform: translateX(42px);
}

.js-anim [data-reveal=slide] .reveal:nth-child(even):not(.is-visible) {
  transform: translateX(-42px);
}

.btn {
  transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.card,
.icard,
.fcard,
.actu-card,
.webinar-row {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.card:hover,
.icard:hover,
.fcard:hover,
.actu-card:hover,
.webinar-row:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0, 41, 69, 0.1);
}

.actu-card__media {
  overflow: hidden;
}

.actu-card__img {
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.actu-card:hover .actu-card__img {
  transform: scale(1.04);
}

.card__media,
.gamme-row__visual {
  overflow: hidden;
}

.gamme-row__visual {
  border-radius: 30px;
}

.card__media img,
.gamme-row__visual img {
  transition: transform 0.6s cubic-bezier(0.22, 0.61, 0.36, 1);
}

.card:hover .card__media img,
.gamme-row:hover .gamme-row__visual img {
  transform: scale(1.04);
}

@media (prefers-reduced-motion: reduce) {
  .js-anim .reveal {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
  .btn,
  .card,
  .icard,
  .fcard,
  .card__media img,
  .gamme-row__visual img {
    transition: none;
  }
}
.hero-section {
  padding-block: 20px;
}

.hero-slider {
  position: relative;
}
.hero-slider .swiper-pagination {
  position: absolute;
  bottom: 28px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  gap: 10px;
  width: auto;
}
.hero-slider .swiper-pagination-bullet {
  width: 50px;
  height: 12px;
  margin: 0 !important;
  border-radius: 100px;
  background: #002945;
  opacity: 1;
  transition: background 0.25s ease;
}
.hero-slider .swiper-pagination-bullet-active {
  background: #35a091;
}

.hero-slide {
  position: relative;
  display: flex;
  flex-direction: column;
  border-radius: 30px;
  overflow: hidden;
  background: #eef3f9;
}
@media (min-width: 768px) {
  .hero-slide {
    flex-direction: row;
    align-items: center;
    min-height: 560px;
  }
}
@media (min-width: 1024px) {
  .hero-slide {
    min-height: 660px;
  }
}
.hero-slide::before {
  display: none;
}
@media (min-width: 768px) {
  .hero-slide::before {
    content: "";
    display: block;
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background: linear-gradient(to right, #eef3f9 0%, rgba(238, 243, 249, 0.85) 30%, rgba(238, 243, 249, 0) 60%);
  }
}
.hero-slide__bg {
  order: 2;
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 768px) {
  .hero-slide__bg {
    position: absolute;
    inset: 0;
    height: 100%;
    aspect-ratio: auto;
    object-position: center right;
  }
}
.hero-slide__content {
  order: 1;
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: 100%;
  max-width: 760px;
  padding: 24px;
}
@media (min-width: 768px) {
  .hero-slide__content {
    padding: 48px 64px;
  }
}
.hero-slide__welcome {
  order: 1;
  color: #35a091;
  font-weight: 800;
  line-height: 0.85;
  letter-spacing: -0.05em;
  font-size: clamp(3rem, 7.5vw, 6rem);
}
.hero-slide__sub {
  order: 2;
  color: #002945;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(1.375rem, 2.6vw, 2.125rem);
}
.hero-slide__title {
  order: 3;
  margin-top: 16px;
  color: #002945;
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: -0.04em;
  font-size: clamp(2.75rem, 6.6vw, 6rem);
  overflow-wrap: normal;
  hyphens: none;
}
.hero-slide__btn {
  order: 4;
  align-self: flex-start;
  margin-top: 12px;
}
.hero-slide__brands {
  order: 5;
  margin-top: 32px;
  max-width: 100%;
}
.hero-slide__brands img {
  display: block;
  width: min(100%, 540px);
  height: auto;
}
.hero-slide__dots {
  order: 6;
  display: flex;
  gap: 10px;
  margin-top: 20px;
}
.hero-slide__dots span {
  width: 50px;
  height: 12px;
  border-radius: 100px;
  background: rgba(255, 255, 255, 0.85);
}
.hero-slide__dots span.is-active {
  background: #002945;
}

.hero-slide--groupement {
  display: flex;
  height: auto;
}
.hero-slide--groupement .groupement {
  width: 100%;
  min-height: 440px;
}
@media (min-width: 768px) {
  .hero-slide--groupement .groupement {
    min-height: 560px;
  }
}
@media (min-width: 1024px) {
  .hero-slide--groupement .groupement {
    min-height: 660px;
  }
}
@media (min-width: 768px) {
  .hero-slide--groupement .groupement__body {
    padding-bottom: 80px;
  }
}

.section-title__inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.section-title--center .section-title__inner {
  align-items: center;
  text-align: center;
}
.section-title--left .section-title__eyebrow,
.section-title--left .section-title__title,
.section-title--left .section-title__text {
  max-width: none;
}
@media (min-width: 1024px) {
  .section-title--left .section-title__eyebrow,
  .section-title--left .section-title__title,
  .section-title--left .section-title__text {
    margin-left: 140px;
  }
}
.section-title__logo-img {
  display: block;
  height: 91px;
  width: auto;
}
.section-title__eyebrow {
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 400;
  color: #6f6f6f;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
  max-width: 860px;
  margin: 0 0 16px;
}
.section-title__title {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  color: #2d3e73;
  margin-bottom: 0;
}
.section-title__text {
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 400;
  color: #6f6f6f;
  max-width: 860px;
}
.section-title--center .section-title__eyebrow, .section-title--center .section-title__text {
  margin-inline: auto;
}

.promo__card {
  display: grid;
  gap: 30px;
  align-items: center;
  border-radius: 30px;
  padding: 40px;
}
@media (min-width: 768px) {
  .promo__card {
    grid-template-columns: 1fr 1fr;
    padding: 40px;
  }
}
.promo__card.bg--dark {
  background-color: #2b2b2b;
  color: #ffffff;
}
@media (min-width: 768px) {
  .promo__card.bg--dark {
    padding: 30px 50px;
  }
}
@media (min-width: 768px) {
  .promo__card--img-left .promo__media {
    order: -1;
  }
}
.promo__card--img-top {
  grid-template-columns: 1fr;
  justify-items: start;
}
@media (min-width: 768px) {
  .promo__card--img-top {
    grid-template-columns: 1fr;
  }
}
.promo__card--img-top .promo__media {
  order: -1;
  text-align: left;
  margin: 0;
}
.promo__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 30px;
}
.promo__title {
  font-weight: 800;
  line-height: 1;
  font-size: 2.125rem;
  margin: 0;
}
.promo__text {
  font-size: 1rem;
  line-height: 1.375;
  margin: 0;
}
.promo__text p {
  margin: 0;
}
.promo__btn {
  align-self: flex-start;
}
.promo__media {
  position: relative;
  text-align: center;
}
.promo__card--img-right .promo__img {
  width: 231px;
  max-width: 100%;
  height: auto;
  margin-inline: auto;
  box-shadow: 0 4px 44px rgba(0, 0, 0, 0.25);
  transform: rotate(4deg);
}
.promo__media--stack {
  width: 210px;
  height: 147px;
}
.promo__media--stack .promo__img-back,
.promo__media--stack .promo__img {
  position: absolute;
  width: 180px;
  height: 127px;
  object-fit: cover;
  box-shadow: none;
  transform: none;
}
.promo__media--stack .promo__img-back {
  top: 0;
  left: 0;
  z-index: 1;
}
.promo__media--stack .promo__img {
  top: 19.6px;
  left: 30px;
  z-index: 2;
}

.services__card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  padding: 40px 24px;
  text-align: center;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .services__card {
    gap: 50px;
    padding: 40px 50px 30px 40px;
  }
}
.services__title {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  color: inherit;
}
.services__intro {
  margin-top: 40px;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 400;
}
.services__grid {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  width: 100%;
}
.services__tagline {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
  color: #35a091;
}

.service {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  width: 190px;
}
.service__icon {
  width: 80px;
  height: 80px;
}
.service__icon-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.service__title {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
  color: inherit;
}
.service__text {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  opacity: 0.85;
}

.cards__title {
  text-align: center;
  margin-bottom: 16px;
}
.cards__intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 40px;
  color: #6f6f6f;
}

.card {
  display: flex;
  flex-direction: column;
  background: #e6f3f2;
  border-radius: 16px;
  overflow: hidden;
  color: inherit;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.card__media {
  aspect-ratio: 3/2;
  overflow: hidden;
}
.card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 24px;
}
.card__title {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
}
.card__text {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  color: #6f6f6f;
}
.card__link {
  margin-top: 8px;
}

a.card:hover {
  transform: translateY(-4px);
}

.articles {
  text-align: center;
}
.articles__title {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  margin-bottom: 30px;
}
.articles__intro {
  margin: 0 auto 30px;
  color: #6f6f6f;
}
.articles__btn {
  margin-bottom: 30px;
}
.articles__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  text-align: left;
}
@media (min-width: 480px) {
  .articles__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1024px) {
  .articles__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.article-card {
  position: relative;
  display: block;
  min-height: 420px;
  border-radius: 30px;
  overflow: hidden;
  color: #ffffff;
}
@media (min-width: 1024px) {
  .article-card {
    min-height: 500px;
  }
}
.article-card__bg, .article-card__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.article-card__overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 41, 69, 0.5);
  transition: background 0.25s ease;
}
.article-card__content {
  position: absolute;
  inset: auto 20px 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.article-card__title {
  color: #e6f3f2;
  font-weight: 700;
  line-height: 1;
  font-size: 2.125rem;
}
.article-card__sub {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  color: #35a091;
}
.article-card__btn {
  align-self: flex-start;
  display: inline-flex;
  align-items: center;
  gap: 2px;
  padding: 14px 22px;
  border-radius: 999px;
  background: #e6f3f2;
  color: #002945;
  font-size: 0.875rem;
  line-height: 1.4;
  letter-spacing: -0.025em;
  font-weight: 700;
  transition: gap 0.25s ease;
}
.article-card:hover .article-card__overlay {
  background: rgba(0, 41, 69, 0.65);
}
.article-card:hover .article-card__btn {
  gap: 8px;
}

.locator__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  text-align: center;
}
.locator__icon {
  color: #35a091;
}
.locator__icon .swoosh {
  width: 54px;
  height: 54px;
}
.locator__title {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
}
.locator__subtitle {
  margin: -14px 0 0;
  max-width: 720px;
  color: #002945;
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(1.375rem, 2.6vw, 1.75rem);
}
.locator__text {
  max-width: 560px;
  color: #6f6f6f;
}
.locator__btn {
  color: #e6f3f2;
}
.locator__btn:hover {
  color: #ffffff;
}
.locator__media {
  width: 100%;
}
.locator__figure {
  position: relative;
  margin: 0;
  border-radius: 30px;
  overflow: hidden;
}
.locator__img {
  width: 100%;
  height: 620px;
  object-fit: cover;
}
.locator__scrim {
  position: absolute;
  inset: 0;
  background: rgba(0, 41, 69, 0.6);
}
.locator__embed {
  width: 100%;
  min-height: 420px;
}
.locator__embed iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: 30px;
}

.video__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  align-items: stretch;
}
.video__media, .video__content {
  flex: 1 0 0;
  min-width: 280px;
}
@media (min-width: 768px) {
  .video__media, .video__content {
    min-width: 400px;
  }
}
.video__media {
  position: relative;
  height: 360px;
  padding: 10px;
  background: #e6f3f2;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .video__media {
    height: 400px;
  }
}
.video__poster {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 22px;
  overflow: hidden;
}
.video__poster-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.6;
}
.video__play {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  background: #ffffff;
}
.video__play::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 54%;
  transform: translate(-50%, -50%);
  border-style: solid;
  border-width: 12px 0 12px 20px;
  border-color: transparent transparent transparent #002945;
}
.video__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 50px;
}
@media (min-width: 768px) {
  .video__content {
    padding: 0 50px;
  }
}
.video__title {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  color: #002945;
}
.video__text {
  color: #6f6f6f;
}
.video__btn {
  align-self: flex-start;
}

.testimonials__title {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  text-align: center;
  margin-bottom: 16px;
}
.testimonials__intro {
  max-width: 600px;
  margin: 0 auto 30px;
  color: #6f6f6f;
  text-align: center;
}
@media (min-width: 768px) {
  .testimonials__grid--single {
    padding-inline: 100px;
  }
}
.testimonials__grid--single .vcard {
  align-items: flex-start;
  max-width: 100%;
}

.vcard {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.vcard__media {
  position: relative;
  display: block;
  width: 336px;
  max-width: 100%;
  aspect-ratio: 336/200;
  overflow: hidden;
  border-radius: 30px;
}
.vcard__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.vcard__media:hover .vcard__img {
  transform: scale(1.03);
}
.vcard__title {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
  color: #002945;
}
.vcard__loc {
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 400;
  color: #6f6f6f;
}
.vcard__btn {
  align-self: flex-start;
}

.divider {
  display: flex;
  justify-content: center;
  padding-block: 20px;
}
.divider__mark {
  display: inline-flex;
}
.divider__logo {
  display: block;
  width: 68px;
  height: auto;
}
.divider .swoosh {
  width: 54px;
  height: 54px;
}

.brands {
  text-align: center;
}
.brands__title {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  color: #339f8f;
  text-align: center;
  margin-bottom: 16px;
}
.brands__subtitle {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
  max-width: 800px;
  margin: 0 auto 40px;
  color: #2d3e73;
  text-align: center;
}
.brands__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 56px 48px;
  max-width: 1080px;
  margin-inline: auto;
  padding: 0;
  list-style: none;
}
.brands__item {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 768px) {
  .brands__item {
    width: calc((100% - 48px) / 2);
  }
}
@media (min-width: 1024px) {
  .brands__item {
    width: calc((100% - 48px * 3) / 4);
  }
}
.brands__logo {
  max-height: 120px;
  max-width: 100%;
  width: auto;
}

.rich-text--narrow .rich-text__content {
  max-width: 760px;
  margin-inline: auto;
}
.rich-text--center .rich-text__content {
  text-align: center;
  max-width: 820px;
  margin-inline: auto;
}
.rich-text--left .rich-text__content {
  max-width: none;
  margin-right: 0;
  text-align: left;
}
@media (min-width: 1024px) {
  .rich-text--left .rich-text__content {
    margin-left: 140px;
  }
}
.rich-text__content h2,
.rich-text__content h3,
.rich-text__content h4,
.rich-text__content h5 {
  color: #2d3e73;
  font-weight: 800;
}
.rich-text__content h2:first-child,
.rich-text__content h3:first-child,
.rich-text__content h4:first-child,
.rich-text__content h5:first-child {
  margin-top: 0;
}
.rich-text__content h3 {
  font-size: clamp(1.9rem, 3.2vw, 2.5rem);
  line-height: 1.05;
  margin: 32px 0 12px;
}
.rich-text__content h4 {
  font-size: clamp(1.45rem, 2.4vw, 1.875rem);
  line-height: 1.1;
  margin: 24px 0 12px;
}
.rich-text__content h5 {
  font-size: clamp(1.2rem, 1.9vw, 1.375rem);
  line-height: 1.2;
  margin: 32px 0 8px;
}
.rich-text__content ol > li > strong {
  color: #2d3e73;
}
.rich-text__content p {
  margin-bottom: 16px;
  color: #6f6f6f;
}
.rich-text__content ul:not(.swoosh-list),
.rich-text__content ol {
  margin: 0 0 16px 20px;
}
.rich-text__content ul:not(.swoosh-list) {
  list-style: disc;
}
.rich-text__content ol {
  list-style: decimal;
}
.rich-text__content a {
  color: #2a8073;
  text-decoration: underline;
}

.page-header {
  text-align: center;
}
.page-header--left {
  text-align: left;
}
.page-header__eyebrow {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
  color: #6f6f6f;
  margin-bottom: 0;
}
.page-header__title {
  color: #2d3e73;
  font-weight: 800;
  line-height: 1.0833;
  font-size: clamp(2.25rem, 4.7vw, 3.75rem);
  margin-bottom: 0;
}
.page-header--h3 .page-header__title {
  line-height: 1;
  font-size: clamp(2rem, 3.75vw, 3rem);
}
.page-header__subtitle {
  margin-top: 16px;
  font-size: 1.5rem;
  line-height: 1.1;
  font-weight: 700;
  color: #6f6f6f;
  max-width: 760px;
}
.page-header__subtitle p {
  margin-bottom: 0;
}
.page-header--center .page-header__subtitle {
  margin-inline: auto;
}
.page-header__subtitle:has(.ph-lead) {
  max-width: 880px;
  margin-top: 48px;
}
.page-header__subtitle .ph-lead {
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 400;
  color: #6f6f6f;
  letter-spacing: -0.01em;
  margin: 0;
}
.page-header__subtitle .ph-statement {
  font-size: 1.375rem;
  line-height: 1.4;
  font-weight: 700;
  color: #002945;
  margin: 1.6em 0 0;
}

.page-header--soft .page-header__swoosh {
  display: block;
  width: 54px;
  margin: 32px auto 0;
}
.page-header--soft .page-header__swoosh svg {
  display: block;
  width: 100%;
  height: auto;
}
.page-header--soft .page-header__subtitle {
  margin-top: 24px;
  font-size: 1.125rem;
  line-height: 1.5;
  font-weight: 400;
  color: #6f6f6f;
}
.page-header--soft .page-header__subtitle p {
  margin: 0;
}

.page-id-25 .page-header__subtitle .ph-statement {
  margin-top: 0.6em;
}

.page-id-237 .page-header__title,
.page-id-238 .page-header__title {
  color: #5b3c90;
}

.page-id-27 .page-header__title {
  color: #002945;
}

.page-id-238 .page-header__subtitle .ph-lead {
  font-size: 1rem;
}
.page-id-238 .page-header__subtitle .ph-statement {
  font-size: 1.5rem;
  color: #6f6f6f;
}
.page-id-238 .rich-text__content h3 {
  color: #5b3c90;
  margin-bottom: 32px;
}
.page-id-238 .rich-text__content p {
  margin-bottom: 32px;
}
.page-id-238 .rich-text__content .swoosh-list {
  margin: 32px 0;
  gap: 12px;
}

.text-media__inner {
  display: grid;
  gap: 40px;
  align-items: center;
}
@media (min-width: 768px) {
  .text-media__inner {
    grid-template-columns: 350px 1fr;
    gap: 40px;
  }
}
@media (min-width: 768px) {
  .text-media--img-right .text-media__media {
    order: 2;
  }
}
@media (min-width: 768px) {
  .text-media--img-right .text-media__inner {
    grid-template-columns: 1fr 350px;
  }
}

.media-shape {
  margin: 0;
}
.media-shape__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.media-shape--plain {
  width: 100%;
  max-width: 500px;
  margin-inline: auto;
}
.media-shape--plain .media-shape__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}
.media-shape--circle {
  position: relative;
  width: 100%;
  max-width: 350px;
  aspect-ratio: 350/341;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.media-shape--circle::before {
  content: "";
  position: absolute;
  inset: 0;
  transform: rotate(45deg);
  z-index: 1;
  pointer-events: none;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 341' fill='none'%3E%3Cpath d='M274.4 297.338C247.163 318.665 213.779 330.648 179.197 331.511C144.614 332.374 110.674 322.07 82.4074 302.127C54.1409 282.185 33.0527 253.665 22.2689 220.795C11.485 187.926 11.5796 152.456 22.5385 119.645C33.4975 86.8332 54.7375 58.4262 83.1099 38.6347C111.482 18.8431 145.477 8.72067 180.054 9.76778C214.632 10.8149 247.952 22.9758 275.074 44.4479C302.197 65.92 321.679 95.5602 330.633 128.975' stroke='%23003264' stroke-width='16.0972'/%3E%3C/svg%3E") no-repeat center/contain;
}
.media-shape--ring-yellow::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 350 341' fill='none'%3E%3Cpath d='M274.4 297.338C247.163 318.665 213.779 330.648 179.197 331.511C144.614 332.374 110.674 322.07 82.4074 302.127C54.1409 282.185 33.0527 253.665 22.2689 220.795C11.485 187.926 11.5796 152.456 22.5385 119.645C33.4975 86.8332 54.7375 58.4262 83.1099 38.6347C111.482 18.8431 145.477 8.72067 180.054 9.76778C214.632 10.8149 247.952 22.9758 275.074 44.4479C302.197 65.92 321.679 95.5602 330.633 128.975' stroke='%23FFCC00' stroke-width='16.0972'/%3E%3C/svg%3E");
}
.media-shape--circle .media-shape__img {
  width: 92%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 50%;
}
.media-shape--square .media-shape__img {
  border-radius: 16px;
}

.text-media .text-media__content h2 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
  color: #003264;
  margin-bottom: 0.4em;
}
.text-media .text-media__content h3 {
  font-size: 1.5rem;
  line-height: 1.2;
  font-weight: 800;
  color: #2d3e73;
  margin-bottom: 0.5em;
}
.text-media .text-media__content p {
  font-size: 1rem;
  line-height: 1.375;
  color: #6f6f6f;
  margin-bottom: 0.6em;
}
.text-media .text-media__content ul {
  list-style: disc;
  padding-left: 1.1em;
  margin-bottom: 0.6em;
}
.text-media .text-media__content ul li {
  margin-bottom: 0.3em;
  color: #6f6f6f;
  font-size: 1rem;
  line-height: 1.375;
}
.text-media .text-media__content .lemag-dossier {
  font-size: 1.625rem;
  font-weight: 800;
  color: #002945;
}
.text-media .text-media__content .btn {
  display: inline-flex;
  margin-top: 16px;
}
.text-media .text-media__content .lemag-h {
  font-size: 3rem;
  line-height: 1;
  font-weight: 800;
  color: #002945;
  margin: 0 0 0.3em;
}
.text-media .text-media__content .lemag-feature {
  font-size: 1.625rem;
  line-height: 1.2;
  font-weight: 700;
  color: #002945;
  margin: 0.1em 0 0.6em;
}

.text-media:has(.media-shape--plain) {
  overflow-x: clip;
}
.text-media:has(.media-shape--plain) .text-media__inner {
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .text-media:has(.media-shape--plain) .text-media__inner {
    grid-template-columns: 1fr 520px;
    align-items: center;
    gap: 48px;
  }
  .text-media:has(.media-shape--plain) .text-media__media {
    display: flex;
    justify-content: flex-start;
    min-width: 0;
  }
  .text-media:has(.media-shape--plain) .media-shape--plain {
    flex: none;
    width: 520px;
    max-width: none;
    margin: 0;
  }
}

.media-shape--loop {
  width: 100%;
  margin: 0;
}
.media-shape--loop .media-shape__img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.text-media:has(.media-shape--loop) .text-media__inner {
  grid-template-columns: 1fr;
}
@media (min-width: 1024px) {
  .text-media:has(.media-shape--loop) .text-media__inner {
    grid-template-columns: 560px 1fr;
    align-items: start;
    gap: 56px;
  }
}
.text-media:has(.media-shape--loop) .text-media__content h3 {
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1;
  font-weight: 800;
  color: #2d3e73;
  margin-bottom: 32px;
}
.text-media:has(.media-shape--loop) .text-media__content ol {
  list-style: decimal;
  margin: 0;
  padding-left: 1.3em;
}
.text-media:has(.media-shape--loop) .text-media__content ol li {
  margin-bottom: 40px;
  color: #6f6f6f;
  font-size: 1rem;
  line-height: 1.6;
}
.text-media:has(.media-shape--loop) .text-media__content ol li::marker {
  color: #2d3e73;
  font-weight: 800;
}
.text-media:has(.media-shape--loop) .text-media__content ol li:last-child {
  margin-bottom: 0;
}
.text-media:has(.media-shape--loop) .text-media__content ol strong {
  display: inline-block;
  vertical-align: top;
  margin-bottom: 12px;
  color: #2d3e73;
  font-weight: 800;
  font-size: 1.25rem;
  line-height: 1.3;
}

.text-media .media-shape--square {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  box-shadow: 0 4px 44px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
}
.text-media .media-shape--square .media-shape__img {
  position: absolute;
  inset: 0;
}

@media (min-width: 768px) {
  .text-media:has(.media-shape--circle) .text-media__inner {
    grid-template-columns: 500px 1fr;
  }
  .text-media:has(.media-shape--circle).text-media--img-right .text-media__inner {
    grid-template-columns: 1fr 300px;
  }
}
.text-media:has(.media-shape--circle) .media-shape--circle {
  max-width: 350px;
}
.text-media:has(.media-shape--circle) .text-media__content p {
  line-height: 1.65;
  margin-bottom: 24px;
}

@media (min-width: 768px) {
  .two-col__inner {
    padding-inline: 100px;
  }
}
.two-col__icon {
  width: 54px;
  height: 54px;
  margin: 0 auto 30px;
}
.two-col__icon img,
.two-col__icon svg {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.two-col__icon--swoosh {
  color: #002945;
}
.two-col__heading {
  color: #002945;
  font-weight: 800;
  line-height: 1;
  font-size: clamp(2rem, 3.75vw, 3rem);
  margin-bottom: 30px;
}
.two-col__grid {
  display: grid;
  gap: 40px;
}
@media (min-width: 768px) {
  .two-col__grid {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }
}
.two-col--center .two-col__grid {
  align-items: center;
}
@media (min-width: 768px) {
  .two-col--asym .two-col__grid {
    grid-template-columns: minmax(0, 1fr) 363px;
    align-items: start;
    padding-block: 20px;
  }
}
.two-col--asym .two-col__col:first-child {
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .two-col--asym .two-col__col:first-child {
    justify-content: center;
  }
}
@media (min-width: 768px) {
  .two-col--sidebar .two-col__grid {
    grid-template-columns: 316px minmax(0, 1fr);
    align-items: start;
    gap: 30px;
  }
}
.two-col--sidebar .two-col__col:first-child h2,
.two-col--sidebar .two-col__col:first-child h3,
.two-col--sidebar .two-col__col:first-child p {
  color: #002945;
  font-weight: 800;
  line-height: 1;
  font-size: clamp(2rem, 3.75vw, 3rem);
  margin: 0;
}
.two-col--sidebar .two-col__col:last-child {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.two-col--sidebar .two-col__col:last-child h3,
.two-col--sidebar .two-col__col:last-child h4 {
  color: #002945;
  font-weight: 800;
  line-height: 1.1;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  margin: 0;
}
.two-col--asym .two-col__col:last-child {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.two-col--asym .two-col__col:last-child .lead {
  max-width: 318px;
  margin-bottom: 0;
}
.two-col--asym .two-col__col:last-child .stmt {
  margin: 0;
  white-space: nowrap;
  font-size: clamp(1.875rem, 3.5vw, 2.75rem);
}

.feature-cards__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  align-items: stretch;
}

.fcard {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  flex: 1 0 0;
  min-width: 350px;
  padding: 50px;
  background: #e6f3f2;
  border-radius: 30px;
}
.fcard__title {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
  color: #002945;
  width: 100%;
  margin-bottom: 0;
  min-height: 2.5em;
}
.fcard__text {
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 400;
  color: #002945;
  width: 100%;
}

.engagements__panel {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  background: #002945;
  color: #ffffff;
  border-radius: 30px;
  padding: 40px 24px;
}
@media (min-width: 768px) {
  .engagements__panel {
    padding: 50px 100px;
  }
}
.engagements__title {
  color: #ffffff;
  font-weight: 800;
  line-height: 1;
  font-size: clamp(2.125rem, 3.2vw, 2.5rem);
  width: 100%;
  margin: 0;
}
.engagements__intro, .engagements__outro {
  width: 100%;
  color: #ffffff;
}
.engagements__intro p, .engagements__outro p {
  color: #ffffff;
}
.engagements__intro strong, .engagements__outro strong {
  color: #ffffff;
}
.engagements__outro {
  font-weight: 700;
}
.engagements__list {
  list-style: none;
  margin: 0;
  padding: 0;
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 768px) {
  .engagements__list {
    gap: 40px;
  }
}

.engagement {
  display: flex;
  gap: 20px;
}
.engagement__mark {
  flex-shrink: 0;
  color: #35a091;
}
.engagement__mark .swoosh {
  width: 36px;
  height: 35px;
}
.engagement__body {
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.engagement__title {
  font-size: 1.25rem;
  line-height: 1.2;
  letter-spacing: 0;
  font-weight: 700;
  color: #35a091;
  margin-bottom: 0;
}
.engagement__text {
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 400;
  color: #ffffff;
  max-width: 402px;
}

.cta-banner {
  position: relative;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  border-top: 1px solid #e9e9e9;
}
@media (min-width: 768px) {
  .cta-banner {
    min-height: 128px;
  }
}
.cta-banner__media img {
  width: 100%;
  height: 100%;
  max-height: 220px;
  object-fit: cover;
}
@media (min-width: 768px) {
  .cta-banner__media {
    position: absolute;
    left: -110px;
    top: 50%;
    transform: translateY(-50%);
    width: 440px;
    height: 440px;
    border-radius: 50%;
    box-shadow: 0 0 0 8px #002945;
  }
  .cta-banner__media img {
    max-height: none;
    border-radius: 50%;
  }
}
.cta-banner__body {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 30px;
  padding: 32px 40px;
}
@media (min-width: 768px) {
  .cta-banner__body {
    justify-content: flex-end;
    padding: 30px 36px;
    padding-left: 380px;
  }
}
.cta-banner__title {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  color: #002945;
  text-align: center;
  margin: 0;
}
@media (min-width: 768px) {
  .cta-banner__title {
    flex: 1 0 0;
    min-width: 180px;
    text-align: right;
  }
}
.cta-banner__btn {
  flex-shrink: 0;
  min-height: 36px;
  padding: 8px 20px;
  gap: 5px;
}

@media (min-width: 768px) {
  .service-feature:has(.bg--navy) {
    margin-top: 96px;
    margin-bottom: 80px;
  }
}
.service-feature__inner {
  position: relative;
  border-radius: 30px;
}
.service-feature__inner::after {
  content: "";
  display: table;
  clear: both;
}
.service-feature__inner.bg--navy, .service-feature__inner.bg--blue, .service-feature__inner.bg--light {
  padding: 48px 24px;
}
@media (min-width: 768px) {
  .service-feature__inner.bg--navy, .service-feature__inner.bg--blue, .service-feature__inner.bg--light {
    padding: 56px 64px;
  }
}
.service-feature__media {
  margin: 0 auto 32px;
  max-width: 340px;
}
@media (min-width: 768px) {
  .service-feature__media {
    float: right;
    width: 540px;
    max-width: none;
    margin: 0 0 24px 48px;
    margin-right: -170px;
  }
}
@media (min-width: 768px) {
  .service-feature.sf--img-left .service-feature__media {
    float: left;
    margin: 0 48px 24px 0;
    margin-left: -170px;
  }
}
.service-feature__inner.bg--navy {
  overflow: visible;
}
@media (min-width: 768px) {
  .service-feature__inner.bg--navy .service-feature__media, .service-feature.sf--img-right .service-feature__inner.bg--navy .service-feature__media {
    float: right;
    width: 500px;
    margin: -120px -160px 20px 48px;
  }
}
.service-feature__media .media-shape--circle {
  width: 100%;
  max-width: none;
  aspect-ratio: 1;
}
.service-feature.sf--valign-top .swoosh-list {
  display: block;
}
.service-feature.sf--valign-top .swoosh-list li {
  margin-bottom: 10px;
}
.service-feature__title {
  color: #002945;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(1.75rem, 3.2vw, 2.75rem);
  margin-bottom: 12px;
}
.service-feature__subtitle {
  color: #002945;
  font-weight: 700;
  line-height: 1.1;
  font-size: clamp(1.5rem, 2.6vw, 2.125rem);
  margin-bottom: 20px;
}
.service-feature__inner.bg--navy {
  color: #ffffff;
}
.service-feature__inner.bg--navy .service-feature__title {
  color: #ffffff;
}
.service-feature__inner.bg--navy .service-feature__subtitle {
  color: #ffffff;
  font-size: clamp(1.25rem, 2vw, 1.5rem);
  line-height: 1.25;
}
.service-feature__inner.bg--navy .prose,
.service-feature__inner.bg--navy .prose p {
  color: rgba(255, 255, 255, 0.9);
}
.service-feature__inner.bg--navy .prose strong {
  color: #ffffff;
}

.cards-slider {
  overflow: hidden;
}
.cards-slider__title {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  margin-bottom: 32px;
}
.cards-slider__swiper {
  overflow: hidden;
}
.cards-slider__swiper .swiper-slide {
  height: auto;
}
.cards-slider__swiper .swiper-wrapper {
  max-width: 100%;
}
.cards-slider__nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 32px;
}
.cards-slider__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #002945;
  color: #ffffff;
  transition: background 0.25s ease, opacity 0.25s ease;
}
.cards-slider__btn:hover {
  background: #2a8073;
}
.cards-slider__btn.swiper-button-disabled {
  opacity: 0.4;
  cursor: default;
}

.scard {
  display: flex;
  flex-direction: column;
  gap: 12px;
  height: 100%;
  padding: 32px 24px;
  background: #e6f3f2;
  border-radius: 16px;
}
.scard__title {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
  color: #002945;
}
.scard__subtitle {
  font-size: 1rem;
  line-height: 1.5;
  letter-spacing: 0;
  font-weight: 700;
  color: #002945;
}
.scard__body {
  font-size: 0.875rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 400;
  color: #6f6f6f;
}
.scard__body .swoosh-list {
  margin: 12px 0;
  gap: 12px;
}
.scard__body .swoosh-list li {
  color: #6f6f6f;
  font-weight: 400;
}
.scard__body .swoosh-list li strong {
  color: #002945;
  font-weight: 700;
}
.scard__body strong {
  color: #002945;
}
.scard__btn {
  align-self: flex-start;
  margin-top: 12px;
}

.instagram {
  text-align: center;
}
.instagram__title {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  margin-bottom: 40px;
}
.instagram__title a {
  color: #002945;
}
.instagram__title a:hover {
  color: #2a8073;
}
.instagram__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}
@media (min-width: 480px) {
  .instagram__grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
.instagram__item {
  display: block;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 16px;
}
.instagram__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.25s ease;
}
.instagram__item:hover .instagram__img {
  transform: scale(1.04);
}

.card-compare__grid {
  display: grid;
  gap: 20px;
}
@media (min-width: 1024px) {
  .card-compare__grid {
    grid-template-columns: 1fr 1fr;
  }
}

.cc-panel {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  padding: 24px 20px;
  border-radius: 30px;
}
@media (min-width: 768px) {
  .cc-panel {
    flex-direction: row;
    align-items: center;
    gap: 30px;
    padding: 20px;
  }
}
.cc-panel--yellow {
  background: #fbe905;
}
.cc-panel--dark {
  background: #231f20;
}
@media (min-width: 768px) {
  .cc-panel--dark {
    padding: 30px 20px;
  }
}
@media (min-width: 768px) {
  .cc-panel--card-right {
    flex-direction: row-reverse;
  }
}
.cc-panel__card {
  flex-shrink: 0;
  width: 150px;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cc-panel--dark .cc-panel__card {
  width: 180px;
}
.cc-panel__img {
  width: 100%;
  aspect-ratio: 180/127;
  object-fit: cover;
}
.cc-panel__label {
  font-size: 1.5rem;
  line-height: 30px;
  font-weight: 700;
  color: #003264;
}
.cc-panel--dark .cc-panel__label {
  color: #ffffff;
  text-align: right;
}
.cc-panel__body {
  flex: 1 1 0;
  min-width: 0;
}
.cc-panel__heading {
  font-size: 1rem;
  line-height: 24px;
  font-weight: 700;
  color: #ffffff;
  margin: 0 0 10px;
}
.cc-panel__list {
  margin: 0;
}
.cc-panel__list ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.cc-panel__list li {
  font-size: 1rem;
  line-height: 24px;
  font-weight: 400;
  color: #000;
}
.cc-panel__list strong {
  font-weight: 700;
}

.cc-panel--dark .cc-panel__list li {
  color: #ffffff;
}
.cc-panel--dark .cc-panel__list li::before {
  background-color: #35a091;
}

.icon-cards__grid {
  display: grid;
  gap: 30px;
  align-items: start;
}
@media (min-width: 1024px) {
  .icon-cards__grid {
    grid-template-columns: 1fr 1fr;
  }
}
.icon-cards__col {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.icard {
  background: #e6f3f2;
  border-radius: 30px;
  padding: 32px 24px;
}
@media (min-width: 768px) {
  .icard {
    padding: 50px 40px;
  }
}
.icard {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
}
.icard__icon {
  display: block;
}
.icard__icon-img {
  display: block;
  width: auto;
  height: auto;
  max-height: 52px;
}
.icard__title {
  color: #002945;
  font-weight: 800;
  line-height: 1.05;
  font-size: 2.125rem;
  margin: 0;
}
.icard__subtitle {
  color: #002945;
  font-weight: 700;
  line-height: 30px;
  font-size: 1.5rem;
  margin: 0;
}
.icard__text {
  color: #6f6f6f;
  font-size: 1rem;
  line-height: 1.375;
}
.icard__text p {
  margin: 0 0 1em;
}
.icard__text p:last-child {
  margin-bottom: 0;
}
.icard__text ul {
  margin: 0;
  padding-left: 1.25em;
  list-style: disc;
}
.icard__text li {
  margin-bottom: 0.35em;
}
.icard__text strong {
  font-weight: 700;
}
.icard__media {
  align-self: center;
}
.icard__media-img {
  display: block;
  width: auto;
  max-width: 40%;
  height: auto;
}
.icard__logos {
  width: 100%;
  background: #fff;
  border-radius: 10px;
  padding: 18px 22px;
}
.icard__logos-img {
  display: block;
  width: 100%;
  height: auto;
}
.icard__btn {
  align-self: flex-start;
}

.image-banner__img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}

.gamme-row {
  display: grid;
  gap: 18px;
  align-items: center;
}
.gamme-row + .gamme-row {
  margin-top: 20px;
}
@media (min-width: 768px) {
  .gamme-row {
    grid-template-columns: 1fr 1fr;
  }
}
.gamme-row__info {
  order: -1;
}
@media (min-width: 768px) {
  .gamme-row__info {
    order: 0;
  }
}
@media (min-width: 768px) {
  .gamme-row--vright .gamme-row__visual {
    order: 2;
  }
}
@media (min-width: 768px) {
  .gamme-row--vright .gamme-row__info {
    align-items: flex-end;
    text-align: right;
  }
}
.gamme-row__visual-img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 30px;
}
.gamme-row__info {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 14px;
  padding: 8px 4px 16px;
}
@media (min-width: 768px) {
  .gamme-row__info {
    padding: 20px 59px;
  }
}
.gamme-row__logo-img {
  display: block;
  width: auto;
  height: auto;
  max-width: min(294px, 100%);
  max-height: 128px;
  object-fit: contain;
}
.gamme-row__name {
  margin: 0;
  font-weight: 700;
  line-height: 30px;
  font-size: 1.5rem;
}

.groupements .container {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.groupement {
  position: relative;
  isolation: isolate;
  border-radius: 30px;
  overflow: hidden;
  background: #eef2f4;
  scroll-margin-top: 120px;
}
@media (min-width: 768px) {
  .groupement {
    display: flex;
    align-items: center;
    min-height: 460px;
  }
}
.groupement__body {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 20px;
  padding: 48px 40px;
}
@media (min-width: 768px) {
  .groupement__body {
    width: 50%;
    max-width: 500px;
    padding: 56px 0 56px 56px;
  }
}
.groupement__bg {
  position: relative;
  z-index: 1;
  aspect-ratio: 16/11;
}
@media (min-width: 768px) {
  .groupement__bg {
    position: absolute;
    inset: 0;
    aspect-ratio: auto;
  }
}
.groupement__photo {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.groupement__veil {
  display: none;
}
@media (min-width: 768px) {
  .groupement__veil {
    display: block;
    position: absolute;
    inset: 0;
    background: linear-gradient(to left, rgba(255, 255, 255, 0) 37.458%, #fff 53.833%);
  }
}
@media (min-width: 768px) {
  .groupement--no-media .groupement__body {
    width: 100%;
    max-width: 760px;
  }
}
.groupement__logo-img {
  display: block;
  max-height: 66px;
  width: auto;
  margin-bottom: 8px;
}
.groupement__name {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  color: var(--grp-color);
}
.groupement__tagline {
  font-size: 1.5rem;
  line-height: 1.25;
  letter-spacing: 0;
  font-weight: 700;
  color: var(--grp-text);
  margin-top: -12px;
}
.groupement__text {
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 400;
  color: var(--grp-text);
}
.groupement__text p {
  margin-bottom: 0.75em;
}
.groupement__text p:last-child {
  margin-bottom: 0;
}
.groupement__btn {
  align-self: flex-start;
  margin-top: 8px;
  border: 0;
}

.strategy-list__title {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  max-width: 900px;
  margin: 0 auto 40px;
  text-align: center;
}
.strategy-list__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 980px;
  margin-inline: auto;
}
.strategy-list__row {
  padding: 20px 32px;
  border-radius: 16px;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 400;
}
.strategy-list__row p {
  margin: 0;
}
.strategy-list__row strong {
  font-weight: 800;
}
.strategy-list__outro {
  max-width: 980px;
  margin: 32px auto 0;
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 400;
  font-weight: 700;
  text-align: center;
}

.service-cards {
  overflow: hidden;
}
.service-cards__title {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  color: #002945;
  text-align: center;
  margin-bottom: 48px;
}
.service-cards__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 768px) {
  .service-cards__grid {
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
  }
  .service-cards__grid > :first-child {
    grid-row: 1/3;
  }
}
.service-cards__nav {
  margin-top: 0;
  margin-bottom: 24px;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding: 40px 48px;
  border-radius: 30px;
  color: #ffffff;
}
@media (min-width: 768px) {
  .service-card--full {
    grid-column: 1/-1;
  }
}
.service-card__logo {
  align-self: flex-start;
  border-radius: 16px;
  overflow: hidden;
  background: #ffffff;
}
.service-card__logo-img {
  display: block;
  max-height: 88px;
  width: auto;
}
.service-card__title {
  font-size: 2.125rem;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 800;
  color: inherit;
}
.service-card__content {
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 400;
  color: #ffffff;
}
.service-card__content p {
  margin: 0 0 0.6em;
}
.service-card__content p:last-child {
  margin-bottom: 0;
}
.service-card__content ul {
  list-style: none;
  margin: 8px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.service-card__content ul li {
  position: relative;
  padding-left: 30px;
  margin: 0;
}
.service-card__content ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 3px;
  width: 19px;
  height: 19px;
  background-color: #ffffff;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M6.75817 18.3821C4.90572 22.7332 4.50459 27.5653 5.61424 32.1623C6.7239 36.7593 9.28527 40.8763 12.9187 43.9031C16.5521 46.93 21.0641 48.7055 25.7859 48.9665C30.5077 49.2275 35.1879 47.96 39.1327 45.352C43.0776 42.744 46.0771 38.9344 47.6866 34.4877C49.2961 30.041 49.4299 25.1941 48.0683 20.6654C46.7066 16.1366 43.9219 12.1672 40.127 9.34551C36.3321 6.52379 31.729 5 27 5' stroke='black' stroke-width='10'/%3E%3C/svg%3E") no-repeat center/contain;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 54 54' fill='none'%3E%3Cpath d='M6.75817 18.3821C4.90572 22.7332 4.50459 27.5653 5.61424 32.1623C6.7239 36.7593 9.28527 40.8763 12.9187 43.9031C16.5521 46.93 21.0641 48.7055 25.7859 48.9665C30.5077 49.2275 35.1879 47.96 39.1327 45.352C43.0776 42.744 46.0771 38.9344 47.6866 34.4877C49.2961 30.041 49.4299 25.1941 48.0683 20.6654C46.7066 16.1366 43.9219 12.1672 40.127 9.34551C36.3321 6.52379 31.729 5 27 5' stroke='black' stroke-width='10'/%3E%3C/svg%3E") no-repeat center/contain;
  transform: rotate(270deg);
}
.service-card__content strong {
  font-weight: 800;
  color: inherit;
}
.service-card__btn {
  align-self: flex-start;
  margin-top: 20px;
}

.service-cards__grid > .service-card:first-child .service-card__logo {
  align-self: stretch;
  width: 100%;
}
.service-cards__grid > .service-card:first-child .service-card__logo-img {
  width: 100%;
  max-height: none;
}

.service-cards__swiper {
  margin-bottom: 56px;
}
.service-cards__swiper .swiper-wrapper {
  align-items: stretch;
}
.service-cards__swiper .service-card {
  height: 100%;
  padding: 32px;
}
.service-cards__swiper .service-card__content ul li::before {
  background-color: #002945;
}

.service-cards__grid .service-card__btn {
  background: #ffffff;
  color: var(--accent);
}
.service-cards__grid .service-card__btn:hover {
  background: #ffffff;
  opacity: 0.88;
}

.locator-bar__inner {
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 30px;
  border-radius: 30px;
  background-color: #fc0;
  background-size: cover;
  background-position: center;
}
@media (min-width: 768px) {
  .locator-bar__inner {
    padding: 30px 110px;
  }
}
.locator-bar__text {
  flex: 1 1 0;
  min-width: 200px;
  margin: 0;
  color: #ffffff;
  font-size: 1rem;
  line-height: 1.4;
}
.locator-bar__text strong {
  font-weight: 700;
}
.locator-bar__btn {
  flex-shrink: 0;
}

.adhesion__card {
  max-width: 900px;
  margin-inline: auto;
  background: #ffffff;
  border: 1px solid rgba(0, 41, 69, 0.06);
  border-radius: 20px;
  box-shadow: 0 18px 50px rgba(0, 41, 69, 0.08);
  padding: clamp(24px, 4vw, 44px);
}
.adhesion__title {
  color: #002945;
  font-weight: 800;
  line-height: 1.15;
  font-size: clamp(1.5rem, 2.6vw, 2rem);
  margin: 0 0 8px;
}
.adhesion__subtitle {
  color: #2a8073;
  font-size: 1rem;
  line-height: 1.5;
  margin: 0 0 28px;
}
.adhesion__form {
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.adhesion__row {
  display: grid;
  gap: 18px;
}
@media (min-width: 480px) {
  .adhesion__row {
    grid-template-columns: 1fr 1fr;
  }
}
.adhesion__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.adhesion__label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.875rem;
  font-weight: 700;
  color: #002945;
}
.adhesion__icon {
  flex-shrink: 0;
}
.adhesion__opt {
  font-weight: 400;
  color: #6f6f6f;
}
.adhesion input,
.adhesion textarea {
  width: 100%;
  font: inherit;
  color: #002945;
  background: #f1f3f5;
  border: 1px solid transparent;
  border-radius: 10px;
  padding: 14px 16px;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
}
.adhesion input::placeholder,
.adhesion textarea::placeholder {
  color: #9aa3af;
}
.adhesion input:focus,
.adhesion textarea:focus {
  outline: none;
  background: #ffffff;
  border-color: #2a8073;
  box-shadow: 0 0 0 3px rgba(42, 128, 115, 0.15);
}
.adhesion textarea {
  resize: vertical;
  min-height: 120px;
}
.adhesion__actions {
  display: flex;
  justify-content: center;
  margin-top: 10px;
}
.adhesion__notice {
  border-radius: 10px;
  padding: 16px 20px;
  font-weight: 700;
  margin-bottom: 18px;
}
.adhesion__notice--ok {
  color: #14663b;
  background: #e6f6ec;
  border: 1px solid #b6e2c6;
}
.adhesion__notice--error {
  color: #8a1c1c;
  background: #fdeaea;
  border: 1px solid #f3c0c0;
}
.adhesion__hp {
  position: absolute !important;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.adhesion__card--narrow {
  max-width: 640px;
}

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

.adhesion__req {
  color: #339f8f;
  font-weight: 800;
}

.adhesion--contact .adhesion__card {
  max-width: 1120px;
}
.adhesion--contact .adhesion__title {
  color: #339f8f;
  text-align: left;
  font-size: clamp(1.6rem, 2.8vw, 2.125rem);
}
.adhesion--contact .adhesion__subtitle {
  color: #6f6f6f;
  margin-bottom: 32px;
}
.adhesion--contact .adhesion__actions {
  justify-content: flex-start;
}
.adhesion--contact .adhesion__submit {
  background: #339f8f;
  color: #ffffff;
  padding-inline: 26px;
}
.adhesion--contact .adhesion__submit:hover {
  background: #2a8073;
  color: #ffffff;
}
.adhesion--contact .adhesion__send {
  flex-shrink: 0;
}

.post-type-archive-actualite .page-header__title {
  color: #5b3c90;
}

.actu-section__title {
  color: #5b3c90;
  font-weight: 800;
  line-height: 1;
  font-size: clamp(2rem, 3.75vw, 3rem);
  text-align: center;
  margin: 0 0 40px;
}

.actu-swoosh {
  text-align: center;
  margin: 40px 0;
}
.actu-swoosh .swoosh {
  display: inline-block;
  width: 54px;
  height: 54px;
}

.actu-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
}

.actu-card {
  display: flex;
  flex-direction: column;
  width: 320px;
  max-width: 100%;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 20px 12.5px rgba(0, 0, 0, 0.1), 0 8px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
.actu-card__media {
  display: block;
  height: 206px;
  overflow: hidden;
}
.actu-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.actu-card__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 18px;
  padding: 24px 30px 30px;
}
.actu-card__title {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
  color: #5b3c90;
  margin: 0;
}
.actu-card__title a {
  color: inherit;
}
.actu-card__excerpt {
  font-size: 1rem;
  line-height: 1.375;
  color: #6f6f6f;
  margin: 0;
}
.actu-card__btn {
  margin-top: auto;
}

.webinar-list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.webinar-row {
  display: grid;
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 20px 12.5px rgba(0, 0, 0, 0.1), 0 8px 5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
}
@media (min-width: 768px) {
  .webinar-row {
    grid-template-columns: 1fr 1fr;
  }
}
.webinar-row__media {
  overflow: hidden;
  min-height: 230px;
  border: 2px solid #5b3c90;
  border-right: 0;
  border-radius: 30px 0 0 30px;
}
.webinar-row__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.webinar-row__body {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 18px;
  padding: 30px;
}
.webinar-row__title {
  font-size: 1.5rem;
  line-height: 1.25;
  font-weight: 700;
  color: #5b3c90;
  margin: 0;
}
.webinar-row__excerpt {
  font-size: 1rem;
  line-height: 1.375;
  color: #6f6f6f;
  margin: 0;
}

.actu-card__btn,
.webinar-row__btn {
  min-height: 36px;
  padding: 8px 20px;
  font-size: 0.875rem;
  background: #5b3c90;
  color: #ffffff;
}
.actu-card__btn:hover,
.webinar-row__btn:hover {
  background: #4a3075;
  color: #ffffff;
}

.article__hero-wrap {
  padding-bottom: 0;
}
.article__hero {
  border-radius: 30px;
  overflow: hidden;
}
.article__hero-img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1020/390;
  object-fit: cover;
}
.article__head {
  padding-top: 40px;
  padding-bottom: 8px;
}
.article__title {
  color: #002945;
  font-weight: 800;
  line-height: 1.05;
  font-size: clamp(2.25rem, 4.7vw, 3.75rem);
  margin: 0;
}

.single-actualite .article__title {
  color: #5b3c90;
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  line-height: 1.02;
}
@media (min-width: 1024px) {
  .single-actualite .rich-text--left .rich-text__content {
    margin-left: 0;
  }
}
.single-actualite .image-row__img {
  border-radius: 30px;
}

.image-row__grid {
  display: grid;
  gap: 20px;
  grid-template-columns: 1fr;
}
@media (min-width: 480px) {
  .image-row__grid {
    grid-template-columns: repeat(var(--cols, 3), 1fr);
  }
}
.image-row__item {
  margin: 0;
}
.image-row__img {
  display: block;
  width: 100%;
  height: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
  border-radius: 16px;
}

.article-cards__grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: center;
}

.acard {
  display: flex;
  flex: 1 1 280px;
  max-width: 360px;
  flex-direction: column;
  background: #ffffff;
  border: 2px solid #35a091;
  border-radius: 20px;
  overflow: hidden;
}
.acard:nth-child(even) {
  border-color: #2a8073;
}
.acard__media {
  overflow: hidden;
}
.acard__img {
  display: block;
  width: 100%;
  aspect-ratio: 3/2;
  object-fit: cover;
}
.acard__body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding: 24px;
}
.acard__title {
  color: #002945;
  font-weight: 800;
  line-height: 1.2;
  font-size: 1.375rem;
  margin: 0;
}
.acard__text {
  color: #6f6f6f;
  font-size: 1rem;
  line-height: 1.5;
}
.acard__text p {
  margin: 0;
}
.acard__btn {
  margin-top: auto;
}

.image-banner--contained .image-banner__img {
  max-width: 720px;
  margin-inline: auto;
}

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