@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans-Regular.woff2") format("woff2"), url("../fonts/WorkSans-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans-Medium.woff2") format("woff2"), url("../fonts/WorkSans-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans-Bold.woff2") format("woff2"), url("../fonts/WorkSans-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Work Sans";
  src: url("../fonts/WorkSans-ExtraBold.woff2") format("woff2"), url("../fonts/WorkSans-ExtraBold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
header#header {
  position: absolute;
  width: 100%;
  z-index: 99;
  top: 0;
  left: 0;
  transition: 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
header#header div.wrapper-header {
  display: flex;
  flex-flow: row wrap;
  align-items: stretch;
  justify-content: space-between;
  padding: 30px;
  transition: 0.3s ease-out;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 767px) {
  header#header div.wrapper-header {
    padding: 20px;
  }
}
header#header div.wrapper-header div.left-logo {
  flex-basis: 22.5%;
}
header#header div.wrapper-header div.left-logo svg {
  transition: 0.3s ease-out;
}
header#header div.wrapper-header div.left-logo svg:hover {
  transform: scale(0.9);
}
@media screen and (max-width: 980px) {
  header#header div.wrapper-header div.left-logo svg {
    width: 180px;
  }
}
@media screen and (max-width: 767px) {
  header#header div.wrapper-header div.left-logo svg {
    width: 120px;
  }
}
header#header div.wrapper-header nav.mid-nav {
  flex-basis: 45%;
}
header#header div.wrapper-header nav.mid-nav ul.main-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  display: inline-flex;
  flex-flow: wrap row;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 50px;
  height: 100%;
}
header#header div.wrapper-header nav.mid-nav ul.main-nav > li {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
}
header#header div.wrapper-header nav.mid-nav ul.main-nav > li > a {
  display: inline-block;
  font-size: 16px;
  line-height: 19px;
  font-weight: 500;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
}
header#header div.wrapper-header nav.mid-nav ul.main-nav > li > a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
header#header div.wrapper-header nav.mid-nav ul.main-nav > li ul.sub-menu {
  position: absolute;
  top: 75px;
  left: 50%;
  width: 205px;
  height: 0;
  opacity: 0;
  border-radius: 0 0 20px 20px;
  padding: 10px;
  background-color: white;
  list-style: none;
  transform: translateX(-50%);
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55);
  overflow: hidden;
  visibility: hidden;
  pointer-events: none;
}
header#header div.wrapper-header nav.mid-nav ul.main-nav > li ul.sub-menu li {
  font-weight: 500;
  color: #16002B;
  text-align: center;
  padding: 10px;
  border-radius: 6px;
}
header#header div.wrapper-header nav.mid-nav ul.main-nav > li ul.sub-menu li:hover {
  background-color: #AB25F5;
}
header#header div.wrapper-header nav.mid-nav ul.main-nav > li ul.sub-menu li:hover a {
  color: white !important;
}
header#header div.wrapper-header nav.mid-nav ul.main-nav > li.menu {
  position: relative;
}
header#header div.wrapper-header nav.mid-nav ul.main-nav > li.menu:after {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.805' height='6.609' viewBox='0 0 11.805 6.609'%3E%3Cpath id='Path_6430' data-name='Path 6430' d='M778.951,41l5.549,5.549L790.049,41' transform='translate(-778.598 -40.646)' fill='none' stroke='%23ab25f5' stroke-width='1'/%3E%3C/svg%3E%0A");
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
header#header div.wrapper-header nav.mid-nav ul.main-nav > li.menu:hover ul.sub-menu {
  height: var(--height);
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
@media screen and (max-width: 980px) {
  header#header div.wrapper-header nav.mid-nav {
    display: none;
  }
}
header#header div.wrapper-header div.right-link {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  header#header div.wrapper-header div.right-link {
    gap: 10px;
  }
}
header#header div.wrapper-header div.right-link > a {
  display: inline-block;
  font-size: 16px;
  font-weight: 500;
  line-height: 19px;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
}
header#header div.wrapper-header div.right-link > a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 980px) {
  header#header div.wrapper-header div.right-link > a {
    display: none;
  }
}
@media screen and (max-width: 980px) {
  header#header div.wrapper-header div.right-link div.button-addict {
    display: none;
  }
}
header#header div.wrapper-header div.right-link #menu_button {
  width: 39px;
  overflow: hidden;
}
@media screen and (min-width: 980px) {
  header#header div.wrapper-header div.right-link #menu_button {
    display: none;
  }
}
header#header div.wrapper-header div.right-link #menu_checkbox {
  display: none;
}
header#header div.wrapper-header div.right-link #menu_label {
  position: relative;
  display: block;
  height: 29px;
  cursor: pointer;
}
header#header div.wrapper-header div.right-link #menu_label:before,
header#header div.wrapper-header div.right-link #menu_label:after,
header#header div.wrapper-header div.right-link #menu_text_bar {
  position: absolute;
  left: 0;
  width: 100%;
  height: 3px;
  background-color: white;
}
header#header div.wrapper-header div.right-link #menu_label:before,
header#header div.wrapper-header div.right-link #menu_label:after {
  content: "";
  transition: 0.4s cubic-bezier(0.68, -0.55, 0.27, 1.55) left;
}
header#header div.wrapper-header div.right-link #menu_label:before {
  top: 0;
}
header#header div.wrapper-header div.right-link #menu_label:after {
  top: 12px;
}
header#header div.wrapper-header div.right-link #menu_text_bar {
  top: 24px;
}
header#header div.wrapper-header div.right-link #menu_text_bar:before {
  content: "MENU";
  position: absolute;
  top: 5px;
  right: 0;
  left: 0;
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  font-family: "Montserrat", Arial, Helvetica, sans-serif;
  text-align: center;
}
header#header div.wrapper-header div.right-link #menu_button.active #menu_label:before {
  left: -39px;
}
header#header div.wrapper-header div.right-link #menu_button.active #menu_label:after {
  left: 39px;
}
header#header div.wrapper-header div.right-link #menu_button.active #menu_label #menu_text_bar {
  background-color: #AB25F5;
}
header#header div.wrapper-header div.right-link #menu_button.active #menu_label #menu_text_bar:before {
  animation: moveUpThenDown 0.8s ease 0.2s forwards, shakeWhileMovingUp 0.8s ease 0.2s forwards, shakeWhileMovingDown 0.2s ease 0.8s forwards;
}
@keyframes moveUpThenDown {
  0% {
    top: 0;
  }
  50% {
    top: -27px;
  }
  100% {
    top: -18px;
  }
}
@keyframes shakeWhileMovingUp {
  0% {
    transform: rotateZ(0);
  }
  25% {
    transform: rotateZ(-10deg);
  }
  50% {
    transform: rotateZ(0deg);
  }
  75% {
    transform: rotateZ(10deg);
  }
  100% {
    transform: rotateZ(0);
  }
}
@keyframes shakeWhileMovingDown {
  0% {
    transform: rotateZ(0);
  }
  80% {
    transform: rotateZ(3deg);
  }
  90% {
    transform: rotateZ(-3deg);
  }
  100% {
    transform: rotateZ(0);
  }
}
header#header div.wrapper-header div.right-link div.language_selector {
  display: inline-block;
  position: relative;
  margin-left: 10px;
}
header#header div.wrapper-header div.right-link div.language_selector::after {
  position: absolute;
  border: unset;
  border-top: unset;
  top: 0;
  right: 0;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.805' height='6.609' viewBox='0 0 11.805 6.609'%3E%3Cpath id='Path_6430' data-name='Path 6430' d='M778.951,41l5.549,5.549L790.049,41' transform='translate(-778.598 -40.646)' fill='none' stroke='%23ab25f5' stroke-width='1'/%3E%3C/svg%3E%0A");
  pointer-events: none;
}
header#header div.wrapper-header div.right-link div.language_selector select {
  font-size: 16px;
  appearance: none;
  color: white;
  background: none;
  outline: none;
  border: none;
  padding-right: 20px;
}
header#header.fixed {
  position: fixed;
  transform: scale(0.9);
  top: 15px;
}
header#header.fixed div.wrapper-header {
  background-color: white;
  padding: 0 20px;
  border-radius: 8px;
}
header#header.fixed div.wrapper-header div.left-logo svg {
  width: 120px;
}
header#header.fixed div.wrapper-header div.left-logo svg #black {
  fill: #16002B;
}
header#header.fixed div.wrapper-header nav.mid-nav ul {
  gap: 0px;
}
header#header.fixed div.wrapper-header nav.mid-nav ul > li > a {
  color: #16002B;
}
header#header.fixed div.wrapper-header div.right-link > a {
  color: #16002B;
}
header#header.fixed div.wrapper-header div.right-link div.button-addict {
  background-color: #16002B;
}
header#header.fixed div.wrapper-header div.right-link div.button-addict:before {
  opacity: 1;
  background: linear-gradient(-20deg, #ab25f5 0, #635471 100%);
}
header#header.fixed div.wrapper-header div.right-link #menu_button #menu_label::after, header#header.fixed div.wrapper-header div.right-link #menu_button #menu_label::before {
  background-color: #AB25F5;
}
header#header.fixed div.wrapper-header div.right-link #menu_button #menu_label #menu_text_bar {
  background-color: #AB25F5;
}
header#header.fixed div.wrapper-header div.right-link #menu_button #menu_label #menu_text_bar:before {
  color: #16002B;
}
header#header.fixed div.wrapper-header div.right-link div.language_selector select {
  color: #16002B;
}

body.single-post header#header {
  position: fixed;
  transform: scale(0.9);
  top: 15px;
}
body.single-post header#header div.wrapper-header {
  background-color: white;
  padding: 0 20px;
  border-radius: 8px;
}
body.single-post header#header div.wrapper-header div.left-logo svg {
  width: 120px;
}
body.single-post header#header div.wrapper-header div.left-logo svg #black {
  fill: #16002B;
}
body.single-post header#header div.wrapper-header nav.mid-nav ul {
  gap: 0px;
}
body.single-post header#header div.wrapper-header nav.mid-nav ul > li > a {
  color: #16002B;
}
body.single-post header#header div.wrapper-header div.right-link > a {
  color: #16002B;
}
body.single-post header#header div.wrapper-header div.right-link div.button-addict {
  background-color: #16002B;
}
body.single-post header#header div.wrapper-header div.right-link div.button-addict:before {
  opacity: 1;
  background: linear-gradient(-20deg, #ab25f5 0, #635471 100%);
}
body.single-post header#header div.wrapper-header div.right-link #menu_button #menu_label::after, body.single-post header#header div.wrapper-header div.right-link #menu_button #menu_label::before {
  background-color: #AB25F5;
}
body.single-post header#header div.wrapper-header div.right-link #menu_button #menu_label #menu_text_bar {
  background-color: #AB25F5;
}
body.single-post header#header div.wrapper-header div.right-link #menu_button #menu_label #menu_text_bar:before {
  color: #16002B;
}
body.single-post header#header div.wrapper-header div.right-link div.language_selector ul {
  display: inline-block;
}
body.single-post header#header div.wrapper-header div.right-link div.language_selector ul a {
  border: none;
  background-color: transparent;
  color: white;
}
body.single-post header#header div.wrapper-header div.right-link div.language_selector ul a::after {
  border: unset;
  border-top: unset;
  top: calc(50% - 0.5em);
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.805' height='6.609' viewBox='0 0 11.805 6.609'%3E%3Cpath id='Path_6430' data-name='Path 6430' d='M778.951,41l5.549,5.549L790.049,41' transform='translate(-778.598 -40.646)' fill='none' stroke='%23ab25f5' stroke-width='1'/%3E%3C/svg%3E%0A");
}
body.single-post header#header div.wrapper-header div.right-link div.language_selector ul a span {
  color: #16002B;
}
body.single-post header#header div.wrapper-header div.right-link div.language_selector ul > ul a {
  border: none;
  background-color: transparent;
  color: #16002B;
}
body.single-post header#header div.wrapper-header div.right-link div.language_selector ul > ul a span {
  color: #16002B;
}

div.menu-mobile {
  position: fixed;
  z-index: 5;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #16002B;
  border-radius: 0px;
  transform: translate3d(0, 200%, 0);
  opacity: 0;
  visibility: hidden;
  transition: 0.3s ease-out;
  display: flex;
  align-items: center;
  padding: 30px;
}
div.menu-mobile.opened {
  opacity: 1;
  transform: translate3d(0, 0%, 0);
  visibility: visible;
}
div.menu-mobile.animated:before {
  transform: skewX(160deg) translateX(-90%);
}
div.menu-mobile.animated:after {
  transform: skewX(160deg) translateX(90%);
}
div.menu-mobile ul.main-nav {
  padding: 0;
  list-style-type: none;
  width: 100%;
}
div.menu-mobile ul.main-nav > li {
  margin-bottom: 30px;
}
div.menu-mobile ul.main-nav > li:last-child {
  margin-bottom: 0px;
}
div.menu-mobile ul.main-nav > li > a {
  font-size: 40px;
  line-height: 50px;
  font-weight: 500;
  color: white;
}
div.menu-mobile ul.main-nav > li ul.sub-menu {
  margin-top: 10px;
  list-style: none;
  padding-left: 10px;
}
div.menu-mobile ul.main-nav > li ul.sub-menu li {
  margin-bottom: 20px;
}
div.menu-mobile ul.main-nav > li ul.sub-menu li a {
  font-size: 21px;
  line-height: 28px;
  font-weight: 500;
  color: #AB25F5;
}
div.menu-mobile:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(255deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(-120%);
  pointer-events: none;
  transition: 0.6s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
@media screen and (max-width: 767px) {
  div.menu-mobile:before {
    width: 80%;
  }
}
div.menu-mobile:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(25deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(120%);
  pointer-events: none;
  transition: 0.6s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}

body #footer {
  position: relative;
  z-index: 90;
  padding: 100px 0;
  background-color: #16002B;
}
@media screen and (max-wixth: 767px) {
  body #footer {
    padding: 100px 0 50px;
  }
}
body #footer div.wrapper-footer {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  body #footer div.wrapper-footer {
    padding: 20px;
  }
}
body #footer div.wrapper-footer hr {
  border: 0;
  border-bottom: 1px solid rgba(171, 37, 245, 0.52);
}
body #footer div.wrapper-footer div.flex-block {
  padding: 70px 0;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 767px) {
  body #footer div.wrapper-footer div.flex-block {
    padding: 70px 0 10px;
  }
}
body #footer div.wrapper-footer div.flex-block div.left-logo {
  flex-basis: 33.3333%;
}
@media screen and (max-width: 767px) {
  body #footer div.wrapper-footer div.flex-block div.left-logo {
    flex-basis: 100%;
    margin-bottom: 50px;
    text-align: center;
  }
}
body #footer div.wrapper-footer div.flex-block div.left-logo svg {
  transition: 0.3s ease-out;
}
body #footer div.wrapper-footer div.flex-block div.left-logo svg:hover {
  transform: scale(0.9);
}
body #footer div.wrapper-footer div.flex-block div.left-logo ul.socials {
  margin: 0;
  margin-top: 20px;
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  flex-flow: wrap row;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  body #footer div.wrapper-footer div.flex-block div.left-logo ul.socials {
    justify-content: center;
  }
}
body #footer div.wrapper-footer div.flex-block div.left-logo ul.socials li {
  transition: 0.3s ease-out;
}
body #footer div.wrapper-footer div.flex-block div.left-logo ul.socials li a img {
  width: 30px;
  height: 30px;
}
body #footer div.wrapper-footer div.flex-block div.left-logo ul.socials li:hover {
  transform: scale(0.9);
}
body #footer div.wrapper-footer div.flex-block div.mid-navs {
  flex-basis: 33.3333%;
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: flex-start;
}
@media screen and (max-width: 980px) {
  body #footer div.wrapper-footer div.flex-block div.mid-navs {
    flex-basis: 100%;
    margin-bottom: 50px;
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  body #footer div.wrapper-footer div.flex-block div.mid-navs {
    flex-basis: 100%;
    margin-bottom: 100px;
    margin-top: 0;
  }
}
body #footer div.wrapper-footer div.flex-block div.mid-navs ul {
  padding: 0;
  list-style: none;
  flex-basis: 48%;
  margin: 0;
}
@media screen and (max-width: 767px) {
  body #footer div.wrapper-footer div.flex-block div.mid-navs ul {
    flex-basis: 100%;
    text-align: center;
    margin-bottom: 25px;
  }
  body #footer div.wrapper-footer div.flex-block div.mid-navs ul:last-child {
    margin-bottom: 0;
  }
}
body #footer div.wrapper-footer div.flex-block div.mid-navs ul li {
  margin-bottom: 20px;
}
body #footer div.wrapper-footer div.flex-block div.mid-navs ul li:last-child {
  margin: 0;
}
body #footer div.wrapper-footer div.flex-block div.mid-navs ul li a {
  color: white;
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
}
body #footer div.wrapper-footer div.flex-block div.mid-navs ul li a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
body #footer div.wrapper-footer div.flex-block div.right-info {
  flex-basis: 33.3333%;
}
@media screen and (max-width: 767px) {
  body #footer div.wrapper-footer div.flex-block div.right-info {
    flex-basis: 100%;
  }
}
body #footer div.wrapper-footer div.flex-block div.right-info h3 {
  color: white;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  margin: 0;
  margin-bottom: 10px;
}
body #footer div.wrapper-footer div.flex-block div.right-info a {
  color: white;
  font-weight: bold;
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
}
body #footer div.wrapper-footer div.flex-block div.right-info a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
body #footer div.wrapper-footer div.flex-block div.digital {
  margin-top: 30px;
  flex: 0 0 100%;
  text-align: right;
}
@media screen and (max-width: 767px) {
  body #footer div.wrapper-footer div.flex-block div.digital {
    text-align: left;
  }
}
body #footer div.wrapper-footer div.flex-block div.digital span {
  color: white;
}
body #footer div.wrapper-footer div.flex-block div.digital svg {
  margin-top: 15px;
  display: block;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  body #footer div.wrapper-footer div.flex-block div.digital svg {
    margin-left: unset;
    margin-right: auto;
  }
}
body #footer div.wrapper-footer div.legals {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
}
body #footer div.wrapper-footer div.legals div.left-copyright {
  flex: 1;
}
@media screen and (max-width: 767px) {
  body #footer div.wrapper-footer div.legals div.left-copyright {
    flex-basis: 100%;
    order: 2;
  }
}
body #footer div.wrapper-footer div.legals div.left-copyright span {
  margin-top: 10px;
  color: white;
  font-size: 14px;
  line-height: 25px;
}
body #footer div.wrapper-footer div.legals div.right-nav {
  flex: 1;
}
@media screen and (max-width: 767px) {
  body #footer div.wrapper-footer div.legals div.right-nav {
    flex-basis: 100%;
    order: 1;
  }
}
body #footer div.wrapper-footer div.legals div.right-nav nav ul.main-nav {
  padding: 0;
  margin: 0;
  list-style: none;
  width: 100%;
  display: inline-flex;
  flex-flow: wrap row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  body #footer div.wrapper-footer div.legals div.right-nav nav ul.main-nav {
    gap: 0px 10px;
    justify-content: flex-start;
    margin-bottom: 20px;
  }
}
body #footer div.wrapper-footer div.legals div.right-nav nav ul.main-nav li a {
  display: inline-block;
  font-size: 14px;
  line-height: 25px;
  font-weight: 400;
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
}
body #footer div.wrapper-footer div.legals div.right-nav nav ul.main-nav li a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
body #footer div.wrapper-footer div.legals div.right-nav nav ul.main-nav li ul.sub-menu {
  display: none;
}

div.copyright-lezards {
  padding: 10px;
  text-align: center;
}
div.copyright-lezards span {
  text-transform: uppercase;
  font-size: 12px;
  color: rgb(170, 170, 170);
  font-weight: 500;
}
div.copyright-lezards span a {
  color: black;
  text-decoration: none;
}

#consent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 10;
  width: 64px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: #AB25F5;
  transition: 0.3s ease-out;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.16);
  z-index: 1000;
}

#consent:hover {
  transform: scale(0.85);
}

@media screen and (max-width: 767px) {
  #consent {
    left: 20px;
  }
}
#consent a {
  line-height: 0;
}

#consent svg {
  height: 30px;
  width: 30px;
}

.page-hero {
  color: white;
  display: flex;
  overflow: hidden;
  aspect-ratio: 16/8;
  position: relative;
  align-items: center;
  text-align: left;
  background: black;
}
.page-hero .container {
  width: 100%;
  overflow: hidden;
}
.page-hero .container h1 {
  font-weight: 600;
  font-size: 60px;
  line-height: 82px;
  margin: 0;
}
.page-hero img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.8;
}

@keyframes appearFromBottom {
  0% {
    opacity: 0;
    transform: translateY(30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes appearFromTop {
  0% {
    opacity: 0;
    transform: translateY(-30%);
  }
  100% {
    opacity: 1;
    transform: translateY(0%);
  }
}
@keyframes clip-to-left {
  0% {
    clip-path: inset(0 0 0 0);
    display: inline-block;
  }
  100% {
    clip-path: inset(0 0 0 100%);
  }
}
@keyframes clip-exit-to-left {
  0% {
    clip-path: inset(0 0 0 100%);
    display: inline-block;
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes clip-to-top {
  0% {
    clip-path: inset(0 0 100% 0);
    display: inline-block;
  }
  100% {
    clip-path: inset(0 0 0 0);
  }
}
@keyframes clip-exit-to-top {
  0% {
    clip-path: inset(0 0 0 0);
    display: inline-block;
  }
  100% {
    clip-path: inset(0 0 100% 0);
  }
}
@keyframes grow {
  0% {
    width: 0%;
  }
  100% {
    width: 100%;
  }
}
[data-aos=clip-block-to-left]:before {
  content: "";
  height: 100%;
  width: 100%;
  background: white;
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  clip-path: inset(0 0 0 100%);
  transition: 1.2s ease-in-out;
}
[data-aos=clip-block-to-left].aos-animate:before {
  clip-path: inset(0 0 0 0);
}

[data-aos=clip-to-right] {
  clip-path: inset(0 100% 0 0);
  display: inline-block;
}
[data-aos=clip-to-right].aos-animate {
  clip-path: inset(0 0 0 0);
}

[data-aos=clip-to-left] {
  clip-path: inset(0 0 0 100%);
  display: inline-block;
}
[data-aos=clip-to-left].aos-animate {
  clip-path: inset(0 0 0 0);
}

[data-aos=clip-to-top] {
  clip-path: inset(100% 0 0 0);
  display: inline-block;
}
[data-aos=clip-to-top].aos-animate {
  clip-path: inset(0 0 0 0);
}

[data-aos=reveal-to-top] {
  transform: translateY(100%);
}
[data-aos=reveal-to-top].aos-animate {
  transform: translateY(0);
}

[data-aos=reveal-to-right] {
  transform: translateX(-100%);
}
[data-aos=reveal-to-right].aos-animate {
  transform: translateX(0);
}

[data-aos] {
  transition: cubic-bezier(0.25, 0.1, 0.25, 1);
}

body .container {
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
}
body .container-sm {
  max-width: 1140px;
  width: 100%;
  margin: 0 auto;
}
body .container-xs {
  max-width: 1024px;
  width: 100%;
  margin: 0 auto;
}

body .acf-block {
  position: relative;
  z-index: 1;
}
body .acf-block.bigintro {
  min-height: var(--height);
  position: relative;
  z-index: 1;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
body .acf-block.bigintro video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
body .acf-block.bigintro div.background-image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
body .acf-block.bigintro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--filter);
  pointer-events: none;
}
body .acf-block.bigintro div.container-sm {
  padding: 30px;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  body .acf-block.bigintro div.container-sm {
    padding: 20px;
  }
}
body .acf-block.bigintro div.container-sm h1 {
  font-size: 60px;
  line-height: 72px;
  font-weight: bold;
  color: white;
  margin: 0;
  margin-bottom: 20px;
  max-width: 75%;
}
@media screen and (max-height: 600px) {
  body .acf-block.bigintro div.container-sm h1 {
    font-size: 40px;
    line-height: 52px;
  }
}
body .acf-block.bigintro div.container-sm div.desc {
  margin-bottom: 100px;
}
@media screen and (max-height: 600px) {
  body .acf-block.bigintro div.container-sm div.desc {
    margin-bottom: 20px;
  }
}
body .acf-block.bigintro div.container-sm div.desc p:last-child {
  margin: 0;
}
@media screen and (max-width: 980px) {
  body .acf-block.bigintro div.container-sm h1 {
    font-size: 50px;
    line-height: 62px;
  }
  body .acf-block.bigintro div.container-sm div.desc {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.bigintro div.container-sm h1 {
    font-size: 35px;
    line-height: 48px;
    max-width: 100%;
  }
  body .acf-block.bigintro div.container-sm div.desc {
    margin-bottom: 50px;
  }
}
body .acf-block.chiffres div.liste-chiffres {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
}
body .acf-block.chiffres div.liste-chiffres div.col-chiffre {
  width: calc((100% - 150px) / 4);
  display: flex;
  flex-flow: row wrap;
  position: relative;
  z-index: 1;
}
body .acf-block.chiffres div.liste-chiffres div.col-chiffre:nth-child(n) {
  margin-bottom: 50px;
  margin-right: 50px;
}
body .acf-block.chiffres div.liste-chiffres div.col-chiffre:nth-child(4n) {
  margin-right: 0;
}
body .acf-block.chiffres div.liste-chiffres div.col-chiffre:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) skewX(160deg);
  width: 90px;
  height: 0;
  background-image: linear-gradient(25deg, white 0%, rgb(171, 37, 245) 100%);
  opacity: 0.2;
  z-index: -1;
  transition: 0.3s ease-out;
}
body .acf-block.chiffres div.liste-chiffres div.col-chiffre.animate:before {
  height: 172px;
}
body .acf-block.chiffres div.liste-chiffres div.col-chiffre div.chiffre {
  flex-basis: 100%;
  text-align: center;
  margin-bottom: 10px;
}
body .acf-block.chiffres div.liste-chiffres div.col-chiffre div.chiffre span {
  font-size: 55px;
  line-height: 64px;
  font-weight: 900;
  color: #AB25F5;
}
@media screen and (max-width: 767px) {
  body .acf-block.chiffres div.liste-chiffres div.col-chiffre div.chiffre span {
    font-size: 48px;
    line-height: 52px;
  }
}
body .acf-block.chiffres div.liste-chiffres div.col-chiffre div.chiffre span.number {
  letter-spacing: -2px;
}
body .acf-block.chiffres div.liste-chiffres div.col-chiffre div.desc {
  flex-basis: 100%;
}
body .acf-block.chiffres div.liste-chiffres div.col-chiffre div.desc p {
  font-size: 16px;
  line-height: 22px;
  color: #16002B;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 980px) {
  body .acf-block.chiffres div.liste-chiffres div.col-chiffre {
    width: calc((100% - 50px) / 2);
  }
  body .acf-block.chiffres div.liste-chiffres div.col-chiffre:nth-child(n) {
    margin-bottom: 100px;
    margin-right: 50px;
  }
  body .acf-block.chiffres div.liste-chiffres div.col-chiffre:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.chiffres div.liste-chiffres div.col-chiffre {
    width: calc((100% - 0px) / 1);
  }
  body .acf-block.chiffres div.liste-chiffres div.col-chiffre:nth-child(n) {
    margin-bottom: 120px;
    margin-right: 0px;
  }
  body .acf-block.chiffres div.liste-chiffres div.col-chiffre:nth-child(1n) {
    margin-right: 0;
  }
  body .acf-block.chiffres div.liste-chiffres div.col-chiffre:last-child {
    margin-bottom: 0;
  }
}
body .acf-block.chiffres div.liste-chiffres.column div.col-chiffre {
  width: 100%;
  margin: 0;
  margin-bottom: 50px;
}
body .acf-block.chiffres div.liste-chiffres.column div.col-chiffre:last-child {
  margin-bottom: 0;
}
body .acf-block.chiffres div.liste-chiffres.column div.col-chiffre:before {
  content: "";
  height: 1px;
  width: 100%;
  background: #AB25F5;
  top: 0;
  left: 0;
  transform: unset;
  opacity: 1;
  z-index: 1;
}
body .acf-block.chiffres div.liste-chiffres.column div.col-chiffre div.chiffre {
  margin: 0;
  text-align: left;
}
body .acf-block.chiffres div.liste-chiffres.column div.col-chiffre div.chiffre span.number {
  letter-spacing: -2px;
}
body .acf-block.chiffres div.liste-chiffres.column div.col-chiffre div.desc p {
  text-align: left;
  min-height: 3em;
}
body .acf-block.section-adm {
  padding: var(--padding);
  background-color: var(--background);
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  body .acf-block.section-adm {
    padding: var(--padding_mobile);
  }
}
body .acf-block.section-adm div.spacer {
  padding-bottom: 100px;
}
@media screen and (max-width: 980px) {
  body .acf-block.section-adm div.spacer {
    display: none;
  }
}
body .acf-block.section-adm div.container {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  body .acf-block.section-adm div.container {
    padding: 20px;
  }
}
body .acf-block.section-adm div.container-sm {
  padding: 30px;
  line-height: 0;
}
body .acf-block.section-adm div.container-sm p, body .acf-block.section-adm div.container-sm ul, body .acf-block.section-adm div.container-sm li, body .acf-block.section-adm div.container-sm h1, body .acf-block.section-adm div.container-sm h2, body .acf-block.section-adm div.container-sm h3, body .acf-block.section-adm div.container-sm h4, body .acf-block.section-adm div.container-sm h5, body .acf-block.section-adm div.container-sm h6, body .acf-block.section-adm div.container-sm a, body .acf-block.section-adm div.container-sm address {
  line-height: 1.1;
}
body .acf-block.section-adm div.container-sm p {
  line-height: 25px;
}
@media screen and (max-width: 767px) {
  body .acf-block.section-adm div.container-sm {
    padding: 20px;
  }
}
body .acf-block.section-adm.texture-plus:before {
  content: url("data:image/svg+xml,%0A%3Csvg width='705px' height='1371px' viewBox='0 0 705 1371' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' opacity='0.288'%3E%3Cg id='Group' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cg id='Group_827' transform='translate(352.110000, 685.495000) rotate(-90.000000) translate(-352.110000, -685.495000) translate(-333.385000, 333.385000)'%3E%3Crect id='Rectangle_17624' x='0' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17625' x='48.905' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17626' x='193.653' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17627' x='242.558' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17628' x='387.307' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17629' x='436.212' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17630' x='580.96' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17631' x='629.865' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17632' x='774.613' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17633' x='823.518' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17634' x='968.267' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17635' x='1017.172' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17636' x='1161.92' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17637' x='1210.828' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17638' x='91.699' y='166.275' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17639' x='140.603' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17640' x='285.352' y='166.275' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17641' x='334.257' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17642' x='479.005' y='166.275' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17643' x='527.91' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17644' x='672.659' y='166.275' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17645' x='721.564' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17646' x='866.312' y='166.275' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17647' x='915.217' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17648' x='1059.966' y='166.275' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17649' x='1108.87' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17650' x='1253.619' y='166.275' width='117.371' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17651' x='1302.524' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17652' x='0' y='283.643' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17653' x='48.905' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17654' x='193.653' y='283.646' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17655' x='242.558' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17656' x='387.307' y='283.646' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17657' x='436.212' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17658' x='580.96' y='283.646' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17659' x='629.865' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17660' x='774.613' y='283.646' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17661' x='823.521' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17662' x='968.267' y='283.646' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17663' x='1017.174' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17664' x='1161.92' y='283.646' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17665' x='1210.828' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17666' x='91.699' y='401.016' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17667' x='140.603' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17668' x='285.352' y='401.016' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17669' x='334.257' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17670' x='479.005' y='401.016' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17671' x='527.91' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17672' x='672.659' y='401.016' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17673' x='721.564' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17674' x='866.312' y='401.016' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17675' x='915.217' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17676' x='1059.966' y='401.016' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17677' x='1108.87' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17678' x='1253.619' y='401.014' width='117.371' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17679' x='1302.524' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17680' x='0' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17681' x='48.905' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17682' x='193.653' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17683' x='242.558' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17684' x='387.307' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17685' x='436.212' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17686' x='580.96' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17687' x='629.865' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17688' x='774.613' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17689' x='823.521' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17690' x='968.267' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17691' x='1017.174' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17692' x='1161.92' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17693' x='1210.828' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17694' x='91.699' y='635.755' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17695' x='140.604' y='586.85' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17696' x='285.352' y='635.755' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17697' x='334.254' y='586.85' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17698' x='479.005' y='635.755' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17699' x='527.908' y='586.85' width='19.563' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17700' x='672.659' y='635.755' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17701' x='721.564' y='586.85' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17702' x='866.312' y='635.755' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17703' x='915.217' y='586.85' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17704' x='1059.966' y='635.755' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17705' x='1108.873' y='586.85' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17706' x='1253.619' y='635.755' width='117.371' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17707' x='1302.524' y='586.85' width='19.561' height='117.37'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: var(--opacity);
}
body .acf-block.section-adm div.aos-block-right {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
body .acf-block.section-adm div.aos-block-left {
  position: absolute;
  bottom: -5px;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  body .acf-block.section-adm svg.right-separator {
    display: none;
  }
}
body .acf-block.section-adm svg.left-separator {
  transform: rotate(-180deg);
}
@media screen and (max-width: 980px) {
  body .acf-block.section-adm svg.left-separator {
    display: none;
  }
}
body .acf-block.section-adm p.is-justify {
  text-align: justify;
}
body .acf-block.slider-logos {
  padding: 50px 0;
}
body .acf-block.slider-logos div.swiper-container div.swiper-wrapper {
  transition-timing-function: linear;
}
body .acf-block.slider-logos div.swiper-container div.swiper-wrapper div.swiper-slide div.img-sizer {
  position: relative;
  padding-bottom: 100%;
}
body .acf-block.slider-logos div.swiper-container div.swiper-wrapper div.swiper-slide div.img-sizer img {
  padding: 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}
body .acf-block.navigation {
  transition: 0.3s ease-out;
  border-radius: 15px;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.33);
}
body .acf-block.navigation:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.5);
}
body .acf-block.navigation:hover div.wrapper-nav:after {
  transform: translateX(50%) skewX(345deg) scale(1.2);
}
body .acf-block.navigation div.wrapper-nav {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 400px;
  border-radius: 15px;
  background-color: #16002B;
  padding: 50px 30px;
  display: flex;
  flex-flow: wrap column;
  justify-content: space-between;
}
body .acf-block.navigation div.wrapper-nav:before {
  content: "";
  position: absolute;
  top: 0;
  left: 60%;
  transform: translateX(-50%) skewX(345deg);
  background-image: linear-gradient(183deg, #9C37EC 0%, rgba(128, 128, 128, 0) 100%);
  opacity: 0.32;
  width: 120%;
  height: 55%;
  z-index: -1;
}
body .acf-block.navigation div.wrapper-nav:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 80%;
  transform: translateX(50%) skewX(345deg);
  background-image: linear-gradient(200deg, #9C37EC 0%, rgba(128, 128, 128, 0) 100%);
  opacity: 0.32;
  width: 110%;
  height: 55%;
  z-index: -1;
  transition: 0.3s ease-out;
}
body .acf-block.navigation div.wrapper-nav h4 {
  margin: 0;
}
body .acf-block.navigation div.wrapper-nav h4 a {
  color: white;
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
}
body .acf-block.navigation div.wrapper-nav h4 a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
body .acf-block.navigation div.wrapper-nav div.link {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
body .acf-block.navigation div.wrapper-nav div.link span {
  font-size: 15px;
  font-weight: 500;
}
body .acf-block.navigation div.wrapper-nav div.link span a {
  color: white;
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
}
body .acf-block.navigation div.wrapper-nav div.link span a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
body .acf-block.navigation div.wrapper-nav div.link > a svg {
  transition: 0.3s ease-out;
}
body .acf-block.navigation div.wrapper-nav div.link > a:hover svg {
  transform: scale(0.9);
}
body .acf-block.temoignages {
  position: relative;
}
body .acf-block.temoignages:after {
  content: "";
  position: absolute;
  bottom: -30%;
  right: 0;
  width: 35%;
  height: 80%;
  transform: skewX(200deg);
  background-image: linear-gradient(345deg, #9C37EC 0%, rgba(128, 128, 128, 0) 100%);
  opacity: 0.32;
  pointer-events: none;
}
body .acf-block.temoignages div.wrapper-temoignages {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: center;
}
body .acf-block.temoignages div.wrapper-temoignages div.left-mockup {
  flex: 0 0 25%;
}
body .acf-block.temoignages div.wrapper-temoignages div.left-mockup div.wrapper-mockup {
  position: relative;
  z-index: 1;
  overflow: clip;
  pointer-events: none;
}
body .acf-block.temoignages div.wrapper-temoignages div.left-mockup div.wrapper-mockup img {
  position: relative;
  z-index: 1;
  pointer-events: none;
  user-select: none;
  width: 100%;
  height: 100%;
  line-height: 0;
}
@media screen and (max-width: 980px) {
  body .acf-block.temoignages div.wrapper-temoignages div.left-mockup div.wrapper-mockup img {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.temoignages div.wrapper-temoignages div.left-mockup div.wrapper-mockup img {
    width: 60%;
  }
}
body .acf-block.temoignages div.wrapper-temoignages div.left-mockup div.wrapper-mockup div.sizer-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
  z-index: -1;
  scroll-snap-type: y mandatory;
  touch-action: pan-y;
  cursor: grab;
  pointer-events: all;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none;
}
body .acf-block.temoignages div.wrapper-temoignages div.left-mockup div.wrapper-mockup div.sizer-mockup::-webkit-scrollbar {
  display: none;
}
body .acf-block.temoignages div.wrapper-temoignages div.left-mockup div.wrapper-mockup div.sizer-mockup div.mockup {
  scroll-snap-align: center;
  touch-action: pan-y;
  overflow: hidden;
}
body .acf-block.temoignages div.wrapper-temoignages div.left-mockup div.wrapper-mockup div.sizer-mockup div.mockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 980px) {
  body .acf-block.temoignages div.wrapper-temoignages div.left-mockup div.wrapper-mockup div.sizer-mockup div.mockup img {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.temoignages div.wrapper-temoignages div.left-mockup div.wrapper-mockup div.sizer-mockup div.mockup img {
    width: 60%;
  }
}
@media screen and (max-width: 980px) {
  body .acf-block.temoignages div.wrapper-temoignages div.left-mockup {
    flex: 0 0 100%;
    margin-bottom: 50px;
  }
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content {
  flex: 0 0 60%;
  overflow: hidden;
  position: relative;
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content > span {
  color: white;
  background-color: #AB25F5;
  display: inline-block;
  padding: 8px 15px 8px;
  font-size: 16px;
  line-height: 25px;
  font-weight: 500;
  margin-bottom: 30px;
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-container div.swiper-wrapper div.temoignage {
  display: flex;
  flex-direction: column;
  height: auto;
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-container div.swiper-wrapper div.temoignage div.citation p {
  color: white;
  font-size: 21px;
  line-height: 32px;
  font-weight: 600;
  margin-bottom: 50px;
}
@media screen and (max-width: 980px) {
  body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-container div.swiper-wrapper div.temoignage div.citation p {
    font-size: 18px;
    line-height: 29px;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-container div.swiper-wrapper div.temoignage div.citation p {
    font-size: 16px;
    line-height: 25px;
  }
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-container div.swiper-wrapper div.temoignage div.footer {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: center;
  margin-top: auto;
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-container div.swiper-wrapper div.temoignage div.footer div.meta span {
  color: white;
  margin: 0;
  font-size: 16px;
  line-height: 25px;
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-container div.swiper-wrapper div.temoignage div.footer div.meta p {
  color: white;
  font-size: 16px;
  font-style: italic;
  margin: 0;
  line-height: 25px;
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-progress-bar {
  margin-top: 50px;
  width: 100%;
  height: 2px;
  background: white;
  position: relative;
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-progress-bar .progress {
  height: inherit;
  left: 0;
  top: 0;
  position: absolute;
  background: #AB25F5;
  z-index: 1;
  transition-timing-function: linear;
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-navigation {
  display: flex;
  flex-flow: wrap row;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  height: 48px;
  margin-top: 30px;
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-navigation div.swiper-counter {
  color: white;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-navigation div.swiper-button-prev {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  background-image: none;
  width: 36px;
  height: 36px;
  align-items: unset;
  margin-top: unset;
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-navigation div.swiper-button-prev:after {
  content: url("data:image/svg+xml,%0A%3Csvg width='36px' height='36px' viewBox='0 0 47 47' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Group' transform='translate(23.483000, 23.483000) scale(-1, 1) translate(-23.483000, -23.483000) translate(-0.000000, 0.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cg id='Group_10818'%3E%3Cpath d='M23.483,46.966 C10.5136972,46.966 0,36.4523028 0,23.483 C0,10.5136972 10.5136972,0 23.483,0 C36.4523028,0 46.966,10.5136972 46.966,23.483 C46.951671,36.4463629 36.4463629,46.951671 23.483,46.966 Z M23.483,1.592 C11.3929345,1.592 1.592,11.3929345 1.592,23.483 C1.592,35.5730655 11.3929345,45.374 23.483,45.374 C35.5730655,45.374 45.374,35.5730655 45.374,23.483 C45.360223,11.3986458 35.5673542,1.60577701 23.483,1.592' id='Path_9326'%3E%3C/path%3E%3Cpolygon id='Path_9327' points='20.581 30.946 19.457 29.818 25.829 23.473 19.447 16.873 20.591 15.766 28.065 23.494'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-navigation div.swiper-button-next {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  background-image: none;
  width: 36px;
  height: 36px;
  align-items: unset;
  margin-top: unset;
}
body .acf-block.temoignages div.wrapper-temoignages div.right-content div.swiper-navigation div.swiper-button-next:after {
  content: url("data:image/svg+xml,%0A%3Csvg width='36px' height='36px' viewBox='0 0 47 47' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Group' transform='translate(-0.000000, 0.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cg id='Group_10818'%3E%3Cpath d='M23.483,46.966 C10.5136972,46.966 0,36.4523028 0,23.483 C0,10.5136972 10.5136972,0 23.483,0 C36.4523028,0 46.966,10.5136972 46.966,23.483 C46.951671,36.4463629 36.4463629,46.951671 23.483,46.966 Z M23.483,1.592 C11.3929345,1.592 1.592,11.3929345 1.592,23.483 C1.592,35.5730655 11.3929345,45.374 23.483,45.374 C35.5730655,45.374 45.374,35.5730655 45.374,23.483 C45.360223,11.3986458 35.5673542,1.60577701 23.483,1.592' id='Path_9326'%3E%3C/path%3E%3Cpolygon id='Path_9327' points='20.581 30.946 19.457 29.818 25.829 23.473 19.447 16.873 20.591 15.766 28.065 23.494'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
@media screen and (max-width: 980px) {
  body .acf-block.temoignages div.wrapper-temoignages div.right-content {
    flex: 0 0 100%;
  }
}
body .acf-block.realisations {
  background-color: #16002B;
  border: 2px solid #AB25F5;
  border-radius: 20px;
  padding: 50px;
  transition-delay: 100ms;
  animation-delay: 100ms;
}
body .acf-block.realisations div.wrapper-realisations {
  display: flex;
  flex-flow: wrap row;
  align-items: center;
  justify-content: space-between;
}
body .acf-block.realisations div.wrapper-realisations div.left-mockup {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 980px) {
  body .acf-block.realisations div.wrapper-realisations div.left-mockup {
    width: 100%;
  }
}
body .acf-block.realisations div.wrapper-realisations div.left-mockup div.swiper-container div.swiper-wrapper div.swiper-slide {
  padding-bottom: 84%;
  position: relative;
}
body .acf-block.realisations div.wrapper-realisations div.left-mockup div.swiper-container div.swiper-wrapper div.swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 150%;
  height: 150%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}
body .acf-block.realisations div.wrapper-realisations div.left-mockup div.swiper-button-prev {
  background-image: none;
  left: -30px;
  width: 36px;
  height: 36px;
}
body .acf-block.realisations div.wrapper-realisations div.left-mockup div.swiper-button-prev:after {
  content: url("data:image/svg+xml,%0A%3Csvg width='36px' height='36px' viewBox='0 0 47 47' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Group' transform='translate(23.483000, 23.483000) scale(-1, 1) translate(-23.483000, -23.483000) translate(-0.000000, 0.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cg id='Group_10818'%3E%3Cpath d='M23.483,46.966 C10.5136972,46.966 0,36.4523028 0,23.483 C0,10.5136972 10.5136972,0 23.483,0 C36.4523028,0 46.966,10.5136972 46.966,23.483 C46.951671,36.4463629 36.4463629,46.951671 23.483,46.966 Z M23.483,1.592 C11.3929345,1.592 1.592,11.3929345 1.592,23.483 C1.592,35.5730655 11.3929345,45.374 23.483,45.374 C35.5730655,45.374 45.374,35.5730655 45.374,23.483 C45.360223,11.3986458 35.5673542,1.60577701 23.483,1.592' id='Path_9326'%3E%3C/path%3E%3Cpolygon id='Path_9327' points='20.581 30.946 19.457 29.818 25.829 23.473 19.447 16.873 20.591 15.766 28.065 23.494'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
body .acf-block.realisations div.wrapper-realisations div.left-mockup div.swiper-button-next {
  background-image: none;
  width: 36px;
  height: 36px;
}
body .acf-block.realisations div.wrapper-realisations div.left-mockup div.swiper-button-next:after {
  content: url("data:image/svg+xml,%0A%3Csvg width='36px' height='36px' viewBox='0 0 47 47' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Group' transform='translate(-0.000000, 0.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cg id='Group_10818'%3E%3Cpath d='M23.483,46.966 C10.5136972,46.966 0,36.4523028 0,23.483 C0,10.5136972 10.5136972,0 23.483,0 C36.4523028,0 46.966,10.5136972 46.966,23.483 C46.951671,36.4463629 36.4463629,46.951671 23.483,46.966 Z M23.483,1.592 C11.3929345,1.592 1.592,11.3929345 1.592,23.483 C1.592,35.5730655 11.3929345,45.374 23.483,45.374 C35.5730655,45.374 45.374,35.5730655 45.374,23.483 C45.360223,11.3986458 35.5673542,1.60577701 23.483,1.592' id='Path_9326'%3E%3C/path%3E%3Cpolygon id='Path_9327' points='20.581 30.946 19.457 29.818 25.829 23.473 19.447 16.873 20.591 15.766 28.065 23.494'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
body .acf-block.realisations div.wrapper-realisations div.right-content {
  width: 40%;
  overflow: hidden;
}
@media screen and (max-width: 980px) {
  body .acf-block.realisations div.wrapper-realisations div.right-content {
    width: 100%;
    margin-top: 100px;
  }
}
body .acf-block.realisations div.wrapper-realisations div.right-content div.swiper-container div.swiper-wrapper div.swiper-slide div.block {
  display: flex;
  flex-flow: wrap column;
}
body .acf-block.realisations div.wrapper-realisations div.right-content div.swiper-container div.swiper-wrapper div.swiper-slide div.block h4 {
  color: white;
  font-size: 25px;
  line-height: 32px;
  margin: 0;
}
body .acf-block.realisations div.wrapper-realisations div.right-content div.swiper-container div.swiper-wrapper div.swiper-slide div.block p {
  color: white;
}
body .acf-block.realisations div.wrapper-realisations div.right-content div.swiper-container div.swiper-wrapper div.swiper-slide div.block span, body .acf-block.realisations div.wrapper-realisations div.right-content div.swiper-container div.swiper-wrapper div.swiper-slide div.block strong {
  color: white;
  font-size: 16px !important;
  line-height: 25px !important;
}
body .acf-block.realisations div.wrapper-realisations div.right-content div.swiper-container div.swiper-wrapper div.swiper-slide div.block div.flex-button {
  margin-top: 100px;
}
@media screen and (max-width: 980px) {
  body .acf-block.realisations div.wrapper-realisations div.right-content div.swiper-container div.swiper-wrapper div.swiper-slide div.block div.flex-button {
    margin-top: 50px;
  }
}
body .acf-block.actualites {
  display: flex;
  flex-flow: wrap row;
}
body .acf-block.actualites div.actualite {
  width: calc((100% - 40px) / 3);
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  margin-bottom: 100px;
  overflow: hidden;
  border-radius: 15px;
  transition: 0.3s ease-out;
  display: flex;
  flex-flow: column wrap;
  align-content: space-between;
  justify-content: space-between;
  background-color: white;
}
body .acf-block.actualites div.actualite:nth-child(n) {
  margin-bottom: 50px;
  margin-right: 20px;
}
body .acf-block.actualites div.actualite:nth-child(3n) {
  margin-right: 0;
}
body .acf-block.actualites div.actualite:hover {
  transform: translateY(-10px);
}
body .acf-block.actualites div.actualite:hover div.image-head {
  cursor: pointer;
}
body .acf-block.actualites div.actualite:hover div.image-head img {
  transform: scale(1.1);
}
body .acf-block.actualites div.actualite div.image-head {
  position: relative;
  padding-bottom: 62.5%;
  background-color: #E8E8E8;
  overflow: hidden;
}
body .acf-block.actualites div.actualite div.image-head img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-out;
}
body .acf-block.actualites div.actualite div.content-body {
  background-color: white;
  padding: 30px 30px 0;
}
body .acf-block.actualites div.actualite div.content-body h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: bold;
  color: #AB25F5;
  margin: 0;
  margin-bottom: 20px;
  max-height: 84px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: 0.3s ease-out;
}
body .acf-block.actualites div.actualite div.content-body h4:hover {
  color: #16002B;
}
body .acf-block.actualites div.actualite div.content-body p {
  font-size: 15px;
  line-height: 23px;
  font-weight: normal;
  margin-bottom: 30px;
  max-height: 92px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
body .acf-block.actualites div.actualite div.content-body > span {
  font-size: 13px;
  font-weight: normal;
  color: #6B525E;
  display: block;
}
body .acf-block.actualites div.actualite div.nav-footer {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
}
body .acf-block.actualites div.actualite div.nav-footer ul {
  flex: 1 0 100%;
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  flex-flow: wrap row;
  gap: 5px;
  margin-bottom: 0;
  padding: 0 30px 15px;
}
body .acf-block.actualites div.actualite div.nav-footer ul li {
  padding: 5px 8px;
  border: 1px solid #AB25F5;
  border-radius: 4px;
  font-weight: 500;
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  color: #AB25F5;
}
body .acf-block.actualites div.actualite div.nav-footer a {
  display: inline-block;
  padding: 12px 20px 10px;
  background-color: #AB25F5;
  border-radius: 0 0 15px 0;
}
@media screen and (max-width: 980px) {
  body .acf-block.actualites div.actualite {
    width: calc((100% - 30px) / 2);
  }
  body .acf-block.actualites div.actualite:nth-child(n) {
    margin-bottom: 30px;
    margin-right: 30px;
  }
  body .acf-block.actualites div.actualite:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.actualites div.actualite {
    width: calc((100% - 0px) / 1);
  }
  body .acf-block.actualites div.actualite:nth-child(n) {
    margin-bottom: 30px;
    margin-right: 0px;
  }
  body .acf-block.actualites div.actualite:nth-child(1n) {
    margin-right: 0;
  }
}
body .acf-block.actualites div.actualite:nth-child(0) {
  transition-delay: 0ms;
  animation-delay: 0ms;
}
body .acf-block.actualites div.actualite:nth-child(1) {
  transition-delay: 100ms;
  animation-delay: 100ms;
}
body .acf-block.actualites div.actualite:nth-child(2) {
  transition-delay: 200ms;
  animation-delay: 200ms;
}
body .acf-block.actualites div.actualite:nth-child(3) {
  transition-delay: 300ms;
  animation-delay: 300ms;
}
body .acf-block.actualites div.actualite:nth-child(4) {
  transition-delay: 400ms;
  animation-delay: 400ms;
}
body .acf-block.actualites div.actualite:nth-child(5) {
  transition-delay: 500ms;
  animation-delay: 500ms;
}
body .acf-block.actualites div.actualite:nth-child(6) {
  transition-delay: 600ms;
  animation-delay: 600ms;
}
body .acf-block.actualites div.actualite:nth-child(7) {
  transition-delay: 700ms;
  animation-delay: 700ms;
}
body .acf-block.actualites div.actualite:nth-child(8) {
  transition-delay: 800ms;
  animation-delay: 800ms;
}
body .acf-block.actualites div.actualite:nth-child(9) {
  transition-delay: 900ms;
  animation-delay: 900ms;
}
body .acf-block.actualites div.actualite:nth-child(10) {
  transition-delay: 1000ms;
  animation-delay: 1000ms;
}
body .acf-block.actualites div.actualite:nth-child(11) {
  transition-delay: 1100ms;
  animation-delay: 1100ms;
}
body .acf-block.actualites div.actualite:nth-child(12) {
  transition-delay: 1200ms;
  animation-delay: 1200ms;
}
body .acf-block.actualites div.actualite:nth-child(13) {
  transition-delay: 1300ms;
  animation-delay: 1300ms;
}
body .acf-block.actualites div.actualite:nth-child(14) {
  transition-delay: 1400ms;
  animation-delay: 1400ms;
}
body .acf-block.actualites div.actualite:nth-child(15) {
  transition-delay: 1500ms;
  animation-delay: 1500ms;
}
body .acf-block.actualites div.actualite:nth-child(16) {
  transition-delay: 1600ms;
  animation-delay: 1600ms;
}
body .acf-block.actualites div.actualite:nth-child(17) {
  transition-delay: 1700ms;
  animation-delay: 1700ms;
}
body .acf-block.actualites div.actualite:nth-child(18) {
  transition-delay: 1800ms;
  animation-delay: 1800ms;
}
body .acf-block.actualites div.actualite:nth-child(19) {
  transition-delay: 1900ms;
  animation-delay: 1900ms;
}
body .acf-block.actualites div.actualite:nth-child(20) {
  transition-delay: 2000ms;
  animation-delay: 2000ms;
}
body .acf-block.actualites div.actualite:nth-child(21) {
  transition-delay: 2100ms;
  animation-delay: 2100ms;
}
body .acf-block.actualites div.actualite:nth-child(22) {
  transition-delay: 2200ms;
  animation-delay: 2200ms;
}
body .acf-block.actualites div.actualite:nth-child(23) {
  transition-delay: 2300ms;
  animation-delay: 2300ms;
}
body .acf-block.actualites div.actualite:nth-child(24) {
  transition-delay: 2400ms;
  animation-delay: 2400ms;
}
body .acf-block.actualites div.actualite:nth-child(25) {
  transition-delay: 2500ms;
  animation-delay: 2500ms;
}
body .acf-block.actualites div.actualite:nth-child(26) {
  transition-delay: 2600ms;
  animation-delay: 2600ms;
}
body .acf-block.actualites div.actualite:nth-child(27) {
  transition-delay: 2700ms;
  animation-delay: 2700ms;
}
body .acf-block.actualites div.actualite:nth-child(28) {
  transition-delay: 2800ms;
  animation-delay: 2800ms;
}
body .acf-block.actualites div.actualite:nth-child(29) {
  transition-delay: 2900ms;
  animation-delay: 2900ms;
}
body .acf-block.actualites div.actualite:nth-child(30) {
  transition-delay: 3000ms;
  animation-delay: 3000ms;
}
body .acf-block.actualites div.actualite:nth-child(31) {
  transition-delay: 3100ms;
  animation-delay: 3100ms;
}
body .acf-block.actualites div.actualite:nth-child(32) {
  transition-delay: 3200ms;
  animation-delay: 3200ms;
}
body .acf-block.actualites div.actualite:nth-child(33) {
  transition-delay: 3300ms;
  animation-delay: 3300ms;
}
body .acf-block.actualites div.actualite:nth-child(34) {
  transition-delay: 3400ms;
  animation-delay: 3400ms;
}
body .acf-block.actualites div.actualite:nth-child(35) {
  transition-delay: 3500ms;
  animation-delay: 3500ms;
}
body .acf-block.actualites div.actualite:nth-child(36) {
  transition-delay: 3600ms;
  animation-delay: 3600ms;
}
body .acf-block.actualites div.actualite:nth-child(37) {
  transition-delay: 3700ms;
  animation-delay: 3700ms;
}
body .acf-block.actualites div.actualite:nth-child(38) {
  transition-delay: 3800ms;
  animation-delay: 3800ms;
}
body .acf-block.actualites div.actualite:nth-child(39) {
  transition-delay: 3900ms;
  animation-delay: 3900ms;
}
body .acf-block.actualites div.actualite:nth-child(40) {
  transition-delay: 4000ms;
  animation-delay: 4000ms;
}
body .acf-block.actualites div.actualite:nth-child(41) {
  transition-delay: 4100ms;
  animation-delay: 4100ms;
}
body .acf-block.actualites div.actualite:nth-child(42) {
  transition-delay: 4200ms;
  animation-delay: 4200ms;
}
body .acf-block.actualites div.actualite:nth-child(43) {
  transition-delay: 4300ms;
  animation-delay: 4300ms;
}
body .acf-block.actualites div.actualite:nth-child(44) {
  transition-delay: 4400ms;
  animation-delay: 4400ms;
}
body .acf-block.actualites div.actualite:nth-child(45) {
  transition-delay: 4500ms;
  animation-delay: 4500ms;
}
body .acf-block.actualites div.actualite:nth-child(46) {
  transition-delay: 4600ms;
  animation-delay: 4600ms;
}
body .acf-block.actualites div.actualite:nth-child(47) {
  transition-delay: 4700ms;
  animation-delay: 4700ms;
}
body .acf-block.actualites div.actualite:nth-child(48) {
  transition-delay: 4800ms;
  animation-delay: 4800ms;
}
body .acf-block.actualites div.actualite:nth-child(49) {
  transition-delay: 4900ms;
  animation-delay: 4900ms;
}
body .acf-block.actualites div.actualite:nth-child(50) {
  transition-delay: 5000ms;
  animation-delay: 5000ms;
}
body .acf-block.actualites div.actualite:nth-child(51) {
  transition-delay: 5100ms;
  animation-delay: 5100ms;
}
body .acf-block.actualites div.actualite:nth-child(52) {
  transition-delay: 5200ms;
  animation-delay: 5200ms;
}
body .acf-block.actualites div.actualite:nth-child(53) {
  transition-delay: 5300ms;
  animation-delay: 5300ms;
}
body .acf-block.actualites div.actualite:nth-child(54) {
  transition-delay: 5400ms;
  animation-delay: 5400ms;
}
body .acf-block.actualites div.actualite:nth-child(55) {
  transition-delay: 5500ms;
  animation-delay: 5500ms;
}
body .acf-block.actualites div.actualite:nth-child(56) {
  transition-delay: 5600ms;
  animation-delay: 5600ms;
}
body .acf-block.actualites div.actualite:nth-child(57) {
  transition-delay: 5700ms;
  animation-delay: 5700ms;
}
body .acf-block.actualites div.actualite:nth-child(58) {
  transition-delay: 5800ms;
  animation-delay: 5800ms;
}
body .acf-block.actualites div.actualite:nth-child(59) {
  transition-delay: 5900ms;
  animation-delay: 5900ms;
}
body .acf-block.actualites div.actualite:nth-child(60) {
  transition-delay: 6000ms;
  animation-delay: 6000ms;
}
body .acf-block.actualites div.actualite:nth-child(61) {
  transition-delay: 6100ms;
  animation-delay: 6100ms;
}
body .acf-block.actualites div.actualite:nth-child(62) {
  transition-delay: 6200ms;
  animation-delay: 6200ms;
}
body .acf-block.actualites div.actualite:nth-child(63) {
  transition-delay: 6300ms;
  animation-delay: 6300ms;
}
body .acf-block.actualites div.actualite:nth-child(64) {
  transition-delay: 6400ms;
  animation-delay: 6400ms;
}
body .acf-block.actualites div.actualite:nth-child(65) {
  transition-delay: 6500ms;
  animation-delay: 6500ms;
}
body .acf-block.actualites div.actualite:nth-child(66) {
  transition-delay: 6600ms;
  animation-delay: 6600ms;
}
body .acf-block.actualites div.actualite:nth-child(67) {
  transition-delay: 6700ms;
  animation-delay: 6700ms;
}
body .acf-block.actualites div.actualite:nth-child(68) {
  transition-delay: 6800ms;
  animation-delay: 6800ms;
}
body .acf-block.actualites div.actualite:nth-child(69) {
  transition-delay: 6900ms;
  animation-delay: 6900ms;
}
body .acf-block.actualites div.actualite:nth-child(70) {
  transition-delay: 7000ms;
  animation-delay: 7000ms;
}
body .acf-block.actualites div.actualite:nth-child(71) {
  transition-delay: 7100ms;
  animation-delay: 7100ms;
}
body .acf-block.actualites div.actualite:nth-child(72) {
  transition-delay: 7200ms;
  animation-delay: 7200ms;
}
body .acf-block.actualites div.actualite:nth-child(73) {
  transition-delay: 7300ms;
  animation-delay: 7300ms;
}
body .acf-block.actualites div.actualite:nth-child(74) {
  transition-delay: 7400ms;
  animation-delay: 7400ms;
}
body .acf-block.actualites div.actualite:nth-child(75) {
  transition-delay: 7500ms;
  animation-delay: 7500ms;
}
body .acf-block.actualites div.actualite:nth-child(76) {
  transition-delay: 7600ms;
  animation-delay: 7600ms;
}
body .acf-block.actualites div.actualite:nth-child(77) {
  transition-delay: 7700ms;
  animation-delay: 7700ms;
}
body .acf-block.actualites div.actualite:nth-child(78) {
  transition-delay: 7800ms;
  animation-delay: 7800ms;
}
body .acf-block.actualites div.actualite:nth-child(79) {
  transition-delay: 7900ms;
  animation-delay: 7900ms;
}
body .acf-block.actualites div.actualite:nth-child(80) {
  transition-delay: 8000ms;
  animation-delay: 8000ms;
}
body .acf-block.actualites div.actualite:nth-child(81) {
  transition-delay: 8100ms;
  animation-delay: 8100ms;
}
body .acf-block.actualites div.actualite:nth-child(82) {
  transition-delay: 8200ms;
  animation-delay: 8200ms;
}
body .acf-block.actualites div.actualite:nth-child(83) {
  transition-delay: 8300ms;
  animation-delay: 8300ms;
}
body .acf-block.actualites div.actualite:nth-child(84) {
  transition-delay: 8400ms;
  animation-delay: 8400ms;
}
body .acf-block.actualites div.actualite:nth-child(85) {
  transition-delay: 8500ms;
  animation-delay: 8500ms;
}
body .acf-block.actualites div.actualite:nth-child(86) {
  transition-delay: 8600ms;
  animation-delay: 8600ms;
}
body .acf-block.actualites div.actualite:nth-child(87) {
  transition-delay: 8700ms;
  animation-delay: 8700ms;
}
body .acf-block.actualites div.actualite:nth-child(88) {
  transition-delay: 8800ms;
  animation-delay: 8800ms;
}
body .acf-block.actualites div.actualite:nth-child(89) {
  transition-delay: 8900ms;
  animation-delay: 8900ms;
}
body .acf-block.actualites div.actualite:nth-child(90) {
  transition-delay: 9000ms;
  animation-delay: 9000ms;
}
body .acf-block.actualites div.actualite:nth-child(91) {
  transition-delay: 9100ms;
  animation-delay: 9100ms;
}
body .acf-block.actualites div.actualite:nth-child(92) {
  transition-delay: 9200ms;
  animation-delay: 9200ms;
}
body .acf-block.actualites div.actualite:nth-child(93) {
  transition-delay: 9300ms;
  animation-delay: 9300ms;
}
body .acf-block.actualites div.actualite:nth-child(94) {
  transition-delay: 9400ms;
  animation-delay: 9400ms;
}
body .acf-block.actualites div.actualite:nth-child(95) {
  transition-delay: 9500ms;
  animation-delay: 9500ms;
}
body .acf-block.actualites div.actualite:nth-child(96) {
  transition-delay: 9600ms;
  animation-delay: 9600ms;
}
body .acf-block.actualites div.actualite:nth-child(97) {
  transition-delay: 9700ms;
  animation-delay: 9700ms;
}
body .acf-block.actualites div.actualite:nth-child(98) {
  transition-delay: 9800ms;
  animation-delay: 9800ms;
}
body .acf-block.bureaux {
  display: flex;
  justify-content: center;
  flex-flow: wrap row;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  body .acf-block.bureaux {
    padding: 0;
  }
}
body .acf-block.bureaux div.bureau {
  width: calc((100% - 60px) / 4);
  display: flex;
  flex-flow: column wrap;
  border-radius: 20px;
  overflow: hidden;
}
body .acf-block.bureaux div.bureau:nth-child(n) {
  margin-bottom: 20px;
  margin-right: 20px;
}
body .acf-block.bureaux div.bureau:nth-child(4n) {
  margin-right: 0;
}
body .acf-block.bureaux div.bureau:nth-child(2n) {
  transform: translateY(50px);
}
body .acf-block.bureaux div.bureau div.image-bureau {
  height: 50%;
  position: relative;
}
body .acf-block.bureaux div.bureau div.image-bureau img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .acf-block.bureaux div.bureau div.content-bureau {
  display: flex;
  align-items: center;
  flex-flow: wrap row;
  height: 50%;
  padding: 50px 30px;
  background-color: #16002B;
}
body .acf-block.bureaux div.bureau div.content-bureau h4 {
  margin: 0;
  font-size: 20px;
  line-height: 25px;
  font-weight: bold;
  color: white;
  width: 100%;
}
body .acf-block.bureaux div.bureau div.content-bureau h4 span {
  font-weight: normal;
  color: #AB25F5;
}
body .acf-block.bureaux div.bureau div.content-bureau address {
  width: 100%;
  margin: 10px 0;
  color: white;
  font-style: normal;
  font-size: 15px;
  line-height: 20px;
}
body .acf-block.bureaux div.bureau div.content-bureau a {
  width: 100%;
  font-size: 15px;
  line-height: 20px;
  color: white;
  font-weight: bold;
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
}
body .acf-block.bureaux div.bureau div.content-bureau a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 980px) {
  body .acf-block.bureaux div.bureau {
    width: calc((100% - 20px) / 2);
  }
  body .acf-block.bureaux div.bureau:nth-child(n) {
    margin-bottom: 20px;
    margin-right: 20px;
  }
  body .acf-block.bureaux div.bureau:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.bureaux div.bureau {
    width: calc((100% - 0px) / 1);
  }
  body .acf-block.bureaux div.bureau:nth-child(n) {
    margin-bottom: 50px;
    margin-right: 0px;
  }
  body .acf-block.bureaux div.bureau:nth-child(1n) {
    margin-right: 0;
  }
  body .acf-block.bureaux div.bureau:nth-child(2n) {
    transform: translateY(0);
  }
}
body .acf-block.bureaux div.bureau:nth-child(0) {
  transition-delay: 0ms;
  animation-delay: 0ms;
}
body .acf-block.bureaux div.bureau:nth-child(1) {
  transition-delay: 100ms;
  animation-delay: 100ms;
}
body .acf-block.bureaux div.bureau:nth-child(2) {
  transition-delay: 200ms;
  animation-delay: 200ms;
}
body .acf-block.bureaux div.bureau:nth-child(3) {
  transition-delay: 300ms;
  animation-delay: 300ms;
}
body .acf-block.bureaux div.bureau:nth-child(4) {
  transition-delay: 400ms;
  animation-delay: 400ms;
}
body .acf-block.bureaux div.bureau:nth-child(5) {
  transition-delay: 500ms;
  animation-delay: 500ms;
}
body .acf-block.bureaux div.bureau:nth-child(6) {
  transition-delay: 600ms;
  animation-delay: 600ms;
}
body .acf-block.bureaux div.bureau:nth-child(7) {
  transition-delay: 700ms;
  animation-delay: 700ms;
}
body .acf-block.bureaux div.bureau:nth-child(8) {
  transition-delay: 800ms;
  animation-delay: 800ms;
}
body .acf-block.bureaux div.bureau:nth-child(9) {
  transition-delay: 900ms;
  animation-delay: 900ms;
}
body .acf-block.bureaux div.bureau:nth-child(10) {
  transition-delay: 1000ms;
  animation-delay: 1000ms;
}
body .acf-block.bureaux div.bureau:nth-child(11) {
  transition-delay: 1100ms;
  animation-delay: 1100ms;
}
body .acf-block.bureaux div.bureau:nth-child(12) {
  transition-delay: 1200ms;
  animation-delay: 1200ms;
}
body .acf-block.bureaux div.bureau:nth-child(13) {
  transition-delay: 1300ms;
  animation-delay: 1300ms;
}
body .acf-block.bureaux div.bureau:nth-child(14) {
  transition-delay: 1400ms;
  animation-delay: 1400ms;
}
body .acf-block.bureaux div.bureau:nth-child(15) {
  transition-delay: 1500ms;
  animation-delay: 1500ms;
}
body .acf-block.bureaux div.bureau:nth-child(16) {
  transition-delay: 1600ms;
  animation-delay: 1600ms;
}
body .acf-block.bureaux div.bureau:nth-child(17) {
  transition-delay: 1700ms;
  animation-delay: 1700ms;
}
body .acf-block.bureaux div.bureau:nth-child(18) {
  transition-delay: 1800ms;
  animation-delay: 1800ms;
}
body .acf-block.bureaux div.bureau:nth-child(19) {
  transition-delay: 1900ms;
  animation-delay: 1900ms;
}
body .acf-block.bureaux div.bureau:nth-child(20) {
  transition-delay: 2000ms;
  animation-delay: 2000ms;
}
body .acf-block.bureaux div.bureau:nth-child(21) {
  transition-delay: 2100ms;
  animation-delay: 2100ms;
}
body .acf-block.bureaux div.bureau:nth-child(22) {
  transition-delay: 2200ms;
  animation-delay: 2200ms;
}
body .acf-block.bureaux div.bureau:nth-child(23) {
  transition-delay: 2300ms;
  animation-delay: 2300ms;
}
body .acf-block.bureaux div.bureau:nth-child(24) {
  transition-delay: 2400ms;
  animation-delay: 2400ms;
}
body .acf-block.bureaux div.bureau:nth-child(25) {
  transition-delay: 2500ms;
  animation-delay: 2500ms;
}
body .acf-block.bureaux div.bureau:nth-child(26) {
  transition-delay: 2600ms;
  animation-delay: 2600ms;
}
body .acf-block.bureaux div.bureau:nth-child(27) {
  transition-delay: 2700ms;
  animation-delay: 2700ms;
}
body .acf-block.bureaux div.bureau:nth-child(28) {
  transition-delay: 2800ms;
  animation-delay: 2800ms;
}
body .acf-block.bureaux div.bureau:nth-child(29) {
  transition-delay: 2900ms;
  animation-delay: 2900ms;
}
body .acf-block.bureaux div.bureau:nth-child(30) {
  transition-delay: 3000ms;
  animation-delay: 3000ms;
}
body .acf-block.bureaux div.bureau:nth-child(31) {
  transition-delay: 3100ms;
  animation-delay: 3100ms;
}
body .acf-block.bureaux div.bureau:nth-child(32) {
  transition-delay: 3200ms;
  animation-delay: 3200ms;
}
body .acf-block.bureaux div.bureau:nth-child(33) {
  transition-delay: 3300ms;
  animation-delay: 3300ms;
}
body .acf-block.bureaux div.bureau:nth-child(34) {
  transition-delay: 3400ms;
  animation-delay: 3400ms;
}
body .acf-block.bureaux div.bureau:nth-child(35) {
  transition-delay: 3500ms;
  animation-delay: 3500ms;
}
body .acf-block.bureaux div.bureau:nth-child(36) {
  transition-delay: 3600ms;
  animation-delay: 3600ms;
}
body .acf-block.bureaux div.bureau:nth-child(37) {
  transition-delay: 3700ms;
  animation-delay: 3700ms;
}
body .acf-block.bureaux div.bureau:nth-child(38) {
  transition-delay: 3800ms;
  animation-delay: 3800ms;
}
body .acf-block.bureaux div.bureau:nth-child(39) {
  transition-delay: 3900ms;
  animation-delay: 3900ms;
}
body .acf-block.bureaux div.bureau:nth-child(40) {
  transition-delay: 4000ms;
  animation-delay: 4000ms;
}
body .acf-block.bureaux div.bureau:nth-child(41) {
  transition-delay: 4100ms;
  animation-delay: 4100ms;
}
body .acf-block.bureaux div.bureau:nth-child(42) {
  transition-delay: 4200ms;
  animation-delay: 4200ms;
}
body .acf-block.bureaux div.bureau:nth-child(43) {
  transition-delay: 4300ms;
  animation-delay: 4300ms;
}
body .acf-block.bureaux div.bureau:nth-child(44) {
  transition-delay: 4400ms;
  animation-delay: 4400ms;
}
body .acf-block.bureaux div.bureau:nth-child(45) {
  transition-delay: 4500ms;
  animation-delay: 4500ms;
}
body .acf-block.bureaux div.bureau:nth-child(46) {
  transition-delay: 4600ms;
  animation-delay: 4600ms;
}
body .acf-block.bureaux div.bureau:nth-child(47) {
  transition-delay: 4700ms;
  animation-delay: 4700ms;
}
body .acf-block.bureaux div.bureau:nth-child(48) {
  transition-delay: 4800ms;
  animation-delay: 4800ms;
}
body .acf-block.bureaux div.bureau:nth-child(49) {
  transition-delay: 4900ms;
  animation-delay: 4900ms;
}
body .acf-block.bureaux div.bureau:nth-child(50) {
  transition-delay: 5000ms;
  animation-delay: 5000ms;
}
body .acf-block.bureaux div.bureau:nth-child(51) {
  transition-delay: 5100ms;
  animation-delay: 5100ms;
}
body .acf-block.bureaux div.bureau:nth-child(52) {
  transition-delay: 5200ms;
  animation-delay: 5200ms;
}
body .acf-block.bureaux div.bureau:nth-child(53) {
  transition-delay: 5300ms;
  animation-delay: 5300ms;
}
body .acf-block.bureaux div.bureau:nth-child(54) {
  transition-delay: 5400ms;
  animation-delay: 5400ms;
}
body .acf-block.bureaux div.bureau:nth-child(55) {
  transition-delay: 5500ms;
  animation-delay: 5500ms;
}
body .acf-block.bureaux div.bureau:nth-child(56) {
  transition-delay: 5600ms;
  animation-delay: 5600ms;
}
body .acf-block.bureaux div.bureau:nth-child(57) {
  transition-delay: 5700ms;
  animation-delay: 5700ms;
}
body .acf-block.bureaux div.bureau:nth-child(58) {
  transition-delay: 5800ms;
  animation-delay: 5800ms;
}
body .acf-block.bureaux div.bureau:nth-child(59) {
  transition-delay: 5900ms;
  animation-delay: 5900ms;
}
body .acf-block.bureaux div.bureau:nth-child(60) {
  transition-delay: 6000ms;
  animation-delay: 6000ms;
}
body .acf-block.bureaux div.bureau:nth-child(61) {
  transition-delay: 6100ms;
  animation-delay: 6100ms;
}
body .acf-block.bureaux div.bureau:nth-child(62) {
  transition-delay: 6200ms;
  animation-delay: 6200ms;
}
body .acf-block.bureaux div.bureau:nth-child(63) {
  transition-delay: 6300ms;
  animation-delay: 6300ms;
}
body .acf-block.bureaux div.bureau:nth-child(64) {
  transition-delay: 6400ms;
  animation-delay: 6400ms;
}
body .acf-block.bureaux div.bureau:nth-child(65) {
  transition-delay: 6500ms;
  animation-delay: 6500ms;
}
body .acf-block.bureaux div.bureau:nth-child(66) {
  transition-delay: 6600ms;
  animation-delay: 6600ms;
}
body .acf-block.bureaux div.bureau:nth-child(67) {
  transition-delay: 6700ms;
  animation-delay: 6700ms;
}
body .acf-block.bureaux div.bureau:nth-child(68) {
  transition-delay: 6800ms;
  animation-delay: 6800ms;
}
body .acf-block.bureaux div.bureau:nth-child(69) {
  transition-delay: 6900ms;
  animation-delay: 6900ms;
}
body .acf-block.bureaux div.bureau:nth-child(70) {
  transition-delay: 7000ms;
  animation-delay: 7000ms;
}
body .acf-block.bureaux div.bureau:nth-child(71) {
  transition-delay: 7100ms;
  animation-delay: 7100ms;
}
body .acf-block.bureaux div.bureau:nth-child(72) {
  transition-delay: 7200ms;
  animation-delay: 7200ms;
}
body .acf-block.bureaux div.bureau:nth-child(73) {
  transition-delay: 7300ms;
  animation-delay: 7300ms;
}
body .acf-block.bureaux div.bureau:nth-child(74) {
  transition-delay: 7400ms;
  animation-delay: 7400ms;
}
body .acf-block.bureaux div.bureau:nth-child(75) {
  transition-delay: 7500ms;
  animation-delay: 7500ms;
}
body .acf-block.bureaux div.bureau:nth-child(76) {
  transition-delay: 7600ms;
  animation-delay: 7600ms;
}
body .acf-block.bureaux div.bureau:nth-child(77) {
  transition-delay: 7700ms;
  animation-delay: 7700ms;
}
body .acf-block.bureaux div.bureau:nth-child(78) {
  transition-delay: 7800ms;
  animation-delay: 7800ms;
}
body .acf-block.bureaux div.bureau:nth-child(79) {
  transition-delay: 7900ms;
  animation-delay: 7900ms;
}
body .acf-block.bureaux div.bureau:nth-child(80) {
  transition-delay: 8000ms;
  animation-delay: 8000ms;
}
body .acf-block.bureaux div.bureau:nth-child(81) {
  transition-delay: 8100ms;
  animation-delay: 8100ms;
}
body .acf-block.bureaux div.bureau:nth-child(82) {
  transition-delay: 8200ms;
  animation-delay: 8200ms;
}
body .acf-block.bureaux div.bureau:nth-child(83) {
  transition-delay: 8300ms;
  animation-delay: 8300ms;
}
body .acf-block.bureaux div.bureau:nth-child(84) {
  transition-delay: 8400ms;
  animation-delay: 8400ms;
}
body .acf-block.bureaux div.bureau:nth-child(85) {
  transition-delay: 8500ms;
  animation-delay: 8500ms;
}
body .acf-block.bureaux div.bureau:nth-child(86) {
  transition-delay: 8600ms;
  animation-delay: 8600ms;
}
body .acf-block.bureaux div.bureau:nth-child(87) {
  transition-delay: 8700ms;
  animation-delay: 8700ms;
}
body .acf-block.bureaux div.bureau:nth-child(88) {
  transition-delay: 8800ms;
  animation-delay: 8800ms;
}
body .acf-block.bureaux div.bureau:nth-child(89) {
  transition-delay: 8900ms;
  animation-delay: 8900ms;
}
body .acf-block.bureaux div.bureau:nth-child(90) {
  transition-delay: 9000ms;
  animation-delay: 9000ms;
}
body .acf-block.bureaux div.bureau:nth-child(91) {
  transition-delay: 9100ms;
  animation-delay: 9100ms;
}
body .acf-block.bureaux div.bureau:nth-child(92) {
  transition-delay: 9200ms;
  animation-delay: 9200ms;
}
body .acf-block.bureaux div.bureau:nth-child(93) {
  transition-delay: 9300ms;
  animation-delay: 9300ms;
}
body .acf-block.bureaux div.bureau:nth-child(94) {
  transition-delay: 9400ms;
  animation-delay: 9400ms;
}
body .acf-block.bureaux div.bureau:nth-child(95) {
  transition-delay: 9500ms;
  animation-delay: 9500ms;
}
body .acf-block.bureaux div.bureau:nth-child(96) {
  transition-delay: 9600ms;
  animation-delay: 9600ms;
}
body .acf-block.bureaux div.bureau:nth-child(97) {
  transition-delay: 9700ms;
  animation-delay: 9700ms;
}
body .acf-block.bureaux div.bureau:nth-child(98) {
  transition-delay: 9800ms;
  animation-delay: 9800ms;
}
body .acf-block.intro {
  min-height: var(--height);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
}
body .acf-block.intro div.logo-centre {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 150px;
  height: 150px;
}
body .acf-block.intro div.logo-centre div.img-sizer {
  position: relative;
  padding-bottom: 100%;
  border-radius: 15px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.33);
}
body .acf-block.intro div.logo-centre div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  padding: 0;
}
body .acf-block.intro::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 0, 43, 0.3);
}
@media screen and (max-width: 980px) {
  body .acf-block.contact {
    margin-bottom: 100px;
  }
}
body .acf-block.contact span {
  text-transform: uppercase;
  color: #AB25F5;
  font-weight: 600;
  display: block;
  font-size: 14px;
  line-height: 20px;
}
body .acf-block.contact h6 {
  font-size: 25px;
  line-height: 27px;
  font-weight: 600;
  color: #16002B;
  margin: 0;
  margin-bottom: 20px;
}
body .acf-block.contact address {
  font-size: 18px;
  line-height: 22px;
  color: #16002B;
  font-style: normal;
  margin: 0;
  margin-bottom: 20px;
}
body .acf-block.contact p {
  display: flex;
  gap: 10px;
  align-items: center;
  margin: 0;
  color: #AB25F5;
  font-size: 16px;
  line-height: 20px;
  margin-bottom: 10px;
}
body .acf-block.contact a {
  font-size: 16px;
  line-height: 20px;
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
  background-color: #AB25F5;
  display: flex !important;
  gap: 10px;
  align-items: center;
}
body .acf-block.contact a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
body .acf-block.navigation-plus {
  transition: 0.3s ease-out;
  border-radius: 15px;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.33);
}
body .acf-block.navigation-plus:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.5);
}
body .acf-block.navigation-plus:hover div.wrapper-nav:after {
  transform: translateX(50%) skewX(345deg) scale(1.2);
}
body .acf-block.navigation-plus div.wrapper-nav {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 400px;
  border-radius: 15px;
  background-color: #16002B;
  padding: 30px 40px;
  display: flex;
  flex-flow: wrap column;
  justify-content: flex-start;
}
body .acf-block.navigation-plus div.wrapper-nav:before {
  content: "";
  position: absolute;
  top: 0;
  left: 60%;
  transform: translateX(-50%) skewX(345deg);
  background-image: linear-gradient(183deg, #9C37EC 0%, rgba(128, 128, 128, 0) 100%);
  opacity: 0.32;
  width: 120%;
  height: 55%;
  z-index: -1;
}
body .acf-block.navigation-plus div.wrapper-nav:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 80%;
  transform: translateX(50%) skewX(345deg);
  background-image: linear-gradient(200deg, #9C37EC 0%, rgba(128, 128, 128, 0) 100%);
  opacity: 0.32;
  width: 110%;
  height: 55%;
  z-index: -1;
  transition: 0.3s ease-out;
}
body .acf-block.navigation-plus div.wrapper-nav div.icone {
  width: 64px;
  height: 64px;
}
body .acf-block.navigation-plus div.wrapper-nav div.icone img {
  width: 100%;
  height: 100%;
}
body .acf-block.navigation-plus div.wrapper-nav h4 {
  font-size: 24px;
  line-height: 30px;
  margin: 0;
  margin-top: auto;
  color: white;
}
body .acf-block.navigation-plus div.wrapper-nav h4 a {
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
  color: white;
  background-color: white;
}
body .acf-block.navigation-plus div.wrapper-nav h4 a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
body .acf-block.navigation-plus div.wrapper-nav p {
  font-size: 14px;
  line-height: 22px;
  color: white;
  min-height: 100px;
}
body .acf-block.navigation-plus div.wrapper-nav div.link {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-end;
  align-items: center;
}
body .acf-block.navigation-plus div.wrapper-nav div.link span {
  font-size: 15px;
  font-weight: 500;
}
body .acf-block.navigation-plus div.wrapper-nav div.link span a {
  color: white;
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
}
body .acf-block.navigation-plus div.wrapper-nav div.link span a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
body .acf-block.navigation-plus div.wrapper-nav div.link > a svg {
  transition: 0.3s ease-out;
}
body .acf-block.navigation-plus div.wrapper-nav div.link > a:hover svg {
  transform: scale(0.9);
}
body .acf-block.image-texte {
  display: flex;
  flex-flow: wrap row;
  align-items: center;
  border-radius: 20px;
  overflow: hidden;
  background-color: white;
}
@media screen and (max-width: 980px) {
  body .acf-block.image-texte {
    align-items: stretch;
  }
}
body .acf-block.image-texte div.left-visuel {
  width: 50%;
  overflow: hidden;
}
body .acf-block.image-texte div.left-visuel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  body .acf-block.image-texte div.left-visuel {
    width: 100%;
  }
}
body .acf-block.image-texte div.right-content {
  background-color: white;
  width: 50%;
  padding: 30px 50px;
}
@media screen and (max-width: 767px) {
  body .acf-block.image-texte div.right-content {
    width: 100%;
    padding: 30px 30px;
  }
}
body .acf-block.image-texte div.right-content h4 {
  margin: 0;
  margin-bottom: 20px;
}
body .acf-block.image-texte div.right-content p {
  margin: 0;
  margin-bottom: 50px;
}
body .acf-block.image-texte div.right-content .flex-button .button-alter-addict:before {
  width: 50px;
}
body .acf-block.image-texte div.right-content .flex-button .button-alter-addict span img {
  width: 24px;
  height: 24px;
}
body .acf-block.faq {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body .acf-block.faq div.question {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition: 0.3s ease-out;
}
body .acf-block.faq div.question:hover {
  transform: scale(1.05);
}
body .acf-block.faq div.question .accordion {
  position: relative;
  background-color: white;
  color: #16002B;
  font-size: 22px;
  line-height: 29px;
  font-weight: 600;
  cursor: pointer;
  padding: 20px 50px;
  padding-right: 80px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
}
body .acf-block.faq div.question .accordion::after {
  position: absolute;
  top: 20px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  margin-top: 3px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.074' height='20.074' viewBox='0 0 20.074 20.074'%3E%3Cpath id='Path_9168' data-name='Path 9168' d='M8.922,0V8.922H0v2.231H8.922v8.922h2.231V11.152h8.922V8.922H11.152V0Z' transform='translate(0)' fill='%23ab25f5'/%3E%3C/svg%3E%0A");
  color: #777;
  transition: 0.3s ease-out;
}
body .acf-block.faq div.question .accordion.active::after {
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  body .acf-block.faq div.question .accordion {
    font-size: 18px;
    line-height: 24px;
    padding: 20px 30px;
    padding-right: 80px;
  }
}
body .acf-block.faq div.question .panel {
  padding: 0 50px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
@media screen and (max-width: 767px) {
  body .acf-block.faq div.question .panel {
    padding: 0px 40px;
  }
}
body .acf-block.faq div.question .panel p {
  margin-bottom: 30px;
}
body .acf-block.faq div.question:nth-child(0) {
  transition-delay: 0ms;
  animation-delay: 0ms;
}
body .acf-block.faq div.question:nth-child(1) {
  transition-delay: 100ms;
  animation-delay: 100ms;
}
body .acf-block.faq div.question:nth-child(2) {
  transition-delay: 200ms;
  animation-delay: 200ms;
}
body .acf-block.faq div.question:nth-child(3) {
  transition-delay: 300ms;
  animation-delay: 300ms;
}
body .acf-block.faq div.question:nth-child(4) {
  transition-delay: 400ms;
  animation-delay: 400ms;
}
body .acf-block.faq div.question:nth-child(5) {
  transition-delay: 500ms;
  animation-delay: 500ms;
}
body .acf-block.faq div.question:nth-child(6) {
  transition-delay: 600ms;
  animation-delay: 600ms;
}
body .acf-block.faq div.question:nth-child(7) {
  transition-delay: 700ms;
  animation-delay: 700ms;
}
body .acf-block.faq div.question:nth-child(8) {
  transition-delay: 800ms;
  animation-delay: 800ms;
}
body .acf-block.faq div.question:nth-child(9) {
  transition-delay: 900ms;
  animation-delay: 900ms;
}
body .acf-block.faq div.question:nth-child(10) {
  transition-delay: 1000ms;
  animation-delay: 1000ms;
}
body .acf-block.faq div.question:nth-child(11) {
  transition-delay: 1100ms;
  animation-delay: 1100ms;
}
body .acf-block.faq div.question:nth-child(12) {
  transition-delay: 1200ms;
  animation-delay: 1200ms;
}
body .acf-block.faq div.question:nth-child(13) {
  transition-delay: 1300ms;
  animation-delay: 1300ms;
}
body .acf-block.faq div.question:nth-child(14) {
  transition-delay: 1400ms;
  animation-delay: 1400ms;
}
body .acf-block.faq div.question:nth-child(15) {
  transition-delay: 1500ms;
  animation-delay: 1500ms;
}
body .acf-block.faq div.question:nth-child(16) {
  transition-delay: 1600ms;
  animation-delay: 1600ms;
}
body .acf-block.faq div.question:nth-child(17) {
  transition-delay: 1700ms;
  animation-delay: 1700ms;
}
body .acf-block.faq div.question:nth-child(18) {
  transition-delay: 1800ms;
  animation-delay: 1800ms;
}
body .acf-block.faq div.question:nth-child(19) {
  transition-delay: 1900ms;
  animation-delay: 1900ms;
}
body .acf-block.faq div.question:nth-child(20) {
  transition-delay: 2000ms;
  animation-delay: 2000ms;
}
body .acf-block.faq div.question:nth-child(21) {
  transition-delay: 2100ms;
  animation-delay: 2100ms;
}
body .acf-block.faq div.question:nth-child(22) {
  transition-delay: 2200ms;
  animation-delay: 2200ms;
}
body .acf-block.faq div.question:nth-child(23) {
  transition-delay: 2300ms;
  animation-delay: 2300ms;
}
body .acf-block.faq div.question:nth-child(24) {
  transition-delay: 2400ms;
  animation-delay: 2400ms;
}
body .acf-block.faq div.question:nth-child(25) {
  transition-delay: 2500ms;
  animation-delay: 2500ms;
}
body .acf-block.faq div.question:nth-child(26) {
  transition-delay: 2600ms;
  animation-delay: 2600ms;
}
body .acf-block.faq div.question:nth-child(27) {
  transition-delay: 2700ms;
  animation-delay: 2700ms;
}
body .acf-block.faq div.question:nth-child(28) {
  transition-delay: 2800ms;
  animation-delay: 2800ms;
}
body .acf-block.faq div.question:nth-child(29) {
  transition-delay: 2900ms;
  animation-delay: 2900ms;
}
body .acf-block.faq div.question:nth-child(30) {
  transition-delay: 3000ms;
  animation-delay: 3000ms;
}
body .acf-block.faq div.question:nth-child(31) {
  transition-delay: 3100ms;
  animation-delay: 3100ms;
}
body .acf-block.faq div.question:nth-child(32) {
  transition-delay: 3200ms;
  animation-delay: 3200ms;
}
body .acf-block.faq div.question:nth-child(33) {
  transition-delay: 3300ms;
  animation-delay: 3300ms;
}
body .acf-block.faq div.question:nth-child(34) {
  transition-delay: 3400ms;
  animation-delay: 3400ms;
}
body .acf-block.faq div.question:nth-child(35) {
  transition-delay: 3500ms;
  animation-delay: 3500ms;
}
body .acf-block.faq div.question:nth-child(36) {
  transition-delay: 3600ms;
  animation-delay: 3600ms;
}
body .acf-block.faq div.question:nth-child(37) {
  transition-delay: 3700ms;
  animation-delay: 3700ms;
}
body .acf-block.faq div.question:nth-child(38) {
  transition-delay: 3800ms;
  animation-delay: 3800ms;
}
body .acf-block.faq div.question:nth-child(39) {
  transition-delay: 3900ms;
  animation-delay: 3900ms;
}
body .acf-block.faq div.question:nth-child(40) {
  transition-delay: 4000ms;
  animation-delay: 4000ms;
}
body .acf-block.faq div.question:nth-child(41) {
  transition-delay: 4100ms;
  animation-delay: 4100ms;
}
body .acf-block.faq div.question:nth-child(42) {
  transition-delay: 4200ms;
  animation-delay: 4200ms;
}
body .acf-block.faq div.question:nth-child(43) {
  transition-delay: 4300ms;
  animation-delay: 4300ms;
}
body .acf-block.faq div.question:nth-child(44) {
  transition-delay: 4400ms;
  animation-delay: 4400ms;
}
body .acf-block.faq div.question:nth-child(45) {
  transition-delay: 4500ms;
  animation-delay: 4500ms;
}
body .acf-block.faq div.question:nth-child(46) {
  transition-delay: 4600ms;
  animation-delay: 4600ms;
}
body .acf-block.faq div.question:nth-child(47) {
  transition-delay: 4700ms;
  animation-delay: 4700ms;
}
body .acf-block.faq div.question:nth-child(48) {
  transition-delay: 4800ms;
  animation-delay: 4800ms;
}
body .acf-block.faq div.question:nth-child(49) {
  transition-delay: 4900ms;
  animation-delay: 4900ms;
}
body .acf-block.faq div.question:nth-child(50) {
  transition-delay: 5000ms;
  animation-delay: 5000ms;
}
body .acf-block.faq div.question:nth-child(51) {
  transition-delay: 5100ms;
  animation-delay: 5100ms;
}
body .acf-block.faq div.question:nth-child(52) {
  transition-delay: 5200ms;
  animation-delay: 5200ms;
}
body .acf-block.faq div.question:nth-child(53) {
  transition-delay: 5300ms;
  animation-delay: 5300ms;
}
body .acf-block.faq div.question:nth-child(54) {
  transition-delay: 5400ms;
  animation-delay: 5400ms;
}
body .acf-block.faq div.question:nth-child(55) {
  transition-delay: 5500ms;
  animation-delay: 5500ms;
}
body .acf-block.faq div.question:nth-child(56) {
  transition-delay: 5600ms;
  animation-delay: 5600ms;
}
body .acf-block.faq div.question:nth-child(57) {
  transition-delay: 5700ms;
  animation-delay: 5700ms;
}
body .acf-block.faq div.question:nth-child(58) {
  transition-delay: 5800ms;
  animation-delay: 5800ms;
}
body .acf-block.faq div.question:nth-child(59) {
  transition-delay: 5900ms;
  animation-delay: 5900ms;
}
body .acf-block.faq div.question:nth-child(60) {
  transition-delay: 6000ms;
  animation-delay: 6000ms;
}
body .acf-block.faq div.question:nth-child(61) {
  transition-delay: 6100ms;
  animation-delay: 6100ms;
}
body .acf-block.faq div.question:nth-child(62) {
  transition-delay: 6200ms;
  animation-delay: 6200ms;
}
body .acf-block.faq div.question:nth-child(63) {
  transition-delay: 6300ms;
  animation-delay: 6300ms;
}
body .acf-block.faq div.question:nth-child(64) {
  transition-delay: 6400ms;
  animation-delay: 6400ms;
}
body .acf-block.faq div.question:nth-child(65) {
  transition-delay: 6500ms;
  animation-delay: 6500ms;
}
body .acf-block.faq div.question:nth-child(66) {
  transition-delay: 6600ms;
  animation-delay: 6600ms;
}
body .acf-block.faq div.question:nth-child(67) {
  transition-delay: 6700ms;
  animation-delay: 6700ms;
}
body .acf-block.faq div.question:nth-child(68) {
  transition-delay: 6800ms;
  animation-delay: 6800ms;
}
body .acf-block.faq div.question:nth-child(69) {
  transition-delay: 6900ms;
  animation-delay: 6900ms;
}
body .acf-block.faq div.question:nth-child(70) {
  transition-delay: 7000ms;
  animation-delay: 7000ms;
}
body .acf-block.faq div.question:nth-child(71) {
  transition-delay: 7100ms;
  animation-delay: 7100ms;
}
body .acf-block.faq div.question:nth-child(72) {
  transition-delay: 7200ms;
  animation-delay: 7200ms;
}
body .acf-block.faq div.question:nth-child(73) {
  transition-delay: 7300ms;
  animation-delay: 7300ms;
}
body .acf-block.faq div.question:nth-child(74) {
  transition-delay: 7400ms;
  animation-delay: 7400ms;
}
body .acf-block.faq div.question:nth-child(75) {
  transition-delay: 7500ms;
  animation-delay: 7500ms;
}
body .acf-block.faq div.question:nth-child(76) {
  transition-delay: 7600ms;
  animation-delay: 7600ms;
}
body .acf-block.faq div.question:nth-child(77) {
  transition-delay: 7700ms;
  animation-delay: 7700ms;
}
body .acf-block.faq div.question:nth-child(78) {
  transition-delay: 7800ms;
  animation-delay: 7800ms;
}
body .acf-block.faq div.question:nth-child(79) {
  transition-delay: 7900ms;
  animation-delay: 7900ms;
}
body .acf-block.faq div.question:nth-child(80) {
  transition-delay: 8000ms;
  animation-delay: 8000ms;
}
body .acf-block.faq div.question:nth-child(81) {
  transition-delay: 8100ms;
  animation-delay: 8100ms;
}
body .acf-block.faq div.question:nth-child(82) {
  transition-delay: 8200ms;
  animation-delay: 8200ms;
}
body .acf-block.faq div.question:nth-child(83) {
  transition-delay: 8300ms;
  animation-delay: 8300ms;
}
body .acf-block.faq div.question:nth-child(84) {
  transition-delay: 8400ms;
  animation-delay: 8400ms;
}
body .acf-block.faq div.question:nth-child(85) {
  transition-delay: 8500ms;
  animation-delay: 8500ms;
}
body .acf-block.faq div.question:nth-child(86) {
  transition-delay: 8600ms;
  animation-delay: 8600ms;
}
body .acf-block.faq div.question:nth-child(87) {
  transition-delay: 8700ms;
  animation-delay: 8700ms;
}
body .acf-block.faq div.question:nth-child(88) {
  transition-delay: 8800ms;
  animation-delay: 8800ms;
}
body .acf-block.faq div.question:nth-child(89) {
  transition-delay: 8900ms;
  animation-delay: 8900ms;
}
body .acf-block.faq div.question:nth-child(90) {
  transition-delay: 9000ms;
  animation-delay: 9000ms;
}
body .acf-block.faq div.question:nth-child(91) {
  transition-delay: 9100ms;
  animation-delay: 9100ms;
}
body .acf-block.faq div.question:nth-child(92) {
  transition-delay: 9200ms;
  animation-delay: 9200ms;
}
body .acf-block.faq div.question:nth-child(93) {
  transition-delay: 9300ms;
  animation-delay: 9300ms;
}
body .acf-block.faq div.question:nth-child(94) {
  transition-delay: 9400ms;
  animation-delay: 9400ms;
}
body .acf-block.faq div.question:nth-child(95) {
  transition-delay: 9500ms;
  animation-delay: 9500ms;
}
body .acf-block.faq div.question:nth-child(96) {
  transition-delay: 9600ms;
  animation-delay: 9600ms;
}
body .acf-block.faq div.question:nth-child(97) {
  transition-delay: 9700ms;
  animation-delay: 9700ms;
}
body .acf-block.faq div.question:nth-child(98) {
  transition-delay: 9800ms;
  animation-delay: 9800ms;
}
@media screen and (max-width: 767px) {
  body .acf-block .responsive-video {
    height: 100px !important;
  }
}
body .acf-block.scroll-video {
  position: relative;
  z-index: 2;
  margin: -300px auto;
}
@media screen and (max-width: 767px) {
  body .acf-block.scroll-video {
    margin: -150px auto;
  }
}
body .acf-block.scroll-video div.sizeable-block {
  width: 100%;
  height: 100%;
  border-radius: 20px;
  max-width: 1140px;
  margin: auto;
  padding: 0 30px;
}
body .acf-block.scroll-video div.sizeable-block video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
body .acf-block.video {
  border-radius: 20px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.1490196078);
}
body .acf-block.video.clicked:before {
  opacity: 0;
  visibility: hidden;
}
body .acf-block.video.clicked svg {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
body .acf-block.video:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(22, 0, 43, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.3s ease-out;
}
body .acf-block.video svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  transition: 0.3s ease-out;
}
body .acf-block.video svg > g > g {
  transform-origin: center;
  animation: 8s linear infinite rotate-infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
body .acf-block.video svg > g > path {
  animation: heartbeat 2.5s infinite;
  transform-origin: center;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
body .acf-block.video video {
  object-fit: contain;
  width: 100%;
  height: 100%;
}
body .acf-block.video.autoplay:before {
  content: inherit;
}
body .acf-block.video.autoplay svg {
  display: none;
}
@media screen and (max-width: 767px) {
  body .acf-block.citations div.upperpart svg {
    width: 80px;
  }
}
body .acf-block.citations div.citations p {
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
  color: white;
}
@media screen and (max-width: 767px) {
  body .acf-block.citations div.citations p {
    font-size: 18px;
    line-height: 28px;
  }
}
body .acf-block.citations div.bottompart {
  display: flex;
  justify-content: flex-end;
}
body .acf-block.citations div.bottompart div.meta {
  margin-right: auto;
}
body .acf-block.citations div.bottompart div.meta p {
  color: white;
  font-weight: 500;
  margin: 0;
}
@media screen and (max-width: 767px) {
  body .acf-block.citations div.bottompart svg {
    width: 80px;
  }
}
body .acf-block.etapes div.etape {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 100px;
}
body .acf-block.etapes div.etape div.left-visuel {
  width: 53%;
}
@media screen and (max-width: 767px) {
  body .acf-block.etapes div.etape div.left-visuel {
    width: 100%;
    margin-bottom: 30px;
  }
}
body .acf-block.etapes div.etape div.left-visuel div.img-sizer {
  border-radius: 20px;
  overflow: hidden;
  padding-bottom: 65%;
  position: relative;
}
body .acf-block.etapes div.etape div.left-visuel div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .acf-block.etapes div.etape div.right-content {
  width: 43%;
}
@media screen and (max-width: 767px) {
  body .acf-block.etapes div.etape div.right-content {
    width: 100%;
  }
}
body .acf-block.etapes div.etape div.right-content > span {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 16px;
  background-color: #AB25F5;
  text-transform: uppercase;
  color: white;
  border-radius: 4px;
  margin-bottom: 10px;
  display: inline-block;
}
body .acf-block.etapes div.etape div.right-content h4 {
  margin: 0;
}
body .acf-block.etapes div.etape:nth-child(2n) div.left-visuel {
  order: 2;
}
@media screen and (max-width: 767px) {
  body .acf-block.etapes div.etape:nth-child(2n) div.left-visuel {
    order: 1;
  }
}
body .acf-block.etapes div.etape:nth-child(2n) div.right-content {
  order: 1;
}
@media screen and (max-width: 767px) {
  body .acf-block.etapes div.etape:nth-child(2n) div.right-content {
    order: 2;
  }
}
body .acf-block.etapes div.etape:last-child {
  margin-bottom: 0;
}
body .acf-block.slider-navigation div.swiper-container {
  cursor: url("..assets/img/glisser.svg") 68 68, grab;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide {
  transition: 0.3s ease-out;
  border-radius: 15px;
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.33);
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide:hover {
  transform: scale(1.05);
  box-shadow: 0px 5px 7px rgba(0, 0, 0, 0.5);
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide:hover div.wrapper-nav:after {
  transform: translateX(50%) skewX(345deg) scale(1.2);
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav {
  position: relative;
  z-index: 1;
  overflow: hidden;
  min-height: 400px;
  border-radius: 15px;
  background-color: #16002B;
  padding: 30px 40px;
  display: flex;
  flex-flow: wrap column;
  justify-content: flex-start;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav:before {
  content: "";
  position: absolute;
  top: 0;
  left: 60%;
  transform: translateX(-50%) skewX(345deg);
  background-image: linear-gradient(183deg, #9C37EC 0%, rgba(128, 128, 128, 0) 100%);
  opacity: 0.32;
  width: 120%;
  height: 55%;
  z-index: -1;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 80%;
  transform: translateX(50%) skewX(345deg);
  background-image: linear-gradient(200deg, #9C37EC 0%, rgba(128, 128, 128, 0) 100%);
  opacity: 0.32;
  width: 110%;
  height: 55%;
  z-index: -1;
  transition: 0.3s ease-out;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav div.icone {
  width: 64px;
  height: 64px;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav div.icone img {
  width: 100%;
  height: 100%;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav h4 {
  font-size: 24px;
  line-height: 30px;
  margin: 0;
  margin-top: auto;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav h4 a {
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
  color: white;
  background-color: white;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav h4 a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav p {
  font-size: 14px;
  line-height: 22px;
  color: white;
  min-height: 100px;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav div.link {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-end;
  align-items: center;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav div.link span {
  font-size: 15px;
  font-weight: 500;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav div.link span a {
  color: white;
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav div.link span a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav div.link > a svg {
  transition: 0.3s ease-out;
}
body .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.wrapper-nav div.link > a:hover svg {
  transform: scale(0.9);
}
body .acf-block.block-couleur {
  background-color: var(--background);
  border-radius: 20px;
  overflow: hidden;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin-bottom: 50px;
}
body .acf-block.block-couleur div.wrapper-content {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: stretch;
  position: relative;
}
body .acf-block.block-couleur div.wrapper-content div.visuel-content {
  width: 40%;
  height: auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  body .acf-block.block-couleur div.wrapper-content div.visuel-content {
    flex: 0 0 100%;
    padding: 30px 0 0;
  }
}
body .acf-block.block-couleur div.wrapper-content div.visuel-content img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: var(--dispo);
}
@media screen and (max-width: 767px) {
  body .acf-block.block-couleur div.wrapper-content div.visuel-content img {
    position: relative;
  }
}
body .acf-block.block-couleur div.wrapper-content div.visuel-content div.lottie {
  width: 100%;
  max-width: 200px;
}
body .acf-block.block-couleur div.wrapper-content div.description-content {
  flex: 0 0 60%;
  padding: 50px;
  color: white;
}
@media screen and (max-width: 767px) {
  body .acf-block.block-couleur div.wrapper-content div.description-content {
    flex: 0 0 100%;
    padding: 50px 30px;
  }
}
body .acf-block.block-couleur div.wrapper-content div.description-content h4 {
  margin-top: 0;
}
body .acf-block.block-couleur div.wrapper-content div.description-content p:first-child {
  margin-top: 0;
}
body .acf-block.block-couleur div.wrapper-content div.description-content p:last-child {
  margin-bottom: 0;
}
body .acf-block.block-couleur div.wrapper-content div.button-addict {
  margin-top: 20px;
}
body .acf-block.block-couleur div.wrapper-content.gauche div.visuel-content {
  order: 2;
}
body .acf-block.block-couleur div.wrapper-content.gauche div.description-content {
  order: 1;
}
body .acf-block.block-couleur div.wrapper-content.droite div.visuel-content {
  order: 1;
}
body .acf-block.block-couleur div.wrapper-content.droite div.description-content {
  order: 2;
}
body .acf-block.block-couleur div.wrapper-content.full div.visuel-content {
  display: none;
}
body .acf-block.block-couleur div.wrapper-content.full div.description-content {
  flex: 0 0 100%;
}
body .acf-block.block-couleur div.wrapper-content:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(25deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(100%);
  pointer-events: none;
  transition: 0.6s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
body .acf-block.block-couleur div.wrapper-content.active:after {
  transform: skewX(160deg) translateX(60%);
}
body .acf-block.block-couleur:last-child {
  margin-bottom: 0;
}
body .acf-block.popup-video {
  display: flex;
  flex-flow: wrap row;
  justify-content: flex-start;
}
body .acf-block.popup-video div.ref {
  width: calc((100% - 60px) / 4);
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
}
body .acf-block.popup-video div.ref:nth-child(n) {
  margin-bottom: 0px;
  margin-right: 20px;
}
body .acf-block.popup-video div.ref:nth-child(4n) {
  margin-right: 0;
}
body .acf-block.popup-video div.ref:hover {
  transform: scale(1.05);
}
body .acf-block.popup-video div.ref div.vignette {
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(10px);
}
body .acf-block.popup-video div.ref div.vignette div.img-sizer {
  position: relative;
  padding-bottom: 100%;
}
body .acf-block.popup-video div.ref div.vignette div.img-sizer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
body .acf-block.popup-video div.ref div.meta {
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  position: relative;
  padding: 25px;
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
}
body .acf-block.popup-video div.ref div.meta div.block {
  flex: 0 0 60%;
}
body .acf-block.popup-video div.ref div.meta div.block p {
  font-size: 20px;
  line-height: 22px;
  font-weight: bold;
  color: white;
  margin: 0;
}
@media screen and (max-width: 767px) {
  body .acf-block.popup-video div.ref div.meta div.block p {
    font-size: 16px;
    line-height: 18px;
  }
}
body .acf-block.popup-video div.ref div.meta div.block span {
  font-size: 15px;
  line-height: 22px;
  font-weight: normal;
  color: white;
  margin: 0;
}
@media screen and (max-width: 767px) {
  body .acf-block.popup-video div.ref div.meta div.block span {
    font-size: 13px;
    line-height: 18px;
  }
}
body .acf-block.popup-video div.ref div.meta button {
  flex-shrink: 1;
  text-align: end;
  background: none;
  border: none;
  outline: none;
  padding: 0;
}
body .acf-block.popup-video div.ref div.meta button:focus, body .acf-block.popup-video div.ref div.meta button:active {
  background: none;
  border: none;
  outline: none;
}
@media screen and (max-width: 767px) {
  body .acf-block.popup-video div.ref div.meta button svg {
    width: 24px;
    height: 24px;
  }
}
body .acf-block.popup-video div.ref div.meta:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 80%;
  transform: translateX(50%) skewX(345deg);
  background-image: linear-gradient(200deg, #9C37EC 0%, rgba(128, 128, 128, 0) 100%);
  opacity: 0.32;
  width: 100%;
  height: 100%;
  z-index: -1;
}
body .acf-block.popup-video div.ref:nth-child(2n) {
  padding-top: 50px;
}
@media screen and (max-width: 980px) {
  body .acf-block.popup-video div.ref {
    width: calc((100% - 20px) / 2);
  }
  body .acf-block.popup-video div.ref:nth-child(n) {
    margin-bottom: 0px;
    margin-right: 20px;
  }
  body .acf-block.popup-video div.ref:nth-child(2n) {
    margin-right: 0;
  }
}
body .acf-block.popup-video .popupContainer {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
  pointer-events: none;
}
body .acf-block.popup-video .popupContainer.active .popUpBackground {
  background-color: rgba(22, 0, 43, 0.9);
  pointer-events: all;
}
body .acf-block.popup-video .popupContainer.active button#closePopup {
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
body .acf-block.popup-video .popupContainer.active .video-container {
  pointer-events: all;
}
body .acf-block.popup-video .popupContainer button#closePopup {
  background: none;
  border: none;
  outline: none;
  background-color: white;
  border-radius: 50%;
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 1;
  opacity: 0;
  visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  body .acf-block.popup-video .popupContainer button#closePopup {
    width: 32px;
    height: 32px;
    right: 20px;
    top: 120px;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.popup-video .popupContainer button#closePopup svg {
    width: 12px;
    height: 12px;
  }
}
body .acf-block.popup-video .popupContainer .popUpBackground {
  transition: all 0.3s ease-in-out;
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  top: 0;
}
body .acf-block.popup-video .popupContainer div.video-container {
  border-radius: 20px;
  background-color: #5e4c63;
  padding: 50px 50px 0;
  position: relative;
  z-index: 1;
  opacity: 0;
}
@media screen and (max-width: 767px) {
  body .acf-block.popup-video .popupContainer div.video-container {
    padding: 30px 30px 0;
  }
}
body .acf-block.popup-video .popupContainer div.video-container div.video-sizer {
  position: relative;
  padding-bottom: 100%;
}
body .acf-block.popup-video .popupContainer div.video-container div.video-sizer video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls {
  opacity: 0;
  visibility: hidden;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls div.upper-controls {
  margin-top: 50px;
  display: flex;
  justify-content: center;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls div.upper-controls button {
  background: none;
  outline: none;
  border: none;
  cursor: pointer;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls div.upper-controls button#play {
  display: none;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls div.upper-controls button#pause {
  display: none;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls div.upper-controls button#restart {
  display: none;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls div.upper-controls button#restart.active {
  display: block;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls.playing div.upper-controls button#pause {
  display: none;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls.playing div.upper-controls button#play {
  display: block;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls.paused div.upper-controls button#play {
  display: none;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls.paused div.upper-controls button#pause {
  display: block;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls div.bot-controls {
  margin-top: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  justify-content: center;
  flex-flow: wrap row;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls div.bot-controls span {
  color: white;
}
body .acf-block.popup-video .popupContainer div.video-container div.controls div.bot-controls span#timeline {
  width: 60%;
  height: 5px;
  border-radius: 5px;
  background-color: rgba(255, 255, 255, 0.75);
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  body .acf-block.popup-video .popupContainer div.video-container div.controls div.bot-controls span#timeline {
    width: 50%;
  }
}
body .acf-block.popup-video .popupContainer div.video-container div.controls div.bot-controls span#timeline #timebar {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  height: 100%;
  background-color: #CC294F;
  transition: 0.1s linear;
}
body .acf-block.popup-video .popupContainer div.video-container.show div.controls {
  opacity: 1;
  visibility: visible;
}
body .acf-block.slider-equipe {
  position: relative;
}
body .acf-block.slider-equipe:after {
  content: "";
  position: absolute;
  bottom: -35%;
  right: 0;
  width: 35%;
  height: 80%;
  transform: skewX(200deg);
  background-image: linear-gradient(345deg, #9C37EC 0%, rgba(128, 128, 128, 0) 100%);
  opacity: 0.32;
  pointer-events: none;
}
body .acf-block.slider-equipe div.wrapper-equipe {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: center;
}
body .acf-block.slider-equipe div.wrapper-equipe div.left-portrait {
  flex: 0 0 25%;
}
@media screen and (max-width: 767px) {
  body .acf-block.slider-equipe div.wrapper-equipe div.left-portrait {
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.slider-equipe div.wrapper-equipe div.left-portrait div.portrait-sizer {
    width: 60%;
    margin: auto;
    margin-bottom: 30px;
  }
}
body .acf-block.slider-equipe div.wrapper-equipe div.left-portrait div.portrait {
  border-radius: 50%;
  overflow: hidden;
  width: 100%;
  padding-bottom: 100%;
  position: relative;
  display: none;
  transform-origin: center;
  transform: scale(0);
  transition: 0.3s ease-out;
}
body .acf-block.slider-equipe div.wrapper-equipe div.left-portrait div.portrait.active {
  display: block;
}
body .acf-block.slider-equipe div.wrapper-equipe div.left-portrait div.portrait.scaleOut {
  transform: scale(1);
}
body .acf-block.slider-equipe div.wrapper-equipe div.left-portrait div.portrait img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .acf-block.slider-equipe div.wrapper-equipe div.right-content {
  flex: 0 0 60%;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width: 767px) {
  body .acf-block.slider-equipe div.wrapper-equipe div.right-content {
    flex: 0 0 100%;
  }
}
body .acf-block.slider-equipe div.wrapper-equipe div.right-content div.swiper-container div.swiper-wrapper div.portrait div.citation p {
  color: #D4A6E5;
  font-size: 25px;
  line-height: 36px;
  font-weight: 600;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  body .acf-block.slider-equipe div.wrapper-equipe div.right-content div.swiper-container div.swiper-wrapper div.portrait div.citation p {
    font-size: 18px;
    line-height: 26px;
  }
}
body .acf-block.slider-equipe div.wrapper-equipe div.right-content div.swiper-container div.swiper-wrapper div.portrait div.footer {
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  align-items: center;
}
body .acf-block.slider-equipe div.wrapper-equipe div.right-content div.swiper-container div.swiper-wrapper div.portrait div.footer div.meta span {
  color: white;
  margin: 0;
  font-size: 16px;
  line-height: 25px;
}
body .acf-block.slider-equipe div.wrapper-equipe div.right-content div.swiper-container div.swiper-wrapper div.portrait div.footer div.meta p {
  color: white;
  font-size: 16px;
  font-style: italic;
  margin: 0;
  line-height: 25px;
}
body .acf-block.slider-equipe div.wrapper-equipe div.right-content div.swiper-progress-bar {
  margin-top: 50px;
  width: 100%;
  height: 2px;
  background: white;
  position: relative;
}
body .acf-block.slider-equipe div.wrapper-equipe div.right-content div.swiper-progress-bar .progress {
  height: inherit;
  left: 0;
  top: 0;
  position: absolute;
  background: #AB25F5;
  z-index: 1;
  transition-timing-function: linear;
}
body .acf-block.slider-equipe div.wrapper-equipe div.right-content div.swiper-navigation {
  display: flex;
  flex-flow: wrap row;
  gap: 10px;
  align-items: center;
  justify-content: flex-end;
  height: 48px;
  margin-top: 30px;
}
body .acf-block.slider-equipe div.wrapper-equipe div.right-content div.swiper-navigation div.swiper-counter {
  color: white;
  font-size: 14px;
  font-weight: 300;
  line-height: 25px;
}
body .acf-block.slider-equipe div.wrapper-equipe div.right-content div.swiper-navigation div.swiper-button-prev {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  background-image: none;
  width: 28px;
  height: 28px;
  align-items: unset;
}
body .acf-block.slider-equipe div.wrapper-equipe div.right-content div.swiper-navigation div.swiper-button-prev:after {
  content: url("data:image/svg+xml,%0A%3Csvg width='28px' height='28px' viewBox='0 0 47 47' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Group' transform='translate(23.483000, 23.483000) scale(-1, 1) translate(-23.483000, -23.483000) translate(-0.000000, 0.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cg id='Group_10818'%3E%3Cpath d='M23.483,46.966 C10.5136972,46.966 0,36.4523028 0,23.483 C0,10.5136972 10.5136972,0 23.483,0 C36.4523028,0 46.966,10.5136972 46.966,23.483 C46.951671,36.4463629 36.4463629,46.951671 23.483,46.966 Z M23.483,1.592 C11.3929345,1.592 1.592,11.3929345 1.592,23.483 C1.592,35.5730655 11.3929345,45.374 23.483,45.374 C35.5730655,45.374 45.374,35.5730655 45.374,23.483 C45.360223,11.3986458 35.5673542,1.60577701 23.483,1.592' id='Path_9326'%3E%3C/path%3E%3Cpolygon id='Path_9327' points='20.581 30.946 19.457 29.818 25.829 23.473 19.447 16.873 20.591 15.766 28.065 23.494'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
body .acf-block.slider-equipe div.wrapper-equipe div.right-content div.swiper-navigation div.swiper-button-next {
  position: relative;
  top: unset;
  left: unset;
  right: unset;
  bottom: unset;
  background-image: none;
  width: 28px;
  height: 28px;
  align-items: unset;
}
body .acf-block.slider-equipe div.wrapper-equipe div.right-content div.swiper-navigation div.swiper-button-next:after {
  content: url("data:image/svg+xml,%0A%3Csvg width='28px' height='28px' viewBox='0 0 47 47' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd'%3E%3Cg id='Group' transform='translate(-0.000000, 0.000000)' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cg id='Group_10818'%3E%3Cpath d='M23.483,46.966 C10.5136972,46.966 0,36.4523028 0,23.483 C0,10.5136972 10.5136972,0 23.483,0 C36.4523028,0 46.966,10.5136972 46.966,23.483 C46.951671,36.4463629 36.4463629,46.951671 23.483,46.966 Z M23.483,1.592 C11.3929345,1.592 1.592,11.3929345 1.592,23.483 C1.592,35.5730655 11.3929345,45.374 23.483,45.374 C35.5730655,45.374 45.374,35.5730655 45.374,23.483 C45.360223,11.3986458 35.5673542,1.60577701 23.483,1.592' id='Path_9326'%3E%3C/path%3E%3Cpolygon id='Path_9327' points='20.581 30.946 19.457 29.818 25.829 23.473 19.447 16.873 20.591 15.766 28.065 23.494'%3E%3C/polygon%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
body .acf-block.archive-projets hr {
  border: 0;
  border-bottom: 5px solid #AB25F5;
  border-radius: 5px;
  margin-bottom: 30px;
}
body .acf-block.archive-projets div.ctaMobileFilter {
  position: fixed;
  bottom: 0;
  left: 10%;
  transform: translate3d(-50%, -50%, 0) scale(0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  z-index: 10;
  display: none;
}
@media screen and (max-width: 980px) {
  body .acf-block.archive-projets div.ctaMobileFilter {
    display: block;
  }
}
body .acf-block.archive-projets div.ctaMobileFilter span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #AB25F5;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.33);
}
body .acf-block.archive-projets div.ctaMobileFilter span svg:first-child {
  display: block;
}
body .acf-block.archive-projets div.ctaMobileFilter span svg:nth-child(2) {
  display: none;
}
body .acf-block.archive-projets div.ctaMobileFilter.active {
  transform: translate3d(-50%, -50%, 0) scale(1);
  opacity: 1;
  visibility: visible;
}
body .acf-block.archive-projets div.ctaMobileFilter.clicked span svg:first-child {
  display: none;
}
body .acf-block.archive-projets div.ctaMobileFilter.clicked span svg:nth-child(2) {
  display: block;
}
body .acf-block.archive-projets div.block-spacer div.filtre-projets {
  margin-bottom: 50px;
  display: inline-flex;
  flex-flow: wrap row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body .acf-block.archive-projets div.block-spacer div.filtre-projets {
    justify-content: center;
  }
}
body .acf-block.archive-projets div.block-spacer div.filtre-projets span {
  cursor: pointer;
  color: white;
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
  text-decoration: underline;
}
body .acf-block.archive-projets div.block-spacer div.filtre-projets span:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
body .acf-block.archive-projets div.block-spacer div.filtre-projets div.select-group {
  position: relative;
}
body .acf-block.archive-projets div.block-spacer div.filtre-projets div.select-group select {
  padding: 15px 80px 15px 30px;
  border-radius: 50px;
  border: 1px solid white;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  color: white;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  body .acf-block.archive-projets div.block-spacer div.filtre-projets div.select-group select {
    padding: 10px 50px 10px 20px;
  }
}
body .acf-block.archive-projets div.block-spacer div.filtre-projets div.select-group select:focus {
  outline: none;
  border: 2px solid #AB25F5;
  transform: scale(1.1);
}
body .acf-block.archive-projets div.block-spacer div.filtre-projets div.select-group select:active {
  outline: none;
  border: 2px solid #AB25F5;
  transform: scale(1.1);
}
body .acf-block.archive-projets div.block-spacer div.filtre-projets div.select-group select option {
  background-color: #16002B;
}
body .acf-block.archive-projets div.block-spacer div.filtre-projets div.select-group:after {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.064' height='6.738' viewBox='0 0 12.064 6.738'%3E%3Cpath id='Path_9339' data-name='Path 9339' d='M-11380.924-21264l5.679,5.678,5.679-5.678' transform='translate(11381.277 21264.354)' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E%0A");
  top: 15px;
  right: 15px;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  body .acf-block.archive-projets div.block-spacer div.filtre-projets div.select-group:after {
    top: 10px;
  }
}
body .acf-block.archive-projets div.block-spacer div.filtre-projets.fixed {
  position: fixed;
  bottom: 0;
  top: unset;
  left: 5%;
  width: 90vw;
  border: 2px solid #AB25F5;
  border-radius: 8px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.33);
  background-color: white;
  padding: 15px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transform: translateY(50px);
  margin-bottom: 55px;
}
body .acf-block.archive-projets div.block-spacer div.filtre-projets.fixed span {
  color: #16002B;
}
body .acf-block.archive-projets div.block-spacer div.filtre-projets.fixed div.select-group select {
  border: 1px solid #16002B;
  color: #16002B;
}
body .acf-block.archive-projets div.block-spacer div.filtre-projets.fixed.opened {
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
@media screen and (min-width: 1024px) {
  body .acf-block.archive-projets div.block-spacer div.filtre-projets.fixed {
    display: none;
    bottom: unset;
    left: 50%;
    top: 100px;
    opacity: 1;
    visibility: visible;
    width: 50vw;
    transform: translateX(-50%);
    padding: 10px;
  }
}
body .acf-block.archive-projets div.grid-projets div.grid-sizer {
  width: calc((100% - 50px) / 2);
}
body .acf-block.archive-projets div.grid-projets div.grid-sizer:nth-child(n) {
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  body .acf-block.archive-projets div.grid-projets div.grid-sizer {
    width: calc((100% - 0px) / 1);
  }
}
body .acf-block.archive-projets div.grid-projets div.gutter-sizer {
  width: 50px;
}
body .acf-block.archive-projets div.grid-projets div.projet {
  width: calc((100% - 50px) / 2);
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  margin-bottom: 100px;
}
body .acf-block.archive-projets div.grid-projets div.projet:nth-child(n) {
  margin-bottom: 50px;
}
body .acf-block.archive-projets div.grid-projets div.projet div.vignette {
  border-radius: 20px;
  overflow: hidden;
  transform: translateY(10px);
}
body .acf-block.archive-projets div.grid-projets div.projet div.vignette div.img-sizer {
  position: relative;
  padding-bottom: 62.5%;
}
body .acf-block.archive-projets div.grid-projets div.projet div.vignette div.img-sizer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
body .acf-block.archive-projets div.grid-projets div.projet div.meta {
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  position: relative;
  padding: 25px;
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
}
body .acf-block.archive-projets div.grid-projets div.projet div.meta div.block {
  flex: 0 0 60%;
}
body .acf-block.archive-projets div.grid-projets div.projet div.meta div.block h3 {
  font-size: 20px;
  line-height: 22px;
  font-weight: bold;
  color: white;
  margin: 0;
  margin-top: 10px;
}
body .acf-block.archive-projets div.grid-projets div.projet div.meta div.block p {
  font-size: 15px;
  line-height: 22px;
  font-weight: normal;
  color: white;
  margin: 0;
  margin-top: 10px;
  min-height: 5em;
}
body .acf-block.archive-projets div.grid-projets div.projet div.meta button {
  flex-shrink: 1;
  text-align: end;
  background: none;
  border: none;
  outline: none;
  padding: 0;
}
body .acf-block.archive-projets div.grid-projets div.projet div.meta button:focus, body .acf-block.archive-projets div.grid-projets div.projet div.meta button:active {
  background: none;
  border: none;
  outline: none;
}
body .acf-block.archive-projets div.grid-projets div.projet div.meta:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 80%;
  transform: translateX(50%) skewX(20deg);
  background-image: linear-gradient(200deg, #9C37EC 0%, rgba(128, 128, 128, 0) 100%);
  opacity: 0.32;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.3s ease-out;
}
body .acf-block.archive-projets div.grid-projets div.projet:hover {
  transform: scale(1.05);
}
body .acf-block.archive-projets div.grid-projets div.projet:hover div.meta:after {
  transform: translateX(60%) skewX(20deg);
}
@media screen and (max-width: 767px) {
  body .acf-block.archive-projets div.grid-projets div.projet {
    width: calc((100% - 0px) / 1);
  }
}
body .acf-block.archive-projets div#noresult {
  margin-top: 100px;
}
body .acf-block.archive-projets div#noresult h3 {
  text-align: center;
  color: white;
  font-size: 24px;
  line-height: 28px;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  body .acf-block.archive-projets div#noresult h3 {
    font-size: 16px;
    line-height: 23px;
  }
}
body .acf-block.archive-posts hr {
  border: 0;
  border-bottom: 5px solid #AB25F5;
  border-radius: 5px;
  margin-bottom: 30px;
}
body .acf-block.archive-posts div.ctaMobileFilter {
  position: fixed;
  bottom: 0;
  left: 10%;
  transform: translate3d(-50%, -50%, 0) scale(0.5);
  opacity: 0;
  visibility: hidden;
  transition: 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  z-index: 10;
  display: none;
}
@media screen and (max-width: 980px) {
  body .acf-block.archive-posts div.ctaMobileFilter {
    display: block;
  }
}
body .acf-block.archive-posts div.ctaMobileFilter span {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: white;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid #AB25F5;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.33);
}
body .acf-block.archive-posts div.ctaMobileFilter span svg:first-child {
  display: block;
}
body .acf-block.archive-posts div.ctaMobileFilter span svg:nth-child(2) {
  display: none;
}
body .acf-block.archive-posts div.ctaMobileFilter.active {
  transform: translate3d(-50%, -50%, 0) scale(1);
  opacity: 1;
  visibility: visible;
}
body .acf-block.archive-posts div.ctaMobileFilter.clicked span svg:first-child {
  display: none;
}
body .acf-block.archive-posts div.ctaMobileFilter.clicked span svg:nth-child(2) {
  display: block;
}
body .acf-block.archive-posts div.block-spacer {
  min-height: 100px;
  padding-bottom: 100px;
  position: relative;
}
@media screen and (max-width: 767px) {
  body .acf-block.archive-posts div.block-spacer {
    min-height: 250px;
  }
}
body .acf-block.archive-posts div.block-spacer div.filtre-posts {
  position: absolute;
  top: 0;
  left: 0;
  margin-bottom: 50px;
  display: inline-flex;
  flex-flow: wrap row;
  align-items: center;
  justify-content: flex-end;
  gap: 20px;
  width: 100%;
}
@media screen and (max-width: 767px) {
  body .acf-block.archive-posts div.block-spacer div.filtre-posts {
    justify-content: center;
  }
}
body .acf-block.archive-posts div.block-spacer div.filtre-posts span {
  cursor: pointer;
  color: white;
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
  text-decoration: underline;
}
body .acf-block.archive-posts div.block-spacer div.filtre-posts span:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
body .acf-block.archive-posts div.block-spacer div.filtre-posts div.select-group {
  position: relative;
}
@media screen and (max-width: 767px) {
  body .acf-block.archive-posts div.block-spacer div.filtre-posts div.select-group {
    flex: 1 0 100%;
  }
}
body .acf-block.archive-posts div.block-spacer div.filtre-posts div.select-group select {
  padding: 15px 80px 15px 30px;
  border-radius: 50px;
  border: 1px solid white;
  background-color: transparent;
  appearance: none;
  -webkit-appearance: none;
  color: white;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  body .acf-block.archive-posts div.block-spacer div.filtre-posts div.select-group select {
    padding: 10px 50px 10px 25px;
    width: 100%;
  }
}
body .acf-block.archive-posts div.block-spacer div.filtre-posts div.select-group select:focus {
  outline: none;
  border: 2px solid #AB25F5;
  transform: scale(1.1);
}
body .acf-block.archive-posts div.block-spacer div.filtre-posts div.select-group select:active {
  outline: none;
  border: 2px solid #AB25F5;
  transform: scale(1.1);
}
body .acf-block.archive-posts div.block-spacer div.filtre-posts div.select-group select option {
  background-color: #16002B;
}
body .acf-block.archive-posts div.block-spacer div.filtre-posts div.select-group:after {
  position: absolute;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12.064' height='6.738' viewBox='0 0 12.064 6.738'%3E%3Cpath id='Path_9339' data-name='Path 9339' d='M-11380.924-21264l5.679,5.678,5.679-5.678' transform='translate(11381.277 21264.354)' fill='none' stroke='%23fff' stroke-width='1'/%3E%3C/svg%3E%0A");
  top: 15px;
  right: 15px;
  transform: translate(-50%, 0);
}
@media screen and (max-width: 767px) {
  body .acf-block.archive-posts div.block-spacer div.filtre-posts div.select-group:after {
    top: 10px;
  }
}
body .acf-block.archive-posts div.block-spacer div.filtre-posts.fixed {
  position: fixed;
  bottom: 0;
  top: unset;
  left: 5%;
  width: 90vw;
  border: 2px solid #AB25F5;
  border-radius: 8px;
  box-shadow: 0 3px 7px rgba(0, 0, 0, 0.33);
  background-color: white;
  padding: 15px;
  visibility: hidden;
  opacity: 0;
  z-index: 1;
  transform: translateY(50px);
  margin-bottom: 55px;
}
body .acf-block.archive-posts div.block-spacer div.filtre-posts.fixed span {
  color: #16002B;
}
body .acf-block.archive-posts div.block-spacer div.filtre-posts.fixed div.select-group select {
  border: 1px solid #16002B;
  color: #16002B;
}
body .acf-block.archive-posts div.block-spacer div.filtre-posts.fixed.opened {
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  visibility: visible;
  opacity: 1;
  transform: translateY(0px);
}
@media screen and (min-width: 1024px) {
  body .acf-block.archive-posts div.block-spacer div.filtre-posts.fixed {
    display: none;
  }
}
body .acf-block.archive-posts div.grid-posts {
  display: flex;
  flex-flow: wrap row;
}
body .acf-block.archive-posts div.grid-posts div.post {
  width: calc((100% - 40px) / 3);
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  margin-bottom: 100px;
  overflow: hidden;
  border-radius: 15px;
  transition: 0.3s ease-out;
  display: flex;
  flex-direction: column;
  height: auto;
  background-color: white;
}
body .acf-block.archive-posts div.grid-posts div.post:nth-child(n) {
  margin-bottom: 50px;
  margin-right: 20px;
}
body .acf-block.archive-posts div.grid-posts div.post:nth-child(3n) {
  margin-right: 0;
}
body .acf-block.archive-posts div.grid-posts div.post:hover {
  transform: translateY(-10px);
}
body .acf-block.archive-posts div.grid-posts div.post:hover div.image-head {
  cursor: pointer;
}
body .acf-block.archive-posts div.grid-posts div.post:hover div.image-head img {
  transform: scale(1.1);
}
body .acf-block.archive-posts div.grid-posts div.post div.image-head {
  position: relative;
  padding-bottom: 62.5%;
  background-color: #E8E8E8;
  overflow: hidden;
}
body .acf-block.archive-posts div.grid-posts div.post div.image-head img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-out;
}
body .acf-block.archive-posts div.grid-posts div.post div.content-body {
  background-color: white;
  padding: 30px 30px 0;
}
body .acf-block.archive-posts div.grid-posts div.post div.content-body h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: bold;
  color: #AB25F5;
  margin: 0;
  margin-bottom: 20px;
  max-height: 56px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: 0.3s ease-out;
}
body .acf-block.archive-posts div.grid-posts div.post div.content-body h4:hover {
  color: #16002B;
}
body .acf-block.archive-posts div.grid-posts div.post div.content-body p {
  font-size: 15px;
  line-height: 23px;
  font-weight: normal;
  margin-bottom: 30px;
  max-height: 92px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
body .acf-block.archive-posts div.grid-posts div.post div.content-body > span {
  font-size: 13px;
  font-weight: normal;
  color: #6B525E;
  display: block;
}
body .acf-block.archive-posts div.grid-posts div.post div.nav-footer {
  flex: 1;
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  margin-top: 10px;
}
body .acf-block.archive-posts div.grid-posts div.post div.nav-footer ul {
  flex: 1 0 100%;
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  flex-flow: wrap row;
  gap: 5px;
  margin-bottom: 0;
  padding: 0 30px 15px;
}
body .acf-block.archive-posts div.grid-posts div.post div.nav-footer ul li {
  padding: 5px 8px;
  border: 1px solid #AB25F5;
  border-radius: 4px;
  font-weight: 500;
  font-size: 11px;
  line-height: 15px;
  text-transform: uppercase;
  color: #AB25F5;
}
body .acf-block.archive-posts div.grid-posts div.post div.nav-footer a {
  display: inline-block;
  padding: 12px 20px 10px;
  background-color: #AB25F5;
  border-radius: 0 0 15px 0;
}
@media screen and (max-width: 980px) {
  body .acf-block.archive-posts div.grid-posts div.post {
    width: calc((100% - 30px) / 2);
  }
  body .acf-block.archive-posts div.grid-posts div.post:nth-child(n) {
    margin-bottom: 30px;
    margin-right: 30px;
  }
  body .acf-block.archive-posts div.grid-posts div.post:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.archive-posts div.grid-posts div.post {
    width: calc((100% - 0px) / 1);
  }
  body .acf-block.archive-posts div.grid-posts div.post:nth-child(n) {
    margin-bottom: 30px;
    margin-right: 0px;
  }
  body .acf-block.archive-posts div.grid-posts div.post:nth-child(1n) {
    margin-right: 0;
  }
}
body .acf-block.archive-posts div.pagination {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
body .acf-block.archive-posts div.pagination a {
  font-size: 21px;
  line-height: 27px;
  color: white;
  font-weight: 600;
  transition: 0.3s ease-out;
}
body .acf-block.archive-posts div.pagination a.next, body .acf-block.archive-posts div.pagination a.prev {
  font-size: 16px;
  line-height: 21px;
  margin: 0 10px;
  display: inline-block;
}
body .acf-block.archive-posts div.pagination a:hover {
  transform: scale(0.9);
  color: #AB25F5;
}
body .acf-block.archive-posts div.pagination span {
  font-size: 21px;
  line-height: 27px;
  color: white;
  font-weight: 600;
}
body .acf-block.archive-posts div.pagination span.current {
  color: #AB25F5;
}
body .acf-block.archive-posts div#noresult {
  margin-top: 100px;
}
body .acf-block.archive-posts div#noresult h3 {
  text-align: center;
  color: white;
  font-size: 24px;
  line-height: 28px;
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  body .acf-block.archive-posts div#noresult h3 {
    font-size: 16px;
    line-height: 23px;
  }
}
body .acf-block.jobboard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
body .acf-block.jobboard div.job_cat {
  background-color: white;
  border-radius: 10px;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.16);
  overflow: hidden;
  transition: 0.3s ease-out;
}
body .acf-block.jobboard div.job_cat:hover {
  transform: scale(1.05);
}
body .acf-block.jobboard div.job_cat .accordion {
  position: relative;
  background-color: white;
  color: #AB25F5;
  font-size: 22px;
  line-height: 29px;
  font-weight: 600;
  cursor: pointer;
  padding: 20px 50px;
  padding-right: 80px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
}
body .acf-block.jobboard div.job_cat .accordion::after {
  position: absolute;
  top: 20px;
  right: 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 29px;
  height: 29px;
  margin-top: 3px;
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20.074' height='20.074' viewBox='0 0 20.074 20.074'%3E%3Cpath id='Path_9168' data-name='Path 9168' d='M8.922,0V8.922H0v2.231H8.922v8.922h2.231V11.152h8.922V8.922H11.152V0Z' transform='translate(0)' fill='%23ab25f5'/%3E%3C/svg%3E%0A");
  color: #777;
  transition: 0.3s ease-out;
}
body .acf-block.jobboard div.job_cat .accordion span {
  color: #16002B;
  display: block;
  font-size: 16px;
  line-height: 27px;
  font-weight: normal;
}
body .acf-block.jobboard div.job_cat .accordion.active::after {
  transform: rotate(45deg);
}
@media screen and (max-width: 767px) {
  body .acf-block.jobboard div.job_cat .accordion {
    font-size: 18px;
    line-height: 24px;
    padding: 20px 30px;
    padding-right: 80px;
  }
}
body .acf-block.jobboard div.job_cat .panel {
  padding: 0 50px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
}
body .acf-block.jobboard div.job_cat .panel div.job {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  padding: 50px 0;
}
body .acf-block.jobboard div.job_cat .panel div.job div.left-title {
  flex-basis: 20%;
}
@media screen and (max-width: 767px) {
  body .acf-block.jobboard div.job_cat .panel div.job div.left-title {
    flex-basis: 100%;
    margin-bottom: 30px;
  }
}
body .acf-block.jobboard div.job_cat .panel div.job div.left-title h4 {
  margin: 0;
  font-size: 22px;
  font-weight: bold;
  line-height: 27px;
}
body .acf-block.jobboard div.job_cat .panel div.job div.right-info {
  flex-basis: 70%;
}
@media screen and (max-width: 767px) {
  body .acf-block.jobboard div.job_cat .panel div.job div.right-info {
    flex-basis: 100%;
  }
}
body .acf-block.jobboard div.job_cat .panel div.job div.right-info div.meta {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  margin-bottom: 30px;
}
body .acf-block.jobboard div.job_cat .panel div.job div.right-info div.meta span {
  flex: 1;
  text-transform: uppercase;
  font-size: 13px;
  line-height: 27px;
}
body .acf-block.jobboard div.job_cat .panel div.job div.right-info div.description a {
  display: inline-block;
  background-color: white;
  background-image: linear-gradient(to left, rgb(171, 37, 245) 0%, rgb(109, 11, 182) 50%, transparent 50%);
  background-position: 0 0;
  background-size: 200% 200%;
  color: transparent;
  background-clip: text;
  -webkit-background-clip: text;
  transition: 0.3s ease-out;
  color: #AB25F5;
  text-decoration: underline;
  text-transform: uppercase;
  text-underline-offset: 2px;
  font-weight: 600;
}
body .acf-block.jobboard div.job_cat .panel div.job div.right-info div.description a:hover {
  transform: scale(1.1);
  background-position: -100% 0;
  color: transparent;
  transition: 0.2s ease-out;
}
@media screen and (max-width: 767px) {
  body .acf-block.jobboard div.job_cat .panel {
    padding: 0px 40px;
  }
}
body .acf-block.jobboard div.job_cat:nth-child(0) {
  transition-delay: 0ms;
  animation-delay: 0ms;
}
body .acf-block.jobboard div.job_cat:nth-child(1) {
  transition-delay: 100ms;
  animation-delay: 100ms;
}
body .acf-block.jobboard div.job_cat:nth-child(2) {
  transition-delay: 200ms;
  animation-delay: 200ms;
}
body .acf-block.jobboard div.job_cat:nth-child(3) {
  transition-delay: 300ms;
  animation-delay: 300ms;
}
body .acf-block.jobboard div.job_cat:nth-child(4) {
  transition-delay: 400ms;
  animation-delay: 400ms;
}
body .acf-block.jobboard div.job_cat:nth-child(5) {
  transition-delay: 500ms;
  animation-delay: 500ms;
}
body .acf-block.jobboard div.job_cat:nth-child(6) {
  transition-delay: 600ms;
  animation-delay: 600ms;
}
body .acf-block.jobboard div.job_cat:nth-child(7) {
  transition-delay: 700ms;
  animation-delay: 700ms;
}
body .acf-block.jobboard div.job_cat:nth-child(8) {
  transition-delay: 800ms;
  animation-delay: 800ms;
}
body .acf-block.jobboard div.job_cat:nth-child(9) {
  transition-delay: 900ms;
  animation-delay: 900ms;
}
body .acf-block.jobboard div.job_cat:nth-child(10) {
  transition-delay: 1000ms;
  animation-delay: 1000ms;
}
body .acf-block.jobboard div.job_cat:nth-child(11) {
  transition-delay: 1100ms;
  animation-delay: 1100ms;
}
body .acf-block.jobboard div.job_cat:nth-child(12) {
  transition-delay: 1200ms;
  animation-delay: 1200ms;
}
body .acf-block.jobboard div.job_cat:nth-child(13) {
  transition-delay: 1300ms;
  animation-delay: 1300ms;
}
body .acf-block.jobboard div.job_cat:nth-child(14) {
  transition-delay: 1400ms;
  animation-delay: 1400ms;
}
body .acf-block.jobboard div.job_cat:nth-child(15) {
  transition-delay: 1500ms;
  animation-delay: 1500ms;
}
body .acf-block.jobboard div.job_cat:nth-child(16) {
  transition-delay: 1600ms;
  animation-delay: 1600ms;
}
body .acf-block.jobboard div.job_cat:nth-child(17) {
  transition-delay: 1700ms;
  animation-delay: 1700ms;
}
body .acf-block.jobboard div.job_cat:nth-child(18) {
  transition-delay: 1800ms;
  animation-delay: 1800ms;
}
body .acf-block.jobboard div.job_cat:nth-child(19) {
  transition-delay: 1900ms;
  animation-delay: 1900ms;
}
body .acf-block.jobboard div.job_cat:nth-child(20) {
  transition-delay: 2000ms;
  animation-delay: 2000ms;
}
body .acf-block.jobboard div.job_cat:nth-child(21) {
  transition-delay: 2100ms;
  animation-delay: 2100ms;
}
body .acf-block.jobboard div.job_cat:nth-child(22) {
  transition-delay: 2200ms;
  animation-delay: 2200ms;
}
body .acf-block.jobboard div.job_cat:nth-child(23) {
  transition-delay: 2300ms;
  animation-delay: 2300ms;
}
body .acf-block.jobboard div.job_cat:nth-child(24) {
  transition-delay: 2400ms;
  animation-delay: 2400ms;
}
body .acf-block.jobboard div.job_cat:nth-child(25) {
  transition-delay: 2500ms;
  animation-delay: 2500ms;
}
body .acf-block.jobboard div.job_cat:nth-child(26) {
  transition-delay: 2600ms;
  animation-delay: 2600ms;
}
body .acf-block.jobboard div.job_cat:nth-child(27) {
  transition-delay: 2700ms;
  animation-delay: 2700ms;
}
body .acf-block.jobboard div.job_cat:nth-child(28) {
  transition-delay: 2800ms;
  animation-delay: 2800ms;
}
body .acf-block.jobboard div.job_cat:nth-child(29) {
  transition-delay: 2900ms;
  animation-delay: 2900ms;
}
body .acf-block.jobboard div.job_cat:nth-child(30) {
  transition-delay: 3000ms;
  animation-delay: 3000ms;
}
body .acf-block.jobboard div.job_cat:nth-child(31) {
  transition-delay: 3100ms;
  animation-delay: 3100ms;
}
body .acf-block.jobboard div.job_cat:nth-child(32) {
  transition-delay: 3200ms;
  animation-delay: 3200ms;
}
body .acf-block.jobboard div.job_cat:nth-child(33) {
  transition-delay: 3300ms;
  animation-delay: 3300ms;
}
body .acf-block.jobboard div.job_cat:nth-child(34) {
  transition-delay: 3400ms;
  animation-delay: 3400ms;
}
body .acf-block.jobboard div.job_cat:nth-child(35) {
  transition-delay: 3500ms;
  animation-delay: 3500ms;
}
body .acf-block.jobboard div.job_cat:nth-child(36) {
  transition-delay: 3600ms;
  animation-delay: 3600ms;
}
body .acf-block.jobboard div.job_cat:nth-child(37) {
  transition-delay: 3700ms;
  animation-delay: 3700ms;
}
body .acf-block.jobboard div.job_cat:nth-child(38) {
  transition-delay: 3800ms;
  animation-delay: 3800ms;
}
body .acf-block.jobboard div.job_cat:nth-child(39) {
  transition-delay: 3900ms;
  animation-delay: 3900ms;
}
body .acf-block.jobboard div.job_cat:nth-child(40) {
  transition-delay: 4000ms;
  animation-delay: 4000ms;
}
body .acf-block.jobboard div.job_cat:nth-child(41) {
  transition-delay: 4100ms;
  animation-delay: 4100ms;
}
body .acf-block.jobboard div.job_cat:nth-child(42) {
  transition-delay: 4200ms;
  animation-delay: 4200ms;
}
body .acf-block.jobboard div.job_cat:nth-child(43) {
  transition-delay: 4300ms;
  animation-delay: 4300ms;
}
body .acf-block.jobboard div.job_cat:nth-child(44) {
  transition-delay: 4400ms;
  animation-delay: 4400ms;
}
body .acf-block.jobboard div.job_cat:nth-child(45) {
  transition-delay: 4500ms;
  animation-delay: 4500ms;
}
body .acf-block.jobboard div.job_cat:nth-child(46) {
  transition-delay: 4600ms;
  animation-delay: 4600ms;
}
body .acf-block.jobboard div.job_cat:nth-child(47) {
  transition-delay: 4700ms;
  animation-delay: 4700ms;
}
body .acf-block.jobboard div.job_cat:nth-child(48) {
  transition-delay: 4800ms;
  animation-delay: 4800ms;
}
body .acf-block.jobboard div.job_cat:nth-child(49) {
  transition-delay: 4900ms;
  animation-delay: 4900ms;
}
body .acf-block.jobboard div.job_cat:nth-child(50) {
  transition-delay: 5000ms;
  animation-delay: 5000ms;
}
body .acf-block.jobboard div.job_cat:nth-child(51) {
  transition-delay: 5100ms;
  animation-delay: 5100ms;
}
body .acf-block.jobboard div.job_cat:nth-child(52) {
  transition-delay: 5200ms;
  animation-delay: 5200ms;
}
body .acf-block.jobboard div.job_cat:nth-child(53) {
  transition-delay: 5300ms;
  animation-delay: 5300ms;
}
body .acf-block.jobboard div.job_cat:nth-child(54) {
  transition-delay: 5400ms;
  animation-delay: 5400ms;
}
body .acf-block.jobboard div.job_cat:nth-child(55) {
  transition-delay: 5500ms;
  animation-delay: 5500ms;
}
body .acf-block.jobboard div.job_cat:nth-child(56) {
  transition-delay: 5600ms;
  animation-delay: 5600ms;
}
body .acf-block.jobboard div.job_cat:nth-child(57) {
  transition-delay: 5700ms;
  animation-delay: 5700ms;
}
body .acf-block.jobboard div.job_cat:nth-child(58) {
  transition-delay: 5800ms;
  animation-delay: 5800ms;
}
body .acf-block.jobboard div.job_cat:nth-child(59) {
  transition-delay: 5900ms;
  animation-delay: 5900ms;
}
body .acf-block.jobboard div.job_cat:nth-child(60) {
  transition-delay: 6000ms;
  animation-delay: 6000ms;
}
body .acf-block.jobboard div.job_cat:nth-child(61) {
  transition-delay: 6100ms;
  animation-delay: 6100ms;
}
body .acf-block.jobboard div.job_cat:nth-child(62) {
  transition-delay: 6200ms;
  animation-delay: 6200ms;
}
body .acf-block.jobboard div.job_cat:nth-child(63) {
  transition-delay: 6300ms;
  animation-delay: 6300ms;
}
body .acf-block.jobboard div.job_cat:nth-child(64) {
  transition-delay: 6400ms;
  animation-delay: 6400ms;
}
body .acf-block.jobboard div.job_cat:nth-child(65) {
  transition-delay: 6500ms;
  animation-delay: 6500ms;
}
body .acf-block.jobboard div.job_cat:nth-child(66) {
  transition-delay: 6600ms;
  animation-delay: 6600ms;
}
body .acf-block.jobboard div.job_cat:nth-child(67) {
  transition-delay: 6700ms;
  animation-delay: 6700ms;
}
body .acf-block.jobboard div.job_cat:nth-child(68) {
  transition-delay: 6800ms;
  animation-delay: 6800ms;
}
body .acf-block.jobboard div.job_cat:nth-child(69) {
  transition-delay: 6900ms;
  animation-delay: 6900ms;
}
body .acf-block.jobboard div.job_cat:nth-child(70) {
  transition-delay: 7000ms;
  animation-delay: 7000ms;
}
body .acf-block.jobboard div.job_cat:nth-child(71) {
  transition-delay: 7100ms;
  animation-delay: 7100ms;
}
body .acf-block.jobboard div.job_cat:nth-child(72) {
  transition-delay: 7200ms;
  animation-delay: 7200ms;
}
body .acf-block.jobboard div.job_cat:nth-child(73) {
  transition-delay: 7300ms;
  animation-delay: 7300ms;
}
body .acf-block.jobboard div.job_cat:nth-child(74) {
  transition-delay: 7400ms;
  animation-delay: 7400ms;
}
body .acf-block.jobboard div.job_cat:nth-child(75) {
  transition-delay: 7500ms;
  animation-delay: 7500ms;
}
body .acf-block.jobboard div.job_cat:nth-child(76) {
  transition-delay: 7600ms;
  animation-delay: 7600ms;
}
body .acf-block.jobboard div.job_cat:nth-child(77) {
  transition-delay: 7700ms;
  animation-delay: 7700ms;
}
body .acf-block.jobboard div.job_cat:nth-child(78) {
  transition-delay: 7800ms;
  animation-delay: 7800ms;
}
body .acf-block.jobboard div.job_cat:nth-child(79) {
  transition-delay: 7900ms;
  animation-delay: 7900ms;
}
body .acf-block.jobboard div.job_cat:nth-child(80) {
  transition-delay: 8000ms;
  animation-delay: 8000ms;
}
body .acf-block.jobboard div.job_cat:nth-child(81) {
  transition-delay: 8100ms;
  animation-delay: 8100ms;
}
body .acf-block.jobboard div.job_cat:nth-child(82) {
  transition-delay: 8200ms;
  animation-delay: 8200ms;
}
body .acf-block.jobboard div.job_cat:nth-child(83) {
  transition-delay: 8300ms;
  animation-delay: 8300ms;
}
body .acf-block.jobboard div.job_cat:nth-child(84) {
  transition-delay: 8400ms;
  animation-delay: 8400ms;
}
body .acf-block.jobboard div.job_cat:nth-child(85) {
  transition-delay: 8500ms;
  animation-delay: 8500ms;
}
body .acf-block.jobboard div.job_cat:nth-child(86) {
  transition-delay: 8600ms;
  animation-delay: 8600ms;
}
body .acf-block.jobboard div.job_cat:nth-child(87) {
  transition-delay: 8700ms;
  animation-delay: 8700ms;
}
body .acf-block.jobboard div.job_cat:nth-child(88) {
  transition-delay: 8800ms;
  animation-delay: 8800ms;
}
body .acf-block.jobboard div.job_cat:nth-child(89) {
  transition-delay: 8900ms;
  animation-delay: 8900ms;
}
body .acf-block.jobboard div.job_cat:nth-child(90) {
  transition-delay: 9000ms;
  animation-delay: 9000ms;
}
body .acf-block.jobboard div.job_cat:nth-child(91) {
  transition-delay: 9100ms;
  animation-delay: 9100ms;
}
body .acf-block.jobboard div.job_cat:nth-child(92) {
  transition-delay: 9200ms;
  animation-delay: 9200ms;
}
body .acf-block.jobboard div.job_cat:nth-child(93) {
  transition-delay: 9300ms;
  animation-delay: 9300ms;
}
body .acf-block.jobboard div.job_cat:nth-child(94) {
  transition-delay: 9400ms;
  animation-delay: 9400ms;
}
body .acf-block.jobboard div.job_cat:nth-child(95) {
  transition-delay: 9500ms;
  animation-delay: 9500ms;
}
body .acf-block.jobboard div.job_cat:nth-child(96) {
  transition-delay: 9600ms;
  animation-delay: 9600ms;
}
body .acf-block.jobboard div.job_cat:nth-child(97) {
  transition-delay: 9700ms;
  animation-delay: 9700ms;
}
body .acf-block.jobboard div.job_cat:nth-child(98) {
  transition-delay: 9800ms;
  animation-delay: 9800ms;
}
body .acf-block.jobboard div.row-spontane {
  max-width: 920px;
  margin: 50px auto 0;
  background-color: #16002B;
  border-radius: 20px 20px;
  padding: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap row;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
body .acf-block.jobboard div.row-spontane:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(25deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(100%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
body .acf-block.jobboard div.row-spontane.active:before {
  transform: skewX(160deg) translateX(-20%);
}
body .acf-block.jobboard div.row-spontane.active:after {
  transform: skewX(160deg) translateX(48%);
}
body .acf-block.jobboard div.row-spontane div.col-100 {
  flex: 0 0 100%;
}
body .acf-block.jobboard div.row-spontane div.col-100 h2 {
  color: #AB25F5;
  font-size: 30px;
  line-height: 35px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  body .acf-block.jobboard div.row-spontane div.col-100 h2 {
    margin-bottom: 30px;
  }
}
body .acf-block.jobboard div.row-spontane div.col-100 div.flex-block {
  display: flex;
  align-items: center;
  flex-flow: wrap row;
  justify-content: space-between;
}
body .acf-block.jobboard div.row-spontane div.col-100 p {
  color: white;
  flex: 0 0 70%;
}
body .acf-block.jobboard div.row-spontane div.col-100 a svg {
  transition: 0.3s ease-out;
}
body .acf-block.jobboard div.row-spontane div.col-100 a:hover svg {
  transform: scale(0.9);
}
@media screen and (max-width: 767px) {
  body .acf-block.jobboard div.row-spontane {
    padding: 30px;
  }
}
body .acf-block.section-projet {
  padding: 50px 0;
  background-color: var(--background);
  overflow: hidden;
}
body .acf-block.section-projet div.spacer {
  padding-bottom: 50px;
}
@media screen and (max-width: 980px) {
  body .acf-block.section-projet div.spacer {
    display: none;
  }
}
body .acf-block.section-projet div.container {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  body .acf-block.section-projet div.container {
    padding: 20px;
  }
}
body .acf-block.section-projet div.container-sm {
  padding: 30px;
}
@media screen and (max-width: 767px) {
  body .acf-block.section-projet div.container-sm {
    padding: 20px;
  }
}
body .acf-block.section-projet.texture-plus:before {
  content: url("data:image/svg+xml,%0A%3Csvg width='705px' height='1371px' viewBox='0 0 705 1371' version='1.1' xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink'%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' opacity='0.288'%3E%3Cg id='Group' fill='%23FFFFFF' fill-rule='nonzero'%3E%3Cg id='Group_827' transform='translate(352.110000, 685.495000) rotate(-90.000000) translate(-352.110000, -685.495000) translate(-333.385000, 333.385000)'%3E%3Crect id='Rectangle_17624' x='0' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17625' x='48.905' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17626' x='193.653' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17627' x='242.558' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17628' x='387.307' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17629' x='436.212' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17630' x='580.96' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17631' x='629.865' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17632' x='774.613' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17633' x='823.518' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17634' x='968.267' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17635' x='1017.172' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17636' x='1161.92' y='48.905' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17637' x='1210.828' y='0' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17638' x='91.699' y='166.275' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17639' x='140.603' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17640' x='285.352' y='166.275' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17641' x='334.257' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17642' x='479.005' y='166.275' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17643' x='527.91' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17644' x='672.659' y='166.275' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17645' x='721.564' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17646' x='866.312' y='166.275' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17647' x='915.217' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17648' x='1059.966' y='166.275' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17649' x='1108.87' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17650' x='1253.619' y='166.275' width='117.371' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17651' x='1302.524' y='117.37' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17652' x='0' y='283.643' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17653' x='48.905' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17654' x='193.653' y='283.646' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17655' x='242.558' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17656' x='387.307' y='283.646' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17657' x='436.212' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17658' x='580.96' y='283.646' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17659' x='629.865' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17660' x='774.613' y='283.646' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17661' x='823.521' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17662' x='968.267' y='283.646' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17663' x='1017.174' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17664' x='1161.92' y='283.646' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17665' x='1210.828' y='234.738' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17666' x='91.699' y='401.016' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17667' x='140.603' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17668' x='285.352' y='401.016' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17669' x='334.257' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17670' x='479.005' y='401.016' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17671' x='527.91' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17672' x='672.659' y='401.016' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17673' x='721.564' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17674' x='866.312' y='401.016' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17675' x='915.217' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17676' x='1059.966' y='401.016' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17677' x='1108.87' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17678' x='1253.619' y='401.014' width='117.371' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17679' x='1302.524' y='352.109' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17680' x='0' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17681' x='48.905' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17682' x='193.653' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17683' x='242.558' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17684' x='387.307' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17685' x='436.212' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17686' x='580.96' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17687' x='629.865' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17688' x='774.613' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17689' x='823.521' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17690' x='968.267' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17691' x='1017.174' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17692' x='1161.92' y='518.384' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17693' x='1210.828' y='469.479' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17694' x='91.699' y='635.755' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17695' x='140.604' y='586.85' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17696' x='285.352' y='635.755' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17697' x='334.254' y='586.85' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17698' x='479.005' y='635.755' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17699' x='527.908' y='586.85' width='19.563' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17700' x='672.659' y='635.755' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17701' x='721.564' y='586.85' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17702' x='866.312' y='635.755' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17703' x='915.217' y='586.85' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17704' x='1059.966' y='635.755' width='117.37' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17705' x='1108.873' y='586.85' width='19.561' height='117.37'%3E%3C/rect%3E%3Crect id='Rectangle_17706' x='1253.619' y='635.755' width='117.371' height='19.561'%3E%3C/rect%3E%3Crect id='Rectangle_17707' x='1302.524' y='586.85' width='19.561' height='117.37'%3E%3C/rect%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  opacity: var(--opacity);
}
body .acf-block.section-projet div.aos-block-right {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
body .acf-block.section-projet div.aos-block-left {
  position: absolute;
  bottom: -5px;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  body .acf-block.section-projet svg.right-separator {
    display: none;
  }
}
body .acf-block.section-projet svg.left-separator {
  transform: rotate(-180deg);
}
@media screen and (max-width: 980px) {
  body .acf-block.section-projet svg.left-separator {
    display: none;
  }
}
body .acf-block.chiffres-projets div.liste-chiffres {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  overflow: hidden;
}
body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre {
  flex: 1;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  position: relative;
  z-index: 1;
  transform: skew(-22deg);
}
@media screen and (max-width: 980px) {
  body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre {
    transform: none;
  }
}
body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre.chiffre {
  flex: 1 0;
  background-color: var(--background);
  padding: 10px 0;
}
@media screen and (max-width: 767px) {
  body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre.chiffre {
    flex: 1;
    transform: translateX(0%);
  }
}
body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre.intro {
  transform: none;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre.intro {
    flex: 1 0 100%;
    padding-left: 0px;
  }
}
body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre > h3 {
  font-size: 40px;
  line-height: 47px;
  font-weight: 900;
  color: #AB25F5;
  margin: 0;
}
@media screen and (max-width: 767px) {
  body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre > h3 {
    font-size: 23px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre div.chiffre {
  flex-basis: 100%;
  text-align: center;
  transform: skew(22deg);
}
@media screen and (max-width: 980px) {
  body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre div.chiffre {
    transform: none;
  }
}
body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre div.chiffre span {
  font-size: 45px;
  line-height: 54px;
  font-weight: 900;
  color: var(--cl);
}
@media screen and (max-width: 767px) {
  body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre div.chiffre span {
    font-size: 25px;
    line-height: 30px;
  }
}
body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre div.chiffre span.number {
  letter-spacing: -2px;
}
body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre div.desc {
  transform: skew(22deg);
  padding: 0 20px;
  flex-basis: 100%;
}
@media screen and (max-width: 980px) {
  body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre div.desc {
    transform: none;
  }
}
body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre div.desc p {
  font-size: 20px;
  line-height: 24px;
  color: var(--cl);
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767px) {
  body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre div.desc p {
    font-size: 13px;
    line-height: 15px;
  }
}
body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre:last-child {
  margin-right: -30px;
  min-height: 128px;
  background-color: var(--background);
}
@media screen and (max-width: 1400px) {
  body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre:last-child {
    height: auto;
  }
  body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre:last-child svg {
    height: 100%;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.chiffres-projets div.liste-chiffres div.col-chiffre:last-child {
    display: none;
  }
}
body .acf-block.etapes-projets div.etape {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 50px;
  gap: 100px;
}
@media screen and (max-width: 980px) {
  body .acf-block.etapes-projets div.etape {
    gap: 50px;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.etapes-projets div.etape {
    gap: 30px;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.etapes-projets div.etape div.left-visuel {
    width: 100%;
  }
}
body .acf-block.etapes-projets div.etape div.left-visuel div.img-sizer img {
  width: 50px;
  height: auto;
}
body .acf-block.etapes-projets div.etape div.right-content {
  flex: 1;
}
@media screen and (max-width: 767px) {
  body .acf-block.etapes-projets div.etape div.right-content {
    width: 100%;
  }
}
body .acf-block.etapes-projets div.etape div.right-content h4 {
  font-size: 45px;
  line-height: 50px;
  color: #AB25F5;
  text-transform: uppercase;
  margin: 0;
}
@media screen and (max-width: 980px) {
  body .acf-block.etapes-projets div.etape div.right-content h4 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.etapes-projets div.etape div.right-content h4 {
    font-size: 26px;
    line-height: 32px;
  }
}
body .acf-block.context-projets {
  height: 100%;
  margin-bottom: -32px;
}
body .acf-block.context-projets div.right-content {
  width: 100%;
  position: relative;
  height: 100%;
}
body .acf-block.context-projets div.right-content div.wrapper-mockup {
  position: relative;
}
body .acf-block.context-projets div.right-content div.wrapper-mockup img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  line-height: 0;
}
@media screen and (max-width: 767px) {
  body .acf-block.context-projets div.right-content {
    flex: 0 0 100%;
  }
}
body .acf-block.mockup-projet {
  height: 100%;
}
body .acf-block.mockup-projet div.wrapper-mockup {
  position: relative;
  height: 100%;
}
body .acf-block.mockup-projet div.wrapper-mockup img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  line-height: 0;
}
body .acf-block.video-full {
  border-radius: 0px;
  overflow: hidden;
  position: relative;
}
body .acf-block.video-full.clicked:before {
  opacity: 0;
  visibility: hidden;
}
body .acf-block.video-full.clicked svg {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0);
}
body .acf-block.video-full:before {
  content: "";
  width: 100%;
  height: 100%;
  background-color: rgba(22, 0, 43, 0.75);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: 0.3s ease-out;
}
body .acf-block.video-full svg {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 2;
  cursor: pointer;
  transition: 0.3s ease-out;
}
body .acf-block.video-full svg > g > g {
  transform-origin: center;
  animation: 8s linear infinite rotate-infinite;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
body .acf-block.video-full svg > g > path {
  animation: heartbeat 2.5s infinite;
  transform-origin: center;
  will-change: transform;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
body .acf-block.video-full div.wrapper-video {
  position: relative;
  padding-bottom: 40%;
}
body .acf-block.video-full div.wrapper-video video {
  position: absolute;
  top: 0;
  left: 0;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
body .acf-block.video-full.autoplay:before {
  content: inherit;
}
body .acf-block.video-full.autoplay svg {
  display: none;
}
body .acf-block.citations-projets {
  overflow: hidden;
  position: relative;
  z-index: 2;
  margin: -300px 0;
}
@media screen and (max-width: 980px) {
  body .acf-block.citations-projets {
    margin: -100px 0;
  }
}
body .acf-block.citations-projets div.citations {
  overflow: hidden;
  background-color: var(--background);
  padding: var(--padding);
  position: relative;
  z-index: 1;
  padding: 20px;
}
@media screen and (max-width: 980px) {
  body .acf-block.citations-projets div.citations {
    margin: 50px 0;
  }
}
body .acf-block.citations-projets div.citations svg.quote_up,
body .acf-block.citations-projets div.citations svg.quote_down {
  position: absolute;
  z-index: -1;
  width: 250px;
  height: auto;
}
@media screen and (max-width: 767px) {
  body .acf-block.citations-projets div.citations svg.quote_up,
  body .acf-block.citations-projets div.citations svg.quote_down {
    width: 100px;
  }
}
body .acf-block.citations-projets div.citations svg.quote_up {
  top: -30px;
  right: 0;
}
body .acf-block.citations-projets div.citations svg.quote_down {
  bottom: -30px;
  left: 0;
}
body .acf-block.citations-projets div.citations div.spacer {
  padding-bottom: 100px;
}
@media screen and (max-width: 980px) {
  body .acf-block.citations-projets div.citations div.spacer {
    padding-bottom: 40px;
  }
}
body .acf-block.citations-projets div.citations div.spacer div.aos-block-right {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}
body .acf-block.citations-projets div.citations div.spacer div.aos-block-left {
  position: absolute;
  bottom: -5px;
  right: 0;
  z-index: 1;
}
@media screen and (max-width: 980px) {
  body .acf-block.citations-projets div.citations div.spacer div.aos-block-left {
    text-align: right;
  }
}
@media screen and (max-width: 980px) {
  body .acf-block.citations-projets div.citations div.spacer svg {
    width: 70%;
    height: auto;
  }
}
@media screen and (max-width: 980px) {
  body .acf-block.citations-projets div.citations div.spacer svg.right-separator {
    transform: translate(2px, -2px);
  }
}
body .acf-block.citations-projets div.citations div.spacer svg.left-separator {
  transform: rotate(-180deg);
}
@media screen and (max-width: 980px) {
  body .acf-block.citations-projets div.citations div.spacer svg.left-separator {
    transform: rotate(-180deg) translate(2px, 2px);
  }
}
body .acf-block.citations-projets div.citations div.description p {
  text-align: center;
  font-size: 30px;
  line-height: 38px;
  font-weight: 500;
  color: white;
  font-style: italic;
}
@media screen and (max-width: 980px) {
  body .acf-block.citations-projets div.citations div.description p {
    font-size: 20px;
    line-height: 25px;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.citations-projets div.citations div.description p {
    font-size: 15px;
    line-height: 20px;
  }
}
body .acf-block.citations-projets div.citations div.bottompart div.meta p {
  text-align: center;
  color: white;
  font-weight: 300;
  text-decoration: underline;
  margin: 0;
}
@media screen and (max-width: 767px) {
  body .acf-block.citations-projets div.citations div.bottompart svg {
    width: 80px;
  }
}
@media screen and (max-width: 1380px) {
  body .acf-block.citations-projets div.container {
    max-width: 1140px;
  }
}
@media screen and (max-width: 980px) {
  body .acf-block.citations-projets div.container {
    max-width: 600px;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.citations-projets div.container {
    max-width: 90vw;
  }
}
body .acf-block.texte-mockup {
  display: flex;
  flex-flow: wrap row;
  align-items: flex-start;
  justify-content: space-between;
  overflow: hidden;
  background-color: white;
}
body .acf-block.texte-mockup.droite div.mockup-content {
  order: 2;
}
body .acf-block.texte-mockup.droite div.text-content {
  order: 1;
}
body .acf-block.texte-mockup.gauche div.mockup-content {
  order: 1;
}
body .acf-block.texte-mockup.gauche div.text-content {
  order: 2;
}
body .acf-block.texte-mockup div.mockup-content {
  width: 45%;
  position: relative;
  z-index: 1;
  overflow: clip;
  pointer-events: none;
}
body .acf-block.texte-mockup div.mockup-content div.wrapper-mockup img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  line-height: 0;
}
body .acf-block.texte-mockup div.mockup-content div.wrapper-mockup div.sizer-mockup {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  overflow-x: hidden;
  z-index: -1;
}
body .acf-block.texte-mockup div.mockup-content div.wrapper-mockup div.sizer-mockup div.mockup {
  overflow: hidden;
}
body .acf-block.texte-mockup div.mockup-content div.wrapper-mockup div.sizer-mockup div.mockup img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 767px) {
  body .acf-block.texte-mockup div.mockup-content {
    width: 100%;
  }
}
body .acf-block.texte-mockup div.text-content {
  width: 48%;
}
@media screen and (max-width: 767px) {
  body .acf-block.texte-mockup div.text-content {
    width: 100%;
  }
}
body .acf-block.introduction-projet {
  position: relative;
  z-index: 1;
}
body .acf-block.introduction-projet section.hero {
  height: 50vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 2;
  overflow: visible;
  min-height: inherit;
}
@media screen and (max-height: 780px) {
  body .acf-block.introduction-projet section.hero {
    height: 40vh;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.introduction-projet section.hero {
    height: 30vh;
  }
}
body .acf-block.introduction-projet section.hero div.logo-centre {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
  width: 150px;
  height: 150px;
}
body .acf-block.introduction-projet section.hero div.logo-centre div.img-sizer {
  position: relative;
  padding-bottom: 100%;
  border-radius: 15px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0px 3px 7px rgba(0, 0, 0, 0.33);
}
body .acf-block.introduction-projet section.hero div.logo-centre div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  padding: 0;
}
body .acf-block.introduction-projet section.hero::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 0, 43, 0.3);
}
body .acf-block.introduction-projet section.titre {
  position: relative;
  z-index: 1;
  height: 38vh;
  display: flex;
  align-items: center;
}
@media screen and (max-height: 780px) {
  body .acf-block.introduction-projet section.titre {
    height: 45vh;
  }
}
body .acf-block.introduction-projet section.titre h1 {
  font-size: 40px;
  line-height: 45px;
  text-align: center;
  margin: 0;
  padding: 30px;
}
body .acf-block.introduction-projet section.titre h1 p {
  margin: 0;
}
@media screen and (max-height: 780px) {
  body .acf-block.introduction-projet section.titre h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media screen and (max-width: 1024px) {
  body .acf-block.introduction-projet section.titre h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.introduction-projet section.titre h1 {
    font-size: 20px;
    line-height: 25px;
  }
}
body .acf-block.introduction-projet section.banner-chiffre {
  position: relative;
  z-index: 1;
  height: 12vh;
}
@media screen and (max-height: 780px) {
  body .acf-block.introduction-projet section.banner-chiffre {
    height: 15vh;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.introduction-projet section.banner-chiffre {
    height: 100%;
  }
}
body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  overflow: hidden;
  height: 100%;
}
body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre {
  flex: 1;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-content: center;
  position: relative;
  z-index: 1;
  transform: skew(-22deg);
  height: 100%;
}
@media screen and (max-width: 980px) {
  body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre {
    transform: none;
  }
}
body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre.chiffre {
  flex: 1 0;
  background-color: var(--background);
}
@media screen and (max-width: 767px) {
  body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre.chiffre {
    flex: 1 0 auto;
    padding: 20px 10px;
    transform: translateX(0%);
  }
}
body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre.intro {
  transform: none;
  padding-left: 30px;
}
@media screen and (max-width: 767px) {
  body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre.intro {
    flex: 1 0 100%;
    padding-left: 0px;
  }
}
body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre > h3 {
  font-size: 40px;
  line-height: 47px;
  font-weight: 900;
  color: #AB25F5;
  margin: 0;
}
@media screen and (max-height: 780px) {
  body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre > h3 {
    font-size: 30px;
    line-height: 37px;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre > h3 {
    font-size: 23px;
    line-height: 26px;
    margin-bottom: 20px;
  }
}
body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre div.chiffre {
  flex-basis: 100%;
  text-align: center;
  transform: skew(22deg);
}
@media screen and (max-width: 980px) {
  body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre div.chiffre {
    transform: none;
  }
}
body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre div.chiffre span {
  font-size: 40px;
  line-height: 54px;
  font-weight: 900;
  color: var(--cl);
}
@media screen and (max-height: 780px) {
  body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre div.chiffre span {
    font-size: 35px;
    line-height: 51px;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre div.chiffre span {
    font-size: 20px;
    line-height: 25px;
  }
}
body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre div.chiffre span.number {
  letter-spacing: -2px;
}
body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre div.desc {
  transform: skew(22deg);
  padding: 0 20px;
  flex-basis: 100%;
}
@media screen and (max-width: 980px) {
  body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre div.desc {
    transform: none;
  }
}
body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre div.desc p {
  font-size: 22px;
  line-height: 26px;
  color: var(--cl);
  text-align: center;
  margin: 0;
}
@media screen and (max-height: 780px) {
  body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre div.desc p {
    font-size: 15px;
    line-height: 17px;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre div.desc p {
    font-size: 15px;
    line-height: 17px;
  }
}
body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre:last-child {
  margin-right: -30px;
  background-color: var(--background);
}
@media screen and (max-width: 1400px) {
  body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre:last-child {
    height: auto;
  }
}
@media screen and (max-width: 767px) {
  body .acf-block.introduction-projet section.banner-chiffre div.liste-chiffres div.col-chiffre:last-child {
    display: none;
  }
}
body .acf-block.contact-equipe {
  display: flex;
  flex-wrap: wrap;
}
body .acf-block.contact-equipe div.left-image {
  flex: 0 0 40%;
}
body .acf-block.contact-equipe div.left-image div.img-sizer {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
body .acf-block.contact-equipe div.left-image div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
body .acf-block.contact-equipe div.right-content {
  background-color: #16002B;
  border-radius: 0 20px 20px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
  padding: 30px 0 30px 50px;
}
body .acf-block.contact-equipe div.right-content h4 {
  margin: 0 0 20px;
  color: white;
}
body .acf-block.contact-equipe div.right-content h4 span {
  color: #AB25F5;
}
body .acf-block.contact-equipe div.right-content p {
  margin-bottom: 30px;
  color: white;
}
body .acf-block.contact-equipe div.right-content div.flex-button div.button-alter-addict {
  background-color: #fff;
}
body .acf-block-preview .acf-block {
  position: relative;
  z-index: 1;
}
body .acf-block-preview .acf-block.section-adm div.aos-block-left {
  transform: translateZ(0) !important;
}
body .acf-block-preview .acf-block.section-adm div.aos-block-right {
  transform: translateZ(0) !important;
}
body .acf-block-preview .acf-block.section-projet div.aos-block-left {
  transform: translateZ(0) !important;
}
body .acf-block-preview .acf-block.section-projet div.aos-block-right {
  transform: translateZ(0) !important;
}
body .acf-block-preview .acf-block.slider-logos {
  padding: 50px 0;
  overflow-x: scroll;
}
body .acf-block-preview .acf-block.slider-logos div.swiper-container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
}
body .acf-block-preview .acf-block.slider-logos div.swiper-container div.swiper-wrapper {
  width: 100%;
  display: flex;
  flex-flow: nowrap row;
  gap: 100px;
}
body .acf-block-preview .acf-block.slider-logos div.swiper-container div.swiper-wrapper div.swiper-slide div.img-sizer {
  padding-bottom: 0;
  width: 150px;
  height: 150px;
}
body .acf-block-preview .acf-block.slider-logos div.swiper-container div.swiper-wrapper div.swiper-slide div.img-sizer img {
  padding: 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}
body .acf-block-preview .acf-block.temoignages div.swiper-container {
  overflow-x: scroll;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
}
body .acf-block-preview .acf-block.temoignages div.swiper-container div.swiper-wrapper {
  width: 100%;
  display: flex;
  flex-flow: nowrap row;
  gap: 100px;
}
body .acf-block-preview .acf-block.temoignages div.swiper-container div.swiper-wrapper div.swiper-slide {
  flex: 1 0 100%;
}
body .acf-block-preview .acf-block.realisations div.swiper-container {
  overflow-x: scroll;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
}
body .acf-block-preview .acf-block.realisations div.swiper-container div.swiper-wrapper {
  width: 100%;
  display: flex;
  flex-flow: nowrap row;
  gap: 100px;
}
body .acf-block-preview .acf-block.realisations div.swiper-container div.swiper-wrapper div.swiper-slide {
  flex: 1 0 100%;
  padding-bottom: 0 !important;
}
body .acf-block-preview .acf-block.realisations div.swiper-button-prev {
  display: none;
}
body .acf-block-preview .acf-block.realisations div.swiper-button-next {
  display: none;
}
body .acf-block-preview .acf-block.slider-navigation {
  padding: 50px 0;
  overflow-x: scroll;
}
body .acf-block-preview .acf-block.slider-navigation div.swiper-container {
  width: 100%;
  max-width: 100%;
  padding-left: 0;
}
body .acf-block-preview .acf-block.slider-navigation div.swiper-container div.swiper-wrapper {
  width: 100%;
  display: flex;
  flex-flow: nowrap row;
  gap: 100px;
}
body .acf-block-preview .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.img-sizer {
  padding-bottom: 0;
  width: 150px;
  height: 150px;
}
body .acf-block-preview .acf-block.slider-navigation div.swiper-container div.swiper-wrapper div.swiper-slide div.img-sizer img {
  padding: 15px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  user-select: none;
}
body .acf-block-preview .acf-block.slider-equipe div.swiper-container {
  overflow-x: scroll;
  width: 100%;
  max-width: 100%;
  padding-left: 0;
}
body .acf-block-preview .acf-block.slider-equipe div.swiper-container div.swiper-wrapper {
  width: 100%;
  display: flex;
  flex-flow: nowrap row;
  gap: 100px;
}
body .acf-block-preview .acf-block.slider-equipe div.swiper-container div.swiper-wrapper div.swiper-slide {
  flex: 1 0 100%;
}
body .acf-block-preview .acf-block.intro {
  position: relative;
  z-index: 2;
}

.button-addict {
  display: inline-block;
  border-radius: 10px;
  padding: 10px 25px;
  text-align: center;
  background-color: #AB25F5;
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s ease-out;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .button-addict {
    padding: 8px 15px;
  }
}
.button-addict:before {
  content: "";
  position: absolute;
  top: 0;
  left: -90%;
  background: linear-gradient(-20deg, rgb(22, 0, 43) 0%, rgb(99, 84, 113) 100%);
  opacity: 0.32;
  width: 110%;
  height: 110%;
  z-index: 1;
  transform: skewX(-20deg);
  transition: 0.3s ease-out;
}
.button-addict:hover {
  transform: scale(0.95);
}
.button-addict:hover:before {
  left: -5%;
}
.button-addict:hover a {
  color: white;
}
.button-addict a {
  position: relative;
  z-index: 2;
  color: white;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .button-addict a {
    font-size: 13px;
  }
}

div.flex-button {
  width: 100%;
  display: flex;
  justify-content: var(--align);
}
@media screen and (max-width: 767px) {
  div.flex-button {
    justify-content: flex-start;
  }
}
div.flex-button .button-alter-addict {
  border-radius: 50px;
  border: 1px solid #AB25F5;
  padding: 15px 30px 15px 15px;
  text-align: center;
  background-color: var(--bg);
  position: relative;
  overflow: hidden;
  z-index: 1;
  transition: 0.3s ease-out;
  display: inline-flex;
  align-items: center;
  gap: 20px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  div.flex-button .button-alter-addict {
    padding: 10px 20px 10px 10px;
  }
}
div.flex-button .button-alter-addict:before {
  content: "";
  position: absolute;
  top: 0;
  left: -5px;
  background: #AB25F5;
  opacity: 1;
  width: 45px;
  height: 110%;
  pointer-events: none;
  z-index: 1;
  transform: skewX(-20deg);
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  div.flex-button .button-alter-addict:before {
    width: 40px;
  }
}
div.flex-button .button-alter-addict span {
  position: relative;
  z-index: 2;
}
div.flex-button .button-alter-addict a {
  position: relative;
  z-index: 2;
  color: var(--text);
  font-size: 15px;
  line-height: 18px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  div.flex-button .button-alter-addict a {
    font-size: 13px;
    line-height: 15px;
  }
}
div.flex-button .button-alter-addict:hover {
  transform: scale(0.9);
}
div.flex-button .button-alter-addict:hover:before {
  width: 400px !important;
}
div.flex-button .button-alter-addict:hover a {
  color: white;
}

.newsletter {
  padding: 50px 100px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: rgb(19, 1, 41);
  margin-bottom: 100px !important;
}
.newsletter:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(255deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(-100%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .newsletter:before {
    width: 80%;
  }
}
.newsletter:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(25deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(100%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
.newsletter.active:before {
  transform: skewX(160deg) translateX(-20%);
}
@media screen and (max-width: 767px) {
  .newsletter.active:before {
    transform: skewX(160deg) translateX(-40%);
  }
}
.newsletter.active:after {
  transform: skewX(160deg) translateX(48%);
}
.newsletter h2 {
  font-size: 30px;
  line-height: 30px;
  font-weight: bold;
  color: white;
  margin: 0;
  margin-bottom: 20px;
}
.newsletter div.wrapper-newsletter {
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
  justify-content: space-between;
}
.newsletter div.wrapper-newsletter div.left-text {
  flex-basis: 38%;
}
@media screen and (max-width: 767px) {
  .newsletter div.wrapper-newsletter div.left-text {
    flex-basis: 100%;
  }
}
.newsletter div.wrapper-newsletter div.left-text p {
  font-size: 16px;
  line-height: 25px;
  font-weight: 400;
  color: white;
  margin: 0;
}
.newsletter div.wrapper-newsletter div.right-email {
  flex-basis: 50%;
}
@media screen and (max-width: 767px) {
  .newsletter div.wrapper-newsletter div.right-email {
    flex-basis: 100%;
    margin-top: 30px;
  }
}
.newsletter div.wrapper-newsletter div.right-email div.flex-block {
  display: flex;
  flex-flow: wrap row;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .newsletter div.wrapper-newsletter div.right-email div.flex-block {
    gap: 10px;
  }
}
.newsletter div.wrapper-newsletter div.right-email form label {
  flex: 2;
  color: white;
  font-size: 12px;
  line-height: 15px;
}
.newsletter div.wrapper-newsletter div.right-email form label span .wpcf7-list-item {
  margin: 0;
}
.newsletter div.wrapper-newsletter div.right-email form label span input[type=email] {
  width: 100%;
  padding: 15px 25px;
  border: 0;
  border-radius: 5px;
  transition: 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  transform-origin: center center;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 25px;
}
.newsletter div.wrapper-newsletter div.right-email form label span input[type=email]:focus {
  border: 2px solid #AB25F5;
  outline: none;
  transform: scale(1.05);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25);
}
.newsletter div.wrapper-newsletter div.right-email form label span input[type=email]:active {
  border: 2px solid #AB25F5;
  outline: none;
}
.newsletter div.wrapper-newsletter div.right-email form div.submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  text-align: end;
}
.newsletter div.wrapper-newsletter div.right-email form button[type=submit] {
  background-color: transparent;
  border: none;
  padding: 0;
  transition: 0.3s ease-out;
  margin-top: 0;
}
.newsletter div.wrapper-newsletter div.right-email form button[type=submit]:focus {
  background-color: transparent;
}
.newsletter div.wrapper-newsletter div.right-email form button[type=submit]:active {
  background-color: transparent;
}
.newsletter div.wrapper-newsletter div.right-email form button[type=submit]:hover {
  transform: scale(0.9);
}
@media screen and (max-width: 767px) {
  .newsletter {
    padding: 50px;
    border-radius: 0;
  }
}

article.projet ul li {
  line-height: 25px;
}
article.projet .hero {
  overflow: hidden;
  min-height: 50vh;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
}
article.projet .hero:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(22, 0, 43, 0.33);
}
article.projet .catch-phrase h1 {
  font-size: 40px;
  line-height: 50px;
  color: #AB25F5;
  text-transform: uppercase;
  margin: 0;
  margin-bottom: 10px;
}
@media screen and (max-width: 980px) {
  article.projet .catch-phrase h1 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media screen and (max-width: 767px) {
  article.projet .catch-phrase h1 {
    font-size: 26px;
    line-height: 35px;
  }
}
article.projet .catch-phrase > p {
  font-size: 21px;
  line-height: 28px;
}
@media screen and (max-width: 767px) {
  article.projet .catch-phrase > p {
    font-size: 16px;
    line-height: 23px;
  }
}
article.projet .catch-phrase .catch > * {
  font-size: 30px;
  line-height: 40px;
  font-weight: 600;
  margin: 0;
}
@media screen and (max-width: 980px) {
  article.projet .catch-phrase .catch > * {
    font-size: 21px;
    line-height: 32px;
  }
}
@media screen and (max-width: 767px) {
  article.projet .catch-phrase .catch > * {
    font-size: 18px;
    line-height: 24px;
  }
}
article.projet .citation p {
  color: white;
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 980px) {
  article.projet .citation p {
    font-size: 25px;
    line-height: 35px;
  }
}
@media screen and (max-width: 767px) {
  article.projet .citation p {
    font-size: 21px;
    line-height: 31px;
  }
}
article.projet .citation span {
  font-size: 15px;
  line-height: 20px;
  font-weight: normal;
  color: white;
}
article.projet .resume div.block-lottie {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  article.projet .resume div.block-lottie {
    gap: 20px;
  }
}
@media screen and (max-width: 767px) {
  article.projet .resume div.block-lottie div.left-lottie {
    flex: 1 0 100%;
  }
}
article.projet .resume div.block-lottie div.right-content {
  flex: 0 0 80%;
}
@media screen and (max-width: 767px) {
  article.projet .resume div.block-lottie div.right-content {
    flex: 1 0 100%;
    width: 100%;
  }
}
article.projet .resume div.block-lottie div.right-content h2 {
  font-size: 45px;
  line-height: 50px;
  text-transform: uppercase;
  color: #AB25F5;
  margin-bottom: 20px;
}
@media screen and (max-width: 980px) {
  article.projet .resume div.block-lottie div.right-content h2 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media screen and (max-width: 767px) {
  article.projet .resume div.block-lottie div.right-content h2 {
    font-size: 26px;
    line-height: 35px;
  }
}
article.projet .resume div.block-lottie div.right-content figure {
  max-width: 100%;
}
article.projet .resume div.block-lottie:last-child {
  margin-bottom: 0;
}
article.projet .resultats div.head {
  display: flex;
  flex-flow: wrap row;
  justify-content: center;
}
article.projet .resultats div.head h2 {
  color: white;
  flex: 0 0 100%;
  text-align: center;
  margin-top: 10px;
}
article.projet .resultats div.acf-block.chiffres {
  margin-top: 100px;
}
article.projet .resultats div.acf-block.chiffres div.liste-chiffres div.col-chiffre {
  width: calc((100% - 100px) / 3);
}
article.projet .resultats div.acf-block.chiffres div.liste-chiffres div.col-chiffre:nth-child(n) {
  margin-bottom: 50px;
  margin-right: 50px;
}
article.projet .resultats div.acf-block.chiffres div.liste-chiffres div.col-chiffre:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 980px) {
  article.projet .resultats div.acf-block.chiffres div.liste-chiffres div.col-chiffre {
    width: calc((100% - 30px) / 2);
  }
  article.projet .resultats div.acf-block.chiffres div.liste-chiffres div.col-chiffre:nth-child(n) {
    margin-bottom: 100px;
    margin-right: 30px;
  }
  article.projet .resultats div.acf-block.chiffres div.liste-chiffres div.col-chiffre:nth-child(2n) {
    margin-right: 0;
  }
}
@media screen and (max-width: 767px) {
  article.projet .resultats div.acf-block.chiffres div.liste-chiffres div.col-chiffre {
    width: calc((100% - 0px) / 1);
  }
  article.projet .resultats div.acf-block.chiffres div.liste-chiffres div.col-chiffre:nth-child(n) {
    margin-bottom: 50px;
    margin-right: 0px;
  }
  article.projet .resultats div.acf-block.chiffres div.liste-chiffres div.col-chiffre:nth-child(1n) {
    margin-right: 0;
  }
}
article.projet .resultats div.acf-block.chiffres div.liste-chiffres div.col-chiffre div.chiffre span {
  color: white;
}
article.projet .resultats div.acf-block.chiffres div.liste-chiffres div.col-chiffre div.desc p {
  color: white;
}
article.projet .reco div.row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
article.projet .reco div.row div.col-50 {
  flex: 0 0 48%;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}
@media screen and (max-width: 767px) {
  article.projet .reco div.row div.col-50 {
    flex: 0 0 100%;
  }
}
article.projet .reco div.row div.col-50 h2 {
  flex: 0 0 100%;
}
article.projet .reco div.row div.col-50 h2 span {
  color: #AB25F5;
}
@media screen and (max-width: 767px) {
  article.projet .reco div.row div.col-50 h2 {
    margin-bottom: 30px;
  }
}
article.projet .reco div.row div.recommandations {
  margin-top: 100px;
  width: 100%;
}
article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide {
  height: auto;
  cursor: pointer;
  transition: 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  background-color: #16002B;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 20px;
}
article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide div.vignette {
  border-radius: 20px 20px 0 20px;
  overflow: hidden;
}
article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide div.vignette div.img-sizer {
  position: relative;
  padding-bottom: 62.5%;
}
article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide div.vignette div.img-sizer img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}
article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide div.meta {
  overflow: hidden;
  border-radius: 0 0 20px 20px;
  position: relative;
  padding: 25px;
  display: flex;
  flex-flow: wrap row;
  justify-content: space-between;
  background-color: #16002B;
}
article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide div.meta div.block {
  flex: 0 0 80%;
}
article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide div.meta div.block h3 {
  font-size: 20px;
  line-height: 22px;
  font-weight: bold;
  color: white;
  margin: 0;
  margin-top: 10px;
}
article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide div.meta div.block p {
  font-size: 15px;
  line-height: 22px;
  font-weight: normal;
  color: white;
  margin: 0;
  margin-top: 10px;
}
article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide div.meta button {
  flex-shrink: 1;
  text-align: end;
  background: none;
  border: none;
  outline: none;
  padding: 0;
}
article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide div.meta button:focus, article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide div.meta button:active {
  background: none;
  border: none;
  outline: none;
}
article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide div.meta:after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 80%;
  transform: translateX(50%) skewX(20deg);
  background-image: linear-gradient(200deg, #9C37EC 0%, rgba(128, 128, 128, 0) 100%);
  opacity: 0.32;
  width: 100%;
  height: 100%;
  z-index: -1;
  transition: 0.3s ease-out;
}
article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide:hover {
  transform: scale(1.05);
}
article.projet .reco div.row div.recommandations div.swiper-recommandations div.swiper-wrapper div.swiper-slide:hover div.meta:after {
  transform: translateX(60%) skewX(20deg);
}

main#archive-ressource {
  background-color: var(--wp--preset--color--fond-adm);
}
main#archive-ressource div#introduction {
  z-index: 1;
  overflow: hidden;
  background: rgb(19, 1, 41);
  padding: 200px 0 100px;
  border-radius: 0 0 50px 50px;
}
@media screen and (max-width: 767px) {
  main#archive-ressource div#introduction {
    padding: 100px 0 50px;
  }
}
main#archive-ressource div#introduction:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(257deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(-20%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  main#archive-ressource div#introduction:before {
    width: 80%;
  }
}
main#archive-ressource div#introduction:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(35deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(48%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
main#archive-ressource div#introduction div.container h3 {
  text-align: center;
  color: white;
  text-transform: uppercase;
}
main#archive-ressource div#introduction div.container h1 {
  text-align: center;
  color: white;
  font-size: 40px;
  line-height: 47px;
  font-weight: 900;
}
main#archive-ressource div#introduction div.container h1 span {
  color: var(--wp--preset--color--violet-adm);
}
@media screen and (max-width: 1024px) {
  main#archive-ressource div#introduction div.container h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media screen and (max-width: 767px) {
  main#archive-ressource div#introduction div.container h1 {
    font-size: 24px;
    line-height: 30px;
  }
}
main#archive-ressource div#wrapper-ressources div.container div.filter-bar {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
@media screen and (max-width: 767px) {
  main#archive-ressource div#wrapper-ressources div.container div.filter-bar {
    margin: 50px 0 30px;
  }
}
main#archive-ressource div#wrapper-ressources div.container div.filter-bar ul {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
  list-style: none;
  padding: 0;
  border: 1px solid #AB25F5;
  background-color: white;
  border-radius: 50px;
  overflow: hidden;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  main#archive-ressource div#wrapper-ressources div.container div.filter-bar ul {
    display: none;
  }
}
main#archive-ressource div#wrapper-ressources div.container div.filter-bar ul span {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  background-color: #AB25F5;
  border-radius: 50px;
  z-index: -1;
  height: 100%;
  width: 100px;
  transition: 0.3s ease-out;
  pointer-events: none;
}
main#archive-ressource div#wrapper-ressources div.container div.filter-bar ul li {
  padding: 15px 30px;
  cursor: pointer;
  color: #AB25F5;
  font-size: 15px;
  font-weight: 500;
}
main#archive-ressource div#wrapper-ressources div.container div.filter-bar ul li.active {
  color: white;
}
main#archive-ressource div#wrapper-ressources div.container div.filter-bar div.filter-mobile {
  display: none;
  width: 100%;
}
@media screen and (max-width: 767px) {
  main#archive-ressource div#wrapper-ressources div.container div.filter-bar div.filter-mobile {
    display: block;
  }
}
main#archive-ressource div#wrapper-ressources div.container div.filter-bar div.filter-mobile label {
  margin-bottom: 20px;
  font-weight: 600;
}
main#archive-ressource div#wrapper-ressources div.container div.filter-bar div.filter-mobile select {
  appearance: none;
  padding: 0;
  margin: 0;
  border-radius: 5px;
  border: 1px solid #AB25F5;
  background-color: white;
  padding: 10px 40px 10px 20px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='15.746' height='8.58' viewBox='0 0 15.746 8.58'%3E%3Cpath id='Path_16470' data-name='Path 16470' d='M2772.02-16617.705l7.519,7.52,7.52-7.52' transform='translate(-2771.666 16618.059)' fill='none' stroke='%23003d1f' stroke-width='1'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  main#archive-ressource div#wrapper-ressources div.container div.ressources {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  main#archive-ressource div#wrapper-ressources div.container div.ressources {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article {
  border-radius: 15px;
  overflow: hidden;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  opacity: 1;
  display: flex;
  flex-flow: column wrap;
  background-color: white;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article.scale-up {
  animation: scaleUp 0.3s ease-out forwards;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article.scale-down {
  animation: scaleDown 0.3s ease-out forwards;
  animation-fill-mode: forwards; /* Keep the final state after animation */
  display: none !important; /* Ensure it is hidden */
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article:hover {
  transform: translateY(-10px);
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article:hover div.image-head {
  cursor: pointer;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article:hover div.image-head img {
  transform: scale(1.1);
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article[data-type_ressource=video] div.nav-footer {
  justify-content: flex-start;
  padding: 0 30px 20px;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article div.image-head {
  position: relative;
  padding-bottom: 62.5%;
  background-color: #E8E8E8;
  overflow: hidden;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article div.image-head img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-out;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article div.meta {
  padding: 0 30px;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article div.meta span {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--wp--preset--color--violet-adm);
  color: white;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  border-radius: 0 0 3px 3px;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article div.content-body {
  background-color: white;
  padding: 20px 30px 0;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article div.content-body h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: bold;
  color: #16002B;
  margin: 0;
  margin-bottom: 20px;
  max-height: 56px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: 0.3s ease-out;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article div.content-body h4:hover {
  color: #16002B;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article div.content-body p {
  font-size: 15px;
  line-height: 23px;
  font-weight: normal;
  margin-bottom: 30px;
  max-height: 92px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article div.content-body > span {
  font-size: 13px;
  font-weight: normal;
  color: #6B525E;
  display: block;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article div.nav-footer {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  margin-top: auto;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article div.nav-footer a.button {
  padding: 10px 20px;
  background-color: #AB25F5;
  border-radius: 50px;
  color: white;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
main#archive-ressource div#wrapper-ressources div.container div.ressources article div.nav-footer a:not(.button) {
  display: inline-block;
  padding: 12px 20px 10px;
  background-color: #AB25F5;
  border-radius: 0 0 15px 0;
}
@keyframes scaleUp {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}
main#archive-ressource div#wrapper-ressources div.container div.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px 0;
  gap: 20px;
}
main#archive-ressource div#wrapper-ressources div.container div.pagination span.button {
  color: #AB25F5;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  cursor: pointer;
}
main#archive-ressource div#wrapper-ressources div.container div.pagination span.button:hover {
  color: #16002B;
}
main#archive-ressource div#wrapper-ressources div.container div.pagination ul {
  display: flex;
  gap: 10px;
  list-style: none;
  padding: 0;
}
main#archive-ressource div#wrapper-ressources div.container div.pagination ul li {
  font-size: 21px;
  line-height: 24px;
  color: #D4A6E5;
  font-weight: 700;
}
main#archive-ressource div#wrapper-ressources div.container div.pagination ul li:not(.active) {
  cursor: pointer;
}
main#archive-ressource div#wrapper-ressources div.container div.pagination ul li:not(.active):hover {
  color: #16002B;
}
main#archive-ressource div#wrapper-ressources div.container div.pagination ul li.active {
  color: #AB25F5;
}

main#single-ressource article.ressource div#introduction {
  z-index: 1;
  overflow: hidden;
  background: rgb(19, 1, 41);
  padding: 200px 0 0;
}
@media screen and (max-width: 767px) {
  main#single-ressource article.ressource div#introduction {
    padding: 100px 0 50px;
  }
}
main#single-ressource article.ressource div#introduction:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(257deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(-20%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  main#single-ressource article.ressource div#introduction:before {
    width: 80%;
  }
}
main#single-ressource article.ressource div#introduction:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(35deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(48%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
main#single-ressource article.ressource div#introduction div.container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding-bottom: 0;
}
main#single-ressource article.ressource div#introduction div.container div.column:first-child {
  flex: 0 0 55%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  main#single-ressource article.ressource div#introduction div.container div.column:first-child {
    flex: 1 0 100%;
    padding-bottom: 30px;
  }
}
main#single-ressource article.ressource div#introduction div.container div.column:last-child {
  flex: 0 0 35%;
}
@media screen and (max-width: 1024px) {
  main#single-ressource article.ressource div#introduction div.container div.column:last-child {
    flex: 1 0 100%;
  }
}
main#single-ressource article.ressource div#introduction div.container div.column:last-child div.img-sizer {
  position: relative;
  padding-bottom: 75%;
  overflow: hidden;
  border-radius: 10px 10px 0 0;
}
main#single-ressource article.ressource div#introduction div.container div.column:last-child div.img-sizer img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 1024px) {
  main#single-ressource article.ressource div#introduction div.container div.column:last-child div.img-sizer {
    padding-bottom: 62.5%;
  }
}
main#single-ressource article.ressource div#introduction div.container h1 {
  color: white;
  font-size: 40px;
  line-height: 47px;
  font-weight: 900;
}
main#single-ressource article.ressource div#introduction div.container h1 span {
  color: var(--wp--preset--color--violet-adm);
}
@media screen and (max-width: 1024px) {
  main#single-ressource article.ressource div#introduction div.container h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media screen and (max-width: 767px) {
  main#single-ressource article.ressource div#introduction div.container h1 {
    font-size: 24px;
    line-height: 30px;
  }
}
main#single-ressource article.ressource div#content {
  background-color: #EEEDFF;
  padding-bottom: 100px;
}
@media screen and (max-width: 767px) {
  main#single-ressource article.ressource div#content {
    padding-bottom: 50px;
  }
}
main#single-ressource article.ressource div#content div.container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  padding-top: 0;
}
main#single-ressource article.ressource div#content div.container div.column:first-child {
  flex: 0 0 55%;
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  main#single-ressource article.ressource div#content div.container div.column:first-child {
    flex: 1 0 100%;
    padding-bottom: 30px;
  }
}
main#single-ressource article.ressource div#content div.container div.column:last-child {
  flex: 0 0 35%;
}
@media screen and (max-width: 1024px) {
  main#single-ressource article.ressource div#content div.container div.column:last-child {
    flex: 1 0 100%;
  }
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form {
  padding: 30px 50px 50px;
  background-color: white;
  border-radius: 0 0 10px 10px;
}
@media screen and (max-width: 1024px) {
  main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form {
    border-radius: 10px;
  }
}
@media screen and (max-width: 767px) {
  main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form {
    padding: 30px;
  }
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form h4 {
  margin: 0 0 30px;
  font-size: 25px;
  line-height: 700;
  line-height: 32px;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form h4 span {
  color: #AB25F5;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row {
  display: flex;
  flex-flow: wrap row;
  align-items: center;
  gap: 10px;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group.col-100 {
  flex: 1 0 100%;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group span {
  width: 100%;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group input[type=text],
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group input[type=email],
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group select,
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group textarea {
  background-color: transparent;
  border: 1px solid #AB25F5;
  border-radius: 5px;
  padding: 15px 25px;
  width: 100%;
  font-size: 15px;
  line-height: 18px;
  font-weight: bold;
  color: #64625F;
  transition: 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  transform-origin: center center;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group input[type=text]:focus,
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group input[type=email]:focus,
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group select:focus,
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group textarea:focus {
  border: 2px solid #AB25F5;
  outline: none;
  transform: scale(1.05);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25);
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group input[type=text]:active,
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group input[type=email]:active,
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group select:active,
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group textarea:active {
  border: 2px solid #AB25F5;
  outline: none;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form div.input-row div.input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.805' height='6.609' viewBox='0 0 11.805 6.609'%3E%3Cpath id='Path_6430' data-name='Path 6430' d='M778.951,41l5.549,5.549L790.049,41' transform='translate(-778.598 -40.646)' fill='none' stroke='%23ab25f5' stroke-width='1'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form p {
  margin: 20px 0 30px;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form a {
  display: none;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form button[type=submit] {
  width: 100%;
  text-align: center;
  border: 0;
  background-color: #AB25F5;
  padding: 20px 40px;
  border-radius: 6px;
  color: white;
  font-size: 16px;
  line-height: 5px;
  font-weight: 550;
  transition: 0.3s ease-out;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form button[type=submit]:hover {
  transform: scale(0.95);
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form button[type=submit].loading {
  opacity: 0.3;
  pointer-events: none;
}
@media screen and (max-width: 767px) {
  main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form button[type=submit] {
    padding: 20px;
  }
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form span.message {
  text-align: center;
  font-size: 16px;
  line-height: 25px;
  margin-top: 10px;
  font-weight: 550;
  color: #AB25F5;
  display: none;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form span.message.visible {
  display: block;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form span.error {
  text-align: center;
  font-size: 16px;
  line-height: 25px;
  margin-top: 10px;
  font-weight: 550;
  color: rgb(219, 44, 44);
  display: none;
}
main#single-ressource article.ressource div#content div.container div.column:last-child div.wrapper-form form span.error.visible {
  display: block;
}

main#archive-glossaire div#introduction {
  z-index: 1;
  overflow: hidden;
  background: rgb(19, 1, 41);
  padding: 200px 0 100px;
}
@media screen and (max-width: 767px) {
  main#archive-glossaire div#introduction {
    padding: 100px 0 50px;
  }
}
main#archive-glossaire div#introduction:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(257deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(-20%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  main#archive-glossaire div#introduction:before {
    width: 80%;
  }
}
main#archive-glossaire div#introduction:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(35deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(48%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
main#archive-glossaire div#introduction div.container h1 {
  text-align: center;
  color: white;
}
main#archive-glossaire div#introduction div.container h1 span {
  color: var(--wp--preset--color--violet-adm);
}
main#archive-glossaire div#wrapper-glossaire {
  padding-bottom: 100px;
}
main#archive-glossaire div#wrapper-glossaire div.container div.glossary-filter {
  margin-bottom: 30px;
}
main#archive-glossaire div#wrapper-glossaire div.container div.glossary-filter div.glossary-filter-nav {
  display: flex;
  align-items: center;
  gap: 10px;
  overflow-x: scroll;
  padding-bottom: 20px;
  /* For Firefox (Thin scrollbar support) */
}
main#archive-glossaire div#wrapper-glossaire div.container div.glossary-filter div.glossary-filter-nav::-webkit-scrollbar {
  height: 2px; /* Horizontal scrollbar height */
}
main#archive-glossaire div#wrapper-glossaire div.container div.glossary-filter div.glossary-filter-nav::-webkit-scrollbar-track {
  background: #D4A6E5; /* Background of the scrollbar track */
}
main#archive-glossaire div#wrapper-glossaire div.container div.glossary-filter div.glossary-filter-nav::-webkit-scrollbar-thumb {
  background: #AB25F5; /* Scrollbar bar color */
  border-radius: 0px; /* Optional: round corners */
}
main#archive-glossaire div#wrapper-glossaire div.container div.glossary-filter div.glossary-filter-nav::-webkit-scrollbar-thumb:hover {
  background: #9320D1; /* Slightly darker on hover */
}
main#archive-glossaire div#wrapper-glossaire div.container div.glossary-filter div.glossary-filter-nav * {
  scrollbar-width: thin;
  scrollbar-color: #AB25F5 #D4A6E5;
}
main#archive-glossaire div#wrapper-glossaire div.container div.glossary-filter div.glossary-filter-nav a {
  flex: 0 0 auto;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  opacity: 0.35;
  background-color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #16002B;
  font-size: 16px;
  font-weight: 700;
}
main#archive-glossaire div#wrapper-glossaire div.container div.glossary-filter div.glossary-filter-nav a.active {
  background-color: #EEEDFF;
  opacity: 1;
  transition: 0.3s ease-out;
}
main#archive-glossaire div#wrapper-glossaire div.container div.glossary-filter div.glossary-filter-nav a.active:hover {
  background-color: #AB25F5;
  color: white;
}
main#archive-glossaire div#wrapper-glossaire div.container div.glossary-filter div.glossary-filter-nav a.highlighted {
  background-color: #AB25F5;
  color: white;
}
main#archive-glossaire div#wrapper-glossaire div.container div.glossary-filter div.glossary-navigation {
  display: flex;
  justify-content: flex-end;
  gap: 30px;
  align-items: center;
  margin-top: 20px;
}
main#archive-glossaire div#wrapper-glossaire div.container div.glossary-filter div.glossary-navigation span {
  cursor: pointer;
}
main#archive-glossaire div#wrapper-glossaire div.container-sm div.glossaire div.glossary-section {
  border-top: 3px solid #EEEDFF;
  margin-top: 80px;
}
main#archive-glossaire div#wrapper-glossaire div.container-sm div.glossaire div.glossary-section:first-child {
  margin-top: 0;
}
main#archive-glossaire div#wrapper-glossaire div.container-sm div.glossaire div.glossary-section h2 {
  font-size: 70px;
  line-height: 85px;
  color: #AB25F5;
  margin: 0 0 20px;
}
main#archive-glossaire div#wrapper-glossaire div.container-sm div.glossaire div.glossary-section ul {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px 100px;
  padding: 0;
}
@media screen and (max-width: 767px) {
  main#archive-glossaire div#wrapper-glossaire div.container-sm div.glossaire div.glossary-section ul {
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 30px;
  }
}
main#archive-glossaire div#wrapper-glossaire div.container-sm div.glossaire div.glossary-section ul li {
  border-top: 1px solid #EEEDFF;
  padding-top: 10px;
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
}
main#archive-glossaire div#wrapper-glossaire div.container-sm div.glossaire div.glossary-section ul li::before {
  content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7.379' height='12.637' viewBox='0 0 7.379 12.637'%3E%3Cpath id='Path_16357' data-name='Path 16357' d='M17338.908-20650.8l5.787,5.787-5.787,5.789' transform='translate(-17338.377 20651.332)' fill='none' stroke='%23ab25f5' stroke-width='1.5'/%3E%3C/svg%3E%0A");
  display: block;
}
main#archive-glossaire div#wrapper-glossaire div.container-sm div.glossaire div.glossary-section ul li a {
  font-size: 25px;
  line-height: 32px;
  font-weight: 700;
}
main#archive-glossaire div#wrapper-glossaire div.container-sm div.glossaire div.glossary-section ul li a:hover {
  color: #AB25F5;
}

main#single-glossaire {
  background-color: #EEEDFF;
}
main#single-glossaire article.glossaire div#introduction {
  z-index: 1;
  overflow: hidden;
  background: rgb(19, 1, 41);
  padding: 200px 0 100px;
  border-radius: 0 0 50px 50px;
}
@media screen and (max-width: 767px) {
  main#single-glossaire article.glossaire div#introduction {
    padding: 100px 0 50px;
  }
}
main#single-glossaire article.glossaire div#introduction:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(257deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(-20%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  main#single-glossaire article.glossaire div#introduction:before {
    width: 80%;
  }
}
main#single-glossaire article.glossaire div#introduction:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(35deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(48%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
main#single-glossaire article.glossaire div#introduction div.container h1 {
  color: white;
  font-size: 40px;
  line-height: 47px;
  font-weight: 900;
  text-align: center;
}
main#single-glossaire article.glossaire div#introduction div.container h1 span {
  color: var(--wp--preset--color--violet-adm);
}
@media screen and (max-width: 1024px) {
  main#single-glossaire article.glossaire div#introduction div.container h1 {
    font-size: 30px;
    line-height: 35px;
  }
}
@media screen and (max-width: 767px) {
  main#single-glossaire article.glossaire div#introduction div.container h1 {
    font-size: 24px;
    line-height: 30px;
  }
}
main#single-glossaire article.glossaire div#content {
  overflow: visible;
  padding-bottom: 100px;
}
main#single-glossaire article.glossaire div#content div.container {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
main#single-glossaire article.glossaire div#content div.container div.column:first-child {
  flex: 0 0 25%;
}
@media screen and (max-width: 1024px) {
  main#single-glossaire article.glossaire div#content div.container div.column:first-child {
    flex: 1 0 100%;
  }
}
main#single-glossaire article.glossaire div#content div.container div.column:first-child div.wrapper {
  position: relative;
  z-index: 1;
  height: 100%;
}
main#single-glossaire article.glossaire div#content div.container div.column:first-child div.fixed {
  position: sticky;
  top: 100px;
  left: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
main#single-glossaire article.glossaire div#content div.container div.column:first-child div.time {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
}
main#single-glossaire article.glossaire div#content div.container div.column:first-child div.time > div {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #707070;
}
main#single-glossaire article.glossaire div#content div.container div.column:first-child div.time > div span {
  font-size: 14px;
  line-height: 25px;
}
main#single-glossaire article.glossaire div#content div.container div.column:first-child div.time > div span:first-child {
  font-weight: 500;
}
main#single-glossaire article.glossaire div#content div.container div.column:first-child div.time > div span:last-child {
  font-weight: 700;
}
main#single-glossaire article.glossaire div#content div.container div.column:first-child div.summary {
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
}
main#single-glossaire article.glossaire div#content div.container div.column:first-child div.summary > span {
  font-size: 14px;
  line-height: 25px;
  font-weight: 700;
  display: block;
  margin-bottom: 20px;
}
main#single-glossaire article.glossaire div#content div.container div.column:first-child div.summary ul {
  list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='4' height='4' viewBox='0 0 4 4'%3E%3Ccircle id='Ellipse_242' data-name='Ellipse 242' cx='2' cy='2' r='2' fill='%23ab25f5'/%3E%3C/svg%3E%0A");
  padding-left: 10px;
}
main#single-glossaire article.glossaire div#content div.container div.column:first-child div.summary ul li {
  font-size: 14px;
  line-height: 18px;
  margin-bottom: 10px;
  font-weight: 500;
}
main#single-glossaire article.glossaire div#content div.container div.column:first-child div.summary ul li.highlighted {
  color: #AB25F5;
}
main#single-glossaire article.glossaire div#content div.container div.column:last-child {
  flex: 1;
  overflow: hidden;
}
@media screen and (max-width: 1024px) {
  main#single-glossaire article.glossaire div#content div.container div.column:last-child {
    flex: 1 0 100%;
  }
}
main#single-glossaire article.glossaire div#content div.container div.column:last-child > div.wrapper-content {
  padding: 50px;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 767px) {
  main#single-glossaire article.glossaire div#content div.container div.column:last-child > div.wrapper-content {
    padding: 30px;
  }
}
main#single-glossaire article.glossaire div#content div.container div.column:last-child > div.wrapper-content div.description p {
  font-size: 22px;
  line-height: 29px;
  font-weight: normal;
}
@media screen and (max-width: 767px) {
  main#single-glossaire article.glossaire div#content div.container div.column:last-child > div.wrapper-content div.description p {
    font-size: 18px;
    line-height: 23px;
  }
}
main#single-glossaire article.glossaire div#content div.container div.column:last-child > div.wrapper-content div.content ul {
  list-style: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='7' height='7' viewBox='0 0 7 7'%3E%3Ccircle id='Ellipse_221' data-name='Ellipse 221' cx='3.5' cy='3.5' r='3.5' fill='%23ab25f5'/%3E%3C/svg%3E%0A");
  padding-left: 30px;
  margin: 0;
}
main#single-glossaire article.glossaire div#content div.container div.column:last-child > div.wrapper-content div.content ul > li {
  line-height: 25px;
}
main#single-glossaire article.glossaire div#content div.container div.column:last-child > div.wrapper-content div.content ul > li ul {
  list-style: none;
  padding: 0;
  margin-top: 5px;
}
main#single-glossaire article.glossaire div#content div.container div.column:last-child > div.wrapper-content div.content ul > li ul li {
  display: flex;
  gap: 5px;
  align-items: center;
  line-height: 25px;
}
main#single-glossaire article.glossaire div#content div.container div.column:last-child > div.wrapper-content div.content ul > li ul li::before {
  content: ">";
  display: inline-block;
  color: #AB25F5;
}
main#single-glossaire article.glossaire div#linked {
  padding-bottom: 100px;
}
main#single-glossaire article.glossaire div#linked div.container h2 {
  margin-bottom: 50px;
}
main#single-glossaire article.glossaire div#linked div.container h2 span {
  color: #AB25F5;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
@media screen and (max-width: 1024px) {
  main#single-glossaire article.glossaire div#linked div.container div.slider-linked {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}
@media screen and (max-width: 767px) {
  main#single-glossaire article.glossaire div#linked div.container div.slider-linked {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article {
  border-radius: 15px;
  overflow: hidden;
  transition: opacity 0.3s ease-out, transform 0.3s ease-out;
  opacity: 1;
  display: flex;
  flex-flow: column wrap;
  background-color: white;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article.scale-up {
  animation: scaleUp 0.3s ease-out forwards;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article.scale-down {
  animation: scaleDown 0.3s ease-out forwards;
  animation-fill-mode: forwards; /* Keep the final state after animation */
  display: none !important; /* Ensure it is hidden */
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article:hover {
  transform: translateY(-10px);
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article:hover div.image-head {
  cursor: pointer;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article:hover div.image-head img {
  transform: scale(1.1);
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article[data-type_ressource=video] div.nav-footer {
  justify-content: flex-start;
  padding: 0 30px 20px;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article div.image-head {
  position: relative;
  padding-bottom: 62.5%;
  background-color: #E8E8E8;
  overflow: hidden;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article div.image-head img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s ease-out;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article div.meta {
  padding: 0 30px;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article div.meta span {
  display: inline-block;
  padding: 5px 10px;
  background-color: var(--wp--preset--color--violet-adm);
  color: white;
  font-size: 14px;
  line-height: 20px;
  font-weight: 500;
  border-radius: 0 0 3px 3px;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article div.content-body {
  background-color: white;
  padding: 20px 30px 0;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article div.content-body h4 {
  font-size: 22px;
  line-height: 28px;
  font-weight: bold;
  color: #16002B;
  margin: 0;
  margin-bottom: 20px;
  max-height: 56px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
  transition: 0.3s ease-out;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article div.content-body h4:hover {
  color: #16002B;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article div.content-body p {
  font-size: 15px;
  line-height: 23px;
  font-weight: normal;
  margin-bottom: 30px;
  max-height: 92px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  text-overflow: ellipsis;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article div.content-body > span {
  font-size: 13px;
  font-weight: normal;
  color: #6B525E;
  display: block;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article div.nav-footer {
  background-color: white;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  border-bottom-right-radius: 20px;
  border-bottom-left-radius: 20px;
  margin-top: auto;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article div.nav-footer a.button {
  padding: 10px 20px;
  background-color: #AB25F5;
  border-radius: 50px;
  color: white;
  display: inline-flex;
  gap: 10px;
  align-items: center;
}
main#single-glossaire article.glossaire div#linked div.container div.slider-linked article div.nav-footer a:not(.button) {
  display: inline-block;
  padding: 12px 20px 10px;
  background-color: #AB25F5;
  border-radius: 0 0 15px 0;
}
@keyframes scaleUp {
  0% {
    transform: scale(0.8);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes scaleDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(0.8);
    opacity: 0;
  }
}

* {
  box-sizing: border-box;
}

html :where(.editor-styles-wrapper) {
  font-family: "Work Sans";
  font-weight: normal;
  font-style: normal;
  color: initial;
  background: #fff;
}

html {
  scroll-behavior: smooth;
}
html.noscroll {
  overflow-y: hidden;
}

body {
  font-family: "Work Sans";
  font-weight: normal;
  font-style: normal;
  line-height: 1;
  padding: 0;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
body .masked-wrapper {
  overflow: hidden;
}
body a {
  color: inherit;
  text-decoration: none;
}
body a:hover {
  text-decoration: inherit;
  color: inherit;
}
body mark {
  background-color: transparent;
}

.wpcf7-response-output {
  position: fixed;
  bottom: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 5;
  border-radius: 10px;
  background-color: white;
  padding: 20px !important;
  border: 2px solid #AB25F5 !important;
  color: #16002B;
  font-size: 24px;
  line-height: 28px;
  font-weight: 500;
  max-width: 600px;
  text-align: center;
}

main#archive-posts {
  background-color: #16002B;
}
main#archive-posts > div.block-spacer {
  height: 150px;
}
main#archive-posts div.wp-container-1 {
  flex: 66.66%;
}
main#archive-posts div.wp-container-2 {
  flex: 33.33%;
}
main#archive-posts .wp-block-column h3 {
  color: white;
}
main#archive-posts .wp-block-column h1 {
  font-size: 40px;
  line-height: 47px;
  font-weight: 900;
  margin: 0;
  color: white;
}
@media screen and (max-width: 980px) {
  main#archive-posts .wp-block-column h1 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media screen and (max-width: 767px) {
  main#archive-posts .wp-block-column h1 {
    font-size: 26px;
    line-height: 35px;
  }
}
main#archive-posts .wp-block-column h1 span {
  color: #AB25F5;
}

.otgs-development-site-front-end {
  display: none;
}

main#main-post {
  background: #EEEDFF;
}
main#main-post article.actualite {
  padding-top: 30vh;
}
@media screen and (max-width: 767px) {
  main#main-post article.actualite {
    padding-top: 20vh;
  }
}
main#main-post article.actualite div.content {
  border-radius: 20px 20px 20px 20px;
  background-color: white;
  padding: 100px 0 0;
  margin-bottom: 150px;
}
main#main-post article.actualite div.content ul li {
  line-height: 25px;
}
@media screen and (max-width: 767px) {
  main#main-post article.actualite div.content {
    padding: 50px 0 0;
  }
}
main#main-post article.actualite div.content div.container-xs {
  padding: 0 50px 100px;
}
@media screen and (max-width: 767px) {
  main#main-post article.actualite div.content div.container-xs {
    padding: 0 30px 50px;
  }
}
main#main-post article.actualite div.content div.container-xs div.title h1 {
  font-size: 40px;
  line-height: 45px;
  font-weight: normal;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 767px) {
  main#main-post article.actualite div.content div.container-xs div.title h1 {
    margin-bottom: 20px;
  }
}
main#main-post article.actualite div.content div.container-xs div.title div.meta {
  text-align: center;
  margin-bottom: 50px;
}
main#main-post article.actualite div.content div.container-xs div.title div.meta span {
  font-size: 14px;
  line-height: 25px;
}
main#main-post article.actualite div.content div.container-xs div.title div.meta span ul {
  padding: 0;
  list-style: none;
  display: inline-flex;
  gap: 10px;
}
main#main-post article.actualite div.content div.container-xs div.title div.meta span ul li {
  font-weight: 500;
  text-decoration: underline;
}
main#main-post article.actualite div.content div.container-xs div.img-head {
  position: relative;
  padding-bottom: 57.5%;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
  margin-bottom: 50px;
}
main#main-post article.actualite div.content div.container-xs div.img-head img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
main#main-post article.actualite div.content div.container-xs div.block-content {
  max-width: 700px;
  margin: auto;
  padding: 30px;
  position: relative;
}
main#main-post article.actualite div.content div.container-xs div.block-content.notallowed:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgb(255, 255, 255) 100%);
}
main#main-post article.actualite div.content div.container-xs div.block-content figure {
  max-width: 100% !important;
}
main#main-post article.actualite div.content div.container-xs div.row-inscription {
  background-color: #16002B;
  border-radius: 20px;
  padding: 30px;
  max-width: 700px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-flow: wrap row;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
main#main-post article.actualite div.content div.container-xs div.row-inscription:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(255deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(-100%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
main#main-post article.actualite div.content div.container-xs div.row-inscription:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(25deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(100%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
main#main-post article.actualite div.content div.container-xs div.row-inscription.active:before {
  transform: skewX(160deg) translateX(-20%);
}
main#main-post article.actualite div.content div.container-xs div.row-inscription.active:after {
  transform: skewX(160deg) translateX(48%);
}
main#main-post article.actualite div.content div.container-xs div.row-inscription div.col-50 {
  flex: 0 0 45%;
}
@media screen and (max-width: 767px) {
  main#main-post article.actualite div.content div.container-xs div.row-inscription div.col-50 {
    flex: 0 0 100%;
  }
}
main#main-post article.actualite div.content div.container-xs div.row-inscription div.col-50 h2 {
  color: white;
  font-size: 25px;
  line-height: 35px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  main#main-post article.actualite div.content div.container-xs div.row-inscription div.col-50 h2 {
    margin-bottom: 30px;
    font-size: 18px;
    line-height: 25px;
  }
}
main#main-post article.actualite div.content div.container-xs div.row-inscription div.col-50 p {
  color: white;
}
main#main-post article.actualite div.content div.container-xs div.row-inscription div.col-50 form label {
  position: relative;
}
main#main-post article.actualite div.content div.container-xs div.row-inscription div.col-50 form label button {
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background-color: #AB25F5;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 15px;
  transform: translateY(-50%) scale(1);
  transition: 0.3s ease-out;
}
main#main-post article.actualite div.content div.container-xs div.row-inscription div.col-50 form label button:hover {
  transform: translateY(-50%) scale(0.9);
}
main#main-post article.actualite div.content div.container-xs div.row-inscription div.col-50 form label input {
  padding: 15px 50px 15px 20px;
  border-radius: 50px;
  background-color: white;
  border: 0;
  min-height: 62px;
  width: 100%;
  transition: 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  transform-origin: center center;
}
main#main-post article.actualite div.content div.container-xs div.row-inscription div.col-50 form label input:focus {
  border: 2px solid #AB25F5;
  outline: none;
  transform: scale(1.05);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25);
}
main#main-post article.actualite div.content div.container-xs div.row-inscription div.col-50 form label input:active {
  border: 2px solid #AB25F5;
  outline: none;
}
main#main-post article.actualite div.content div.container-xs div.row-inscription div.col-50 > span {
  color: white;
  display: inline-block;
  margin-top: 20px;
  font-size: 14px;
  line-height: 18px;
}
main#main-post article.actualite div.content div.container-xs div.row-inscription div.col-50 > span a {
  text-decoration: underline;
}
@media screen and (max-width: 980px) {
  main#main-post article.actualite div.content div.container-xs div.row-inscription {
    padding: 50px;
  }
}
@media screen and (max-width: 767px) {
  main#main-post article.actualite div.content div.container-xs div.row-inscription {
    padding: 30px;
  }
}
main#main-post #reco-articles h3 {
  color: white;
}
main#main-post #reco-articles h2 {
  color: white;
}
main#main-post #reco-articles h2 span {
  color: #AB25F5;
}
@media screen and (max-width: 767px) {
  main#main-post #reco-articles h2 {
    margin-bottom: 30px;
  }
}
main#main-post #reco-articles div.actualites {
  margin-top: 100px;
}
main#main-post #reco-articles div.actualites div.content-body p {
  max-height: 8em;
  overflow: hidden;
}

h1 {
  font-size: 60px;
  line-height: 72px;
  font-weight: bold;
  margin: 0;
  margin-bottom: 20px;
}
@media screen and (max-width: 980px) {
  h1 {
    font-size: 50px;
    line-height: 62px;
  }
}
@media screen and (max-width: 767px) {
  h1 {
    font-size: 35px;
    line-height: 48px;
  }
}

h2 {
  font-size: 40px;
  line-height: 47px;
  font-weight: 900;
  margin: 0;
}
@media screen and (max-width: 980px) {
  h2 {
    font-size: 30px;
    line-height: 42px;
  }
}
@media screen and (max-width: 767px) {
  h2 {
    font-size: 26px;
    line-height: 35px;
  }
}

h3 {
  font-size: 14px;
  font-weight: normal;
  line-height: 18px;
  margin: 0;
  margin-bottom: 5px;
}

h4 {
  font-size: 30px;
  line-height: 40px;
  font-weight: bold;
}
@media screen and (max-width: 980px) {
  h4 {
    font-size: 25px;
    line-height: 35px;
  }
}
@media screen and (max-width: 767px) {
  h4 {
    font-size: 21px;
    line-height: 31px;
  }
}

h5 {
  font-size: 14px;
  line-height: 16px;
  font-weight: normal;
  padding: 5px 10px;
  border-radius: 4px;
  text-transform: uppercase;
  display: inline-block;
  background-color: #AB25F5;
  color: #FFFFFF;
}

p {
  font-size: 16px;
  line-height: 25px;
  font-weight: normal;
}

.has-violet-adm-color {
  color: #AB25F5;
}

.has-violet-adm-background-color {
  background-color: #AB25F5;
}

.has-noir-adm-color {
  color: #16002B;
}

.has-fond-adm-color {
  color: #EEEDFF;
}

.has-blanc-color {
  color: white;
}

.has-noir-color {
  color: black;
}

form[name=contact] {
  padding: 50px;
  background-color: white;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  form[name=contact] {
    padding: 30px;
  }
}
form[name=contact] div.input-row {
  display: flex;
  flex-flow: wrap row;
  align-items: center;
  gap: 25px;
  margin-bottom: 20px;
}
form[name=contact] div.input-row div.input-group.col-50 {
  flex: 1;
}
@media screen and (max-width: 767px) {
  form[name=contact] div.input-row div.input-group.col-50 {
    flex: 0 0 100%;
  }
}
form[name=contact] div.input-row div.input-group.col-100 {
  flex: 1 0 100%;
}
form[name=contact] div.input-row div.input-group .wpcf7-not-valid-tip {
  margin-top: 10px;
  font-size: 13px;
  line-height: 15px;
}
form[name=contact] div.input-row div.input-group span {
  width: 100%;
}
form[name=contact] div.input-row div.input-group input[type=text],
form[name=contact] div.input-row div.input-group input[type=email],
form[name=contact] div.input-row div.input-group select,
form[name=contact] div.input-row div.input-group textarea {
  background-color: transparent;
  border: 1px solid #AB25F5;
  border-radius: 5px;
  padding: 15px 25px;
  width: 100%;
  font-size: 15px;
  line-height: 18px;
  font-weight: bold;
  color: #64625F;
  transition: 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  transform-origin: center center;
}
form[name=contact] div.input-row div.input-group input[type=text]:focus,
form[name=contact] div.input-row div.input-group input[type=email]:focus,
form[name=contact] div.input-row div.input-group select:focus,
form[name=contact] div.input-row div.input-group textarea:focus {
  border: 2px solid #AB25F5;
  outline: none;
  transform: scale(1.05);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25);
}
form[name=contact] div.input-row div.input-group input[type=text]:active,
form[name=contact] div.input-row div.input-group input[type=email]:active,
form[name=contact] div.input-row div.input-group select:active,
form[name=contact] div.input-row div.input-group textarea:active {
  border: 2px solid #AB25F5;
  outline: none;
}
form[name=contact] div.input-row div.input-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11.805' height='6.609' viewBox='0 0 11.805 6.609'%3E%3Cpath id='Path_6430' data-name='Path 6430' d='M778.951,41l5.549,5.549L790.049,41' transform='translate(-778.598 -40.646)' fill='none' stroke='%23ab25f5' stroke-width='1'/%3E%3C/svg%3E%0A");
  background-repeat: no-repeat;
  background-position: calc(100% - 20px) 50%;
}
form[name=contact] div.input-footer {
  display: flex;
  flex-flow: wrap row;
  margin-top: 50px;
}
form[name=contact] div.input-footer label {
  flex: 0 0 100%;
}
form[name=contact] div.input-footer label a {
  text-decoration: underline;
}
form[name=contact] div.input-footer .wpcf7-list-item {
  margin: 0;
}
form[name=contact] div.input-footer div.flex-button {
  margin-top: 30px;
  flex-wrap: wrap;
  flex: 0 0 100%;
  justify-content: space-between;
}
form[name=contact] div.input-footer div.flex-button button a {
  color: #16002B;
}

ul.wp-block-list li {
  line-height: 20px;
  margin-bottom: 10px;
}

.wp-block-column p:first-child {
  margin-top: 0;
}

.page-id-15 .thecontent,
.page-id-33 .thecontent,
.page-id-35 .thecontent,
.page-id-37 .thecontent,
.page-id-20107 .thecontent,
.page-id-20109 .thecontent,
.page-id-20105 .thecontent {
  background-color: #EEEDFF;
}

@keyframes rotate-infinite {
  0% {
    transform: rotate3d(0, 0, 1, 0deg);
  }
  33% {
    transform: rotate3d(0, 0, 1, 118.8deg);
  }
  66% {
    transform: rotate3d(0, 0, 1, 237.6deg);
  }
  100% {
    transform: rotate3d(0, 0, 1, 360deg);
  }
}
@keyframes heartbeat {
  0% {
    transform: scale(0.8);
  }
  5% {
    transform: scale(0.9);
  }
  10% {
    transform: scale(0.8);
  }
  15% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(0.8);
  }
}
[data-aos=slide-right] {
  transform: translate3d(-100%, 0, 0);
  transition-property: clip-path opacity;
}
[data-aos=slide-right].aos-animate {
  transform: translate3d(0%, 0, 0);
}

[data-aos=slide-left] {
  transform: translate3d(100%, 0, 0);
  transition-property: clip-path opacity;
}
[data-aos=slide-left].aos-animate {
  transform: translate3d(0%, 0, 0);
}

img.centered {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

.aligncenter {
  display: block;
  margin-left: auto;
  margin-right: auto;
}

img.alignright {
  padding: 4px;
  margin: 0 0 2px 7px;
  display: inline;
}

img.alignleft {
  padding: 4px;
  margin: 0 7px 2px 0;
  display: inline;
}

figure.aligncenter {
  text-align: center;
}

figure.alignleft {
  text-align: left;
}

figure.alignright {
  text-align: right;
}

.alignright {
  float: right;
}

.alignleft {
  float: left;
}

p.is-justify {
  text-align: justify;
}

div:where(.wp-block-columns) {
  margin-bottom: 0;
}

.wpcf7-form label {
  line-height: 15px;
}

.wpcf7-form[name=newsletter-2] {
  padding: 50px 100px;
  border-radius: 20px;
  position: relative;
  z-index: 1;
  overflow: hidden;
  background: rgb(19, 1, 41);
}
.wpcf7-form[name=newsletter-2]:before {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 60%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(255deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(-40%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
@media screen and (max-width: 767px) {
  .wpcf7-form[name=newsletter-2]:before {
    width: 80%;
    transform: skewX(160deg) translateX(-40%);
  }
}
.wpcf7-form[name=newsletter-2]:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background: rgb(171, 37, 245);
  background: linear-gradient(25deg, rgb(19, 1, 41) 0%, rgb(171, 37, 245) 100%);
  opacity: 0.47;
  transform: skewX(160deg) translateX(48%);
  pointer-events: none;
  transition: 0.3s ease-out;
}
.wpcf7-form[name=newsletter-2] label {
  flex: 2;
  color: white;
  font-size: 12px;
  line-height: 15px;
}
.wpcf7-form[name=newsletter-2] label span .wpcf7-list-item {
  margin: 0;
}
.wpcf7-form[name=newsletter-2] label span input[type=email] {
  width: 100%;
  padding: 15px 25px;
  border: 0;
  border-radius: 5px;
  transition: 0.5s cubic-bezier(0.47, 1.64, 0.41, 0.8);
  transform-origin: center center;
  margin-bottom: 25px;
  font-size: 16px;
  line-height: 25px;
}
.wpcf7-form[name=newsletter-2] label span input[type=email]:focus {
  border: 2px solid #AB25F5;
  outline: none;
  transform: scale(1.05);
  box-shadow: 0px 0px 7px rgba(0, 0, 0, 0.25);
}
.wpcf7-form[name=newsletter-2] label span input[type=email]:active {
  border: 2px solid #AB25F5;
  outline: none;
}
.wpcf7-form[name=newsletter-2] div.submit {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex: 1;
  text-align: end;
}
.wpcf7-form[name=newsletter-2] button[type=submit] {
  background-color: transparent;
  border: none;
  padding: 0;
  transition: 0.3s ease-out;
  margin-top: 0;
}
.wpcf7-form[name=newsletter-2] button[type=submit]:focus {
  background-color: transparent;
}
.wpcf7-form[name=newsletter-2] button[type=submit]:active {
  background-color: transparent;
}
.wpcf7-form[name=newsletter-2] button[type=submit]:hover {
  transform: scale(0.9);
}
.wpcf7-form[name=newsletter-2] div.flex-block {
  display: flex;
  flex-flow: wrap row;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  .wpcf7-form[name=newsletter-2] div.flex-block {
    gap: 10px;
  }
}

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