@charset "UTF-8";
/* ----------------------------------------------------- */
/* INCLUDES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* MIXIN.SCSS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONT FACE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* KEYFRAMES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CENTRE UNE IMAGE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CENTRE UN ELEMENT */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CENTRE UN BACKGROUND QUAND ON LE MET EN INLINE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* TRIANGLES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* Display flex */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* Object Fit */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONCTIONS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONVERSION PX -> EM */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONVERSION PX -> REM */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONVERSION PX -> % */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* VARIABLES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* Couleurs */
/* ----------------------------------------------------- */
/* Spécifiques au site */
/* ----------------------------------------------------- */
/* gris moyen fonce */
/* gris moyen */
/* gris clair */
/*  */
/* ----------------------------------------------------- */
/* Correspondances couleurs -> texte */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONTS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONT-SIZES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* TRANSITIONS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* BASES PADDING & MARGIN */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* BORDER RADIUS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONTAINERS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* HEADER */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* SIDEBAR */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FOOTER */
/* ----------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* SCREENS */
/* ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------- */
/* ADMIN */
/* ----------------------------------------------------- */
:root {
  --paddingBase: 10vw;
  --hdr-h: 60px;
  --body-bg: #E5DACB;
}

/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* -------------------- RESPONSIVE --------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* XS */
/* ----------------------------------------------------- */
@media (min-width: 576px) {
  :root {
    --paddingBase: 8vw;
    --hdr-h: 80px;
  }
}
/* ----------------------------------------------------- */
/* SM */
/* ----------------------------------------------------- */
@media (min-width: 768px) {
  :root {
    --paddingBase: 2em;
    --hdr-h: 100px;
  }
}
/* ----------------------------------------------------- */
/* MD */
/* ----------------------------------------------------- */
@media (min-width: 992px) {
  :root {
    --paddingBase: 2.5em;
    --hdr-h: 120px;
  }
}
/* ----------------------------------------------------- */
/* LG */
/* ----------------------------------------------------- */
@media (min-width: 1200px) {
  :root {
    --paddingBase: 3em;
    --hdr-h: 120px;
  }
}
/* ----------------------------------------------------- */
/* XL */
/* ----------------------------------------------------- */
@media (min-width: 1400px) {
  :root {
    --paddingBase: 3em;
    --hdr-h: 120px;
  }
}
/* ----------------------------------------------------- */
/* XXL */
/* ----------------------------------------------------- */
@media (min-width: 1650px) {
  :root {
    --paddingBase: 3em;
    --hdr-h: 120px;
  }
}
/* ----------------------------------------------------- */
/* HOVER */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ANIMATIONS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
@keyframes ani {
  from {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
  to {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
}
@keyframes ani2 {
  from {
    -webkit-mask-position: 100% 0;
    mask-position: 100% 0;
  }
  to {
    -webkit-mask-position: 0 0;
    mask-position: 0 0;
  }
}
/* ----------------------------------------------------- */
/* SCROLLDISC */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ONDE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* BOUNCE */
/* ----------------------------------------------------- */
@keyframes bounce {
  0% {
    opacity: 0;
    transform: scale(0.3) translate3d(0, 0, 0);
  }
  50% {
    opacity: 0.9;
    transform: scale(1.1);
  }
  80% {
    opacity: 1;
    transform: scale(0.89);
  }
  100% {
    opacity: 1;
    transform: scale(1) translate3d(0, 0, 0);
  }
}
/* ----------------------------------------------------- */
/* BOUNCE */
/* ----------------------------------------------------- */
@keyframes svgbutton {
  0% {
    opacity: 0;
    transform: scale(0.3) transform(-50%, -50%);
  }
  50% {
    opacity: 1;
    transform: scale(1.1) transform(-50%, -50%);
  }
  80% {
    opacity: 0;
    transform: scale(0.89) transform(-50%, -50%);
  }
  100% {
    opacity: 1;
    transform: scale(1) transform(-50%, -50%);
  }
}
/* ----------------------------------------------------- */
/* BALANCE */
/* ----------------------------------------------------- */
@keyframes balance {
  0%, 100% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(-20%);
  }
  75% {
    transform: translateX(20%);
  }
}
/* ----------------------------------------------------- */
/* BALANCE VERTICALE */
/* ----------------------------------------------------- */
@keyframes balancev {
  0%, 100% {
    transform: translateY(0);
  }
  25% {
    transform: translateY(-20%);
  }
  75% {
    transform: translateY(20%);
  }
}
/* ----------------------------------------------------- */
/* PULSE */
/* ----------------------------------------------------- */
@keyframes wazapulse {
  0% {
    opacity: 0;
    transform: scale(1) translate(-50%, -50%);
  }
  80% {
    opacity: 1;
    transform: scale(1.6) translate(-50%, -50%);
  }
  100% {
    opacity: 0;
    transform: scale(1.8) translate(-50%, -50%);
  }
}
/* ----------------------------------------------------- */
/* WAVES */
/* ----------------------------------------------------- */
@keyframes waves {
  0% {
    transform: scale(1);
    transform-origin: 50% 50%;
    opacity: 0;
  }
  40% {
    opacity: 1;
  }
  80% {
    transform: scale(1.25);
    opacity: 1;
  }
  100% {
    transform: scale(1.25);
    opacity: 0;
  }
}
/* ----------------------------------------------------- */
/* RESSORT */
/* ----------------------------------------------------- */
@keyframes ressort {
  0%, 100% {
    transform: translate(-25%, -50%);
  }
  50% {
    transform: translate(0%, -50%);
  }
}
/* ----------------------------------------------------- */
/* RESSORT VERTICAL */
/* ----------------------------------------------------- */
@keyframes ressortv {
  0%, 100% {
    transform: translateY(-25%);
  }
  50% {
    transform: translateY(0%);
  }
}
/* ----------------------------------------------------- */
/* ELASTIC */
/* ----------------------------------------------------- */
@keyframes elastic {
  0% {
    transform: scale(1.1);
    opacity: 1;
  }
  50% {
    transform: scale(1.4);
    opacity: 0.7;
  }
  60% {
    transform: scale(0.6);
    opacity: 1;
  }
  80% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes left2right {
  0% {
    left: 0;
  }
  100% {
    left: 50%;
  }
}
@keyframes rollIn {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes elasticIn {
  0% {
    transform: scale(4);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
@keyframes elasticOut {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  100% {
    transform: scale(4);
    opacity: 0;
  }
}
/* ----------------------------------------------------- */
/* FLOAT */
/* ----------------------------------------------------- */
@keyframes float {
  0% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
  50% {
    box-shadow: 0 25px 15px 0px rgba(0, 0, 0, 0.2);
    transform: translatey(-20px);
  }
  100% {
    box-shadow: 0 5px 15px 0px rgba(0, 0, 0, 0.6);
    transform: translatey(0px);
  }
}
/* ----------------------------------------------------- */
/* ZOOMIN */
/* ----------------------------------------------------- */
@keyframes zoomin {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.25);
  }
}
/* ----------------------------------------------------- */
/* ZOOMOUT */
/* ----------------------------------------------------- */
@keyframes zoomout {
  0% {
    transform: scale(1.25);
  }
  100% {
    transform: scale(1);
  }
}
/* ----------------------------------------------------- */
/* LDS ROLLER */
/* ----------------------------------------------------- */
@keyframes lds-roller {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
/* ----------------------------------------------------- */
/* MOVE BG */
/* ----------------------------------------------------- */
@keyframes moveYourBG {
  0% {
    background-position: 0px 0px;
  }
  100% {
    background-position: -15px 0px;
  }
}
/* ----------------------------------------------------- */
/* MOVE BG VERTICAL */
/* ----------------------------------------------------- */
@keyframes moveYourBGV {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 0 100%;
  }
}
.ver:hover path {
  animation: ver 2s infinite alternate ease-in-out;
}

@keyframes ver {
  0%, 100% {
    d: path("M30,4.3C28.8,6.5,26.5,8,22.5,8c-5,0-7.5-5-12.7-5C6.6,3,4.6,4.5,3,7.8");
  }
  50% {
    d: path("M30,6.7C29,4.6,26.5,3,22.5,3c-5,0-7.5,5-12.7,5C6.1,8,4.1,5.9,3,3.2");
  }
}
@keyframes allBtn {
  0% {
    width: 2em;
    background-color: var(--wp--preset--color--secondary);
  }
  50% {
    width: 1em;
    background-color: var(--wp--preset--color--primary);
  }
  100% {
    width: 2em;
    background-color: var(--wp--preset--color--secondary);
  }
}
@keyframes allBtnWhite {
  0% {
    width: 2em;
    background-color: var(--wp--preset--color--secondary);
  }
  50% {
    width: 1em;
    background-color: var(--wp--preset--color--white);
  }
  100% {
    width: 2em;
    background-color: var(--wp--preset--color--secondary);
  }
}
@keyframes letterAppearFromRight {
  0% {
    transform: translateX(120%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes letterAppearFromLeft {
  0% {
    transform: translateX(-120%);
  }
  100% {
    transform: translateX(0%);
  }
}
@keyframes blink {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0;
  }
}
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* VARIABLES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* Couleurs */
/* ----------------------------------------------------- */
/* Spécifiques au site */
/* ----------------------------------------------------- */
/* gris moyen fonce */
/* gris moyen */
/* gris clair */
/*  */
/* ----------------------------------------------------- */
/* Correspondances couleurs -> texte */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONTS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONT-SIZES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* TRANSITIONS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* BASES PADDING & MARGIN */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* BORDER RADIUS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONTAINERS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* HEADER */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* SIDEBAR */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FOOTER */
/* ----------------------------------------------------- */
/* ---------------------------------------------------------------------------------------------------------- */
/* SCREENS */
/* ---------------------------------------------------------------------------------------------------------- */
/* ----------------------------------------------------- */
/* ADMIN */
/* ----------------------------------------------------- */
:root {
  --paddingBase: 10vw;
  --hdr-h: 60px;
  --body-bg: #E5DACB;
}

/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* -------------------- RESPONSIVE --------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* XS */
/* ----------------------------------------------------- */
@media (min-width: 576px) {
  :root {
    --paddingBase: 8vw;
    --hdr-h: 80px;
  }
}
/* ----------------------------------------------------- */
/* SM */
/* ----------------------------------------------------- */
@media (min-width: 768px) {
  :root {
    --paddingBase: 2em;
    --hdr-h: 100px;
  }
}
/* ----------------------------------------------------- */
/* MD */
/* ----------------------------------------------------- */
@media (min-width: 992px) {
  :root {
    --paddingBase: 2.5em;
    --hdr-h: 120px;
  }
}
/* ----------------------------------------------------- */
/* LG */
/* ----------------------------------------------------- */
@media (min-width: 1200px) {
  :root {
    --paddingBase: 3em;
    --hdr-h: 120px;
  }
}
/* ----------------------------------------------------- */
/* XL */
/* ----------------------------------------------------- */
@media (min-width: 1400px) {
  :root {
    --paddingBase: 3em;
    --hdr-h: 120px;
  }
}
/* ----------------------------------------------------- */
/* XXL */
/* ----------------------------------------------------- */
@media (min-width: 1650px) {
  :root {
    --paddingBase: 3em;
    --hdr-h: 120px;
  }
}
/* ----------------------------------------------------- */
/* HOVER */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* MIXIN.SCSS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONT FACE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* KEYFRAMES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CENTRE UNE IMAGE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CENTRE UN ELEMENT */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CENTRE UN BACKGROUND QUAND ON LE MET EN INLINE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* TRIANGLES */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* Display flex */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* Object Fit */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* FONCTIONS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONVERSION PX -> EM */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONVERSION PX -> REM */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* CONVERSION PX -> % */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* SURCHARGE DES STYLES DE CAROUSEL */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* SLICK CAROUSEL */
/* ----------------------------------------------------- */
.slick-track {
  display: flex !important;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
.slick-vertical .slick-track {
  display: flex !important;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: flex-start;
  align-items: flex-start;
}

.slick-slide {
  float: none !important;
  height: auto !important;
}

.slick-dotted.slick-slider {
  margin-bottom: 0px;
}

.slick-dots {
  position: absolute;
  z-index: 30;
  bottom: 10px;
  margin: 0 0 0 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  width: auto;
  height: auto;
  margin: 0em 0.5em;
}
.slick-dots li button {
  position: relative;
  width: 1.25em;
  height: 1.25em;
  background-color: transparent;
  border: 1px solid var(--wp--preset--color--black);
  border-radius: 100em;
  padding: 0;
  font-size: 1em;
}
.slick-dots li button:before, .slick-dots li button:after {
  display: none;
}
.slick-dots li button::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: transparent;
  border-radius: 100em;
  transform: translate(-50%, -50%) scale(0);
  transition: all 0.4s cubic-bezier(0.14, 0.66, 0.28, 0.93);
}
.slick-dots li.slick-active button {
  border-color: var(--wp--preset--color--white);
}
.slick-dots li.slick-active button:before {
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%) scale(1);
  background-color: var(--wp--preset--color--black);
}

.slick-arrow {
  --icon-size: 16px;
  --icon-color: var(--wp--preset--color--white);
  display: inline-block;
  vertical-align: top;
  width: 10%;
  height: auto;
  font-size: 1em;
  padding: 0.5em;
  border: none;
  background-color: transparent;
  overflow: visible;
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  transform: none;
  transition: all 0.4s cubic-bezier(0.14, 0.66, 0.28, 0.93);
}
.slick-arrow:before {
  display: none;
}
.slick-arrow.slick-prev {
  border-radius: 0em 0 0 0em;
  background: url("/content/themes/wazacom-child/assets/images/arrow-left.svg") no-repeat center;
  background-size: auto 60%;
  left: 0;
  right: auto;
  z-index: 1000;
}
.slick-arrow.slick-next {
  left: auto;
  right: 0;
  border-radius: 0 0em 0em 0;
  background: url("/content/themes/wazacom-child/assets/images/arrow-right.svg") no-repeat center;
  background-size: auto 60%;
  z-index: 1000;
}
.slick-arrow.slick-white.slick-prev {
  background-image: url("/content/themes/wazacom-child/assets/images/arrow-left-white.svg");
}
.slick-arrow.slick-white.slick-next {
  background-image: url("/content/themes/wazacom-child/assets/images/arrow-right-white.svg");
}
.slick-arrow.slick-prev:hover, .slick-arrow.slick-prev:focus, .slick-arrow.slick-next:hover, .slick-arrow.slick-next:focus {
  color: var(--wp--preset--color--primary);
}

/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* RESPONSIVE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* XXS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* XS */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* SM */
/* ----------------------------------------------------- */
@media (min-width: 768px) {
  .slick-arrow {
    padding: 0.75em;
  }
  .slick-dots li button {
    width: 30px;
    height: 30px;
  }
}
/* ----------------------------------------------------- */
/* MD */
/* ----------------------------------------------------- */
@media (min-width: 992px) {
  .slick-arrow {
    padding: 1em;
  }
}
/* ----------------------------------------------------- */
/* LG */
/* ----------------------------------------------------- */
@media (min-width: 1200px) {
  .slick-arrow {
    padding: 1em;
  }
  .slick-arrow.slick-prev, .slick-arrow.slick-next {
    background-size: auto 50%;
  }
  .slick-arrow.slick-prev:hover {
    background-position-x: 10%;
  }
  .slick-arrow.slick-next:hover {
    background-position-x: 90%;
  }
}
/* ----------------------------------------------------- */
/* XL */
/* ----------------------------------------------------- */
@media (min-width: 1400px) {
  .slick-arrow {
    padding: 1.5em 1em;
  }
}
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* SECTIONS D'ACTUALITE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
.realisation {
  /* ----------------------------------------------------- */
  /* SEARCH */
  /* ----------------------------------------------------- */
  /* ---------------------------------------------------------------------------------------------------------- */
  /* HOME */
  /* ---------------------------------------------------------------------------------------------------------- */
  /* ----------------------------------------------------- */
  /* SLIDER */
  /* ----------------------------------------------------- */
  /* ----------------------------------------------------- */
  /* GRID */
  /* ----------------------------------------------------- */
  /* ----------------------------------------------------- */
  /* GRID */
  /* ----------------------------------------------------- */
  /* ----------------------------------------------------- */
  /* LIST */
  /* ----------------------------------------------------- */
  /* ----------------------------------------------------- */
  /* SINGLE */
  /* ----------------------------------------------------- */
  /* ----------------------------------------------------- */
  /* ASIDE */
  /* ----------------------------------------------------- */
  /* ---------------------------------------------------------------------------------------------------------- */
  /* GALERIE */
  /* ---------------------------------------------------------------------------------------------------------- */
}
.realisation__search {
  margin-bottom: 1em;
}
.realisation__search form {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
  grid-gap: 1em;
}
.realisation__search form .select_container {
  width: auto;
  margin-bottom: 0;
}
.realisation__home {
  padding-top: 0;
  height: 100vh;
}
.realisation__home__container {
  position: relative;
  width: 100%;
  height: 100vh;
}
.realisation__home__container:after {
  content: "";
  display: block;
  position: absolute;
  z-index: 5;
  right: 0em;
  bottom: 0em;
  width: 40vw;
  height: 40vw;
  background: url("/content/themes/wazacom-child/assets/images/motif.png") repeat;
  background-position: 0px 0px;
  -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  transition: all 0.4s cubic-bezier(0.14, 0.66, 0.28, 0.93), opacity 0.2s linear;
  transition-delay: 0s;
  animation: moveYourBG infinite 2s linear;
  pointer-events: none;
  opacity: 0.25;
}
.realisation__home__items {
  list-style: none;
  padding: 0;
  padding-top: var(--hdr-h);
  margin: 0;
  width: 100%;
  height: 85vh;
  z-index: 10;
}
.realisation__home__navigation {
  width: 100%;
  height: 15vh;
}
.realisation__home__navigation__inner {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  width: 80%;
  height: 100%;
  padding: 2em 1em;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-contrast);
}
.realisation__home__item.slick-slide {
  width: 100% !important;
  height: 100% !important;
}
.realisation__home__item__container {
  width: 100% !important;
  height: 100% !important;
}
.realisation__home__item__images {
  width: 100%;
  height: 100%;
}
.realisation__home__item__images__avant, .realisation__home__item__images__pendant, .realisation__home__item__images__apres {
  width: 100%;
  height: 33.3333333333%;
  position: relative;
  transition: all 0.4s cubic-bezier(0.14, 0.66, 0.28, 0.93);
}
.realisation__home__item__images__avant img, .realisation__home__item__images__pendant img, .realisation__home__item__images__apres img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.realisation__home__item__images.avant .realisation__home__item__images__avant {
  height: 60%;
}
.realisation__home__item__images.avant .realisation__home__item__images__pendant {
  height: 20%;
}
.realisation__home__item__images.avant .realisation__home__item__images__apres {
  height: 20%;
}
.realisation__home__item__images.pendant .realisation__home__item__images__avant {
  height: 20%;
}
.realisation__home__item__images.pendant .realisation__home__item__images__pendant {
  height: 60%;
}
.realisation__home__item__images.pendant .realisation__home__item__images__apres {
  height: 20%;
}
.realisation__home__item__images.apres .realisation__home__item__images__avant {
  height: 20%;
}
.realisation__home__item__images.apres .realisation__home__item__images__pendant {
  height: 20%;
}
.realisation__home__item__images.apres .realisation__home__item__images__apres {
  height: 60%;
}
.realisation__home__dots {
  position: relative;
  z-index: 12;
}
.realisation__home__dots .slick-dots li button {
  background: var(--wp--preset--color--white);
}
.realisation__home__dots .slick-dots li.slick-active button {
  background: var(--wp--preset--color--secondary);
}
.realisation__home__arrows {
  position: relative;
  z-index: 11;
}
.realisation__home__arrows .slick-arrow {
  position: static;
  color: var(--wp--preset--color--white);
  --icon-color: var(--wp--preset--color--white);
}
.realisation__home__arrows .slick-arrow:hover, .realisation__home__arrows .slick-arrow:focus {
  color: var(--wp--preset--color--secondary);
}
.realisation__slider__container {
  position: relative;
}
.realisation__slider__arrows {
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
}
.realisation__slider__title {
  padding: 0;
}
.realisation__slider__title .section__title {
  text-align: left;
  text-transform: uppercase;
  color: var(--wp--preset--color--white);
}
.realisation__slider__title .section__subtitle {
  text-align: center;
  color: var(--wp--preset--color--tertiary);
}
.realisation__slider__title .text {
  padding: 0em 1em;
}
.realisation__slider__title .text p {
  color: var(--wp--preset--color--white);
  text-align: center;
}
.realisation__slider__items {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.realisation__slider__item {
  position: relative;
  padding: 0em;
}
.realisation__slider__item__container {
  position: relative;
  height: 100%;
  padding: 0;
  transition: all 1.2s cubic-bezier(0.14, 0.66, 0.28, 0.93);
}
.realisation__slider__item__image {
  height: 0;
  padding-top: 150%;
  overflow: hidden;
  position: relative;
}
.realisation__slider__item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.realisation__slider__item:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 1;
  padding: 0;
  color: var(--wp--preset--color--white);
  background: rgb(219, 177, 59);
  background: linear-gradient(0deg, rgba(219, 177, 59, 0.8) 20%, rgba(219, 177, 59, 0) 40%);
  transition: opacity 1s;
}
.realisation__slider__item:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  padding: 0;
  opacity: 0;
  color: var(--wp--preset--color--white);
  background: rgba(219, 177, 59, 0.8);
  transition: opacity 1s;
  transition-delay: 0s;
}
.realisation__slider__item__content {
  position: absolute;
  z-index: 3;
  padding: 2em;
  opacity: 1;
  height: 30%;
  left: 0;
  right: 0;
  bottom: 0;
  transition: all 0.6s cubic-bezier(0.14, 0.66, 0.28, 0.93);
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: stretch;
}
.realisation__slider__item__title {
  color: var(--wp--preset--color--white);
}
.realisation__slider__item__title h2,
.realisation__slider__item__title h3 {
  font-size: 1.5em;
  font-weight: bold;
  font-style: normal;
  line-height: 1;
  text-transform: none;
  margin-bottom: 0;
  color: inherit;
  text-transform: uppercase;
}
.realisation__slider__item__excerpt {
  display: none;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s ease-out;
  transition-delay: 0s;
  margin-top: 1em;
}
.realisation__slider__item__excerpt p {
  color: var(--wp--preset--color--white);
}
.realisation__slider__item__more {
  text-align: left;
}
.realisation__slider__item:hover:before {
  opacity: 0;
}
.realisation__slider__item:hover:after {
  opacity: 1;
}
.realisation__slider__item:hover .realisation__slider__item__content {
  transition-delay: 0s;
  height: 100%;
}
.realisation__slider__item:hover .realisation__slider__item__title {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0s;
}
.realisation__slider__item:hover .realisation__slider__item__excerpt {
  opacity: 1;
  visibility: visible;
  display: block;
  transition-delay: 1.2s;
}
.realisation__slider .slick-dots li button {
  background-color: rgba(255, 255, 255, 0.25);
}
.realisation__slider .slick-dots li.slick-active button {
  background-color: var(--wp--preset--color--secondary);
}
.realisation__slider__all {
  text-align: center;
  margin: 2em auto;
}
.realisation__grid {
  position: relative;
  z-index: 1;
  padding: 0;
  list-style: none;
}
.realisation__grid__all {
  text-align: center;
  margin: 2em 0 0;
}
.realisation__grid__all .wzcm-svg-icon {
  --icon-color: v.$gray-60;
  --icon-size: 2em;
}
.realisation__grid__all__btn {
  font-family: var(--wp--preset--font-family--primary);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.25em;
}
.realisation__grid__all__btn span {
  vertical-align: middle;
  color: var(--wp--preset--color--tertiary);
}
.realisation__grid__all__btn:before, .realisation__grid__all__btn:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 5px;
  margin: 0em 0.5em;
  background-color: var(--wp--preset--color--secondary);
}
.realisation__grid__items {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: stretch;
  grid-gap: 1em;
}
.realisation__grid__item {
  list-style: none;
  margin: 0 0em;
  width: 100%;
}
.realisation__grid__item__container {
  position: relative;
  height: 100%;
  overflow: hidden;
}
.realisation__grid__item__inner > a {
  display: block;
}
.realisation__grid__item__image {
  width: 100%;
  height: 0;
  padding-top: 150%;
  overflow: hidden;
  position: relative;
}
.realisation__grid__item__image:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 50%;
  height: 0;
  padding-top: 50%;
  background: url("/content/themes/wazacom-child/assets/images/motif.png") repeat;
  background-position: 0px 0px;
  -webkit-clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
          clip-path: polygon(0% 0%, 100% 0%, 0% 100%);
  transition: all 0.4s cubic-bezier(0.14, 0.66, 0.28, 0.93), opacity 0.2s linear;
  transition-delay: 0s;
  animation: moveYourBG infinite 2s linear;
  pointer-events: none;
  opacity: 0.25;
}
.realisation__grid__item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.realisation__grid__item__categories {
  position: absolute;
  z-index: 3;
  top: 1em;
  left: 1em;
}
.realisation__grid__item__category {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: none;
  border-radius: 0;
  white-space: nowrap;
  padding: 0.25em 0.5em;
  font-size: 0.75em;
  color: var(--wp--preset--color--white);
  background: var(--wp--preset--color--primary);
  text-transform: uppercase;
  font-weight: 400;
  font-style: normal;
}
.realisation__grid__item__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  margin: 0.5rem;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  justify-content: space-between;
  align-items: center;
  background-color: var(--wp--preset--color--primary);
  color: var(--wp--preset--color--primary-contrast);
  padding: 0.5em 1em;
}
.realisation__grid__item__title {
  color: var(--wp--preset--color--white);
  text-align: left;
}
.realisation__grid__item__title h2,
.realisation__grid__item__title h3 {
  color: inherit;
  font-size: 0.9375em;
  font-style: normal;
  line-height: 1;
  margin: 0;
  text-transform: uppercase;
}
.realisation__grid__item__excerpt {
  margin-top: 0.75rem;
}
.realisation__grid__item__excerpt p {
  font-size: 0.75rem;
}
.realisation__grid__item__link {
  padding: 1em;
  text-align: right;
}
.realisation__grid__item__link .btn {
  color: #999999;
}
.realisation__grid__item__more {
  text-align: left;
}
.realisation__grid__item__date {
  text-align: right;
  font-weight: normal;
  font-size: 0.75em;
  color: var(--wp--preset--color--white);
  font-family: var(--wp--preset--font-family--primary);
  margin-top: 0em;
}
.realisation__category {
  position: relative;
  z-index: 1;
  list-style: none;
  width: var(--width-default);
  margin-left: auto;
  margin-right: auto;
}
.realisation__category__top {
  position: relative;
  margin: auto;
}
.realisation__category__all {
  text-align: center;
  margin: 2em 0 0;
}
.realisation__category__all .wzcm-svg-icon {
  --icon-color: v.$gray-60;
  --icon-size: 2em;
}
.realisation__category__all__btn {
  font-family: var(--wp--preset--font-family--primary);
  text-transform: uppercase;
  font-weight: bold;
  font-size: 1.25em;
}
.realisation__category__all__btn span {
  vertical-align: middle;
  color: var(--wp--preset--color--tertiary);
}
.realisation__category__all__btn:before, .realisation__category__all__btn:after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1em;
  height: 5px;
  margin: 0em 0.5em;
  background-color: var(--wp--preset--color--secondary);
}
.realisation__category__title .section_title {
  color: var(--wp--preset--color--secondary);
  line-height: 1;
  text-align: center;
  margin-bottom: 1em;
}
.realisation__category__title .section_subtitle {
  text-align: center;
  color: var(--wp--preset--color--primary);
}
.realisation__category__text {
  text-align: center;
  color: var(--wp--preset--color--white);
}
.realisation__category__text p {
  color: inherit;
}
.realisation__category__items {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  grid-gap: 1em;
  grid-gap: 0.25em;
  width: 100%;
}
.realisation__category__item {
  list-style: none;
  width: calc(50% - 0.125rem);
}
.realisation__category__item__container {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border: 2px solid var(--wp--preset--color--white);
}
.realisation__category__item__container > a {
  display: block;
}
.realisation__category__item__image {
  width: 100%;
  height: 0;
  padding-top: 100%;
  overflow: hidden;
  position: relative;
  background: var(--wp--preset--color--primary);
  transition: all 0.4s ease-out;
}
.realisation__category__item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  mix-blend-mode: multiply;
}
.realisation__category__item__content {
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 0.5em;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: stretch;
  transition: var(--trans);
}
.realisation__category__item__title {
  padding: 0em;
  background: transparent;
  color: var(--wp--preset--color--white);
  text-align: center;
}
.realisation__category__item__title h2,
.realisation__category__item__title h3 {
  font-family: var(--ff1);
  color: var(--wp--preset--color--white);
  font-size: 0.9375em;
  font-style: normal;
  text-align: center;
  text-transform: uppercase;
  line-height: 1;
  margin: 0;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
  font-weight: normal;
}
.realisation__category__item__excerpt {
  margin-top: 0.625rem;
}
.realisation__category__item__excerpt p {
  font-size: 0.625rem;
}
.realisation__category__item__button {
  margin-top: 1em;
}
.realisation__category__item__button .btn {
  font-size: 0.625em;
  padding: 0.25em;
}
.realisation__list {
  padding: 0;
  margin: 1em 0;
  list-style: none;
}
.realisation__list__items {
  list-style: none !important;
  padding: 0 !important;
  margin: 0 !important;
}
.realisation__list__item {
  list-style: none;
}
.realisation__list__item:not(:last-child) {
  margin-bottom: 1em;
}
.realisation__list__item .item__inner {
  display: block;
  height: 100%;
  padding: 1em;
  background-color: #ffffff;
  border: 1px solid #cccccc;
}
.realisation__list__item .item__inner > a {
  display: block;
}
.realisation__list__item .item__image {
  overflow: hidden;
  height: 0;
  padding-top: 56.25%;
  overflow: hidden;
  position: relative;
}
.realisation__list__item .item__image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.realisation__list__item .item__content {
  padding: 0em;
}
.realisation__list__item .item__categories {
  margin-bottom: 1em;
}
.realisation__list__item .item__category {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  background: none;
  white-space: nowrap;
  padding: 1em 0em;
  font-size: 0.9375em;
  color: #666666;
}
.realisation__list__item .item__category .bullet {
  display: inline-block;
  vertical-align: middle;
  width: 0.625em;
  height: 0.625em;
  border-radius: 100em;
  margin-right: 0.5em;
  background: var(--wp--preset--color--primary);
}
.realisation__list__item .item__category.active .bullet {
  background-color: var(--wp--preset--color--col-1);
  color: var(--wp--preset--color--white);
}
.realisation__list__item .item__title h3 {
  line-height: 1;
  color: #000000;
}
.realisation__list__item .item__excerpt {
  margin-top: 0.75rem;
  display: none;
}
.realisation__list__item .item__excerpt p {
  font-size: 0.75rem;
}
.realisation__list__item .item__permalink {
  text-align: right;
}
.realisation__list__item .item__date {
  color: #999999;
  font-weight: 500;
  letter-spacing: 6px;
  font-size: 0.75rem;
}
.realisation__single__share {
  text-align: center;
}
.realisation__single__date {
  font-weight: 600;
  letter-spacing: 7.5px;
  color: #999999;
  font-size: 0.875rem;
  text-align: center;
  margin: 2em 0;
}
.realisation__single__title {
  color: #000000;
}
.realisation__single__categories {
  text-align: center;
}
.realisation__single__content {
  margin-top: 2em;
}
.realisation__aside {
  display: none;
}
.realisation__gallery__slider__items {
  padding: 0;
  margin: 0;
}
.realisation__gallery__slider__item {
  height: calc(var(--width-wide) * 0.5625) !important;
}
.realisation__gallery__slider__item__container {
  height: 100%;
}
.realisation__gallery__slider__item__image {
  height: 100%;
}
.realisation__gallery__slider__item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
}
.realisation__gallery__slider__item__legend {
  position: absolute;
  left: 0;
  top: 0;
  padding: 1em;
  color: var(--wp--preset--color--white);
  font-weight: bold;
  text-transform: uppercase;
  text-align: left;
  font-size: 1em;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.25);
}
.realisation__gallery__items {
  padding: 0;
  margin: 0;
  list-style: none;
}
.realisation__gallery__item, .realisation__gallery__item__sizer {
  width: calc(50% - 8px);
  list-style: none;
  margin-bottom: 16px;
}
.realisation__gallery__item button, .realisation__gallery__item__sizer button {
  width: 100%;
  height: auto;
  border: none;
  background: #fff;
}
.realisation__gallery__item button img, .realisation__gallery__item__sizer button img {
  width: 100%;
  height: auto;
}
.realisation__gallery__item__title, .realisation__gallery__item__sizer__title {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  opacity: 1;
  transition: all 0.4s cubic-bezier(0.14, 0.66, 0.28, 0.93);
  padding: 1em;
  font-size: 10px;
}
.realisation__gallery__item__title h2, .realisation__gallery__item__sizer__title h2 {
  color: var(--wp--preset--color--white);
  text-align: center;
  line-height: 1;
  margin-bottom: 0;
  font-weight: 600;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}
.realisation__gallery__item__title p, .realisation__gallery__item__sizer__title p {
  color: var(--wp--preset--color--white);
  text-align: center;
  line-height: 1;
  margin-bottom: 0;
  font-weight: 600;
  text-shadow: 0 2px 2px rgba(0, 0, 0, 0.5);
}
.realisation__gallery__item__title .wp-block-group, .realisation__gallery__item__sizer__title .wp-block-group {
  width: 100%;
  display: none;
}
.realisation__gallery__item__btn.active .realisation__gallery__item__title, .realisation__gallery__item__sizer__btn.active .realisation__gallery__item__title {
  opacity: 1;
}

/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* RESPONSIVE */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* ----------------------------------------------------- */
/* XS */
/* ----------------------------------------------------- */
@media (min-width: 576px) {
  .realisation {
    /* Category */
    /* ---------------------------------------------------------------------------------------------------------- */
  }
  .realisation__grid__overflow .realisation__grid__item {
    width: 50vw;
  }
  .realisation__grid__item__title h3 {
    font-size: 1em;
  }
  .realisation__slider__item {
    margin: 0 0.5em 0 0;
  }
  .realisation__category__title {
    margin-bottom: 2em;
  }
  .realisation__category__item__title h2,
  .realisation__category__item__title h3 {
    font-size: 1.5em;
  }
  .realisation__category__item__button .btn {
    font-size: 0.85em;
    padding: 0.75em;
  }
}
/* ----------------------------------------------------- */
/* SM */
/* ----------------------------------------------------- */
@media (min-width: 768px) {
  .realisation__search form {
    justify-content: flex-start;
  }
  .realisation__slider__all {
    text-align: center;
  }
  .realisation__slider__all .btn {
    width: auto;
  }
  .realisation__slider__title {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2em;
  }
  .realisation__slider__title .section__title {
    margin-bottom: 0;
  }
  .realisation__slider__item__title h2,
  .realisation__slider__item__title h3 {
    font-size: 1.5em;
  }
  .realisation__slider__item__excerpt p {
    font-size: 1em;
  }
  .realisation__grid__item {
    width: calc(50% - 1em);
  }
  .realisation__grid__item__title h3 {
    font-size: 1.125em;
  }
  .realisation__grid__all {
    margin: 0;
  }
  .realisation__category__title .section_title {
    margin-bottom: 2em;
  }
  .realisation__category__item__title h2,
  .realisation__category__item__title h3 {
    font-size: 1.75em;
  }
  .realisation__category__item__button .btn {
    font-size: 1em;
    padding: 0.75em;
  }
  .realisation__list__item .item__title h3 {
    font-size: 1.25rem;
  }
  .realisation__list__item .item__image {
    width: 30%;
    max-width: 30%;
    height: auto;
    padding-top: 0;
    margin-right: 1em;
    overflow: hidden;
  }
  .realisation__list__item .item__image img {
    position: static;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
  }
  .realisation__list__item .item__excerpt {
    display: block;
    font-size: 0.9375rem;
    font-weight: 300;
    margin: 1em 0;
  }
  .realisation__list__item .item__content {
    width: 100%;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }
  .realisation__aside {
    display: block;
  }
  .realisation__aside h2 {
    padding-left: 1em;
    border-left: 2px solid #000000;
  }
  .realisation__aside__networks {
    margin-top: 4em;
  }
  .realisation__aside__networks__list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .realisation__aside__networks__list__item {
    display: inline-block;
    vertical-align: top;
  }
  .realisation__aside__networks__list__item a {
    display: block;
    border-radius: 100em;
    font-size: 4em;
    color: #000000;
  }
  .realisation__home__container:before {
    content: "";
    display: block;
    position: absolute;
    z-index: 4;
    top: 0;
    left: 0;
    right: 0;
    height: 80%;
    background: var(--wp--preset--color--primary);
  }
  .realisation__home__container:after {
    opacity: 0.5;
    max-width: 289px;
    max-height: 289px;
  }
  .realisation__home__items {
    position: relative;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
    padding-right: var(--hdr-h);
    height: 90vh;
  }
  .realisation__home__item {
    cursor: pointer;
  }
  .realisation__home__item__images {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  .realisation__home__item__images__avant, .realisation__home__item__images__pendant, .realisation__home__item__images__apres {
    width: 33.3333333333%;
    height: 100%;
    position: relative;
  }
  .realisation__home__item__images__avant img, .realisation__home__item__images__pendant img, .realisation__home__item__images__apres img {
    width: 100%;
    height: 100%;
    -o-object-fit: auto 100%;
       object-fit: auto 100%;
    -o-object-position: center;
       object-position: center;
  }
  .realisation__home__item__images__avant img {
    -o-object-position: bottom left;
       object-position: bottom left;
  }
  .realisation__home__item__images__apres img {
    -o-object-position: bottom right;
       object-position: bottom right;
  }
  .realisation__home__item__images.avant .realisation__home__item__images__avant {
    width: 70%;
    height: auto;
  }
  .realisation__home__item__images.avant .realisation__home__item__images__pendant {
    width: 15%;
    height: auto;
  }
  .realisation__home__item__images.avant .realisation__home__item__images__apres {
    width: 15%;
    height: auto;
  }
  .realisation__home__item__images.pendant .realisation__home__item__images__avant {
    width: 15%;
    height: auto;
  }
  .realisation__home__item__images.pendant .realisation__home__item__images__pendant {
    width: 70%;
    height: auto;
  }
  .realisation__home__item__images.pendant .realisation__home__item__images__apres {
    width: 15%;
    height: auto;
  }
  .realisation__home__item__images.apres .realisation__home__item__images__avant {
    width: 15%;
    height: auto;
  }
  .realisation__home__item__images.apres .realisation__home__item__images__pendant {
    width: 15%;
    height: auto;
  }
  .realisation__home__item__images.apres .realisation__home__item__images__apres {
    width: 70%;
    height: auto;
  }
  .realisation__home__item__title {
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    color: inherit;
    font-size: 1.25em;
    opacity: 0;
    transform: translateX(-2em);
    transition: all 0.4s cubic-bezier(0.14, 0.66, 0.28, 0.93);
    transition-delay: 0.4s;
  }
  .realisation__home__item__excerpt {
    position: relative;
    z-index: 2;
    opacity: 0;
    transform: translateX(-2em);
    transition: all 0.4s cubic-bezier(0.14, 0.66, 0.28, 0.93);
    transition-delay: 0.2s;
  }
  .realisation__home__item__excerpt p {
    color: inherit;
  }
  .realisation__home__item__link {
    position: relative;
    z-index: 3;
    margin-top: 1em;
    opacity: 0;
    transform: translateX(-2em);
    transition: all 0.4s cubic-bezier(0.14, 0.66, 0.28, 0.93);
    transition-delay: 0s;
  }
  .realisation__home__item:hover .realisation__home__item__content {
    opacity: 1;
    visibility: visible;
    transition-delay: 0s;
  }
  .realisation__home__item:hover .realisation__home__item__content:after {
    opacity: 1;
    height: 50%;
    transition-delay: 0s;
  }
  .realisation__home__item:hover .realisation__home__item__title {
    opacity: 1;
    transition-delay: 0.2s;
    transform: translateX(0);
  }
  .realisation__home__item:hover .realisation__home__item__excerpt {
    opacity: 1;
    transition-delay: 0.4s;
    transform: translateX(0);
  }
  .realisation__home__item:hover .realisation__home__item__link {
    opacity: 1;
    transition-delay: 0.6s;
    transform: translateX(0);
  }
  .realisation__home__navigation {
    height: 10vh;
  }
  .realisation__home__navigation__inner {
    width: 60%;
  }
  .realisation__home__arrows .slick-arrow {
    font-size: 1.5em;
    padding: 0.5em;
  }
}
/* ----------------------------------------------------- */
/* MD */
/* ----------------------------------------------------- */
@media (min-width: 992px) {
  .realisation__slider .text {
    width: 50%;
  }
  .realisation__slider__item {
    margin-right: 1em;
  }
  .realisation__grid__item {
    width: calc(33.3333333333% - 1em);
  }
  .realisation__grid__item__title h3 {
    font-size: 1.25em;
  }
  .realisation__aside {
    padding: 0em 1em;
  }
  .realisation__aside__networks__list__item a {
    font-size: 3em;
  }
  .realisation__single__share {
    text-align: center;
  }
  .realisation__single__date {
    font-weight: 600;
    letter-spacing: 7.5px;
    color: #999999;
    font-size: 0.875rem;
    text-align: center;
    margin: 2em 0;
  }
  .realisation__single__title {
    color: #000000;
  }
  .realisation__single__categories {
    text-align: center;
  }
  .realisation__single__content {
    margin-top: 2em;
  }
  .realisation__category__title .section_title {
    margin-bottom: 2em;
  }
  .realisation__category__items {
    grid-gap: 1em;
  }
  .realisation__category__item {
    width: calc(50% - 0.5em);
  }
  .realisation__category__item__container {
    border-width: 4px;
  }
  .realisation__category__item__title h2,
  .realisation__category__item__title h3 {
    font-size: 2em;
  }
  .realisation__category__item__button .btn {
    font-size: 1.25em;
    padding: 1em 1.5em;
  }
  .realisation__gallery__slider__item__legend {
    font-size: 1.25em;
  }
  .realisation__gallery__item, .realisation__gallery__item__sizer {
    width: calc(33.3333333333% - 8px);
  }
  .realisation__gallery__item:hover .realisation__gallery__item__title, .realisation__gallery__item__sizer:hover .realisation__gallery__item__title {
    opacity: 1;
  }
  .realisation__gallery__item:hover button img, .realisation__gallery__item__sizer:hover button img {
    mix-blend-mode: normal;
  }
}
/* ----------------------------------------------------- */
/* LG */
/* ----------------------------------------------------- */
@media (min-width: 1200px) {
  .realisation__slider__title {
    margin-bottom: calc(var(--paddingBase) * 2);
  }
  .realisation__slider__item {
    margin-right: 2em;
  }
  .realisation__category__title {
    margin-bottom: 4em;
  }
  .realisation__category__item__title {
    transition: var(--trans);
  }
  .realisation__category__item:hover .realisation__category__item__image {
    background-color: #fff;
  }
  .realisation__category__item:hover .realisation__category__item__title {
    margin-bottom: 2em;
  }
  .realisation__grid__overflow .realisation__grid__item {
    width: 25%;
  }
  .realisation__grid__item .realisation__grid__item__image:before {
    transition: all 0.4s cubic-bezier(0.14, 0.66, 0.28, 0.93);
  }
  .realisation__grid__item .realisation__grid__item__image img {
    transition: all 0.4s cubic-bezier(0.14, 0.66, 0.28, 0.93);
  }
  .realisation__grid__item:hover .realisation__grid__item__image:before {
    top: -50%;
  }
  .realisation__grid__item:hover .realisation__grid__item__image img {
    transform: scale(1.2);
  }
  .realisation__grid__all__btn:hover {
    color: var(--wp--preset--color--secondary);
  }
  .realisation__grid__all__btn:hover:before, .realisation__grid__all__btn:hover:after {
    transition: all 0.4s cubic-bezier(0.14, 0.66, 0.28, 0.93);
    animation: allBtn 1s ease-in-out infinite forwards;
  }
  .realisation__list__item {
    cursor: pointer;
  }
  .realisation__list__item .circle {
    content: "";
    position: absolute;
    cursor: pointer;
    display: block;
    width: 4em;
    height: 4em;
    border-radius: 100rem;
    background-color: rgba(189, 202, 216, 0.5);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
    visibility: hidden;
    animation: pulse 1s infinite;
    pointer-events: none;
  }
  .realisation__list__item .item__inner {
    position: relative;
    transition: all 0.4s ease-out;
  }
  .realisation__list__item .item__title h3 {
    font-size: 1.5rem;
  }
  .realisation__list__item .item__excerpt p {
    font-size: 0.9375rem;
  }
  .realisation__home__items {
    height: 90vh;
    margin: 0 auto !important;
  }
  .realisation__home__navigation {
    height: 10vh;
  }
  .realisation__home__navigation__inner {
    width: 40%;
  }
  .realisation__gallery__item, .realisation__gallery__item__sizer {
    width: calc(33% - 8px);
  }
  .realisation__gallery__item__title {
    font-size: 1rem;
    opacity: 0;
  }
  .realisation__gallery__item__title h2 {
    font-size: 2em;
  }
  .realisation__gallery__item__title .wp-block-group {
    display: block;
    padding: 0;
  }
  .realisation__gallery__item__title .wp-block-group p {
    color: #fff;
    font-size: 0.75em;
    line-height: 1;
    margin: 0.5em 0;
  }
}
/* ----------------------------------------------------- */
/* XL */
/* ----------------------------------------------------- */
@media (min-width: 1400px) {
  .realisation__slider__all {
    margin-top: 4em;
  }
  .realisation__grid__item {
    width: calc(25% - 1em);
  }
  .realisation__grid__item__title h3 {
    font-size: 1.5em;
  }
  .realisation__home:before {
    right: 3em;
  }
  .realisation__aside {
    padding: 0em 0em 0em 3em;
  }
}
/* ----------------------------------------------------- */
/* XL */
/* ----------------------------------------------------- *//*# sourceMappingURL=style.css.map */