/* ---------------------------------------------------------------------------- */
/* Imports */
/* ---------------------------------------------------------------------------- */
@keyframes underlineHover {
  0% {
    background-position-x: 100%;
    background-size: 100% 1px;
  }
  50% {
    background-position-x: 100%;
    background-size: 0% 1px;
  }
  51% {
    background-position-x: 0%;
    background-size: 0% 1px;
  }
  100% {
    background-position-x: 0%;
    background-size: 100% 1px;
  }
}
/* ---------- Content text ---------- */
/* ---------- Content text ---------- */
/* ---------- Base ---------- */
/* ---------- Breadcrumb ---------- */
/* ---------- Footer ---------- */
.style-h1,
h1 {
  font-size: clamp(42px, 4.1666666667vw, 80px);
  font-weight: 800;
  line-height: 0.95;
}

.style-h2,
h2 {
  font-size: clamp(32px, 2.5vw, 48px);
  font-weight: 400;
  line-height: 1;
}

.style-h3,
h3 {
  font-size: clamp(26px, 1.5625vw, 30px);
  font-weight: 700;
  line-height: 1.25;
}

.style-h4,
h4 {
  font-size: clamp(24px, 1.3541666667vw, 26px);
  font-weight: 700;
  line-height: 1;
}

.style-h5,
h5 {
  font-size: clamp(22px, 1.25vw, 24px);
  font-weight: 700;
  line-height: 1;
}

.style-h6,
h6 {
  font-size: clamp(20px, 1.1458333333vw, 22px);
  font-weight: 700;
  line-height: 1;
}

.style-font-66,
font-66 {
  font-size: clamp(32px, 3.4375vw, 66px);
  font-weight: 700;
  line-height: 1.05;
}

.style-font-16,
font-16 {
  font-size: clamp(16px, 0.8333333333vw, 16px);
  font-weight: 400;
  line-height: 1.75;
}

.style-font-14,
font-14 {
  font-size: clamp(14px, 0.7291666667vw, 14px);
  font-weight: 400;
  line-height: 1.75;
}

/* Font Weight */
.fw-thin {
  font-weight: 100 !important;
}

.fw-extralight {
  font-weight: 200 !important;
}

.fw-light {
  font-weight: 300 !important;
}

.fw-regular {
  font-weight: 400 !important;
}

.fw-medium {
  font-weight: 500 !important;
}

.fw-semibold {
  font-weight: 600 !important;
}

.fw-bold {
  font-weight: 700 !important;
}

.fw-extrabold {
  font-weight: 800 !important;
}

.fw-black {
  font-weight: 900 !important;
}

/* Titles */
h1, h2, h3, h4, h5, h6,
.style-h1, .style-h2, .style-h3, .style-h4, .style-h5, .style-h6 {
  font-family: var(--font-secondary);
}

.style-font-main {
  font-family: var(--font-main);
}

.style-font-secondary {
  font-family: var(--font-secondary);
}

.content-text > *:first-child {
  margin-top: 0 !important;
}
.content-text > *:last-child {
  margin-bottom: 0 !important;
}
.content-text h2, .content-text h3, .content-text h4, .content-text h5, .content-text h6,
.content-text .style-h2, .content-text .style-h3, .content-text .style-h4, .content-text .style-h5, .content-text .style-h6 {
  margin-bottom: calc(var(--spacing) * 8);
}
.content-text {
  /* ---------- Paragraphs ---------- */
}
.content-text p {
  margin-top: calc(var(--spacing) * 4);
}
.content-text p strong {
  font-weight: 700;
}
.content-text p + *:not(p):not(.wp-caption) {
  margin-top: calc(var(--spacing) * 6);
}
.content-text p:last-of-type {
  margin-bottom: 0 !important;
}
.content-text p img {
  margin-top: calc(var(--spacing) * 4);
}
.content-text p a {
  color: var(--color-secondary);
}
.content-text p a:hover {
  text-decoration: underline;
}
.content-text em {
  color: rgba(0, 0, 0, 0.25);
}
.content-text {
  /* ---------- Separators ---------- */
}
.content-text hr {
  height: 1px;
  display: block;
  margin-top: 45px !important;
  margin-bottom: 45px;
  background: var(--color-main);
  border: none;
  clear: both;
}
.content-text {
  /* ---------- Blockquote ---------- */
}
.content-text blockquote {
  padding: 1.5rem;
  border-left: 4px solid var(--color-secondary);
  background: rgba(0, 0, 0, 0.1);
}
.content-text blockquote p:first-child {
  margin-top: 0;
}
.content-text {
  /* ---------- Lists ---------- */
}
.content-text ul {
  list-style: none;
}
.content-text ul > li {
  position: relative;
  padding-left: 2em;
}
.content-text ul > li:nth-child(4n+1):before {
  background: var(--color-main);
}
.content-text ul > li:nth-child(4n+2):before {
  background: var(--color-secondary);
}
.content-text ul > li:nth-child(4n+3):before {
  background: var(--color-blue);
}
.content-text ul > li:nth-child(4n+4):before {
  background: var(--color-yellow);
}
.content-text ul > li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.2em;
  width: 1.2em;
  height: 1.2em;
  background-color: black;
  -webkit-mask: url("../images/bullet.svg") no-repeat center;
  mask: url("../images/bullet.svg") no-repeat center;
  -webkit-mask-size: contain;
  mask-size: contain;
}
.content-text ul ul {
  list-style: disc;
  padding-left: 1em;
  margin-top: 8px !important;
  margin-bottom: 0 !important;
}
.content-text ul ul li {
  padding-left: 0;
}
.content-text ul ul li:before {
  display: none;
}
.content-text ul ul li + li {
  margin-top: 4px;
}
.content-text ol {
  list-style: decimal;
}
.content-text ol ul {
  list-style: circle;
  margin-top: 8px;
}
.content-text ul,
.content-text ol {
  margin-top: 32px !important;
  margin-bottom: 32px !important;
}
.content-text ul li,
.content-text ol li {
  line-height: 1.6;
}
.content-text ul li + li,
.content-text ol li + li {
  margin-top: 16px;
}
.content-text {
  /* ---------- Images ---------- */
}
.content-text img {
  border-radius: 2px;
}
.content-text .alignleft {
  float: left;
  max-width: 45%;
  margin: 5px 35px 15px 0;
}
.content-text .alignleft.wp-caption {
  margin-right: 2rem;
}
.content-text .alignright {
  float: right;
  max-width: 45%;
  margin: 5px 0 15px 35px;
}
.content-text .alignright.wp-caption {
  margin-left: 2rem;
}
.content-text .aligncenter {
  padding: 10px 0;
  margin: 0 auto 2rem;
  clear: both;
}
.content-text .aligncenter.wp-caption {
  max-width: 100%;
}
.content-text .wp-caption {
  margin-bottom: 25px;
}
.content-text .wp-caption p {
  color: #888;
  font: italic 12px/16px var(--font-main);
  text-align: center;
  padding: 0 5px;
  margin: 10px 10px 0 0;
}

.card-style-image .card .card-inner {
  border: 1px solid var(--color-grey-2);
}
.card-style-image .card .card-inner:hover {
  background: var(--color-grey-1);
}
.card-style-image .card .card-inner:hover .arrow svg .first-el {
  transform: translateX(70px);
}
.card-style-image .card .card-inner:hover .arrow svg .second-el {
  transform: translateX(0);
}
.card-style-image .card .card-inner:hover .card-image img {
  transform: scale(1.1);
}
.card-style-image .card .card-inner .card-top {
  padding: 8px 4px;
}
@media (min-width: 80rem) {
  .card-style-image .card .card-inner .card-top {
    padding: clamp(24px, 1.875vw, 36px) clamp(12px, 1.875vw, 36px);
  }
}
.card-style-image .card .card-inner .card-top.no-description {
  padding: 0 4px;
}
@media (min-width: 80rem) {
  .card-style-image .card .card-inner .card-top.no-description {
    padding: 0 clamp(12px, 1.875vw, 36px);
  }
}
.card-style-image .card .card-inner .card-top h3 {
  padding-right: 48px;
}

.card-style-content .card {
  background: none;
}
.card-style-content .card:nth-child(3n+1) .card-inner {
  background: var(--color-secondary);
}
.card-style-content .card:nth-child(3n+2) .card-inner {
  background: var(--color-blue);
}
.card-style-content .card:nth-child(3n+3) .card-inner {
  background: var(--color-yellow);
}
.card-style-content .card .card-inner .card-top {
  padding: clamp(12px, 0.9375vw, 18px);
}
.card-style-content .card .card-inner .card-top .card-icon img {
  height: clamp(65px, 4.4270833333vw, 85px);
  width: auto;
}
.card-style-content .card .card-inner .card-top h3 {
  font-weight: 700;
}

.card-style-icon {
  gap: clamp(32px, 3.3333333333vw, 64px);
}

.card .card-inner {
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  height: 100%;
  transition: background 1s cubic-bezier(0.15, 0.65, 0.25, 1);
}
.card .card-inner .arrow {
  position: absolute;
  top: 1rem;
  right: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--color-grey-2);
  background: #FFF;
  width: 42px;
  height: 42px;
  overflow: hidden;
}
.card .card-inner .arrow svg {
  display: block;
  height: 16px;
  width: auto;
  overflow: initial;
}
.card .card-inner .arrow svg path {
  transition: transform 0.6s ease;
}
.card .card-inner .arrow svg .first-el {
  transform: translateX(0);
}
.card .card-inner .arrow svg .second-el {
  transform: translateX(-70px);
}
.card .card-inner .card-icon img {
  height: clamp(96px, 8.5416666667vw, 164px);
  width: auto;
}
.card .card-inner .card-image {
  position: relative;
  border-radius: 4px;
  border: 1px solid var(--color-grey-2);
  padding-top: 61.1111111111%;
  width: 100%;
  overflow: hidden;
}
.card .card-inner .card-image img {
  position: absolute;
  top: 0;
  left: 0;
  transform-origin: center;
  width: 100%;
  height: 100%;
  object-position: center;
  object-fit: cover;
  transition: transform 1s cubic-bezier(0.15, 0.65, 0.25, 1);
}

#search-popup-holder,
#newsletter-popup-holder {
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.75);
  z-index: 1100;
  padding: 32px 16px;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
#search-popup-holder.is-active,
#newsletter-popup-holder.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}
#search-popup-holder.is-active .newsletter-popup,
#newsletter-popup-holder.is-active .newsletter-popup {
  transform: translateY(0);
}
#search-popup-holder .search-popup,
#search-popup-holder .newsletter-popup,
#newsletter-popup-holder .search-popup,
#newsletter-popup-holder .newsletter-popup {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--color-white);
  border-radius: 8px;
  padding: 6px;
  max-width: clamp(960px, 59.375vw, 1140px);
  width: 100%;
  max-height: calc(100vh - 100px);
  max-height: calc(100svh - 100px);
  transform: translateY(35px);
  transition: transform 0.3s ease;
}
@media (min-width: 40rem) {
  #search-popup-holder .search-popup,
  #search-popup-holder .newsletter-popup,
  #newsletter-popup-holder .search-popup,
  #newsletter-popup-holder .newsletter-popup {
    flex-direction: row;
  }
}
#search-popup-holder .search-popup .close-popup,
#search-popup-holder .newsletter-popup .close-popup,
#newsletter-popup-holder .search-popup .close-popup,
#newsletter-popup-holder .newsletter-popup .close-popup {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-grey-2);
  height: 36px;
  width: 36px;
  cursor: pointer;
  transition: background 0.3s ease;
}
@media (min-width: 40rem) {
  #search-popup-holder .search-popup .close-popup,
  #search-popup-holder .newsletter-popup .close-popup,
  #newsletter-popup-holder .search-popup .close-popup,
  #newsletter-popup-holder .newsletter-popup .close-popup {
    top: 8px;
    right: 8px;
    height: 50px;
    width: 50px;
  }
}
#search-popup-holder .search-popup .close-popup:hover,
#search-popup-holder .newsletter-popup .close-popup:hover,
#newsletter-popup-holder .search-popup .close-popup:hover,
#newsletter-popup-holder .newsletter-popup .close-popup:hover {
  background: var(--color-grey-1);
}
#search-popup-holder .search-popup .close-popup svg,
#search-popup-holder .newsletter-popup .close-popup svg,
#newsletter-popup-holder .search-popup .close-popup svg,
#newsletter-popup-holder .newsletter-popup .close-popup svg {
  display: block;
  height: 15px;
  width: auto;
}
@media (min-width: 40rem) {
  #search-popup-holder .search-popup .close-popup svg,
  #search-popup-holder .newsletter-popup .close-popup svg,
  #newsletter-popup-holder .search-popup .close-popup svg,
  #newsletter-popup-holder .newsletter-popup .close-popup svg {
    height: 17px;
  }
}
#search-popup-holder .search-popup .image-holder,
#search-popup-holder .newsletter-popup .image-holder,
#newsletter-popup-holder .search-popup .image-holder,
#newsletter-popup-holder .newsletter-popup .image-holder {
  position: relative;
  padding-top: 56.25%;
  flex-shrink: 0;
}
@media (min-width: 40rem) {
  #search-popup-holder .search-popup .image-holder,
  #search-popup-holder .newsletter-popup .image-holder,
  #newsletter-popup-holder .search-popup .image-holder,
  #newsletter-popup-holder .newsletter-popup .image-holder {
    aspect-ratio: initial;
    padding: 0;
    width: clamp(280px, 18.2291666667vw, 350px);
  }
}
#search-popup-holder .search-popup .image-holder img,
#search-popup-holder .newsletter-popup .image-holder img,
#newsletter-popup-holder .search-popup .image-holder img,
#newsletter-popup-holder .newsletter-popup .image-holder img {
  position: absolute;
  top: 0;
  left: 0;
  border-radius: 4px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  object-position: center;
}
#search-popup-holder .search-popup .content-holder,
#search-popup-holder .newsletter-popup .content-holder,
#newsletter-popup-holder .search-popup .content-holder,
#newsletter-popup-holder .newsletter-popup .content-holder {
  flex: 1 1 auto;
  overflow-y: auto;
  padding: clamp(32px, 4.1666666667vw, 80px) 16px;
}
@media (min-width: 40rem) {
  #search-popup-holder .search-popup .content-holder,
  #search-popup-holder .newsletter-popup .content-holder,
  #newsletter-popup-holder .search-popup .content-holder,
  #newsletter-popup-holder .newsletter-popup .content-holder {
    padding: clamp(32px, 4.1666666667vw, 80px);
  }
}
#search-popup-holder .search-popup .content-holder .inner-content,
#search-popup-holder .newsletter-popup .content-holder .inner-content,
#newsletter-popup-holder .search-popup .content-holder .inner-content,
#newsletter-popup-holder .newsletter-popup .content-holder .inner-content {
  max-width: 600px;
}
#search-popup-holder .search-popup .content-holder .inner-content h2,
#search-popup-holder .newsletter-popup .content-holder .inner-content h2,
#newsletter-popup-holder .search-popup .content-holder .inner-content h2,
#newsletter-popup-holder .newsletter-popup .content-holder .inner-content h2 {
  max-width: 500px;
}
#search-popup-holder .search-popup .content-holder .inner-content .gform_wrapper,
#search-popup-holder .newsletter-popup .content-holder .inner-content .gform_wrapper,
#newsletter-popup-holder .search-popup .content-holder .inner-content .gform_wrapper,
#newsletter-popup-holder .newsletter-popup .content-holder .inner-content .gform_wrapper {
  margin-top: clamp(32px, 2.8125vw, 54px);
}
#search-popup-holder .search-popup .content-holder .inner-content .gform_wrapper .gform_heading,
#search-popup-holder .newsletter-popup .content-holder .inner-content .gform_wrapper .gform_heading,
#newsletter-popup-holder .search-popup .content-holder .inner-content .gform_wrapper .gform_heading,
#newsletter-popup-holder .newsletter-popup .content-holder .inner-content .gform_wrapper .gform_heading {
  display: none;
}

.outils-description .content-text {
  padding-bottom: var(--tec-spacer-7);
}

.tribe-events-meta-group .tribe-events-meta-label {
  font-weight: 700;
}
.tribe-events-meta-group .tribe-venue {
  font-weight: 700;
}
.tribe-events-meta-group ul li {
  font-family: var(--font-main);
  font-size: clamp(16px, 1.0416666667vw, 20px);
  font-weight: 600;
  line-height: 1.35;
}
.tribe-events-meta-group ul li + li {
  margin-top: 12px;
}

.tribe-events-notices {
  border: 0;
}

.tribe-common--breakpoint-medium.tribe-events .tribe-events-l-container {
  padding: 0 !important;
}

.tribe-events-c-subscribe-dropdown__container {
  display: none !important;
}

.tec-events-category-color-filter .tec-events-category-color-filter__dropdown {
  border: 1px solid var(--color-grey-2);
}

.tribe-common .tribe-common-l-container {
  max-width: none;
  padding: 0;
}

.tablepress {
  margin-bottom: 48px;
  width: 100%;
}
.tablepress thead th {
  text-align: right;
  padding-top: 12px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--color-grey-3);
}
.tablepress thead th.column-1 {
  text-align: left;
}
.tablepress td {
  border-bottom: 1px solid var(--color-grey-2);
  padding-top: 12px;
  padding-bottom: 12px;
  font-weight: 400;
}
.tablepress td:not(.column-1) {
  text-align: right;
}
.tablepress caption {
  display: none !important;
}

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

html,
body {
  width: 100%;
  max-width: 100%;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

html {
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  background: var(--color-white);
  font-family: var(--font-main);
  font-size: clamp(16px, 1.0416666667vw, 20px);
  font-weight: 500;
  line-height: 1.75;
  color: var(--color-black);
  position: relative;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

::selection {
  color: white;
  background: var(--color-main);
}

.background-color-main {
  background-color: #131313 !important;
}

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

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

.background-color-secondary {
  background-color: #0A9D6C !important;
}

.text-color-secondary {
  color: #0A9D6C !important;
}

.border-color-secondary {
  border: 1px solid #0A9D6C !important;
}

.background-color-blue {
  background-color: #6592CD !important;
}

.text-color-blue {
  color: #6592CD !important;
}

.border-color-blue {
  border: 1px solid #6592CD !important;
}

.background-color-yellow {
  background-color: #FBBC0C !important;
}

.text-color-yellow {
  color: #FBBC0C !important;
}

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

.background-color-grey-1 {
  background-color: #F2F2F2 !important;
}

.text-color-grey-1 {
  color: #F2F2F2 !important;
}

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

.background-color-grey-2 {
  background-color: #E9E9E9 !important;
}

.text-color-grey-2 {
  color: #E9E9E9 !important;
}

.border-color-grey-2 {
  border: 1px solid #E9E9E9 !important;
}

.background-color-grey-3 {
  background-color: #393A3B !important;
}

.text-color-grey-3 {
  color: #393A3B !important;
}

.border-color-grey-3 {
  border: 1px solid #393A3B !important;
}

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

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

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

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

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

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

/* ---------- Containers ---------- */
.container {
  padding-right: 1rem;
  padding-left: 1rem;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: calc(1460px + 2rem);
}
@media (min-width: 64rem) {
  .container {
    width: 88%;
  }
}
.container.large {
  padding-right: clamp(16px, 3.3333333333vw, 64px);
  padding-left: clamp(16px, 3.3333333333vw, 64px);
  width: 100%;
  max-width: calc(1720px + 2rem);
}
.container.full {
  width: 100%;
  max-width: none;
}

.section:not(.palette-default) {
  margin-right: 1rem;
  margin-left: 1rem;
}
@media (min-width: 64rem) {
  .section:not(.palette-default) .container {
    width: calc(88% + 2rem);
  }
}

/* ---------- Socials ---------- */
.socials-holder {
  display: flex;
  gap: 6px;
}
.socials-holder li:hover:nth-child(4n+1) a svg path {
  fill: var(--color-secondary);
}
.socials-holder li:hover:nth-child(4n+2) a svg path {
  fill: var(--color-blue);
}
.socials-holder li:hover:nth-child(4n+3) a svg path {
  fill: var(--color-yellow);
}
.socials-holder li:hover:nth-child(4n+4) a svg path {
  fill: var(--color-grey-3);
}
.socials-holder li a {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  height: 24px;
  width: 24px;
}
.socials-holder li a:hover svg path {
  fill: var(--color-secondary);
}
.socials-holder li a svg {
  display: block;
  height: 24px;
  width: auto;
}
.socials-holder li a svg path {
  transition: fill 0.3s ease;
}
.socials-holder li a i {
  position: absolute;
  z-index: 10;
  font-size: 14px;
  color: var(--color-white);
}

/* ---------- Image ---------- */
img:not([src]):not([srcset]) {
  visibility: hidden;
}

/* ---------- General ---------- */
.absolute-link {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  height: 100%;
}

.lws-radius {
  border-radius: 6px;
  overflow: hidden;
}
@media (min-width: 64rem) {
  .lws-radius {
    border-radius: 10px;
  }
}

.zoom-animation {
  position: relative;
}
.zoom-animation:hover .zoom {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.zoom-animation .zoom {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--color-white);
  border-radius: 50%;
  height: 40px;
  width: 40px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all 0.6s ease;
}
@media (hover: none) and (pointer: coarse) {
  .zoom-animation .zoom {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}
.zoom-animation .zoom svg {
  display: block;
  height: 20px;
  width: auto;
}
.zoom-animation .zoom svg path {
  fill: var(--color-yellow);
}

#tribe-events-pg-template {
  max-width: none;
  padding: 0;
  margin: 0;
}

.single-outils-content {
  display: flex;
  gap: 2rem;
  flex-direction: column;
}
.single-outils-content .outils-description,
.single-outils-content .outils-img {
  width: 100%;
  max-width: 1024px;
  margin: 0 auto;
}

.password-protected {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin: auto;
  padding: clamp(48px, 8.5416666667vw, 164px) 0;
  min-height: 70vh;
}
.password-protected form {
  text-align: center;
  margin-top: 32px;
  width: 100%;
}
.password-protected form input {
  font-size: clamp(28px, 1.875vw, 36px);
  text-align: center;
  color: var(--color-main);
  border: 1px solid var(--color-grey-2);
  height: clamp(70px, 4.6875vw, 90px);
  width: 100%;
  max-width: 640px;
}
.password-protected form input::placeholder {
  color: #D9D9D9;
}
.password-protected form button {
  margin: 16px auto 0;
}

/* ---------- Blogue ---------- */
.pagination-list {
  display: flex;
  justify-content: center;
  gap: 6px;
}
.pagination-list .pagination-link {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-size: 14px;
  border: 1px solid var(--color-grey-2);
  width: 36px;
  height: 36px;
  transition: background 0.3s ease;
}
.pagination-list .pagination-link:hover {
  background: var(--color-grey-2);
}
.pagination-list .pagination-link.is-current {
  border-color: var(--color-main);
  background: var(--color-main);
  color: var(--color-white);
}
.pagination-list .pagination-link svg {
  display: block;
  height: 14px;
  width: auto;
}
.pagination-list .pagination-link svg path {
  fill: var(--color-main);
}

.single-post .section-post-content .content-holder {
  max-width: 1024px;
  margin: auto;
}
.single-post .section-post-content .post-categories {
  margin-bottom: 24px;
}

.section-other-articles h2 {
  margin-bottom: clamp(32px, 2.5vw, 48px);
}

.section--banner,
.section--banner-slider,
.section--video,
.section--gallery-slider {
  overflow: hidden;
  padding-right: 1rem;
  padding-left: 1rem;
}

.section {
  position: relative;
  border-radius: 6px;
  margin-bottom: 1rem;
}
@media (min-width: 64rem) {
  .section {
    border-radius: 10px;
  }
}
.section.hide-section {
  opacity: 0.4;
}
.section.style-dark {
  color: var(--color-white);
}
.section .block-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: var(--block-background-color);
  opacity: var(--block-overlay-opacity);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.section .section-background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.section .section-background.bg-vtop img {
  object-position: top;
}
.section .section-background.bg-vcenter img {
  object-position: center;
}
.section .section-background.bg-vbottom img {
  object-position: bottom;
}
.section .section-background img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.section .block {
  position: relative;
  z-index: 10;
}
.section .block.block-image img {
  width: 100%;
}
.section .block-custom-width {
  margin-right: auto !important;
  margin-left: auto !important;
}
.section .custom-ratio {
  position: relative;
}
.section .custom-ratio.ratio-one-one {
  padding-top: 100%;
}
.section .custom-ratio.ratio-sixteen-nine {
  padding-top: 56.25%;
}
.section .custom-ratio.ratio-four-tree {
  padding-top: 75%;
}
.section .custom-ratio.ratio-tree-four {
  padding-top: 133.3333333333%;
}
.section .custom-ratio:not(.ratio-auto) img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.nav-mobile {
  position: fixed;
  z-index: 111;
  top: 0;
  left: 0;
  text-align: left;
  background: var(--color-white);
  padding-top: var(--app-headerHeight);
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  visibility: hidden;
  background: var(--color-white);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.nav-mobile.is-active {
  opacity: 1 !important;
  visibility: visible !important;
  pointer-events: auto !important;
}
.nav-mobile .nav-mobile-holder {
  position: relative;
  overflow: hidden;
}
.nav-mobile .nav-mobile-holder .overflow-content {
  overflow-y: auto;
  height: 100%;
}
.nav-mobile .nav-mobile-holder .first-level .menu-item a,
.nav-mobile .nav-mobile-holder .first-level .menu-item .submenu-back,
.nav-mobile .nav-mobile-holder .first-level .submenu-header a,
.nav-mobile .nav-mobile-holder .first-level .submenu-header .submenu-back,
.nav-mobile .nav-mobile-holder .first-level .submenu-parent-link a,
.nav-mobile .nav-mobile-holder .first-level .submenu-parent-link .submenu-back {
  display: flex;
  align-items: center;
  gap: 16px;
  font-weight: 500;
  padding-block: clamp(16px, 1.6666666667vw, 32px);
  padding-inline: clamp(16px, 1.6666666667vw, 32px);
  width: 100%;
  transition: background 0.3s ease;
}
.nav-mobile .nav-mobile-holder .first-level .menu-item a:hover,
.nav-mobile .nav-mobile-holder .first-level .menu-item .submenu-back:hover,
.nav-mobile .nav-mobile-holder .first-level .submenu-header a:hover,
.nav-mobile .nav-mobile-holder .first-level .submenu-header .submenu-back:hover,
.nav-mobile .nav-mobile-holder .first-level .submenu-parent-link a:hover,
.nav-mobile .nav-mobile-holder .first-level .submenu-parent-link .submenu-back:hover {
  background: var(--color-grey-1);
}
.nav-mobile .nav-mobile-holder .first-level .menu-item a i,
.nav-mobile .nav-mobile-holder .first-level .menu-item .submenu-back i,
.nav-mobile .nav-mobile-holder .first-level .submenu-header a i,
.nav-mobile .nav-mobile-holder .first-level .submenu-header .submenu-back i,
.nav-mobile .nav-mobile-holder .first-level .submenu-parent-link a i,
.nav-mobile .nav-mobile-holder .first-level .submenu-parent-link .submenu-back i {
  font-size: 0.8em;
}
.nav-mobile .nav-mobile-holder .first-level .menu-item .submenu-back,
.nav-mobile .nav-mobile-holder .first-level .submenu-header .submenu-back,
.nav-mobile .nav-mobile-holder .first-level .submenu-parent-link .submenu-back {
  font-weight: 700;
}
.nav-mobile .nav-mobile-holder .first-level .submenu-header,
.nav-mobile .nav-mobile-holder .first-level .submenu-parent-link {
  border-bottom: 1px solid var(--color-grey-2);
}
.nav-mobile .nav-mobile-holder .first-level .menu-item + .menu-item {
  border-top: 1px solid var(--color-grey-2);
}
.nav-mobile .nav-mobile-holder .first-level .menu-item.menu-item-has-children > a {
  justify-content: space-between;
}
.nav-mobile .nav-mobile-holder .first-level .menu-item .sub-menu {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  background: var(--color-white);
  height: 100%;
  width: 100%;
  overflow: auto;
  transform: translateX(100%);
  transition: transform 0.3s ease;
}
.nav-mobile .nav-mobile-holder .first-level .menu-item .sub-menu.is-active {
  transform: translateX(0);
}
.nav-mobile .nav-mobile-holder .first-level .menu-item .sub-menu .submenu-parent-link i {
  display: none;
}
.nav-mobile .nav-mobile-footer {
  padding-inline: clamp(16px, 1.6666666667vw, 32px);
}

.search-form form {
  position: relative;
  display: block;
  background: var(--color-white);
  border-radius: 8px;
  border: 1px solid var(--color-grey-2);
  height: 70px;
  width: 100%;
  outline: none;
}
.search-form form::-webkit-input-placeholder {
  color: var(--color-main);
}
.search-form form:-moz-placeholder {
  color: var(--color-main);
}
.search-form form::-moz-placeholder {
  color: var(--color-main);
}
.search-form form:-ms-input-placeholder {
  color: var(--color-main);
}
.search-form form .clearable {
  display: block;
  height: 100%;
  width: 100%;
}
.search-form form input {
  border: 0;
  padding: 0 20px 0 88px;
  height: 100%;
  width: 100%;
}
.search-form form button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  background: transparent;
  width: 64px;
  height: 100%;
  cursor: pointer;
}
.search-form form button svg {
  display: block;
  height: 20px;
  width: auto;
}

.search-template .lws-fade-item {
  transform: none;
  opacity: 1;
}
.search-template .section--separator {
  border-bottom: 3px solid var(--color-secondary);
}
.search-template .search-banner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.search-template .search-banner .search-form {
  margin-top: 32px;
}
.search-template .search-banner .search-form form {
  max-width: 550px;
  margin: auto;
}
.search-template .pages-list .item {
  position: relative;
  padding: clamp(24px, 1.4583333333vw, 28px) 0;
  border-bottom: 1px solid var(--color-grey-2);
}
@media (pointer: fine) {
  .search-template .pages-list .item:hover span {
    transform: translateX(26px);
  }
}
.search-template .pages-list .item:nth-child(3n+1) .arrow {
  background-color: var(--color-secondary);
}
.search-template .pages-list .item:nth-child(3n+2) .arrow {
  background-color: var(--color-blue);
}
.search-template .pages-list .item:nth-child(3n+3) .arrow {
  background-color: var(--color-yellow);
}
.search-template .pages-list .item span {
  transition: transform 0.3s ease;
}
.search-template .pages-list .item .arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  border: 1px solid var(--color-grey-2);
  width: 36px;
  height: 36px;
}
@media (min-width: 64rem) {
  .search-template .pages-list .item .arrow {
    width: 42px;
    height: 42px;
  }
}
.search-template .pages-list .item .arrow svg {
  display: block;
  height: auto;
  width: 14px;
}
@media (min-width: 64rem) {
  .search-template .pages-list .item .arrow svg {
    width: 12px;
  }
}

.block-newsletter .newsletter-content-holder h2 {
  max-width: 985px;
}
.block-newsletter .newsletter-content-holder .gform_wrapper {
  max-width: 915px;
}

.footer nav a {
  text-decoration: underline;
  text-underline-offset: 2px;
  text-decoration-color: rgba(0, 0, 0, 0);
  transition: text-decoration 0.3s ease;
}
.footer nav a:hover {
  text-decoration-color: var(--color-main);
}
.footer .footer-container,
.footer .footer-bottom {
  border-top: 1px solid var(--color-grey-2);
  line-height: 1.35;
  font-weight: 500;
}
.footer .footer-container .footer-col-holder,
.footer .footer-bottom .footer-col-holder {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.footer .footer-container .footer-col-holder .footer-col,
.footer .footer-bottom .footer-col-holder .footer-col {
  flex: 0 0 auto;
  width: 100%;
  padding-right: clamp(16px, 3.3333333333vw, 64px);
  padding-left: clamp(16px, 3.3333333333vw, 64px);
}
@media (min-width: 64rem) {
  .footer .footer-container .footer-col-holder .footer-col,
  .footer .footer-bottom .footer-col-holder .footer-col {
    width: 33.33%;
  }
}
.footer .footer-container .footer-col-holder .footer-col.large,
.footer .footer-bottom .footer-col-holder .footer-col.large {
  padding-top: clamp(24px, 2.1875vw, 42px);
  padding-bottom: clamp(24px, 2.1875vw, 42px);
}
@media (min-width: 64rem) {
  .footer .footer-container .footer-col-holder .footer-col:not(:first-child),
  .footer .footer-bottom .footer-col-holder .footer-col:not(:first-child) {
    border-left: 1px solid var(--color-grey-2);
  }
}
.footer .footer-container .footer-col-holder .footer-col:not(:last-child),
.footer .footer-bottom .footer-col-holder .footer-col:not(:last-child) {
  border-bottom: 1px solid var(--color-grey-2);
}
@media (min-width: 64rem) {
  .footer .footer-container .footer-col-holder .footer-col:not(:last-child),
  .footer .footer-bottom .footer-col-holder .footer-col:not(:last-child) {
    border-bottom: 0;
  }
}
.footer .footer-container .footer-col-holder .footer-col.logo,
.footer .footer-bottom .footer-col-holder .footer-col.logo {
  display: flex;
  justify-content: start;
  align-items: center;
}
@media (min-width: 64rem) {
  .footer .footer-container .footer-col-holder .footer-col.logo,
  .footer .footer-bottom .footer-col-holder .footer-col.logo {
    justify-content: center;
  }
}
@media (min-width: 64rem) {
  .footer .footer-container .footer-col-holder .footer-col.logo a,
  .footer .footer-bottom .footer-col-holder .footer-col.logo a {
    flex: 1 0 auto;
    max-width: clamp(250px, 18.2291666667vw, 350px);
  }
}
@media (min-width: 64rem) {
  .footer .footer-container .footer-col-holder .footer-col.logo img,
  .footer .footer-bottom .footer-col-holder .footer-col.logo img {
    width: 100%;
    max-height: none;
  }
}
.footer .footer-container .footer-col-holder .footer-col.col-menu .menu-footer,
.footer .footer-bottom .footer-col-holder .footer-col.col-menu .menu-footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.footer .footer-container .footer-col-holder .footer-col.col-menu .menu-footer a,
.footer .footer-bottom .footer-col-holder .footer-col.col-menu .menu-footer a {
  font-size: 16px;
  font-weight: 600;
}
.footer .footer-container .footer-col-holder .footer-col.col-menu .menu-footer .menu,
.footer .footer-bottom .footer-col-holder .footer-col.col-menu .menu-footer .menu {
  display: flex;
  flex-direction: column;
  gap: clamp(16px, 1.25vw, 24px);
}
.footer .footer-container .footer-col-holder .footer-col.col-menu .menu-footer li,
.footer .footer-bottom .footer-col-holder .footer-col.col-menu .menu-footer li {
  list-style-type: none;
}
.footer .footer-container .footer-col-holder .footer-col.col-menu .menu-footer li.menu-item-has-children > a,
.footer .footer-bottom .footer-col-holder .footer-col.col-menu .menu-footer li.menu-item-has-children > a {
  display: flex;
  align-items: center;
  gap: 10px;
}
.footer .footer-container .footer-col-holder .footer-col.col-menu .menu-footer li.menu-item-has-children .dropdown-menu,
.footer .footer-bottom .footer-col-holder .footer-col.col-menu .menu-footer li.menu-item-has-children .dropdown-menu {
  display: none;
  margin: 1rem 0;
}
.footer .footer-container .footer-col-holder .footer-col.col-menu .menu-footer li.menu-item-has-children .dropdown-menu li + li,
.footer .footer-bottom .footer-col-holder .footer-col.col-menu .menu-footer li.menu-item-has-children .dropdown-menu li + li {
  margin-top: 1rem;
}
.footer .footer-container .footer-col-holder .footer-col.col-menu .menu-footer li.menu-item-has-children .dropdown-menu a,
.footer .footer-bottom .footer-col-holder .footer-col.col-menu .menu-footer li.menu-item-has-children .dropdown-menu a {
  font-size: 14px;
  font-weight: 400;
  color: var(--color-grey-3);
  text-decoration: none;
  transition: color 0.3s ease;
}
.footer .footer-container .footer-col-holder .footer-col.col-menu .menu-footer li.menu-item-has-children .dropdown-menu a:hover,
.footer .footer-bottom .footer-col-holder .footer-col.col-menu .menu-footer li.menu-item-has-children .dropdown-menu a:hover {
  color: var(--color-main);
}
@media (min-width: 40rem) {
  .footer .footer-container .footer-col-holder .footer-col.contact,
  .footer .footer-bottom .footer-col-holder .footer-col.contact {
    display: flex;
    align-items: end;
  }
}
.footer .footer-container .footer-col-holder .footer-col.contact .map,
.footer .footer-bottom .footer-col-holder .footer-col.contact .map {
  margin-top: 24px;
  transition: transform 1s cubic-bezier(0.15, 0.65, 0.25, 1);
}
@media (min-width: 40rem) {
  .footer .footer-container .footer-col-holder .footer-col.contact .map,
  .footer .footer-bottom .footer-col-holder .footer-col.contact .map {
    margin-top: 0;
  }
}
.footer .footer-container .footer-col-holder .footer-col.contact .map:hover,
.footer .footer-bottom .footer-col-holder .footer-col.contact .map:hover {
  transform: rotate(35deg) scale(1.05);
}
.footer .footer-container .footer-col-holder .footer-col.contact .map img,
.footer .footer-bottom .footer-col-holder .footer-col.contact .map img {
  height: clamp(80px, 6.7708333333vw, 130px);
  width: clamp(80px, 6.7708333333vw, 130px);
}
.footer .footer-container .footer-col-holder .footer-col.contact .inner-contact,
.footer .footer-bottom .footer-col-holder .footer-col.contact .inner-contact {
  flex: 1;
  font-size: 14px;
}
.footer .footer-container .footer-col-holder .footer-col.contact a,
.footer .footer-bottom .footer-col-holder .footer-col.contact a {
  text-decoration: underline;
  color: var(--color-blue);
  transition: color 0.3s ease;
}
.footer .footer-container .footer-col-holder .footer-col.contact a:hover,
.footer .footer-bottom .footer-col-holder .footer-col.contact a:hover {
  color: var(--color-secondary);
}
.footer .footer-container .footer-col-holder .footer-col.contact .contact-phones,
.footer .footer-bottom .footer-col-holder .footer-col.contact .contact-phones {
  display: flex;
  flex-wrap: wrap;
}
.footer .footer-container .footer-col-holder .footer-col.contact .contact-phones .contact-phone + .contact-phone:before,
.footer .footer-bottom .footer-col-holder .footer-col.contact .contact-phones .contact-phone + .contact-phone:before {
  content: "/";
  display: inline-block;
  margin: 0 2px 0 5px;
}
.footer .footer-container .footer-col-holder .footer-col.copyright,
.footer .footer-bottom .footer-col-holder .footer-col.copyright {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  border: 0;
}
@media (min-width: 20rem) {
  .footer .footer-container .footer-col-holder .footer-col.copyright,
  .footer .footer-bottom .footer-col-holder .footer-col.copyright {
    flex-direction: row;
  }
}
.footer .footer-container .footer-col-holder .footer-col.credit-holder .credit svg,
.footer .footer-bottom .footer-col-holder .footer-col.credit-holder .credit svg {
  display: inline-block;
  width: 20px;
  margin: 0 5px;
}
@media (min-width: 64rem) {
  .footer .footer-container .footer-col-holder .footer-col.credit-holder .credit svg,
  .footer .footer-bottom .footer-col-holder .footer-col.credit-holder .credit svg {
    display: flex;
  }
}
.footer .footer-container .footer-col-holder .footer-col.credit-holder .credit svg path,
.footer .footer-bottom .footer-col-holder .footer-col.credit-holder .credit svg path {
  fill: var(--color-yellow);
}
.footer .footer-container .footer-col-holder .footer-col.utility,
.footer .footer-bottom .footer-col-holder .footer-col.utility {
  border: 0;
}
@media (min-width: 64rem) {
  .footer .footer-container .footer-col-holder .footer-col.utility,
  .footer .footer-bottom .footer-col-holder .footer-col.utility {
    border-left: 1px solid var(--color-grey-2);
    order: 6;
  }
}
.footer .footer-container .footer-col-holder .footer-col.utility nav ul,
.footer .footer-bottom .footer-col-holder .footer-col.utility nav ul {
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 40rem) {
  .footer .footer-container .footer-col-holder .footer-col.utility nav ul,
  .footer .footer-bottom .footer-col-holder .footer-col.utility nav ul {
    flex-direction: row;
  }
}
@media (min-width: 64rem) {
  .footer .footer-container .footer-col-holder .footer-col.utility nav ul,
  .footer .footer-bottom .footer-col-holder .footer-col.utility nav ul {
    justify-content: end;
  }
}