header.wp-block-template-part {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--wp--preset--color--base);
  z-index: 50;
  box-sizing: border-box;
}
body.admin-bar header.wp-block-template-part {
  top: var(--wp-admin--admin-bar--height);
}

.wp-block-lcdz-bloc-header {
  display: flex;
  justify-content: space-between;
  padding: 45px 65px;
  transition: padding 0.3s;
}
@media screen and (max-width: 1150px) {
  .wp-block-lcdz-bloc-header {
    padding: 45px 25px;
  }
}
@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-header {
    padding: 25px;
  }
}
.wp-block-lcdz-bloc-header.scroll {
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-header.scroll {
    padding-top: 5px;
    padding-bottom: 5px;
  }
}
.wp-block-lcdz-bloc-header.scroll.ouvert {
  padding-top: 45px;
  padding-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-header.scroll.ouvert {
    padding-top: 25px;
    padding-bottom: 25px;
  }
}

.header-logoBaseline {
  display: flex;
  align-items: center;
  gap: 3px 15px;
}
@media screen and (max-width: 768px) {
  .header-logoBaseline {
    flex-direction: column;
  }
}

.header-logo {
  width: 150px;
  transition: opacity 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header-logo {
    width: auto;
    height: 36px;
  }
}
.header-logo svg {
  width: 100%;
  height: 100%;
}

.header-baseline {
  width: 130px;
  margin-top: 15px;
}
@media screen and (max-width: 768px) {
  .header-baseline {
    width: auto;
    height: 23px;
    margin-top: 0;
  }
}
.header-baseline svg {
  width: 100%;
  height: 100%;
}

.header-CTAMenu {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header-cta {
  position: relative;
  z-index: 45;
}
@media screen and (max-width: 768px) {
  .header-cta {
    display: none;
  }
}

#header-toggleMenu {
  position: relative;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 50;
}
#header-toggleMenu .toggleMenu-croix {
  display: none;
}
#header-toggleMenu .toggleMenu-croix svg {
  filter: none;
}
#header-toggleMenu .toggleMenu-burger {
  display: block;
}
#header-toggleMenu.ouvert .toggleMenu-burger {
  display: none;
}
#header-toggleMenu.ouvert .toggleMenu-croix {
  display: block;
}

#header-menu {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 40;
  background-color: var(--wp--preset--color--accent-3);
  display: flex;
  flex-direction: column;
}
#header-menu:not(.ouvert) {
  display: none;
}

.header-menu-top {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 45px 65px;
}
@media screen and (max-width: 768px) {
  .header-menu-top {
    padding: 25px;
  }
}

.header-menu-logoBaseline {
  display: flex;
  align-items: center;
  flex-direction: column;
}

.header-menu-logo {
  width: 150px;
}
.header-menu-logo svg {
  width: 100%;
  height: 100%;
}

.header-menu-baseline {
  width: 130px;
}
.header-menu-baseline svg {
  width: 100%;
  height: 100%;
}

.header-menu-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  max-width: var(--wp--style--global--content-size);
  margin: auto;
  width: 100%;
  transition: grid-template-columns 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header-menu-grid {
    padding: 0 25px;
    grid-template-columns: 1fr;
  }
}
.header-menu-grid.sub-open {
  grid-template-columns: 1fr;
}
.header-menu-grid.sub-open .header-menu-references {
  display: none;
}

.header-menu-references {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto 1fr;
  gap: 12px;
  width: 22.75rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header-menu-references {
    display: none;
  }
}
.header-menu-references__title {
  margin: 0 0 6px 0;
  font-size: 25px;
  font-weight: 400;
  grid-column: 1/3;
}

.header-menu-reference {
  display: block;
  text-decoration: none;
  overflow: hidden;
  border-radius: 4px;
  height: 11rem;
}
.header-menu-reference:first-of-type {
  grid-column: 1/-1;
}
.header-menu-reference .ref-card__image {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 120px;
  box-shadow: none;
}
.header-menu-reference .ref-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.3s ease;
}
.header-menu-reference .ref-card__image img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 60%;
  max-height: 50%;
  object-fit: contain;
}
.header-menu-reference:hover .ref-card__bg {
  transform: scale(1.05);
}

.header-menu-container {
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .header-menu-container {
    padding-left: 0;
  }
}
.header-menu-container > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.563rem;
  height: 100%;
  justify-content: space-between;
  padding-left: calc(41px + 1rem);
}
@media screen and (max-width: 768px) {
  .header-menu-container > ul {
    gap: 1rem;
    padding-left: 0;
    width: 100%;
  }
}
.header-menu-container > ul li a {
  font-size: 1.875rem;
  font-weight: 700;
  line-height: normal;
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0.6rem;
  width: 100%;
  color: #324F51;
  position: relative;
  padding-left: 0;
  transition: padding-left 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header-menu-container > ul li a {
    font-size: 1.25rem;
  }
}
.header-menu-container > ul li a::before {
  content: "";
  position: absolute;
  right: calc(100% + 1rem);
  top: 50%;
  z-index: 100;
  width: 41px;
  height: 28px;
  background-image: url("../img/fleche.svg");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translate(-10px, -50%);
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.header-menu-container > ul li a:hover::before {
  opacity: 1;
  transform: translate(0, -50%);
}
.header-menu-container > ul li a[href="https://www.formation.lacouleurduzebre.com/"] .menu-bold::after {
  content: "";
  position: absolute;
  right: 1rem;
  z-index: 100;
  width: 41px;
  height: 28px;
  background-image: url("../img/external-link.svg");
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header-menu-container > ul li a[href="https://www.formation.lacouleurduzebre.com/"] .menu-bold::after {
    right: -3rem;
  }
}
.header-menu-container > ul li a[href="https://www.formation.lacouleurduzebre.com/"] .menu-bold:hover::after {
  background-image: url("../img/external-link-vert.svg");
}
.header-menu-container .sub-menu {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 1.563rem;
  height: 100%;
}
.header-menu-container .sub-menu li {
  width: 100%;
}
.header-menu-container .sub-menu li a {
  font-size: 22px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
}
.header-menu-container.sub-open {
  justify-content: flex-start;
}
.header-menu-container.sub-open > ul > li {
  display: none;
}
.header-menu-container.sub-open > ul > li.active {
  display: block;
}
.header-menu-container.sub-open > ul > li.active > a {
  display: none;
}
.header-menu-container.sub-open > ul > li.active > .sub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem 2rem;
}
@media screen and (max-width: 768px) {
  .header-menu-container.sub-open > ul > li.active > .sub-menu {
    grid-template-columns: 1fr;
    gap: 1rem;
    max-height: 40vh;
    overflow-x: scroll;
  }
}
.header-menu-container.sub-open > ul > li.active > .sub-menu .menu-back {
  grid-column: 1/-1;
}

.menu-light {
  font-weight: normal;
}

.menu-bold {
  font-weight: bold;
}

.menu-back {
  display: flex;
  align-items: center;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px 0;
  font-size: 1rem;
  color: inherit;
  margin-bottom: 10px;
  gap: 0.3rem;
}
.menu-back svg {
  flex-shrink: 0;
  padding-right: 5px;
}
.menu-back:hover {
  opacity: 0.7;
}

.header-menu-cta {
  display: none;
}
@media screen and (max-width: 768px) {
  .header-menu-cta {
    display: block;
    margin-top: 2rem;
  }
}

.header-menu-footer {
  text-align: center;
  padding: 40px 25px;
  box-sizing: border-box;
  overflow: hidden;
  max-width: 100%;
}
.header-menu-footer .header-menu-rs {
  display: flex;
  gap: 30px;
  justify-content: center;
  align-items: center;
}
.header-menu-footer .header-menu-rs p {
  font-size: 25px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .header-menu-footer .header-menu-rs p {
    font-size: 1.25rem;
    text-align: start;
  }
}
.header-menu-footer .header-menu-rs .rs {
  display: flex;
  flex-shrink: 0;
}
.header-menu-footer .header-menu-rs .rs a {
  text-decoration: none;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  background-color: var(--wp--preset--color--accent-1);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  transition: background-color 0.2s;
}
@media screen and (max-width: 768px) {
  .header-menu-footer .header-menu-rs .rs a {
    width: 40px;
    height: 40px;
  }
  .header-menu-footer .header-menu-rs .rs a svg {
    width: 20px;
    height: 20px;
  }
}
.header-menu-footer .header-menu-rs .rs a svg {
  transition: fill-color 0.2s;
}
.header-menu-footer .header-menu-rs .rs a:not(:first-child) {
  margin-left: -10px;
}
.header-menu-footer .header-menu-rs .rs a:hover, .header-menu-footer .header-menu-rs .rs a:active, .header-menu-footer .header-menu-rs .rs a:focus {
  background-color: var(--wp--preset--color--contrast);
}
.header-menu-footer .header-menu-rs .rs a:hover svg path, .header-menu-footer .header-menu-rs .rs a:active svg path, .header-menu-footer .header-menu-rs .rs a:focus svg path {
  fill: var(--wp--preset--color--accent-1);
}

header.wp-block-template-part:has(.wp-block-lcdz-bloc-header.header--archive) {
  background-color: var(--wp--preset--color--accent-4);
}
.wp-block-lcdz-bloc-header.header--archive .header-logo svg {
  filter: brightness(0) invert(1);
}
.wp-block-lcdz-bloc-header.header--archive #header-toggleMenu .toggleMenu-burger svg {
  filter: brightness(0) invert(1);
}

.wp-block-lcdz-bloc-header.header--accueil {
  padding-top: 10px;
  padding-bottom: 10px;
}
header.wp-block-template-part:has(.wp-block-lcdz-bloc-header.header--accueil) {
  background-color: var(--wp--preset--color--primary, #C4C130);
  box-shadow: 0 1px 0 0 var(--wp--preset--color--primary, #C4C130);
  transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}
.wp-block-lcdz-bloc-header.header--accueil .header-cta .wp-block-button__link {
  color: #FDFDFD;
  background-color: #263132;
}
.wp-block-lcdz-bloc-header.header--accueil #header-toggleMenu svg {
  filter: brightness(0);
}
.wp-block-lcdz-bloc-header.header--accueil .header-logo,
.wp-block-lcdz-bloc-header.header--accueil .header-baseline {
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.wp-block-lcdz-bloc-header.header--accueil .header-baseline svg path {
  fill: var(--wp--preset--color--base);
}
.wp-block-lcdz-bloc-header.header--accueil.scroll .header-logo,
.wp-block-lcdz-bloc-header.header--accueil.scroll .header-baseline {
  opacity: 1;
  pointer-events: auto;
}
.wp-block-lcdz-bloc-header.header--accueil.scroll .header-logo svg {
  filter: brightness(0) invert(1);
}
.wp-block-lcdz-bloc-header.header--accueil.scroll .header-baseline svg path {
  fill: var(--wp--preset--color--accent-1);
}
.wp-block-lcdz-bloc-header.header--accueil.scroll .header-cta .wp-block-button__link {
  background-color: var(--wp--preset--color--accent-1);
  color: #263132;
}
.wp-block-lcdz-bloc-header.header--accueil.scroll #header-toggleMenu .toggleMenu-burger svg {
  filter: brightness(0) invert(1);
}
header.wp-block-template-part:has(.wp-block-lcdz-bloc-header.header--accueil.scroll) {
  background-color: var(--wp--preset--color--accent-4);
  box-shadow: 0 1px 0 0 var(--wp--preset--color--accent-4);
}

header.wp-block-template-part {
  transition: transform 0.3s ease;
}
header.wp-block-template-part.header--hidden {
  transform: translateY(-100%);
}

footer.wp-block-template-part {
  margin: 0;
}

@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-footer {
    padding-top: 115px !important;
    padding-bottom: 0 !important;
  }
}

@keyframes etincelles {
  0% {
    transform: rotate(-10deg);
  }
  50% {
    transform: none;
  }
  100% {
    transform: rotate(10deg);
  }
}
@keyframes vagues {
  0% {
    transform: rotate(-5deg);
  }
  50% {
    transform: none;
  }
  100% {
    transform: rotate(5deg);
  }
}
.footer-photoEquipeDesktop {
  position: relative;
}
@media screen and (max-width: 1100px) {
  .footer-photoEquipeDesktop {
    max-width: calc(100% - 80px);
  }
}
@media screen and (max-width: 768px) {
  .footer-photoEquipeDesktop {
    display: none;
  }
}
.footer-photoEquipeDesktop:before, .footer-photoEquipeDesktop:after {
  display: block;
  position: absolute;
}
.footer-photoEquipeDesktop:before {
  content: url("../img/deco-footer-1.svg");
  bottom: calc(100% + 10px);
  right: -40px;
  animation: vagues 1s steps(1, jump-start) 0s infinite alternate;
}
.footer-photoEquipeDesktop:after {
  content: url("../img/deco-footer-2.svg");
  bottom: -20px;
  left: -70px;
  animation: etincelles 1s steps(1, jump-start) 0s infinite alternate;
}
.footer-photoEquipeDesktop img {
  width: 100%;
}
.footer-photosEquipeMobile {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 769px) {
  .footer-photosEquipeMobile {
    display: none;
  }
}
.footer-photosEquipeMobile:before {
  display: block;
  position: absolute;
  content: url("../img/deco-footer-mobile.svg");
  bottom: calc(100% + 10px);
  right: -15px;
}
.footer-photosEquipeMobile img {
  max-width: min(100%, 420px);
}

.footer-logoBaselineRS {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
  margin-bottom: 110px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer-logoBaselineRS {
    flex-direction: column;
    margin-top: 45px;
    margin-bottom: 35px;
  }
}
.footer-logoBaselineRS:before, .footer-logoBaselineRS:after {
  display: block;
  position: absolute;
}
.footer-logoBaselineRS:before {
  content: url("../img/deco-footer-1.svg");
  bottom: calc(100% + 10px);
  right: 0;
  animation: vagues 1s steps(1, jump-start) 0s infinite alternate;
}
@media screen and (max-width: 768px) {
  .footer-logoBaselineRS:before {
    content: url("../img/deco-footer-mobile.svg");
  }
}
.footer-logoBaselineRS:after {
  content: url("../img/deco-footer-2.svg");
  bottom: -70px;
  left: 40px;
  animation: etincelles 1s steps(1, jump-start) 0s infinite alternate;
}
@media screen and (max-width: 768px) {
  .footer-logoBaselineRS:after {
    bottom: -45px;
    left: 0;
  }
}

.footer-logo {
  width: 230px;
  margin-right: 20px;
}
@media screen and (max-width: 768px) {
  .footer-logo {
    width: 200px;
    margin-right: 0;
  }
}

.footer-baseline {
  filter: brightness(0) invert(1);
  width: 190px;
  margin-top: 20px;
  margin-right: 60px;
}
@media screen and (max-width: 768px) {
  .footer-baseline {
    width: 170px;
    margin-top: 10px;
    margin-right: 0;
    margin-bottom: 15px;
  }
}

.footer-RS {
  display: flex;
}

.footer-RS--element {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--wp--preset--color--base);
  border-radius: 50%;
  width: 55px;
  height: 55px;
  transition: background-color 0.2s;
}
.footer-RS--element:not(:first-child) {
  margin-left: -10px;
}
.footer-RS--element:hover, .footer-RS--element:active, .footer-RS--element:focus {
  background-color: var(--wp--preset--color--contrast);
}
.footer-RS--element:hover img, .footer-RS--element:active img, .footer-RS--element:focus img {
  filter: brightness(0) invert(1);
}

.footer-contactMenus {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer-contactMenus {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }
}

@media screen and (max-width: 768px) {
  .footer-contact {
    margin-bottom: 28px;
  }
}
.footer-contact p {
  margin: 0;
}
.footer-contact a {
  text-decoration: none;
}
.footer-contact a:hover, .footer-contact a:active, .footer-contact a:focus {
  text-decoration: underline;
}

.footer-tel a {
  font-weight: 500;
  font-size: 24px;
}

.footer-menu1, .footer-menu2 {
  line-height: 1.4;
}
@media screen and (max-width: 768px) {
  .footer-menu1, .footer-menu2 {
    line-height: 1.56;
  }
}
.footer-menu1 ul, .footer-menu2 ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.footer-menu1 a, .footer-menu2 a {
  text-decoration: none;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .footer-menu1 a, .footer-menu2 a {
    font-size: 16px;
  }
}
.footer-menu1 a:hover, .footer-menu1 a:active, .footer-menu1 a:focus, .footer-menu2 a:hover, .footer-menu2 a:active, .footer-menu2 a:focus {
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .footer-menu1 {
    margin-bottom: 25px;
  }
}

.footer-certifications {
  display: flex;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 60px;
  padding: 15px 10px 15px 55px;
  box-sizing: border-box;
  margin-top: 42px;
}
@media screen and (max-width: 900px) {
  .footer-certifications {
    flex-wrap: wrap;
    padding-left: 45px;
    padding-right: 45px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .footer-certifications {
    margin-left: calc(var(--wp--style--root--padding-left) * -1) !important;
    margin-right: calc(var(--wp--style--root--padding-right) * -1) !important;
    border-radius: 0;
    margin-top: 50px;
    padding-top: 32px;
  }
}
@media screen and (max-width: 768px) {
  .footer-certifications {
    padding-left: 20px;
    padding-right: 20px;
  }
}
.footer-certifications p {
  font-size: 18px;
  margin-right: 60px;
}
@media screen and (max-width: 900px) {
  .footer-certifications p {
    margin-bottom: 40px;
    margin-right: 0;
    width: 100%;
    text-align: center;
  }
}
.footer-certifications div {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 900px) {
  .footer-certifications div {
    justify-content: space-around;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .footer-certifications div {
    flex-wrap: wrap;
  }
  .footer-certifications div > * {
    width: 40%;
    justify-content: center;
  }
  .footer-certifications div img {
    width: 100%;
  }
}
.footer-certifications a, .footer-certifications span {
  display: flex;
}
.footer-certifications img {
  max-width: 160px;
  max-height: 90px;
  object-fit: contain;
}

@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-reference-accroche {
    margin-top: 25px !important;
    font-size: 16px !important;
  }
}

.wp-block-lcdz-bloc-reference-bandeau {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
  margin: 0;
  height: 670px;
}
@media screen and (max-width: 1000px) {
  .wp-block-lcdz-bloc-reference-bandeau {
    height: 530px;
  }
}
@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-reference-bandeau {
    height: 440px;
    margin-top: 55px;
    background-attachment: unset !important;
  }
}
.wp-block-lcdz-bloc-reference-bandeau:before {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(38, 49, 50, 0.3);
  z-index: 1;
}
.wp-block-lcdz-bloc-reference-bandeau img {
  max-width: min(650px, 100% - 40px);
  max-height: 80%;
  object-fit: contain;
  z-index: 2;
}
.wp-block-lcdz-bloc-reference-bandeau img.logoCouleur {
  filter: brightness(0) invert(1);
}

.wp-block-lcdz-bloc-reference-demande-client {
  margin: 0;
  background-color: #dedfe1;
}
@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-reference-demande-client {
    font-size: 14px !important;
    line-height: 1.7 !important;
    padding-top: 20px !important;
    padding-bottom: 40px !important;
  }
}
.wp-block-lcdz-bloc-reference-demande-client h2 {
  color: inherit;
  font-size: 34px;
}
@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-reference-demande-client h2 {
    font-size: 24px;
  }
}

@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-reference-reponse {
    margin-top: 90px !important;
    font-size: 14px !important;
    line-height: 1.4 !important;
  }
}
.wp-block-lcdz-bloc-reference-reponse h2 {
  font-size: 34px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-reference-reponse h2 {
    font-size: 24px;
    margin-bottom: 25px;
  }
}

@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-reference-illustration {
    margin-bottom: 95px !important;
  }
}
.wp-block-lcdz-bloc-reference-illustration img {
  width: 100%;
}

@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-reference-cta {
    margin-top: 25px !important;
    margin-bottom: 20px !important;
  }
}

.wp-block-lcdz-bloc-reference-bandeau-bas-page {
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  height: 550px;
  overflow: hidden;
}
@media screen and (max-width: 1000px) {
  .wp-block-lcdz-bloc-reference-bandeau-bas-page {
    height: 450px;
  }
}
.wp-block-lcdz-bloc-reference-bandeau-bas-page > div {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 75%;
  width: 100%;
  background-position: center;
  background-size: cover;
  z-index: -1;
}
.wp-block-lcdz-bloc-reference-bandeau-bas-page img {
  height: 100%;
}

.ref-carrousel {
  background-color: #263132;
  padding: var(--wp--preset--spacing--70);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .ref-carrousel {
    padding: var(--wp--preset--spacing--30);
  }
}
@media screen and (max-width: 425px) {
  .ref-carrousel {
    padding: 0;
    padding-bottom: var(--wp--preset--spacing--30);
  }
}
.ref-carrousel__inner {
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
  padding: 0 var(--wp--preset--spacing--30, 1rem);
}
@media screen and (max-width: 425px) {
  .ref-carrousel__inner {
    padding-top: 3rem;
  }
}
.ref-carrousel__swiper-wrap {
  position: relative;
  padding-left: max(var(--wp--preset--spacing--30, 1rem), (100vw - var(--wp--style--global--wide-size, 1200px)) / 2);
}
.ref-carrousel__swiper {
  overflow: visible;
}
.ref-carrousel__swiper .swiper-slide {
  flex-shrink: 0;
}
.ref-carrousel__swiper .swiper-slide.is-hidden {
  display: none !important;
}
.ref-carrousel__title {
  color: #FDFDFD;
  position: relative;
}
.ref-carrousel__title span {
  color: #C4C130;
  font-weight: 700;
}
.ref-carrousel__filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: 1.563rem;
}
.ref-carrousel__filters .ref-filter {
  display: inline-flex;
  align-items: center;
  border-radius: 8px;
  border: 1px solid #FDFDFD;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
.ref-carrousel__filters .ref-filter input {
  display: none;
}
.ref-carrousel__filters .ref-filter span {
  color: #FDFDFD;
  transition: color 0.25s;
}
@media screen and (max-width: 425px) {
  .ref-carrousel__filters .ref-filter span {
    font-size: 12px;
  }
}
.ref-carrousel__filters .ref-filter:has(input:checked) {
  background: #C4C130;
  border-color: #C4C130;
}
.ref-carrousel__filters .ref-filter:has(input:checked) span {
  color: #263132;
}
.ref-carrousel__nav {
  position: absolute;
  top: 12.5rem;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 65px;
  height: 64px;
  transition: opacity 0.25s;
}
.ref-carrousel__nav--prev {
  left: calc(max(var(--wp--preset--spacing--30, 1rem), (100vw - var(--wp--style--global--wide-size, 1200px)) / 2) - 80px);
}
.ref-carrousel__nav--prev .svg-fleche {
  transform: rotate(180deg);
}
.ref-carrousel__nav--next {
  left: calc(max(var(--wp--preset--spacing--30, 1rem), (100vw - var(--wp--style--global--wide-size, 1200px)) / 2) + 51.5625rem + 15px);
}
.ref-carrousel__nav.swiper-button-disabled {
  opacity: 0;
  cursor: default;
}
@media screen and (max-width: 1024px) {
  .ref-carrousel__nav--next {
    left: calc(var(--wp--preset--spacing--30, 1rem) + 38rem + 15px);
  }
}
@media screen and (max-width: 768px) {
  .ref-carrousel__nav {
    width: 45px;
    height: 44px;
  }
  .ref-carrousel__nav--next {
    left: calc(var(--wp--preset--spacing--30, 1rem) + 28rem + 15px);
  }
}
@media screen and (max-width: 425px) {
  .ref-carrousel__nav {
    display: none;
  }
}
.ref-carrousel .swiper-slide {
  width: 51.5625rem;
  height: 100%;
}
@media screen and (max-width: 1024px) {
  .ref-carrousel .swiper-slide {
    width: 38rem;
  }
}
@media screen and (max-width: 768px) {
  .ref-carrousel .swiper-slide {
    width: 28rem;
  }
  .ref-carrousel .swiper-slide .ref-card__image {
    height: 19rem;
  }
}
@media screen and (max-width: 425px) {
  .ref-carrousel .swiper-slide {
    width: calc(100vw - 3rem);
  }
}

.ref-card--cta .ref-card__image::after {
  display: none;
}

.ref-card__cta-label {
  color: #324F51;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .ref-card__cta-label {
    font-size: 26px !important;
  }
}
.ref-card__cta-label:after {
  content: "";
  position: absolute;
  background: url("../img/deco-carrousel-last.svg") no-repeat center/contain;
  width: 374px;
  height: 290px;
  left: 18rem;
}
@media screen and (max-width: 1024px) {
  .ref-card__cta-label:after {
    width: 250px;
    height: 194px;
    top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .ref-card__cta-label:after {
    width: 180px;
    height: 140px;
    left: 12rem;
    top: 3rem;
  }
}
@media screen and (max-width: 480px) {
  .ref-card__cta-label:after {
    left: 6rem;
  }
}

.ref-logos {
  padding: 2rem 0;
  margin-bottom: 3rem;
  margin-top: 3rem;
  overflow: hidden;
}

.ref-logos__track {
  display: flex;
  align-items: center;
  width: max-content;
  will-change: transform;
  gap: 48px;
}

.ref-logos__link {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  text-decoration: none;
}
.ref-logos__link img {
  height: 6.25rem;
  width: 13.125rem;
  object-fit: contain;
  transition: opacity 0.2s ease;
}
.ref-logos__link img:hover {
  opacity: 0.7;
}
.ref-logos__link .logoCouleur {
  filter: brightness(0) invert(1);
}

.ref-filtres {
  margin-bottom: 3rem;
}
.ref-filtres__dropdowns {
  display: flex;
  gap: 1.5rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 1.563rem;
}
.ref-filtres__tags {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  min-height: 1.625rem;
}
.ref-filtres__tags:empty {
  display: none;
}
.ref-filtres__tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: #C4C130;
  color: #263132;
  border: none;
  border-radius: 8px;
  padding: 3px 10px;
  font-weight: 600;
  font-size: 0.875rem;
  line-height: 0;
  cursor: pointer;
  transition: background-color 0.25s ease;
}
.ref-filtres__tag:hover {
  background-color: rgb(163.2262295082, 160.7278688525, 39.9737704918);
}
.ref-filtres__tag-close {
  font-size: 1.1rem;
  line-height: 1;
}

.ref-dropdown {
  position: relative;
}
.ref-dropdown__toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  color: #FDFDFD;
  border: 1px solid #FDFDFD;
  border-radius: 999px;
  padding: 12px 1.5rem;
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.ref-dropdown__toggle svg {
  transition: transform 0.25s ease;
}
.ref-dropdown__toggle[aria-expanded=true] {
  border-color: #C4C130;
  color: #C4C130;
}
.ref-dropdown__toggle[aria-expanded=true] svg {
  transform: rotate(180deg);
}
.ref-dropdown__toggle:hover {
  border-color: #C4C130;
  color: #C4C130;
}
.ref-dropdown__toggle:focus {
  outline-style: unset;
}
.ref-dropdown__list {
  position: absolute;
  top: calc(100% + 0.5rem);
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  background: #263132;
  border: 1px solid rgba(253, 253, 253, 0.15);
  border-radius: 12px;
  padding: 0.5rem;
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  max-height: 16rem;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: rgba(253, 253, 253, 0.2) rgba(253, 253, 253, 0.05);
}
.ref-dropdown__list[hidden] {
  display: none;
}
.ref-dropdown__option {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  padding: 0.5rem 0.75rem;
  border-radius: 8px;
  cursor: pointer;
  color: #FDFDFD;
  font-size: 0.875rem;
  white-space: nowrap;
  transition: background-color 0.2s ease;
}
.ref-dropdown__option:hover {
  background: rgba(253, 253, 253, 0.08);
}
.ref-dropdown__option input[type=checkbox] {
  accent-color: #C4C130;
  width: 1rem;
  height: 1rem;
  cursor: pointer;
}

.ref-liste {
  display: flex;
  flex-direction: column;
  gap: 4.375rem;
  margin: 0 auto;
  padding-bottom: 8.75rem;
  position: relative;
  z-index: 1;
  overflow-x: visible;
  overflow-y: clip;
}
.ref-liste__deco-vagues, .ref-liste__deco-logo {
  position: sticky;
  pointer-events: none;
  height: 0;
  overflow: visible;
  z-index: -2;
  margin-bottom: -4.375rem;
}
.ref-liste__deco-vagues img, .ref-liste__deco-logo img {
  display: block;
}
@media screen and (max-width: 425px) {
  .ref-liste__deco-vagues, .ref-liste__deco-logo {
    display: none;
  }
}
.ref-liste__deco-vagues {
  top: 10rem;
  align-self: flex-start;
  margin-left: calc(-50vw + 50%);
  animation: vagues 1s steps(1, jump-start) 0s infinite alternate;
  max-width: 15.25rem;
}
.ref-liste__deco-vagues img {
  width: 100%;
}
.ref-liste__deco-logo {
  top: 20%;
  align-self: center;
}
.ref-liste__deco-logo img {
  max-width: 100dvw;
}
.ref-liste__item {
  position: relative;
  z-index: 1;
  margin-bottom: 4.375rem;
}
.ref-liste__item.is-hidden, .ref-liste__item.is-over-limit {
  display: none !important;
}
.ref-liste__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 1rem;
}
.ref-liste__more {
  cursor: pointer;
}
.ref-liste .ref-liste__cta-bloc {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  background-color: #C4C130;
  border-radius: 20px;
  justify-self: center;
  position: relative;
  overflow: hidden;
  margin-bottom: 4.375rem;
  width: var(--wp--style--global--wide-size, 75rem);
  max-width: calc(100vw - 2 * var(--wp--preset--spacing--30, 1rem));
  margin-left: calc((100% - var(--wp--style--global--wide-size, 75rem)) / 2);
  margin-right: calc((100% - var(--wp--style--global--wide-size, 75rem)) / 2);
}
@media screen and (max-width: 768px) {
  .ref-liste .ref-liste__cta-bloc {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
    border-radius: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
}
.ref-liste .ref-liste__cta-texte {
  flex: 1;
  font-size: 42px;
  font-style: normal;
  font-weight: 500;
  color: #263132;
  line-height: 1.3;
  margin-top: 5.4rem;
  margin-left: 6.3rem;
  margin-bottom: 8.5rem;
}
@media screen and (max-width: 768px) {
  .ref-liste .ref-liste__cta-texte {
    font-size: 28px;
    margin: 5rem 1.5rem 0rem;
  }
  .ref-liste .ref-liste__cta-texte p {
    margin: 0;
  }
}
.ref-liste .ref-liste__cta-bouton {
  flex-shrink: 0;
  position: relative;
  z-index: 1;
  padding-top: 6rem;
  padding-right: 9rem;
  padding-bottom: 11rem;
}
@media screen and (max-width: 768px) {
  .ref-liste .ref-liste__cta-bouton {
    font-size: 28px;
    margin: 2rem 1.5rem 6rem;
    padding: 0;
  }
}
.ref-liste .ref-liste__cta-bouton .wp-block-button__link {
  background-color: var(--wp--preset--color--accent-4, #263132);
  color: #C4C130;
  border-radius: 50px;
  padding: 16px 32px;
  font-size: 18px;
  font-weight: 500;
  white-space: nowrap;
}
.ref-liste .ref-liste__cta-bouton .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--contrast, #000);
}
.ref-liste .ref-liste__empty {
  text-align: center;
  color: #FDFDFD;
  font-size: 1.125rem;
  padding: 3rem 0;
}
.ref-liste .ref-liste__empty[hidden] {
  display: none;
}

[data-bloc="1"]::after {
  background-image: url("../img/deco_liste_ref_bloc1.svg");
  content: "";
  position: absolute;
  right: 15rem;
  bottom: 5rem;
  width: 265px;
  height: 120px;
  background-position: center;
  background-size: cover;
  animation: vagues 1s steps(1, jump-start) 0s infinite alternate;
}
@media screen and (max-width: 768px) {
  [data-bloc="1"]::after {
    right: 2rem;
    bottom: 2rem;
    width: 180px;
    height: 75px;
  }
}

[data-bloc="2"] .ref-liste__cta-texte {
  margin-top: 6rem;
  margin-left: 6.3rem;
  margin-bottom: 4.8rem;
}
@media screen and (max-width: 768px) {
  [data-bloc="2"] .ref-liste__cta-texte {
    margin: 2rem 1.5rem 1rem;
  }
}

[data-bloc="2"] .ref-liste__cta-bouton {
  padding-top: 8.2rem;
  padding-right: 9.4rem;
  padding-bottom: 8.5rem;
}
@media screen and (max-width: 768px) {
  [data-bloc="2"] .ref-liste__cta-bouton {
    padding: 0;
  }
}

[data-bloc="2"]::after {
  background-image: url("../img/deco_liste_ref_bloc2.svg");
  content: "";
  position: absolute;
  bottom: 5rem;
  right: 12rem;
  width: 180px;
  height: 50px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  animation: vagues 1s steps(1, jump-start) 0s infinite alternate;
}
@media screen and (max-width: 768px) {
  [data-bloc="2"]::after {
    right: 2rem;
    bottom: 2rem;
  }
}

.ref-card {
  text-decoration: none;
  display: block;
}
.ref-card__image {
  width: 100%;
  height: 25rem;
  border-radius: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  background-color: lightgray;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
@media screen and (max-width: 425px) {
  .ref-card__image {
    border-radius: 15px;
    height: 12.5rem;
  }
}
.ref-card__image .ref-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}
.ref-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(38, 49, 50, 0.2);
  z-index: 1;
  transition: opacity 0.5s ease;
}
.ref-card__image img {
  position: relative;
  z-index: 2;
  object-fit: cover;
}
.ref-card__image .logoBlanc, .ref-card__image .logoCouleur {
  max-width: 27rem;
  max-height: 18rem;
  height: auto;
  object-fit: cover;
}
@media screen and (max-width: 425px) {
  .ref-card__image .logoBlanc, .ref-card__image .logoCouleur {
    max-width: 12.5rem;
  }
}
.ref-card__image .logoCouleur {
  filter: brightness(0) invert(1);
}
.ref-card:hover .ref-card__image .ref-card__bg {
  transform: scale(1.1);
}
.ref-card__expertises {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.ref-card__expertises span {
  display: inline-flex;
  border-radius: 8px;
  border: 1px solid #FDFDFD;
  color: #FDFDFD;
  padding: 6px 10px;
  cursor: pointer;
  transition: background 0.25s, border-color 0.25s;
}
@media screen and (max-width: 468px) {
  .ref-card__expertises span {
    font-size: 11px;
  }
}
.ref-card__title {
  color: #C4C130;
  font-style: normal;
  font-weight: 700;
  margin: 1rem 0;
}
.ref-card__demande {
  color: #FDFDFD;
  font-style: normal;
  font-weight: 500;
}
@media screen and (max-width: 425px) {
  .ref-card__demande {
    font-size: 14px;
  }
}

.article-bandeau {
  position: relative;
  overflow: clip;
}
.article-bandeau__img {
  position: relative;
  z-index: 2;
  margin-bottom: -4.375rem;
}
.article-bandeau__img img {
  width: 100%;
  height: auto;
  max-height: 31.25rem;
  border-radius: 20px;
  display: block;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .article-bandeau__img img {
    max-width: 80% !important;
    margin-left: auto;
    margin-right: auto;
  }
}
.article-bandeau__filigrane {
  position: relative;
  z-index: 1;
  background-color: #C4C130;
  padding: 30px 0;
  transform: rotate(-3deg);
  width: calc(100% + 25px);
  margin-left: -12.5px;
}
.article-bandeau__mot {
  font-size: 190px;
  font-weight: 700;
  color: #C4C130;
  -webkit-text-stroke: 4px #757931;
  text-stroke: 4px #757931;
  line-height: 0.8;
  paint-order: stroke fill;
  min-width: calc(100% + 50px);
  margin-left: -25px;
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .article-bandeau__mot {
    font-size: 20vw;
  }
}
.article-bandeau__texte {
  position: relative;
  z-index: 2;
  margin-top: -87.5px;
  padding: 5rem 0;
  background-color: #263132;
  color: #FDFDFD;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}
@media screen and (max-width: 768px) {
  .article-bandeau__texte {
    padding-right: var(--wp--style--root--padding-right);
    padding-left: var(--wp--style--root--padding-left);
  }
}

.article-carrousel {
  background-color: #263132;
  padding: var(--wp--preset--spacing--70);
  overflow: hidden;
}
@media screen and (max-width: 425px) {
  .article-carrousel {
    padding: unset;
    padding-top: 4rem;
    padding-bottom: 2rem;
  }
}
.article-carrousel__inner {
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
  padding: 0 var(--wp--preset--spacing--30, 1rem);
}
.article-carrousel__swiper-wrap {
  position: relative;
}
@media screen and (max-width: 1000px) {
  .article-carrousel__swiper-wrap {
    padding-left: max(var(--wp--preset--spacing--30, 1rem), (100vw - var(--wp--style--global--wide-size, 1200px)) / 2);
  }
}
.article-carrousel__nav {
  position: absolute;
  top: 10rem;
  transform: translateY(-50%);
  z-index: 10;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  width: 65px;
  height: 64px;
  transition: opacity 0.25s;
}
.article-carrousel__nav--prev {
  left: calc(max(var(--wp--preset--spacing--30, 1rem), (100vw - var(--wp--style--global--wide-size, 1200px)) / 2) - 80px);
}
.article-carrousel__nav--prev .svg-fleche {
  transform: rotate(180deg);
}
.article-carrousel__nav--next {
  left: calc(max(var(--wp--preset--spacing--30, 1rem), (100vw - var(--wp--style--global--wide-size, 1200px)) / 2) + 70rem + 15px);
}
.article-carrousel__nav.swiper-button-disabled {
  opacity: 0;
  cursor: default;
}
@media screen and (max-width: 1000px) {
  .article-carrousel__nav--prev {
    left: calc(var(--wp--preset--spacing--30, 1rem) - 80px);
  }
  .article-carrousel__nav--next {
    left: calc(var(--wp--preset--spacing--30, 1rem) + 25rem + 15px);
  }
}
@media screen and (max-width: 768px) {
  .article-carrousel__nav {
    width: 45px;
    height: 44px;
  }
}
@media screen and (max-width: 425px) {
  .article-carrousel__nav {
    display: none;
  }
}
.article-carrousel__swiper {
  overflow: visible;
}
.article-carrousel__swiper .swiper-slide {
  flex-shrink: 0;
}
.article-carrousel__swiper .swiper-slide.is-hidden {
  display: none !important;
}
.article-carrousel__title {
  color: #FDFDFD;
  position: relative;
  max-width: var(--wp--style--global--content-size);
}
.article-carrousel__title span {
  color: #C4C130;
  font-weight: 700;
}
.article-carrousel__title:after {
  content: "";
  position: absolute;
  right: -40px;
  bottom: 10px;
  width: 250px;
  height: 80px;
  background: url("../img/deco-carrousel-article.svg") no-repeat center/contain;
  animation: vagues 1s steps(1, jump-start) 0s infinite alternate;
}
@media screen and (max-width: 1000px) {
  .article-carrousel__title:after {
    width: 212px;
    height: 48px;
    right: -20px;
  }
}
@media screen and (max-width: 425px) {
  .article-carrousel__title:after {
    width: 120px;
    height: 32px;
    right: 0;
    bottom: 4rem;
  }
}
.article-carrousel .swiper-slide {
  width: 25rem;
  height: 100%;
}
@media screen and (max-width: 425px) {
  .article-carrousel .swiper-slide {
    width: calc(100vw - 3rem);
  }
}
.article-carrousel .article-card {
  width: 25rem;
}
@media screen and (max-width: 425px) {
  .article-carrousel .article-card {
    width: 100%;
  }
}
.article-carrousel .article-card__image {
  width: 25rem;
  height: 17rem;
}
@media screen and (max-width: 425px) {
  .article-carrousel .article-card__image {
    width: 100%;
  }
}

.article-card--cta .article-card__image::after {
  display: none;
}

.article-card__cta-label {
  color: #324F51;
  font-size: 1.5rem;
  font-weight: 700;
  text-align: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .article-card__cta-label {
    font-size: 26px !important;
  }
}
.article-card__cta-label:after {
  content: "";
  position: absolute;
  background: url("../img/deco-carrousel-last.svg") no-repeat center/contain;
  width: 374px;
  height: 290px;
  left: 18rem;
}
@media screen and (max-width: 1024px) {
  .article-card__cta-label:after {
    width: 250px;
    height: 194px;
    top: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .article-card__cta-label:after {
    width: 180px;
    height: 140px;
    left: 8rem;
    top: 1rem;
  }
}

.article-card {
  text-decoration: none;
  display: block;
  width: 30rem;
  max-width: 100%;
}
@media screen and (max-width: 768px) {
  .article-card {
    width: 100%;
  }
}
.article-card__image {
  width: 30rem;
  height: 20rem;
  max-width: 100%;
  border-radius: 20px;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  position: relative;
  background-color: lightgray;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 1.563rem;
}
@media screen and (max-width: 768px) {
  .article-card__image {
    width: 100%;
  }
}
.article-card__image .article-card__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
  z-index: 0;
}
.article-card__image::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(38, 49, 50, 0.2);
  z-index: 1;
  transition: opacity 0.5s ease;
}
.article-card__image img {
  position: relative;
  z-index: 2;
  object-fit: cover;
}
.article-card:hover .article-card__image .article-card__bg {
  transform: scale(1.1);
}
.article-card__date {
  color: #FDFDFD;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.article-card__title {
  color: #FDFDFD;
  font-style: normal;
  font-weight: 700;
  margin: 1rem 0;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .article-card__title {
    font-size: 22px;
  }
}

#titre-archive-article {
  position: relative;
}
#titre-archive-article::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: -1rem;
  width: 81px;
  height: 50px;
  background: url("../img/deco-archive-article.svg") no-repeat center/contain;
  animation: vagues 1s steps(1, jump-start) 0s infinite alternate;
}
@media screen and (max-width: 425px) {
  #titre-archive-article::after {
    width: 50px;
    height: 32px;
    right: 0.5rem;
    top: -0.5rem;
  }
}

.article-liste {
  padding-bottom: 5rem;
  position: relative;
  z-index: 1;
  overflow-x: visible;
  overflow-y: clip;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}
.article-liste__deco-logo {
  position: sticky;
  pointer-events: none;
  height: 0;
  overflow: visible;
  z-index: -2;
  top: 20%;
  align-self: center;
}
.article-liste__deco-logo img {
  display: block;
  max-width: 100dvw;
}
.article-liste__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem 2rem;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .article-liste__items {
    grid-template-columns: 1fr;
    padding-right: var(--wp--style--root--padding-right);
    padding-left: var(--wp--style--root--padding-left);
  }
}
.article-liste__item--wide {
  grid-column: 1/-1;
}
@media screen and (max-width: 768px) {
  .article-liste__item--wide {
    grid-column: auto;
  }
}
.article-liste__item--wide .article-card {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 2rem;
  align-items: start;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .article-liste__item--wide .article-card {
    grid-template-columns: 1fr;
  }
}
.article-liste__item--wide .article-card__image {
  height: 20rem;
  width: 100%;
  flex-shrink: 0;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .article-liste__item--wide .article-card__image {
    width: 100%;
    height: 20rem;
  }
}
.article-liste__item--wide .article-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .article-liste__item--wide .article-card__content {
    width: 100%;
  }
}
.article-liste__item--wide .article-card__categories {
  margin-top: 0;
}
.article-liste__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 3rem;
}
.article-liste__more {
  cursor: pointer;
}
.article-liste__vedette .article-vedette {
  display: block;
}
@media screen and (max-width: 768px) {
  .article-liste__vedette .article-vedette {
    padding-right: var(--wp--style--root--padding-right);
    padding-left: var(--wp--style--root--padding-left);
  }
}
.article-liste__vedette .article-vedette__image {
  max-width: var(--wp--style--global--wide-size, 75rem);
  margin: 0 auto;
  padding: 0 var(--wp--preset--spacing--30, 1rem);
  position: relative;
  overflow: hidden;
  border-radius: 20px;
  height: 32rem;
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.25);
  display: block;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .article-liste__vedette .article-vedette__image {
    max-width: none;
    width: 100%;
    height: 20rem;
    padding: 0;
  }
}
.article-liste__vedette .article-vedette__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.article-liste__vedette .article-vedette__badge {
  position: absolute;
  top: calc(var(--wp--preset--spacing--30, 1rem) + 0.5rem);
  left: calc(var(--wp--preset--spacing--30, 1rem) + 0.5rem);
  background-color: #C4C130;
  color: #263132;
  padding: 6px 16px;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  z-index: 2;
}
.article-liste__vedette .article-vedette__content {
  max-width: var(--wp--style--global--wide-size, 50rem);
  margin: 1.5rem auto 0;
  padding: 0 var(--wp--preset--spacing--30, 1rem);
}
@media screen and (max-width: 768px) {
  .article-liste__vedette .article-vedette__content {
    max-width: none;
    padding: 0;
    margin: 1rem 0 0;
  }
}
.article-liste__vedette .article-vedette__link {
  text-decoration: none;
}
.article-liste__vedette .article-vedette__date {
  color: #FDFDFD;
  display: block;
  margin-bottom: 0.5rem;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}
.article-liste__vedette .article-vedette__title {
  color: #FDFDFD;
  margin: 0;
}
.article-liste__vedette .article-vedette__title:hover .article-vedette__bg {
  transform: scale(1.1);
}
.article-liste__vedette .article-vedette:has(.article-vedette__content:hover, .article-vedette__image:hover) .article-vedette__bg {
  transform: scale(1.1);
}

.temoignage {
  max-width: var(--wp--style--global--content-size);
  margin-inline: auto;
}

.temoignage__content {
  display: flex;
  flex-direction: column;
}

.temoignage__logo {
  margin-bottom: 1.25rem;
}
.temoignage__logo img {
  max-height: 80px;
  max-width: 145px;
  width: auto;
  display: block;
}

.temoignage__texte {
  margin: 0 0 1.25rem 0;
  padding: 0;
  font-size: 1rem;
  line-height: 1.6;
  position: relative;
}
.temoignage__texte::before, .temoignage__texte::after {
  content: "";
  display: inline-block;
  width: 23px;
  height: 18px;
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.temoignage__texte::before {
  background-image: url("../img/guillemets-ouvrantes.svg");
  margin-right: 6px;
}
.temoignage__texte::after {
  background-image: url("../img/guillemets-fermantes.svg");
  margin-left: 6px;
}
.temoignage__texte p {
  display: inline;
  margin: 0;
}

.temoignage__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.temoignage__auteur {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.temoignage__nom {
  font-weight: 700;
  font-size: 0.875rem;
}

.temoignage__fonction {
  font-size: 0.875rem;
  font-weight: 700;
}

.temoignage__lien {
  align-self: flex-start;
  text-decoration: none;
  font-size: 0.875rem;
}

.temoignage.is-style-avec-profil {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 2.5rem;
  align-items: stretch;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 768px) {
  .temoignage.is-style-avec-profil {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .temoignage.is-style-avec-profil .temoignage__photo {
    height: 250px;
    border-radius: 20px 20px 0 0 !important;
  }
  .temoignage.is-style-avec-profil .temoignage__logo {
    align-self: center !important;
  }
  .temoignage.is-style-avec-profil .temoignage__footer {
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    justify-content: center;
  }
  .temoignage.is-style-avec-profil .temoignage__footer .temoignage__auteur {
    text-align: center;
  }
  .temoignage.is-style-avec-profil .temoignage__footer .temoignage__lien {
    align-self: center;
  }
}
.temoignage.is-style-avec-profil .temoignage__photo {
  position: relative;
  max-width: 26rem;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
.temoignage.is-style-avec-profil .temoignage__photo img {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.temoignage.is-style-avec-profil .temoignage__content {
  padding: 2rem 2.5rem 2rem 0;
}
@media screen and (max-width: 768px) {
  .temoignage.is-style-avec-profil .temoignage__content {
    padding: 1.5rem;
  }
}
.temoignage.is-style-avec-profil .temoignage__texte {
  text-align: justify;
}
.temoignage.is-style-avec-profil .temoignage__logo {
  align-self: flex-start;
}

.temoignage.is-style-sans-profil {
  background-color: var(--wp--preset--color--base);
  border-radius: 20px;
  padding: 2rem 2.5rem;
  max-width: 420px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 768px) {
  .temoignage.is-style-sans-profil {
    padding: 1.5rem;
    max-width: 100%;
  }
}
.temoignage.is-style-sans-profil .temoignage__photo {
  display: none;
}
.temoignage.is-style-sans-profil .temoignage__logo {
  align-self: center;
}
.temoignage.is-style-sans-profil .temoignage__lien {
  align-self: center;
}
.temoignage.is-style-sans-profil .temoignage__footer {
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.temoignage.is-style-carrousel {
  display: grid;
  grid-template-columns: 260px 1fr;
  background-color: var(--wp--preset--color--base);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}
@media screen and (max-width: 768px) {
  .temoignage.is-style-carrousel {
    grid-template-columns: 1fr;
  }
}
.temoignage.is-style-carrousel .temoignage__photo {
  overflow: hidden;
}
.temoignage.is-style-carrousel .temoignage__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.temoignage.is-style-carrousel:not(:has(.temoignage__photo)) {
  grid-template-columns: 1fr;
}
.temoignage.is-style-carrousel:not(:has(.temoignage__photo)) .temoignage__auteur {
  text-align: center;
  align-items: center;
}
.temoignage.is-style-carrousel:not(:has(.temoignage__photo)) .temoignage__texte {
  max-width: 80%;
  margin: 0 auto;
  text-align: center;
}
.temoignage.is-style-carrousel .temoignage__content {
  padding: 1.5rem;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .temoignage.is-style-carrousel .temoignage__content {
    padding: 1.25rem;
  }
}
.temoignage.is-style-carrousel .temoignage__logo {
  margin-bottom: 1rem;
}
.temoignage.is-style-carrousel .temoignage__texte {
  font-size: 0.875rem;
  text-align: justify;
}
.temoignage.is-style-carrousel .temoignage__auteur {
  text-align: left;
  flex-direction: column;
  gap: 0.25rem;
  margin-bottom: 1rem;
}
.temoignage.is-style-carrousel .temoignage__nom {
  font-size: 1.125rem;
}
.temoignage.is-style-carrousel .temoignage__fonction {
  font-size: 1rem;
  margin-bottom: 0;
}

.temoignage-carrousel {
  overflow: clip;
  position: relative;
  z-index: 1;
}
.temoignage-carrousel .temoignage-bandeau__filigrane {
  position: relative;
  z-index: -1;
  padding: 30px 0;
  transform: rotate(-3deg);
  width: calc(100% + 25px);
  margin-left: -12.5px;
}
.temoignage-carrousel .temoignage-bandeau__mot {
  font-size: 235px;
  font-weight: 700;
  color: #263132;
  -webkit-text-stroke: 4px rgba(196, 193, 48, 0.2);
  text-stroke: 4px rgba(196, 193, 48, 0.2);
  line-height: 0.8;
  paint-order: stroke fill;
  min-width: calc(100% + 50px);
  display: flex;
  justify-content: center;
  position: absolute;
  top: 0;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .temoignage-carrousel .temoignage-bandeau__mot {
    font-size: 20vw;
  }
}
.temoignage-carrousel .temoignage-carrousel__title {
  color: var(--wp--preset--color--base);
}

.temoignage-carrousel__inner {
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
  padding: 0 clamp(25px, 5vw, 65px);
  margin-bottom: 1.5rem;
}

.temoignage-carrousel__swiper-wrap {
  position: relative;
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
  padding: 0 clamp(25px, 5vw, 65px);
}

.temoignage-carrousel__swiper {
  overflow: visible;
}
.temoignage-carrousel__swiper .swiper-wrapper {
  align-items: stretch;
}
.temoignage-carrousel__swiper .swiper-slide {
  width: min(665px, 85vw);
  height: auto;
}

.temoignage.is-style-carrousel {
  height: 100%;
}

.temoignage-carrousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  cursor: pointer;
  z-index: 10;
  padding: 0;
}
@media screen and (max-width: 768px) {
  .temoignage-carrousel__nav {
    display: none;
  }
}
.temoignage-carrousel__nav--prev {
  left: 15px;
}
.temoignage-carrousel__nav--prev .svg-fleche {
  transform: rotate(180deg);
}
.temoignage-carrousel__nav--next {
  right: 15px;
}
.temoignage-carrousel__nav .temoignage-carrousel__cta a {
  background-color: var(--wp--preset--color--base);
}

.temoignage-liste {
  margin-inline: auto;
}
.temoignage-liste .is-style-sans-profil .temoignage__auteur {
  text-align: center;
}

.temoignage-liste__items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .temoignage-liste__items {
    grid-template-columns: 1fr;
  }
}

.temoignage-liste__item--avec-profil {
  grid-column: 1/-1;
}

.temoignage-liste__item--sans-profil .temoignage.is-style-sans-profil {
  max-width: 100%;
  height: stretch;
  display: flex;
  align-items: center;
}

.temoignage-liste__empty {
  grid-column: 1/-1;
  text-align: center;
  font-size: 1.125rem;
  opacity: 0.6;
  padding: 3rem 0;
}

.temoignage-liste__more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}

.temoignage-bloc .is-style-sans-profil {
  padding: 2rem 2.5rem 2rem 0;
}
@media screen and (max-width: 768px) {
  .temoignage-bloc .is-style-sans-profil {
    padding: 1.5rem;
  }
}
.temoignage-bloc .is-style-sans-profil .temoignage__content {
  display: grid !important;
  grid-template-columns: 1fr 2fr;
}
@media screen and (max-width: 768px) {
  .temoignage-bloc .is-style-sans-profil .temoignage__content {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .temoignage-bloc .is-style-sans-profil .temoignage__content .temoignage__logo {
    grid-column: 1 !important;
    grid-row: 1 !important;
  }
  .temoignage-bloc .is-style-sans-profil .temoignage__content .temoignage__texte {
    grid-column: 1 !important;
  }
  .temoignage-bloc .is-style-sans-profil .temoignage__content .temoignage__footer {
    grid-column: 1 !important;
    grid-row: unset !important;
    flex-direction: column !important;
    align-items: center !important;
    justify-content: center !important;
  }
  .temoignage-bloc .is-style-sans-profil .temoignage__content .temoignage__footer .temoignage__auteur {
    text-align: center !important;
  }
}
.temoignage-bloc .is-style-sans-profil .temoignage__content .temoignage__logo {
  grid-column: 1;
  grid-row: 1/3;
  align-self: center;
  justify-self: center;
  margin: 0;
}
.temoignage-bloc .is-style-sans-profil .temoignage__content .temoignage__texte {
  grid-column: 2/3;
}
.temoignage-bloc .is-style-sans-profil .temoignage__content .temoignage__footer {
  grid-column: 2/3;
  grid-row: 2;
  flex-direction: row;
  justify-content: space-between;
}

.svg-plus {
  position: absolute;
  right: 1rem;
  bottom: 1rem;
  width: 40px;
  height: 40px;
  z-index: 3;
  transition: transform 0.5s ease;
}
.svg-plus__blob {
  fill: #C4C130;
  transition: fill 0.3s ease;
}
.svg-plus__cross {
  stroke: #263132;
  transition: stroke 0.3s ease;
}

.ref-card:hover .svg-plus__blob,
.article-card:hover .svg-plus__blob,
.header-menu-reference:hover .svg-plus__blob,
.article-vedette__image:hover .svg-plus__blob {
  fill: #263132;
}
.ref-card:hover .svg-plus__cross,
.article-card:hover .svg-plus__cross,
.header-menu-reference:hover .svg-plus__cross,
.article-vedette__image:hover .svg-plus__cross {
  stroke: #F1F1F1;
}

.svg-fleche {
  width: 100%;
  height: 100%;
}
.svg-fleche__blob {
  fill: #324F51;
  transition: fill 0.3s ease;
}
.svg-fleche__arrow {
  fill: #C4C130;
  transition: fill 0.3s ease;
}

.ref-carrousel__nav:hover .svg-fleche__blob,
.article-carrousel__nav:hover .svg-fleche__blob,
.temoignage-carrousel__nav:hover .svg-fleche__blob {
  fill: #C4C130;
}
.ref-carrousel__nav:hover .svg-fleche__arrow,
.article-carrousel__nav:hover .svg-fleche__arrow,
.temoignage-carrousel__nav:hover .svg-fleche__arrow {
  fill: #324F51;
}

.section-fixe {
  position: sticky;
  top: -28rem;
  z-index: 1;
}
@media screen and (max-width: 665px) {
  .section-fixe {
    top: 0 !important;
  }
}

.wp-admin .section-fixe {
  top: 0 !important;
}

.section-parallaxe ~ .wp-block-group,
.section-parallaxe ~ .wp-block-lcdz-bloc-reference-carrousel {
  position: relative;
  z-index: 2;
}

.logo-accueil {
  position: relative;
}
.logo-accueil::after {
  content: "";
  position: absolute;
  top: -35px;
  right: -30px;
  width: 50px;
  height: 60px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='100' height='121' viewBox='0 0 100 121' fill='none'%3E%3Cpath d='M96.3107 107.4C86.8806 106.708 77.8169 106.749 69.2829 107.576' stroke='%23FDFDFD' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M10.3872 3.00074C8.32834 11.7502 5.81728 27.3557 6.70985 26.4382' stroke='%23FDFDFD' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M49.6021 28.4742C45.0154 34.8059 40.343 41.1257 35.7562 47.4574' stroke='%23FDFDFD' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M80.423 63.6115C72.8059 67.1802 65.1887 70.7489 57.6526 74.337' stroke='%23FDFDFD' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .logo-accueil::after {
    width: 35px;
    height: 42px;
    top: -25px;
    right: -20px;
  }
}

.section-parallaxe {
  position: relative;
  z-index: 2;
}
.section-parallaxe .wp-block-heading {
  color: var(--wp--preset--color--base);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease, color 0.5s ease;
}
.section-parallaxe .wp-block-heading.is-active {
  opacity: 1;
  transform: translateX(0);
  color: var(--wp--preset--color--accent-1) !important;
}
.section-parallaxe .wp-block-heading.is-past {
  opacity: 1;
  transform: translateX(0);
  color: var(--wp--preset--color--base) !important;
}
.section-parallaxe p {
  color: var(--wp--preset--color--base);
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-parallaxe p strong {
  transition: color 0.5s ease;
}
.section-parallaxe p strong.is-highlighted {
  color: var(--wp--preset--color--accent-1) !important;
}
.section-parallaxe p.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.wp-admin .section-parallaxe .wp-block-heading,
.wp-admin .section-parallaxe p {
  opacity: 1;
  transform: none;
}

.section-expertise .wp-block-heading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-expertise .wp-block-heading.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-expertise .wp-block-list li {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.section-expertise .wp-block-list li.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.section-expertise .wp-block-list li a {
  text-decoration: none;
  font-size: clamp(17.371px, 1.086rem + (1vw - 3.2px) * 1.094, 27px);
}
.section-expertise .wp-block-list li a:hover {
  text-decoration: underline;
}
.section-expertise .wp-block-image {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-expertise .wp-block-image.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-expertise .wp-block-image img {
  transition: scale 0.5s ease;
}
@media screen and (max-width: 600px) {
  .section-expertise .wp-block-image img {
    height: 100px !important;
  }
}
@media screen and (max-width: 600px) and (max-width: 480px) {
  .section-expertise .wp-block-image {
    height: 65px !important;
  }
}
.section-expertise .wp-block-image:hover img {
  scale: 1.1;
}
.wp-admin .section-expertise .wp-block-heading,
.wp-admin .section-expertise .wp-block-list li,
.wp-admin .section-expertise .wp-block-image {
  opacity: 1;
  transform: none;
}

.ref-carrousel .ref-carrousel__inner,
.ref-carrousel .ref-carrousel__swiper-wrap,
.ref-carrousel .ref-carrousel__cta {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ref-carrousel .ref-carrousel__inner.is-visible,
.ref-carrousel .ref-carrousel__swiper-wrap.is-visible,
.ref-carrousel .ref-carrousel__cta.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.wp-admin .ref-carrousel .ref-carrousel__inner,
.wp-admin .ref-carrousel .ref-carrousel__swiper-wrap,
.wp-admin .ref-carrousel .ref-carrousel__cta {
  opacity: 1;
  transform: none;
}

.section-confiance .wp-block-heading,
.section-confiance .ref-logos,
.section-confiance .wp-block-buttons {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-confiance .wp-block-heading.is-visible,
.section-confiance .ref-logos.is-visible,
.section-confiance .wp-block-buttons.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.wp-admin .section-confiance .wp-block-heading,
.wp-admin .section-confiance .ref-logos,
.wp-admin .section-confiance .wp-block-buttons {
  opacity: 1;
  transform: none;
}

.section-domaines .wp-block-heading {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-domaines .wp-block-heading.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-domaines .expertise-accueil__item {
  opacity: 0;
  transform: scale(0.9);
  transition: opacity 0.4s ease, transform 0.4s ease;
}
.section-domaines .expertise-accueil__item.is-visible {
  opacity: 1;
  transform: scale(1);
}
.wp-admin .section-domaines .wp-block-heading,
.wp-admin .section-domaines .expertise-accueil__item {
  opacity: 1;
  transform: none;
}

.section-equipe .wp-block-heading,
.section-equipe p,
.section-equipe .wp-block-buttons {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-equipe .wp-block-heading.is-visible,
.section-equipe p.is-visible,
.section-equipe .wp-block-buttons.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.section-equipe .image-equipe .wp-block-group {
  opacity: 0;
  transform: translateX(60px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-equipe .image-equipe .wp-block-group.is-visible {
  opacity: 1;
  transform: translateX(0);
}
.section-equipe .image-equipe .wp-block-group.is-visible::before, .section-equipe .image-equipe .wp-block-group.is-visible::after {
  opacity: 1;
  transform: translate(0);
}
.section-equipe .image-equipe .wp-block-group::before, .section-equipe .image-equipe .wp-block-group::after {
  opacity: 0;
  transition: opacity 0.4s ease 0.3s, transform 0.4s ease 0.3s;
}
.section-equipe .image-equipe {
  position: relative;
  aspect-ratio: 4/3;
  width: 100%;
}
.section-equipe .image-equipe .img-equipe-1,
.section-equipe .image-equipe .img-equipe-2,
.section-equipe .image-equipe .img-equipe-3 {
  position: absolute;
}
.section-equipe .image-equipe .img-equipe-1 {
  top: 0;
  left: 5%;
  width: 45%;
  z-index: 1;
}
.section-equipe .image-equipe .img-equipe-1 img {
  width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 600px) {
  .section-equipe .image-equipe .img-equipe-1 {
    top: -6%;
    left: 1%;
    width: 50%;
  }
}
.section-equipe .image-equipe .img-equipe-2 {
  top: 20%;
  left: 15%;
  width: 70%;
  z-index: 0;
}
.section-equipe .image-equipe .img-equipe-2 img {
  width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 600px) {
  .section-equipe .image-equipe .img-equipe-2 {
    top: 20%;
    left: 15%;
    width: 80%;
  }
}
.section-equipe .image-equipe .img-equipe-2::before {
  content: "";
  position: absolute;
  bottom: -15%;
  left: -35%;
  width: 70%;
  height: 0;
  padding-bottom: 17%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='275' height='66' viewBox='0 0 275 66' fill='none'%3E%3Cpath d='M271.986 25.3703C271.986 25.3703 263.699 15.6823 254.327 18.9087C244.956 22.1352 239.524 33.0201 239.229 42.5268C240.607 37.1793 233.124 28.7124 230.137 26.7071C226.231 24.0705 222.952 22.803 218.353 22.6222C213.754 22.4415 205.552 26.7071 205.552 26.7071C205.552 26.7071 202.768 9.7668 192.491 4.605C182.215 -0.556801 169.643 7.21109 163.309 21.1368C159.928 9.77343 152.931 5.79233 142.63 8.91931C132.328 12.0463 128.352 24.5161 128.352 24.5161C128.352 24.5161 125.693 31.7204 125.759 37.1421C121.679 30.1978 112.899 22.8822 102.618 30.1978C92.3382 37.5135 90.999 62.8026 90.999 62.8026C90.999 62.8026 87.4332 37.5539 75.79 33.4836C64.1467 29.4134 49.7163 38.9721 47.9677 50.6222C48.0334 45.9432 48.0662 41.1899 47.8693 36.5108C46.6548 8.99357 5.37357 4.605 2.99988 37.5135' stroke='%23C4C130' stroke-width='6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity 0.5s ease 0.3s, transform 0.5s ease 0.3s;
}
.section-equipe .image-equipe .img-equipe-2::after {
  content: "";
  position: absolute;
  right: -10%;
  top: 45%;
  transform: translateY(-50%) translateX(20px);
  width: 10%;
  height: 0;
  padding-bottom: 48%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='38' height='181' viewBox='0 0 38 181' fill='none'%3E%3Cpath d='M37.8835 131.094C37.6932 139.927 27.7939 146.667 8.94737 146.667C46.5626 157.165 29.1265 180.603 0 180.603L2.15367e-06 -9.15527e-05C43.4043 -9.10339e-05 33.8858 40.9087 11.4222 40.9087C36.551 42.3034 47.0213 82.05 11.4222 82.05C36.1702 82.05 45.1176 114.126 11.4222 114.126C33.1243 114.126 38.0739 122.261 37.8835 131.094Z' fill='%23C4C130'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0;
  transition: opacity 0.5s ease 0.5s, transform 0.5s ease 0.5s;
}
.section-equipe .image-equipe .img-equipe-2.is-visible::before {
  opacity: 1;
  transform: translateX(0);
}
.section-equipe .image-equipe .img-equipe-2.is-visible::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}
.section-equipe .image-equipe .img-equipe-3 {
  bottom: 0;
  left: 30%;
  width: 40%;
  z-index: 1;
}
@media screen and (max-width: 600px) {
  .section-equipe .image-equipe .img-equipe-3 {
    top: 75%;
    left: 40%;
    width: 50%;
  }
}
.section-equipe .image-equipe .img-equipe-3 img {
  width: 100% !important;
  height: auto !important;
}
.wp-admin .section-equipe .wp-block-heading,
.wp-admin .section-equipe p,
.wp-admin .section-equipe .wp-block-buttons,
.wp-admin .section-equipe .image-equipe .wp-block-group {
  opacity: 1;
  transform: none;
}

.section-temoignages .temoignage-bandeau__filigrane {
  opacity: 0;
  transition: opacity 0.6s ease;
}
.section-temoignages .temoignage-bandeau__filigrane.is-visible {
  opacity: 1;
}
.section-temoignages .temoignage-carrousel__inner,
.section-temoignages .temoignage-carrousel__swiper-wrap,
.section-temoignages .temoignage-carrousel__cta {
  opacity: 0;
  transform: translateY(25px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-temoignages .temoignage-carrousel__inner.is-visible,
.section-temoignages .temoignage-carrousel__swiper-wrap.is-visible,
.section-temoignages .temoignage-carrousel__cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.wp-admin .section-temoignages .temoignage-bandeau__filigrane,
.wp-admin .section-temoignages .temoignage-carrousel__inner,
.wp-admin .section-temoignages .temoignage-carrousel__swiper-wrap,
.wp-admin .section-temoignages .temoignage-carrousel__cta {
  opacity: 1;
  transform: none;
}

.section-parallaxe,
.ref-carrousel,
.section-equipe {
  overflow: clip;
}

body.home .section-domaines {
  position: sticky !important;
  top: 0;
  z-index: 1;
  background-color: var(--wp--preset--color--accent-4);
}

.section-bandeau-2,
.section-equipe,
.section-temoignages {
  position: relative;
  z-index: 2;
}

.section-actu .accueil-actu__card {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.section-actu .accueil-actu__card.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.section-actu .accueil-actu__cta {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
.section-actu .accueil-actu__cta.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.wp-admin .section-actu .accueil-actu__card,
.wp-admin .section-actu .accueil-actu__cta {
  opacity: 1;
  transform: none;
}

h2.wp-block-heading {
  margin-block-start: 45px;
  margin-block-end: 30px;
}

:root :where(.wp-block-image.is-style-rounded img, .wp-block-image .is-style-rounded img) {
  box-shadow: 0 4px 20px 0 rgba(0, 0, 0, 0.15);
  border-radius: 20px;
}

.wp-block-quote.is-style-guillemets {
  position: relative;
  font-size: 35px;
  border: none;
  line-height: 1.57;
}
@media screen and (max-width: 1100px) {
  .wp-block-quote.is-style-guillemets {
    font-size: 22px;
  }
}
.wp-block-quote.is-style-guillemets:before, .wp-block-quote.is-style-guillemets:after {
  position: absolute;
  display: block;
  content: "";
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 50px;
  height: 50px;
  animation: vagues 1s steps(1, jump-start) 0s infinite alternate;
}
@media screen and (max-width: 1100px) {
  .wp-block-quote.is-style-guillemets:before, .wp-block-quote.is-style-guillemets:after {
    width: 30px;
    height: 30px;
  }
}
.wp-block-quote.is-style-guillemets:before {
  top: 26px;
  left: -50px;
  background-image: url("../img/guillemets-ouvrantes.svg");
}
@media screen and (max-width: 1100px) {
  .wp-block-quote.is-style-guillemets:before {
    top: 31px;
    left: -10px;
  }
}
.wp-block-quote.is-style-guillemets:after {
  bottom: 20px;
  right: -50px;
  background-image: url("../img/guillemets-fermantes.svg");
}
@media screen and (max-width: 1100px) {
  .wp-block-quote.is-style-guillemets:after {
    bottom: 25px;
    right: -10px;
  }
}
.wp-block-quote.is-style-guillemets strong {
  font-weight: 700;
}

.wp-block-list.is-style-fleche {
  list-style: none;
  padding-left: 0;
  line-height: 1;
}
.wp-block-list.is-style-fleche li {
  background-image: url("../img/fleche-verte.svg");
  background-repeat: no-repeat;
  padding-left: 25px;
  margin-left: -5px;
}

.wp-block-heading.is-style-traits-blancs, .wp-block-heading.is-style-traits-verts {
  position: relative;
  padding-right: 150px;
  box-sizing: border-box;
  min-height: 250px;
  align-content: end;
}
.wp-block-heading.is-style-traits-blancs:after, .wp-block-heading.is-style-traits-verts:after {
  position: absolute;
  display: block;
  content: "";
  width: 250px;
  height: 250px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  bottom: -20px;
  right: -110px;
}
@media screen and (max-width: 1250px) {
  .wp-block-heading.is-style-traits-blancs, .wp-block-heading.is-style-traits-verts {
    padding-right: 280px;
  }
  .wp-block-heading.is-style-traits-blancs:after, .wp-block-heading.is-style-traits-verts:after {
    right: 20px;
  }
}
@media screen and (max-width: 1000px) {
  .wp-block-heading.is-style-traits-blancs, .wp-block-heading.is-style-traits-verts {
    padding-right: 190px;
    min-height: 180px;
  }
  .wp-block-heading.is-style-traits-blancs:after, .wp-block-heading.is-style-traits-verts:after {
    width: 180px;
    height: 180px;
    right: 0;
  }
}
@media screen and (max-width: 768px) {
  .wp-block-heading.is-style-traits-blancs, .wp-block-heading.is-style-traits-verts {
    padding-right: 100px;
    margin-right: -20px !important;
    overflow: hidden;
  }
  .wp-block-heading.is-style-traits-blancs:after, .wp-block-heading.is-style-traits-verts:after {
    right: -90px;
  }
}

.wp-block-heading.is-style-traits-blancs:after {
  background-image: url("../img/traits-blancs.svg");
}

.wp-block-heading.is-style-traits-verts:after {
  background-image: url("../img/traits-verts.svg");
}

.wp-element-button {
  transition: background-color 0.2s, color 0.2s;
}
@media screen and (max-width: 768px) {
  .wp-element-button {
    font-size: 14px !important;
    padding: 14px 20px !important;
  }
}

.yoast-breadcrumbs {
  margin-bottom: 85px;
  margin-top: 5px !important;
}
@media screen and (max-width: 768px) {
  .yoast-breadcrumbs {
    margin-bottom: 55px;
    margin-top: 2px !important;
  }
}
.yoast-breadcrumbs, .yoast-breadcrumbs a {
  font-size: 12px;
}
.yoast-breadcrumbs a {
  text-decoration-color: var(--wp--preset--color--accent-1);
  text-decoration-thickness: 2px !important;
  text-underline-offset: 3px;
}
.yoast-breadcrumbs a:hover, .yoast-breadcrumbs a:active, .yoast-breadcrumbs a:focus {
  text-decoration: underline;
  text-decoration-color: var(--wp--preset--color--contrast);
}

:root :where(.wp-element-button:hover, .wp-block-button__link:hover) {
  background-color: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
}

.wp-block-button.is-style-secondaire .wp-block-button__link {
  background-color: var(--wp--preset--color--accent-4);
  color: var(--wp--preset--color--base);
}
.wp-block-button.is-style-secondaire .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--contrast);
}

.wp-block-button.is-style-tertiaire .wp-block-button__link {
  background-color: var(--wp--preset--color--accent-3);
  color: var(--wp--preset--color--contrast);
}
.wp-block-button.is-style-tertiaire .wp-block-button__link:hover {
  background-color: var(--wp--preset--color--accent-1);
}

:root :where(.wp-block-button.is-style-outline--2 .wp-block-button__link.wp-block-button__link:not(.has-background):hover) {
  background-color: var(--wp--preset--color--contrast);
  color: var(--wp--preset--color--base);
  border: 1px solid var(--wp--preset--color--contrast);
}

.is-style-pastilles-noires {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 15px;
}
.is-style-pastilles-noires.has-text-align-center {
  justify-content: center;
}
.is-style-pastilles-noires.has-text-align-right {
  justify-content: flex-end;
}
.is-style-pastilles-noires a {
  display: inline-block;
  border-radius: 8px;
  background-color: var(--wp--preset--color--accent-4);
  color: var(--wp--preset--color--base);
  text-decoration: none;
  padding: 4px 10px;
  font-size: 14px;
  font-weight: 400;
}
.is-style-pastilles-noires .wp-block-post-terms__separator {
  display: none;
}

.wp-block-lcdz-bloc-page-mot-decoration {
  font-size: 190px;
  font-weight: 700;
  color: transparent;
  text-stroke: 4px #757931;
  -webkit-text-stroke: 4px #757931;
  transform: rotate(-3deg);
  margin-left: -25px;
  line-height: 1;
  paint-order: stroke fill;
  min-width: calc(100vw + 50px);
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 40px;
}
@media screen and (max-width: 1000px) {
  .wp-block-lcdz-bloc-page-mot-decoration {
    font-size: 20vw;
    margin-bottom: -70px !important;
  }
}
@media screen and (max-width: 500px) {
  .wp-block-lcdz-bloc-page-mot-decoration {
    margin-bottom: -60px !important;
  }
}
body:not(.wp-admin) .wp-block-lcdz-bloc-page-mot-decoration {
  z-index: -1;
  transform: rotate(-3deg);
}
.wp-block-lcdz-bloc-page-mot-decoration--conteneur {
  overflow-y: visible;
  overflow-x: clip;
}

.wp-block-lcdz-bloc-arguments {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0 20px;
}
@media screen and (min-width: 1001px) {
  .wp-block-lcdz-bloc-arguments {
    padding-left: 30px;
  }
}
@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-arguments {
    row-gap: 27px;
  }
}
.wp-block-lcdz-bloc-arguments .argument {
  width: 420px;
}
@media screen and (max-width: 1000px) {
  .wp-block-lcdz-bloc-arguments .argument {
    width: min(370px, 50% - 10px);
  }
}
@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-arguments .argument {
    width: 100%;
  }
}
@media screen and (min-width: 769px) {
  .wp-block-lcdz-bloc-arguments .argument:nth-of-type(even) {
    margin-top: 30px;
  }
}
.wp-block-lcdz-bloc-arguments .titre {
  display: flex;
  padding-left: 40px;
  align-items: flex-end;
  justify-content: space-between;
}
.wp-block-lcdz-bloc-arguments .titre p {
  color: var(--wp--preset--color--accent-1);
  font-size: 52px;
  font-weight: 500;
  margin-top: auto;
  margin-bottom: 0;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-arguments .titre p {
    font-size: 30px;
    margin-bottom: 5px;
  }
}
.wp-block-lcdz-bloc-arguments .titre img {
  margin-bottom: 20px;
  max-height: 115px;
}
@media screen and (max-width: 1000px) {
  .wp-block-lcdz-bloc-arguments .titre img {
    max-height: 90px;
  }
}
@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-arguments .titre img {
    display: none;
  }
}
.wp-block-lcdz-bloc-arguments .texte {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  background-color: var(--wp--preset--color--accent-1);
  font-size: 25px;
  font-weight: 500;
  border-radius: 30px;
  padding-left: 40px;
  padding-right: 40px;
  min-height: 165px;
  margin-right: 20px;
  line-height: 1.2;
}
@media screen and (max-width: 1000px) {
  .wp-block-lcdz-bloc-arguments .texte {
    font-size: 22px;
    min-height: 130px;
  }
}
@media screen and (max-width: 768px) {
  .wp-block-lcdz-bloc-arguments .texte {
    color: var(--wp--preset--color--accent-4);
    font-size: 18px;
    margin-right: 0;
    padding-left: 30px;
    padding-right: 30px;
    min-height: 85px;
  }
}
.wp-block-lcdz-bloc-arguments .texte img {
  filter: brightness(0);
  max-height: 70px;
  width: 70px;
}
@media screen and (min-width: 769px) {
  .wp-block-lcdz-bloc-arguments .texte img {
    display: none;
  }
}

body:not(.wp-admin) .wp-block-lcdz-bloc-contact {
  position: fixed;
  right: 30px;
  bottom: 30px;
  border-radius: 20px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact {
    right: 10px;
    bottom: 10px;
  }
}
@media screen and (max-width: 480px) {
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact {
    border-radius: 15px;
  }
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact * {
  box-sizing: border-box;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .enTete {
  display: flex;
  align-items: center;
  gap: 2px 10px;
  color: var(--wp--preset--color--base);
  line-height: 1.35;
  padding-right: 15px;
  background-color: var(--wp--preset--color--accent-4);
  border-radius: 20px;
}
@media screen and (max-width: 480px) {
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact .enTete {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .enTete p {
  margin: 0;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .close {
  position: absolute;
  top: 30px;
  right: 30px;
  cursor: pointer;
}
@media screen and (max-width: 480px) {
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact .close {
    top: 10px;
    right: 10px;
  }
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .image {
  width: 75px;
  height: 75px;
}
@media screen and (max-width: 480px) {
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact .image {
    width: 65px;
    height: 65px;
  }
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media screen and (max-width: 480px) {
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact .image img {
    border-radius: 15px;
  }
}
@media screen and (min-width: 481px) {
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact .intro {
    font-size: 18px;
  }
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .fonction {
  line-height: 1;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .contenu {
  background-color: var(--wp--preset--color--base);
  text-align: center;
  border-radius: 0 0 20px 20px;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .telephone {
  margin: 0;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .telephone a {
  font-size: 20px;
  font-weight: 500;
  text-decoration: none;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .telephone a:hover, body:not(.wp-admin) .wp-block-lcdz-bloc-contact .telephone a:active, body:not(.wp-admin) .wp-block-lcdz-bloc-contact .telephone a:focus {
  color: var(--wp--preset--color--accent-1);
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .rs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin-top: 10px;
  margin-bottom: 17px;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .rs p {
  margin: 0;
  line-height: 1;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .rs img {
  transition: transform 0.2s;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .rs a:hover img, body:not(.wp-admin) .wp-block-lcdz-bloc-contact .rs a:active img, body:not(.wp-admin) .wp-block-lcdz-bloc-contact .rs a:focus img {
  transform: scale(1.1);
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .linkedin a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background-color: var(--wp--preset--color--accent-1);
  border-radius: 50%;
  transition: background-color 0.2s;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .linkedin a img {
  width: 18px;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact .bouton a {
  padding-top: 12px;
  padding-bottom: 12px;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact:not(.ouvert) {
  cursor: pointer;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact:not(.ouvert) .contenu, body:not(.wp-admin) .wp-block-lcdz-bloc-contact:not(.ouvert) .close, body:not(.wp-admin) .wp-block-lcdz-bloc-contact:not(.ouvert) .fonction {
  display: none;
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact:not(.ouvert) .image img {
  border: 2px solid var(--wp--preset--color--accent-4);
}
@media screen and (max-width: 480px) {
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact:not(.ouvert) .enTete {
    border-radius: 15px;
  }
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact:not(.ouvert) .titre {
    display: none;
  }
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact:not(.ouvert) .intro {
    font-size: 9px;
    width: 50px;
    text-align: center;
    margin-bottom: 2px;
  }
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact.ouvert {
  width: 255px;
}
@media screen and (max-width: 480px) {
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact.ouvert {
    width: 215px;
  }
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact.ouvert .enTete {
  flex-direction: column;
  padding-bottom: 20px;
  border-radius: 20px 20px 0 0;
}
@media screen and (min-width: 481px) {
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact.ouvert .enTete {
    padding-left: 15px;
  }
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact.ouvert .image {
  margin-top: -40px;
  margin-bottom: 15px;
  width: 130px;
  height: 130px;
}
@media screen and (max-width: 480px) {
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact.ouvert .image {
    width: 100px;
    height: 100px;
  }
}
body:not(.wp-admin) .wp-block-lcdz-bloc-contact.ouvert .contenu {
  padding-top: 7px;
  padding-bottom: 15px;
}
@media screen and (min-width: 481px) {
  body:not(.wp-admin) .wp-block-lcdz-bloc-contact.ouvert .intro, body:not(.wp-admin) .wp-block-lcdz-bloc-contact.ouvert .titre {
    font-size: 22px;
  }
}

.wp-block-lcdz-bloc-article-accroche {
  position: relative;
}
.wp-block-lcdz-bloc-article-accroche:before {
  position: absolute;
  content: url("../img/deco-article.svg");
  left: -12rem;
  bottom: -14rem;
  animation: vagues 1s steps(1, jump-start) 0s infinite alternate;
}

.bloc-404 {
  overflow: clip;
  padding-top: 4rem;
}

.bloc-404__bandeau {
  position: relative;
  padding: 60px 0;
}
.bloc-404__bandeau::before {
  content: "";
  position: absolute;
  inset: -10px -5% -100px -5%;
  background-color: #C4C130;
  transform: rotate(-3deg);
  z-index: 0;
}

.bloc-404__bandeau-inner {
  position: relative;
  z-index: 1;
  transform: rotate(-3deg);
}

.bloc-404__swiper {
  overflow: visible;
}
.bloc-404__swiper .swiper-wrapper {
  transition-timing-function: linear !important;
}
.bloc-404__swiper .swiper-slide {
  width: auto;
  display: flex;
  align-items: center;
}
.bloc-404__swiper .swiper-slide img {
  height: 65px;
  width: auto;
  display: block;
  user-select: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .bloc-404__swiper .swiper-slide img {
    height: 80px;
  }
}

.bloc-404__content {
  position: relative;
  background-color: var(--wp--preset--color--accent-4);
  z-index: 2;
  padding: 4rem 25px;
}
@media screen and (max-width: 768px) {
  .bloc-404__content {
    padding: 2.5rem 25px;
  }
}

.bloc-404__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  max-width: var(--wp--style--global--wide-size);
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .bloc-404__grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
}

.bloc-404__grid-title {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 1.25rem 0;
  color: var(--wp--preset--color--base);
}
@media screen and (max-width: 768px) {
  .bloc-404__grid-title {
    font-size: 1.25rem;
    margin-bottom: 1rem;
  }
}

.bloc-404__teaser {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  gap: 1.25rem;
  text-decoration: none;
  color: var(--wp--preset--color--base);
}

.bloc-404__teaser-img {
  position: relative;
  flex-shrink: 0;
  width: 190px;
  height: 140px;
  border-radius: 20px;
  overflow: hidden;
}
.bloc-404__teaser-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.3s ease;
}
.bloc-404__teaser:hover .bloc-404__teaser-img img {
  transform: scale(1.05);
}
.bloc-404__teaser-img::after {
  content: "";
  position: absolute;
  bottom: 8px;
  right: 8px;
  width: 20px;
  height: 20px;
  background: url(../img/btn_plus.svg) no-repeat center/contain;
}

.bloc-404__teaser-body {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  min-width: 0;
  max-width: 275px;
}

.bloc-404__teaser-label {
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #FDFDFD;
}

.bloc-404__teaser-title {
  font-size: 1.375rem;
  font-weight: 700;
  margin: 0;
  color: #FDFDFD;
}
@media screen and (max-width: 768px) {
  .bloc-404__teaser-title {
    font-size: 1rem;
  }
}

.bloc-404__teaser-excerpt {
  font-size: 1rem;
  font-weight: 400;
  margin: 0;
  color: #FDFDFD;
}

.expertise-accueil {
  max-width: var(--wp--style--global--wide-size);
  margin-inline: auto;
}

.expertise-accueil__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(1rem, 2vw, 1.5rem);
}
@media screen and (max-width: 768px) {
  .expertise-accueil__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 480px) {
  .expertise-accueil__grid {
    grid-template-columns: 1fr;
    max-width: 85;
  }
}

.expertise-accueil__item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 4/3;
  border-radius: 20px;
  overflow: hidden;
  text-decoration: none;
}
.expertise-accueil__item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.55) 0%, transparent 60%);
  transition: opacity 0.3s ease;
}
.expertise-accueil__item:hover .expertise-accueil__img, .expertise-accueil__item:focus-visible .expertise-accueil__img {
  transform: scale(1.05);
}
.expertise-accueil__item:hover::after, .expertise-accueil__item:focus-visible::after {
  opacity: 0.8;
}

.expertise-accueil__img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.expertise-accueil__label {
  position: relative;
  z-index: 1;
  padding: clamp(0.75rem, 2vw, 1.25rem);
  color: #fff;
  font-size: clamp(24px, 3vw, 30px);
  font-weight: 700;
  text-align: center;
}

.expertise-accueil__item--cta {
  grid-column: span 2;
  aspect-ratio: auto;
  background-color: var(--wp--preset--color--primary, #C4C130);
  flex-direction: row;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.expertise-accueil__item--cta svg {
  width: clamp(100px, 20vw, 208px);
  height: auto;
}
@media screen and (max-width: 480px) {
  .expertise-accueil__item--cta {
    grid-column: span 1;
    aspect-ratio: 4/3;
    flex-direction: column;
  }
}
.expertise-accueil__item--cta::after {
  display: none;
}
.expertise-accueil__item--cta .expertise-accueil__label {
  color: var(--wp--preset--color--contrast, #1a1a1a);
  font-size: clamp(24px, 3vw, 30px);
  padding: 0;
}
.expertise-accueil__item--cta:hover, .expertise-accueil__item--cta:focus-visible {
  opacity: 0.9;
}

.expertise-accueil__cta-icon {
  position: relative;
  z-index: 1;
  color: var(--wp--preset--color--contrast, #1a1a1a);
}

.bandeau-mot {
  overflow-x: clip;
}

.bandeau-mot__container {
  display: flex;
  justify-content: center;
  padding: 100px 40px;
  background: #C4C130;
}

.bandeau-mot__svg {
  width: 100%;
  max-width: 1200px;
  height: auto;
}
@media screen and (max-width: 1024px) {
  .bandeau-mot__svg {
    max-width: 895px;
  }
}
@media screen and (max-width: 768px) {
  .bandeau-mot__svg {
    max-width: 600px;
  }
}
@media screen and (max-width: 425px) {
  .bandeau-mot__svg {
    max-width: 320px;
  }
}

.bandeau-mot__line path {
  opacity: 0;
  transform: translateY(30px);
}

.bandeau-mot.is-animated .bandeau-mot__line path {
  animation: waveUp 0.6s ease-out forwards;
}

@keyframes waveUp {
  0% {
    opacity: 0;
    transform: translateY(30px);
  }
  60% {
    opacity: 1;
    transform: translateY(-8px);
  }
  80% {
    transform: translateY(3px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.wp-admin .bandeau-mot__line path {
  opacity: 1;
  transform: none;
  animation: none;
}

.bandeau-header-mot {
  overflow-x: clip;
}

.bandeau-header-mot__container {
  overflow: visible;
  display: flex;
  justify-content: center;
  background: #C4C130;
}

.bandeau-header-mot__svg {
  width: 100%;
  height: auto;
}

.bandeau-header-mot__line path {
  --dash-length: 9999;
  stroke-dasharray: var(--dash-length);
  stroke-dashoffset: var(--dash-length);
}

.bandeau-header-mot.is-animated-line1 .bandeau-header-mot__line[data-line="1"] path {
  transition: stroke-dashoffset 2s cubic-bezier(0.45, 0, 0.55, 1);
  stroke-dashoffset: 0;
}

.bandeau-header-mot.is-animated-line2 .bandeau-header-mot__line[data-line="2"] path {
  transition: stroke-dashoffset 2s cubic-bezier(0.45, 0, 0.55, 1);
  stroke-dashoffset: 0;
}

.wp-admin .bandeau-header-mot__line path {
  stroke-dashoffset: 0 !important;
}

.accueil-actu__grid {
  display: grid;
  gap: 2rem;
  max-width: var(--wp--style--global--content-size);
  margin: 0 auto;
}
.accueil-actu__cta {
  display: flex;
  justify-content: center;
  margin-top: 2.5rem;
}
.accueil-actu--double .accueil-actu__grid {
  grid-template-columns: 1fr 1fr;
}
@media screen and (max-width: 768px) {
  .accueil-actu--double .accueil-actu__grid {
    grid-template-columns: 1fr;
  }
}
.accueil-actu--single .accueil-actu__grid {
  grid-template-columns: 1fr;
}
.accueil-actu--single .accueil-actu__card {
  display: grid;
  grid-template-columns: 1fr;
  width: 100%;
  max-width: 100%;
}
.accueil-actu--single .accueil-actu__card .article-card__image {
  width: 100%;
  height: 25rem;
}
@media screen and (max-width: 768px) {
  .accueil-actu--single .accueil-actu__card .article-card__image {
    height: 18rem;
  }
}
.accueil-actu--single .accueil-actu__card .article-card__title {
  font-size: clamp(22px, 2.5vw, 35px);
}
.accueil-actu .article-card {
  width: 100%;
}
.accueil-actu .article-card__image {
  width: 100%;
}

.wp-site-blocks :focus {
  outline-style: none !important;
}

.newsletter {
  height: 225px !important;
}

@media screen and (min-width: 782px) {
  body.single-references .sticky {
    position: sticky;
    top: 100px;
  }
}
@media screen and (min-width: 782px) {
  body.single-references.admin-bar .sticky {
    top: 140px;
  }
}

.wp-block-group.contact {
  position: relative;
  overflow: hidden;
  z-index: 2;
}
.wp-block-group.contact:after {
  position: absolute;
  left: 0;
  bottom: -40px;
  width: 100%;
  content: "Contact";
  font-size: 330px;
  font-weight: 700;
  color: var(--wp--preset--color--accent-3);
  text-stroke: 2px #C8CBCA;
  -webkit-text-stroke: 2px #C8CBCA;
  transform: rotate(-4deg);
  line-height: 1;
  paint-order: stroke fill;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1150px) {
  .wp-block-group.contact:after {
    font-size: 26vw;
    text-stroke: 4px #C8CBCA;
    -webkit-text-stroke: 4px #C8CBCA;
    bottom: -20px;
  }
}
@media screen and (max-width: 500px) {
  .wp-block-group.contact:after {
    bottom: -10px;
  }
}
.wp-block-group.contact * {
  position: relative;
  z-index: 5;
}
.wp-block-group.contact div.wpforms-container-full:not(:empty) {
  margin-top: 0;
}
.wp-block-group.contact .wpforms-container .wpforms-form .wpforms-field-label {
  margin-bottom: 1px;
  margin-left: 20px;
  font-weight: 500;
}
.wp-block-group.contact .wpforms-container .wpforms-form .wpforms-field-sublabel {
  margin-left: 20px;
}
.wp-block-group.contact .wpforms-container .wpforms-submit-container {
  text-align: center;
  margin-top: 60px;
}
.wp-block-group.contact div.wpforms-container-full button[type=submit] {
  font-size: 16px;
  height: 48px;
  padding-left: 30px;
  padding-right: 30px;
}

.mailto a {
  text-decoration: none;
}
.mailto a:hover {
  text-decoration: underline;
}

.labo-url {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}
.labo-url a {
  position: relative;
  display: block;
  overflow: hidden;
  border-radius: 20px;
}
.labo-url img {
  transition: transform 0.5s ease;
  display: block;
}
.labo-url a:hover img {
  transform: scale(1.1);
}
.labo-url a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(38, 49, 50, 0.2);
  z-index: 1;
  opacity: 0;
  transition: opacity 0.5s ease;
  pointer-events: none;
  border-radius: 20px;
}
.labo-url a:hover::before {
  opacity: 1;
}
.labo-url a::after {
  content: "";
  position: absolute;
  bottom: 12px;
  right: 12px;
  width: 41px;
  height: 40px;
  z-index: 2;
  background-size: contain;
  background-repeat: no-repeat;
  transition: background-image 0.3s ease;
  background-image: url("data:image/svg+xml,%3Csvg width='41' height='40' viewBox='0 0 41 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.117 39.7097C21.279 40.1414 31.6029 34.7756 31.6029 34.7756C31.6029 34.7756 38.8766 28.8547 40.1671 20.2818C41.4576 11.7088 31.6029 4.92449 25.561 1.34729C19.5192 -2.22991 10.955 1.34729 4.97182 11.7088C-1.01137 22.0704 -0.600757 27.9912 1.10035 31.1367C2.80145 34.2822 10.955 39.2779 16.117 39.7097Z' fill='%23C4C130'/%3E%3Cpath d='M27.1878 19.5166C21.0479 19.1085 16.8546 20.084 12.5849 19.1085' stroke='%23263132' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.8859 12.2379C19.8947 17.1049 19.8771 21.9261 19.8859 26.7931' stroke='%23263132' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.labo-url a:hover::after {
  background-image: url("data:image/svg+xml,%3Csvg width='41' height='40' viewBox='0 0 41 40' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M16.117 39.7097C21.279 40.1414 31.6029 34.7756 31.6029 34.7756C31.6029 34.7756 38.8766 28.8547 40.1671 20.2818C41.4576 11.7088 31.6029 4.92449 25.561 1.34729C19.5192 -2.22991 10.955 1.34729 4.97182 11.7088C-1.01137 22.0704 -0.600757 27.9912 1.10035 31.1367C2.80145 34.2822 10.955 39.2779 16.117 39.7097Z' fill='%23324f51'/%3E%3Cpath d='M27.1878 19.5166C21.0479 19.1085 16.8546 20.084 12.5849 19.1085' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Cpath d='M19.8859 12.2379C19.8947 17.1049 19.8771 21.9261 19.8859 26.7931' stroke='%23ffffff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.img_picto {
  transition: transform 0.5s ease;
}
.img_picto:hover {
  transform: scale(1.1);
}

.titre-agence {
  position: relative;
}
.titre-agence::after {
  content: "";
  position: absolute;
  background-image: url(../img/deco-titre-equipe.svg);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  width: 83px;
  height: 120px;
  bottom: -5rem;
}
@media screen and (max-width: 768px) {
  .titre-agence::after {
    width: 50px;
    height: 72px;
    bottom: -3rem;
  }
}
@media screen and (max-width: 560px) {
  .titre-agence::after {
    display: none;
  }
}

.contact-equipe {
  position: relative;
}
.contact-equipe::before {
  content: "";
  position: absolute;
  background-image: url("../img/contact-equipe.svg");
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top left;
  width: 182px;
  height: 112px;
  left: 0;
  top: -2rem;
}
@media screen and (max-width: 1024px) {
  .contact-equipe::before {
    width: 150px;
  }
}
@media screen and (max-width: 768px) {
  .contact-equipe::before {
    width: 110px;
    height: 68px;
    top: -1rem;
  }
}
@media screen and (max-width: 425px) {
  .contact-equipe::before {
    width: 40px;
    height: 49px;
  }
}

a[target=_blank]:not([href*="formation.lacouleurduzebre.com"]):not(.wp-block-button__link):not(:has(img)):not(:has(svg)) {
  position: relative;
  white-space: normal;
}
a[target=_blank]:not([href*="formation.lacouleurduzebre.com"]):not(.wp-block-button__link):not(:has(img)):not(:has(svg))::after {
  content: "";
  display: inline-block;
  margin-left: 0.2em;
  width: 1em;
  height: 0.8em;
  background-image: url("../img/external-link.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  vertical-align: baseline;
  transition: background-image 0.3s ease;
}
a[target=_blank]:not([href*="formation.lacouleurduzebre.com"]):not(.wp-block-button__link):not(:has(img)):not(:has(svg)):hover::after {
  background-image: url("../img/external-link-vert.svg");
}

:root {
  --wpforms-field-text-color: #324F51 !important;
}

#wpforms-11.wpforms-block-f7870ab5-a035-4396-bf4a-7072c5eb6919 {
  --wpforms-field-text-color: #324F51 !important;
}

#tarteaucitronAlertBig #tarteaucitronPersonalize, #tarteaucitronAlertBig #tarteaucitronPersonalize2, .tarteaucitronCTAButton {
  background-color: #C4C130 !important;
}

#tarteaucitronRoot .tarteaucitronDeny {
  background: #C4C130 !important;
}

#tarteaucitronRoot .tarteaucitronAllow {
  background: #C4C130 !important;
}

.display-none {
  display: none !important;
}

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