@charset "UTF-8";
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat/Akrobat-Regular.woff2") format("woff2"), url("../fonts/Akrobat/Akrobat-Regular.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat/Akrobat-SemiBold.woff2") format("woff2"), url("../fonts/Akrobat/Akrobat-SemiBold.woff") format("woff");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat/Akrobat-Bold.woff2") format("woff2"), url("../fonts/Akrobat/Akrobat-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat/Akrobat-ExtraBold.woff2") format("woff2"), url("../fonts/Akrobat/Akrobat-ExtraBold.woff") format("woff");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Akrobat";
  src: url("../fonts/Akrobat/Akrobat-Black.woff2") format("woff2"), url("../fonts/Akrobat/Akrobat-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue LT Std";
  src: url("../fonts/HelveticaNeue/HelveticaNeueLTStd-BdCn.woff2") format("woff2"), url("../fonts/HelveticaNeue/HelveticaNeueLTStd-BdCn.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: "Helvetica Neue LT Std";
  src: url("../fonts/HelveticaNeue/HelveticaNeueLTStd-Cn.woff2") format("woff2"), url("../fonts/HelveticaNeue/HelveticaNeueLTStd-Cn.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/* ---------- Buttons ---------- */
/* ---------- Header ---------- */
/* ---------- Header menu ---------- */
/* ---------- Base ---------- */
/* ---------- Blocks ---------- */
.buttons-holder {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: var(--buttons-halign);
  gap: 1.5rem;
}

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.9px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
}
.button:hover svg {
  transform: rotate(45deg);
}
.button .icon {
  margin-left: 8px;
}
.button .icon svg {
  transition: transform 0.3s ease;
}
.button.button-text svg path {
  fill: var(--color-secondary);
}
.button:not(.button-text) {
  padding: 12px 20px;
  color: var(--color-white);
}
.button:not(.button-text).small-button {
  padding: 6px 10px;
}
.button:not(.button-text).small-button span {
  font-size: 10px;
}
.button:not(.button-text).small-button svg {
  display: none !important;
}
.button:not(.button-text) span {
  line-height: 1;
}
.button:not(.button-text) svg path {
  fill: var(--color-white);
}
.button.opaque-color-main {
  border: 2px solid var(--color-main);
  background: var(--color-main);
}
@media (hover: hover) and (pointer: fine) {
  .button.opaque-color-main:hover {
    border: 2px solid var(--color-secondary);
    background: var(--color-secondary);
  }
}
.button.opaque-color-secondary {
  border: 2px solid var(--color-secondary);
  background: var(--color-secondary);
}
/* ***** GÉNÉRAL ***** */
.header {
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  position: fixed;
  background: var(--color-white);
  /* Hint Burger */
}
.header.scrollUp {
  opacity: 0;
  transform: translateY(-100%) !important;
}
.header .user-control {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 0;
}
@media (min-width: 768px) {
  .header .user-control {
    padding: 16px 0;
  }
}
@media (min-width: 1200px) {
  .header .user-control {
    padding: 1.6666666667svh 0;
  }
}
.header .user-control .logo-holder {
  flex: 0 0 160px;
}
@media (min-width: 768px) {
  .header .user-control .logo-holder {
    flex: 0 0 clamp(120px, 14.5833333333vw, 280px);
  }
}
.header .user-control .logo-holder img {
  width: 160px;
  height: auto;
}
@media (min-width: 768px) {
  .header .user-control .logo-holder img {
    width: clamp(120px, 14.5833333333vw, 280px);
  }
}
.header .user-control .logo-holder .logo.desktop.has-mobile-logo {
  display: none;
}
@media (min-width: 1200px) {
  .header .user-control .logo-holder .logo.desktop.has-mobile-logo {
    display: flex;
  }
}
.header .user-control .logo-holder .logo.mobile {
  display: flex;
}
@media (min-width: 1200px) {
  .header .user-control .logo-holder .logo.mobile {
    display: none;
  }
}
.header .header-nav {
  display: none;
  background: var(--color-main);
}
@media (min-width: 992px) {
  .header .header-nav {
    display: block;
  }
}
.header .hamburger-holder {
  display: flex;
  position: absolute;
  right: 0;
}
@media (min-width: 992px) {
  .header .hamburger-holder {
    display: none;
  }
}
.header .hamburger-holder .hamburger {
  transition: all 0.3s ease-in-out;
}
.header .hamburger-holder .hamburger .line {
  width: 24px;
  height: 2px;
  display: block;
  margin: 7px auto;
  transition: all 0.3s ease-in-out;
  background-color: var(--color-main);
  border-radius: 100vh;
}
.header .hamburger-holder .hamburger .line:first-of-type {
  margin-top: 0;
}
.header .hamburger-holder .hamburger .line:last-of-type {
  margin-bottom: 0;
}
.header .hamburger-holder .hamburger:hover {
  cursor: pointer;
}
.header .hamburger-holder .hamburger.is-active {
  animation: smallbig 0.6s forwards;
}
.header .hamburger-holder .hamburger.is-active .line:nth-child(1),
.header .hamburger-holder .hamburger.is-active .line:nth-child(2),
.header .hamburger-holder .hamburger.is-active .line:nth-child(3) {
  transition-delay: 0.2s;
}
.header .hamburger-holder .hamburger.is-active .line:nth-child(2) {
  opacity: 0;
}
.header .hamburger-holder .hamburger.is-active .line:nth-child(1) {
  transform: translateY(9px) rotate(45deg);
}
.header .hamburger-holder .hamburger.is-active .line:nth-child(3) {
  transform: translateY(-9px) rotate(-45deg);
}

.header nav ul {
  display: flex;
  margin: 0;
}
.header nav ul li {
  flex: 1;
}
.header nav ul li a {
  display: block;
  font-family: var(--font-secondary);
  font-size: clamp(15px, 0.9375vw, 18px);
  font-weight: bold;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  text-align: center;
  color: var(--color-white);
  padding: 0.8333333333vw 1.6666666667vw;
  transition: none;
}
.header nav ul li a[target=_blank]:hover span svg {
  transform: rotate(0);
}
.header nav ul li a:hover span svg {
  left: calc(100% + 8px);
  opacity: 1;
  transform: rotate(45deg);
}
.header nav ul li a span {
  display: inline-flex;
  align-items: center;
  position: relative;
}
.header nav ul li a span svg {
  position: absolute;
  left: calc(100% - 8px);
  opacity: 0;
  transition: all 0.3s ease;
}
.header nav ul li a span svg path {
  fill: var(--color-secondary);
}
.header nav ul li ul {
  display: none !important;
}

*, *:before, *:after {
  box-sizing: border-box;
}

html,
body {
  width: 100%;
  max-width: 100%;
}
html.no-scroll,
body.no-scroll {
  overflow: hidden;
}

html,
body {
    scrollbar-width: none;
}
html::-webkit-scrollbar,
body::-webkit-scrollbar { 
    display: none;  /* Safari and Chrome */
}

html {
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  color: var(--color-dark-grey);
  background: var(--color-white);
  font-family: var(--font-main);
  font-size: clamp(17px, 0.9375vw, 18px);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
body

::selection {
  color: white;
  background: var(--color-secondary);
}

/* ---------- Containers ---------- */
.container {
  padding-right: 24px;
  padding-left: 24px;
  margin-right: auto;
  margin-left: auto;
  width: 100%;
  max-width: var(--width-container);
}
@media (min-width: 992px) {
  .container {
    width: 94%;
  }
}
@media (min-width: 1200px) {
  .container {
    width: 88%;
  }
}
.container.small {
  max-width: var(--width-small);
}
.container.medium {
  max-width: var(--width-medium);
}
.container.full {
  width: 100%;
  max-width: none;
}

/* ---------- Links ---------- */
.style-dark a {
  color: var(--color-white);
}

a {
  color: var(--color-black);
  text-decoration: none;
}
a:hover {
  color: var(--color-main);
}

/* ---------- Img ---------- */
picture img {
  width: 100%;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

img:not([src]):not([srcset]) {
  visibility: hidden;
}

/* ---------- Global ---------- */
.block-full-height {
  min-height: 33svh;
  min-height: calc(33svh - var(--nav-height));
}
@media (min-width: 992px) {
  .block-full-height {
    min-height: 100svh;
    min-height: calc(100svh - var(--nav-height));
  }
}

.background-color-red {
  background-color: #CE0E2D !important;
}

.text-color-red {
  color: #CE0E2D !important;
}

.background-color-light-grey {
  background-color: #E6E6E6 !important;
}

.text-color-light-grey {
  color: #E6E6E6 !important;
}

.background-color-white {
  background-color: #ffffff !important;
}

.text-color-white {
  color: #ffffff !important;
}

.background-color-dark-grey {
  background-color: #070404 !important;
}

.text-color-dark-grey {
  color: #070404 !important;
}

.background-color-black {
  background-color: #000000 !important;
}

.text-color-black {
  color: #000000 !important;
}

.background-color-main {
  background: var(--color-main);
}

.background-color-secondary {
  background: var(--color-secondary);
}

.text-color-main {
  color: var(--color-main);
}

.text-color-secondary {
  color: var(--color-secondary);
}

.single-project .block-banner .banner-holder {
  max-width: var(--width-medium);
}
.single-project .block-banner .banner-holder .banner-content {
  position: relative;
  z-index: 10;
}
.single-project .block-banner .banner-holder .banner-content .button {
  cursor: initial;
}

/* ---------- 404 ---------- */
.section-404 {
  padding: 18.2291666667vh 0;
  text-align: center;
}
.section-404 .button-holder {
  display: flex;
  justify-content: center;
}

.section {
  position: relative;
}
.section.hide-section {
  opacity: 0.4;
}
.section.style-dark {
  color: var(--color-white);
}
.section.section--block-banner:not(.has-image) {
  border-top: 1px solid var(--color-light-grey);
}
.section .block-overlay {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
  background-color: var(--block-background-color);
  opacity: var(--block-overlay-opacity);
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.section .section-background {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.section .section-background.bg-vtop img {
  object-position: top;
}
.section .section-background.bg-vcenter img {
  object-position: center;
}
.section .section-background.bg-vbottom img {
  object-position: bottom;
}
.section .section-background img {
  object-fit: cover;
  object-position: center;
  width: 100%;
  height: 100%;
}
.section .block {
  position: relative;
  z-index: 10;
}
.section .block-custom-width:not(.align-left):not(.align-right) {
  margin-right: auto !important;
  margin-left: auto !important;
}
.section .custom-ratio {
  position: relative;
}
.section .custom-ratio.ratio-one-one {
  padding-top: 100%;
}
.section .custom-ratio.ratio-sixteen-nine {
  padding-top: 56.25%;
}
.section .custom-ratio.ratio-four-tree {
  padding-top: 75%;
}
.section .custom-ratio.ratio-tree-four {
  padding-top: 133.3333333333%;
}
.section .custom-ratio:not(.ratio-auto) img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}