/*-----------------------------
		GENERAL
-----------------------------*/

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 100;
  src: url('../../fonts/montserrat-v31-latin-ext-100.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 200;
  src: url('../../fonts/montserrat-v31-latin-ext-200.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 300;
  src: url('../../fonts/montserrat-v31-latin-ext-300.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 400;
  src: url('../../fonts/montserrat-v31-latin-ext-regular.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: italic;
  font-weight: 400;
  src: url('../../fonts/montserrat-v31-latin-ext-italic.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 500;
  src: url('../../fonts/montserrat-v31-latin-ext-500.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 600;
  src: url('../../fonts/montserrat-v31-latin-ext-600.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 700;
  src: url('../../fonts/montserrat-v31-latin-ext-700.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 800;
  src: url('../../fonts/montserrat-v31-latin-ext-800.woff2') format('woff2');
}

@font-face {
  font-display: swap;
  font-family: 'Montserrat';
  font-style: normal;
  font-weight: 900;
  src: url('../../fonts/montserrat-v31-latin-ext-900.woff2') format('woff2');
}



@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: italic;
  font-weight: 200 800;
  font-display: swap;
  src: url(../../fonts/plusjakartasans-italic.woff2) format('woff2');
}
@font-face {
  font-family: 'Plus Jakarta Sans';
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url(../../fonts/plusjakartasans-normal.woff2) format('woff2');
}

:root {
  --fontSize: 16px;
  --wrapper: 1400px;
  --gutter: 3rem;
  --textColor: #1f2b38;
  --black: #1f2b38;
  --color1: #125A88;
  --color2: #125A88;
  --trueBlack: #000000;
  --lightGrey: #F6F6F6;
  --baseFont: 'Plus Jakarta Sans', sans-serif;
  --titleFont: "Montserrat", sans-serif;
  --borderRadius: 1rem;
  --boxShadow: 0 0 10px 2px rgba(0,0,0,0.125);
  --lightBoxShadow: 0 0 20px 1px rgba(0,0,0,0.05);
  --veryLightBoxShadow: 0 0 10px 1px rgba(0,0,0,0.035);
  --headerHeight: 132px;
}
@media screen and (max-width: 1300px) {
  :root {
    --gutter: 2.5rem;
  }
}
@media screen and (max-width: 1100px) {
  :root {
    --fontSize: 15px;
    --headerHeight: 125px;
  }
}
@media screen and (max-width: 1000px) {
  :root {
    --fontSize: 15px;
    --headerHeight: 117px;
  }
}
@media screen and (max-width: 600px) {
  :root {
    --fontSize:14px;
    --headerHeight: 124px;
    --gutter: 2rem;
  }
}
@media screen and (max-width: 500px) {
  :root {
    --headerHeight: 115px;
  }
}
@media screen and (max-width: 450px) {
  :root {
    --gutter: 1.5rem;
  }
}

html {
  overflow-x: clip;
  max-width: 100vw;
}
body {
  color: var(--textColor);
  font-family: var(--baseFont);
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  font-weight: 400;
  font-size: var(--fontSize);
  background-color: #fff;
  overflow-x: clip;
  max-width: 100vw;
  padding-bottom: 1px;
}
body:not(.header-light) {
  padding-top: var(--headerHeight);
}
main {
	max-width: 100vw;
}





/*******************
	helpers
*******************/


.color1 { color: var(--color1); }
.color2 { color: var(--color2); }
.bg-color1 { background-color: var(--color1); color: #fff; }
.bg-color2 { background-color: var(--color2); color: #fff; }


.slider-nav a {
  --s: 5em;
  --sarrow: calc(var(--s) * 0.2);
  position: relative;
  width: calc(var(--s) * 0.7);
  height: calc(var(--s) * 0.3);
  background-image: none;
  background-color: transparent;
}
.slider-nav a::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: var(--sarrow);
  height: var(--sarrow);
  margin-top: calc(var(--sarrow) * -0.5);
  margin-left: calc(var(--sarrow) * -0.5);
  transform: rotate(45deg);
  background-image: url(../../img/arrow.svg);
  background-size: 70% auto;
  background-position: center;
  background-repeat: no-repeat;
}
.slider-nav a:hover {
  background-color: var(--color1);
}
.slider-nav a:hover::after {
  background-image: url(../../img/arrow-white.svg);
}

.text.colorOnStrong strong {
  color: var(--color1);
}
.text.hilightedStrong strong {
  color: var(--color1);
  font-size: 1.2em;
}

.ps-heading_cta {
  --g: 1em;
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  text-align: left;
  width: calc(100% + (var(--g) * 2));
  margin: calc(var(--g) * -1);
}
.ps-heading_cta > * {
  padding: var(--g);
}
.ps-heading_cta > .heading {
  flex: 1;
}
.ps-heading_cta > .cta {
  flex: 0 0 25em;
}
@media screen and (max-width: 1100px) {
  .ps-heading_cta > .heading,
  .ps-heading_cta > .cta { flex: 0 0 50%; }
}

.ps-content .text-2-cols {
  columns: 2;
  gap: 2rem;
}
@media screen and (max-width: 500px) {
  .ps-content .text-2-cols {
    columns: 1;
  }
}

.ps-menu ul {
  list-style-type: none;
  line-height: 1.35em;
}
.ps-menu ul > li:not(:last-child) {
  margin-bottom: 0.125em;
}
.ps-menu a:hover {
  text-decoration: underline;
}
.ps-menu.tags ul > li {
  display: inline-block;
  margin: 0 0.5em 0.5em 0 !important;
}
.ps-menu.tags a {
  display: inline-block;
  padding: 0.65em 1em 0.775em 1em;
  border-radius: 9999px;
  border: currentColor 1px solid;
  line-height: 1em;
  opacity: 0.65;
}
.ps-menu.tags a:hover,
.ps-menu.tags .current-menu-item a {
  text-decoration: none;
  opacity: 1;
}

a.icon-rs {
  --s: 2em;
  width: var(--s);
  height: var(--s);
  display: inline-block;
  vertical-align: middle;
  margin-left: calc(var(--s) * 0.1);
  margin-right: calc(var(--s) * 0.1);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}
a.icon-rs.in {
  background-image: url(../../img/icon-in.svg);
}
a.icon-rs.ig {
  background-image: url(../../img/icon-ig.svg);
}

.cover-image {
  position: relative;
  border-radius: var(--borderRadius);
  overflow: clip;
}
.cover-image::after {
  content: '';
  display: block;
}
.cover-image.panoramic::after {
  padding-bottom: 40%;
}
.cover-image.large::after {
  padding-bottom: 65%;
}
.cover-image.square::after {
  padding-bottom: 100%;
}
.cover-image.portrait::after {
  padding-bottom: 135%;
}

.ps-image.rounded img,
.gutenberg .wp-block-image.rounded img {
  border-radius: var(--borderRadius);
}

.gutenberg .box-vimo {
  padding: var(--gutter);
  border-radius: var(--borderRadius);
}
.gutenberg .box-vimo.not-rounded {
  border-radius: 0;
}

.gutenberg .wp-block-image.sticky {
  position: sticky;
  top: 2em;
}

.gutenberg .wp-block-image {
  display: flex;
}
.gutenberg .wp-block-image.alignleft {
  justify-content: flex-start;
}
.gutenberg .wp-block-image.aligncenter {
  justify-content: center;
}
.gutenberg .wp-block-image.alignright {
  justify-content: flex-end;
}



.the-form input:not([type="submit"]),
.the-form textarea,
.the-form select {
  border-radius: var(--borderRadius);
}
.the-form input[type="submit"] {
  background-color: var(--color1);
  background-image: url(../../img/rarr-color1.svg);
  background-size: auto 0.8em;
  background-position: center right 1em;
  background-repeat: no-repeat;
  border-radius: 9999px;
  border: var(--color1) 1px solid;
  color: #fff;
  padding: 0.65em 2em 0.75em 2em;
  font-family: var(--baseFont);
  font-weight: 400;
  transition: 0.3s;
}
.the-form input[type="submit"]:hover {
  background-color: #fff;
  color: var(--color1);
  border-color: var(--color1);
  padding: 0.65em 3em 0.75em 1em;
}

.the-form.alt input:not([type="submit"]),
.the-form.alt textarea,
.the-form.alt select {
  border-radius: 0.5em;
}
.the-form input[type="submit"] {
  font-weight: 600;
  padding-top: 0.85em !important;
  padding-bottom: 0.95em !important;
}

.swiper-variable .swiper-slide {
  max-width: fit-content;
}
.swiper-visible {
  overflow: visible;
}
.swiper-nav {
  --s: 1.5em;
  margin: 0 0 1em 1em;
  display: flex;
}
.swiper-nav > * {
  margin-right: 1em;
  text-align: left;
}
.swiper-nav > a {
  width: var(--s);
  height: var(--s);
  background-image: url(../../img/rarr.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  transition: 0.3s;
}
.swiper-nav > *:first-child {
  transform: scaleX(-1);
}
.swiper-nav > *.swiper-button-disabled {
  opacity: 0.2;
}

.swiper-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem; /* espace entre les éléments */
  margin-top: 1.5rem;
  position: relative;
  --swiper-navigation-size: 1.5rem;
}

.swiper-button-prev,
.swiper-button-next {
  position: static; /* empêche le positionnement absolu par défaut de Swiper */
  width: auto;
  height: auto;
  margin: 0;
  color: #000;
  cursor: pointer;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.3s;
}

.swiper-button-prev:hover,
.swiper-button-next:hover {
  opacity: 0.7;
}

.swiper-pagination {
  position: static; /* garde les bullets sur la même ligne */
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  width: auto !important;
}

.swiper-pagination-bullet {
  background: #000;
  opacity: 0.4;
  transition: opacity 0.3s;
  width: 10px;
  height: 10px;
}

.swiper-pagination-bullet-active {
  opacity: 1;
}


.wrapper-vimo {
  margin-left: auto;
  margin-right: auto;
  max-width: 2000px;
  overflow: clip;
  border-radius: var(--borderRadius);
}
@media screen and (max-width: 2050px) {
  .wrapper-vimo { margin: 0 1em; }
}
.wrapper-vimo > .wrapper {
  padding: 0;
  overflow: clip;
  border-radius: var(--borderRadius);
}
.wrapper-vimo.vimo-bgcolor1 > .wrapper {
  background-color: var(--color1);
  color: #fff;
}

@media screen and (max-width: 600px) {
  .hideOnMobile { display: none !important; }
}

.back-to-top {
  background-image: url(../../img/icon-vimo.png);
  background-size: cover;
  transform: rotate(-68deg);
}

body.gradient-vimo {
  background: linear-gradient(to bottom,  rgba(10,90,137,1) 0%,rgba(255,255,255,1) 20vh);
}

/*******************
  HEADER & FOOTER
*******************/

header {
  padding: 1.5rem 0;
  background-color: transparent;
  top: -200px;
  transition: all 0.3s, top ease-out 1.25s 0.75s;
}
.ready header {
  top: 0;
}
/*body:not(.header-light):not(.scrolled) header {
  border-bottom: #0a5a89 4px solid;
}*/
header > .wrapper {
  padding: 0 var(--gutter);
} 
header .inner {
  background-color: rgba(255,255,255,0.5);
  padding: 1rem var(--gutter);
  border-radius: 9999px;
  backdrop-filter: blur(1px);
  color: var(--color1);
}
.header-logo {
  flex: 0 0 13em;
/*  position: relative;
  top: 0.1em;*/
}
.header-logo svg {
  max-width: 100%;
  display: block;
  height: auto;
}
.header-logo svg path {
  fill: currentColor;
}
.header-nav {
  display: flex;
  align-items: center;
  font-weight: ;
}
.header-nav a {
  font-weight: 800;
  text-transform: uppercase;
}
.main-nav > ul > li.current-menu-item > a::before,
.main-nav > ul > li.current-menu-ancestor > a::before {
  display: none;
}
.main-nav > ul > li.current-menu-item > a,
.main-nav > ul > li.current-menu-ancestor > a {
  color: var(--color1);
}

body.header-light:not(.scrolled) header {
  background: rgba(255,255,255,0);
}
body.header-light:not(.scrolled) header .inner {
  color: #ffffff;
  background: rgba(255,255,255,0);
}
body.header-light:not(.scrolled) header .main-nav a:hover {
  color: #fff;
}

.mobile-menu {
  background-color: var(--lightGrey);
  color: var(--textColor);
}


body.header-light:not(.scrolled) .moving-button {
  color: var(--textColor);
}

@media screen and (max-width: 600px) {
  .header-logo { flex: 0 0 10em; }
  header,
  header > .wrapper {
    padding: 0;
  }
  header .inner {
    padding: 1rem;
    border-radius: 0;
  }
  .main-nav { display: block }
}
@media screen and (max-width: 500px) {
  .header-logo {
    flex: 0 0 9.5em;
  }
}

footer {
  margin: 2rem auto;
  width: calc(100% - (var(--gutter) * 2));
  max-width: 2000px;
  padding: 0;
  overflow: clip;
  border-radius: var(--borderRadius);
  background-color: #f9fcfc;
  color: var(--textColor);
  padding-top: 2rem;
}
footer .footer-grid {
  --g: 2em;
}
footer .footer-grid > .wide {
  flex: 0 0 66%;
}
footer .footer-grid > .narrow {
  flex: 0 0 34%;
}

footer .footer-logo {
  margin-bottom: 2em;
}
footer .footer-logo svg {
  display: block;
  width: 16em;
  max-width: 100%;
  height: auto;
  margin-bottom: 2em;
}
footer .footer-logo svg path {
  fill: var(--color1);
}

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

footer .cta {
  position: relative;
  display: inline-block;
  padding: 1em 4em 1em 1.5em;
  border-radius: calc(var(--borderRadius) / 2);
  background-color: var(--color1);
  color: #fff;  
  margin-bottom: 1em;
}
footer .cta::after {
  content: '';
  position: absolute;
  top: 0;
  right: 1em;
  width: 2em;
  height: 100%;
  background-image: url(https://vi-mo.fr/wp-content/uploads/2025/11/icon-vimo-300x300.png);
  background-position: center;
  background-size: 100% auto;
  background-repeat: no-repeat;
  filter: brightness(0) invert(1);
  transition: 0.3s;
}
footer .cta p {
  font-size: 1.25em;
  line-height: 1.35em;
  font-weight: 500;
}
footer .cta:hover::after {
  transform: rotate(22deg);
}


@media screen and (max-width: 900px) {
  footer .grid {
    --g: 1em;
  }
}
@media screen and (min-width: 801px) {
  footer .footer-grid .wide { order: 2; }
  footer .footer-grid .narrow { order: 1; }
  footer .footer-grid .narrow {
    display: flex;
    flex-wrap: wrap;
  }
  footer .footer-grid .narrow .top {
    margin: 0 auto auto 0;
    flex: 0 0 100%;
  }
  footer .footer-grid .narrow .bottom {
    margin: auto auto 0 0;
    flex: 0 0 100%;
  }
}
@media screen and (max-width: 800px) {
  footer .footer-grid > * { flex: 0 0 100% !important; }
  footer .footer-grid .narrow { text-align: center; padding-bottom: 2rem;}
  footer .footer-logo svg { margin-left: auto; margin-right: auto; }
}

/*******************
	  PAGES LAYOUTS
*******************/


.single-layout {
  margin: calc(var(--gutter) * 2) 0;
}
.single-layout .meta {
  margin-top: 1.5em;
}
.single-layout .page-content {
  position: relative;
  margin-top: 2em;
  padding-top: 4em;
}
.single-layout .page-content::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  width: 10em;
  height: 1px;
  background-color: currentColor;
  transform: translateX(-50%);
}
.single-layout.w-sidebar {
  --w: 20em;
  --g: 2em;
  position: relative;
}
.single-layout.w-sidebar .sidebar {
  position: absolute;
  top: 0;
  width: calc(var(--w) - var(--g));
  min-height: 100%;
}
.single-layout.w-sidebar.onTheRight {
  padding-right: var(--w);
}
.single-layout.w-sidebar.onTheLeft {
  padding-left: var(--w);
}
.single-layout.w-sidebar.onTheRight .sidebar {
  right: 0;
  padding-left: var(--g);
  border-left: var(--color1) 1px solid;
}
.single-layout.w-sidebar.onTheLeft .sidebar {
  left: 0;
  padding-right: var(--g);
  border-right: var(--color1) 1px solid;
}
@media screen and (max-width: 1200px) {
  .single-layout.w-sidebar {
    --w: 16em;
    --g: 1.5em;
  }
}
@media screen and (max-width: 950px) {
  .single-layout.w-sidebar {
    --w: 14em;
    --g: 1em;
  }
}
@media screen and (max-width: 800px) {
  .single-layout.w-sidebar {
    padding: 0 !important;
  }
  .single-layout.w-sidebar .sidebar {
    position: relative !important;
    top: 0;
    left: 0;
    right: 0;
    margin-top: 4em;
    border: none !important;
    padding: 0 !important;
    width: 100%;
    max-width: 30em;
  }
}


.big-intro {
  position: relative;
  overflow: clip;
}
.big-intro > .ill {
  z-index: 1;
  overflow: clip;
}
.big-intro video {
  filter: blur(50px);
  transition: 1s 0.5s;
}
.reveal.big-intro video {
  filter: blur(0px);
}
.big-intro .cover-video {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: translate(-50%, -50%);
}
.big-intro > .ill .overlay {
  opacity: 1;
  transform: scale(1.125);
  transition: ease-out 1s 1s;
}
.ready .big-intro > .ill .overlay {
  transform: scale(1);
  opacity: 0.5;
}

.big-intro > .content {
  z-index: 2;
  position: relative;
  padding: calc(var(--headerHeight) * 2.5) 0 calc(var(--gutter) * 1) 0;
  display: flex;
  min-height: 100vh;
  min-height: 100dvh;
}
.big-intro > .content > .inner {
  flex: 0 0 100%;
  margin: auto auto 0 auto;
  color: #fff;
}
main > section.big-intro > .content > .inner > .wrapper {
  transition: ease-out 1s 1s !important;
}
.big-intro > .content > .inner .grid > * {
  margin-top: auto;
  margin-bottom: 0;
}

.home-intro video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%,-50%);
}

@media screen and (max-width: 800px) {
  .big-intro.home-intro > .content {
    padding-top: calc(var(--headerHeight) * 1.5);
  }
}
@media screen and (max-width: 600px) {
  .big-intro > .ill .overlay {
    height: 115%;
    top: -15%;
  }
  .big-intro > .content > .inner .grid > * {
    flex: 0 0 100%;
  }
  .big-intro > .content > .inner .grid > * .aRight {
    text-align: left;
  }
}

.big-pictures {
  max-width: 1600px;
}
.big-pictures .swiper-slide {
  position: relative;
}
.big-pictures .swiper-slide::after {
  content: '';
  display: block;
  padding-bottom: 50%;
}
.big-pictures img {
  border-radius: var(--borderRadius);
}

.big-pictures .image-caption {
  z-index: 5;
  position: absolute;
  border-radius: 1em;
  right: 1em;
  bottom: 1em;
  border-radius: var(--borderRadius);
  padding: 0.9em 1em 1em 1em;
  background-color: rgba(0,0,0,0.5);
  backdrop-filter: blur(5px);
  line-height: 1.4em;
  text-wrap: balance;
  white-space: normal;
  width: auto;
  max-width: calc(100% - 2em);
  text-align: left;
  display: inline-block;
  color: #fff;
}
.big-pictures .image-caption > * {
  font-size: 1.125em;
}
@media screen and (max-width: 1000px) {
  .big-pictures .image-caption {
    bottom: 0;
    right: 0;
    max-width: 100%;
    border-radius: 0 0 var(--borderRadius) var(--borderRadius);
  }
  .big-pictures .image-caption > * {
    font-size: 1em;
  }
}
@media screen and (max-width: 600px) {
  .big-pictures .swiper-slide::after {
    padding-bottom: 60%;
  }
}
@media screen and (max-width: 400px) {
  .big-pictures .swiper-slide::after {
    padding-bottom: 75%;
  }
}

.swiper-partners {
  mask-image: linear-gradient(to right, transparent 0, white 5%, white 95%, transparent 100%);
}
.swiper-partners .swiper-wrapper {
  transition-timing-function: linear;
}
.swiper-partners .swiper-slide {
  height: auto;
  align-self: stretch;
  display: flex;
}
.swiper-partners .swiper-slide img {
  width: 100%;
  max-width: 14em;
  max-height: 5em;
  object-fit: contain;
  object-position: center;
  margin: auto;
}

.services-grid {
  --g: 2em;
  padding: var(--g);
}
.services-grid > * {
  flex: 0 0 33.3333%;
}
.box-service {
  position: relative;
  text-align: left;
  padding: 1rem 0 0.5rem 0;
}
/*.box-service::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: currentColor;
  opacity: 0;
  transition: 0.5s 0.5s;
}
.reveal .box-service::before {
  width: 100%;
  opacity: 0.25;
}*/
@media screen and (max-width: 900px) {
  .services-grid > * { flex: 0 0 50%; }
}
@media screen and (max-width: 500px) {
  .services-grid > * { flex: 0 0 100%; }
}

.projets-slider {
  background-color: var(--lightGrey);
  border-radius: var(--borderRadius);
}
.projets-slider .swiper-slide {
  padding: 2rem;
  display: flex;
  justify-content: center;
  align-items: start;
  height: auto;
}
.projets-slider .swiper-controls {
  margin-bottom: 1.5rem;
}
.projets-slider .ps-image img {
  border-radius: var(--borderRadius);
}

.box-person {
  position: relative;
  text-align: center;
  max-width: 10em;
  margin: 0 auto auto auto;
}
.box-person .ill {
  position: relative;
  margin-bottom: 1.5rem;
}
.box-person .ill::after {
  content: '';
  display: block;
  padding-bottom: 100%;
}
.box-person .ill img {
  border-radius: 50%;
}

.acf-columns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2em;
}
.acf-column {
  flex: 1 1 25%;
  min-width: 250px;
}
/* Desktop large */
@media (min-width: 1400px) {
  .acf-column {
    flex-basis: calc(100% / 6);
  }
}
/* Desktop */
@media (max-width: 1399px) {
  .acf-column {
    flex-basis: 25%;
  }
}
/* Tablette */
@media (max-width: 1024px) {
  .acf-column {
    flex-basis: 33.333%;
  }
}
/* Mobile */
@media (max-width: 768px) {
  .acf-column {
    flex-basis: 100%;
  }
}

.box-immo {
  position: relative;
  background: var(--lightGrey);
  max-width: 25em;
  margin: auto;
  box-shadow:
    0 1px 2px rgba(0, 0, 0, 0.04),
    0 6px 20px rgba(0, 0, 0, 0.03);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.box-immo:hover {
  box-shadow:
    0 2px 4px rgba(0, 0, 0, 0.05),
    0 10px 30px rgba(0, 0, 0, 0.045);
  transform: translateY(-2px);
}
.box-immo > .ill {
  position: relative;
  border-radius: calc(var(--borderRadius) / 2)  calc(var(--borderRadius) / 2) 0 0;
  overflow: clip;
}
.box-immo > .ill::after {
  content: '';
  display: block;
  padding-bottom: 60%;
}
.box-immo > .content {
  padding: 1.5em 2em;
  border-radius: 0 0 calc(var(--borderRadius) / 2)  calc(var(--borderRadius) / 2);
}
.popup-immo .inner {
  max-width: 500px;
  overflow-x: clip;
  border-radius: var(--borderRadius);
}
.popup-immo .ill {
  width: calc(100% + var(--gutter) * 2);
  margin-left: calc(var(--gutter) * -1);
  margin-top: calc(var(--gutter) * -1);
}
.popup-immo .big-pictures img {
  border-radius: var(--borderRadius) var(--borderRadius) 0 0;
}
.popup-immo .big-pictures .image-caption {
  font-size: 11px;
}