@charset "UTF-8";
/**
* Style utilisé pour la partie FRONT du site
*/
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

html,
body {
  font-family: "Ubuntu", sans-serif;
  font-weight: 400;
  font-style: normal;
  background: #FFFFFF;
  color: #22212C;
}
html.scroll-stop,
body.scroll-stop {
  height: 100vh;
  overflow: hidden;
}

/** adminbar **/
#wpadminbar {
  display: none;
}
.wp-admin #wpadminbar {
  display: block;
}

html {
  margin-top: 0 !important;
}

/**
 * -------------------
 * breakpoint
 * -------------------
 * @description
 * responsive - gère les points de rupture
 * @param point <string>
 */
.container {
  width: calc(100% - 100px);
  margin-left: 50px;
  margin-right: 50px;
}
@media screen and (min-width: 1480px) {
  .container {
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .container {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
.container-md {
  width: calc(100% - clamp(100px, 17.5vw, 260px));
  margin-left: clamp(50px, 8.7vw, 130px);
  margin-right: clamp(50px, 8.7vw, 130px);
}
@media screen and (min-width: 1480px) {
  .container-md {
    max-width: 1480px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (max-width: 768px) {
  .container-md {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}
.container-sm {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 808px) {
  .container-sm {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .container-sm {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}

.alignwide {
  position: relative;
  width: clamp(728px, 67vw, 992px);
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 768px) {
  .alignwide {
    width: calc(100% - 40px);
    padding-left: unset;
    padding-right: unset;
    margin-left: 20px;
    margin-right: 20px;
  }
}

.alignfull {
  position: relative;
  left: 50%;
  translate: -50%;
  width: 100vw;
  margin-left: 0;
  margin-right: 0;
}

.main-container > :where(:not(.alignleft):not(.alignright):not(.alignwide):not(.alignfull):not(.alignLarge)) {
  max-width: 768px;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 808px) {
  .main-container > :where(:not(.alignleft):not(.alignright):not(.alignwide):not(.alignfull):not(.alignLarge)) {
    margin-left: 20px;
    margin-right: 20px;
  }
}
@media screen and (max-width: 768px) {
  .main-container > :where(:not(.alignleft):not(.alignright):not(.alignwide):not(.alignfull):not(.alignLarge)) {
    width: calc(100% - 40px);
    margin-left: 20px;
    margin-right: 20px;
  }
}

@keyframes burgerMenu-1 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(225deg);
  }
}
@keyframes burgerMenu-2 {
  0% {
    opacity: 1;
    margin-top: 0;
    margin-bottom: 3px;
  }
  100% {
    opacity: 0;
    margin-top: -4px;
    margin-bottom: -3px;
  }
}
@keyframes burgerMenu-3 {
  0% {
    transform: rotate(0);
  }
  100% {
    transform: rotate(135deg);
  }
}
[target=_blank] {
  cursor: alias;
}

.header {
  z-index: 100;
  position: relative;
}
.header-container {
  height: 90px;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: clamp(20px, 2.7vw, 40px);
}
.header-container .header-logo {
  font-size: 0;
}
.header-container .header-logo a {
  display: inline-block;
}
.header-container .header-logo a img {
  max-height: 70px;
  max-width: 200px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.header-container .header-content {
  flex: 1;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  gap: clamp(20px, 2.7vw, 40px);
  height: 70px;
}
.header.sticky {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  background: #FFFFFF;
  box-shadow: 0 20px 40px rgba(34, 33, 44, 0.1);
  transition: top 0.3s ease;
}
.header.sticky .header-container {
  height: 70px;
}
.header.sticky .header-container .header-logo a img {
  max-height: 50px;
}
.header.sticky.hide {
  top: -130px;
  transition: top 0.3s ease;
}

@media screen and (max-width: 992px) {
  .header-container {
    height: 70px;
  }
  .header-container .header-logo a img {
    max-height: 50px;
    max-width: 100px;
  }
  .header-container .header-content {
    height: 70px;
  }
  .header-container .header-content .header-nav {
    order: 2;
  }
  .header-container .header-content .header-buttons {
    order: 1;
  }
}
.footer {
  background: #D6ECF8;
  margin-top: clamp(105px, 12.8vw, 190px);
}
.footer .footer-logo {
  position: relative;
  top: calc(clamp(75px, 10.1vw, 150px) * -1);
  margin-bottom: calc(clamp(55px, 7.4vw, 110px) * -1);
  margin-left: auto;
  margin-right: auto;
  width: clamp(320px, 43.9vw, 650px);
  max-width: calc(100% - 40px);
}
.footer .footer-logo a {
  display: block;
}
.footer .footer-logo a img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
}
.footer .footer-content {
  display: grid;
  grid-template-columns: repeat(3, 1fr) clamp(20px, 6.7vw, 100px);
  grid-gap: clamp(20px, 2.7vw, 40px);
}
.footer .footer-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-nav .footer-menu > ul {
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-nav .footer-menu > ul > li > a {
  line-height: 1.2;
  text-decoration: none;
  text-transform: uppercase;
  font-weight: bold;
  font-size: var(--wp--preset--font-size--large);
  transition: color 0.3s ease;
}
.footer .footer-nav .footer-menu > ul > li > a:hover {
  color: #3497DB;
  transition: color 0.3s ease;
}
.footer .footer-nav .footer-menu > ul > li .sub-menu {
  margin-top: 10px;
  list-style-type: none;
  padding-left: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  text-decoration: none;
}
.footer .footer-nav .footer-menu > ul > li .sub-menu li a {
  text-decoration: none;
}
.footer .footer-contact {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-contact h2 {
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--large);
}
.footer .footer-social {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.footer .footer-social h2 {
  margin: 0;
  text-decoration: none;
  text-transform: uppercase;
  font-size: var(--wp--preset--font-size--large);
}
.footer .footer-image {
  z-index: 1;
  position: relative;
  width: 100%;
  height: 100%;
}
.footer .footer-image img {
  position: absolute;
  bottom: calc(clamp(30px, 3.3vw, 50px) * -1);
  right: 0;
  width: clamp(300px, 39.8vw, 590px);
}
.footer .footer-infos {
  position: relative;
  border-top: 1px solid #3497DB;
  padding: clamp(20px, 2.7vw, 40px) 0;
  margin-top: clamp(30px, 3.3vw, 50px);
}
.footer .footer-infos-status {
  text-align: center;
  color: #3497DB;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer .footer-infos-address {
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 10px;
  font-size: 0.9rem;
}
.footer .footer-infos-menu ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 5px 20px;
  margin-bottom: 10px;
}
.footer .footer-infos-menu ul li .separator {
  position: relative;
  left: -10px;
}
.footer .footer-infos-menu ul li a {
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  text-decoration: none;
}
.footer .footer-infos-menu ul li:first-child .separator {
  display: none;
}
.footer .footer-copyright {
  background: #FFFFFF;
  color: #22212C;
  text-align: center;
  font-size: 0.9rem;
  padding: 20px 0;
}
.footer .footer-copyright i {
  color: #E67D21;
}
.footer .footer-copyright a {
  color: #E67D21;
  font-weight: 700;
}

@media screen and (max-width: 992px) {
  .footer-container .footer-content {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "a b" "a c";
  }
  .footer-container .footer-content .footer-nav {
    grid-area: a;
  }
  .footer-container .footer-content .footer-contact {
    grid-area: b;
  }
  .footer-container .footer-content .footer-social {
    grid-area: c;
  }
  .footer-container .footer-content .footer-image {
    grid-area: d;
  }
  .footer-container .footer-image {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .footer-container .footer-content {
    grid-template-columns: repeat(1, 1fr);
    grid-template-areas: unset;
  }
  .footer-container .footer-content .footer-nav {
    grid-area: unset;
  }
  .footer-container .footer-content .footer-contact {
    grid-area: unset;
  }
  .footer-container .footer-content .footer-social {
    grid-area: unset;
  }
  .footer-container .footer-content .footer-image {
    grid-area: unset;
  }
  .footer-container .footer-content .footer-nav, .footer-container .footer-content .footer-contact {
    padding-bottom: 20px;
    border-bottom: 1px solid #3497DB;
  }
  .footer-container .footer-content .footer-social, .footer-container .footer-content .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-container .footer-content .footer-nav li {
    text-align: center;
  }
}
.nav {
  z-index: 10;
  position: relative;
  background: rgba(255, 255, 255, 0.2);
  height: 50px;
  padding: 0 clamp(10px, 1vw, 15px);
  border-radius: 10px;
}
.nav-menu > ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
  list-style-type: none;
}
.nav-menu > ul > li {
  position: relative;
}
.nav-menu > ul > li > a {
  position: relative;
  display: block;
  line-height: 50px;
  padding: 0 clamp(10px, 1vw, 15px);
  font-weight: 500;
  font-size: 1rem;
  color: #22212C;
  text-decoration: none;
  white-space: nowrap;
}
.nav-menu > ul > li > a .highlight {
  color: #3497DB;
  transition: color 0.3s ease;
}
.nav-menu > ul > li.menu-item-has-children > a {
  padding-right: 40px;
}
.nav-menu > ul > li.menu-item-has-children > a:before, .nav-menu > ul > li.menu-item-has-children > a:after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%) scaleX(1);
  width: 10px;
  height: 2px;
  background: #3497DB;
}
.nav-menu > ul > li.menu-item-has-children > a:before {
  rotate: 45deg;
  left: unset;
  bottom: unset;
  right: 22px;
  transition: none;
}
.nav-menu > ul > li.menu-item-has-children > a:after {
  rotate: -45deg;
  right: 15px;
}
.nav-menu > ul > li .sub-menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  top: calc(100% + 50px);
  left: 50%;
  transform: translateX(-50%);
  list-style-type: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #FFFFFF;
  border-left: 5px solid #3497DB;
  box-shadow: 0 0 20px rgba(34, 33, 44, 0.1);
  padding: 20px;
  width: clamp(250px, 20vw, 300px);
  transition: opacity 0.3s ease, top 0.3s ease;
}
.nav-menu > ul > li .sub-menu li a {
  position: relative;
  display: block;
  padding: 10px 20px 10px 0;
  text-decoration: none;
  font-weight: 500;
  color: #22212C;
  transition: color 0.3s ease, padding 0.3s ease;
}
.nav-menu > ul > li .sub-menu li a:before {
  content: "";
  position: absolute;
  left: 0;
  top: 20px;
  width: 10px;
  height: 3px;
  background: #3497DB;
  transform: scaleX(0);
  transition: transform 0.3s ease;
}
.nav-menu > ul > li .sub-menu li a:hover {
  padding-left: 20px;
  color: #3497DB;
  transition: color 0.3s ease, padding 0.3s ease;
}
.nav-menu > ul > li .sub-menu li a:hover:before {
  transform: scaleX(1);
  transition: transform 0.3s ease;
}
.nav-menu > ul > li:hover:before {
  width: 30px;
  transition: width 0.3s ease;
}
.nav-menu > ul > li:hover > a {
  color: #E67D21;
  transition: color 0.3s ease;
}
.nav-menu > ul > li:hover > a .highlight {
  color: #E67D21;
  transition: color 0.3s ease;
}
.nav-menu > ul > li:hover.menu-item-has-children > a:before {
  height: 2px;
  transform: translateY(-50%) scaleX(1);
  transition: none;
}
.nav-menu > ul > li:hover .sub-menu {
  opacity: 1;
  top: 100%;
  pointer-events: all;
  transition: opacity 0.3s ease, top 0.3s ease;
}
.nav-burger, .nav-mobile {
  display: none;
}

@media screen and (max-width: 992px) {
  .nav {
    background: unset;
  }
  .nav-menu {
    display: none;
  }
  .nav-burger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: #3497DB;
    border-radius: 10px;
    width: 50px;
    height: 50px;
    cursor: pointer;
    transition: background-color 0.3s ease;
  }
  .nav-burger span {
    position: relative;
    width: 15px;
    height: 2px;
    background: #FFFFFF;
    margin-bottom: 3px;
    transition: background-color 0.3s ease, transform 0.3s ease, opacity 0.3s ease;
  }
  .nav-burger span:last-child {
    margin-bottom: 0;
  }
  .nav-burger.active.active {
    background: #3497DB;
    transition: background-color 0.3s ease;
  }
  .nav-burger.active.active span {
    background: #FFFFFF;
    transition: background-color 0.3s ease, opacity 0.3s ease, margin 0.3s ease;
  }
  .nav-burger.active.active span:nth-child(1) {
    animation: burgerMenu-1 0.6s forwards;
    animation-delay: 0.3s;
  }
  .nav-burger.active.active span:nth-child(2) {
    animation: burgerMenu-2 0.3s forwards;
    animation-delay: 0s;
  }
  .nav-burger.active.active span:nth-child(3) {
    animation: burgerMenu-3 0.6s forwards;
    animation-delay: 0.3s;
  }
  .nav-mobile {
    display: flex;
    flex-direction: column;
    gap: 20px;
    z-index: 5;
    position: fixed;
    top: 70px;
    left: 100%;
    width: 100vw;
    height: calc(100vh - 70px);
    background: #3497DB;
    padding: 20px;
    padding-bottom: 40px;
    overflow-y: scroll;
    transition: left 0.3s ease;
  }
  .nav-mobile.active {
    left: 0;
    transition: left 0.3s ease;
  }
  .nav-mobile.active:before {
    left: 0;
    transition: left 0.3s ease;
  }
  .nav-mobile-menu > ul {
    overflow-y: scroll;
    list-style-type: none;
  }
  .nav-mobile-menu > ul a {
    display: block;
    color: #FFFFFF;
    text-decoration: none;
  }
  .nav-mobile-menu > ul > li {
    position: relative;
    margin-bottom: 20px;
    padding-right: 30px;
  }
  .nav-mobile-menu > ul > li:last-child {
    margin-bottom: 0;
  }
  .nav-mobile-menu > ul > li .moreMenu {
    position: absolute;
    top: 0;
    right: 5px;
    width: 20px;
    height: 20px;
    cursor: pointer;
  }
  .nav-mobile-menu > ul > li .moreMenu:before {
    content: "";
    position: absolute;
    top: 9px;
    left: 2.5px;
    width: 15px;
    height: 2px;
    background: #FFFFFF;
    transform-origin: center;
    transition: transform 0.3s ease;
  }
  .nav-mobile-menu > ul > li .moreMenu:after {
    content: "";
    position: absolute;
    top: 2.5px;
    left: 9px;
    width: 2px;
    height: 15px;
    background: #FFFFFF;
    transform-origin: center;
    opacity: 1;
    transition: transform 0.3s ease, opacity 0.1s ease;
  }
  .nav-mobile-menu > ul > li .moreMenu.active:before {
    transform: rotate(180deg);
    transition: transform 0.3s ease;
  }
  .nav-mobile-menu > ul > li .moreMenu.active:after {
    transform: rotate(90deg);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.6s ease;
  }
  .nav-mobile-menu > ul > li.menu-item-has-children .sub-menu {
    max-height: 0;
    overflow: hidden;
    padding-left: 20px;
    transition: max-height 0.5s ease;
    list-style-type: none;
  }
  .nav-mobile-menu > ul > li.menu-item-has-children .sub-menu:before {
    content: "";
    position: absolute;
    top: 30px;
    left: 0;
    width: 1px;
    height: calc(100% - 44px);
    background: rgba(255, 255, 255, 0.5);
  }
  .nav-mobile-menu > ul > li.menu-item-has-children .sub-menu li {
    position: relative;
    margin-bottom: 20px;
  }
  .nav-mobile-menu > ul > li.menu-item-has-children .sub-menu li:before {
    content: "";
    position: absolute;
    top: 12px;
    left: -20px;
    width: 10px;
    height: 1px;
    background: rgba(255, 255, 255, 0.5);
  }
  .nav-mobile-menu > ul > li.menu-item-has-children .sub-menu li:first-child {
    margin-top: 20px;
  }
  .nav-mobile-menu > ul > li.menu-item-has-children .sub-menu li:last-child {
    margin-bottom: unset;
  }
  .nav-mobile-menu > ul > li.menu-item-has-children .sub-menu li a {
    display: block;
  }
  .nav-mobile-menu > ul > li.button a {
    display: inline-block;
    background: #FFFFFF;
    padding: 5px 20px;
    color: #22212C;
    transition: background-color 0.3s ease;
  }
  .nav-mobile-menu > ul > li.button a i {
    margin-right: 10px;
  }
  .nav-mobile-menu > ul > li.button a:before {
    display: none;
  }
  .nav-mobile-headband .nav-mobile-buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    list-style-type: none;
  }
  .nav-mobile-tools {
    list-style-type: none;
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}
.breadcrumbs {
  z-index: 5;
  position: relative;
  overflow-x: scroll;
  overflow-y: visible;
  width: 100%;
  max-width: calc(100vw - 40px);
  scrollbar-width: none;
  color: #22212C;
  font-size: 0.8rem;
}
.breadcrumbs::-webkit-scrollbar {
  display: none;
  height: 0;
}
.breadcrumbs > span {
  white-space: nowrap;
}
.breadcrumbs > span span {
  color: #22212C;
}
.breadcrumbs > span span a {
  position: relative;
  display: inline-block;
  color: #22212C;
  font-weight: bold;
  white-space: nowrap;
  text-decoration: none;
}
.breadcrumbs > span span a:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #3497DB;
  transition: width 0.3s ease;
}
.breadcrumbs > span span a:hover:before {
  width: 100%;
  transition: width 0.3s ease;
}
.breadcrumbs > span span.breadcrumb_last {
  color: #22212C;
}
.breadcrumbs.base {
  color: #FFFFFF;
}
.breadcrumbs.base > span span {
  color: #FFFFFF;
}
.breadcrumbs.base > span span a {
  color: #FFFFFF;
}
.breadcrumbs.base > span span.breadcrumb_last {
  color: #FFFFFF;
}

.social {
  z-index: 10;
  position: relative;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  gap: 20px;
  list-style-type: none;
}
.social *:not(.container):not(.container-md):not(.container-sm) {
  margin: 0;
}
.social-item a {
  position: relative;
  display: inline-block;
  width: 50px;
  height: 50px;
}
.social-item a:before, .social-item a:after {
  z-index: 0;
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  width: 50px;
  height: 50px;
  border-radius: 10px;
}
.social-item a:before {
  transform: translate(-50%, -50%) scale(1);
  background: white;
}
.social-item a:after {
  z-index: 1;
  transform: translate(-50%, -50%) scale(0);
}
.social-item a i {
  z-index: 2;
  position: relative;
  top: 12px;
  left: 12px;
  font-size: 1.8rem;
  transition: color 0.3s ease;
}
.social-item a p {
  position: absolute;
  top: calc(100% + 10px);
  width: auto;
  padding: 5px 10px;
  border-radius: 50px;
  white-space: nowrap;
  opacity: 0;
  font-size: 0.8rem;
  pointer-events: none;
  transition: opacity 0.3s ease, top 0.3s ease;
}
.social-item a p:before {
  content: "";
  position: absolute;
  bottom: calc(100% - 1px);
  width: 15px;
  height: 10px;
  clip-path: polygon(50% 50%, 0% 100%, 100% 100%);
}
.social-item a:hover:before {
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.3s ease;
}
.social-item a:hover:after {
  transform: translate(-50%, -50%) scale(1);
  transition: transform 0.3s ease;
}
.social-item a:hover i {
  transition: color 0.3s ease;
}
.social-item a:hover p {
  top: calc(100% + 10px);
  opacity: 1;
  pointer-events: all;
  transition: opacity 0.3s ease, top 0.3s ease;
}
.social.center .social-item a p {
  left: 50%;
  transform: translateX(-50%);
}
.social.center .social-item a p:before {
  left: 50%;
  transform: translateX(-50%);
}
.social.left .social-item a p {
  left: -5px;
}
.social.left .social-item a p:before {
  left: 20px;
}
.social.right .social-item a p {
  right: -5px;
}
.social.right .social-item a p:before {
  right: 20px;
}
.social.icon-base .social-item a i {
  color: #FFFFFF;
}
.social.icon-base .social-item a:after {
  background: #FFFFFF;
}
.social.icon-base .social-item a:hover i {
  color: #22212C;
}
.social.icon-contrast .social-item a i {
  color: #22212C;
}
.social.icon-contrast .social-item a:after {
  background: #22212C;
}
.social.icon-contrast .social-item a:hover i {
  color: #FFFFFF;
}
.social.icon-primary .social-item a i {
  color: #3497DB;
}
.social.icon-primary .social-item a:after {
  background: #3497DB;
}
.social.icon-primary .social-item a:hover i {
  color: #FFFFFF;
}
.social.icon-secondary .social-item a i {
  color: #E67D21;
}
.social.icon-secondary .social-item a:after {
  background: #E67D21;
}
.social.icon-secondary .social-item a:hover i {
  color: #22212C;
}
.social.tool-text-base .social-item a p {
  color: #FFFFFF;
}
.social.tool-text-contrast .social-item a p {
  color: #22212C;
}
.social.tool-text-primary .social-item a p {
  color: #3497DB;
}
.social.tool-text-secondary .social-item a p {
  color: #E67D21;
}
.social.tool-bg-base .social-item a p {
  background: #FFFFFF;
}
.social.tool-bg-base .social-item a p:before {
  background: #FFFFFF;
}
.social.tool-bg-contrast .social-item a p {
  background: #22212C;
}
.social.tool-bg-contrast .social-item a p:before {
  background: #22212C;
}
.social.tool-bg-primary .social-item a p {
  background: #3497DB;
}
.social.tool-bg-primary .social-item a p:before {
  background: #3497DB;
}
.social.tool-bg-secondary .social-item a p {
  background: #E67D21;
}
.social.tool-bg-secondary .social-item a p:before {
  background: #E67D21;
}

.cp-newsletter *:not(.container):not(.container-md):not(.container-sm) {
  margin: 0;
}
.cp-newsletter-container {
  padding: clamp(20px, 2.7vw, 40px);
  border-radius: 20px;
  background: #3497DB;
  color: #FFFFFF;
  display: grid;
  grid-template-columns: 1fr 40%;
  grid-gap: clamp(20px, 2.7vw, 40px);
}
.cp-newsletter-container .cp-newsletter-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cp-newsletter-container .cp-newsletter-content .surtitle {
  position: relative;
  padding-left: 80px;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-family: var(--wp--preset--font-family--heading);
}
.cp-newsletter-container .cp-newsletter-content .surtitle:before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 60px;
  height: 3px;
  background: #FFFFFF;
}
.cp-newsletter-container .cp-newsletter-content .title {
  position: relative;
  color: #FFFFFF;
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 2px;
  text-transform: uppercase;
}
[data-reveal] {
  opacity: 0;
  translate: 0 100px;
  transition: translate 0.3s ease, opacity 0.3s ease;
}

.cp-entete {
  position: relative;
}
.cp-entete-container {
  position: relative;
}
.cp-entete-container .cp-entete-content {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: clamp(20px, 5.4vw, 80px);
  padding-bottom: clamp(60px, 8.1vw, 120px);
  border-radius: 10px;
  overflow: hidden;
}
.cp-entete-container .cp-entete-content .cp-entete-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cp-entete-container .cp-entete-content .cp-entete-background-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 33, 44, 0.3);
}
.cp-entete-container .cp-entete-content .cp-entete-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cp-entete-container .cp-entete-content .cp-entete-breadcrumbs {
  margin: 0;
}
.cp-entete-container .cp-entete-content .cp-entete-text {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 20px;
  color: #FFFFFF;
  max-width: 70%;
}
@media screen and (max-width: 992px) {
  .cp-entete-container .cp-entete-content .cp-entete-text {
    max-width: 100%;
  }
}
.cp-entete-container .cp-entete-content .cp-entete-text h1 {
  color: #FFFFFF;
  margin: 0;
}
.cp-entete-container .cp-entete-content .cp-entete-text p {
  margin: 0;
}
.cp-entete-container .cp-entete-content .cp-entete-text ul {
  margin: 0;
  list-style-type: none;
  padding-left: 20px;
}
.cp-entete-container .cp-entete-content .cp-entete-text ul li {
  position: relative;
}
.cp-entete-container .cp-entete-content .cp-entete-text ul li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: -20px;
  width: 10px;
  height: 3px;
  background: #E67D21;
}
.cp-entete-container .cp-entete-content .cp-entete-button {
  margin: 0;
  font-size: 0;
}
.cp-entete-container .cp-entete-content .cp-entete-button a {
  font-size: 1rem;
}

.button {
  position: relative;
  text-align: center;
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
}
.button.bg-contrast .button-container {
  background: #22212C;
}
.button.bg-base .button-container {
  background: #FFFFFF;
}
.button.bg-primary .button-container {
  background: #3497DB;
}
.button.bg-secondary .button-container {
  background: #E67D21;
}
.button-container {
  display: block;
  position: relative;
  padding: 0px 20px;
  border-radius: 10px;
  line-height: 50px;
  overflow: hidden;
}
.button-container .button-text {
  z-index: 1;
  position: relative;
  white-space: nowrap;
}
.button-container .button-text.color-contrast {
  color: #22212C;
}
.button-container .button-text.color-base {
  color: #FFFFFF;
}
.button-container .button-text.color-primary {
  color: #3497DB;
}
.button-container .button-text.color-secondary {
  color: #E67D21;
}
.button-container:before {
  z-index: 0;
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border-radius: 10px 0 0 10px;
  left: -20px;
  width: 0;
  height: 50px;
  clip-path: polygon(0 0, 100% 0%, 75% 100%, 0% 100%);
  transition: width 0.3s ease, animation 0.3s ease;
}
.bg-contrast .button-container:before {
  background: #393749;
}
.bg-base .button-container:before {
  background: #e6e6e6;
}
.bg-primary .button-container:before {
  background: #217cbb;
}
.bg-secondary .button-container:before {
  background: #bf6415;
}
.button-container:hover:before {
  width: calc(50% + 40px);
  transition: width 0.3s ease, animation 0.3s ease;
}
.button .button-under {
  margin-top: 10px;
  line-height: 20px;
}

.cp-banniere-container {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  background: #D6ECF8;
  padding: 20px;
  border-radius: 10px;
}
.cp-banniere-container .cp-banniere-text {
  flex: 1;
}
.cp-banniere-container .cp-banniere-text h1, .cp-banniere-container .cp-banniere-text h2, .cp-banniere-container .cp-banniere-text h3, .cp-banniere-container .cp-banniere-text h4, .cp-banniere-container .cp-banniere-text h5, .cp-banniere-container .cp-banniere-text h6, .cp-banniere-container .cp-banniere-text p, .cp-banniere-container .cp-banniere-text ul {
  margin: 0 !important;
}
.cp-banniere-container .cp-banniere-text h3 {
  font-size: clamp(20px, 1.6vw, 24px);
}
.cp-banniere-container .cp-banniere-text p {
  font-size: clamp(14px, 1vw, 16px);
}
.cp-banniere-container .cp-banniere-media {
  pointer-events: none;
  position: relative;
  height: 100%;
  width: clamp(100px, 10.1vw, 150px);
}
.cp-banniere-container .cp-banniere-media figure {
  position: relative;
  bottom: -20px;
  width: 100%;
  min-height: 80px;
}
.cp-banniere-container .cp-banniere-media figure img {
  position: absolute;
  bottom: 0;
  right: 0;
  max-height: 160px;
}
@media screen and (max-width: 992px) {
  .cp-banniere-container {
    flex-wrap: wrap;
  }
  .cp-banniere-container .cp-banniere-text {
    flex-basis: 100%;
  }
  .cp-banniere-container .cp-banniere-media figure img {
    right: unset;
    left: 0;
  }
}
.cp-card-service {
  position: relative;
  width: 100%;
  border-radius: 10px;
  height: 100%;
  padding: 20px;
  overflow: hidden;
  cursor: pointer;
}
.cp-card-service-background {
  z-index: 0;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.cp-card-service-background .overlay {
  z-index: 1;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 33, 44, 0.5);
  transition: background-color 0.3s ease;
}
.cp-card-service-background .overlay:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background: radial-gradient(circle, rgba(34, 33, 44, 0.5) 0%, rgba(34, 33, 44, 0) 100%);
  transition: opacity 0.3s ease;
}
.cp-card-service-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.3s ease;
}
.cp-card-service-container {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(10px, 1.3vw, 20px);
  height: 100%;
  min-height: 400px;
  justify-content: space-between;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
@media screen and (max-width: 1200px) {
  .cp-card-service-container {
    min-height: auto;
  }
}
.cp-card-service-container .cp-card-service-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: auto;
}
.cp-card-service-container .cp-card-service-content h1, .cp-card-service-container .cp-card-service-content h2, .cp-card-service-container .cp-card-service-content h3, .cp-card-service-container .cp-card-service-content h4, .cp-card-service-container .cp-card-service-content h5, .cp-card-service-container .cp-card-service-content h6, .cp-card-service-container .cp-card-service-content p, .cp-card-service-container .cp-card-service-content ul, .cp-card-service-container .cp-card-service-content ol {
  margin: 0;
  color: #FFFFFF;
}
.cp-card-service-container .cp-card-service-content p {
  font-size: clamp(14px, 1vw, 16px);
  transition: opacity 0.3s ease;
}
.cp-card-service-container .cp-card-service-content h1, .cp-card-service-container .cp-card-service-content h2, .cp-card-service-container .cp-card-service-content h3, .cp-card-service-container .cp-card-service-content h4, .cp-card-service-container .cp-card-service-content h5, .cp-card-service-container .cp-card-service-content h6 {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: bold;
}
.cp-card-service-container .cp-card-service-content hr {
  width: 100px;
  border-top: 1px solid #D6ECF8;
  transition: opacity 0.3s ease;
}
.cp-card-service-container .cp-card-service-button {
  font-size: 0;
}
.cp-card-service-container .cp-card-service-button .button {
  font-size: clamp(14px, 1vw, 16px);
}
.cp-card-service-hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
.cp-card-service-hover-content {
  margin-bottom: 20px;
}
.cp-card-service-hover-content h1, .cp-card-service-hover-content h2, .cp-card-service-hover-content h3, .cp-card-service-hover-content h4, .cp-card-service-hover-content h5, .cp-card-service-hover-content h6 {
  text-transform: uppercase;
  font-size: 1.1rem;
  font-weight: bold;
  position: relative;
  margin: 0;
  color: #FFFFFF;
  text-align: center;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cp-card-service-hover-content p, .cp-card-service-hover-content ul, .cp-card-service-hover-content ol, .cp-card-service-hover-content hr {
  display: none;
}
.cp-card-service-hover-button {
  position: relative;
  font-size: 0;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.2s;
}
.cp-card-service-hover-button .button {
  font-size: clamp(14px, 1vw, 16px);
}
.cp-card-service:hover .cp-card-service-background .overlay {
  transition: background-color 0.3s ease;
  background: rgba(34, 33, 44, 0);
}
.cp-card-service:hover .cp-card-service-background .overlay:before {
  opacity: 1;
  transition: opacity 0.3s ease;
}
.cp-card-service:hover .cp-card-service-background img {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}
.cp-card-service:hover .cp-card-service-container {
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  pointer-events: none;
}
.cp-card-service:hover .cp-card-service-hover {
  opacity: 1;
  transition: opacity 0.3s ease;
  transition-delay: 0.2s;
  pointer-events: all;
}
.cp-card-service:hover .cp-card-service-hover-content h1, .cp-card-service:hover .cp-card-service-hover-content h2, .cp-card-service:hover .cp-card-service-hover-content h3, .cp-card-service:hover .cp-card-service-hover-content h4, .cp-card-service:hover .cp-card-service-hover-content h5, .cp-card-service:hover .cp-card-service-hover-content h6 {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.cp-card-service:hover .cp-card-service-hover-button {
  opacity: 1;
  transform: translateY(0px);
  transition: opacity 0.3s ease, transform 0.3s ease;
  transition-delay: 0.1s;
}

.cp-card-offre {
  background: #FFFFFF;
  border-radius: 10px;
  box-shadow: 0 0 40px rgba(34, 33, 44, 0.1);
  padding: 20px;
}
.cp-card-offre-title {
  text-align: center;
  margin: 0;
  font-weight: bold;
  margin-top: 30px;
  margin-bottom: 10px;
}
.cp-card-offre-subtitle {
  margin: 0;
  text-align: center;
  text-transform: uppercase;
  color: rgba(34, 33, 44, 0.7);
  margin-bottom: 30px;
}
.cp-card-offre hr {
  margin: 0;
  border-top: 1px solid rgba(34, 33, 44, 0.7);
  margin-bottom: 20px;
}
.cp-card-offre-pricing-text {
  margin: 0;
  font-size: 0.8rem;
  text-align: center;
  margin-bottom: 20px;
}
.cp-card-offre-pricing-row {
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 10px;
  margin-bottom: 30px;
}
.cp-card-offre-pricing-row-amount {
  margin: 0;
  font-size: 45px;
  font-weight: bold;
  color: #E67D21;
}
.cp-card-offre-pricing-row-conditions {
  margin: 0;
  font-size: 0.9rem;
  color: rgba(34, 33, 44, 0.7);
}
.cp-card-offre-checklist {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
  margin-bottom: 20px;
}
.cp-card-offre-checklist li {
  display: flex;
  align-items: center;
  gap: 10px;
}
.cp-card-offre-checklist li.croix {
  color: rgba(34, 33, 44, 0.5);
}
.cp-card-offre-checklist li.croix i {
  color: rgba(34, 33, 44, 0.3);
}
.cp-card-offre-checklist li.check i {
  color: #E67D21;
}
.cp-card-offre-content {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.cp-card-offre-content > * {
  margin: 0;
}
.cp-card-offre-content ul {
  list-style-type: none;
  padding-left: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.cp-card-offre-content ul li {
  position: relative;
  padding-left: 20px;
}
.cp-card-offre-content ul li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 3px;
  background: #3497DB;
}
.cp-card-offre-button {
  display: flex;
}
.cp-card-offre-button .button {
  flex: 1;
  font-size: clamp(14px, 1vw, 16px);
}

.cp-requete-header {
  display: flex;
  flex-direction: row;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid rgba(52, 151, 219, 0.2);
  margin-bottom: clamp(20px, 2vw, 30px);
}
.cp-requete-header h2 {
  font-size: clamp(25px, 2vw, 30px);
  margin: 0;
  line-height: 50px;
}
.cp-requete-header .cp-requete-more {
  color: #3497DB;
  text-decoration: underline;
  cursor: pointer;
  line-height: 50px;
}
.cp-requete-header .cp-requete-more:hover {
  text-decoration: none;
}
.cp-requete-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: clamp(20px, 2.7vw, 40px);
  list-style-type: none;
}
.cp-requete-more {
  display: flex;
  justify-content: center;
}

@media screen and (max-width: 992px) {
  .cp-requete-list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 768px) {
  .cp-requete-list {
    grid-template-columns: repeat(1, 1fr);
  }
}
.cp-requete-taxonomies {
  list-style-type: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: clamp(20px, 2.7vw, 40px);
}
.cp-requete-taxonomies li {
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .cp-requete-taxonomies {
    grid-template-columns: repeat(2, 1fr);
  }
}

.cp-requete-lexique {
  display: flex;
  gap: 20px;
}
.cp-requete-lexique-menu {
  top: 30px;
  position: sticky;
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: 30px;
  text-align: left;
  height: fit-content;
  align-self: flex-start;
  max-height: calc(100vh - 60px);
  transition: top 0.3s ease, max-height 0.3s ease;
}
.cp-requete-lexique-menu.headerOpen {
  top: 100px;
  max-height: calc(100vh - 130px);
  transition: top 0.3s ease, max-height 0.3s ease;
}
.cp-requete-lexique-list {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2.7vw, 40px);
}
.cp-requete-lexique-list h2 {
  position: sticky;
  top: 30px;
  margin: 0;
  height: fit-content;
  align-self: flex-start;
  transition: top 0.3s ease;
}
.cp-requete-lexique-list h2.headerOpen {
  top: 100px;
  transition: top 0.3s ease;
}
.cp-requete-lexique-list .cp-requete-lexique-section {
  position: relative;
  display: flex;
  gap: clamp(20px, 2.7vw, 40px) 20px;
}
.cp-requete-lexique-list .cp-requete-lexique-section-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-gap: clamp(20px, 2.7vw, 40px);
}
.cp-requete-lexique-list .cp-requete-lexique-section-item .cp-requete-lexique-item h3 {
  margin: 0;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(34, 33, 44, 0.3);
  padding-bottom: 5px;
}
.cp-requete-lexique-list .cp-requete-lexique-section-item .cp-requete-lexique-item-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.cp-requete-lexique-list .cp-requete-lexique-section-item .cp-requete-lexique-item-content > * {
  margin: 0;
}
.cp-requete-lexique-list .cp-requete-lexique-section-item .cp-requete-lexique-item-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
  padding-left: 0;
}
.cp-requete-lexique-list .cp-requete-lexique-section-item .cp-requete-lexique-item-content ul li {
  position: relative;
  padding-left: 20px;
}
.cp-requete-lexique-list .cp-requete-lexique-section-item .cp-requete-lexique-item-content ul li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 3px;
  background: #3497DB;
}

.cp-category {
  position: relative;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 10px;
  padding: 20px;
  border-radius: 10px;
  min-height: 200px;
  overflow: hidden;
  cursor: pointer;
}
.cp-category-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: transform 0.3s ease;
}
.cp-category-background .overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(34, 33, 44, 0.5);
}
.cp-category-background img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.cp-category a {
  position: relative;
  color: #FFFFFF;
  text-decoration: none;
  font-weight: bold;
}
.cp-category p {
  position: relative;
  color: #FFFFFF;
  margin: 0;
}
.cp-category:hover .cp-category-background {
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

.cp-blog-post {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 20px 0;
  cursor: pointer;
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.cp-blog-post-image {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  overflow: hidden;
  padding: 0px;
  transition: padding 0.3s ease;
}
.cp-blog-post-image img {
  width: 100%;
  height: 100%;
  border-radius: 10px;
  object-fit: cover;
  object-position: center;
}
.cp-blog-post-content {
  padding: 0 20px;
  transition: padding 0.3s ease;
}
.cp-blog-post-content h3 {
  margin: 0;
}
.cp-blog-post-content h3 a {
  color: #22212C;
  text-decoration: none;
  font-size: clamp(18px, 1.35vw, 20px);
  line-height: 1;
  font-weight: bold;
}
.cp-blog-post-content ul {
  display: flex;
  flex-direction: row;
  gap: 10px;
  list-style-type: none;
}
.cp-blog-post:hover {
  border-radius: 10px;
  box-shadow: 0 20px 40px rgba(34, 33, 44, 0.1);
  transition: padding 0.3s ease, box-shadow 0.3s ease;
}
.cp-blog-post:hover .cp-blog-post-image {
  padding: 0 20px;
  transition: padding 0.3s ease;
}
.cp-blog-post:hover .cp-blog-post-content {
  transition: padding 0.3s ease;
}

.cp-section-select {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 60px;
  padding: 0 20px;
  border-radius: 10px;
  border: 1px solid #3497DB;
  text-align: center;
  background: #D6ECF8;
  color: #22212C;
  font-size: 1rem;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.cp-section-select:before {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 0px solid transparent;
  border-right: 0px solid transparent;
  border-top: 0px solid #22212C;
  transition: border 0.3s ease;
}
.cp-section-select.active {
  background: #22212C;
  color: #FFFFFF;
  border: 1px solid #22212C;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.cp-section-select.active:before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #22212C;
  transition: border 0.3s ease;
}
.cp-section-select:hover {
  background: #22212C;
  color: #FFFFFF;
  border: 1px solid #22212C;
  transition: background-color 0.3s ease, color 0.3s ease, border 0.3s ease;
}
.cp-section-select:hover:before {
  border-left: 10px solid transparent;
  border-right: 10px solid transparent;
  border-top: 10px solid #22212C;
  transition: border 0.3s ease;
}

.lexique-tooltip {
  position: absolute;
  background: #FFFFFF;
  border: 1px solid rgba(34, 33, 44, 0.3);
  box-shadow: 0 2px 10px rgba(34, 33, 44, 0.1);
  padding: 15px;
  max-width: 400px;
  max-height: 400px;
  overflow: scroll;
  z-index: 1000;
  border-radius: 4px;
  font-size: 14px;
  line-height: 1.4;
}
.lexique-tooltip.loading {
  padding: 10px;
  text-align: center;
}
.lexique-tooltip h3 {
  margin-top: 0;
  margin-bottom: 10px;
  color: rgba(34, 33, 44, 0.7);
  font-size: 16px;
  border-bottom: 1px solid rgba(34, 33, 44, 0.3);
  padding-bottom: 5px;
}
.lexique-tooltip-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.lexique-tooltip-content > * {
  margin: 0;
}
.lexique-tooltip-content ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
  padding-left: 0;
}
.lexique-tooltip-content ul li {
  position: relative;
  padding-left: 20px;
}
.lexique-tooltip-content ul li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 3px;
  background: #3497DB;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border: 0;
  background: #c0392b;
  color: #FFFFFF;
  margin: clamp(20px, 2vw, 30px) 0;
  padding: 10px 20px;
}
.wpcf7 form.sent .wpcf7-response-output {
  border: 0;
  background: #2FCE83;
  color: #FFFFFF;
  padding: 10px 20px;
  margin: clamp(20px, 2vw, 30px) 0;
}
.wpcf7 .wpcf7-not-valid-tip {
  position: absolute;
  bottom: calc(100% + 3px);
  right: 10px;
  color: #c0392b;
  font-size: 0.6rem;
}
.wpcf7 .optin {
  margin-bottom: clamp(20px, 2vw, 30px);
}
.wpcf7 .optin label {
  display: flex;
}
.wpcf7 .optin label .wpcf7-list-item-label {
  order: 2;
}
.wpcf7 .optin label input {
  order: 1;
}
.wpcf7 .optin .wpcf7-list-item {
  display: flex;
  justify-content: flex-start;
  margin-left: 0;
}
.wpcf7 .optin .wpcf7-list-item-label {
  opacity: 0.8;
  font-size: 0.9rem;
}
.wpcf7 .optin input[type=checkbox] {
  width: 30px;
  height: 30px;
  min-width: 30px;
  border-radius: 5px;
  border: 1px solid #22212C;
  margin-right: clamp(10px, 1.3vw, 20px);
}
.wpcf7 .optin .wpcf7-not-valid-tip {
  position: absolute;
  left: 0;
  right: unset;
  font-size: 0.6rem;
}
.wpcf7 .submit {
  text-align: left;
}
.wpcf7 .submit br {
  display: none;
}
.wpcf7 .submit button {
  background: #E67D21;
  color: #FFFFFF;
  font-size: 1rem;
  border: 0;
  border-radius: 10px;
  cursor: pointer;
}

.acsForm {
  z-index: 0;
  position: relative;
}
.acsForm:before {
  z-index: 0;
  content: "";
  position: absolute;
  top: 25px;
  left: -25px;
  width: calc(100% + 50px);
  height: calc(100% - 50px);
  background: #D6ECF8;
  border-radius: 10px;
}
.acsForm-container {
  z-index: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: clamp(20px, 2vw, 30px);
  margin-bottom: clamp(20px, 2vw, 30px);
}
.acsForm-container .row {
  display: flex;
  justify-content: space-between;
  gap: clamp(20px, 2vw, 30px);
}
.acsForm-container .row > * {
  flex: 1;
}
.acsForm-container .input {
  position: relative;
}
.acsForm-container .input p {
  margin: 0;
}
.acsForm-container .input br {
  display: none;
}
.acsForm-container .input label {
  z-index: 1;
  position: absolute;
  top: 13px;
  left: 20px;
  color: #22212C;
  pointer-events: none;
  font-size: 1rem;
  transition: font-size 0.3s ease, top 0.3s ease;
}
.acsForm-container .input label.active {
  font-size: 0.6rem;
  top: 3px;
  transition: font-size 0.3s ease, top 0.3s ease;
}
.acsForm-container .input input[type=text],
.acsForm-container .input input[type=email],
.acsForm-container .input input[type=tel] {
  z-index: 0;
  position: relative;
  display: block;
  width: 100%;
  padding-left: 20px;
  padding-top: 2px;
  border: 0;
  background: #FFFFFF;
  color: #22212C;
  border-radius: 10px;
  border: 1px solid #3497DB;
  height: 50px;
  font-size: 1rem;
  font-family: var(--wp--preset--font-family--body);
}
.acsForm-container .input textarea {
  display: block;
  width: 100%;
  height: 330px;
  padding: 16px 20px 30px;
  border: unset;
  resize: none;
  background: #FFFFFF;
  color: #22212C;
  border-radius: 10px;
  border: 1px solid #22212C;
  font-size: 1rem;
  font-family: var(--wp--preset--font-family--body);
}

@media screen and (max-width: 768px) {
  .acsForm-container .row {
    flex-direction: column;
  }
}
@media screen and (max-width: 992px) {
  .block-banniere {
    margin-top: 40px !important;
  }
}
.block-taxonomies {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  height: 100%;
}

.block-section-select ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  gap: 10px;
  list-style-type: none;
}
.block-section-select ul li {
  flex: 1;
}

@media screen and (max-width: 992px) {
  .block-section-select ul {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 10px;
  }
}
@media screen and (max-width: 768px) {
  .block-section-select ul {
    grid-template-columns: repeat(2, 1fr);
  }
}
.block-section-start {
  display: none;
}
.block-section-start .alignwide, .block-section-start .alignfull {
  left: 50%;
  transform: translateX(-50%);
  margin-left: 0;
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  .block-section-start .alignwide, .block-section-start .alignfull {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
}
.block-section-start .alignLarge {
  max-width: 1480px !important;
  width: 1220px !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
.block-section-start.active {
  display: block;
}

ul.wp-block-list {
  padding-left: 20px;
}
ul.wp-block-list li {
  position: relative;
  list-style-type: none;
  margin-bottom: 10px;
}
ul.wp-block-list li:before {
  content: "";
  position: absolute;
  left: -20px;
  top: 11px;
  width: 10px;
  height: 3px;
  background: #E67D21;
}

ol.wp-block-list {
  padding-left: 20px;
}
ol.wp-block-list li {
  position: relative;
  margin-bottom: 10px;
}
ol.wp-block-list li::marker {
  color: #E67D21;
}

.wp-block-page-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 0;
  list-style-type: none;
}
.wp-block-page-list li {
  position: relative;
  padding-left: 20px;
}
.wp-block-page-list li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 3px;
  background: #3497DB;
}
.wp-block-page-list li a {
  color: #22212C;
  transition: color 0.3s ease;
}
.wp-block-page-list li a:hover {
  color: #3497DB;
  transition: color 0.3s ease;
}
.wp-block-page-list li .wp-block-navigation__submenu-container {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
}

.wp-block-latest-posts {
  display: flex;
  flex-direction: column;
  gap: 10px;
  list-style-type: none;
}
.wp-block-latest-posts li {
  position: relative;
  padding-left: 20px;
}
.wp-block-latest-posts li:before {
  content: "";
  position: absolute;
  top: 12px;
  left: 0;
  width: 10px;
  height: 3px;
  background: #3497DB;
}
.wp-block-latest-posts li a {
  color: #22212C;
  transition: color 0.3s ease;
}
.wp-block-latest-posts li a:hover {
  color: #3497DB;
  transition: color 0.3s ease;
}

.alignLarge {
  position: relative;
  max-width: 1320px !important;
  width: calc(100% - 260px) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}
@media screen and (max-width: 1480px) {
  .alignLarge {
    max-width: 1480px !important;
    width: calc(100% - 260px) !important;
  }
}
@media screen and (max-width: 992px) {
  .alignLarge {
    max-width: 1480px !important;
    width: clamp(728px, 67vw, 992px) !important;
  }
}
@media screen and (max-width: 808px) {
  .alignLarge {
    margin-left: 20px !important;
    margin-right: 20px !important;
    width: calc(100% - 40px) !important;
  }
}
@media screen and (max-width: 768px) {
  .alignLarge {
    padding-left: unset;
    padding-right: unset;
  }
}

.acs-custom-chalandise-content {
  padding-right: 20% !important;
}
.acs-custom-chalandise-image {
  height: 100%;
}
.acs-custom-chalandise-image img {
  height: 100%;
  width: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  object-fit: contain !important;
  object-position: center;
}
.acs-custom-chalandise .button-under {
  color: #FFFFFF;
}

@media screen and (max-width: 781px) {
  .acs-custom-chalandise {
    background: #22212C;
    border-radius: 10px;
  }
  .acs-custom-chalandise-content {
    padding-right: 0 !important;
  }
  .acs-custom-chalandise-image {
    height: 100%;
    padding: 20px;
  }
  .acs-custom-chalandise-image img {
    width: 100%;
    position: relative;
  }
}
@media screen and (max-width: 1200px) {
  .acs-custom-services {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-gap: clamp(20px, 2.7vw, 40px) !important;
  }
}
@media screen and (max-width: 992px) {
  .acs-custom-services {
    display: grid !important;
    grid-template-columns: 1fr 1fr !important;
    grid-gap: clamp(20px, 2.7vw, 40px) !important;
  }
}
@media screen and (max-width: 768px) {
  .acs-custom-services {
    grid-template-columns: 1fr !important;
  }
}/*# sourceMappingURL=style.css.map */