@charset "UTF-8";
* {
  box-sizing: border-box;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
}

body {
  padding: 0;
  margin: 0;
}

.slick-dots {
  display: flex;
  padding: var(--spacing-2);
  list-style: none;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 20px;
  gap: 15px;
  margin-top: 32px;
  margin-bottom: 15px;
  margin: auto;
}
.slick-dots li {
  border-radius: 50%;
  width: 15px;
  height: 15px;
  display: block;
  background-color: var(--color-background-tertiary);
  transition: all 400ms;
}
.slick-dots li.slick-active {
  width: 45px;
  background-color: var(--color-base-primary);
  border-radius: 0.5rem;
}

/**
**
** GUTENBERG
*/
.wp-block-button {
  display: flex;
  justify-content: center;
}
.wp-block-button .wp-block-button__link {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
}
.wp-block-button .wp-block-button__link:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.wp-block-button .wp-block-button__link:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

.seize-primary {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
}
.seize-primary:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.seize-primary:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 576px) {
  .wp-block-spacer {
    max-height: 40px;
  }
}
#header-one {
  padding: 32px 0;
}
#header-one .row {
  align-items: center;
}
#header-one .header-one__flex {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#header-one img {
  max-width: 300px;
}
#header-one .header-home {
  text-align: left;
}
#header-one .menu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 50px;
  padding: 0;
  margin: 0;
  list-style: none;
}
#header-one .menu li {
  list-style: none;
}
#header-one .menu li a {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #000000;
  text-decoration: none;
}
#header-one .language-switcher {
  position: relative;
  display: inline-block;
  margin-left: 50px;
  padding: 0;
}
#header-one .custom-dropdown {
  position: relative;
}
#header-one .current-language {
  padding: 8px;
  cursor: pointer;
  background-color: #fff;
  display: flex;
  align-items: center;
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  color: #000000;
}
#header-one .current-language img {
  margin-left: 5px;
  width: 16px;
}
#header-one .dropdown-options {
  display: none;
  position: absolute;
  background-color: white;
  z-index: 1;
  width: 100%;
  top: 100%;
  left: 0;
}
#header-one .dropdown-option {
  padding: 8px;
  cursor: pointer;
  display: flex;
  align-items: center;
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 21px;
  text-transform: uppercase;
  text-decoration: none;
  color: #000000;
}
#header-one .dropdown-option img {
  margin-left: 5px;
  width: 16px;
}
#header-one .custom-dropdown:hover .dropdown-options {
  display: block;
}
#header-one .custom-dropdown .dropdown-option:hover {
  background-color: #f0f0f0;
}

.header-mobile {
  display: none;
}

.sticky {
  bottom: 15vh;
  position: fixed;
  right: 15vh;
  z-index: 10;
  width: 65px;
  height: 65px;
  box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
  border-radius: 16px;
}
.sticky a {
  display: block;
  width: 100%;
  height: 100%;
}
.sticky img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 400ms;
  opacity: 1;
}
.sticky img.hover {
  z-index: 1;
}
.sticky img.hover:hover {
  opacity: 0;
}

@media screen and (max-width: 1200px) {
  #header-one .menu {
    gap: 30px;
  }
  #header-one .menu li a {
    font-size: 14px;
  }
  #header-one .language-switcher {
    margin-left: 30px;
  }
  #header-one img {
    width: 100%;
  }
}
@media screen and (max-width: 992px) {
  #header-one {
    padding: 15px 0;
  }
  #header-one .menu {
    gap: 20px;
  }
  #header-one .language-switcher {
    padding: 0;
    margin-left: 20px;
  }
}
@media screen and (min-width: 768px) {
  .header-principal__mobile {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .sticky {
    right: 5vh;
    bottom: 5vh;
  }
  #header-one {
    height: 10vh;
    position: sticky;
    background-color: white;
    top: 0;
    z-index: 10;
    padding: 5px 0;
  }
  #header-one img {
    max-width: 220px;
    width: auto;
    height: 100%;
  }
  .header-desktop {
    display: none;
  }
  .header-mobile {
    display: block;
    height: 100%;
  }
  .header-mobile .container-fluid {
    height: 100%;
  }
  .header-mobile .container-fluid .row {
    height: 100%;
  }
  .header-mobile .container-fluid .row .col-6 {
    height: 100%;
  }
  .header-mobile .container-fluid .row .col-6 .header-home {
    height: 100%;
  }
  .header-mobile__hamburger {
    display: flex;
    align-items: center;
    justify-content: end;
  }
  .header-mobile__hamburger .hamburger {
    background-color: transparent;
    border: none;
    display: block;
    width: 40px;
    height: 24px;
    padding: 0;
    cursor: pointer;
  }
  .header-mobile__hamburger .hamburger .hamburger-box {
    padding: 6px;
    display: flex;
    justify-content: left;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .header-mobile__hamburger .hamburger .hamburger-box .hamburger-inner {
    top: auto;
    bottom: 0;
    left: 0;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-duration: 0.13s;
    width: 100%;
    position: absolute;
    display: block;
    margin-top: -2px;
    height: 4px;
    background-color: black;
    border-radius: 2px;
  }
  .header-mobile__hamburger .hamburger .hamburger-box .hamburger-inner:before {
    content: "";
    width: 100%;
    top: -10px;
    background-color: black;
    position: absolute;
    height: 4px;
    border-radius: 2px;
    display: block;
    transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .header-mobile__hamburger .hamburger .hamburger-box .hamburger-inner:after {
    content: "";
    display: block;
    border-radius: 2px;
    height: 4px;
    width: 100%;
    top: -20px;
    background-color: black;
    position: absolute;
    transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
  }
  .header-mobile__hamburger .hamburger.active .hamburger-box .hamburger-inner {
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
  }
  .header-mobile__hamburger .hamburger.active .hamburger-box .hamburger-inner:before {
    top: 0;
    transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
    transform: rotate(-90deg);
    width: 100%;
  }
  .header-mobile__hamburger .hamburger.active .hamburger-box .hamburger-inner:after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  }
  .header-principal__mobile {
    height: 92vh;
    background-color: white;
    position: fixed;
    top: 8vh;
    z-index: 11;
    width: 100%;
    left: -100%;
    transition: all 500ms;
    display: block;
  }
  .header-principal__mobile.active {
    left: 0;
  }
  .header-principal__mobile ul {
    display: flex;
    height: 100%;
    flex-direction: column;
    justify-content: center;
    list-style: none;
  }
  .header-principal__mobile ul a {
    color: #000000;
    text-decoration: none;
    font-size: 20px;
  }
  .header-principal__mobile .language-switcher__mobile {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
  }
  .header-principal__mobile .language-switcher__mobile .dropdown-options__mobile {
    display: flex;
    align-items: center;
    gap: 20px;
  }
  .header-principal__mobile .language-switcher__mobile .dropdown-options__mobile .dropdown-option {
    text-decoration: none;
    color: black;
    font-size: 20px;
  }
  .header-principal__mobile .language-switcher__mobile .dropdown-options__mobile .dropdown-option .language {
    text-transform: uppercase;
  }
}
.body-header-two {
  padding-top: 15vh;
}

#header-two {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: var(--primary-color);
  height: 15vh;
  padding: 0;
  z-index: 12;
  box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.4);
}
#header-two .container,
#header-two .row,
#header-two div {
  height: 100%;
}
#header-two.scrolled-down {
  background-color: red;
  box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.4);
}
#header-two nav .logo {
  position: relative;
  box-shadow: 0 1rem 5rem rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 110%;
  z-index: 4;
  padding: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#header-two nav .logo.logo_white {
  background-color: white;
}
#header-two nav .logo img {
  width: 100%;
}
#header-two nav .hamburger-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  border: none;
  height: 100%;
}
#header-two nav .hamburger-button p {
  margin-bottom: 0;
  padding: 0;
  color: white;
  font-size: 16px;
  font-family: var(--primary-font);
}
#header-two nav .hamburger-button .hamburger {
  background-color: transparent;
  border: none;
  display: block;
  width: 40px;
  height: 24px;
  padding: 0;
  cursor: pointer;
}
#header-two nav .hamburger-button .hamburger .hamburger-box {
  padding: 6px;
  display: flex;
  justify-content: left;
  position: relative;
  width: 100%;
  height: 100%;
}
#header-two nav .hamburger-button .hamburger .hamburger-box .hamburger-inner {
  top: auto;
  bottom: 0;
  left: 0;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.13s;
  width: 100%;
  position: absolute;
  display: block;
  margin-top: -2px;
  height: 4px;
  background-color: white;
  border-radius: 2px;
}
#header-two nav .hamburger-button .hamburger .hamburger-box .hamburger-inner:before {
  content: "";
  width: 100%;
  top: -10px;
  background-color: white;
  position: absolute;
  height: 4px;
  border-radius: 2px;
  display: block;
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#header-two nav .hamburger-button .hamburger .hamburger-box .hamburger-inner:after {
  content: "";
  display: block;
  border-radius: 2px;
  height: 4px;
  width: 100%;
  top: -20px;
  background-color: white;
  position: absolute;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}
#header-two nav .hamburger-button .hamburger.active .hamburger-box .hamburger-inner {
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
#header-two nav .hamburger-button .hamburger.active .hamburger-box .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transform: rotate(-90deg);
  width: 100%;
}
#header-two nav .hamburger-button .hamburger.active .hamburger-box .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
}

#header-two-menu {
  position: fixed;
  background-color: var(--primary-color);
  top: -100vh;
  height: 88vh;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
  z-index: 11;
  transition: all 500ms;
}
#header-two-menu.active {
  top: 12vh;
}
#header-two-menu.active:after {
  content: "";
  background-image: var(--mask_vagues);
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  background-repeat: no-repeat;
  background-position: top right;
  pointer-events: none;
  animation: waveMove 1s ease-in-out forwards;
  animation-delay: 800ms;
}
#header-two-menu .menu {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
#header-two-menu .menu li {
  text-align: center;
}
#header-two-menu .menu li a {
  font-size: 20px;
  animation-delay: 0.1s;
  color: #fff;
  text-decoration: none;
  text-align: center;
}

.stickies {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.stickies a {
  text-decoration: none;
}
.stickies .container-sticky {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100px;
  width: 130px;
  align-items: center;
  background-color: var(--secondary-color);
  padding: 1rem;
  transition-duration: 0.2s;
}
.stickies .container-sticky p {
  font-family: var(--primary-font);
  font-size: 14px;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
}
.stickies .container-sticky .icon {
  width: 40px;
  height: 40px;
  transition-duration: 0.2s;
}
.stickies .container-sticky:hover {
  transform: translateX(0);
}
.stickies .container-sticky:hover .icon {
  transform: rotate(15deg);
}

@keyframes waveMove {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
#header-three {
  padding: 32px 0;
  min-height: 10vh;
}
#header-three .logo .header-home img {
  width: 126px;
}

.theme-toggle-btn {
  width: 50px;
  height: 20px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #99b4da;
  position: relative;
  padding: 0 8px;
}
.theme-toggle-btn img {
  width: 12px;
  height: 12px;
  aspect-ratio: 1;
}
.theme-toggle-btn .round {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  left: 8px;
  right: unset;
  transition: all 400ms;
}

/* Styles spécifiques au light mode */
[data-theme=light] .theme-toggle-btn {
  background-color: #99b4da;
  color: white;
}

/* Styles spécifiques au dark mode */
[data-theme=dark] .theme-toggle-btn {
  background-color: #051f43;
}

[data-theme=dark] .theme-toggle-btn .round {
  left: unset;
  right: 8px;
}

#header-four {
  padding: 18px 0;
  min-height: 100px;
}
#header-four .menu-mobile {
  display: none;
}
#header-four .row {
  align-items: center;
}
#header-four .logo .header-home img {
  width: 64px;
}
#header-four .menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2.5rem;
}
#header-four .menu#menu-menu-principal-gauche {
  justify-content: flex-start;
}
#header-four .menu#menu-menu-principal-droite {
  justify-content: flex-end;
}
#header-four .menu li {
  list-style: none;
  padding: 0;
}
#header-four .menu li a {
  color: #3f3f3f;
  text-decoration: none;
}
#header-four .hamburger-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  border: none;
  height: 100%;
}
#header-four .hamburger-button p {
  margin-bottom: 0;
  padding: 0;
  color: var(--color-base-default);
  font-size: 16px;
  font-family: var(--primary-font);
}
#header-four .hamburger-button .hamburger {
  background-color: transparent;
  border: none;
  display: block;
  width: 40px;
  height: 24px;
  padding: 0;
  cursor: pointer;
}
#header-four .hamburger-button .hamburger .hamburger-box {
  padding: 6px;
  display: flex;
  justify-content: left;
  position: relative;
  width: 100%;
  height: 100%;
}
#header-four .hamburger-button .hamburger .hamburger-box .hamburger-inner {
  top: auto;
  bottom: 0;
  left: 0;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.13s;
  width: 100%;
  position: absolute;
  display: block;
  margin-top: -2px;
  height: 4px;
  background-color: var(--color-base-default);
  border-radius: 2px;
}
#header-four .hamburger-button .hamburger .hamburger-box .hamburger-inner:before {
  content: "";
  width: 100%;
  top: -10px;
  background-color: var(--color-base-default);
  position: absolute;
  height: 4px;
  border-radius: 2px;
  display: block;
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#header-four .hamburger-button .hamburger .hamburger-box .hamburger-inner:after {
  content: "";
  display: block;
  border-radius: 2px;
  height: 4px;
  width: 100%;
  top: -20px;
  background-color: var(--color-base-default);
  position: absolute;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}
#header-four .hamburger-button .hamburger.active .hamburger-box .hamburger-inner {
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
#header-four .hamburger-button .hamburger.active .hamburger-box .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transform: rotate(-90deg);
  width: 100%;
}
#header-four .hamburger-button .hamburger.active .hamburger-box .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
}

#header-four-menu {
  display: none;
}

@media screen and (max-width: 992px) {
  #header-four {
    height: 8vh;
    min-height: unset;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 15;
    background-color: white;
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
  }
  #header-four .menu-desktop {
    display: none;
  }
  #header-four .menu-mobile {
    display: block;
  }
  #header-four .menu-mobile .menu-mobile__logo {
    display: flex;
    justify-content: flex-start;
  }
  #header-four .menu-mobile .menu-mobile__logo .header-home img {
    width: 42px;
  }
  #header-four .menu-mobile .menu-mobile__burger {
    display: flex;
    justify-content: flex-end;
  }
  #header-four-menu {
    position: fixed;
    background: white;
    width: 100%;
    height: 92vh;
    display: flex;
    align-items: center;
    top: -100vh;
    transition: all 500ms;
    z-index: 11;
  }
  #header-four-menu.active {
    z-index: 10;
    top: 8vh;
  }
  #header-four-menu .header-four__list ul {
    padding: 0;
    list-style: none;
    margin: 0;
  }
  #header-four-menu .header-four__list ul li a {
    padding: 1rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    display: block;
    color: var(--color-base-default);
  }
}
.theme-toggle-btn {
  width: 50px;
  height: 20px;
  border: none;
  border-radius: 15px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #99b4da;
  position: relative;
  padding: 0 8px;
}
.theme-toggle-btn img {
  width: 12px;
  height: 12px;
  aspect-ratio: 1;
}
.theme-toggle-btn .round {
  position: absolute;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: white;
  left: 8px;
  transition: all 400ms;
}

[data-theme=light] .theme-toggle-btn {
  background-color: #99b4da;
  color: white;
}

[data-theme=dark] .theme-toggle-btn {
  background-color: #051f43;
}

[data-theme=dark] .theme-toggle-btn .round {
  left: 30px;
  right: unset;
}

.light-logo {
  display: none;
}

#header-five {
  padding: 0;
  position: relative;
}
#header-five .menu-mobile {
  display: none;
}
#header-five .row {
  align-items: center;
}
#header-five .logo {
  margin-left: 0;
  display: flex;
}
#header-five .logo a {
  margin-left: 0;
}
#header-five .logo .header-home img {
  height: 40px;
}
#header-five .menu {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 2.5rem;
}
#header-five .menu#menu-menu-principal-gauche {
  justify-content: flex-start;
}
#header-five .menu#menu-menu-principal-droite {
  justify-content: flex-end;
}
#header-five .menu li {
  list-style: none;
  padding: 0;
}
#header-five .menu li a {
  color: white;
  text-decoration: none;
}
#header-five .hamburger-button {
  display: flex;
  align-items: center;
  gap: 10px;
  background-color: transparent;
  border: none;
  height: 100%;
}
#header-five .hamburger-button p {
  margin-bottom: 0;
  padding: 0;
  color: var(--color-base-default);
  font-size: 16px;
  font-family: var(--primary-font);
}
#header-five .hamburger-button .hamburger {
  background-color: transparent;
  border: none;
  display: block;
  width: 40px;
  height: 24px;
  padding: 0;
  cursor: pointer;
}
#header-five .hamburger-button .hamburger .hamburger-box {
  padding: 6px;
  display: flex;
  justify-content: left;
  position: relative;
  width: 100%;
  height: 100%;
}
#header-five .hamburger-button .hamburger .hamburger-box .hamburger-inner {
  top: auto;
  bottom: 0;
  left: 0;
  transition-delay: 0.13s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition-duration: 0.13s;
  width: 100%;
  position: absolute;
  display: block;
  margin-top: -2px;
  height: 4px;
  background-color: var(--color-base-default);
  border-radius: 2px;
}
#header-five .hamburger-button .hamburger .hamburger-box .hamburger-inner:before {
  content: "";
  width: 100%;
  top: -10px;
  background-color: var(--color-base-default);
  position: absolute;
  height: 4px;
  border-radius: 2px;
  display: block;
  transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
#header-five .hamburger-button .hamburger .hamburger-box .hamburger-inner:after {
  content: "";
  display: block;
  border-radius: 2px;
  height: 4px;
  width: 100%;
  top: -20px;
  background-color: var(--color-base-default);
  position: absolute;
  transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
}
#header-five .hamburger-button .hamburger.active .hamburger-box .hamburger-inner {
  transition-delay: 0.22s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  transform: translate3d(0, -10px, 0) rotate(-45deg);
}
#header-five .hamburger-button .hamburger.active .hamburger-box .hamburger-inner:before {
  top: 0;
  transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
  transform: rotate(-90deg);
  width: 100%;
}
#header-five .hamburger-button .hamburger.active .hamburger-box .hamburger-inner:after {
  top: 0;
  transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
}

#header-five-menu {
  display: none;
}

.top-header {
  background-color: var(--color-background-default);
  padding-top: 32px;
  padding-bottom: 16px;
}
.top-header__content {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 32px;
}
.top-header__content a {
  text-decoration: none;
  margin: 0;
}
.top-header__content .top-header__switch {
  display: flex;
  align-items: center;
  gap: 8px;
}
.top-header__content .top-header__switch .theme-help {
  background-color: unset;
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  cursor: pointer;
  position: relative;
}
.top-header__content .top-header__switch .theme-help .theme-help__popup {
  display: none;
}
.top-header__content .top-header__switch .theme-help:hover .theme-help__popup {
  display: block;
  position: absolute;
  top: 50%;
  background-color: var(--color-background-default);
  padding: var(--spacing-0-5);
  width: 300px;
  left: 100%;
  border-radius: var(--spacing-0-5);
  margin: auto;
  background: var(--color-background-secondary);
  z-index: 1;
  border: 1px solid var(--color-base-default);
  transform: translateY(-50%);
}
.top-header__content .top-header__switch .theme-help:hover .theme-help__popup p {
  font-size: var(--font-size-small);
}
.top-header__content a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 140%;
  padding: var(--spacing-0-5) var(--spacing-1);
  color: var(--color-base-default);
  background-color: var(--color-background-primary);
}

[data-theme=dark] .top-header .logo .light-logo {
  display: block;
}
[data-theme=dark] .top-header .logo .dark-logo {
  display: none;
}

.bottom-header {
  transition: all 400ms;
  position: absolute;
  bottom: -54px;
  width: 100%;
  padding: 16px 0;
}
.bottom-header .bottom-header-col {
  display: flex;
  gap: 2.5rem;
}
.bottom-header:hover {
  background-color: var(--color-background-default);
}
.bottom-header:hover li a {
  color: var(--color-client-tertiary) !important;
}
.bottom-header:hover li a:hover {
  border-bottom: 1px solid var(--color-client-tertiary);
}
.bottom-header:hover .light-logo {
  display: initial;
}
.bottom-header:hover .dark-logo {
  display: none;
}
.bottom-header .submenu-section {
  position: absolute;
  top: 100%;
  bottom: 0;
  width: 100%;
  background-color: var(--color-background-default);
  height: 50px;
  display: none;
}
.bottom-header .submenu-section.active {
  display: block;
  z-index: 1;
}
.bottom-header .submenu-section .submenu-link {
  text-decoration: none;
}
.bottom-header .submenu-section.submenu-type-image {
  height: 200px;
}
.bottom-header .submenu-section .submenu-card .submenu-image {
  height: 155px;
  object-fit: cover;
  object-position: center;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 18px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.bottom-header .submenu-section .submenu-card .submenu-image h5 {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--color-base_client-default);
  padding: 0;
  margin: 0;
}
.bottom-header .row-list {
  justify-content: space-between;
}
.bottom-header .row-list .submenu-list {
  width: auto;
  padding: 0;
  margin: 0;
}
.bottom-header .row-list .submenu-list a {
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: var(--spacing-0-5);
}
.bottom-header .row-list .submenu-list a:hover {
  background-color: var(--color-background-primary);
  border-radius: 4px;
}
.bottom-header .row-list .submenu-list a .submenu-content h5 {
  margin: 0;
  padding: 0;
  font-weight: 400;
  font-size: var(--font-size-body);
  text-align: left;
  color: var(--color-base-default);
}
.bottom-header .all-sub-submenus-container {
  position: absolute;
  top: 165%;
  left: 0;
  right: 0;
  z-index: 999;
  pointer-events: none; /* Permet le passage de la souris */
}
.bottom-header .all-sub-submenus-container.left-submenus {
  /* Positionnement spécifique pour les menus de gauche */
}
.bottom-header .all-sub-submenus-container.right-submenus {
  /* Positionnement spécifique pour les menus de droite */
}
.bottom-header .sub-submenu-section {
  display: none;
  background-color: var(--color-background-primary);
  border-radius: 8px;
  min-width: 200px;
  padding: 15px;
  pointer-events: auto;
  padding: 36px 12px;
}
.bottom-header .sub-submenu-section.active {
  display: block;
}
.bottom-header .sub-submenu-section .sub-submenu-list {
  display: flex;
  list-style: none;
  padding: 8px;
  gap: var(--spacing-2);
}
.bottom-header .sub-submenu-section .sub-submenu-list li a {
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  color: var(--color-background-default);
  text-decoration: none;
  text-align: left;
}
.bottom-header .sub-submenu-section .sub-submenu-list li a:hover {
  text-decoration: solid;
}

.single-nos-produits .bottom-header {
  position: relative;
  bottom: 0;
}
.single-nos-produits #header-five .menu li a {
  color: var(--color-base-primary);
}
.single-nos-produits .light-logo {
  display: none;
}
.single-nos-produits .dark-logo {
  display: initial;
}

[data-theme=dark].single-nos-produits .dark-logo {
  display: initial;
}
[data-theme=dark].single-nos-produits .light-logo {
  display: none;
}

.searchform {
  position: relative;
}
.searchform #s {
  width: 100%;
  padding: 8px;
  border: 1px solid var(--color-base-default);
  border-radius: 0;
  font-size: var(--font-size-body);
  font-family: var(--font-body);
  outline: none;
  transition: border-color 0.3s ease;
  box-sizing: border-box;
  font-weight: 400;
  background-color: var(--color-background-primary);
  color: var(--color-base-default);
}
.searchform #s::placeholder {
  color: var(--color-base-default);
}
.searchform #searchsubmit {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}
.searchform #searchsubmit:hover {
  background-color: var(--color-background-primary);
}
.searchform #searchsubmit svg {
  transition: fill 0.3s ease;
}
.searchform #searchsubmit svg path {
  fill: var(--color-base-primary);
}
.searchform #searchsubmit .sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.header-five__mobile {
  display: none;
  width: 100%;
}

#header-five__mobile-inner {
  display: none;
}

#search-five__mobile-inner {
  display: none;
}

@media screen and (max-width: 992px) {
  #header-five {
    height: 8vh;
    min-height: unset;
    padding: 10px 0;
    position: sticky;
    top: 0;
    z-index: 15;
    background-color: white;
    box-shadow: 0 0 6px 3px rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
  }
  #header-five .menu-desktop {
    display: none;
  }
  #header-five .menu-mobile {
    display: block;
  }
  #header-five .menu-mobile .menu-mobile__logo {
    display: flex;
    justify-content: flex-start;
  }
  #header-five .menu-mobile .menu-mobile__logo .header-home img {
    width: 42px;
  }
  #header-five .menu-mobile .search-button {
    cursor: pointer;
    background-color: transparent;
    border: none;
  }
  [data-theme=dark] #header-five {
    background-color: var(--color-background-default);
  }
  #header-five-menu {
    position: fixed;
    background: white;
    width: 100%;
    height: 92vh;
    display: flex;
    align-items: center;
    top: -100vh;
    transition: all 500ms;
    z-index: 11;
  }
  #header-five-menu.active {
    z-index: 10;
    top: 8vh;
  }
  #header-five-menu .header-five__list ul {
    padding: 0;
    list-style: none;
    margin: 0;
    width: 100%;
  }
  #header-five-menu .header-five__list ul li {
    width: 100%;
  }
  #header-five-menu .header-five__list ul li a {
    width: 100%;
    padding: 1rem;
    text-decoration: none;
    font-family: var(--font-body);
    font-size: 1rem;
    display: block;
    color: var(--color-base-default);
  }
  .theme-toggle-mobile {
    display: flex;
    align-items: center;
    gap: var(--spacing-0-5);
    padding: var(--spacing-0-5);
  }
  .header-five__mobile {
    display: block;
  }
  .header-five__mobile .menu-mobile__burger {
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  .header-five__mobile .menu-mobile__burger .search-button {
    background-color: transparent;
    border: none;
  }
  .header-five__mobile .menu-mobile__burger .search-button svg path {
    fill: var(--color-base-default);
  }
  .header-five__mobile .menu-mobile__burger .hamburger-button {
    display: flex;
    align-items: center;
    gap: 10px;
    background-color: transparent;
    border: none;
    height: 100%;
  }
  .header-five__mobile .menu-mobile__burger .hamburger-button p {
    margin-bottom: 0;
    padding: 0;
    color: var(--color-base-default);
    font-size: 16px;
    font-family: var(--primary-font);
  }
  .header-five__mobile .menu-mobile__burger .hamburger-button .hamburger {
    background-color: transparent;
    border: none;
    display: block;
    width: 40px;
    height: 24px;
    padding: 0;
    cursor: pointer;
  }
  .header-five__mobile .menu-mobile__burger .hamburger-button .hamburger .hamburger-box {
    padding: 6px;
    display: flex;
    justify-content: left;
    position: relative;
    width: 100%;
    height: 100%;
  }
  .header-five__mobile .menu-mobile__burger .hamburger-button .hamburger .hamburger-box .hamburger-inner {
    top: auto;
    bottom: 0;
    left: 0;
    transition-delay: 0.13s;
    transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    transition-duration: 0.13s;
    width: 100%;
    position: absolute;
    display: block;
    margin-top: -2px;
    height: 4px;
    background-color: var(--color-base-default);
    border-radius: 2px;
  }
  .header-five__mobile .menu-mobile__burger .hamburger-button .hamburger .hamburger-box .hamburger-inner:before {
    content: "";
    width: 100%;
    top: -10px;
    background-color: var(--color-base-default);
    position: absolute;
    height: 4px;
    border-radius: 2px;
    display: block;
    transition: top 0.12s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, transform 0.13s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  .header-five__mobile .menu-mobile__burger .hamburger-button .hamburger .hamburger-box .hamburger-inner:after {
    content: "";
    display: block;
    border-radius: 2px;
    height: 4px;
    width: 100%;
    top: -20px;
    background-color: var(--color-base-default);
    position: absolute;
    transition: top 0.2s cubic-bezier(0.33333, 0.66667, 0.66667, 1) 0.2s, opacity 0.1s linear;
  }
  .header-five__mobile .menu-mobile__burger .hamburger-button .hamburger.active .hamburger-box .hamburger-inner {
    transition-delay: 0.22s;
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, -10px, 0) rotate(-45deg);
  }
  .header-five__mobile .menu-mobile__burger .hamburger-button .hamburger.active .hamburger-box .hamburger-inner:before {
    top: 0;
    transition: top 0.1s cubic-bezier(0.33333, 0, 0.66667, 0.33333) 0.16s, transform 0.13s cubic-bezier(0.215, 0.61, 0.355, 1) 0.25s;
    transform: rotate(-90deg);
    width: 100%;
  }
  .header-five__mobile .menu-mobile__burger .hamburger-button .hamburger.active .hamburger-box .hamburger-inner:after {
    top: 0;
    transition: top 0.2s cubic-bezier(0.33333, 0, 0.66667, 0.33333), opacity 0.1s linear 0.22s;
  }
  #header-five__mobile-inner {
    height: 92vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: -92vh;
    width: 100%;
    z-index: 1;
    transition: all 400ms;
    pointer-events: none;
    background-color: var(--color-background-default);
  }
  #header-five__mobile-inner.active {
    pointer-events: all;
    top: 8vh;
  }
  #header-five__mobile-inner ul {
    padding: 0;
    margin: 0;
    list-style: none;
    width: 100%;
  }
  #header-five__mobile-inner ul a {
    display: block;
    padding: var(--spacing-0-5);
  }
  #header-five__mobile-inner ul li {
    width: 100%;
  }
  #header-five__mobile-inner ul li.menu-item-has-children > a {
    display: flex;
    align-items: center;
    justify-content: space-between;
  }
  #header-five__mobile-inner ul li.menu-item-has-children > a:after {
    content: "";
    width: 20px;
    height: 20px;
    background-color: var(--color-base-default);
    mask: var(--arrow_menu_two) no-repeat center/contain;
    -webkit-mask: var(--arrow_menu_two) no-repeat center/contain;
  }
  #header-five__mobile-inner ul li.menu-item-has-children > a .arrow-menu path {
    fill: var(--color-base-default);
  }
  #header-five__mobile-inner ul li.menu-item-has-children > a + .sub-menu {
    display: none;
  }
  #header-five__mobile-inner ul li.menu-item-has-children > a + .sub-menu.active {
    display: block;
    padding-left: var(--spacing-0-5);
  }
  #header-five__mobile-inner ul li a {
    text-decoration: none;
    font-size: var(--font-size-body);
    color: var(--color-base-default);
  }
  #header-five__mobile-inner .header-five__mobile-menus {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    width: 90%;
  }
  #search-five__mobile-inner {
    height: 92vh;
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    top: -92vh;
    width: 100%;
    z-index: 1;
    transition: all 400ms;
    pointer-events: none;
    background-color: var(--color-background-default);
    padding-top: var(--spacing-2);
  }
  #search-five__mobile-inner.active {
    pointer-events: all;
    top: 8vh;
  }
  #search-five__mobile-inner span {
    font-weight: 700;
    margin-bottom: var(--spacing-0-5);
  }
  .top-header,
  .bottom-header {
    display: none;
  }
  [data-theme=dark] .dark-logo {
    display: initial;
  }
  [data-theme=dark] .light-logo {
    display: none;
  }
  [data-theme=light] .dark-logo {
    display: none;
  }
  [data-theme=light] .light-logo {
    display: initial;
  }
}
#footer-one .footer-first {
  padding-top: 70px;
}
#footer-one .footer-first .footer-first__col {
  display: flex;
  align-items: center;
  gap: 42px;
}
#footer-one .footer-first .footer-first__col img {
  width: 205px;
  height: fit-content;
}
#footer-one .footer-first .footer-first__col .footer-first-description {
  display: flex;
  flex-direction: column;
  gap: 42px;
  position: relative;
  padding-left: 30px;
}
#footer-one .footer-first .footer-first__col .footer-first-description:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80px;
  width: 1px;
  background-color: #000000;
}
#footer-one .footer-first .footer-first__col .footer-first-description p,
#footer-one .footer-first .footer-first__col .footer-first-description a {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  display: block;
  margin: 0;
  padding: 0;
  text-decoration: none;
  text-align: left;
}
#footer-one .footer-first .footer-second__col p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  color: black;
  padding: 0;
  margin-bottom: 15px;
}
#footer-one .footer-first .footer-second__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer-one .footer-first .footer-second__col ul li {
  margin-bottom: 10px;
}
#footer-one .footer-first .footer-second__col ul li a {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: black;
  opacity: 0.5;
  text-decoration: none;
  text-align: left;
}
#footer-one .footer-second {
  margin-top: 70px;
  padding: 24px 0;
}
#footer-one .footer-second .row {
  align-items: center;
}
#footer-one .footer-second p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 0;
}
#footer-one .footer-second p a {
  color: #000000;
  text-decoration: none;
  display: initial;
  margin: 0;
  text-align: left;
  margin-bottom: 0;
}
#footer-one .footer-second ul {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  gap: 32px;
  list-style: none;
}
#footer-one .footer-second ul li a {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  text-decoration: none;
}
#footer-one .footer-third p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: black;
}
#footer-one .list-socials {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer-one .list-socials li {
  margin-bottom: 15px;
}
#footer-one .list-socials li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(23, 23, 23, 0.4196078431);
}
#footer-one .list-socials li a img {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 1200px) {
  #footer-one .footer-first .footer-first__col {
    align-items: center;
  }
  #footer-one .footer-first .footer-first__col img {
    width: 135px;
  }
}
@media screen and (max-width: 992px) {
  #footer-one .footer-third {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  #footer-one .footer-third .list-socials {
    display: flex;
    gap: 15px;
  }
  #footer-one .footer-second {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #footer-one .footer-first .footer-second__col ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #footer-one .footer-third {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  #footer-one .footer-first .footer-first__col {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  #footer-one .footer-first .footer-first__col .footer-first-description {
    padding-left: 0;
    text-align: left;
    gap: 12px;
    margin-bottom: 12px;
    align-items: left;
  }
  #footer-one .footer-first .footer-first__col .footer-first-description p {
    text-align: left;
  }
  #footer-one .footer-first .footer-first__col .footer-first-description a {
    text-align: left;
  }
  #footer-one .footer-first .footer-first__col .footer-first-description:before {
    display: none;
  }
  #footer-one .footer-first .footer-second__col ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
  }
  #footer-one .footer-second ul {
    justify-content: flex-start;
  }
  #footer-one .footer-second p {
    text-align: left;
  }
  #footer-one .footer-third {
    margin-top: 5px;
  }
  #footer-one .footer-third .list-socials {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
}
#footer-two {
  background-color: var(--primary-color);
  padding: 32px 0 !important;
}
#footer-two .first_line {
  align-items: center;
  padding-bottom: 32px;
}
#footer-two .first_line span {
  font-size: 40px;
  font-weight: 800;
  text-transform: uppercase;
  font-family: var(--primary-font);
  color: white;
  line-height: 1;
}
#footer-two .first_line .engagements {
  display: flex;
  background-color: white;
  border-radius: 100px;
  width: 100%;
  justify-content: space-between;
  padding: 12px 16px;
  align-items: center;
}
#footer-two .first_line .engagements a {
  text-decoration: none;
  display: block;
}
#footer-two .first_line .engagements .picto {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
#footer-two .first_line .engagements .picto img {
  width: 72px;
  height: 72px;
}
#footer-two .first_line .engagements .picto p {
  font-family: var(--primary-font);
  color: var(--primary-color);
  font-size: 12px;
  text-align: center;
  max-width: 127px;
  line-height: 1;
  margin-bottom: 0;
}
#footer-two .second_line {
  border-top: 3px solid white;
  padding-top: 32px;
  align-items: center;
}
#footer-two .second_line .logo_bloc {
  width: 100%;
  padding: 20px;
}
#footer-two .second_line .logo_bloc.logo_white {
  background-color: white;
}
#footer-two .second_line .logo_bloc img {
  width: 100%;
}
#footer-two .second_line .contact-details p {
  color: white;
  text-align: center;
  margin-bottom: 0;
}
#footer-two .second_line .contact-details p.site-name {
  font-weight: 700;
}
#footer-two .second_line .description-seo {
  font-size: 12px;
  text-align: justify;
  font-family: var(--primary-font);
  color: white;
}
#footer-two .second_line .menu {
  display: flex;
  list-style: none;
  gap: 18px;
  padding-left: 0;
}
#footer-two .second_line .menu li {
  display: flex;
  align-items: center;
  gap: 10px;
}
#footer-two .second_line .menu li:before {
  content: "";
  height: 1rem;
  width: 2px;
  background: var(--secondary-color);
}
#footer-two .second_line .menu li a {
  font-size: 10px;
  color: white;
  text-decoration: none;
}
#footer-two .second_line .menu li a:hover {
  text-decoration: underline;
}

#footer-three .footer-first {
  padding-top: 30px;
}
#footer-three .footer-first .footer-first__col {
  display: flex;
  align-items: center;
  gap: 42px;
}
#footer-three .footer-first .footer-first__col img {
  width: 205px;
  height: fit-content;
}
#footer-three .footer-first .footer-first__col .footer-first-description {
  display: flex;
  flex-direction: column;
  position: relative;
  padding-left: 30px;
}
#footer-three .footer-first .footer-first__col .footer-first-description:before {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  height: 80px;
  width: 1px;
  background-color: #0090ad;
}
#footer-three .footer-first .footer-first__col .footer-first-description p,
#footer-three .footer-first .footer-first__col .footer-first-description a {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  display: block;
  margin: 0;
  padding: 0;
  text-decoration: none;
  text-align: left;
}
#footer-three .footer-first .footer-first__col .footer-first-description p span,
#footer-three .footer-first .footer-first__col .footer-first-description a span {
  font-weight: 800;
  color: var(--primary-color);
}
#footer-three .footer-first .footer-second__col p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  color: black;
  padding: 0;
  margin-bottom: 15px;
}
#footer-three .footer-first .footer-second__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer-three .footer-first .footer-second__col ul li {
  margin-bottom: 10px;
}
#footer-three .footer-first .footer-second__col ul li a {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: black;
  opacity: 0.5;
  text-decoration: none;
  text-align: left;
}
#footer-three .footer-second {
  margin-top: 35px;
  padding: 24px 0;
  border-top: 2px solid var(--primary-color);
}
#footer-three .footer-second .row {
  align-items: center;
}
#footer-three .footer-second p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  margin-bottom: 0;
}
#footer-three .footer-second p a {
  color: #000000;
  text-decoration: none;
  display: initial;
  margin: 0;
  text-align: left;
  margin-bottom: 0;
}
#footer-three .footer-second ul {
  display: flex;
  justify-content: flex-end;
  padding: 0;
  margin: 0;
  gap: 20px;
  list-style: none;
}
#footer-three .footer-second ul li a {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  text-decoration: none;
}
#footer-three .footer-third p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
  color: black;
}
#footer-three .list-socials {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer-three .list-socials li {
  margin-bottom: 15px;
}
#footer-three .list-socials li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  gap: 10px;
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: rgba(23, 23, 23, 0.4196078431);
}
#footer-three .list-socials li a img {
  width: 24px;
  height: 24px;
}

@media screen and (max-width: 1200px) {
  #footer-three .footer-first .footer-first__col {
    align-items: center;
  }
  #footer-three .footer-first .footer-first__col img {
    width: 135px;
  }
}
@media screen and (max-width: 992px) {
  #footer-three .footer-third {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  #footer-three .footer-third .list-socials {
    display: flex;
    gap: 15px;
  }
  #footer-three .footer-second {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #footer-three .footer-first .footer-second__col ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #footer-three .footer-third {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  #footer-three .footer-first .footer-first__col {
    flex-direction: column;
    gap: 18px;
    align-items: flex-start;
  }
  #footer-three .footer-first .footer-first__col .footer-first-description {
    padding-left: 0;
    text-align: left;
    gap: 12px;
    margin-bottom: 12px;
    align-items: left;
  }
  #footer-three .footer-first .footer-first__col .footer-first-description p {
    text-align: left;
  }
  #footer-three .footer-first .footer-first__col .footer-first-description a {
    text-align: left;
  }
  #footer-three .footer-first .footer-first__col .footer-first-description:before {
    display: none;
  }
  #footer-three .footer-first .footer-second__col {
    display: flex;
    justify-content: left;
    margin-top: 30px;
  }
  #footer-three .footer-first .footer-second__col ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    flex-direction: column;
  }
  #footer-three .footer-second ul {
    justify-content: flex-start;
  }
  #footer-three .footer-second p {
    text-align: left;
  }
  #footer-three .footer-third {
    margin-top: 5px;
  }
  #footer-three .footer-third .list-socials {
    display: flex;
    gap: 0;
    flex-direction: column;
  }
}
#footer-four {
  background-color: var(--color-client-tertiary);
}
#footer-four .footer-first {
  padding: 64px 0;
}
#footer-four .footer-first .footer-row__first {
  justify-content: space-between;
}
#footer-four .footer-first .footer-row__first .footer-first__col .footer-first__col-inner img {
  width: 70px;
  height: 70px;
  margin-bottom: var(--spacing-2);
}
#footer-four .footer-first .footer-row__first .footer-first__col .footer-first__col-inner p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 20px;
  color: #3f3f3f;
  margin-bottom: var(--spacing-2);
}
#footer-four .footer-first .footer-row__first .footer-first__col .footer-first__col-inner p span {
  font-weight: 700;
}
#footer-four .footer-first .footer-row__first .footer-menu {
  display: flex;
  gap: 1rem;
}
#footer-four .footer-first .footer-row__first .footer-menu .footer-first__menu span {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--font-size-body);
  line-height: 20px;
  color: #3f3f3f;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}
#footer-four .footer-first .footer-row__first .footer-menu .footer-first__menu p {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--font-size-body);
  line-height: 20px;
  color: #3f3f3f;
  font-weight: 400;
}
#footer-four .footer-first .footer-row__first .footer-menu .footer-first__menu .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer-four .footer-first .footer-row__first .footer-menu .footer-first__menu .menu li {
  margin-bottom: 1rem;
}
#footer-four .footer-first .footer-row__first .footer-menu .footer-first__menu .menu li a {
  color: #3f3f3f;
  text-decoration: none;
  font-family: var(--font-body);
  font-size: var(--font-size-body);
  line-height: 20px;
  color: #3f3f3f;
}
#footer-four .footer-first .footer-row__second {
  justify-content: space-between;
  align-items: flex-end;
}
#footer-four .footer-first .footer-row__second .footer-first-description p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 20px;
  color: #3f3f3f;
}
#footer-four .footer-first .footer-row__second .footer-first-description p span {
  font-weight: 700;
}
#footer-four .footer-first .footer-row__second .footer-first-description a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  margin-top: 1rem;
}
#footer-four .footer-first .footer-row__second .footer-first-description a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
#footer-four .footer-first .footer-row__second .footer-first-description a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}
#footer-four .footer-first .footer-row__second .list-socials {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
#footer-four .footer-first .footer-row__second .list-socials li a {
  display: block;
}
#footer-four .footer-first .footer-row__second .list-socials li a img {
  height: 22px;
  width: auto;
}

@media screen and (max-width: 1200px) {
  #footer-one .footer-first .footer-first__col {
    align-items: center;
  }
  #footer-one .footer-first .footer-first__col img {
    width: 135px;
  }
}
@media screen and (max-width: 992px) {
  #footer-one .footer-third {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
  }
  #footer-one .footer-third .list-socials {
    display: flex;
    gap: 15px;
  }
  #footer-one .footer-second {
    margin-top: 40px;
  }
}
@media screen and (max-width: 768px) {
  #footer-one .footer-first .footer-second__col ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #footer-one .footer-third {
    display: block;
  }
}
@media screen and (max-width: 576px) {
  #footer-four .footer-first .footer-row__first .footer-menu {
    flex-direction: column;
  }
  #footer-four .footer-first .footer-row__first .footer-first__col .footer-first__col-inner img {
    margin-bottom: var(--spacing-1);
  }
}
#footer-fifth {
  background-color: var(--color-background-primary);
  border-radius: var(--spacing-2) var(--spacing-2) 0 0;
  box-shadow: -1px -16px 30.2px rgba(0, 0, 0, 0.07);
  margin-top: -20px;
}
#footer-fifth .footer-fifth {
  padding: 64px 0;
}
#footer-fifth .footer-fifth .footer-row__fifth {
  justify-content: space-between;
}
#footer-fifth .footer-fifth .footer-row__fifth .list-socials {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
#footer-fifth .footer-fifth .footer-row__fifth .list-socials li a {
  display: block;
}
#footer-fifth .footer-fifth .footer-row__fifth .list-socials li a img {
  height: 22px !important;
  width: auto;
}
#footer-fifth .footer-fifth .footer-row__fifth .footer-fifth__col .footer-fifth__col-inner img {
  height: 40px;
  margin-bottom: var(--spacing-1);
}
#footer-fifth .footer-fifth .footer-row__fifth .footer-fifth__col .footer-fifth__col-inner p {
  margin-bottom: var(--spacing-2);
  margin-right: var(--spacing-2);
  font-family: var(--font-titles);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 140%;
  color: var(--color-base-default);
}
#footer-fifth .footer-fifth .footer-row__fifth .footer-fifth__col .footer-fifth__col-inner p span {
  font-weight: 700;
}
#footer-fifth .footer-fifth .footer-row__fifth .footer-menu {
  display: flex;
  gap: 1rem;
  justify-content: space-evenly;
}
#footer-fifth .footer-fifth .footer-row__fifth .footer-menu .footer-fifth__menu span {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--font-size-body);
  line-height: 20px;
  font-weight: 700;
  margin-bottom: 1.5rem;
  display: block;
}
#footer-fifth .footer-fifth .footer-row__fifth .footer-menu .footer-fifth__menu p {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--font-size-body);
  line-height: 20px;
  color: #3f3f3f;
  font-weight: 400;
}
#footer-fifth .footer-fifth .footer-row__fifth .footer-menu .footer-fifth__menu .menu {
  list-style: none;
  padding: 0;
  margin: 0;
}
#footer-fifth .footer-fifth .footer-row__fifth .footer-menu .footer-fifth__menu .menu li {
  margin-bottom: 1rem;
}
#footer-fifth .footer-fifth .footer-row__fifth .footer-menu .footer-fifth__menu .menu li a {
  text-decoration: none;
  font-family: var(--font-titles);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-small);
  line-height: 140%;
  color: var(--color-base-default);
}
#footer-fifth .footer-fifth .footer-row__fifth .footer-menu .footer-fifth__menu .menu li.is-title a {
  font-family: var(--font-titles);
  font-style: normal;
  font-size: var(--font-size-body);
  line-height: 20px;
  color: var(--color-base-default);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: block;
  text-decoration-line: underline;
  text-underline-offset: 3px;
}
#footer-fifth .footer-fifth .footer-row__fifth .footer-menu .footer-fifth__menu .menu li.is-title a[href="#"] {
  text-decoration: none;
  pointer-events: none;
}
#footer-fifth .footer-fifth .footer-row__fifth .footer-menu .footer-fifth__menu .menu .sub-menu {
  padding-left: var(--spacing-1-5);
  margin-top: var(--spacing-1);
}
#footer-fifth .footer-fifth .footer-row__second {
  justify-content: space-between;
  align-items: flex-end;
}
#footer-fifth .footer-fifth .footer-row__second .footer-first-description p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 20px;
  color: #3f3f3f;
}
#footer-fifth .footer-fifth .footer-row__second .footer-first-description p span {
  font-weight: 700;
}
#footer-fifth .footer-fifth .footer-row__second .footer-first-description a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  margin-top: 1rem;
}
#footer-fifth .footer-fifth .footer-row__second .footer-first-description a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
#footer-fifth .footer-fifth .footer-row__second .footer-first-description a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}
#footer-fifth .footer-fifth .footer-row__second span {
  text-align: right;
  display: block;
  margin-top: var(--spacing-2);
  color: var(--color-base-default);
}
#footer-fifth .footer-fifth .footer-row__second span a {
  color: var(--color-base-default);
  text-decoration: none;
}

.top-footer__switch {
  display: none;
}

[data-theme=dark] #footer-fifth .footer-fifth .footer-row__fifth .list-socials li a img {
  filter: invert(1);
}

@media screen and (max-width: 1200px) {
  #footer-one .footer-first .footer-first__col {
    align-items: center;
  }
  #footer-one .footer-first .footer-first__col img {
    width: 135px;
  }
}
@media screen and (max-width: 992px) {
  #footer-fifth .footer-fifth .footer-row__second span {
    text-align: center;
  }
  #footer-fifth .footer-fifth .footer-row__fifth .footer-menu {
    justify-content: space-between;
  }
  .top-footer__switch {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--spacing-0-5);
    margin-top: var(--spacing-1);
  }
  .top-footer__switch .theme-help {
    background: none;
    border: none;
    cursor: pointer;
  }
}
@media screen and (max-width: 768px) {
  #footer-fifth .footer-fifth .footer-row__fifth .footer-menu {
    flex-wrap: wrap;
  }
  #footer-fifth .footer-fifth .footer-row__fifth .footer-menu .footer-fifth__menu {
    width: 48%;
  }
}
@media screen and (max-width: 576px) {
  #footer-four .footer-first .footer-row__first .footer-menu {
    flex-direction: column;
  }
  #footer-four .footer-first .footer-row__first .footer-first__col .footer-first__col-inner img {
    margin-bottom: var(--spacing-1);
  }
}
#archive-one-featured {
  margin-bottom: 30px;
}
#archive-one-featured .featured-one {
  background-color: #e8f7f6;
  display: flex;
  padding: 40px 80px;
  align-items: flex-start;
  gap: 68px;
  text-decoration: none;
}
#archive-one-featured .featured-one img {
  width: 600px;
  max-width: 600px;
  height: 400px;
  object-fit: cover;
}
#archive-one-featured .featured-one .featured-one__content {
  width: 400px;
}
#archive-one-featured .featured-one .featured-one__content h1 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 29px;
  color: black;
  margin-bottom: 20px;
}
#archive-one-featured .featured-one .featured-one__content p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: black;
}
#archive-one-featured .featured-one .featured-one__content button {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
}
#archive-one-featured .featured-one .featured-one__content button:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
#archive-one-featured .featured-one .featured-one__content button:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 1200px) {
  #archive-one-featured .featured-one {
    padding: 40px;
  }
  #archive-one-featured .featured-one img {
    width: 460px;
    height: 260px;
  }
}
@media screen and (max-width: 992px) {
  #archive-one-featured .featured-one {
    padding: 20px;
  }
  #archive-one-featured .featured-one img {
    width: 300px;
    height: 210px;
  }
}
@media screen and (max-width: 768px) {
  #archive-one-featured .featured-one {
    flex-direction: column;
    gap: 18px;
  }
  #archive-one-featured .featured-one img {
    width: 100%;
    height: 210px;
  }
  #archive-one-featured .featured-one .featured-one__content {
    width: 100%;
  }
}
#archive-two-blog h1 {
  font-size: var(--size-h1);
  text-align: center;
  position: relative;
}
#archive-two-blog h1:after {
  content: "";
  height: 3px;
  width: 20%;
  background-color: #00b1eb;
  position: absolute;
  bottom: -16px;
  left: 50%;
  transform: translate(-50%, -50%);
}
#archive-two-blog .list-article {
  margin-bottom: 32px;
}

#archive-three-blog h2 {
  margin: 0;
  margin: 1rem 0;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-h2);
  line-height: 35px;
  text-transform: uppercase;
  color: var(--color-base-default);
}
#archive-three-blog h2 em {
  font-family: var(--font-titles);
  font-style: normal;
  font-size: calc(var(--font-size-h2) + 5px);
}
#archive-three-blog .col-sticky {
  position: sticky;
  top: 2rem; /* Adjust as needed for spacing from top */
}

.list-article-three .article-three-big a {
  display: block;
  text-decoration: none;
  height: 80vh;
  display: flex;
  align-items: flex-end;
  padding: var(--spacing-2) var(--spacing-2);
  background-size: cover;
  background-position: center;
}
.list-article-three .article-three-big a .article-description h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-h2);
  line-height: 39px;
  text-transform: uppercase;
  color: white;
  margin: 0;
  padding: 0;
}
.list-article-three .article-three-big a .article-description h3 em {
  font-family: var(--font-titles);
  font-style: normal;
  font-size: calc(var(--font-size-h2) + 5px);
}
.list-article-three .article-three-big a .article-description p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 24px;
  color: #ffffff;
}
.list-article-three__flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 2rem;
}
.list-article-three__flex article {
  width: 306px;
  display: block;
  margin-bottom: 40px;
}

.single-post .list-one {
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 1200px) {
  .list-article-three__flex article {
    width: 250px;
    display: block;
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 992px) {
  .list-article-three__flex article {
    width: 190px;
    display: block;
    margin-bottom: 40px;
  }
  .list-article-three .article-three-big a {
    height: 75vh;
  }
  #archive-three-blog .col-sticky {
    top: 5rem;
  }
}
@media screen and (max-width: 768px) {
  .list-article-three .article-three-big a {
    height: 25vh;
  }
  .list-article-three__flex article {
    width: 48%;
  }
}
@media screen and (max-width: 576px) {
  .list-article-three .article-three-big a {
    position: relative;
    isolation: isolate;
    padding: var(--spacing-0-5);
  }
  .list-article-three .article-three-big a:before {
    content: "";
    z-index: -1;
    pointer-events: none;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
  }
  .list-article-three .article-three-big a .article-description h3 {
    line-height: 1;
  }
}
.cards-one .row {
  justify-content: center;
}
.cards-one .row .cards-one__flex {
  display: flex;
  justify-content: space-between;
  gap: 5rem;
}
.cards-one .row .item {
  padding: var(--spacing-2) var(--spacing-1);
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  aspect-ratio: 1;
  flex: 1;
}
.cards-one .row .item.item-watermark {
  isolation: isolate;
  overflow: hidden;
  position: relative;
}
.cards-one .row .item.item-watermark:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -10px;
  height: 100px;
  background-image: var(--watermark);
  background-size: contain;
  background-repeat: repeat-x;
  opacity: 0.1;
  filter: contrast(0.2);
  z-index: -1;
}
.cards-one .row .item span {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: 60px;
  line-height: 109%;
  /* identical to box height, or 81px */
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.cards-one .row .item h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 2rem;
  line-height: 39px;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: var(--spacing-1);
}
.cards-one .row .item p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  font-size: var(--font-size-small);
  line-height: 109%;
  letter-spacing: -0.02em;
  min-height: 40px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.cards-one .row .item a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  width: 100%;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cards-one .row .item a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.cards-one .row .item a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 1400px) {
  .cards-one .row .cards-one__flex {
    gap: 3rem;
  }
}
@media screen and (max-width: 992px) {
  .cards-one .row .cards-one__flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cards-one .row .cards-one__flex .item {
    width: 45%;
    flex: unset;
  }
  .cards-one .row .item span {
    font-size: 40px;
    line-height: 1;
  }
  .cards-one .row .item h3 {
    font-size: 20px;
    line-height: 1;
  }
}
@media screen and (max-width: 768px) {
  .cards-one .row .cards-one__flex {
    gap: 1rem;
  }
  .cards-one .row .cards-one__flex .item {
    width: 47%;
  }
}
@media screen and (max-width: 576px) {
  .cards-one .row .cards-one__flex {
    flex-wrap: wrap;
    justify-content: center;
  }
  .cards-one .row .cards-one__flex .item {
    width: 100%;
    aspect-ratio: unset;
    flex: unset;
    padding: var(--spacing-1);
  }
}
.cards-two {
  padding: 100px 0;
}
.cards-two h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 32px;
  text-align: center;
  margin-bottom: 40px;
}
.cards-two .item {
  width: 375px;
  margin: auto;
}
.cards-two .item h3 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 32px;
  margin-bottom: 16px;
}
.cards-two .item img {
  width: 98px;
  height: 98px;
  margin-bottom: 16px;
}
.cards-two .item p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}

@media screen and (max-width: 576px) {
  .cards-two {
    padding: 25px 0;
  }
  .cards-two h2 {
    font-size: 20px;
    line-height: 23px;
  }
  .cards-two .item img {
    width: 70px;
    height: 70px;
    margin-bottom: 8px;
  }
  .cards-two .item h3 {
    font-size: 20px;
    line-height: 26px;
  }
}
.cards-three {
  background-color: var(--color-background-primary);
}
.cards-three .row-overlaping {
  transform: translateY(-64px);
}
.cards-three .cards-inner {
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  border-radius: 0.5rem;
  padding: var(--spacing-2);
  width: 100%;
  text-decoration: none;
  position: relative;
  isolation: isolate;
  margin-bottom: var(--spacing-1-5);
}
.cards-three .cards-inner:after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.cards-three .cards-inner .hover-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
  aspect-ratio: unset;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: 400ms;
}
.cards-three .cards-inner .hover-image img {
  width: 100%;
  height: 100%;
}
.cards-three .cards-inner:hover .hover-image {
  opacity: 1;
}
.cards-three .cards-inner.square {
  aspect-ratio: 1;
}
.cards-three .cards-inner.rectangle {
  aspect-ratio: 0.7/1;
}
.cards-three .cards-inner .cards-inner__content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-end;
  gap: 1rem;
}
.cards-three .cards-inner .cards-inner__content span {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.cards-three .cards-inner .cards-inner__content button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-1);
  width: 48px;
  height: 40px;
  background: var(--color-background-default);
  border: 1px solid var(--color-client-secondary);
  border-radius: 4px;
  cursor: pointer;
}
.cards-three .cards-inner .cards-inner__content button svg path {
  fill: var(--color-base-default);
}

@media screen and (max-width: 1200px) {
  .cards-three .cards-inner {
    padding: var(--spacing-1);
  }
  .cards-three .cards-inner .cards-inner__content {
    flex-direction: column;
  }
}
@media screen and (max-width: 992px) {
  .cards-three .cards-inner {
    margin-bottom: var(--spacing-1);
  }
  .cards-three .cards-inner .cards-inner__content {
    flex-direction: row;
  }
  .cards-three .cards-inner .cards-inner__content span {
    flex: 1;
  }
  .cards-three .cards-inner .cards-inner__content button {
    height: unset;
    aspect-ratio: 1;
    width: 50px;
    padding: var(--spacing-0-5);
    max-width: 30px;
  }
  .cards-three .cards-inner.rectangle {
    aspect-ratio: 1;
  }
}
@media screen and (max-width: 576px) {
  .cards-three .cards-inner {
    width: 100%;
    padding: var(--spacing-0-5);
    margin-bottom: var(--spacing-0-5);
  }
  .cards-three .cards-inner .cards-inner__content {
    gap: 0;
  }
  .cards-three .cards-inner .cards-inner__content span {
    font-size: 20px;
  }
  .cards-three .cards-inner .cards-inner__content button {
    width: 38px;
    min-width: 38px;
    height: 38px;
    padding: var(--spacing-0-5);
  }
}
@media screen and (max-width: 400px) {
  .cards-three .cards-inner .cards-inner__content {
    flex-direction: column;
  }
}
.cards-four {
  background-color: var(--color-background-primary);
}
.cards-four .row {
  justify-content: center;
}
.cards-four .cards-inner {
  display: flex;
  align-items: flex-end;
  background-position: center;
  background-size: cover;
  width: 100%;
  text-decoration: none;
  border: 1px solid;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 8px;
  height: 100%;
  position: relative;
  isolation: isolate;
  background: var(--color-background-default);
  background-clip: padding-box; /* !importanté */
  border: solid 1px var(--color-client-secondary); /* !importanté */
  padding: var(--spacing-1) var(--spacing-0-5);
  margin-bottom: var(--spacing-1-5);
}
.cards-four .cards-inner.hover-image {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: -1;
}
.cards-four .cards-inner.square {
  aspect-ratio: 1;
}
.cards-four .cards-inner.rectangle {
  aspect-ratio: 0.7/1;
}
.cards-four .cards-inner .cards-inner__content {
  display: flex;
  justify-content: space-between;
  width: 100%;
  align-items: flex-start;
  gap: 1rem;
  flex-direction: column;
}
.cards-four .cards-inner .cards-inner__content .inner-icon {
  /* Auto layout */
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  width: 57px;
  aspect-ratio: 1;
  background: var(--color-client-secondary);
  border: 1px solid var(--color-client-default);
  border-radius: 8px;
}
.cards-four .cards-inner .cards-inner__content .inner-icon img {
  width: 100%;
  height: 100%;
}
.cards-four .cards-inner .cards-inner__content h3 {
  font-family: var(--font-titles);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--color-base-primary);
}
.cards-four .cards-inner .cards-inner__content span,
.cards-four .cards-inner .cards-inner__content p {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-small);
  line-height: 120%;
  letter-spacing: -0.02em;
}
.cards-four .cards-inner .cards-inner__content button {
  box-sizing: border-box;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  padding: var(--spacing-1);
  width: 48px;
  height: 40px;
  background: var(--color-background-default);
  border: 1px solid var(--color-client-secondary);
  border-radius: 4px;
  cursor: pointer;
  cursor: pointer;
}
.cards-four .cards-inner .cards-inner__content button svg path {
  fill: var(--color-base-default);
}

@media screen and (max-width: 992px) {
  .cards-four .col-12 {
    margin-bottom: var(--spacing-1);
  }
}
.content-text-img-one {
  padding: 32px 0;
  background-color: var(--color-background-primary);
}
.content-text-img-one .row {
  align-items: center;
}
.content-text-img-one .row-alternate {
  flex-direction: row-reverse;
}
.content-text-img-one span {
  font-family: var(--primary-font);
  font-style: normal;
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}
.content-text-img-one ul {
  padding-left: 15px;
}
.content-text-img-one ul li {
  font-style: normal;
  list-style: initial;
}
.content-text-img-one a {
  margin-top: var(--spacing-2);
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
}
.content-text-img-one a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.content-text-img-one a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}
.content-text-img-one img {
  width: 100%;
  height: auto;
  border-radius: var(--spacing-1-5);
}
.content-text-img-one .col-image {
  position: relative;
}
.content-text-img-one .col-image .logo_watermark {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 80px;
  height: 80px;
}
.content-text-img-one .col-image .logo_watermark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .content-text-img-one {
    padding: 0;
  }
  .content-text-img-one a {
    margin-top: var(--spacing-1);
  }
  .content-text-img-one .col-image {
    margin-top: 30px;
  }
}
.content-text-two {
  position: relative;
}
.content-text-two .content-text-two__absolute {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.content-text-two .content-text-two__absolute img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-text-two.content-text-two-reverse .row {
  flex-direction: row-reverse;
}
.content-text-two.content-text-two-reverse .content-text-two__absolute {
  right: unset;
  left: 0;
}
.content-text-two .inner {
  padding: 0 0;
}
.content-text-two .inner .inner_subtitle {
  background-color: black;
  padding: 4px;
  color: white;
  line-height: 1;
  font-family: var(--font-body);
}
.content-text-two .inner h2 em {
  font-family: var(--font-titles);
  font-style: normal;
  font-size: calc(var(--font-size-h2) + 5px);
}
.content-text-two .inner h3 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.content-text-two .inner p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 24px;
  max-width: 75%;
}
.content-text-two .inner a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  margin-top: var(--spacing-2);
}
.content-text-two .inner a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.content-text-two .inner a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}
.content-text-two .inner ul {
  padding: 0;
  margin: 0;
  padding-left: var(--spacing-1-5);
}
.content-text-two .inner ul li {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 24px;
  margin: 0;
  padding: 0;
}
.content-text-two .inner ul li img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}
.content-text-two .inner ul li div h3 {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
}
.content-text-two .inner ul li div p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 24px;
  margin: 0;
  padding: 0;
}

@media screen and (max-width: 992px) {
  .content-text-two .inner {
    padding: 40px 0;
  }
}
@media screen and (max-width: 768px) {
  .content-text-two {
    padding-top: var(--spacing-4);
  }
  .content-text-two .inner {
    padding: 20px 0;
  }
  .content-text-two .inner p {
    max-width: unset;
  }
  .content-text-two .content-text-two__absolute {
    left: 0;
    width: 100%;
    height: 130px;
  }
}
.content-text-one {
  padding: 4rem 0 1rem 0;
}
.content-text-one span.subtitle {
  font-family: var(--primary-font);
  font-style: normal;
  color: var(--primary-color);
  display: block;
  margin-bottom: 10px;
  font-style: normal;
  font-weight: 500;
  font-size: 20px;
  line-height: 24px;
}
.content-text-one h1 {
  font-family: var(--font-body);
  font-size: var(--font-size-h1);
  font-style: normal;
  font-weight: 600;
  line-height: 109%;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 40px;
}
.content-text-one h1 em {
  font-family: var(--font-titles);
  font-style: normal;
  font-size: calc(var(--font-size-h1) + 3px);
}
.content-text-one h1 span {
  font-size: unset;
}
.content-text-one h2 {
  font-family: var(--font-body);
  font-style: normal;
  font-size: var(--font-size-h2);
  line-height: 31px;
  color: #000000;
  padding-left: 8px;
  margin-bottom: 16px;
  position: relative;
}
.content-text-one h2 em {
  font-family: var(--font-titles);
  font-style: normal;
  font-size: calc(var(--font-size-h2) + 5px);
}
.content-text-one hr {
  width: 20%;
  height: 3px;
  background-color: var(--secondary-color);
  margin: auto;
  border-top: 3px solid;
  color: var(--secondary-color);
  opacity: 1;
  margin-bottom: 16px;
}
.content-text-one h3 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 600;
  font-size: var(--size-h3);
  line-height: 24px;
}
.content-text-one p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-h3);
  margin-bottom: 16px;
  line-height: 1.6;
}
.content-text-one p span {
  padding: 4px;
}
.content-text-one a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
}
.content-text-one a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.content-text-one a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 1200px) {
  .content-text-one h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 992px) {
  .content-text-one h2 br,
  .content-text-one h3 br {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .content-text-one p span {
    display: inline-block;
    margin: 4px;
  }
}
@media screen and (max-width: 576px) {
  .content-text-one {
    padding: var(--spacing-1) 0;
  }
  .content-text-one h3 {
    font-size: 17px;
    line-height: 18px;
  }
}
.title-single {
  background-color: var(--color-background-primary);
}
.title-single.background {
  padding: var(--spacing-4) 0;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.title-single .btnFill {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  margin: auto;
  margin-top: var(--spacing-2);
}
.title-single .btnFill:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.title-single .btnFill:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}
.title-single h1 {
  font-family: var(--primary-font);
  font-size: var(--size-h1);
}
.title-single h4 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 47px;
}
.title-single hr {
  width: 20%;
  height: 3px;
  background-color: var(--secondary-color);
  margin: auto;
  border-top: 3px solid;
  color: var(--secondary-color);
  opacity: 1;
  margin-bottom: 16px;
}
@media screen and (max-width: 1200px) {
  .title-single h2 {
    font-style: normal;
    font-weight: 700;
  }
  .title-single h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 47px;
  }
}
@media screen and (max-width: 992px) {
  .title-single h4 {
    font-style: normal;
    font-weight: 700;
    font-size: 36px;
    line-height: 47px;
  }
}
@media screen and (max-width: 768px) {
  .title-single.background {
    background-image: unset !important;
    padding: 0;
  }
}
.video iframe {
  width: 100%;
  aspect-ratio: 16/6;
}

.content-slider .row {
  justify-content: center;
}
.content-slider .row .content-slider__inner {
  display: flex;
  justify-content: center;
}
.content-slider .row .content-slider__inner.row-reverse {
  flex-direction: row-reverse;
}
.content-slider .row .content-slider__inner .content-slider__inner-global {
  width: 44%;
  position: relative;
}
.content-slider .row .content-slider__inner .content-slider__inner-global .content-slider__buttons {
  position: absolute;
  bottom: 40px;
  display: flex;
  justify-content: center;
  gap: 15rem;
  width: 100%;
}
.content-slider .row .content-slider__inner .content-slider__inner-global .content-slider__buttons button {
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.content-slider .row .content-slider__inner .content-slider__inner-slick {
  width: 100%;
  aspect-ratio: 1;
}
.content-slider .row .content-slider__inner .content-slider__inner-slick .content-slider__slide {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.content-slider .row .content-slider__inner .content-slider__inner-slick .content-slider__slide .content-slider__caption {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  width: 100%;
  height: 100%;
}
.content-slider .row .content-slider__inner .content-slider__inner-slick .content-slider__slide .content-slider__caption span {
  max-width: 50%;
  margin: auto;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 29px;
  text-align: center;
  color: #faedca;
  margin-bottom: 40px;
}
.content-slider .row .content-slider__inner .content-slider__inner-slick .content-slider__slide .content-slider__caption span.subcaption {
  display: block;
  width: 100%;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  font-size: var(--font-size-small);
  line-height: 18px;
  text-align: center;
  letter-spacing: -0.02em;
  color: #faedca;
  max-width: 89%;
  margin: auto;
}
.content-slider .row .content-slider__inner .content-slider__inner-slick div {
  height: 100%;
}
.content-slider .row .content-slider__inner .content-slider__inner-content {
  width: 51%;
  padding: 0 38px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.content-slider .row .content-slider__inner .content-slider__inner-content ul {
  padding-left: 1rem;
}
.content-slider .row .content-slider__inner .content-slider__inner-content ul li {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.content-slider .row .content-slider__inner .content-slider__inner-content ul li span {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.content-slider .row .content-slider__inner .content-slider__inner-content ul li::marker {
  color: inherit;
}
.content-slider .row .content-slider__inner .content-slider__inner-content h2 {
  font-family: var(--font-body);
  font-style: normal;
  margin: 0;
  font-weight: 700;
  font-size: var(--font-size-h2);
  line-height: 38px;
}
.content-slider .row .content-slider__inner .content-slider__inner-content h2 em {
  font-family: var(--font-titles);
  font-size: calc(var(--font-size-h2) + 5px);
  font-style: normal;
}
.content-slider .row .content-slider__inner .content-slider__inner-content p {
  font-family: "Montserrat";
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.content-slider .row .content-slider__inner .content-slider__inner-content p span {
  padding: 4px;
}
.content-slider .row .content-slider__inner .content-slider__inner-content a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  margin-top: var(--spacing-2);
}
.content-slider .row .content-slider__inner .content-slider__inner-content a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.content-slider .row .content-slider__inner .content-slider__inner-content a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 992px) {
  .content-slider .row .content-slider__inner .content-slider__inner-slick {
    aspect-ratio: unset;
    height: 100%;
  }
  .content-slider .row .content-slider__inner .content-slider__inner-slick .content-slider__slide .content-slider__caption span {
    font-size: 18px;
    margin-bottom: 33px;
  }
  .content-slider .row .content-slider__inner .content-slider__inner-content {
    padding: 30px;
    width: 100%;
  }
  .content-slider .row .content-slider__inner .content-slider__inner-global .content-slider__buttons {
    bottom: 30px;
    gap: 10rem;
  }
  .content-slider .row .content-slider__inner .content-slider__inner-global .content-slider__buttons button svg {
    height: 30px;
    width: 30px;
  }
}
@media screen and (max-width: 758px) {
  .content-slider .row .content-slider__inner {
    flex-direction: column;
  }
  .content-slider .row .content-slider__inner .content-slider__inner-global {
    width: 100%;
    height: 300px;
  }
  .content-slider .row .content-slider__inner .content-slider__inner-content {
    padding: var(--spacing-1);
  }
  .content-slider .row .content-slider__inner .content-slider__inner-content h2 {
    margin-bottom: var(--spacing-1);
    line-height: 1;
  }
  .content-slider .row .content-slider__inner .content-slider__inner-content h2 br {
    display: none;
  }
  .content-slider .row .content-slider__inner .content-slider__inner-content p {
    line-height: 24px;
  }
}
@media screen and (max-width: 576px) {
  .content-slider .row .content-slider__inner {
    flex-direction: column !important;
  }
}
.content-text-two {
  background-color: var(--color-background-primary);
}
.content-text-two .icon-wrapper {
  margin-bottom: var(--spacing-1);
}
.content-text-two .icon-wrapper path {
  fill: var(--color-base-default);
}
.content-text-two span {
  padding: 4px;
  display: block;
  width: fit-content;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 1;
  color: var(--color-base-primary);
}
.content-text-two h2 {
  display: flex;
  margin: 0;
}
.content-text-two h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-h3);
  line-height: 29px;
  color: var(--color-base-primary);
  padding: 0;
  margin: 0;
}
.content-text-two p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 24px;
  color: var(--color-base-primary);
}

@media screen and (max-width: 768px) {
  .content-text-two h3 {
    margin-bottom: var(--spacing-1);
  }
}
.content-text-faq {
  position: relative;
}
.content-text-faq .content-text-two__absolute {
  position: absolute;
  top: 0;
  right: 0;
  width: 44%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.content-text-faq .content-text-two__absolute img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.content-text-faq.content-text-two-reverse .row {
  flex-direction: row-reverse;
}
.content-text-faq.content-text-two-reverse .content-text-two__absolute {
  right: unset;
  left: 0;
}
.content-text-faq .inner {
  padding: 120px 0;
}
.content-text-faq .inner .inner_subtitle {
  background-color: black;
  padding: 4px;
  font-family: var(--font-body);
  color: white;
}
.content-text-faq .inner h2 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-h2);
  line-height: 39px;
  text-transform: uppercase;
  color: var(--color-base-default);
  padding: 0;
  margin: 0;
  padding-top: 10px;
  padding-bottom: var(--spacing-2);
}
.content-text-faq .inner h2 em {
  font-family: var(--font-titles);
  font-style: normal;
  font-size: calc(var(--font-size-h2) + 5px);
}
.content-text-faq .inner h3 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 24px;
}
.content-text-faq .inner p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 24px;
}
.content-text-faq .inner a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  margin-top: var(--spacing-2);
}
.content-text-faq .inner a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.content-text-faq .inner a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}
.content-text-faq .inner ul {
  padding: 0;
  margin: 0;
}
.content-text-faq .inner ul li {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 32px;
}
.content-text-faq .inner ul li img {
  width: 65px;
  height: 65px;
  object-fit: contain;
}
.content-text-faq .inner ul li div h3 {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
}
.content-text-faq .inner ul li div p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin: 0;
  padding: 0;
}
.content-text-faq .accordion-content {
  display: none;
  padding: 1em 0;
}
.content-text-faq .accordion-toggle {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 24px;
  color: var(--color-base-default);
  background-color: transparent;
  border: none;
  cursor: pointer;
  padding-top: var(--spacing-1);
  padding-bottom: var(--spacing-1);
  border-bottom: 1px solid var(--color-base-default);
  width: 100%;
  text-align: left;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.content-text-faq .accordion-toggle:after {
  content: "";
  background-image: var(--arrow_faq);
  min-width: 24px;
  min-height: 24px;
  width: 24px;
  height: 24px;
  cursor: pointer;
  display: block;
  right: 0;
  background-size: contain;
  background-repeat: no-repeat;
  transition: all 400ms;
}
.content-text-faq .accordion-toggle.active:after {
  transform: rotate(180deg);
}

@media screen and (max-width: 992px) {
  .content-text-faqo .inner {
    padding: 40px 0;
  }
  .content-text-faqo .inner h2 {
    font-size: 20px;
    line-height: 23px;
  }
  .content-text-faqo .inner h3 {
    font-size: 17px;
    line-height: 18px;
  }
}
@media screen and (max-width: 768px) {
  .content-text-faq {
    padding-top: 145px;
  }
  .content-text-faq .inner {
    padding: 20px 0;
  }
  .content-text-faq .inner p {
    max-width: unset;
  }
  .content-text-faq .content-text-two__absolute {
    left: 0;
    width: 100%;
    height: 130px;
  }
}
@media screen and (max-width: 576px) {
  .content-text-faq .inner h2 {
    font-size: 20px;
    line-height: 23px;
  }
  .content-text-faq .inner h3 {
    font-size: 17px;
    line-height: 18px;
  }
}
.content-slider-image {
  background-color: var(--color-background-primary);
}
.content-slider-image .content-slider__bottom a {
  display: none;
}
.content-slider-image .row {
  justify-content: center;
}
.content-slider-image .row .content-slider-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.content-slider-image .row .content-slider-title h2 {
  flex: 1;
}
.content-slider-image .row .content-slider-title a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  height: auto;
}
.content-slider-image .row .content-slider-title a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.content-slider-image .row .content-slider-title a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}
.content-slider-image .row h2 {
  margin: 0;
  margin: 1rem 0;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-h2);
  line-height: 35px;
  color: var(--color-base-default);
}
.content-slider-image .row h2 em {
  font-family: var(--font-titles);
  font-style: normal;
  font-size: calc(var(--font-size-h2) + 5px);
}
.content-slider-image .content-slider-image__buttons {
  display: flex;
  justify-content: flex-end;
  margin-top: 1rem;
}
.content-slider-image .content-slider-image__buttons button {
  cursor: pointer;
  border: none;
  background-color: transparent;
}
.content-slider-image .content-slider-image__buttons button svg .back {
  fill: var(--color-background-default);
}
.content-slider-image .content-slider-image__buttons button svg .stroke {
  stroke: var(--color-client-secondary);
}
.content-slider-image .content-slider-image__buttons button svg .arrow {
  fill: var(--color-client-tertiary);
}
.content-slider-image .content-slider-image__inner {
  position: relative;
}
.content-slider-image .content-slider-image__inner-slick {
  margin-top: var(--spacing-2);
  position: relative;
}
.content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner {
  display: flex;
  align-items: center;
  gap: var(--spacing-1);
  border-radius: var(--spacing-0-5);
  background-color: var(--color-background-default);
  border-color: var(--color-background-primary);
  box-shadow: 0px 16px 32px -4px rgba(117, 125, 135, 0.2);
  border-radius: 8px;
}
.content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner.content-slider__right {
  flex-direction: row-reverse;
}
.content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner img {
  width: 400px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 0 8px 8px 0;
}
.content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner .content-slider-image__content {
  padding: var(--spacing-2);
  width: 100%;
  height: 100%;
}
.content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner .content-slider-image__content .icon-div {
  width: 45px;
  height: 45px;
  aspect-ratio: 1;
  border-radius: var(--spacing-0-5);
  padding: 4px;
  background: var(--color-client-secondary);
  margin-bottom: 40px;
}
.content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner .content-slider-image__content .icon-div .icon {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner .content-slider-image__content h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: calc(var(--font-size-h3) - 8px);
  line-height: 24px;
  margin-bottom: var(--spacing-1);
}
.content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner .content-slider-image__content p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 24px;
  color: var(--color-base-primary);
}

@media screen and (max-width: 1200px) {
  .content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner .content-slider-image__content .icon-div .icon {
    margin-bottom: var(--spacing-1);
  }
}
@media screen and (max-width: 992px) {
  .content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner {
    flex-direction: column !important;
  }
  .content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner img {
    width: 325px;
    border-radius: 8px;
  }
}
@media screen and (max-width: 768px) {
  .content-slider-image .content-slider-image__inner-slick {
    margin-top: 0;
  }
  .content-slider-image .row .content-slider-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2;
  }
  .content-slider-image .row .content-slider-title a {
    display: none;
  }
  .content-slider-image .content-slider__bottom {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .content-slider-image .content-slider__bottom a {
    display: block;
    font-family: var(--font-body);
    font-style: normal;
    font-weight: 700;
    font-size: var(--font-size-body);
    line-height: 21px;
    display: flex;
    align-items: center;
    text-align: center;
    color: #ffffff;
    padding: 12px;
    border: none;
    width: fit-content;
    text-decoration: none;
    border-radius: 0;
    transition: all 400ms;
    position: relative;
    isolation: isolate;
    line-height: 1;
    background: var(--color-light-client-default);
    border: 1px solid var(--color-light-client-tertiary);
    box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
    border-radius: var(--spacing-0-5);
  }
  .content-slider-image .content-slider__bottom a:disabled {
    background-color: transparent;
    color: #000000;
    border: 1px solid #000000;
    opacity: 50%;
  }
  .content-slider-image .content-slider__bottom a:hover {
    border: 1px solid var(--color-light-client-tertiary);
    box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
  }
  .content-slider-flex {
    display: flex;
    flex-direction: column-reverse;
  }
  .content-slider-image .content-slider-image__inner-slick picture.img-square {
    width: 100%;
    aspect-ratio: unset;
    height: 250px;
  }
  .content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner {
    flex-direction: column;
    gap: var(--spacing-0-5);
  }
  .content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner img {
    width: 100%;
    aspect-ratio: unset;
    height: 250px;
  }
  .content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner .content-slider-image__content {
    padding: var(--spacing-0-5);
  }
  .content-slider-image .content-slider-image__inner-slick .content-slider-image__slide-inner .content-slider-image__content h3 {
    font-size: var(--font-size-h3);
  }
}
@media screen and (max-width: 568px) {
  .content-slider-image .content-slider-image__inner .content-slider-image__buttons {
    top: 260px;
  }
}
.content-fifty-cards {
  background-color: var(--color-background-primary);
}
.content-fifty-cards .col-cards {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-1-5);
}
.content-fifty-cards .col-cards .card-number {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: var(--spacing-1);
  padding: 32px;
  background-color: var(--color-background-primary);
  border-radius: 8px;
  border: 1px solid var(--color-client-secondary);
}
.content-fifty-cards .col-cards .card-number .card-number-icon {
  width: 58px;
  aspect-ratio: 1;
  margin-bottom: var(--spacing-1);
}
.content-fifty-cards .col-cards .card-number.fifty {
  width: 48%;
}
.content-fifty-cards .col-cards .card-number.full {
  width: 100%;
}
.content-fifty-cards .col-cards .card-number span {
  color: var(--color-base-default);
  font-family: var(--font-titles);
  font-style: normal;
  font-weight: 600;
  line-height: 120%;
}
.content-fifty-cards .col-cards .card-number span.default {
  font-size: var(--font-size-h2);
}
.content-fifty-cards .col-cards .card-number span.small-h2 {
  font-size: 24px;
}
.content-fifty-cards .col-cards .card-number p {
  color: var(--color-base-default);
  font-size: 18px;
  line-height: 167%;
}

@media screen and (max-width: 1400px) {
  .content-fifty-cards .col-cards .card-number.fifty {
    width: 46%;
  }
}
@media screen and (max-width: 992px) {
  .content-fifty-cards .col-cards {
    margin-top: var(--spacing-2);
  }
}
@media screen and (max-width: 768px) {
  .content-fifty-cards .col-cards .card-number {
    gap: var(--spacing-0-25);
    padding: var(--spacing-1);
  }
}
@media screen and (max-width: 576px) {
  .content-fifty-cards .col-cards .card-number {
    width: 100% !important;
  }
}
.content-image-full {
  background-color: var(--color-background-primary);
}
.content-image-full img {
  width: 100%;
}

.gallery-one .gallery-one__slick-inner {
  padding: 0 10px;
  height: 320px;
}
.gallery-one .gallery-one__slick-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-two {
  background-color: var(--color-background-primary);
}
.gallery-two .slick-slide {
  transform: scale(0.9);
  transition: all 400ms;
  height: auto;
}
.gallery-two .slick-slide.slick-active {
  transform: scale(1);
}
.gallery-two .gallery-two__slick-inner {
  aspect-ratio: 2.25/1;
  padding: 0 10px; /* 20px de chaque côté = 40px entre les slides */
}
.gallery-two .gallery-two__slick-inner iframe {
  width: 100%;
  height: 100%;
  border-radius: var(--spacing-1);
}
.gallery-two .gallery-two__slick-inner img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: var(--spacing-1);
}

.gallery-three {
  background-color: var(--color-background-primary);
}
.gallery-three .row {
  justify-content: center;
}
.gallery-three .gallery-three__slick-inner {
  max-height: 86px;
  padding: 0 20px;
}
.gallery-three .gallery-three__slick-inner img {
  object-fit: contain;
  width: 100%;
  height: 86px;
}

.cta-one .item {
  padding: 80px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.cta-one .item.item-watermark {
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
.cta-one .item.item-watermark:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -10px;
  height: 70px;
  background-image: var(--watermark);
  background-size: contain;
  background-repeat: repeat-x;
  opacity: 0.3;
  filter: grayscale(1) invert(1);
  z-index: -1;
}
.cta-one .item h4 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  text-align: center;
  color: #ffffff;
  min-height: 62px;
  margin: 0;
  margin-bottom: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.cta-one .item a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  margin: auto;
}
.cta-one .item a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.cta-one .item a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 992px) {
  .cta-one .item {
    padding: 25px;
    height: 100%;
    margin-bottom: 18px;
  }
  .cta-one .item h4 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 768px) {
  .cta-one .item {
    padding: 25px 50px;
    margin-bottom: 18px;
  }
  .cta-one .item h4 {
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 576px) {
  .cta-one .row {
    gap: 18px;
  }
}
.diverses-one {
  margin: 32px 0;
  padding: 86px 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
}
.diverses-one .diverses-absolute {
  position: absolute;
  top: 40px;
  right: 60px;
}
.diverses-one .title h2 {
  padding: 0px;
  margin: 0;
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 29px;
  color: #ffffff;
  margin-bottom: 120px;
}
.diverses-one .title ul {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding: 0;
  margin: 0;
}
.diverses-one .title ul li {
  padding: 16px;
  border: 1px solid var(--secondary-color);
  backdrop-filter: blur(2px);
  display: flex;
  align-items: center;
  gap: 24px;
  position: relative;
  isolation: isolate;
}
.diverses-one .title ul li:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--secondary-color);
  opacity: 0.15;
  z-index: -1;
}
.diverses-one .title ul li .first-line h3 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 24px;
  line-height: 31px;
  color: #ffffff;
  padding: 0;
  margin: 0;
  margin-bottom: 0;
}
.diverses-one .title ul li .first-line p {
  margin: 0;
  padding: 0;
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #ffffff;
}

@media screen and (max-width: 1200px) {
  .diverses-one .title h2 {
    font-size: 24px;
    line-height: 28px;
  }
  .diverses-one .title ul li .first-line h3 {
    font-size: 18px;
    line-height: 24px;
  }
}
@media screen and (max-width: 992px) {
  .diverses-one .diverses-absolute {
    width: 100px;
    height: 100px;
  }
  .diverses-one .title h2 {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 576px) {
  .diverses-one .diverses-absolute {
    width: 85px;
    height: 85px;
    top: 20px;
    right: 30px;
  }
  .diverses-one .title h2 {
    margin-bottom: 40px;
  }
}
.diverses-two .diverses-two__inner {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding: 60px;
  height: 530px;
  display: flex;
  align-items: flex-end;
}
.diverses-two .diverses-two__inner .diverses-two__content a {
  text-decoration: none;
}
.diverses-two .diverses-two__inner .diverses-two__content a h2 {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  text-shadow: 0 4px 2px rgba(0, 0, 0, 0.25);
  text-decoration: none;
}
.diverses-two .diverses-two__inner .diverses-two__content a .divers-two__content-back {
  padding: 20px;
  background-color: var(--primary-color);
  width: 40%;
  position: relative;
}
.diverses-two .diverses-two__inner .diverses-two__content a .divers-two__content-back.pb4 {
  padding-bottom: 40px;
}
.diverses-two .diverses-two__inner .diverses-two__content a .divers-two__content-back button {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px 16px;
  background-color: var(--secondary-color);
  width: fit-content;
  text-decoration: none;
  border: 1px solid var(--secondary-color);
  border-radius: 5px !important;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  position: absolute;
  bottom: 0;
  transform: translateY(50%);
}
.diverses-two .diverses-two__inner .diverses-two__content a .divers-two__content-back button:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.diverses-two .diverses-two__inner .diverses-two__content a .divers-two__content-back button:hover {
  background-color: white;
  border: 1px solid transparent;
  color: var(--secondary-color);
}

.diverses-product {
  padding: var(--spacing-1) 0;
  background-color: var(--color-background-primary);
}
.diverses-product img {
  width: 100%;
  background-color: var(--color-background-default);
  border-radius: var(--spacing-0-5);
}
.diverses-product .single-product__attributes {
  background-color: var(--color-background-default);
  border-radius: var(--spacing-0-5);
  padding: var(--spacing-1);
}
.diverses-product .single-product__attributes .single-product__ref {
  display: flex;
  align-items: center;
  gap: var(--spacing-0-5);
}
.diverses-product .single-product__attributes .sizes {
  display: flex;
  gap: var(--spacing-0-5);
}
.diverses-product .single-product__attributes .sizes span {
  padding: calc(var(--spacing-0-5) / 2) var(--spacing-0-5);
  display: flex;
  border: 1px solid var(--color-base-primary);
  border-radius: 20px;
  align-items: center;
  min-width: 65px;
  justify-content: center;
}
.diverses-product .single-product__attributes .color-swatch,
.diverses-product .single-product__attributes .entry-indicator {
  position: relative;
  overflow: hidden;
  border-radius: 50%;
  display: block;
  width: 20px;
  height: 20px;
  border: 1px solid var(--color-base-primary);
}
.diverses-product .single-product__attributes .color-swatch .color-swatch__second,
.diverses-product .single-product__attributes .entry-indicator .color-swatch__second {
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 100%;
  display: block;
}
.socials h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-size: var(--size-h2);
  line-height: 31px;
  color: #000000;
  padding-left: 8px;
  margin-bottom: 16px;
  position: relative;
  text-align: center;
  color: var(--primary-color);
}
.socials hr {
  width: 20%;
  height: 3px;
  background-color: var(--secondary-color);
  margin: auto;
  margin-bottom: auto;
  border-top: 3px solid;
  color: var(--secondary-color);
  opacity: 1;
  margin-bottom: 16px;
}
.socials p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #000000;
  text-align: center;
  max-width: 70%;
  margin: auto;
}
.socials .list-socials {
  margin-top: 36px;
  display: flex;
  list-style: none;
  justify-content: center;
  align-items: center;
  gap: 24px;
  position: relative;
  z-index: 1;
}

.socials-two {
  position: relative;
  padding: var(--spacing-4) 0 var(--spacing-2) 0;
}
.socials-two .socials-two__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-bottom: var(--spacing-1);
}
.socials-two .socials-two__list li {
  padding: 0;
  list-style: none;
}
.socials-two .socials-two__list li a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: black;
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  text-transform: uppercase;
}
.socials-two .socials-two__list li a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.socials-two .socials-two__list li a:hover {
  border: 1px solid #c1dbb3;
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}
.socials-two .socials-two__list li:nth-child(2) a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-base-default);
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: #ffffff;
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  text-transform: uppercase;
}
.socials-two .socials-two__list li:nth-child(2) a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.socials-two .socials-two__list li:nth-child(2) a:hover {
  border: 1px solid #c1dbb3;
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}
.socials-two h2 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-h2);
  line-height: 39px;
  /* identical to box height */
  text-align: center;
  text-transform: uppercase;
  color: var(--color-base-default);
}
.socials-two .socials-two__row {
  justify-content: center;
}
.socials-two .socials-two__row .socials-two__banner {
  pointer-events: none;
  position: absolute;
  top: 50%;
  overflow: hidden;
  white-space: nowrap;
}
.socials-two .socials-two__row .socials-two__banner span {
  margin-right: 6rem;
  height: 244px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 200px;
  text-align: center;
  text-transform: uppercase;
  display: inline-block;
  animation: marquee 25s linear infinite;
  white-space: nowrap;
}
.socials-two .socials-two__row .socials-two__image {
  z-index: 1;
  position: relative;
  background-image: var(--social_back);
  width: 550px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  margin: auto;
}
.socials-two .socials-two__row .socials-two__image img {
  width: 330px;
  aspect-ratio: 1;
}

@media screen and (max-width: 768px) {
  .socials-two .socials-two__row .socials-two__image {
    width: 400px;
  }
  .socials-two .socials-two__row .socials-two__image img {
    width: 50%;
  }
}
@media screen and (max-width: 576px) {
  .socials-two .socials-two__row .socials-two__banner {
    display: none;
  }
  .socials-two .socials-two__row .socials-two__image {
    width: 100%;
  }
  .socials-two .socials-two__row .socials-two__image img {
    width: 50%;
  }
}
.historic {
  height: 100vh;
  overflow: hidden;
  background-color: var(--color-background-primary);
}
.historic .historic-title {
  text-align: center;
}
.historic .container,
.historic .row {
  height: 100%;
}
.historic .row {
  align-items: center;
}
.historic .row .h-100 {
  height: 100%;
}
.historic .back-overflow {
  position: relative;
  z-index: -1;
}
.historic .back-overflow:before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background-color: var(--color-background-primary);
  z-index: 1;
}
.historic ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: var(--spacing-2) 12px;
  max-height: 85vh;
  overflow-y: auto;
  list-style: none;
  background: var(--color-background-default);
  z-index: 1;
  box-shadow: 0px 16px 32px -4px rgba(117, 125, 135, 0.2);
  border-radius: 12px;
}
.historic ul li button {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 18px;
  color: var(--color-base-primary);
  border: none;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-1);
  padding: var(--spacing-1) 0 0 0;
}
.historic ul li button:before {
  content: "";
  width: 0px;
  height: 0;
  display: none;
  border: 1px solid var(--color-base-primary);
}
.historic ul li button.active {
  text-decoration: underline;
  font-weight: 700;
  text-decoration-color: var(--color-base-primary);
  text-underline-offset: 8px;
}
.historic ul li:first-child button:before {
  display: block;
  height: 24px;
}
.historic ul li:last-child button:after {
  height: 24px;
  content: "";
  border: 1px solid var(--color-base-primary);
  width: 0;
  display: block;
}
.historic .section-global {
  display: flex;
  height: 70vh;
}
.historic .section-global .section_wrapper {
  display: flex;
  position: relative;
}
.historic .section-global .section_wrapper .historic_details {
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  height: 100%;
  align-items: flex-end;
  width: 734px;
  position: relative;
}
.historic .section-global .section_wrapper .historic_details.even {
  align-items: flex-start;
  flex-direction: row-reverse;
}
.historic .section-global .section_wrapper .historic_details .historic_details_content {
  width: 310px;
  margin-left: var(--spacing-1-5);
  flex-shrink: 0;
}
.historic .section-global .section_wrapper .historic_details .historic_details_img {
  flex-shrink: 0;
}
.historic .section-global .section_wrapper .historic_details .historic_details_img img {
  width: 400px;
  border-radius: var(--spacing-0-5);
  object-fit: cover;
  height: auto;
}
.historic .section-global .section_wrapper .historic_details h2 {
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--color-base-primary);
  margin-bottom: var(--spacing-1);
}
.historic .section-global .section_wrapper .historic_details h3 {
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 167%;
  color: var(--color-base-primary);
  margin-bottom: var(--spacing-1);
}
.historic .section-global .section_wrapper .historic_details p {
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 140%;
  color: var(--color-base-primary);
}

@media screen and (max-width: 768px) {
  .historic {
    min-height: 100vh;
  }
  .historic .container {
    height: auto;
  }
  .historic .section-global {
    height: 100vh;
    align-items: center;
  }
  .historic .section-global .section_wrapper {
    height: 70%;
  }
  .historic .section-global .section_wrapper .historic_details {
    flex-direction: column;
    align-items: flex-start;
    width: auto;
    padding-right: var(--spacing-2);
  }
  .historic .section-global .section_wrapper .historic_details.even {
    flex-direction: column;
    align-items: flex-start;
  }
  .historic .section-global .section_wrapper .historic_details .historic_details_content {
    margin-left: 0;
  }
  .historic .back-overflow {
    z-index: auto;
  }
  .historic .back-overflow:before {
    display: none;
  }
  .historic ul {
    display: none;
    flex-direction: row;
    max-height: none;
    overflow-x: auto;
    overflow-y: visible;
    padding: var(--spacing-1) 12px;
    margin-bottom: var(--spacing-2);
    gap: var(--spacing-1);
  }
  .historic ul li {
    flex: 0 0 auto;
    min-width: max-content;
  }
  .historic ul li button {
    font-size: 16px;
    padding: var(--spacing-0-5) var(--spacing-1);
    white-space: nowrap;
  }
  .historic ul li:first-child button:before {
    display: none;
  }
  .historic ul li:last-child button:after {
    display: none;
  }
}
.diverses-banner-title {
  background-color: var(--color-background-primary);
}
.diverses-banner-title .diverses-banner-background {
  aspect-ratio: 16/6;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  position: relative;
  isolation: isolate;
  box-shadow: -1px -22px 20.3px rgba(0, 0, 0, 0.1);
}
.diverses-banner-title .diverses-banner-background.gradient:before {
  content: "";
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(182.79deg, rgba(0, 74, 223, 0) 56.94%, var(--color-background-primary) 77.88%, var(--color-background-primary) 100%);
  filter: drop-shadow(-1px -22px 20.3px rgba(0, 0, 0, 0.1));
}
.diverses-banner-title .border-round {
  border-radius: var(--spacing-1-5) var(--spacing-1-5) 0 0;
}
.diverses-banner-title .container,
.diverses-banner-title .row {
  height: 100%;
}
.diverses-banner-title .row {
  align-items: center;
  justify-content: center;
}
.diverses-banner-title h2 {
  color: white;
  text-align: center;
  /* Title */
  line-height: 120%;
}
.diverses-banner-title h2 em {
  font-family: "Pacifico";
  font-style: normal;
  font-weight: 400;
  letter-spacing: -0.02em;
  background: linear-gradient(86.46deg, #9cffea -24.36%, #d0e37f 80.64%, #99b4da 136.84%), linear-gradient(332.83deg, #99b4da -234.36%, #f7f8fa 83.99%), linear-gradient(84.86deg, #f7f8fa -28.79%, #165f85 183.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  font-size: calc(var(--font-size-h2) + 7px);
  padding: 0 11px 0 6px;
}
.diverses-banner-title a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--color-base-default);
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-background-default);
  border: 1px solid var(--color-client-secondary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  margin: auto;
  margin-top: var(--spacing-1-5);
}
.diverses-banner-title a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.diverses-banner-title a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 576px) {
  .diverses-banner-title .diverses-banner-background {
    aspect-ratio: unset;
    padding: var(--spacing-1) 0;
  }
  .diverses-banner-title .diverses-banner-background.gradient:before {
    display: none;
  }
  .diverses-banner-title .border-round {
    aspect-ratio: unset;
    padding: var(--spacing-3) 0;
  }
}
.banner-auto {
  padding: 1rem 0;
}
.banner-auto .banner-auto__contain {
  overflow: hidden;
  white-space: nowrap;
}
.banner-auto .banner-auto__contain span {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: var(--font-size-small);
  line-height: 109%;
  letter-spacing: -0.02em;
  display: inline-block;
  animation: marquee 15s linear infinite;
  white-space: nowrap;
  margin-right: 1rem;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}
.acf-map {
  width: 100%;
  aspect-ratio: 16/3.7;
  margin-top: -80px;
}

.diverses-three .title h2 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-h2);
  line-height: 39px;
  text-transform: uppercase;
  color: #d26a45;
}
.diverses-three .title h2 em {
  font-family: var(--font-titles);
  font-style: normal;
  font-size: calc(var(--font-size-h2) + 5px);
}
.diverses-three .diverses-three__article {
  width: 302px;
  padding: 0px 0px 16px;
  height: 390px;
  max-height: 390px;
  background: #ffffff;
  box-shadow: 3px 4px 30.6px rgba(187, 184, 176, 0.2);
  position: relative;
  z-index: 1;
}
.diverses-three .diverses-three__article a {
  text-decoration: none;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
}
.diverses-three .diverses-three__article a .img-post {
  position: relative;
}
.diverses-three .diverses-three__article a:hover .img-post:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 7px;
  background-color: var(--secondary-color);
}
.diverses-three .diverses-three__article a img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.diverses-three .diverses-three__article a .article-description {
  padding: 0 var(--spacing-1);
}
.diverses-three .diverses-three__article a .article-description h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-h3);
  line-height: 30px;
  text-transform: uppercase;
  color: var(--color-client-default);
  /* Inside auto layout */
  flex: none;
  order: 0;
  align-self: stretch;
  flex-grow: 0;
  margin: 0;
  padding: var(--spacing-1) 0;
}
.diverses-three .diverses-three__article a .article-description p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  font-size: var(--font-size-small);
  line-height: 109%;
  letter-spacing: -0.02em;
  color: #000000;
}
.diverses-three .diverses-three__article a .article-description button {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-top: var(--spacing-1);
}
.diverses-three .diverses-three_content p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 24px;
  color: #000000;
  margin-bottom: var(--spacing-1);
}
.diverses-three .diverses-three_content a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
}
.diverses-three .diverses-three_content a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.diverses-three .diverses-three_content a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 768px) {
  .diverses-three .diverses-three__article {
    width: 100%;
    height: unset;
  }
  .diverses-three .diverses-three__article a .article-description h3 {
    padding-bottom: var(--spacing-0-5);
  }
  .diverses-three .title h2 {
    line-height: 1.2;
  }
}
@media screen and (max-width: 568px) {
  .acf-map {
    aspect-ratio: unset;
    height: 400px;
  }
}
#form-one {
  background-color: var(--color-background-primary);
  padding: 0;
  padding-top: 120px;
  position: relative;
  isolation: isolate;
  overflow: hidden;
}
#form-one:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -10px;
  height: 150px;
  background-image: var(--watermark);
  background-size: contain;
  background-size: 340px;
  background-repeat: repeat;
  opacity: 0.3;
  pointer-events: none;
  filter: grayscale(1) invert(1);
}
#form-one h1 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 47px;
}
#form-one p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-base-default);
}
#form-one .product {
  padding: var(--spacing-0-5);
  background: var(--color-base-default);
  color: var(--color-background-primary);
  margin-bottom: var(--spacing-1);
  display: block !important;
}
#form-one .form-template-one {
  background-color: var(--color-background-secondary);
  padding: 40px;
  z-index: 10;
  position: relative;
}
#form-one .form-template-one p {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
#form-one .form-template-one ul {
  display: none;
}
#form-one .form-template-one label {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-base-default);
}
#form-one .form-template-one label textarea {
  width: 100%;
  resize: none;
  background: transparent;
  border: 1px solid var(--color-base-default);
  font-family: var(--font-body);
}
#form-one .form-template-one label input {
  font-family: var(--font-body);
  padding: 8px;
  height: 40px;
  background: transparent;
  border: 1px solid var(--color-base-default);
  width: 100%;
  color: var(--color-base-default);
}
#form-one .form-template-one label input:-webkit-autofill input:-webkit-autofill,
#form-one .form-template-one label input:-webkit-autofill input:-webkit-autofill:hover,
#form-one .form-template-one label input:-webkit-autofill input:-webkit-autofill:focus,
#form-one .form-template-one label input:-webkit-autofill input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px transparent inset !important;
  -webkit-text-fill-color: initial !important;
}
#form-one .form-template-one .mid-label {
  width: 47%;
}
#form-one .form-template-one .full-label {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#form-one .form-template-one .wpcf7-acceptance span {
  padding: 0;
  margin: 0;
}
#form-one .form-template-one .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 16px;
  color: var(--color-base-default);
}
#form-one .form-template-one .wpcf7-acceptance label input {
  height: unset;
  width: unset;
}
#form-one .form-template-one input[type=submit] {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  width: 100% !important;
  text-align: center;
  margin: auto;
}
#form-one .form-template-one input[type=submit]:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
#form-one .form-template-one input[type=submit]:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

.small-text {
  font-size: var(--font-size-small);
}

.wpcf7-not-valid-tip {
  font-family: var(--font-body);
  color: var(--color-warning-default);
}

@media screen and (max-width: 1200px) {
  #form-one h1 br {
    display: none;
  }
  #form-one .form-template-one {
    padding: 15px;
  }
}
@media screen and (max-width: 992px) {
  #form-one .form-template-one {
    margin-top: var(--spacing-1);
  }
}
@media screen and (max-width: 576px) {
  #form-one {
    padding: var(--spacing-3) 0;
  }
  #form-one .form-template-one .mid-label {
    width: 100%;
  }
}
.form-two {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
}
.form-two .form-two__left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
  position: sticky;
  top: 15vh;
  left: 0;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  isolation: isolate;
}
.form-two .form-two__left:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: var(--primary-color);
  opacity: 0.7;
  z-index: -1;
}
.form-two .form-two__left .form-two__left-inner {
  width: 55%;
}
.form-two .form-two__left .form-two__left-inner h1 {
  color: white;
  text-transform: none;
  margin-bottom: 4.5rem;
  text-align: center;
}
.form-two .form-two__left .form-two__left-inner .form-two__left-citation {
  display: flex;
  justify-content: flex-end;
  position: relative;
}
.form-two .form-two__left .form-two__left-inner .form-two__left-citation p {
  width: 100%;
  color: white;
  font-size: 20px;
  line-height: 1.6;
  position: relative;
  text-align: center;
}
.form-two .form-two__right {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.form-two .form-two__right form {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
}
.form-two .form-two__right form .grid100 {
  width: 100%;
}
.form-two .form-two__right form .grid45 {
  width: 45%;
}
.form-two .form-two__right form h2 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: var(--size-h2);
  color: var(--primary-color);
}
.form-two .form-two__right form .input-container {
  padding: 8px 10px 0 10px;
  position: relative;
}
.form-two .form-two__right form .input-container.dnone {
  display: none;
}
.form-two .form-two__right form .input-container p {
  margin: 0;
  padding: 0;
}
.form-two .form-two__right form .input-container label {
  font-weight: 600;
  letter-spacing: 0.33px;
  color: #909090;
  position: absolute;
  height: 43px;
  top: 15px;
  left: 10px;
  z-index: 1;
  display: flex;
  align-items: center;
  padding: 12px 18px;
  pointer-events: none;
  transition: all 0.3s cubic-bezier(0.25, 0.45, 0.45, 0.95);
}
.form-two .form-two__right form .input-container input {
  border: none;
  border-bottom: 2px solid var(--primary-color);
  padding: 12px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  background: #f5f5f5;
  margin: 5px 0;
  width: 100%;
}
.form-two .form-two__right form .input-container input:focus-visible {
  outline: 0;
}
.form-two .form-two__right form .input-container select {
  border: none;
  border-bottom: 2px solid var(--primary-color);
  padding: 11px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  background: #f5f5f5;
  margin: 5px 0;
  height: 40px;
  box-shadow: none;
  -webkit-appearance: none;
  border-radius: 0;
  width: 100%;
}
.form-two .form-two__right form .input-container.field--not-empty label {
  font-size: 0.8rem;
  top: -15px;
  left: -6px;
}
.form-two .form-two__right #civ {
  border: none;
  border-bottom: 2px solid var(--primary-color);
  padding: 11px 18px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--secondary-color);
  background: #f5f5f5;
  margin: 5px 0;
  height: 40px;
  box-shadow: none;
  -webkit-appearance: none;
  border-radius: 0;
}
.form-two .form-two__right #CheckCata {
  margin-bottom: 0;
  margin-top: 20px;
  padding-left: 10px;
}
.form-two .form-two__right #CheckCata h2 {
  padding-left: 0;
}
.form-two .form-two__right #CheckCata p {
  font-size: 1.37rem;
  font-weight: 500;
  margin-bottom: 5px;
}
.form-two .form-two__right #CheckCata input {
  opacity: 0;
}
.form-two .form-two__right #CheckCata input + span {
  position: relative;
  margin-right: 1rem;
}
.form-two .form-two__right #CheckCata input + span::after {
  content: "";
  opacity: 1;
  display: block;
  left: -32px;
  top: 3px;
  position: absolute;
  height: 17px;
  width: 17px;
  background-color: white;
  border: solid 2px black;
}
.form-two .form-two__right #CheckCata input:checked + span::after {
  background-image: url("../../img/icons/check_blue.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: 90% 90%;
}
.form-two .form-two__right .acceptance {
  letter-spacing: 0.021rem;
  margin-bottom: 20px;
  color: var(--primary-color);
  padding: 0;
  padding-left: 10px;
  margin-top: 2rem;
}
.form-two .form-two__right .acceptance .wpcf7-list-item-label {
  padding-left: 2rem;
  display: block;
  font-size: 14px;
}
.form-two .form-two__right .acceptance input {
  display: none;
  position: relative;
}
.form-two .form-two__right .acceptance input + span::before {
  content: "";
  left: 3px;
  top: 3px;
  position: absolute;
  height: 12px;
  width: 12px;
  background-color: #fff;
  border: solid 2px var(--primary-color);
  margin-top: 0;
}
.form-two .form-two__right .acceptance input:checked + span::before {
  background-color: var(--secondary-color);
}

#form-three {
  padding: 10px 0;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-size: 100% 70%;
  background-repeat: no-repeat;
}
#form-three .screen-reader-response {
  display: none;
}
#form-three .wpcf7-not-valid-tip {
  font-size: 14px !important;
  color: red;
}
#form-three .wpcf7-checkbox label {
  display: flex;
  align-items: flex-start;
}
#form-three .wpcf7-checkbox label input {
  width: unset !important;
  height: unset !important;
  padding-right: 10px;
  margin-right: 10px;
  margin-top: 5px;
}
#form-three:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -10px;
  height: 150px;
  background-image: var(--watermark);
  background-size: contain;
  background-size: 340px;
  background-repeat: repeat;
  opacity: 0.3;
  pointer-events: none;
  filter: grayscale(1) invert(1);
}
#form-three h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 47px;
  text-transform: uppercase;
  padding-top: 70px;
  color: var(--primary-color);
}
#form-three p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 24px;
  color: black;
}
#form-three .form-template-three {
  background-color: white;
  padding: 40px;
  z-index: 10;
  position: relative;
  border: 1px solid var(--primary-color);
}
#form-three .form-template-three p {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 24px;
}
#form-three .form-template-three label {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: #414b5a;
}
#form-three .form-template-three label textarea {
  width: 100%;
  background: #ffffff;
  border: 1px solid #cddcdf;
}
#form-three .form-template-three label input,
#form-three .form-template-three label select {
  padding: 8px;
  height: 40px;
  background: #ffffff;
  border: 1px solid #cddcdf;
  width: 100%;
}
#form-three .form-template-three .mid-label {
  width: 47%;
}
#form-three .form-template-three .full-label {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#form-three .form-template-three .wpcf7-acceptance span {
  padding: 0;
  margin: 0;
}
#form-three .form-template-three .wpcf7-acceptance label {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 12px;
  line-height: 16px;
  color: #414b5a;
}
#form-three .form-template-three .wpcf7-acceptance label input {
  height: unset;
  width: unset;
}
#form-three .form-template-three input[type=submit] {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
}
#form-three .form-template-three input[type=submit]:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
#form-three .form-template-three input[type=submit]:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 1200px) {
  #form-three h2 br {
    display: none;
  }
  #form-three .form-template-three {
    padding: 15px;
  }
}
@media screen and (max-width: 576px) {
  #form-three h2 {
    font-size: 22px;
    line-height: 1.2;
    padding-top: 25px;
  }
  #form-three p {
    font-size: 16px;
  }
  #form-three .form-template-three .mid-label {
    width: 100%;
  }
}
.hero-content-cta {
  height: 84vh;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-content-cta .container {
  height: 100%;
}
.hero-content-cta .container .row {
  height: 100%;
  align-items: center;
}
.hero-content-cta h1 {
  color: #ffffff;
}
.hero-content-cta h1 em {
  font-family: "Pacifico";
  font-style: normal;
  font-weight: 400;
  line-height: 73%;
  letter-spacing: -0.03em;
  background: linear-gradient(86.46deg, #9cffea -24.36%, #d0e37f 80.64%, #99b4da 136.84%), linear-gradient(332.83deg, #99b4da -234.36%, #f7f8fa 83.99%), linear-gradient(84.86deg, #f7f8fa -28.79%, #165f85 183.37%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  padding: 0 11px;
}
.hero-content-cta .hero-content__icon {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 22px;
}
.hero-content-cta .hero-content__icon img {
  max-width: 42px;
}
.hero-content-cta .hero-content__icon h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  line-height: 31px;
  color: #ffffff;
}
.hero-content-cta p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  color: #ffffff;
  font-weight: 400;
  margin-top: var(--spacing-1);
  font-size: var(--font-size-h3);
}
.hero-content-cta a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  margin: auto;
}
.hero-content-cta a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.hero-content-cta a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

@media screen and (max-width: 1200px) {
  .hero-content-cta {
    height: 75vh;
  }
}
@media screen and (max-width: 992px) {
  .hero-content-cta {
    height: 70vh;
  }
}
@media screen and (max-width: 768px) {
  .hero-content-cta p {
    width: unset;
  }
}
@media screen and (max-width: 576px) {
  .hero-content-cta {
    height: 70vh;
  }
}
.hero-only-image {
  width: 100%;
  height: 75vh;
  object-fit: cover;
  object-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.hero-double-entry {
  display: flex;
  width: 100%;
  gap: 0;
  aspect-ratio: 16/5.5;
}
.hero-double-entry .hero-double__flex {
  width: 100%;
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  padding-right: calc(var(--bs-gutter-x) * 0.5);
  padding-left: calc(var(--bs-gutter-x) * 0.5);
  margin: 0 auto;
  background-size: cover;
  background-position: center;
}
.hero-double-entry .hero-double__flex .hero-double__right,
.hero-double-entry .hero-double__flex .hero-double__left {
  max-width: 80%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding-bottom: 60px;
}
.hero-double-entry .hero-double__flex .hero-double__right span,
.hero-double-entry .hero-double__flex .hero-double__left span {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-h2);
  line-height: 39px;
  text-transform: uppercase;
}
.hero-double-entry .hero-double__flex .hero-double__right span em,
.hero-double-entry .hero-double__flex .hero-double__left span em {
  font-family: var(--font-titles);
  font-style: normal;
  font-size: calc(var(--font-size-h2) + 5px);
}
.hero-double-entry .hero-double__flex .hero-double__right p,
.hero-double-entry .hero-double__flex .hero-double__left p {
  width: 370px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 109%;
  letter-spacing: -0.02em;
  color: #ffffff;
}
.hero-double-entry .hero-double__flex .hero-double__right a,
.hero-double-entry .hero-double__flex .hero-double__left a {
  margin-top: 1rem;
}

@media screen and (max-width: 768px) {
  .hero-double-entry {
    flex-direction: column;
    aspect-ratio: unset;
    height: 86vh;
  }
  .hero-double-entry .hero-double__flex {
    height: 50%;
  }
  .hero-double-entry .hero-double__flex .hero-double__right p,
  .hero-double-entry .hero-double__flex .hero-double__left p {
    width: unset;
  }
}
.hero-cosmepar {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.hero-cosmepar.big {
  height: 86vh;
}
.hero-cosmepar.small {
  height: 35vh;
}
.hero-cosmepar.medium {
  height: 75vh;
}
.hero-cosmepar .container {
  height: 100%;
}
.hero-cosmepar .row {
  height: 100%;
  justify-content: center;
  align-items: center;
}
.hero-cosmepar h1 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: var(--font-size-h1);
  line-height: 102%;
  text-align: center;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}
.hero-cosmepar h1 em {
  font-family: var(--font-titles);
  font-style: normal;
  font-size: calc(var(--font-size-h1) + 3px);
}
.hero-cosmepar .words-list {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}
.hero-cosmepar .words-list .word-color {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-h3);
  line-height: 29px;
  padding: 8px;
}

.key-numbers-one {
  position: relative;
}
.key-numbers-one.key-watermark {
  isolation: isolate;
  overflow: hidden;
}
.key-numbers-one.key-watermark:after {
  content: "";
  position: absolute;
  width: 100%;
  left: 0;
  bottom: -10px;
  height: 100px;
  background-image: var(--watermark);
  background-size: contain;
  background-repeat: repeat-x;
  opacity: 0.2;
  z-index: -1;
}
.key-numbers-one .key-numbers-one__title {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  height: 100%;
  isolation: isolate;
}
.key-numbers-one .key-numbers-one__title img {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.key-numbers-one .key-numbers-one__title h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 47px;
  text-align: center;
  color: #ffffff;
}
.key-numbers-one .key-numbers__inner {
  background-color: white;
  margin: 32px;
}
.key-numbers-one .key-numbers__slick .key-numbers__slick-inner {
  padding: 64px;
  display: flex;
  gap: 100px;
  align-items: center;
  position: relative;
}
.key-numbers-one .key-numbers__slick .key-numbers__slick-inner .inner-left img {
  width: 172px;
  height: auto;
}
.key-numbers-one .key-numbers__slick .key-numbers__slick-inner .inner-right p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
.key-numbers-one .key-numbers__slick .key-numbers__slick-inner .inner-right img {
  position: absolute;
  bottom: 0;
  width: 62px;
  height: 62px;
  object-fit: cover;
  right: 64px;
}

@media screen and (max-width: 1350px) {
  .key-numbers-one .key-numbers__slick .key-numbers__slick-inner {
    padding: 48px;
    gap: 30px;
  }
  .key-numbers-one .key-numbers__slick .key-numbers__slick-inner .inner-right p {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 1200px) {
  .key-numbers-one .key-numbers-one__title h2 {
    font-size: 24px;
    line-height: 28px;
  }
  .key-numbers-one .key-numbers__slick .key-numbers__slick-inner {
    padding: 10px;
    gap: 30px;
  }
  .key-numbers-one .key-numbers__slick .key-numbers__slick-inner .inner-right p {
    margin-bottom: 0;
  }
}
@media screen and (max-width: 992px) {
  .key-numbers-one .key-numbers__inner {
    margin: 10px;
  }
  .key-numbers-one .key-numbers__slick .key-numbers__slick-inner {
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .key-numbers-one .key-numbers-one__title {
    position: relative;
    height: 180px;
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .key-numbers-one .key-numbers__slick .key-numbers__slick-inner .inner-right img {
    top: 31px;
    right: 31px;
    bottom: unset;
  }
}
.key-numbers-two h2 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-h2);
  line-height: 39px;
  text-transform: uppercase;
  color: var(--color-base-default);
}
.key-numbers-two .number-numbers__inner {
  padding: var(--spacing-1);
  position: relative;
}
.key-numbers-two .number-numbers__inner .overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
  opacity: 0.2;
}
.key-numbers-two .number-numbers__inner .subtitle {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-body);
  line-height: 24px;
  color: var(--color-base-default);
  display: block;
}
.key-numbers-two .number-numbers__inner .number {
  font-family: var(--font-titles);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-h1);
  letter-spacing: -0.02em;
  text-transform: uppercase;
  color: var(--color-base-default);
  line-height: 1;
}
.key-numbers-two .number-numbers__inner .description {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-h3);
  line-height: 29px;
  color: var(--color-base-default);
}
.key-numbers-two .number-numbers {
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2);
}
.key-numbers-two .number-numbers .number-numbers__main {
  width: 20%;
}
.key-numbers-two .number-numbers .number-numbers__main .number-numbers__inner {
  height: 100%;
  display: flex;
  align-items: center;
}
.key-numbers-two .number-numbers .number-numbers__main .number-numbers__inner .number {
  display: block;
}
.key-numbers-two .number-numbers .number-numbers__aside {
  width: 77%;
  display: flex;
  flex-wrap: wrap;
  gap: var(--spacing-2);
}
.key-numbers-two .number-numbers .number-numbers__aside .number-numbers__inner {
  width: 30.55%;
  height: 180px;
}
.key-numbers-two .number-numbers .number-numbers__aside .number-numbers__inner .number__inner-description {
  display: flex;
  flex-direction: column;
}
.key-numbers-two .number-numbers .number-numbers__aside .number-numbers__inner:nth-child(1) {
  width: 55%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--spacing-1);
}
.key-numbers-two .number-numbers .number-numbers__aside .number-numbers__inner:nth-child(1) .number__inner-description {
  display: flex;
  gap: 12px;
  flex-direction: row;
  align-items: flex-end;
}
.key-numbers-two .number-numbers .number-numbers__aside .number-numbers__inner:nth-child(2) {
  width: 40%;
  padding: var(--spacing-1);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.key-numbers-two .number-numbers .number-numbers__aside .number-numbers__inner:nth-child(2) .number__inner-description {
  display: flex;
  gap: 12px;
  flex-direction: row;
  align-items: flex-end;
}
@media screen and (max-width: 1200px) {
  .key-numbers-two .number-numbers .number-numbers__aside {
    width: 75%;
    gap: var(--spacing-1);
    justify-content: space-evenly;
  }
}
@media screen and (max-width: 992px) {
  .key-numbers-two .number-numbers {
    gap: var(--spacing-1);
  }
  .key-numbers-two .number-numbers .number-numbers__main {
    width: 100%;
  }
  .key-numbers-two .number-numbers .number-numbers__aside {
    width: 100%;
    justify-content: space-between;
  }
  .key-numbers-two .number-numbers__inner .description {
    line-height: 1.2;
    font-size: 1rem;
  }
}
@media screen and (max-width: 568px) {
  .key-numbers-two .number-numbers .number-numbers__aside .number-numbers__inner {
    width: 100% !important;
    height: unset;
  }
  .key-numbers-two .number-numbers .number-numbers__aside .number-numbers__inner:nth-child(1) .number__inner-description {
    align-items: flex-start;
  }
}
.list-one {
  background-color: var(--color-background-primary);
  padding-bottom: 64px;
}
.list-one .list-one__flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.list-one .list-one__flex h2 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 47px;
  margin: 0;
}
.list-one .list-one__flex a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
}
.list-one .list-one__flex a:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.list-one .list-one__flex a:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

#archive-one-blog h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 47px;
  text-transform: uppercase;
  color: #000000;
}

.list-article {
  display: flex;
  gap: 72px;
  flex-wrap: wrap;
  margin-top: 40px !important;
  justify-content: space-between;
}

#archive-one-blog .list-article {
  justify-content: unset;
}

.article-one {
  width: 264px;
  background-color: var(--color-background-default);
}
.article-one a {
  text-decoration: none;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
}
.article-one a .img-post {
  position: relative;
}
.article-one a:hover .img-post:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 7px;
  background-color: var(--secondary-color);
}
.article-one a img {
  height: 150px;
  width: 100%;
  object-fit: cover;
}
.article-one a .date {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-small);
  line-height: 140%;
  color: var(--color-base-default);
  padding: var(--spacing-1) 0;
}
.article-one a .article-title {
  margin: 0;
  padding: 0;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 600;
  font-size: 24px;
  line-height: 120%;
  letter-spacing: -0.02em;
  color: var(--color-base-default);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.article-one a p,
.article-one a a {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  font-size: 12px;
  line-height: 109%;
  letter-spacing: -0.02em;
  color: var(--color-base-default);
  padding: var(--spacing-1) 0;
}
.article-one a .article-excerpt {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  height: 40px;
  padding: 0;
  margin-bottom: 15px;
  margin-top: 15px;
}
.article-one a button {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
  margin-bottom: var(--spacing-1);
}
.article-one a button:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.article-one a button:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}
.article-one a .article-one__content {
  padding: 0 var(--spacing-1);
}

@media screen and (max-width: 1200px) {
  .list-one .list-one__flex h2 {
    font-size: 24px;
    line-height: 28px;
  }
  .article-one a img {
    height: 160px;
  }
}
@media screen and (max-width: 992px) {
  .list-article {
    margin-top: 20px !important;
    gap: 15px;
  }
  .list-article .article-one {
    width: 48%;
  }
}
@media screen and (max-width: 576px) {
  .list-one .list-one__flex {
    flex-wrap: wrap;
    gap: 15px;
  }
  .list-article {
    margin-top: 20px !important;
    gap: 15px;
  }
  .list-article .article-one {
    width: 100%;
  }
}
.list-two {
  position: relative;
  isolation: isolate;
  padding: 0;
}
.list-two:before {
  content: "";
  background-image: var(--overlay);
  position: absolute;
  z-index: -3;
  top: -50%;
  bottom: -75%;
  pointer-events: none;
  left: 0;
  right: 0;
  background-size: cover;
  background-position: top;
}
.list-two .btn-custom {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px 16px;
  background-color: var(--primary-color);
  width: fit-content;
  text-decoration: none;
  border: 1px solid var(--primary-color);
  border-radius: 5px !important;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  margin: auto;
  margin-top: 20px;
}
.list-two .btn-custom:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.list-two .btn-custom:hover {
  background-color: white;
  border: 1px solid transparent;
  color: var(--primary-color);
}

.article-two {
  overflow: hidden;
  border: 2px solid var(--secondary-color);
  border-radius: 1rem;
  box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.25);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 15px;
  max-width: 350px;
  width: 350px;
}
.article-two .article-card-link {
  display: block;
  text-decoration: none;
  border-radius: 10px;
}
.article-two .article-card-link img {
  margin: 0 auto;
  height: 220px;
  max-width: 320px;
  object-fit: cover;
  border-radius: 10px;
  box-shadow: 2px 5px 5px rgba(0, 0, 0, 0.25);
  width: 100%;
}
.article-two .article-card-link .article-description {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: var(--primary-color);
}
.article-two .article-card-link .article-description h4 {
  display: block;
  font-family: var(--primary-font);
  text-transform: uppercase;
  margin-top: 18px;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 0;
}
.article-two .article-card-link .article-description p {
  margin-top: 18px;
  text-align: justify;
  overflow: hidden;
  display: -webkit-box;
  min-height: 72px;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.article-two .article-card-link button {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px 16px;
  background-color: var(--secondary-color);
  width: fit-content;
  text-decoration: none;
  border: 1px solid var(--secondary-color);
  border-radius: 5px !important;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
}
.article-two .article-card-link button:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.article-two .article-card-link button:hover {
  background-color: white;
  border: 1px solid transparent;
  color: var(--secondary-color);
}

.list-three .row {
  align-items: flex-end;
  justify-content: space-between;
}
.list-three .row .list-three__title .subtitle {
  padding: 4px;
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 400;
  font-size: var(----font-size-h3);
  line-height: 29px;
}
.list-three .row .list-three__title h2 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-h2);
  line-height: 47px;
  margin: 0;
  margin-top: var(--spacing-0-5);
  margin-bottom: var(--spacing-2);
}
.list-three .row .list-three__title h2 em {
  font-style: normal;
  font-size: calc(var(--font-size-h2) + 5px);
  font-family: var(--font-titles);
}
.list-three .row .list-three__title p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 500;
  font-size: var(--font-size-body);
  line-height: 24px;
  margin-bottom: 0.5rem;
}
.list-three .link {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
}
.list-three .link:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.list-three .link:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}

#archive-one-blog h2 {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 700;
  font-size: 36px;
  line-height: 47px;
  text-transform: uppercase;
  color: #000000;
}

.list-article {
  display: flex;
  gap: 0;
  flex-wrap: wrap;
  margin-top: 40px !important;
  justify-content: space-between;
}

#archive-one-blog .list-article {
  justify-content: unset;
}

.article-three {
  width: 302px;
  padding: 0px 0px 16px;
  height: 460px;
  max-height: 460px;
  background: #ffffff;
  box-shadow: 3px 4px 30.6px rgba(187, 184, 176, 0.2);
}
.article-three a {
  text-decoration: none;
  font-size: 12px;
  line-height: 16px;
  color: #000000;
}
.article-three a .img-post {
  position: relative;
}
.article-three a:hover .img-post:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 7px;
  background-color: var(--secondary-color);
}
.article-three a img {
  height: 250px;
  width: 100%;
  object-fit: cover;
}
.article-three a .article-description {
  padding: 0 var(--spacing-1);
}
.article-three a .article-description h3 {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-h3);
  line-height: 30px;
  text-transform: uppercase;
  color: var(--color-client-default);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  /* Inside auto layout */
  flex: none;
  margin: var(--spacing-1) 0;
  min-height: 90px;
}
.article-three a .article-description p {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 300;
  font-size: var(--font-size-small);
  line-height: 109%;
  letter-spacing: -0.02em;
  color: #000000;
}
.article-three a .article-description button {
  background-color: transparent;
  border: none;
  padding: 0;
  display: flex;
  justify-content: flex-end;
  width: 100%;
  padding-top: var(--spacing-1);
}

@media screen and (max-width: 1400px) {
  .article-three {
    width: 270px;
  }
}
@media screen and (max-width: 1200px) {
  .article-three {
    width: 225px;
    height: unset;
  }
  .article-three a img {
    height: 150px;
  }
  .article-three a .article-description {
    padding: 0 var(--spacing-0-5);
  }
  .article-three a .article-description h3 {
    padding: var(--spacing-0-25) 0;
  }
}
@media screen and (max-width: 992px) {
  .article-three:nth-child(4) {
    display: none;
    height: unset;
  }
}
@media screen and (max-width: 576px) {
  .article-three {
    margin-bottom: 1rem;
  }
  .list-three .row .list-three__title p br {
    display: none;
  }
  .article-three {
    width: 190px;
  }
}
@media screen and (max-width: 410px) {
  .article-three {
    width: 100%;
  }
}
.reviews-one {
  background-color: var(--color-background-primary);
}
.reviews-one .reviews-inner {
  padding: 32px 12px;
  margin: 0 30px;
  background-color: var(--color-background-default);
}
.reviews-one .reviews-inner .reviews-identity {
  display: flex;
  gap: var(--spacing-1);
  margin-bottom: 24px;
}
.reviews-one .reviews-inner .reviews-identity .reviews-identity__image img {
  padding: 0px;
  width: 64px;
  aspect-ratio: 1;
  border-radius: 50%;
}
.reviews-one .reviews-inner .reviews-identity .reviews-identity__title .name {
  font-weight: 700;
  margin-bottom: 10px;
  display: block;
  color: var(--color-base-primary);
}
.reviews-one .reviews-inner .reviews-identity .reviews-identity__title .title {
  display: block;
  font-style: normal;
  font-weight: 400;
  font-size: var(--font-size-small);
  line-height: 140%;
  color: var(--color-client-secondary);
  /* Inside auto layout */
  flex: none;
  order: 1;
  align-self: stretch;
  flex-grow: 0;
}
.reviews-one .reviews-inner .reviews-inner__stars {
  display: flex;
}
.reviews-one .reviews-inner svg path {
  fill: var(--color-base-primary);
}
.reviews-one .reviews-inner .reviews-inner__content {
  margin-top: 12px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 32px;
}
.reviews-one .reviews-inner .reviews-inner__content p {
  font-family: var(--primary-font);
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  color: var(--color-base-primary);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}
.reviews-one .reviews-inner .reviews-inner__content .reviews-inner__content-sub {
  font-weight: 700;
  opacity: 0.6;
}
.reviews-one .reviews-inner .reviews-inner__content .reviews-link {
  font-family: var(--font-body);
  font-style: normal;
  font-weight: 700;
  font-size: var(--font-size-body);
  line-height: 21px;
  display: flex;
  align-items: center;
  text-align: center;
  color: #ffffff;
  padding: 12px;
  border: none;
  width: fit-content;
  text-decoration: none;
  border-radius: 0;
  transition: all 400ms;
  position: relative;
  isolation: isolate;
  line-height: 1;
  background: var(--color-light-client-default);
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 0px 2px 0px rgba(255, 255, 255, 0.25);
  border-radius: var(--spacing-0-5);
}
.reviews-one .reviews-inner .reviews-inner__content .reviews-link:disabled {
  background-color: transparent;
  color: #000000;
  border: 1px solid #000000;
  opacity: 50%;
}
.reviews-one .reviews-inner .reviews-inner__content .reviews-link:hover {
  border: 1px solid var(--color-light-client-tertiary);
  box-shadow: inset 3px 3px 1px rgba(255, 255, 255, 0.25);
}
.reviews-one .slick-track {
  display: flex;
}
.reviews-one .slick-track .slick-slide {
  height: auto;
}

@media screen and (max-width: 576px) {
  .reviews-one .reviews-inner .reviews-inner__content p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
  }
}

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