@charset "UTF-8";
.background-color-main {
  background-color: #184b59 !important;
}

.text-color-main {
  color: #184b59 !important;
}

.border-color-main {
  border: 1px solid #184b59 !important;
}

.background-color-secondary {
  background-color: #89a8d7 !important;
}

.text-color-secondary {
  color: #89a8d7 !important;
}

.border-color-secondary {
  border: 1px solid #89a8d7 !important;
}

.background-color-white {
  background-color: #FEFEFE !important;
}

.text-color-white {
  color: #FEFEFE !important;
}

.border-color-white {
  border: 1px solid #FEFEFE !important;
}

.background-color-black {
  background-color: #000000 !important;
}

.text-color-black {
  color: #000000 !important;
}

.border-color-black {
  border: 1px solid #000000 !important;
}

.background-color-border {
  background-color: #D7D7D7 !important;
}

.text-color-border {
  color: #D7D7D7 !important;
}

.border-color-border {
  border: 1px solid #D7D7D7 !important;
}

.animate-fadeIn-slideUp-delay,
.animate-fadeIn-delay,
.animate-fadeIn-slideUp,
.animate-fadeIn {
  transition-property: transform, opacity;
  transition-duration: 0.8s, 0.8s;
  transition-timing-function: cubic-bezier(0.15, 0.65, 0.25, 1), cubic-bezier(0.15, 0.65, 0.25, 1);
}

.is-inview .animate-fadeIn {
  opacity: 1 !important;
}
.is-inview .animate-fadeIn-delay {
  transition-delay: calc(var(--i) * 100ms);
  opacity: 1 !important;
}
.is-inview .animate-fadeIn-slideUp-delay {
  transition-delay: calc(var(--i) * 100ms);
  transform: translateY(0) !important;
  opacity: 1 !important;
}

.zoom-img {
  overflow: hidden;
}
.zoom-img img {
  transform: scale(1);
  transition: all 0.3s ease;
}
.zoom-img:hover img {
  transform: scale(1.05);
}

/* ---------- Buttons ---------- */
@media (hover: hover) and (pointer: fine) {
  .block-banner-marquee .button.opaque-color-main:hover {
    background: #FEFEFE;
  }
  .block-banner-marquee .button.opaque-color-main:hover span {
    color: #184b59;
  }
  .block-banner-marquee .button.opaque-color-main:hover i {
    color: #89a8d7;
  }
}

@media (hover: hover) and (pointer: fine) {
  .block-newsletters .button.opaque-color-main:hover {
    background: #FEFEFE;
  }
  .block-newsletters .button.opaque-color-main:hover span {
    color: #184b59;
  }
  .block-newsletters .button.opaque-color-main:hover i {
    color: #89a8d7;
  }
}

/* ---------- Header ---------- */
/* ---------- Header menu ---------- */
.buttons-wrapper {
  gap: 1rem;
}

.text-link {
  text-decoration: underline;
}
.text-link:hover {
  text-decoration: none !important;
}

.buttons-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: var(--buttons-halign);
  gap: 0.5rem;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: clamp(14px, 0.8333333333vw, 16px);
  line-height: 1;
  color: var(--color-white);
  text-decoration: none;
  background: #000000;
  cursor: pointer;
  padding: 0.8rem;
  border-radius: 1000vh;
  font-weight: 400;
  gap: 0.325rem;
  transition: all 0.3s ease;
}
.button i {
  transition: all 0.3s ease;
}
.button.btn-icon {
  padding: 0.8rem 1.2rem 0.8rem 0.8rem;
}
.button.btn-icon span {
  margin-top: 2px;
}
.button div {
  display: flex;
  align-items: center;
  justify-content: center;
}
.button.small-font {
  font-size: clamp(16px, 0.8333333333vw, 16px);
  padding: 0.625rem 0.875em;
}
.button.opaque-color-main {
  background: #184b59;
}
.button.opaque-color-main i {
  font-size: 20px;
  color: #89a8d7;
}
.button.opaque-color-main span {
  color: #FEFEFE;
}
@media (hover: hover) and (pointer: fine) {
  .button.opaque-color-main:hover {
    background: #89a8d7;
  }
  .button.opaque-color-main:hover svg path,
  .button.opaque-color-main:hover span,
  .button.opaque-color-main:hover i {
    color: #184b59;
  }
}
.button.opaque-color-secondary {
  color: #184b59;
  background: #89a8d7;
}
.button.opaque-color-secondary i {
  font-size: 20px;
  color: #184b59;
}
.button.opaque-color-secondary span {
  color: #184b59;
}
@media (hover: hover) and (pointer: fine) {
  .button.opaque-color-secondary:hover {
    background: #184b59;
  }
  .button.opaque-color-secondary:hover svg path,
  .button.opaque-color-secondary:hover span,
  .button.opaque-color-secondary:hover i {
    color: #89a8d7;
  }
}
.button.outline-color-black {
  color: #000000;
  background: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .button.outline-color-black:hover {
    color: #000000;
  }
}
.button.outline-color-black:hover span {
  text-decoration: underline;
}
.button.outline-color-white {
  color: #FEFEFE;
  background: transparent;
}
@media (hover: hover) and (pointer: fine) {
  .button.outline-color-white:hover {
    background: #89a8d7;
    color: #184b59;
  }
}

/*
Utiliser la fonction map.get($colors, nom-de-la-couleur) pour les variables de couleur dynamique.
Les variables root ne fonctionneront pas vue à cause de l'utilisation de certaines mixins.
*/
/* ***** GÉNÉRAL ***** */
.header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: fixed;
  transition: all 0.3s ease;
}
.header.scrollUp {
  opacity: 0;
  transform: translateY(-100%) !important;
}
.header .button-holder {
  display: none;
}
@media (min-width: 768px) {
  .header .button-holder {
    display: block;
  }
}
.header {
  /* Hint General Elements */
}
.header i {
  font-size: 21px !important;
  cursor: pointer;
  transition: all 0.3s ease;
}
.header .button-holder span {
  white-space: nowrap;
}
.header {
  /* Hint Logo */
}
.header .logo-holder {
  flex: 0 0 125px;
}
@media (min-width: 1200px) {
  .header .logo-holder {
    flex: 0 0 clamp(125px, 13.3333333333vw, 256px);
  }
}
.header .logo-holder .logo {
  position: relative;
}
.header .logo-holder .logo.desktop.has-mobile-logo {
  display: none;
}
@media (min-width: 1200px) {
  .header .logo-holder .logo.desktop.has-mobile-logo {
    display: flex;
  }
}
.header .logo-holder .logo.mobile {
  display: flex;
}
@media (min-width: 1200px) {
  .header .logo-holder .logo.mobile {
    display: none;
  }
}
.header .logo-holder .logo img {
  width: 125px;
}
@media (min-width: 1200px) {
  .header .logo-holder .logo img {
    width: clamp(125px, 13.3333333333vw, 256px);
  }
}
.header .logo-holder .logo a, .header .logo-holder .logo img {
  display: block;
}
.header {
  /* Hint Menu */
}
.header .menu-principal {
  height: 100%;
  margin-right: auto;
  display: none;
}
@media (min-width: 1200px) {
  .header .menu-principal {
    display: flex;
  }
}
.header .menu-principal.align-menu-center {
  justify-content: center;
}
.header .menu-principal.align-menu-start {
  margin: 0 auto;
}
.header .menu-principal.align-menu-end {
  justify-content: flex-end;
}
.header .menu-principal .menu > li > a {
  white-space: nowrap;
  display: flex;
  align-items: center;
}
.header .menu-principal .menu > li .dropdown-toggle svg {
  margin-left: 0.5rem;
  width: auto;
}
.header .menu-principal .menu > li .dropdown-toggle svg path {
  fill: #000000;
  transition: all 0.3s ease;
}
.header {
  /* Hint Burger */
}
.header .hamburger-holder {
  display: flex;
}
@media (min-width: 1200px) {
  .header .hamburger-holder {
    display: none;
  }
}
.header .hamburger-holder .hamburger {
  transition: all 0.3s ease-in-out;
}
.header .hamburger-holder .hamburger .line {
  width: 24px;
  height: 2px;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
  background-color: #000000;
  border-radius: 100vh;
}
.header .hamburger-holder .hamburger .line:first-of-type {
  margin-top: 0;
}
.header .hamburger-holder .hamburger .line:last-of-type {
  margin-bottom: 0;
}
.header .hamburger-holder .hamburger:hover {
  cursor: pointer;
}
.header .hamburger-holder .hamburger.is-active {
  animation: smallbig 0.6s forwards;
}
.header .hamburger-holder .hamburger.is-active .line:nth-child(1),
.header .hamburger-holder .hamburger.is-active .line:nth-child(2),
.header .hamburger-holder .hamburger.is-active .line:nth-child(3) {
  transition-delay: 0.2s;
}
.header .hamburger-holder .hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.header .hamburger-holder .hamburger.is-active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header .hamburger-holder .hamburger.is-active .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

header {
  /* ***** Menu Custom ***** */
}
header.header-custom .header-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header.header-custom .user-control {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header.header-custom .user-control .header-control {
  margin-left: 25px;
}
header.header-custom .user-control .header-control:first-child {
  margin-left: 0;
}
header.header-custom .user-control .header-control.socials-holder {
  margin-left: 0;
  margin-right: clamp(10px, 3.3854166667vw, 65px);
}
header .sup-header {
  padding: 0.6rem 0;
}
header .sup-header .socials {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-left: 2.25rem;
}
header .sup-header .socials a {
  padding-bottom: 0;
  padding-top: 0;
  color: #FEFEFE;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
header .sup-header .socials a:hover {
  text-decoration: underline;
  background: transparent !important;
}
header .sup-header .sup-header-menu {
  display: flex;
  justify-content: end;
}
header .sup-header .sup-header-menu .menu {
  display: flex;
  gap: 2.25rem;
  flex-direction: row;
}
header .sup-header .sup-header-menu .menu li {
  padding: 0;
}
header .sup-header .sup-header-menu .menu li a {
  padding-bottom: 0;
  padding-top: 0;
  color: #FEFEFE;
  font-size: 14px;
  font-weight: 400;
  line-height: 1;
}
header .sup-header .sup-header-menu .menu li a:hover {
  text-decoration: underline;
  background: transparent !important;
}
header .sup-header .sup-header-menu .menu li.current-menu-item > a, header .sup-header .sup-header-menu .menu li.current-menu-parent > a, header .sup-header .sup-header-menu .menu li.current_page_item > a, header .sup-header .sup-header-menu .menu li.current-menu-ancestor > a {
  text-decoration: underline;
  background: transparent !important;
}

.menu-principal {
  height: 100%;
  margin-right: auto;
  display: none;
}
@media (min-width: 992px) {
  .menu-principal {
    display: flex;
  }
}

.btn-menu {
  display: flex;
  align-items: center;
}

.header-control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
}

.header-item {
  border-radius: 8px;
  border: 1px solid #F6F6F6;
  background: #FEFEFE;
  padding: 0.9rem 2.063rem;
  max-width: 1580px;
  margin: 24px auto 0;
}
.header-item nav ul {
  display: flex;
  margin: 0;
  height: 100%;
  gap: 2.25rem;
}
.header-item nav ul li {
  position: relative;
  display: flex;
  align-items: stretch;
  padding: 1rem 0;
}
.header-item nav ul li a {
  font-size: clamp(16px, 0.8333333333vw, 16px);
  text-align: center;
  color: #184b59;
  font-weight: 400;
  transition: all 0.3s ease;
}
.header-item nav ul li a svg {
  fill: #184b59 !important;
}
.header-item nav ul li ul {
  background: #FEFEFE;
  pointer-events: none;
  opacity: 0;
  display: flex;
  flex-direction: column;
  position: absolute;
  top: 100%;
  z-index: 1;
  height: auto !important;
  border-radius: 8px;
  border: 1px solid #D7D7D7;
  left: -20px;
  min-width: 300px;
  gap: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.header-item nav ul li ul li {
  position: relative;
  padding: 0;
  transition: all 0.3s ease;
}
.header-item nav ul li ul li.menu-item:before {
  content: "";
  display: none !important;
}
.header-item nav ul li ul li:last-of-type a:after {
  display: none !important;
}
.header-item nav ul li ul li a {
  font-size: clamp(14px, 0.7291666667vw, 14px);
  width: 100%;
  display: block;
  margin: 0 !important;
  text-align: left;
  position: relative;
  color: #184b59;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: -0.32px;
  padding: 0.875rem 1.375rem;
}
.header-item nav ul li ul li a:before {
  display: none;
}
.header-item nav ul li ul li.current-menu-item > a, .header-item nav ul li ul li.current-menu-parent > a, .header-item nav ul li ul li.current_page_item > a, .header-item nav ul li ul li.current-menu-ancestor > a {
  color: #000000;
}
.header-item nav ul li ul li.current-menu-item a svg path, .header-item nav ul li ul li.current-menu-parent a svg path, .header-item nav ul li ul li.current_page_item a svg path, .header-item nav ul li ul li.current-menu-ancestor a svg path {
  fill: #184b59 !important;
}
.header-item nav ul li ul li:hover {
  background: #E1E9F1;
}
.header-item nav ul li ul li:hover a {
  color: #000000;
}
.header-item nav ul li:hover > a, .header-item nav ul li:hover > span {
  color: #184b59 !important;
  text-shadow: 0 0 1px #184b59 !important;
}
.header-item nav ul li:hover > a svg path, .header-item nav ul li:hover > span svg path {
  fill: #184b59 !important;
}
.header-item nav ul li:hover > ul {
  pointer-events: auto;
  opacity: 1;
}
.header-item nav ul li.current-menu-item > a, .header-item nav ul li.current-menu-item > span, .header-item nav ul li.current-menu-parent > a, .header-item nav ul li.current-menu-parent > span, .header-item nav ul li.current_page_item > a, .header-item nav ul li.current_page_item > span, .header-item nav ul li.current-menu-ancestor > a, .header-item nav ul li.current-menu-ancestor > span {
  color: #000000 !important;
  text-shadow: 0 0 1px #000000;
}