/*
 Theme Name:   Unik Studio
 Theme URI:    https://www.unikstudio.fr
 Description:  Thème Wordpress pour Unik Studio
 Author: Unik Studio
 Author URI: https://unikstudio.fr/
*/

@charset "UTF-8";

/*** Vars ***/
:root {
  --col-noir: #18191B;
  --col-orange: #FF5C00;
  --col-blanc: #FFFFFF;
  --col-gris: #4B4B4A;
  --rgb-noir: 24, 25, 27;
  --rgb-orange: 255, 92, 0;
  --rgb-blanc: 255, 255, 255;
  --rgb-gris: 75, 75, 74;
  

  --size-h1:  60px;
  --size-h2: 40px;
  --size-h3: 30px;
  --size-h4: 22px;
  --size-txt:  20px;
  --size-txt2:  16px;

  --marge-left:  80px;

  --navbar-height: 110px;
  --sticky-height: 100px;

  --slider-home-height:  100dvh;
  --slider-page-height:  100dvh;

  --break-point-1500: 1420px;

  --width-container: 1420px;

  --main-padding:  140px;
  --margin-block-image:  180px;
}

/*** Animations ***/
@-webkit-keyframes homeloading {
  0%, 10%
  {
    opacity: 0;
    filter: blur(1.05em); 
  }
  10%
  {
    opacity: 1;
    filter: blur(1.05em); 
  }
  20%
  {
    filter: blur(0);
  }
  100%
  {
    filter: blur(0); 
  }
}
@keyframes homeloading {
  0%, 10%
  {
    opacity: 0;
    filter: blur(1.05em); 
  }
  10%
  {
    opacity: 1;
    filter: blur(1.05em); 
  }
  20%
  {
    filter: blur(0);
  }
  100%
  {
    filter: blur(0); 
  }
}
@-webkit-keyframes fondu {
  0%, 80%
  {
    opacity:0;
  }
  100%
  {
    opacity:1;
  }
}
@keyframes fondu {
  0%, 80%
  {
    opacity:0;
  }
  100%
  {
    opacity:1;
  }
}
@-webkit-keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-75px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-75px, 0, 0);
  }

  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(75px, 0, 0);
    transform: translate3d(75px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    -webkit-transform: translate3d(75px, 0, 0);
    transform: translate3d(75px, 0, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 75px, 0);
    transform: translate3d(0, 75px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 75px, 0);
    transform: translate3d(0, 75px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInBigUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 150px, 0);
    transform: translate3d(0, 150px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@keyframes fadeInBigUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 150px, 0);
    transform: translate3d(0, 150px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -75px, 0);
    transform: translate3d(0, -75px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, -75px, 0);
    transform: translate3d(0, -75px, 0);
  }

  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@-webkit-keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.75, 0.75, 0.75);
    transform: scale3d(0.75, 0.75, 0.75);
  }

  50% {
    opacity: 1;
  }
}
@keyframes zoomIn {
  from {
    opacity: 0;
    -webkit-transform: scale3d(0.75, 0.75, 0.75);
    transform: scale3d(0.75, 0.75, 0.75);
  }

  50% {
    opacity: 1;
  }
}
@-webkit-keyframes enterHome {
  0% {
    opacity: 0;
  }

  75% {
    opacity: 0;
/*    filter: blur(1.1rem);*/
/*    transform: scale(1.02,1.02);*/
  }
  100% {
    opacity: 1;
/*    filter: blur(0);*/
/*    transform: scale(1,1);*/
  }
}
@keyframes enterHome {
  0% {
    opacity: 0;
  }
  75% {
    opacity: 0;
/*    filter: blur(1.1rem);*/
/*    transform: scale(1.02,1.02);*/
  }
  100% {
    opacity: 1;
/*    filter: blur(0);*/
/*    transform: scale(1,1);*/
  }
}

@-webkit-keyframes circleHome {
  0% {clip-path: circle(0% at 50% 50vh); -webkit-clip-path: circle(0% at 50% 50vh);}
  70% { clip-path: circle(0% at 50% 50vh); -webkit-clip-path: circle(0% at 50% 50vh);}
  100% { clip-path: circle(125% at 50% 50vh); -webkit-clip-path: circle(125% at 50% 50vh);}
}
@keyframes circleHome {
  0% {clip-path: circle(0% at 50% 50vh); -webkit-clip-path: circle(0% at 50% 50vh);}
  70% { clip-path: circle(0% at 50% 50vh); -webkit-clip-path: circle(0% at 50% 50vh);}
  100% { clip-path: circle(125% at 50% 50vh); -webkit-clip-path: circle(125% at 50% 50vh);}
}
@-webkit-keyframes buttonFromCenter {
   0% { height:0%; opacity:0; width:0; margin-top:0; margin-left:0; left:50%;}
   25% { opacity:1;}
   50% { height:100%; width:3.375em; margin-top:0em; margin-left:-1.6875em; left:50%;}
   100% { height:100%; opacity:1; width:100%; margin-top:0em; margin-left:-1.6875em; left:1.6875em;}
}
@keyframes buttonFromCenter {
   0% { height:0%; opacity:0; width:0; margin-top:0; margin-left:0; left:50%;}
   25% { opacity:1;}
   50% { height:100%; width:3.375em; margin-top:0em; margin-left:-1.6875em; left:50%;}
   100% { height:100%; opacity:1; width:100%; margin-top:0em; margin-left:-1.6875em; left:1.6875em;}
}
@-webkit-keyframes expandLinkFromCenter {
   0% { height:100%; opacity:0; width:100px; margin-top:0; margin-left:0; left:calc(50% - 50px);}
   25% { opacity:0;width:100px; margin-top:0; margin-left:0; left:calc(50% - 50px);}
   100% { height:calc(100% + 2px); opacity:1; width:calc(100% + 110px); margin-top:0em; margin-left:-1.6875em; left:calc(1.6875em - 55px);}
}
@keyframes expandLinkFromCenter {
   0% { height:100%; opacity:0; width:100px; margin-top:0; margin-left:0; left:calc(50% - 50px);}
   25% { opacity:0;width:100px; margin-top:0; margin-left:0; left:calc(50% - 50px);}
   100% { height:calc(100% + 2px); opacity:1; width:calc(100% + 110px); margin-top:0em; margin-left:-1.6875em; left:calc(1.6875em - 55px);}
}
@keyframes blurOut {
     0%       { filter:blur(10px); -webkit-filter:blur(10px);}
     100%     { filter:blur(0px); -webkit-filter:blur(0px);}
}
@-webkit-keyframes blurOut {
     0%       { filter:blur(10px); -webkit-filter:blur(10px);}
     100%     { filter:blur(0px); -webkit-filter:blur(0px);}
}
@-webkit-keyframes hoverBulle {
  0% {transform: scale(1.0); -webkit-transform: scale(1.0);}
  25% {transform: scale(1.025); -webkit-transform: scale(1.025);}
  50% {transform: scale(0.975); -webkit-transform: scale(0.975);}
  100% {transform: scale(1.0); -webkit-transform: scale(1.0);}
}
@keyframes hoverBulle {
  0% {transform: scale(1.0); -webkit-transform: scale(1.0);}
  25% {transform: scale(1.025); -webkit-transform: scale(1.025);}
  50% {transform: scale(0.975); -webkit-transform: scale(0.975);}
  100% {transform: scale(1.0); -webkit-transform: scale(1.0);}
}
@-webkit-keyframes hoverArrow {
  0% {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  5% {
    -webkit-transform: translate(10px, -10px);
    -ms-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
  }
  30%,
  100% {
    -webkit-transform: translate(0px,0px);
    -ms-transform: translate(0px,0px);
    transform: translate(0px,0px);
  }
}
@keyframes hoverArrow {
  0% {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  5% {
    -webkit-transform: translate(10px, -10px);
    -ms-transform: translate(10px, -10px);
    transform: translate(10px, -10px);
  }
  30%,
  100% {
    -webkit-transform: translate(0px,0px);
    -ms-transform: translate(0px,0px);
    transform: translate(0px,0px);
  }
}
@-webkit-keyframes hoverArrowDown {
  0% {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  5% {
    -webkit-transform: translate(10px, 10px);
    -ms-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
  }
  30%,
  100% {
    -webkit-transform: translate(0px,0px);
    -ms-transform: translate(0px,0px);
    transform: translate(0px,0px);
  }
}
@keyframes hoverArrowDown {
  0% {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  5% {
    -webkit-transform: translate(10px, 10px);
    -ms-transform: translate(10px, 10px);
    transform: translate(10px, 10px);
  }
  30%,
  100% {
    -webkit-transform: translate(0px,0px);
    -ms-transform: translate(0px,0px);
    transform: translate(0px,0px);
  }
}
@-webkit-keyframes smallHoverArrow {
  0% {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  5% {
    -webkit-transform: translate(4px, -4px);
    -ms-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  30%,
  100% {
    -webkit-transform: translate(0px,0px);
    -ms-transform: translate(0px,0px);
    transform: translate(0px,0px);
  }
}
@keyframes smallHoverArrow {
  0% {
    -webkit-transform: translate(0px, 0px);
    -ms-transform: translate(0px, 0px);
    transform: translate(0px, 0px);
  }
  5% {
    -webkit-transform: translate(4px, -4px);
    -ms-transform: translate(4px, -4px);
    transform: translate(4px, -4px);
  }
  30%,
  100% {
    -webkit-transform: translate(0px,0px);
    -ms-transform: translate(0px,0px);
    transform: translate(0px,0px);
  }
}
@-webkit-keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes bounce {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-10px);
    -ms-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  60% {
    -webkit-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    transform: translateY(-5px);
  }
}
@keyframes minBounceUp {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-6px);
    -ms-transform: translateY(-6px);
    transform: translateY(-6px);
  }
  60% {
    -webkit-transform: translateY(-3px);
    -ms-transform: translateY(-3px);
    transform: translateY(-3px);
  }
}
@keyframes minBounceDown {
  0%,
  100%,
  20%,
  50%,
  80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(6px);
    -ms-transform: translateY(6px);
    transform: translateY(6px);
  }
  60% {
    -webkit-transform: translateY(3px);
    -ms-transform: translateY(3px);
    transform: translateY(3px);
  }
}
@keyframes minRotateLeft {
  50% {
    -webkit-transform: rotate(-135deg);
    -ms-transform: rotate(-135deg);
    transform: rotate(-135deg);
  }
  100% {
    -webkit-transform: rotate(-225deg);
    -ms-transform: rotate(-225deg);
    transform: rotate(-225deg);
  }
}
@keyframes minRotateRight {
  50% {
    -webkit-transform: rotate(135deg);
    -ms-transform: rotate(135deg);
    transform: rotate(135deg);
  }
  100% {
    -webkit-transform: rotate(225deg);
    -ms-transform: rotate(225deg);
    transform: rotate(225deg);
  }
}
@-webkit-keyframes leftToRight {
  0% {width: 0%}
  50% {width: 75%}
  100% {width: 100%}
}
@keyframes leftToRight {
  0% {width: 0%}
  50% {width: 75%}
  100% {width: 100%}
}
@-webkit-keyframes topToBottom {
  0% {height: 0%}
  50% {height: 75%}
  100% {height: 100%}
}
@keyframes topToBottom {
  0% {height: 0%}
  50% {height: 75%}
  100% {height: 100%}
}
@-webkit-keyframes slideFade {
 0% {
  opacity:0
 }
 30% {
  opacity:0
 }
 100% {
  opacity:1
 }
}
@keyframes slideFade {
 0% {
  opacity:0
 }
 30% {
  opacity:0
 }
 100% {
  opacity:1
 }
}
@-webkit-keyframes hideMenu {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
}
@keyframes hideMenu {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0;
  }
}
@-webkit-keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@-webkit-keyframes revealText {
  0% {
    opacity: 1;
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes revealText {
  0% {
    opacity: 1;
    -webkit-transform: translateY(200%);
    transform: translateY(200%);
  }
  60% {
    opacity: 1;
    -webkit-transform: translateY(5%);
    transform: translateY(5%);
  }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
/***
@-webkit-keyframes animTriangle1 {
  0% { clip-path: polygon(100% 0, 100% 0, 100% 100%); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 100%); }
}
@keyframes animTriangle1 {
  0% { clip-path: polygon(100% 0, 100% 0, 100% 100%); }
  100% { clip-path: polygon(0 0, 100% 0, 100% 100%); }
}
***/
@-webkit-keyframes animTriangle1 {
  0% { right: -100%;top:-100%; }
  100% { right: 0;top:0; }
}
@keyframes animTriangle1 {
  0% { right: -100%;top:-100%; }
  100% { right: 0;top:0; }
}

@-webkit-keyframes animTriangle2 {
  0% { left: -100%;bottom:-100%; }
  100% { left: 0;bottom:0; }
}
@keyframes animTriangle2 {
  0% { left: -100%;bottom:-100%; }
  100% { left: 0;bottom:0; }
}
@-webkit-keyframes animTriangle3 {
  0% { right: -30vw; }
  100% { right: 0; }
}
@keyframes animTriangle3 {
  0% { right: -30vw;}
  100% { right: 0;}
}
@-webkit-keyframes animTriangle4 {
  0% { height: 0; }
  100% { height: 18vw; }
}
@keyframes animTriangle4 {
  0% { height: 0; }
  100% { height: 18vw; }
}


/*** Règles ***/
html {
  background-color: var(--col-blanc);
  color: var(--col-noir);
}
/*** On cache les anims ***/
.wow {
  visibility: hidden;
}
/*** Loader ***/
html.home-loading body .wrapper {
  position:relative;
  animation-name: enterHome;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-duration: 2s;
  animation-fill-mode:both;
  animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
  -webkit-animation-name: enterHome;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-duration: 2s;
  -webkit-animation-fill-mode:both;
  -webkit-animation-timing-function: cubic-bezier(.26, .53, .74, 1.48);
/*  overflow: hidden;*/
}
/*
.loader-anim {
  display: none;
}
*/
html.home-loading .loader-anim {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: var(--col-blanc);
  animation-name: homeloading;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  animation-duration: 2s;
  -webkit-animation-name: homeloading;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-duration: 2s;
  opacity: 1;
  background-color: var(--col-blanc);
}
.loader-anim img,
.loader-anim svg {
  position: fixed;
  top: 50%;
  transform: translate(-50%,-50%);
  left: 50%;
  max-width: 170px;
}
/*
.loader-anim img.svg {
  opacity: 0;
}
*/
html.home-loading #page-preload {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 999999999;
  transform: translate3d(0, 300vh, 0);
  transition: all 1s ease-in-out;
  filter: drop-shadow(1px 1px 10px rgba(var(--rgb-noir),.25));
}
html.home-loading #page-preload::before {
  content: "";
  position: absolute;
  top: -100vh;
  left: 0;
  width: 200vw;
  height: 200vh;
  clip-path: polygon(0 0, 0 100%, 100% 100%);
  background: var(--col-blanc);
}
html.home-loading .loading #page-preload {
  transform: translate3d(0, 0, 0);
}
body {
  font-size: var(--size-txt);
  font-family: 'ClashDisplay-Regular', sans-serif;
  font-optical-sizing: auto;
  line-height: 1.5em;
  color: var(--col-noir);
  -webkit-font-smoothing:antialiased;
  -moz-osx-font-smoothing:grayscale;
  overflow-x: hidden;
  overflow-y: auto;
}
body .wrapper {
  background-color: var(--col-blanc);
  min-height: 100vh;
  text-align: left;
}
.container {
  max-width: var(--width-container);
}
::-moz-selection {
  background: var(--col-orange);
  color: var(--col-blanc);
  text-shadow: none;
}

::selection {
  background: var(--col-orange);
  color: var(--col-blanc);
  text-shadow: none;
}
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}
audio,
canvas,
iframe,
img,
svg,
video {
  vertical-align: middle;
}
img {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
}
fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}
input::-moz-focus-inner {
  border: 0 !important;
}
textarea {
  resize: vertical;
}
.browserupgrade {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}
* {
  -webkit-tap-highlight-color: transparent;
  word-break: keep-all !important;
  -webkit-hyphens: manual !important;
  -moz-hyphens: manual !important;
  -ms-hyphens: manual !important;
  -o-hyphens: manual !important;
  hyphens: manual !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.site-size {
  width: var(--width-container);
  padding-right: 15px;
  padding-left: 15px;
  margin-right: auto;
  margin-left: auto;
}
.full-width {
  width: 100%;
}
section {
  display:block;
}
a {
  transition:all 0.35s ease-in;
  position:relative;
  color:var(--col-noir);
}
a:visited,
a:focus,
a:link {
  color:var(--col-noir);
}
a:hover {
  color:var(--col-orange);
}
header a,
.logo-footer a {
  border: none!important;
}

.no-outline,
.no-outline:focus,
.no-outline:hover,
.no-outline:active {
  outline:0;
}

.hidden {
  visibility: hidden;
}
.align-left {
  text-align:left;
}
.align-right {
  text-align:right;
}
.align-center {
  text-align:center;
}
.margin-top {
  margin-top:60px;
}
.margin-bottom {
  margin-bottom:60px;
}
.no-padding-left {
  padding-left:0px;
}
.no-padding-right {
  padding-right:0px;
}

img,
svg {
  max-width:100%;
  height:auto;
}
.wp-caption {
  max-width:100%;
  font-style: italic;
}
@media (max-width:767px) {
  .wp-caption {
    width:100%!important;
  }
}
.vertical-middle {
  position:absolute;
  left:0;
  top:50%;
  transform: translateY(-50%);
}
.vertical-align-center {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;  
}
.vertical-align-top {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: start;  
}

/*** medias ***/
.video-responsive,
.wp-block-embed__wrapper {
  width:100%;
  height:0;
  padding-bottom:56.25%;
/*  overflow:hidden;*/
  position:relative;
  max-width: 800px;
  margin: auto;
}
.video-responsive iframe, .video-responsive embed, .video-responsive object,
.wp-block-embed__wrapper iframe, .wp-block-embed__wrapper embed, .wp-block-embed__wrapper object {
  width:100%!important;
  height:100%!important;
  position:absolute!important;
  top:0;
  left:0;
}
/*** LENIS ***/
html.lenis, html.lenis body {
  height: auto;
}

.lenis.lenis-smooth {
  scroll-behavior: auto !important;
}

.lenis.lenis-smooth [data-lenis-prevent] {
  overscroll-behavior: contain;
}

.lenis.lenis-stopped {
  overflow: hidden;
}

.lenis.lenis-scrolling iframe {
  pointer-events: none;
}
/*** Mouse Bulle ***/
#bulle {
  opacity: 0;
  position: absolute;
  inset: 0;
  width: 10px;
  aspect-ratio: 1;
  border-radius: 50%;
  background-color: var(--col-orange);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  transition: transform .15s linear, opacity .35s ease-in-out;
  transform: scale(1);
}
#bulle.bulle-hidden {
  transform: scale(0);
}
/*** MAGNIFIC POPUP ***/
.mfp-bg {
  opacity:0.9;
}
/*** ReCaptcha Badge ***/
.grecaptcha-badge { 
  visibility: hidden;
}
/*** cookies : tarteaucitron ***/
body #tarteaucitronRoot * {
  font-family:'ClashDisplay-Light', sans-serif!important;
}
body #tarteaucitronRoot #tarteaucitronAlertBig {
  font-size:14px!important;
  font-family:'ClashDisplay-Light', sans-serif!important;
  border:none!important;
  background:rgba(240, 240, 240, 0.9)!important;
  transition:background-color 0.5s ease;
  box-shadow: 0px -1px 4px 1px rgba(0,0,0,.10);
}
body #tarteaucitronRoot #tarteaucitronAlertBig:hover {
  background:rgba(240, 240, 240, 1)!important;
}
body #tarteaucitronAlertBig #tarteaucitronPrivacyUrl, 
body #tarteaucitronAlertBig #tarteaucitronPrivacyUrlDialog, 
body #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert, 
body #tarteaucitronAlertBig #tarteaucitronDisclaimerAlert strong {
  font-size:14px!important;
  font-family:'ClashDisplay-Light', sans-serif!important;
  color: var(--col-noir) !important;
  font-weight: 300!important;
}
body #tarteaucitronAlertBig #tarteaucitronCloseAlert, 
body #tarteaucitronAlertBig #tarteaucitronPersonalize, 
body #tarteaucitronAlertBig #tarteaucitronPersonalize2, 
body .tarteaucitronCTAButton, 
body #tarteaucitron #tarteaucitronPrivacyUrl, 
body #tarteaucitron #tarteaucitronPrivacyUrlDialog, 
body #tarteaucitronRoot .tarteaucitronDeny, 
body #tarteaucitronRoot .tarteaucitronAllow {
  background-color: var(--col-orange)!important;
  font-size:14px!important;
  font-family:'ClashDisplay-Light', sans-serif!important;
}
body #tarteaucitronRoot .tarteaucitronDeny {
  background-color: var(--col-noir)!important;  
}
body #tarteaucitronAlertBig #tarteaucitronCloseAlert, 
body #tarteaucitron #tarteaucitronPrivacyUrl, 
body #tarteaucitron #tarteaucitronPrivacyUrlDialog {
  background-color: #ffffff!important;
}
body #tarteaucitron #tarteaucitronServices .tarteaucitronMainLine,
body #tarteaucitron .tarteaucitronBorder {
  background-color: #efefef !important;
  border: 1px solid #dfdfdf !important;
}
body #tarteaucitronRoot .tarteaucitronH1,
body #tarteaucitronRoot .tarteaucitronH2 {
  text-transform: uppercase;
  color: var(--col-noir)!important;
}
body #tarteaucitron #tarteaucitronInfo {
  background-color: #efefef!important;
  color: var(--col-noir)!important;
  border: none!important;
}
body #tarteaucitronAlertSmall,
body #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer {
  opacity: .75;
  right: auto;
  left: 70px;
}
body #tarteaucitronAlertSmall:hover,
body #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer:hover {
  opacity: 1;
}
/*** Header ***/
.navbar {
  border-radius: 0px;
  border:0px;
  margin:0px 0 0;
  position: fixed;
  top:0px;
  z-index: 1010;
  width: 100%;
  height: var(--navbar-height);
  padding: 20px 0px 20px;
  background-color: transparent;
  transition: all .350s ease-in;
}
.navbar .container {
  padding: 0;
  position: relative;
}
.navbar.sticky {
  height: var(--sticky-height);
  padding: 15px 0px 15px;
}
.navbar.sticky.navbar-hidden {
/*  transform: translate3d(0,calc(-100% - 40px),0); */
}
/*
.navbar.sticky:hover {
  background-color: rgba(var(--rgb-blanc),1);
}
*/
.logo-menu-container {
  width:100%;
  padding:0 15px;
  height: 50px;
  display: flex;
}
.logo-menu-container .sitename {
  display:none;
}
.navbar h1,
.navbar .h1 {
  float:left;
  margin:0px;
  width: 10%;
  text-align: left;
}
.navbar-brand {
  position: relative;
  vertical-align:top;
  text-align:center;
  padding:0px 0px 0px 0px;
  margin-right:0;
  transition: all .35s ease-in-out;
}
.navbar .logo {
  display:inline-block;
  vertical-align:top;
  max-height:70px;
  max-width: 170px;
  transition: all .2s ease-in-out;
}
.navbar .logo-blanc {
  display: none;
}
.with-background .navbar .logo-noir {
  display: none;
}
.with-background .navbar .logo-blanc {
  display: block;
}
/*
.navbar.sticky .navbar-brand
  transform: rotate(-90deg);
  width: 20px;
  height: 100px;
  top: 80px;
  left: -15px;
}
*/
.navbar.sticky .logo {
  max-height: 116px;
  max-width: 125px;
}
.navbar.sticky .logo-noir {
  display: none;
  transform: rotate(-90deg);
  transform-origin: center;
  margin-top: 50px;
  margin-left: -100px;  
}
.navbar.sticky .logo-blanc {
  display: none;
}
/*
.menu-responsive {
  display:none;
  opacity:0;
}
*/
.menu-burger {
  height:40px;
  width: auto;
  position: absolute;
  right: 15px;
  top: 0px;
  padding-right: 30px;
/*  transform: translateY(-50%);*/
  text-align: left;
  display: flex;
  transition: all .35s ease-in-out, transform .6s cubic-bezier(.34,5.56,.64,1);
}
.navbar.sticky .menu-burger {
  padding: 10px 30px;
  background-color: var(--col-orange);
  border-radius: 50px;
  height: 60px;  
}
.menu-burger .str-only {
  font-size: 16px;
  font-family: 'ClashDisplay-Medium', sans-serif;
  color: var(--col-blanc);
  text-align: left;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 10px;
}
.navbar.sticky .menu-burger .str-only {
  display: none;
}
.menu-burger button {
  position: relative;
  background-color:transparent;
  height:40px;
  border:none;
  cursor:pointer;
  padding:0;
  display:flex;
  flex-direction: column;
  vertical-align: top;
  width:30px;
  top: 0px;
}
.menu-burger button:active,
.menu-burger button:focus {
  outline: none;
}
.menu-burger .icon-bar:nth-child(1),
.menu-burger .icon-bar:nth-child(2),
.menu-burger .icon-bar:nth-child(3) {
  height:3px;
  width:30px;
  background-color:var(--col-blanc);
}
.menu-burger .icon-bar:nth-child(1) {
  margin:8px 0 4px;
}
.menu-burger .icon-bar:nth-child(2) {
  margin:4px 0;
}
.menu-burger .icon-bar:nth-child(3) {
  margin:4px 0 7px;
}
.menu-burger:not(.menu-close) button:hover .icon-bar:nth-child(1) {
  animation: minBounceUp 1s;
  animation-delay: 0s;
}
.menu-burger:not(.menu-close) button:hover .icon-bar:nth-child(3) {
  animation: minBounceDown 1s;
  animation-delay: 0s;
}
html.with-triangle header::after {
  content: "";
  position: absolute;
  background-color: var(--col-orange);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  animation: animTriangle1 2s;
  width: 30vw;
  height: 30vw;
  right: 0;
  top: 0;
  z-index: 1;
}
.menu-container .phone-container .phone {
  border: solid 1.5px var(--col-blanc)!important;
  border-radius: 7px;
  width: 54px;
  height: 54px;
  line-height: 54px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  margin: -5px auto auto 15px;
}
.menu-container .phone-container .phone svg {
  margin: 0 auto;
}
.menu-container .phone-container .phone svg path {
  stroke: var(--col-blanc);
  transition: all .35s ease-in;
}
.menu-container .phone-container .phone:hover {
  background-color: var(--col-blanc)!important;
}
.menu-container .phone-container .phone:hover svg path {
  stroke: var(--col-orange);
}
@media (min-width:992px) {
/*
  .menu-responsive {
    display: none;
  }
  .menu-burger {
    display:none;
  }
*/
  .menu-container {
    float:right;
    width:90%;
    display:flex;
    justify-content: flex-end;
    padding-left:0px;
  }
  .menu-container div.wow {
    display: inline-flex;
  }
  .menu-container .menu-header {
    display: flex;
    flex-direction: column;
    justify-content: end; 
  }
  .sticky .menu-container .menu-header {
    justify-content: end;
  }
  .menu-container .menu-header ul {
    display:inline-block;
    vertical-align:bottom;
    padding:0;
    margin:0;
    list-style:none;
  }
  .menu-container .menu-header ul li {
    float:left;
    position:relative;
    font-size: 20px;
    font-weight: 600;
    font-stretch: normal;
    font-style: normal;
    line-height: 40px;
    letter-spacing: 0em;
    color: var(--col-gris);
    padding: 0 40px;
    text-transform: uppercase;
  }
  .menu-container .menu-header ul li a {
    position:relative;
    text-align: center;
    color: var(--col-gris);
    opacity: 1;
    display:flex;
    justify-content: center;
    flex-direction: column;
    padding-bottom: 5px;
    height: 40px;
    text-decoration: none;
  }
  .menu-container .menu-header ul li:first-child {
    padding-left: 0;
  }
  .menu-container .menu-header ul li:last-child {
    padding-right: 0;
  }
  .menu-container .menu-header ul li.important a {
    background-color: var(--col-orange);
    color: var(--col-blanc);
    text-align:center;
    cursor:pointer;
    padding: 0px 24px 0px 24px;
    border-radius: 45px;
    line-height: 40px;
    width:auto;
    text-decoration: none;
  }
  .menu-container .menu-header ul li.important a:hover {
    background-color: var(--col-gris);
    color: var(--col-blanc);
  }
  nav.sticky .menu-container .menu-header ul li a {
    height: 40px;
  }
  nav.sticky .menu-container .menu-header ul li.important a {
    background-color: var(--col-orange);
    color: var(--col-blanc);
    text-align:center;
    cursor:pointer;
    padding: 0px 24px 0px 24px;
    border-radius: 45px;
    line-height: 40px;
    width:auto;
    text-decoration: none;
  }
  nav.sticky .menu-container .menu-header ul li.important a:hover {
    background-color: var(--col-gris);
    color: var(--col-blanc);
  }
  .menu-container .menu-header ul li:not(.important) a::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0px;
    width:100%!important;
    height: 3px;
    transform: scaleX(0);
    background:var(--col-orange);
    transition: all 0.35s ease-in-out;
  }
  .menu-container .menu-header ul li:not(.important) a:hover,
  .menu-container .menu-header ul li.current-menu-item:not(.important) a {
/*    transform:scaleX(1);*/
    color: var(--col-orange);
  }
  nav.sticky .menu-container .menu-header ul li:not(.important) a:hover,
  nav.sticky .menu-container .menu-header ul li.current-menu-item:not(.important) a {
    color:var(--col-orange);
  }
  nav.sticky .menu-container .phone-container .phone {
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin-top: 0;
  }
}
/*
@media (min-width:1200px) {
  .menu-container .menu-header ul li {
    padding: 0 20px;
  }
  .menu-container .menu-header ul li a {
    padding: 0 20px;
  }
}
@media (min-width:1500px) {
  .menu-container .menu-header ul li {
    padding: 0 30px;
  }
  .menu-container .menu-header ul li:first-child {
    padding-left: 0;
  }
  .menu-container .menu-header ul li:last-child {
    padding-right: 0;
  }
  .menu-container .menu-header ul li a {
    padding: 0 30px;
  }
}
*/

.menu-responsive {
  position:fixed;
  width:100%;
  height:100dvh;
  z-index:10000;
  right:-200dvw;
  opacity:1;
  padding-top: 20px;
  transition: all 0.75s cubic-bezier(.4,0,0,1);
} 
.menu-responsive::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width:175dvw;
  height:175dvw;
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  background:var(--col-orange);
  transition: background .45s cubic-bezier(.4,0,0,1);
}
.menu-responsive.menu-responsive-active {
  right: 0;
  opacity: 1;
  filter: drop-shadow(1px 1px 10px rgba(var(--rgb-noir),.25));
}
.menu-responsive.menu-responsive-active.go-out::before {
  background-color:var(--col-blanc);
}
.menu-responsive .container {
  position: relative;
  height: 100%;
  padding: 0;
}
.menu-responsive .logo-menu-container {
  position: relative;
  width:100%;
  height:100px;
  padding:0px 15px;
}
.menu-responsive .h1 {
  margin:0;
}
.menu-responsive .navbar-brand {
  float:left;
  height:120px;
  margin-top:20px;
}
.menu-responsive .navbar-brand img {
  height: 70px;
  width: auto;
}
.menu-responsive .menu-burger {
  top: 40px;
}
.menu-responsive .menu-burger button {
  height:40px;
  top:0px;
}
.menu-responsive .menu-burger .icon-bar:nth-child(2) {
  display:none;
}
.menu-responsive .menu-burger .icon-bar:nth-child(1) {
  transform:rotate(-45deg);
  margin:0px;
  margin-top: 16px;
  background-color:var(--col-blanc);
}
.menu-responsive .menu-burger .icon-bar:nth-child(3) {
  transform:rotate(45deg);
  margin:0px;
  margin-left: 1px;
  margin-top: -2px;
  background-color:var(--col-blanc);
}
.menu-responsive .menu-burger.menu-close button:hover .icon-bar:nth-child(1) {
  animation: minRotateLeft 1s cubic-bezier(.4,0,0,1);
  animation-delay: 0s;
}
.menu-responsive .menu-burger.menu-close button:hover .icon-bar:nth-child(3) {
  animation: minRotateRight 1s cubic-bezier(.4,0,0,1);
  animation-delay: 0s;
}
.menu-responsive .menu-content {
  display: flex;
  width: 100%;
}
.menu-responsive .menu-content .menu-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.menu-responsive .menu-content .menu-right {
  width: 50%;
}
.menu-responsive .menu-responsive-container {
  margin-top:80px;
  padding: 0 15px 0 15px;
  text-align: right;
}
.menu-responsive-container ul.menu {
  list-style:none;
  margin:40px 0 0px auto;
  padding:0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  text-align: left;
  width: 100%;
}
.menu-responsive-container ul.sub-menu {
  display:none;
  opacity:0;
}
.menu-responsive-container li {
  position:relative;
  padding:0px 0px!important;
  font-size: 30px;
  font-family: "ClashDisplay-Semibold",sans-serif;
  line-height: 30px;
  text-align: left;
  text-transform: uppercase;
}
.menu-responsive-container li:first-child {
  padding-top:0px;
}
.menu-responsive-container li:last-child {
  padding-bottom:0px;
}
.menu-responsive-container li a {
  position:relative;
  color:var(--col-noir);
  border-top: solid 1px var(--col-noir)!important;
  height:100px;
  display:flex;
  text-decoration: none;
  transition: color .75s ease-in-out;
}
.menu-responsive-container li a::before {
  content: "";
  position: absolute;
  z-index: 0;
  height: calc(100% + 2px);
  top: -1px;
  left: -55px;
  border-radius: 60px;
  width: calc(100% + 110px);
  background-color: var(--col-noir);
  transition: all .35s ease-in-out;
  opacity: 0;
}
.menu-responsive-container li a .icone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.menu-responsive-container li a span {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: calc(100% - 75px);
  padding-left: 30px;
  z-index: 1;
}
.menu-responsive-container li a .with-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 26px;
  height: 26px;
/*
  border-top: solid 3px var(--col-blanc);
  border-right: solid 3px var(--col-blanc);
*/
  clip-path: polygon(0 0, 0% 10%, 85% 10%, 0% 90%, 10% 100%, 90% 20%, 90% 100%, 100% 100%, 100% 0);
  background-color: var(--col-blanc);
  margin-left: 15px;
  transition: all .35s ease-in;
}
.menu-responsive-container li:last-child a {
  border-bottom: solid 1px var(--col-noir)!important;
}
/*
.menu-responsive-container li a:hover,
.menu-responsive-container li.current-menu-item a {
*/
.menu-responsive-container li a:hover {
  color: var(--col-blanc);
}
/*
.menu-responsive-container li a:hover::before,
.menu-responsive-container li.current-menu-item a::before {
*/
.menu-responsive-container li a:hover::before {
  animation: expandLinkFromCenter 1s cubic-bezier(.4,0,0,1);
  opacity: 1;
  transform: scaleX(1.02);
  transition: transform .6s cubic-bezier(.34,5.56,.64,1);
}
.menu-responsive-container li a:hover .with-arrow::after {
  animation: hoverArrow 2s infinite;
  animation-delay: 0.75s;
}
.menu-responsive-container li.important a {
  background-color: var(--col-orange);
  color: var(--col-blanc);
  text-align:center;
  cursor:pointer;
  padding: 0px 24px 0px 24px;
  border-radius: 45px;
  line-height: 40px;
  height: 45px;
  width:auto;
  text-decoration: none;
  display: inline-block;
  margin-top: 20px;
}
.menu-responsive-container li.important a:hover {
  background-color: var(--col-gris);
  color: var(--col-blanc);
}
.menu-responsive-container li.menu-item-has-children button {
  position:absolute;
  cursor:pointer;
  right:10px;
  top:26px;
  z-index:10;
  border:none;
  background:transparent;
  padding:0;
}
.menu-responsive-container li.menu-item-has-children button::before {
  display:block;
  content:"\f107";
  font-family: "FontAwesome";
  font-size:22px;
  line-height:26px;
  height:26px;
  width:26px;
  border:solid 1px var(--col-noir);
  border-radius:15px;
  color:var(--col-noir);
  transition:all .2s ease-in;
}
.menu-responsive-container li.menu-item-has-children.sub-menu-open button::before {
  transform:rotate(180deg);
}
.menu-responsive-container li .sub-menu {
  background-color:rgba(var(--rgb-blanc),.1);
}
.menu-responsive-container li .sub-menu li a {
  font:300 14px;
  color:var(--col-noir);
  height:auto;
  text-transform: none;
  letter-spacing: normal;
  padding:10px 0;
  min-height:40px;
}
.menu-responsive-container li .sub-menu li a:hover {
  color:var(--col-orange);
}
.menu-responsive-container li .sub-menu li::after {
  display:none;
}
.menu-responsive-footer {
  display: flex;
  bottom: 0;
  position: absolute;
  width: 100%;
  height: 100px;
  color: var(--col-noir);
  padding: 0 15px;
}
.menu-responsive-footer .social a {
  border: 2px solid var(--col-noir)!important;
}
.menu-responsive-footer .social a:hover {
  background-color:var(--col-noir)!important;
  color: var(--col-blanc)!important;
}
.menu-responsive-footer .social a:hover::before {
  color: var(--col-blanc)!important;
}
.menu-responsive-footer .button-3 {
  margin-left: 40px;
}

/*** Classes pour animations ***/
.fadeInBigUp {
  -webkit-animation-name: fadeInBigUp;
  animation-name: fadeInBigUp;
}
.unikFadeInLeft {
  -webkit-animation-name: unikFadeInLeft;
  animation-name: unikFadeInLeft;
}
.spin {
  -webkit-animation-name: spin;
  animation-name: spin;
}
.infiniteSpin {
  animation-name: spin;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 3s;
  -webkit-animation-name: spin;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 3s;
}
.pastille-contact.infiniteSpin {
  animation: none;
}
.pastille-contact.infiniteSpin svg g {
  animation-name: spin;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-duration: 12s;
  -webkit-animation-name: spin;
  -webkit-animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  -webkit-animation-duration: 12s;
  transform-origin: center;
}
.slideFadeIn {
  animation: 1s ease-in-out 0.2s slideFade both;
  -webkit-animation:1s ease-in-out 0.2s slideFade both;;
}
.slideButtonFromCenter::before {
  animation: 1s ease-in-out 2s buttonFromCenter both;
  -webkit-animation: 1s ease-in-out 2s buttonFromCenter both;
}
.animated.buttonFromCenter::before {
  animation-name: buttonFromCenter;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-delay: 1s;
  animation-duration: 1s;
  -webkit-animation-name: buttonFromCenter;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
}
.animated.revealText {
  animation-name: revealText;
  animation-timing-function: ease-in-out;
  animation-delay: 0.5s;
  animation-duration: 2s;
  -webkit-animation-name: revealText;
  -webkit-animation-timing-function: ease-in-out;
}
/*
.call-to-action a.button span.fadeIn {
  animation: 0.2s ease-in-out 0.2s fadeIn both!important;
  -webkit-animation:0.2s ease-in-out 0.2s fadeIn both!important;
}
*/
/*
.slideButtonFromCenter::before {
  animation: 0.2s ease-in-out 0.2s fadeIn both;
  -webkit-animation: 0.2s ease-in-out 0.2s fadeIn both;
}
.animated.buttonFromCenter::before {
  animation-name: fadeIn;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-delay: 0.2s;
  animation-duration: 0.2s;
  -webkit-animation-name: fadeIn;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
}
*/
.animated.animTriangle1::after {
  animation-name: animTriangle1;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-delay: 1s;
  animation-duration: 1s;
  -webkit-animation-name: animTriangle1;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
}
.animated.animTriangle2 {
  animation-name: animTriangle2;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: animTriangle2;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
}
.animated.animTriangle3 {
  animation-name: animTriangle3;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: animTriangle3;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
}
.animated.animTriangle4::after {
  animation-name: animTriangle4;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  animation-delay: 1s;
  animation-duration: 1s;
  -webkit-animation-name: animTriangle4;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
}
.blurOut {
  animation-name: blurOut;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: blurOut;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
}
.leftToRight {
  animation-name: leftToRight;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: leftToRight;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
}
.topToBottom {
  animation-name: topToBottom;
  animation-fill-mode: both;
  animation-timing-function: ease-in-out;
  -webkit-animation-name: topToBottom;
  -webkit-animation-fill-mode: both;
  -webkit-animation-timing-function: ease-in-out;
}

/*** Général ***/
a.button,
.multi-select-button,
.formulaire .chosen-container,
.formulaire select.chosen,
.formulaire .submit  {
  position:relative;
  z-index:2;
  display:inline-block;
  text-align:center;
  cursor:pointer;
  padding: 0px 65px 0px 65px;
  border-radius: 30px;
  font-size: 20px;
  font-family: "ClashDisplay-Medium", sans-serif;       
  font-stretch: normal;
  font-style: normal;
  line-height: 98px;
  height: 98px;
  text-transform: uppercase;
  letter-spacing: 0.01em;  
  width:auto;
  cursor: pointer;  
  text-decoration: none;
  border: none;
  background-color: transparent;
  transition: all .450s cubic-bezier(.4,0,0,1);
/*  animation: 1s ease-in-out 3.5s fade-in both;*/
}
a.button::before,
.multi-select-button::before,
.formulaire .chosen-container::before,
.formulaire select.chosen::before,
.formulaire .submit::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  z-index: -1;
  left: 0px; 
  top: 0px; 
  transition: all .450s cubic-bezier(.4,0,0,1);
}
a.button-1,
.multi-select-button,
.formulaire .chosen-container,
.formulaire select.chosen,
.formulaire .submit {
  color: var(--col-orange);
}
a.button-1::before,
.multi-select-button::before,
.formulaire .chosen-container::before,
.formulaire select.chosen::before {
  background-color: transparent;
  border-radius: 50px;
  border: solid 2px var(--col-orange);
  color: var(--col-blanc);
}
a.button::after,
.multi-select-button::after,
.formulaire .chosen-container::after,
.formulaire select.chosen::after,
.formulaire .submit::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  opacity: 0;
  z-index: -1;
  left: 0px; 
  bottom: 0px; 
  transition: all .450s cubic-bezier(.4,0,0,1);
}
a.button:hover::before,
.multi-select-button:hover::before,
.formulaire .chosen-container:hover::before,
.formulaire select.chosen:hover::before,
.scale-effect-hover:hover {
  transform: scaleX(1.02);
  transition: transform .6s cubic-bezier(.34,5.56,.64,1);
}
.scale-big-effect-hover:hover {
  transform: scaleX(1.08);
  transition: transform .6s cubic-bezier(.34,5.56,.64,1);
}
a.button-1::after,
.multi-select-button::after,
.formulaire .chosen-container::after,
.formulaire select.chosen::after,
.formulaire .submit::after {
/*  background-color: var(--col-noir);*/
  border-radius: 50px;
}
a.button-1:hover,
a.button-1.active {
  color: var(--col-blanc);
}
a.button-1:hover::before,
a.button-1.active::before {
  background-color: var(--col-orange);
}
a.button-1-b {
  color: var(--col-blanc);
}
a.button-1-b::after{
  height: 100%;
}
a.button-1-b:hover {
  color: var(--col-noir);
}
a.button-1-b:hover::after{
  height: 0;
}
a.button-2 {
  color: var(--col-noir);
}
a.button-2::before {
  background-color: transparent;
  border-radius: 50px;
  border: solid 2px var(--col-noir);
  color: var(--col-noir);
}
a.button-2::after {
/*  background-color: var(--col-noir);*/
  border-radius: 50px;
}
a.button-2:hover,
a.button-2.active {
  color: var(--col-blanc);
}
a.button-2:hover::before,
a.button-2.active::before {
  background-color: var(--col-noir);
}
a.button-3 {
  color: var(--col-noir);
}
a.button-3::before {
  background-color: transparent;
  border: solid 1px var(--col-noir);
  border-radius: 7px;
  color: var(--col-noir);
}
a.button-3::after {
  background-color: var(--col-noir);
}
a.button-3:hover {
  color: var(--col-blanc);
  background-color: var(--col-noir);
}
a.button img,
a.button svg {
  margin-left: 5px;
  transform: translateY(-25%);
}
a.button-1 svg path {
  transition: all .450s ease-in-out;
  stroke: var(--col-blanc);
}
a.button-1:hover svg path {
  stroke: var(--col-orange);
}
a.small-button {
  font-size: 12px;
  height: 26px;
  line-height: 26px;
  padding: 0 10px;
}
a.small-button::before {
  border-width: 1px;
}
a.button .with-arrow::after {
  content: "";
  display: inline-block;
  width: 16px;
  height: 16px;
  border-top: solid 3px var(--col-orange);
  border-right: solid 3px var(--col-orange);
  clip-path: polygon(0 0, 0% 10%, 85% 10%, 0% 90%, 10% 100%, 90% 20%, 90% 100%, 100% 100%, 100% 0);
  background-color: var(--col-orange);
  margin-left: 15px;
  transition: all .35s ease-in;
}
a.button.small-button .with-arrow::after {
  width: 10px;
  height: 10px;
}
a.button-1:hover .with-arrow::after {
  background-color: var(--col-blanc);
  border-top: solid 3px var(--col-blanc);
  border-right: solid 3px var(--col-blanc);
  animation: hoverArrow 2s infinite;
}
a.button-1.small-button:hover .with-arrow::after {
  animation: smallHoverArrow 2s infinite;
}

ul {
  padding: 0 0 0 20px;
}
body ul:not(.slider-home-image) li:not(.col-12) {
  position: relative;
  padding-left: 20px;
}
ul.slick-slider,
ul.slick-dots {
  padding: 0;
}
body ul.pagination li,
body ul.slick-slider li,
body ul.slick-dots li,
body footer ul li {
  padding-left: 0!important;
}
body h1,
body .h1 {
  font-weight: 900;
  font-size: var(--size-h1);
  line-height: 1.2em;
  text-align: left;
  margin-bottom: 30px;
}
body h2,
body .h2 {
  position: relative;
  font-weight: 700;
  font-size: var(--size-h2);
  line-height: 1.2em;
  margin-bottom: 20px;
}
body h3,
body .h3 {
  font-weight: 600;
  font-size: var(--size-h3);
  line-height: 1.2em;
  letter-spacing: normal;  
  margin-bottom: 20px;
}
body h4,
body .h4 {
  font-weight: 700;
  font-size: var(--size-h4);
  line-height: 1.2em;
  letter-spacing: normal;  
  margin-bottom: 20px;
}
body .sur-titre {
  font-weight: 900;
  font-size: var(--size-txt);
  line-height: 30px;
  letter-spacing: 0.2em;
  text-transform: uppercase;  
  color: var(--col-orange);
  display: block;
  margin-bottom: 20px;
}
.page {
  font-weight: 400;
  font-size: var(--size-txt);
  line-height: 1.5em;
}
.without-background .page-content {
  padding-top: 200px;
}
.homepage,
.page.page-contact {
  overflow: hidden;
}
.page .section-titre-h1 h1 {
  font-size: 180px;
  line-height: .9em;
  text-transform: none;
  position: relative;
  z-index: 1;
  margin-bottom: 80px;
}
.with-background .section-titre-h1 {
  padding-top: var(--main-padding);
}
.section-titre-h1 h1 div,
h1.with-revealText div {
  overflow: hidden;
  display: inline-block;
  vertical-align: top;
  position: relative;
  padding-right: 20px; /* pour gérer le débordement dû à l'italique **/
  padding-bottom: 15px; /* pour gérer le débordement dû à l'italique **/
}
.section-titre-h1 h1 div strong,
h1.with-revealText div span {
  visibility: hidden;
  display: inline-block;
  vertical-align: top;
/*
  animation-name: revealText;
  animation-timing-function: ease-in-out;
  animation-delay: .6s;
  animation-duration: 0.4s;
  -webkit-animation-name: revealText;
  -webkit-animation-timing-function: ease-in-out;
*/
}
h1.with-revealText div span {
/*  padding-top: 20px; /* pour l'affichage des accents */
  padding-top: 0px;
}
.section-titre-h1 h1 div em {
  visibility: hidden;
  display: inline-block;
  vertical-align: top;
/*
  animation-name: revealText;
  animation-timing-function: ease-in-out;
  animation-delay: .8s;
  animation-duration: 0.4s;
  -webkit-animation-name: revealText;
  -webkit-animation-timing-function: ease-in-out;
*/
}
.page .texte {
  font-family: "ClashGrotesk-Regular", sans-serif;
  text-align: left;
  font-weight: 400;
}
.page .texte mark {
  position: relative;  
  font-family: "ClashGrotesk-Semibold", sans-serif;
  font-weight: normal;
/*  background: linear-gradient(to top, transparent 10%, rgba(var(--rgb-orange),1) 10.01%, rgba(var(--rgb-orange),1) 50%, transparent 50.01%) no-repeat;*/
  color: var(--col-orange);
  background: transparent;
/*  padding: 0 5px 5px;*/
/*  color: var(--col-noir);*/
}
.page .texte strong,
.page .texte b,
#header-work-content .header-work-text strong,
#header-work-content .header-work-text b {
  font-family: "ClashGrotesk-Semibold", sans-serif;
  font-weight: normal;
}
/*
.page .texte em,
.page .texte i {
  font-family: "ClashDisplay-Bold", sans-serif;
}
*/
.page h1 .texte,
.page h2 .texte {
  font-family: "ClashDisplay-Light", sans-serif;
}
.page h1 .texte mark,
.page h2 .texte mark {
  font-family: "ClashDisplay-Semibold", sans-serif;
}
.page h1 .texte strong,
.page h2 .texte strong,
.page h1 .texte b,
.page h2 .texte b {
  font-family: "ClashDisplay-Semibold", sans-serif;
}
.page .texte a {
  text-decoration: none;
  padding-bottom: 0px;
  color: var(--col-orange);
  transition: all .45s ease-in-out;
  border-bottom: solid 1px transparent;
}
.page .texte a:hover {
  border-bottom: solid 1px var(--col-orange);
}
.page .texte dfn {
  font-weight: 900;
  color: var(--col-orange);
  font-style: normal;
}
.page-content .texte ul {
  list-style: none;
  list-style-position: outside;
  padding: 0;
  margin: 20px auto;
}
.page-content .texte ol {
  padding: 0 0 0 20px;
  margin: 20px auto;
  list-style-position: outside;
}
.page-content .texte li {
  padding-left: 24px;
  margin-bottom: 20px;
}
.page-content .texte ul li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  width: 10px;
  height: 10px;
  border-radius: 100%;
  background-color: var(--col-noir);
}
.page-content .texte ol li {
  padding-left: 10px;
}
.page-content .texte ol li::marker {
  font-weight: 900;
  font-family: "ClashGrotesk-Semibold", sans-serif;
  color: var(--col-orange);
}
.page-content .wp-block-image,
.page-content .block-texte-image {
  margin-bottom: var(--margin-block-image);
}
.page-content .wp-block-image.very-small-margin-bottom,
.page-content .block-texte-image.very-small-margin-bottom {
  margin-bottom: 40px;
}
.page-content .wp-block-image.small-margin-bottom,
.page-content .block-texte-image.small-margin-bottom {
  margin-bottom: 80px;
}
.page-content figcaption {
  font-size: 16px;
  font-style: italic;
  text-align: center;
}
.section-interne {
  position: relative;
  padding: var(--main-padding) 0;
}
.container-padding-left {
  padding-left: 60px;
}
.container-padding-right {
  padding-right:60px;
}
.cadre-photo {
  overflow: hidden;
  background: rgba(var(--rgb-gris), 0.05);
  width: 100%;
  height: 400px;
  position: relative;
  z-index: 1;
/*  animation: fadeInDownRight .45s linear;*/
}
.cadre-photo figure,
.full-width figure {
  position: relative;
  margin: 0;
  height: 100%;
  width: 100%;
}
.cadre-photo img,
.full-width figure img {
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
}
.cadre-photo.with-parallax {
  margin-top: 50px;
/*  transition: all .5s ease-in-out;*/
}
.cadre-photo.with-parallax figure {
  position: absolute;
}
.cadre-photo.with-parallax img {
  height: calc(100% + 350px);
  margin-top: -150px;
/*  transform: translateY(-100px);*/
/*  transition: all .8s ease-in-out;*/
}
.cadre-photo.with-parallax.scrollanime {
  transform: translateY(0);
}
.cadre-photo.with-parallax.scrollanime img {
  transform: translateY(0);
}
.bg-gris {
  background-color: var(--col-gris);
}
.bg-anthracite {
  background-color: var(--col-anthracite);
}
.bg-orange {
  background-color: var(--col-orange);
}
/*** Pastille contact ***/
.pastille-contact {
  position: fixed;
  right: 15px;
  bottom: 15px;
  z-index: 100;
  height: 150px;
  width: 150px;
}
.pastille-contact svg path {
  transition: all .35s ease-in-out;
}
.pastille-contact.pastille-orange svg path {
  fill: var(--col-orange);
}
/*** Homepage ***/
.banner,
#header-work {
  position: relative;
  z-index: 0;
  display: flex;
  background-color: rgba(var(--rgb-blanc), 1);
  color: var(--col-blanc);
  position: relative;
  text-align: center;
}
.slider-home-container,
.slider-home-image,
.header-full {
  color:var(--col-blanc);
  height:100vh;
  max-height: var(--slider-page-height);
  width:100%;
  overflow:hidden;
  position: relative;
  padding: 0;
}
.header-full {
  background-size: cover;
  background-position: 50% 50%;
}
.page-home .slider-home-container,
.page-home .slider-home-image {
  max-height: var(--slider-home-height);
}
.slider-home-image li {
  height: var(--slider-page-height)!important;
  max-height: var(--slider-page-height);
  width:100vw;
  text-align: center;
  background-repeat:no-repeat;
  background-size:cover;
  background-position:center;
  padding: 0;
}
.page-home .slider-home-image li {
  height: var(--slider-home-height)!important;
  max-height: var(--slider-home-height);
}
.slider-home-image li img {
  height:100%!important;
  width:100%;
  object-fit:cover;
  object-position: center center;
  max-width:none
}
.slider-home-image a {
  color:#fff
}
.background-video {
  width: 100vw;
  height: 100vh;
}
.background-video img {
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;  
}
#main_video {
  position: absolute;
  height: 100%;
  width: 100%;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
}
#main_video .background,
#main_video iframe {
  width: 100%;
  height: 100%;
}
#main_video video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.slick-dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  display: flex;
  z-index: 2;
  transform: translateX(-50%);
}
.slick-dots li::before,
.slick-dots li::marker {
  display: none;
  font-size: 0;
}
.slick-dots li {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  margin-right: 20px;
}
.slick-dots li:last-child {
  margin-right: 0;
}
.slick-dots li button {
  width: 12px;
  height: 12px;
  border-radius: 100%;
  background-color: rgba(var(--rgb-gris),1);
  border: none;
  font-size: 0;
  cursor: pointer;
}
.slick-dots li.slick-active button {
  background-color: rgba(var(--rgb-blanc),1);
}
.banner .banner-content {
  animation:1.5s ease-out 0s 1 slideFade;
  -webkit-animation:1.5s ease-out 0s 1 slideFade;
  position:absolute;
  width:100%;
  top: auto;
  bottom: 60px;
  left:calc( (100% - var(--width-container)) / 2 );
  z-index:5;
  display: flex;
  text-align: left;
  max-width: var(--width-container);
}
.page-home .banner .banner-content {
  bottom: 100px;
}
.move-left {
  margin-left: -10%;
}
.move-left-2 {
  margin-left: -5%;
}
.banner-content h1 {
  font-family: "ClashDisplay-Medium", sans-serif;
  font-size: 25px;
  line-height: 1.1em; 
  text-transform: uppercase;
  text-align: center;
  letter-spacing: 0.5em;
  text-shadow: 0px 2px 4px rgba(var(--rgb-noir),.15);
}
.banner-content .header-content {
  width: 100%;
}
.banner-content .intro {
  font-weight: 400;
  font-size: var(--size-txt);
  line-height: 130%;
}
.slick-vertical .slick-slide {
  border: none!important;
}
.banner .scroll-to-section,
.header-full .scroll-to-section {
  position: absolute;
  z-index:10;
  bottom: 20px;
  left: 50%;
  margin-left: -20px;
  font-size: 0px;
  text-align: center;
  width: 40px;
  height: 40px; 
  opacity:1;
  -webkit-animation: bounce 2s infinite 2s;
  animation: bounce 2s infinite 2s;
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  transform: scale(1)
}
.banner .scroll-to-section:hover,
.header-full .scroll-to-section:hover {
  transform: scale(1.2);
}
.banner .scroll-to-section .arrow,
.header-full .scroll-to-section .arrow {
  position:absolute;
  top:12px;
  left:20px;
  height:25px;
  width:2px;
  background-color:#fff
}
.banner .scroll-to-section .arrow:after,
.banner .scroll-to-section .arrow:before,
.header-full .scroll-to-section .arrow:after,
.header-full .scroll-to-section .arrow:before {
  content:"";
  position:absolute;
  height:50%;
  width:2px;
  right:-4px;
  bottom:-1px;
  background-color:#fff;
  transform:rotate(45deg)
}
.banner .scroll-to-section .arrow:before,
.header-full .scroll-to-section .arrow:before {
  left:-4px;
  transform:rotate(-45deg)
}
.banner .scroll-to-section .arrow,
.header-full .scroll-to-section .arrow { 
  background-color: var(--col-blanc); 
}
.banner .scroll-to-section .arrow:after, 
.banner .scroll-to-section .arrow:before,
.header-full .scroll-to-section .arrow:after, 
.header-full .scroll-to-section .arrow:before { 
  background-color: var(--col-blanc); 
}
    
/**** Homepage ***/
.section-intro .container {
  padding-left: var(--marge-left);
}
.section-intro h2 {
  font-size: 180px;
  line-height: 0.9em;
  margin-bottom: 60px;
  text-transform: none;
  position: relative;
  z-index: 1;
}
.section-intro .row-content {
  margin-top: -100px;
  position: relative;
  z-index: 0;
}
.section-intro .colonne-texte {
  padding-top: 100px;
}
.section-intro .cadre-photo {
  height: 600px;
  width: 600px;
  border-radius: 100%;
}
.section-intro h3 {
  color: var(--col-orange);
  line-height: 1.2em;
}
.section-intro .liste-categories a {
  margin: 20px 5px 0px;
}
.section-intro .liste-categories a:first-child {
  margin-left: 0;
}
.section-intro .liste-categories a:last-child {
  margin-right: 0;
}
.section-intro .call-to-action {
  margin-top: 40px;
}
.section-intro .intro-triangle {
  content: "";
  position: absolute;
  background-color: var(--col-noir);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  width: 30vw;
  height: 35vw;
  right: 0;
  top: 0px;
}
.section-expertises {
  padding-bottom: calc(var(--main-padding) * 2);
}
.section-expertises .illustration-graphique {
  text-align: right;
  position: relative;
}
.section-expertises .liste-expertises {
  list-style: none;
  padding: 0;
  margin: 0;
  width: 90%;
}
.section-expertises .liste-expertises li {
  padding: 0!important;
}
.section-expertises .liste-expertises a {
  position: relative;
  z-index: 1;
  font-size: 32px;
  text-transform: uppercase;
  color: var(--col-noir);
  width: 100%;
  display: flex;
  height: 120px;
  text-decoration: none!important;
  transition: color 0.75s ease-in-out;
  border-top: solid 1px var(--col-noir);
  font-family: 'ClashDisplay-Semibold', sans-serif;
}
.section-expertises .liste-expertises a .icone {
  display: flex;
  flex-direction: column;
  justify-content: center;
  z-index: 1;
}
.section-expertises .liste-expertises li:last-child a {
  border-bottom: solid 1px var(--col-noir);
}
.section-expertises .liste-expertises a span {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: calc(100% - 75px);
  padding-left: 30px;
  z-index: 1;
}
.liste-expertises a .with-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 26px;
  height: 26px;
  border-top: solid 3px var(--col-orange);
  border-right: solid 3px var(--col-orange);
  clip-path: polygon(0 0, 0% 10%, 85% 10%, 0% 90%, 10% 100%, 90% 20%, 90% 100%, 100% 100%, 100% 0);
  background-color: var(--col-orange);
  margin-left: 15px;
  transition: all .35s ease-in;
}
.liste-expertises a::before {
  content: "";
  position: absolute;
  z-index: 0;
  height: calc(100% + 2px);
  top: -1px;
  left: -55px;
  border-radius: 60px;
  width: calc(100% + 110px);
  background-color: var(--col-noir);
  transition: all .35s ease-in-out;
  opacity: 0;
}
/*
.liste-expertises a::after {
  content: "";
  position: absolute;
  z-index: 0;
  height: 100%;
  top: 0;
  left: 50%;
  border-top-right-radius: 60px;
  border-bottom-right-radius: 60px;
  width: calc(50% + 60px);
  background-color: var(--col-noir);
  transition: all .35s ease-in-out;
}
*/
.liste-expertises a:hover {
  color: var(--col-blanc);
}
/*
.liste-expertises li:nth-child(1) a:hover::before,
.liste-expertises li:nth-child(2) a:hover::before,
.liste-expertises li:nth-child(3) a:hover::before {
  animation: expandLinkFromCenter .45s cubic-bezier(.4,0,0,1);
  opacity: 1;
  transform: scaleX(1.02);
  transition: transform .6s cubic-bezier(.34,5.56,.64,1);
}
.liste-expertises li:nth-child(4) a:hover::before,
.liste-expertises li:nth-child(5) a:hover::before,
.liste-expertises li:nth-child(6) a:hover::before {
  opacity: 1;
  transform: scaleX(1.02);
  transition: all .6s cubic-bezier(.34,5.56,.64,1);
}
*/
.liste-expertises li a:hover::before {
  animation: expandLinkFromCenter 1s cubic-bezier(.4,0,0,1);
  opacity: 1;
  transform: scaleX(1.02);
  transition: transform .6s cubic-bezier(.34,5.56,.64,1);
}
.liste-expertises a:hover .with-arrow::after {
  animation: hoverArrow 2s infinite;
  animation-delay: 0.75s;
}
.homepage .section-realisations {
  background-color: var(--col-noir);
}
.homepage .section-realisations h2 {
  color: var(--col-orange);
  font-size: 100px;
  line-height: 1em;
}
.liste-realisations {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 60px;
}
.homepage .liste-realisations {
  width: 66%;
  margin-left: 34%;
}
.liste-realisations .vignette {
  position: relative;
  border-radius: 40px;
  height: 550px;
  overflow: hidden;
  width: calc(50% - (60px / 2));
  margin: 0 30px 60px;
}
.liste-realisations .vignette:nth-child(2n+1) {
  margin-left: 0;
}
.homepage .liste-realisations .vignette:nth-child(2n+2) {
  margin-right: 0;
  margin-top: -50%;
}
.page-portfolio .liste-realisations .vignette {
  margin: 0 15px 30px;
}
.page-portfolio .liste-realisations .vignette:nth-child(7n+1) {
  width: calc(66.666666666% - 15px);
}
.page-portfolio .liste-realisations .vignette:nth-child(7n+2) {
  width: calc(33.333333333% - 15px);
}
.page-portfolio .liste-realisations .vignette:nth-child(7n+3) {
  width: calc(33.333333333% - 15px);
}
.page-portfolio .liste-realisations .vignette:nth-child(7n+4) {
  width: calc(66.666666666% - 15px);
}
.page-portfolio .liste-realisations .vignette:nth-child(7n+5) {
  width: calc(33.333333333% - 15px);
}
.page-portfolio .liste-realisations .vignette:nth-child(7n+6) {
  width: calc(33.333333333% - 30px);
}
.page-portfolio .liste-realisations .vignette:nth-child(7n+7) {
  width: calc(33.333333333% - 15px);
}
.page-portfolio .liste-realisations .vignette:nth-child(7n+1),
.page-portfolio .liste-realisations .vignette:nth-child(7n+3),
.page-portfolio .liste-realisations .vignette:nth-child(7n+5) {
  margin-left: 0;
}
.page-portfolio .liste-realisations .vignette:nth-child(7n+2),
.page-portfolio .liste-realisations .vignette:nth-child(7n+4),
.page-portfolio .liste-realisations .vignette:nth-child(7n+7) {
  margin-right: 0;
}
.vignette figure,
.vignette .video-vignette {
  position: relative;
  height: 100%;
}
.vignette figure img {
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
}
.vignette .video-vignette video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.liste-realisations .vignette .content-vignette,
.studio-equipe .content-vignette {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  color: var(--col-blanc);
  transition: all .35s ease-in-out;
}
.liste-realisations .vignette:hover .content-vignette {
  background-color: var(--col-orange);
  border-radius: 40px;
  opacity: 1;
  display: none;
}
.studio-equipe .content-vignette {
  background-color: var(--col-orange);
  border-radius: 40px;
  opacity: 1;
  display: none;
}
.liste-realisations .content-vignette a {
  width: 100%;
  height: 100%;
  display: flex;
  text-decoration: none;
}
.content-vignette .container-content-vignette {
  width: 100%;
  height: 100%;
  padding: 40px;
}
.liste-realisations .content-vignette .container-content-vignette > div ,
.studio-equipe  .content-vignette .container-content-vignette > div  {
  width: 100%;
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.liste-realisations .content-vignette .container-content-vignette > div > a {
  width: 100%;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.liste-realisations .content-vignette .container-content-vignette > div .categories span,
.studio-equipe  .content-vignette .container-content-vignette > div .categories span,
.liste-realisations .content-vignette .container-content-vignette > div .categories span a ,
.studio-equipe  .content-vignette .container-content-vignette > div .categories span a {
  display: inline-block;
}
.liste-realisations .content-vignette .with-arrow {
  display: inline-block;
  width: 60px;
  height: 60px;
  border-top: solid 3px var(--col-blanc);
  border-right: solid 3px var(--col-blanc);
  clip-path: polygon(0 0, 0% 5%, 92.5% 5%, 0% 96%, 4% 100%, 95% 10%, 95% 100%, 100% 100%, 100% 0);
  background-color: var(--col-blanc);
  margin: 0 auto;
}
.liste-realisations .content-vignette a:hover .with-arrow {
  animation: hoverArrow 2s infinite;
}
.content-vignette .client {
  margin-top: 40px;
  color: var(--col-noir);
  font-size: 32px;
  line-height: 1.1em;
  text-transform: uppercase;
  font-style: italic;
}
.content-vignette h3 {
  margin-top: 20px;
  color: var(--col-blanc);
  font-size: 36px;
  text-transform: uppercase;
  font-family: "ClashDisplay-Semibold",sans-serif;
}
.studio-equipe  .content-vignette h3 {
  margin-top: 0;
}
.content-vignette .type {
  margin: 10px 3px 0;
  border-radius: 50px;
  border: solid 1px var(--col-noir);
  color: var(--col-noir);  
  font-size: 12px;
  font-family: "ClashDisplay-Medium",sans-serif;
  text-transform: uppercase;
  height: 26px;
  line-height: 26px;
  display: inline-block;
  padding: 0 10px;
}
.content-vignette .poste,
.content-vignette .mission {
  font-style: italic;
  color: var(--col-noir);
  text-transform: uppercase;
}
.section-realisations .call-to-action {
  text-align: right;
  margin-top: calc(-80px - 60px);
}
.charger-plus {
  list-style: none;
  margin: var(--main-padding) auto;
  text-align: center;
}
.ajax-loading {
  position: relative;
  width: 100%;
  background-color: transparent;
  padding: 40px 0 40px;
  display: inline-block;
  margin-top: 20px;
  height: auto;
  font-size: 14px;
  color: rgba(var(--rgb-orange),.5);
  animation: fadeIn 0.05s ease-in;
}
.ajax-loading::before {
  content:"";
  position:absolute;
  margin:0 auto;
  left:0;
  top: 20px;
  right: 0;
  bottom: 0;
  border: 3px solid rgba(var(--rgb-orange),.5);
  border-top: 3px solid var(--col-orange);
  border-radius: 50%;
  width: 16px;
  height: 16px;
  animation: spin 1s linear infinite;
}
.ajax-loading span {
  display: block;
  text-align: center;  
}
.charger-plus #ajax-loading,
.charger-plus .ajax-loading {
  height: auto;
}
.page-home .section-realisations .realisations-triangle {
  content: "";
  position: absolute;
  background-color: var(--col-blanc);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  width: 30vw;
  height: 35vw;
  left: 0;
  bottom: -1px;
}
.section-references .surtitre {
  font-size: 40px;
  font-family: "ClashDisplay-Medium", sans-serif;
  color: var(--col-orange);
  text-transform: uppercase;
  margin-bottom: 60px;
}
.section-references h2 {
  font-size: 100px;
  line-height: 0.9em;
}
.section-references #slider-references {
  text-align:center;
  margin-top: 80px;
  width: 80%;
}
.section-references #slider-references li {
  text-align:left
}
.section-references #slider-references li div {
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  text-align:left;
  width:100%
}
.section-references #slider-references li div figure {
  max-width:90px;
  max-height:90px;
  margin:10px 90px 10px 0;
  display:inline-block
}
.section-references #slider-references li div figure:last-child {
  margin-right: 91px;
}
.section-references #slider-references .slider-references::after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 88px;
  height: 100%;
  background-color: var(--col-blanc);
}
.section-references .slider-references-navigation {
  padding: 40px 0;
  position: relative;
  width: 80%;
}
.section-references .slider-references-navigation a {
  bottom:0px;
  left: calc(50% - 45px);
  position:absolute;
  display:block;
  border:solid var(--col-noir);
  border-width:0 1px 1px 0;
  padding:10px;
  cursor:pointer;
  transition:all 450ms ease;
  text-align:center
}
.section-references .slider-references-navigation a:hover {
  border:solid var(--col-orange);
  border-width:0 1px 1px 0
}
.section-references .slider-references-navigation a.prev {
  display:inline-block;
  transform:rotate(135deg);
  margin-left:-25px
}
.section-references .slider-references-navigation a.next {
  display:inline-block;
  transform:rotate(-45deg);
  margin-left:4px
}
/*
.section-references .slider-references-navigation a.prev,
.section-references .slider-references-navigation a.next {
  transform: rotate(135deg), scaleX(1.02);
  transition: transform .6s cubic-bezier(.34,5.56,.64,1);
}
*/
.section-references #slider-temoignages {
  text-align:center;
  width: 600px;
  height: 600px;
  background-color: var(--col-orange);
  border-radius: 100%;
  padding: 80px;
  color: var(--col-blanc);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
}
.section-references #slider-temoignages .slick-track {
  display: flex;
}
.section-references #slider-temoignages li {
  padding: 0 50px!important;
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.slider-temoignages {
  margin-bottom: 0;
}
.slider-temoignages .identity-temoignage {
  color: var(--col-noir);
  margin-bottom: 0;
}
.slider-temoignages .identity-temoignage strong {
  font-family: "ClashDisplay-Semibold",sans-serif;
}
.slider-temoignages .identity-temoignage span {
  text-transform: uppercase;
}
.section-references .slider-temoignages-navigation a {
  top: 50%;
  position:absolute;
  display:block;
  width: 16px;
  height: 16px;
  cursor:pointer;
  transition:all 450ms ease;
  text-align:center
}
.section-references .slider-temoignages-navigation a::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  clip-path: polygon(0 0, 0% 10%, 85% 10%, 0% 90%, 10% 100%, 90% 20%, 90% 100%, 100% 100%, 100% 0);
  background-color: var(--col-blanc);
}
.section-references .slider-temoignages-navigation a.prev {
  left: 40px;
}
.section-references .slider-temoignages-navigation a.next {
  right: 40px;
}
.section-references .slider-temoignages-navigation a.prev::before {
  transform: rotate(-135deg);
}
.section-references .slider-temoignages-navigation a.next::before {
  transform: rotate(45deg);
}
/*** Portfolio ***/
.section-categories {
  margin-top: 80px;
}
.section-categories a.big-texte {
  font-size: 90px;
  font-style: italic;
  text-decoration: none;
  display: block;
  margin-bottom: 40px;
}
.section-categories a.big-texte.with-arrow::after {
  content:"";
  display: inline-block;
  width: 60px;
  height: 60px;
/*  clip-path: polygon(0 0, 0% 5%, 92.5% 5%, 0% 96%, 4% 100%, 95% 10%, 95% 100%, 100% 100%, 100% 0);*/
  clip-path: polygon(0 4%, 4% 0, 95% 90%, 95% 0, 100% 0, 100% 100%, 0 100%, 0 95%, 92.5% 95%);
  background-color: var(--col-orange);
  margin-left: 40px;
/*  transform: rotate(90deg);*/
}
.section-categories a.big-texte.with-arrow:hover::after {
  animation: hoverArrowDown 2s infinite;
  transform: rotate(90deg);
}
.section-categories .liste-categories a.small-button {
  margin: 0px 3px 10px;
}
.page-portfolio .section-realisations,
.page-expertises .section-competences,
.page-studio .studio-equipe {
  position: relative;
  padding-bottom: calc( var(--main-padding) + 300px);
}
.page-portfolio .section-realisations .realisations-triangle,
.page-expertises .section-competences .expertises-triangle,
.page-studio .studio-equipe .equipe-triangle {
  content: "";
  position: absolute;
  background-color: var(--col-orange);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  width: 26vw;
  height: 30vw;
  left: 0;
  bottom: 0px;
}

/*** Single Portfolio ***/
#header-work .header-full .container {
  position: relative;
  height: 100%;
}
#header-work-content {
  position: absolute;
  bottom: 150px;
  left: 0;
  text-align: left;
  max-width: 43%;
}
.single-competence #header-work-content {
  max-width: 40%;
}
#header-work-content h1 {
  font-size: 90px;
  font-family: "ClashDisplay-Semibold",sans-serif;
  line-height: 0.9em;
}
#header-work-content h1 small {
  display: block;
  font-size: 14px;
  font-weight: 300;
  opacity: 0.5;
  margin: 0;
  line-height: 1em;
  text-transform: uppercase;
}
#header-work-content h1 small div {
  padding-right: 5px;
}
#header-work-content .liste-categories {
  margin-bottom: 40px;
}
#header-work-content .subtitle {
  text-transform: uppercase;
  font-style: italic;
  font-size: 40px;
  font-family: "ClashDisplay-Medium",sans-serif;
  line-height: 1.1em;  
}
.header-work-text p {
  margin: 0;
}
#content-work {
  padding: var(--main-padding) 0;
}
#content-work .item-paragraphe {
  padding: calc(var(--main-padding)/2) 0;
}
#details-work .colonne-texte {
  padding-right: 80px;
}
#details-work h2,
#details-work h3 {
  color: var(--col-orange);
  font-size: 40px;
  text-transform: uppercase;
  font-family: "ClashDisplay-Semibold",sans-serif;
  margin-bottom: 40px;
}
.single-competence #content-work h2 {
  color: var(--col-orange);
  font-size: 40px;
  text-transform: uppercase;
  font-family: "ClashDisplay-Semibold",sans-serif;
  margin-bottom: 40px;
}
#content-work .liste-paragraphes .bloc-photo.col-md-6 .cadre-photo {
  height: 540px;
  border-radius: 40px;
}
#content-work .liste-paragraphes .bloc-photo {
  display: flex;
  flex-direction: column;
  justify-content: center;  
}
#content-work .liste-paragraphes .col-md-6.order-md-0 {
  padding-right:60px;
}
#content-work .liste-paragraphes .col-md-6.order-md-1 {
  padding-left:60px;
}
#content-work .liste-paragraphes .bloc-photo.col-md-12 .cadre-photo {
  height: auto;
  margin-bottom: 40px;
}
#content-work .liste-paragraphes .bloc-texte {
  padding:0 60px;
}
#details-work .strate-details {
  margin-bottom: 60px;
}
#details-work .strate-details .text-details {
  position: relative;
}
#details-work .strate-details .text-details::before {
  content:"";
  position:absolute;
  top: 10px;
  left: 0;
  width: 14px;
  height: 14px;
  clip-path: polygon(0 0, 0% 10%, 90% 10%, 0% 90%, 10% 100%, 90% 20%, 90% 100%, 100% 100%, 100% 0);
  background-color: var(--col-orange);
}
#details-work .strate-details .text-details {
  padding-left: 30px;
}
#details-work .strate-classification {
  margin-bottom: 40px;
}
#details-work .strate-classification .h4 {
  font-family: "ClashDisplay-Medium";
  text-transform: uppercase;
  color: var(--col-orange);
  font-size: 15px;
  font-style: italic;
  font-weight: normal;
  padding-bottom: 10px;
  width: 100%;
  border-bottom: solid 1px var(--col-noir);
  margin-bottom: 10px;
}
#details-work .strate-classification span {
  display: block;
  font-size: 15px;
}
#navigation-block a {
  position: absolute;
  display: block !important;
  top: calc(50% - 45px);
  background: transparent;
  color: #fff;
  left: 0;
  transition: all 450ms ease;
  text-decoration: none;
  font-size: 0;
  height: 90px;
  width: 40px;
  margin-top: none;
  z-index: 9999;
}
#navigation-block a:after, 
#navigation-block a:before {
  content: "";
  position: absolute;
  height: 1px;
  width: 15px;
  left: 10px;
  top: 38px;
  background-color: #fff;
  transform: rotate(-45deg);
}
#navigation-block a:before {
  top: 48px;
  transform: rotate(45deg);
}
#navigation-block a.prev, 
#navigation-block a.next-slide {
  left: auto;
  right: 0;
}
#navigation-block a.prev:after,
#navigation-block a.prev:before, 
#navigation-block a.next-slide:after, 
#navigation-block a.next-slide:before {
  transform: rotate(45deg);
  left: 14px;
}
#navigation-block a.prev:before, 
#navigation-block a.next-slide:before {
  transform: rotate(-45deg);
}
#navigation-block a:hover {
  background-color: var(--col-orange);
}
.slider-autres-projets-container {
  margin: 0 -15px;
  width: calc(100% + 30px);
}
.section-autres-projets h2 {
  font-size: 90px;
}
.section-autres-projets .slider-autres-projets {
  display: flex;
}
.slick-slider .slick-list {
  width: 100%;
}
.section-autres-projets .slider-autres-projets .vignette {
  display: flex;
  flex-direction: column;
/*  width: 100%!important;*/
  padding: 0 15px;
  position: relative;
}
.section-autres-projets .slider-autres-projets .vignette::nth-child(3n+1) {
  padding-left: 0;
}
.section-autres-projets .slider-autres-projets .vignette::nth-child(3n+3) {
  padding-right: 0;
}
.section-autres-projets .vignette figure {
  border-radius: 40px;
  height: 400px;
  overflow: hidden;
}
.section-autres-projets .vignette .link-figure img,
.liste-competences .vignette a figure img {
  transition: all .35s ease-in-out;
}
.section-autres-projets .vignette .link-figure:hover img,
.liste-competences .vignette a:hover figure img {
  transform: scale(1.05);
}
.section-autres-projets .content-vignette .container-content-vignette {
  padding: 40px 0;
  text-align: left;
  position: relative;
}
.section-autres-projets .content-vignette a {
  text-decoration: none!important;
}
.section-autres-projets .content-vignette .container-content-vignette > div > a {
  display: block;
}
.section-autres-projets .content-vignette .with-arrow {
  background-color: var(--col-orange);
  border-top: none;
  border-right: none;
  clip-path: polygon(0 0, 0% 5%, 92.5% 5%, 0% 96%, 4% 100%, 95% 10%, 95% 100%, 100% 100%, 100% 0);
  position: absolute;
  top: 0px;
  right: 15px;
  width: 56px;
  height: 56px;
}
.section-autres-projets .content-vignette a:hover .with-arrow {
  animation: hoverArrow 2s infinite;
}
.section-autres-projets .content-vignette .client {
  margin-top: 0;
  font-size: 30px;
  text-align: left;
  width: calc(100% - (30px + 60px));
}
.section-autres-projets .content-vignette h3 {
  font-size: 30px;
  text-align: left;
  color: var(--col-orange);
  margin-top: 0;
  width: calc(100% - (30px + 60px));
}
.section-autres-projets .container-content-vignette div > span {
  text-align: left;
}
/*** Expertises ***/
.page-expertises .liste-categories {
  width: 50%;
  margin-top: 20px;
  margin-bottom: 20px;
}
.liste-competences {
  display: flex;
  width: 100%;
  flex-wrap: wrap;
  margin-top: 60px;
}
.page-expertises .liste-competences {
  width: 80%;
  margin-left: 20%;
}
.liste-competences .with-colonnes {
  display: flex !important;
}
.liste-competences .with-colonnes .colonne-1 {
  width: calc(50% - 30px);
  margin-right: 30px;
}
.liste-competences .with-colonnes .colonne-2 {
  width: calc(50% - 30px);
  margin-left: 30px;
  margin-top: -140px;
}
.liste-competences .vignette {
  position: relative;
  width: 100%;
  margin: 0 0 60px;
}
/*
.liste-competences .vignette:nth-child(2n+1) {
  margin-left: 0;
}
.liste-competences .vignette:nth-child(2n+2) {
  margin-right: 0;
  margin-top: -140px;
}
*/
.liste-competences .vignette figure {
  border-radius: 40px;
  overflow: hidden;
  position: relative;
  height: 500px;
}
.liste-competences .vignette a:hover figure img {
  transform: scale(1.05);
}
.liste-competences .vignette h2 {
  font-size: 40px;
  color: var(--col-orange);
  font-family: "ClashDisplay-Semibold",sans-serif;
  text-transform: uppercase;
  margin-top: 40px;
}
.liste-competences .vignette .button-1 {
  margin-top: 20px;
}
/*
.liste-competences .vignette:nth-last-child(3) {
  margin-top: -110px;
}
.liste-competences .vignette:nth-last-child(1) {
  margin-top: -160px;
}
*/
/*** Studio ***/
.page-studio .cadre-photo.illustration {
  height: 600px;
  width: 600px;
  background: transparent;
  z-index: 0;
  margin: -150px auto 0;
  border-radius: 100%;
}
.page-studio h2 {
  font-size: 80px;
}
.page-studio .studio-intro {
  padding-bottom: var(--main-padding);
}
.page-studio .liste-chiffres {
  width: 85%;
  margin-left: 15%;
  margin-top: -100px;  
}
.page-studio .liste-chiffres .chiffres-lg-1,
.page-studio .liste-chiffres .chiffres-end {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  width: 100%;
}
.page-studio .liste-chiffres .bloc-chiffre {
  width: calc(33.333333333% - 30px);
  margin: 0 15px 100px;
}
.page-studio .liste-chiffres .chiffres-lg-1 .bloc-chiffre:nth-child(1),
.page-studio .liste-chiffres .chiffres-end .bloc-chiffre:nth-child(3n+1) {
  margin-left: 0;
}
.page-studio .liste-chiffres .chiffres-lg-1 .bloc-chiffre:nth-child(2),
.page-studio .liste-chiffres .chiffres-end .bloc-chiffre:nth-child(3n+3) {
  margin-right: 0;
}
.page-studio .liste-chiffres .bloc-chiffre .number {
  font-size: 90px;
  line-height: 1em;
  font-style: italic;
  color: var(--col-orange);
  display: block;
}
.page-studio .liste-chiffres .bloc-chiffre .separator {
  width: 190px;
}
.page-studio .liste-chiffres .bloc-chiffre .libelle {
  display:block;
  margin-top: 10px;
  font-size: 25px;
  line-height: 1.2em;
  font-family: "ClashDisplay-Semibold",sans-serif;
}
.page-studio .studio-chiffres {
  background-color: var(--col-noir);
  color: var(--col-blanc);
}
.studio-chiffres .chiffres-triangle {
  content: "";
  position: absolute;
  background-color: var(--col-blanc);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  width: 20vw;
  height: 25vw;
  left: 0;
  bottom: 0px;
}
.studio-projets {
  padding-bottom: 0;
}
.studio-projets .container {
  position: relative;
}
.studio-projets .cadre-photo {
  position: absolute;
  right: 30px;
  top: var(--main-padding);  
}
.studio-projets .liste-paragraphes {
  display: flex;
  flex-wrap: wrap;
  padding-left: 60px;
  padding-top: calc(var(--main-padding) + 160px);
}
.studio-projets .liste-paragraphes .bloc-paragraphe {
  width: calc(50% - 140px);
  margin: 0 80px 140px;
  position: relative;
}
.studio-projets .liste-paragraphes .bloc-paragraphe .number {
  position: relative;
  z-index: 0;
  font-size: 240px;
  font-family: "ClashDisplay-Bold",sans-serif;
  line-height: 100px;
  color: transparent;
  -webkit-text-stroke: 1px var(--col-orange);
/*  text-shadow:1px 1px 0 var(--col-orange), -1px 1px 0 var(--col-orange), -1px -1px 0 var(--col-orange), 1px -1px 0 var(--col-orange);   */
}
.studio-projets .liste-paragraphes .bloc-paragraphe .texte {
  position: relative;
  z-index: 1;
  padding-left: 80px;
  margin-top: -40px;
}
.studio-projets .liste-paragraphes .bloc-paragraphe:nth-child(2n+1) {
  margin-left: 0;
  margin-top: -160px;
}
.studio-projets .liste-paragraphes .bloc-paragraphe:nth-child(2n+2) {
  margin-right: 0;
  margin-top: 0px;
}
.studio-equipe .container-vignette {
  padding: calc(var(--main-padding)/2) 0 0;
}
.studio-equipe .person {
  background-color: #FAF7F7;
  border-radius: 40px;
  width: calc(33.333333333% - 20px);
  height: 415px;
  margin: 0 15px 30px;
  display: inline-block;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  color: #fff;  
}
.studio-equipe .person:nth-child(3n+1) {
  margin-left: 0px;
}
.studio-equipe .person:nth-child(3n+3) {
  margin-right: 0px;
}
.studio-equipe .container-content-vignette {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
}
.studio-equipe .person figure {
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.studio-equipe .person figure svg {
  margin: 0 auto;
}
.studio-equipe .container-vignette .call-to-actions {
  margin-top: 20px;
}
.studio-equipe .container-vignette .button-2 {
  padding: 0 30px;
  height: 50px;
  line-height: 50px;
}
.studio-equipe .container-vignette .button-2 .with-arrow::after {
  border-top: none;
  border-right: none;
  background-color: var(--col-noir);
}
.studio-equipe .container-vignette .button-2:hover .with-arrow::after {
  background-color: var(--col-blanc);
}
.studio-equipe .container-vignette .reseaux-sociaux {
  color: var(--col-orange);
  background-color: var(--col-noir);
  height: 50px;
  width: 50px;
  line-height: 50px;
  border-radius: 50px;
  text-align: center;
  display: inline-block;
  margin-left: 10px;
}
.studio-equipe .container-vignette .reseaux-sociaux:hover {
  color: var(--col-noir);
  background-color: var(--col-blanc);
}
/*** Démarche RSE ***/
.page-demarche-rse .section-intro {
  padding-top: 80px;
  padding-bottom: var(--main-padding);
}
.page-demarche-rse .section-intro .container {
  position: relative;
}
.page-demarche-rse .section-intro .cadre-photo {
  width: auto;
  height: auto;
  background-color: transparent;
  position: absolute;
  right: 30px;
  top: -500px;
}
.page-demarche-rse .section-intro h2 {
  font-size: 40px;
  font-family: "ClashDisplay-Semibold", sans-serif;
  color: var(--col-orange);
  text-transform: uppercase;
}
.page-demarche-rse .section-intro .container {
  padding-left: 15px;
}
.page-demarche-rse .section-menu-interne .liste-items-menu {
  list-style: none;
  padding: 0 0 calc(var(--main-padding)/2);
  margin: 0;
  width: 100%;
}
.section-menu-interne .liste-items-menu li {
  padding: 0!important;
}
.section-menu-interne .liste-items-menu a {
  font-size: 32px;
  text-transform: uppercase;
  color: var(--col-noir);
  font-family: 'ClashDisplay-Semibold', sans-serif;
  border-top: solid 1px var(--col-noir);
  width: 100%;
  display: flex;
  height: 120px;
  text-decoration: none!important;
  transition: color .75s ease-in-out;
}
.section-menu-interne .liste-items-menu a::before {
  content: "";
  position: absolute;
  z-index: 0;
  height: calc(100% + 2px);
  top: -1px;
  left: -55px;
  border-radius: 60px;
  width: calc(100% + 110px);
  background-color: var(--col-noir);
  transition: all .35s ease-in-out;
  opacity: 0;
}
.section-menu-interne .liste-items-menu a .icone {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.section-menu-interne .liste-items-menu a .icone figure {
  width: 75px;
  height: 75px;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  margin: 0;
}
.section-menu-interne .liste-items-menu a .icone figure img {
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
}
.section-menu-interne .liste-items-menu li:last-child a {
  border-bottom: solid 1px var(--col-noir);
}
.section-menu-interne .liste-items-menu a span {
  display: flex;
  justify-content: center;
  flex-direction: column;
  width: calc(100% - 75px);
  padding-left: 30px;
  z-index: 1;
}
.liste-items-menu a .with-arrow::after {
  content: "";
  position: absolute;
  right: 0;
  width: 26px;
  height: 26px;
  border-top: solid 3px var(--col-orange);
  border-right: solid 3px var(--col-orange);
  clip-path: polygon(0 10%, 10% 0, 90% 85%, 90% 0, 100% 0, 100% 100%, 0 100%, 0 90%, 82.5% 90%);
  background-color: var(--col-orange);
  margin-left: 15px;
  transition: all .35s ease-in;
}
/*
.section-menu-interne .liste-items-menu a:hover {
  color: var(--col-blanc);
  background-color: var(--col-orange);
  padding: 0 30px;
}
*/
.section-menu-interne .liste-items-menu a:hover {
  color: var(--col-blanc);
}
.section-menu-interne .liste-items-menu a:hover::before {
  animation: expandLinkFromCenter 1s cubic-bezier(.4,0,0,1);
  opacity: 1;
  transform: scaleX(1.02);
  transition: transform .6s cubic-bezier(.34,5.56,.64,1);
}
.section-menu-interne .liste-items-menu a:hover .with-arrow::after {
/*  right: 30px;*/
  animation: hoverArrowDown 2s infinite;
  animation-delay: 0.75s;
/*
  border-top: solid 3px var(--col-blanc);
  border-right: solid 3px var(--col-blanc);
  background-color: var(--col-blanc);
*/  
}
.section-sections .cadre-photo {
  height: 600px;
  width: 600px;
  border-radius: 50%;
  position: absolute;
  top: -100px;
  z-index: 0;
}
.section-sections .container-section-header {
  padding-top: calc(var(--main-padding)/2);
}
.section-sections h2 {
  font-size: 84px;
  line-height: 1.1em;
  position: relative;
  z-index: 1;
}
.section-sections .intro {
  font-size: 20px;
  font-family: "ClashDisplay-Semibold",sans-serif;
  text-transform: uppercase;
}
.section-sections .container-intro {
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.section-sections .liste-paragraphes {
  padding: calc(var(--main-padding)/2) 0;
  display: flex;
  flex-wrap: wrap;
}
.section-sections .liste-paragraphes .bloc-paragraphe {
  width: calc(50% - 60px);
  margin: 0 30px 60px;
}
.section-sections .liste-paragraphes .bloc-paragraphe:nth-child(2n+1) {
  margin-left: 0;
}
.section-sections .liste-paragraphes .bloc-paragraphe:nth-child(2n+2) {
  margin-right: 0;
}
.section-sections .liste-paragraphes h3 {
  line-height: 1.1em;
  font-size: 40px;
  font-family: "ClashDisplay-Semibold",sans-serif;
  text-transform: uppercase;
  color: var(--col-orange);
}
/*** Contact ***/
.page-contact .cadre-photo.illustration{
  height: 600px;
  width: 600px;
  border-radius: 50%;
  position: absolute;
  margin-top: -50px;
  top: -100px;
  z-index: 0;
}
.page-contact h2,
.page-studio .studio-intro h2 {
  font-size: 40px;
  color: var(--col-orange);
  font-family: "ClashDisplay-Semibold", sans-serif;
  margin-bottom: 40px;
  line-height: 1.25em;
  text-transform: uppercase;
}
/*
.page-contact .texte a,
.page-studio .texte a {
  color: var(--col-noir);
}
*/
.page-contact .adresse a {
  text-decoration: none!important;
}
.page-contact .adresse a:hover {
  color: var(--col-orange);
}
.page-contact .adresse p:first-child {
  margin-bottom: 40px;
}
.contact-formulaire {
  padding-bottom: calc(var(--main-padding) + 300px);
}
.contact-formulaire .formulaire {
  padding: 0 30px;
}
.contact-formulaire form,
.form-postuler form {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
}
#contact #content-contact form .left-right-contact {
  text-align: left;
}
#contact #content-contact form .left-right-contact::after {
  content: "";
  clear: both;
  display: block;
}
.wpcf7-form .w-50:nth-child(2n+2) {
  padding: 0 15px 0 0;
}
.wpcf7-form .w-50:nth-child(2n+1) {
  padding: 0 0px 0 15px;
}
.wpcf7-form .wpcf7-form-control-wrap,
.wpcf7-form .w-100 label {
  width: 100%;
  position: relative;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: inline-block;
}
.wpcf7-form input, 
.wpcf7-form textarea {
  width: 100%;
  border: 2px solid var(--col-orange);
  padding: 20px;
  border-radius: 30px;
  line-height: 0.9rem;
  margin-bottom: 25px;
  resize: none;
  font-family: "ClashDisplay-Medium", sans-serif;
  transition: all 0.2s ease-in;
}
.wpcf7-form label span.wpcf7-not-valid-tip {
  color: #ff3434;
  font-style: italic;
}
.wpcf7-list-item {
  margin: 0 0 0px 0!important;
}
.wpcf7-form .acceptation {
  width: 40%;
}
.wpcf7-form input[type=checkbox] {
  height:20px;
  width:20px;
  position: absolute;
  left: 0px;
  opacity: 0;
  cursor:pointer;
}
.wpcf7-form input[type="checkbox"] + span::before {
  content: "";
  display: inline-block;
  vertical-align: top;
  width:20px;
  height:20px;
  box-sizing: border-box;
  border-radius: 5px;
  border: 2px solid var(--col-noir);
  margin-top:3px;
  margin-right: 6px;
  cursor:pointer;
}
.wpcf7-form input[type="checkbox"]:checked + span::before {
  font-family: "FontAwesome";
  content:"\f00c";
  line-height: 18px;
  font-size: 10px;
  text-align: center;
  color:#fff;
  background-color:var(--col-noir);
}
.wpcf7-form .wpcf7-acceptance label {
  margin-bottom: 0px!important;
  font-size: 16px;
  line-height: 160%;
}
.wpcf7-form .wpcf7-acceptance label span {
  text-transform: none!important;
  letter-spacing: normal!important;
  font-weight: 400!important;
}
.wpcf7-form .infos {
  font-size: 12px;
  line-height: 1.2em;
  margin-bottom: 20px;
  display: block;
}
.wpcf7-form #captcha-contact p {
  margin: 0;
}
.wpcf7-form .container-submit {
  width: 60%;
  display: flex;
  flex-wrap: wrap;
}
.wpcf7-form .button-submit {
  position: relative;
  margin: 0px 0 0 auto;
  float: left;
  text-align: right;
}
.wpcf7-form .button-submit::after {
  content: "";
  position: absolute;
  top: 34px;
  right: 50px;
  width: 16px;
  height: 16px;
  border-top: solid 3px var(--col-blanc);
  border-right: solid 3px var(--col-blanc);
  clip-path: polygon(0 0, 0% 10%, 85% 10%, 0% 90%, 10% 100%, 90% 20%, 90% 100%, 100% 100%, 100% 0);
  background-color: var(--col-blanc);
  margin-left: 15px;
  transition: all .35s ease-in;
}
.wpcf7-form .button-submit:hover::after {
  background-color: var(--col-blanc);
  border-top: solid 3px var(--col-blanc);
  border-right: solid 3px var(--col-blanc);
  animation: hoverArrow 2s infinite;
}
.wpcf7-form .button-submit input[type="submit"] {
  position:relative;
  text-align:center;
  cursor:pointer;
  background-color: var(--col-orange);
  color: var(--col-blanc);
  text-align: center;
  cursor: pointer;
  padding: 0px 80px 0px 60px;
  border-radius: 50px;
  letter-spacing: 0.01em;
  width: auto;
  text-decoration: none;
  font-size: 20px;
  font-family: "ClashDisplay-Medium",sans-serif;
  font-stretch: normal;
  font-style: normal;
  line-height: 80px;
  height: 80px;
  text-transform: uppercase;
  transition: all .45s ease-in;
  opacity: 1;
}
.wpcf7-form .button-submit input[type="submit"]:hover {
  background-color: var(--col-orange);
  color: var(--col-blanc);
}
.wpcf7-form .button-submit input[type="submit"]:disabled {
  opacity: 0.25;
  cursor: not-allowed;
}
.wpcf7-form .button-submit span.ajax-loader,
.wpcf7-form .button-submit span.wpcf7-spinner{
  display: block;
}
/*
.wpcf7-form .button-submit span:not(.ajax-loader)::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 3px;
  background:linear-gradient(43.35deg, #C94450 18.51%, #E7B036 76.14%, #F8DD37 100%);
  transition: all 0.2s linear;
}
.wpcf7-form .button-submit span:not(.ajax-loader):hover::before {
  width:100%;
  transform: translateY(4px)
}
*/
.wpcf7 form.invalid .wpcf7-response-output, 
.wpcf7 form.unaccepted .wpcf7-response-output {
  border:none!important;
}
.wpcf7-not-valid-tip,
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  color:#ff1a1a!important;
  font-size: 14px !important;
  line-height: 100%;
}
.wpcf7 form.sent .wpcf7-response-output {
  border:none!important;
  color:rgba(var(--rgb-noir), 1);
}
.wpcf7 .wpcf7-response-output {
  margin:0!important;
}
.wpcf7 i.recaptcha {
  width: 56px;
  height: 56px;
  background-image: url(../img/main/recaptcha.jpg);
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: top;
}
.page-contact .contact-triangle {
  content: "";
  position: absolute;
  background-color: var(--col-orange);
  clip-path: polygon(0 0, 100% 100%, 0 100%);
  width: 26vw;
  height: 30vw;
  left: 0;
  bottom: 0px;
}

.page-standard h2 {
  margin-bottom: 40px;
  margin-top: 70px;
  font-family: "ClashDisplay-Semibold", sans-serif;
}
.page-standard h3 {
  margin-top: 40px;
  margin-bottom: 20px;
  font-family: "ClashDisplay-Medium", sans-serif;
}
/*** Footer ***/
footer {
  margin-top: -1px;
  padding: var(--main-padding) 0 calc(var(--main-padding) / 2);
  background-color: var(--col-noir);
  color: var(--col-blanc);
  position: relative;
}
footer a {
  text-decoration: none!important;
  color: var(--col-blanc);
}
footer .container-un-projet {
  display: flex;
  text-align:left;
  position: relative;
}
footer .container-un-projet .bloc-un-projet .titre {
  text-transform: uppercase;
  font-family: "ClashDisplay-Medium", sans-serif;
  font-size: 40px;
  display: block;
  margin-bottom: 30px;
  color: var(--col-blanc);
}
footer .container-un-projet .bloc-un-projet .texte {
  color: var(--col-orange);
  font-family: "ClashGotesk-Regular", sans-serif;
  font-size: 100px;
  line-height: 0.9em;
}
footer .texte strong {
  font-family: "ClashGotesk-SemiBold", sans-serif;
}
footer .texte i {
  font-style: italic;
}
footer .container-un-projet .bloc-un-projet .texte p::after {
  content:"";
  display: inline-block;
  width: 60px;
  height: 60px;
/*
  border-top: solid 3px var(--col-orange);
  border-right: solid 3px var(--col-orange);
*/
  clip-path: polygon(0 0, 0% 5%, 92.5% 5%, 0% 96%, 4% 100%, 95% 10%, 95% 100%, 100% 100%, 100% 0);
  background-color: var(--col-orange);
  margin-left: 60px;
}
footer .container-un-projet .bloc-un-projet .texte:hover p::after {
  animation: hoverArrow 2s infinite;
}
footer .footer-triangle {
  content: "";
  position: absolute;
  background-color: var(--col-blanc);
  clip-path: polygon(100% 0, 0 0, 100% 100%);
  width: 15vw;
  height: 18vw;
  max-height: 360px;
  max-width: 300px;
  right: 15px;
  top: calc(0px - var(--main-padding) - 1px);  
}
footer .column-1 {
  padding-left: var(--marge-left);
  padding-top: 80px;
}
footer .sitename {
  font-size: 0px;
}
footer .logo-footer {
  text-align: left;
}
footer .logo-footer img {
  width: 170px;
}
footer .footer-contacts {
  text-align: left;
  font-size: 18px;
  font-family: "ClashDisplay-Regular";
  margin-top: 40px;  
}
footer .footer-contacts span,
footer .footer-contacts mark {
  color: var(--col-orange);
  margin: 0 10px;
  padding: 0;
  background: none;
}
footer .reseaux-sociaux {
  padding-top: 20px;
  padding-left: var(--marge-left);
}
footer .reseaux-sociaux a,
.menu-responsive .reseaux-sociaux a {
  border-radius: 100px;
  background-color: var(--col-orange);
  width: 50px;
  height: 50px;
  font-size: 20px;
  line-height: 30px;
  text-align: center;
  display: inline-block;
  padding: 10px;
  margin: 5px 10px 5px 0;  
  color: var(--col-noir)!important;
}
.menu-responsive .reseaux-sociaux a {
  color: var(--col-orange)!important;
  background-color: var(--col-noir);
}
footer .reseaux-sociaux a:hover {
  background-color: var(--col-blanc);
  color: var(--col-noir)!important;
}
.menu-responsive .reseaux-sociaux a:hover {
  background-color: var(--col-blanc);
  color: var(--col-orange)!important;
}
footer .column-liens {
  display: flex;
  padding-top: 100px;
  justify-content: flex-end;
}
footer .bloc-francenum {
  display: flex;
  justify-content: flex-end;
}
footer .bloc-francenum .bloc-francenum-logo {
  height: 130px;
  display: flex;
  flex-direction: column;
  justify-content: start;  
}
footer .bloc-francenum .bloc-francenum-logo figure {
  margin: 0;
  padding-right: 30px;
  border-right: solid 1px var(--col-orange);
}
footer .bloc-rse {
  display: flex;
  justify-content: flex-end;
  padding-left: 30px;
}
footer .bloc-rse-logo {
  max-height: 130px;
}
footer .bloc-rse-logo svg {
  animation-name: spin;
  animation-timing-function: ease-in-out;
  animation-iteration-count: 1;
  animation-duration: 3s;
  -webkit-animation-name: spin;
  -webkit-animation-timing-function: ease-in-out;
  -webkit-animation-iteration-count: 1;
  -webkit-animation-duration: 3s;
}
footer .bloc-francenum-logo figure,
footer .bloc-rse-logo figure {
  margin: 0;
}
footer .bloc-francenum-logo img,
footer .bloc-rse-logo img {
  height: 130px;
  width: auto;
}
footer .bloc-rse-description {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 30px;
}
footer .bloc-rse-description .surtitre {
  font-family: "ClashDisplay-Regular",sans-serif;
  font-size: 18px;
  text-transform: uppercase;
  text-align: left;
  color: var(--col-orange);
}
footer .bloc-rse-description .texte {
  margin-top: 20px;
  font-size: 38px;
  line-height: 1em;
  text-align: left;
}

footer .menu-footer ul {
  list-style: none;
  padding: 0;
  margin-top: 40px;
  display: flex;
  justify-content: center;
}
footer .menu-footer li {
  font-size: 20px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 120%;
  letter-spacing: 0em;
  color: var(--col-blanc);
  margin-bottom: 20px;
  text-transform: uppercase;
  padding: 0 30px!important;
  position: relative;
}
footer .menu-footer li::after {
  content: "|";
  position: absolute;
  right: 0;
  width: 2px;
  color: var(--col-orange);
}
footer .menu-footer li:last-child::after {
  display: none;
}
footer a {
  color: rgba(var(--rgb-blanc),1)!important;
}
footer a:hover {
  color: rgba(var(--rgb-orange),1)!important;
}
footer .copyrights-container {
  margin-top:40px;
  font-family: "ClashDisplay-Regular",sans-serif;
  font-size:13px;
  text-align:right;
  color:var(--col-blanc)
}
footer .copyrights-container .access-footer,
footer .copyrights-container .menu-menu-footer-unik-studio-container,
footer .copyrights-container ul,
footer .copyrights-container li {
  display:inline;
  padding:0;
  margin:0
}
footer .copyrights-container .menu-divider {
  padding:0 10px!important;
  color:var(--col-orange)
}
footer .copyrights-container .menu-divider:last-child {
  display:none
}
/*** Big screens ***/
@media (min-width:1500px) {
  .container,
  .site-size {
    max-width:var(--width-container);
  }
}
@media (min-width:2000px) {
/*****
  :root {
    --width-container: 1900px;
  }
  #lottie-lettre-u {
    top: -300px;
    width: 120%;
    left: -10%;
  }
  .section-expertises {
    padding-bottom: calc(var(--main-padding) * 3);
  }
  .liste-realisations .vignette {
    height: 600px;
  }
  .homepage .liste-realisations .vignette:nth-child(2n+2) {
    margin-top: -40%;
  }
  .section-references #slider-temoignages {
    height: 800px;
    width: 800px;
  }
  .liste-competences .vignette figure {
    height: 600px;
  }
  #content-work .liste-paragraphes .bloc-photo.col-sm-6 .cadre-photo {
    height: 640px;
  }
  .page-demarche-rse .section-intro .texte,
  .page-demarche-rse .section-menu-interne .liste-items-menu {
    width: 80%;
  }
****/  
/****
  nav.navbar .container {
    width: 80%;
    max-width: 1900px;
  }
****/
  html.with-triangle header::after {  
    width: 35vw;
    height: 30vw;
  }
}
@media (min-width: 2400px) {
  html.with-triangle header::after {  
    width: 40vw;
    height: 30vw;
  }
}

/*** Responsive à l'envers **/

@media only screen and (max-width:1499px) {
  /*** Vars ***/
  :root {
    --size-h1: 50px;
    --size-h2: 32px;
    --size-h3: 26px;
    --size-h4: 22px;
    --size-txt:  18px;
    --size-txt2: 14px;
    --navbar-height: 110px;
    --sticky-height: 100px;
    --width-container: 1140px;
    --main-padding:  120px;
    --marge-left:  40px;
    --slider-home-height:  100dvh;
    --slider-page-height:  100dvh;
  }
  @-webkit-keyframes expandLinkFromCenter {
     0% { height:100%; opacity:0; width:100px; margin-top:0; margin-left:0; left:calc(50% - 50px);}
     25% { opacity:0;width:100px; margin-top:0; margin-left:0; left:calc(50% - 50px);}
     100% { height:calc(100% + 2px); opacity:1; width:calc(100% + 100px); margin-top:0em; margin-left:-1.6875em; left:calc(1.6875em - 50px);}
  }
  @keyframes expandLinkFromCenter {
     0% { height:100%; opacity:0; width:100px; margin-top:0; margin-left:0; left:calc(50% - 50px);}
     25% { opacity:0;width:100px; margin-top:0; margin-left:0; left:calc(50% - 50px);}
     100% { height:calc(100% + 2px); opacity:1; width:calc(100% + 100px); margin-top:0em; margin-left:-1.6875em; left:calc(1.6875em - 50px);}
  }
  a.button, 
  .multi-select-button, 
  .formulaire .chosen-container, 
  .formulaire select.chosen, .formulaire .submit,
  .wpcf7-form .button-submit input[type="submit"] {
    height: 88px;
    line-height: 88px;
    font-size: 18px;
    padding: 0 55px;
  }
  .wpcf7-form .button-submit input[type="submit"] {
    padding-right: 70px;
  }
  a.small-button {
    font-size: 12px;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
  }
  .navbar .logo {
    max-height:62px;
    max-width: 160px;
  }
  .banner-content h1 {
    font-size: 22px;
  }
  .section-intro h2,
  .page .section-titre-h1 h1 {
    font-size: 140px;
  }
  .section-intro .cadre-photo,
  .section-sections .cadre-photo,
  .page-studio .cadre-photo.illustration,
  .page-contact .cadre-photo.illustration {
    height: 500px;
    width: 500px;
  }
  .section-sections .cadre-photo {
    top: 0;
  }
  .section-expertises .liste-expertises {
    width: 98%;
  }
  .section-expertises .liste-expertises a,
  .menu-responsive-container li a,
  .section-menu-interne .liste-items-menu a {
    font-size: 29px;
  }
  .section-expertises .liste-expertises a,
  .section-menu-interne .liste-items-menu a {
    height: 110px;
  }
  .section-expertises .liste-expertises a .icone,
  .menu-responsive-container li a .icone,
  .section-menu-interne .liste-items-menu a .icone {
    width: 70px;
  }
  .section-expertises .liste-expertises a span,
  .menu-responsive-container li a span,
  .section-menu-interne .liste-items-menu a span {
    padding-left: 20px;
    width: calc(100% - 70px);
  }
  .liste-expertises a::before,
  .menu-responsive-container li a::before,
  .section-menu-interne .liste-items-menu a::before {
    left: -50px;
    width: calc(100% + 100px);
  }
  .section-expertises .illustration-graphique {
    padding-left: 40px;
  }
  .homepage .liste-realisations {
    width: 68%;
    margin-left: 32%;
  }  
  .liste-realisations .vignette {
    height: 480px;
  }
  .content-vignette .container-content-vignette {
    padding: 30px;
  }
  .liste-realisations .content-vignette .with-arrow {
    height: 50px;
    width: 50px;
  }
  .content-vignette .client {
    font-size: 28px;
  }
  .content-vignette h3 {
    font-size: 32px;
  }
  .homepage .section-realisations h2,
  .section-references h2,
  footer .container-un-projet .bloc-un-projet .texte {
    font-size: 80px;
  }
  .liste-realisations {
    margin-top: 40px;
  }
  .section-references .surtitre {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .section-references #slider-references {
    margin-top: 60px;
    width: 90%;
  }
  .section-references .slider-references-navigation {
    width: 90%;
  }
  .section-references #slider-temoignages {
    width: 540px;
    height: 540px;
    padding: 60px;
  }
  .section-categories a.big-texte {
    font-size: 80px;
  }
  .section-categories a.big-texte.with-arrow::after {
    width: 50px;
    height: 50px;
  }
  #header-work-content h1,
  .section-autres-projets h2 {
    font-size: 80px;
  }
  .section-autres-projets .vignette figure {
    height: 360px;
  }
  .section-autres-projets .content-vignette .with-arrow {
    width: 50px;
    height: 50px;
  }
  .section-autres-projets .content-vignette .client,
  .section-autres-projets .content-vignette h3 {
    font-size: 26px;
  }
  #details-work h2, 
  #details-work h3,
  .liste-competences .vignette h2,
  .page-contact h2, 
  .page-demarche-rse .section-intro h2,
  .section-sections .liste-paragraphes h3,
  .page-studio .studio-intro h2,
  footer .container-un-projet .bloc-un-projet .titre {
    font-size: 36px;
  }
  .page-portfolio .section-realisations, 
  .page-expertises .section-competences, 
  .page-studio .studio-equipe,
  .contact-formulaire {
    padding-bottom: calc( var(--main-padding) + 200px);
  }
  .liste-competences .vignette figure {
    height: 440px;
  }
  #header-work-content {
    max-width: 45%!important;
    bottom: 100px;
  }
  #content-work .liste-paragraphes .bloc-photo.col-md-6 .cadre-photo {
    height: 480px;
  }
  .page-demarche-rse .section-intro .cadre-photo {
    height: 400px;
    width: 400px;
  }
  .section-sections h2,
  .page-studio h2 {
    font-size: 74px;
  }
  .page-studio .liste-chiffres .bloc-chiffre .number {
    font-size: 80px;
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe .number {
    font-size: 180px;
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe {
    margin: 0 60px 120px;
    width: calc(50% - 120px);
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe:nth-child(2n+1) {
    margin-left: 0;
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe:nth-child(2n+2) {
    margin-right: 0;
  }
  .studio-equipe .person {
    height: 370px;
  }
  .studio-equipe .person figure svg {
    max-width: 90%;
    max-height: 90%;
  }
  .contact-formulaire .formulaire {
    padding: 0;
  }
  .wpcf7-form input, .wpcf7-form textarea {
    font-size: 18px;
  }
  .wpcf7-form .acceptation {
    width: 35%;
  }
  .wpcf7-form .container-submit {
    width: 65%;
  }
  footer .footer-triangle {
    width: 17vw;
    height: 20vw;
    max-height: 300px;
    max-width: 260px;
  }
  footer .container-un-projet .bloc-un-projet .texte p::after {
    width: 50px;
    height: 50px;
  }
  footer .bloc-francenum-logo img, 
  footer .bloc-rse-logo img {
    height: 120px;
  }
  footer .bloc-rse-logo {
    max-width: 160px;
  }
  footer .bloc-rse-description {
    padding-left: 20px;
  }
  footer .bloc-rse-description .surtitre {
    font-size: 15px;
  }
  footer .bloc-rse-description .texte {
    font-size: 36px;
  }
}  

@media only screen and (max-width:1199px) {
  /*** Vars ***/
  :root {
    --size-h1: 44px;
    --size-h2: 30px;
    --size-h3: 24px;
    --size-h4: 20px;
    --size-txt:  18px;
    --size-txt2: 14px;
    --navbar-height: 110px;
    --sticky-height: 100px;
    --width-container: 960px;
    --main-padding:  100px;
    --marge-left:  0px;
    --slider-home-height:  100dvh;
    --slider-page-height:  100dvh;
    --margin-block-image: 150px;
  }
  @-webkit-keyframes expandLinkFromCenter {
     0% { height:100%; opacity:0; width:0; margin-top:0; margin-left:0; left:calc(50%);}
     25% { opacity:0;width:0; margin-top:0; margin-left:0; left:calc(50%);}
     100% { height:calc(100% + 2px); opacity:1; width:calc(100% + 90px); margin-top:0em; margin-left:-1.6875em; left:calc(1.6875em - 45px);}
  }
  @keyframes expandLinkFromCenter {
     0% { height:100%; opacity:0; width:0; margin-top:0; margin-left:0; left:calc(50%);}
     25% { opacity:0;width:0; margin-top:0; margin-left:0; left:calc(50%);}
     100% { height:calc(100% + 2px); opacity:1; width:calc(100% + 90px); margin-top:0em; margin-left:-1.6875em; left:calc(1.6875em - 45px);}
  }
  a.button, 
  .multi-select-button, 
  .formulaire .chosen-container, 
  .formulaire select.chosen, .formulaire .submit,
  .wpcf7-form .button-submit input[type="submit"] {
    height: 78px;
    line-height: 78px;
    font-size: 16px;
    padding: 0 45px;
  }
  .wpcf7-form .button-submit input[type="submit"] {
    padding-right: 60px;
  }
  a.small-button {
    font-size: 10px;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
  }
  .navbar .logo {
    max-height:62px;
    max-width: 140px;
  }
  .banner-content h1 {
    font-size: 20px;
  }
  .section-intro h2,
  .page .section-titre-h1 h1 {
    font-size: 100px;
  }
  .section-intro .container {
    padding-left: 15px;
  }
  .section-intro .cadre-photo,
  .section-sections .cadre-photo,
  .page-studio .cadre-photo.illustration,
  .page-contact .cadre-photo.illustration {
    height: 440px;
    width: 440px;
  }
  .section-expertises .liste-expertises {
    width: 100%;
  }
  .section-expertises .liste-expertises a,
  .menu-responsive-container li a,
  .section-menu-interne .liste-items-menu a {
    font-size: 24px;
  }
  .liste-expertises a .with-arrow::after,
  .menu-responsive-container li a .with-arrow::after,
  .section-menu-interne .liste-items-menu a .with-arrow::after {
    width: 20px;
    height: 20px;
  }
  .section-expertises .liste-expertises a,
  .section-menu-interne .liste-items-menu a {
    height: 100px;
  }
  .section-expertises .liste-expertises a .icone,
  .menu-responsive-container li a .icone,
  .section-menu-interne .liste-items-menu a .icone {
    width: 60px;
  }
  .section-menu-interne .liste-items-menu a .icone figure {
    width: 60px;
    height: 60px;
  }
  .section-expertises .liste-expertises a span,
  .menu-responsive-container li a span,
  .section-menu-interne .liste-items-menu a span {
    padding-left: 20px;
    width: calc(100% - 60px);
  }
  .liste-expertises a::before,
  .menu-responsive-container li a::before
  .section-menu-interne .liste-items-menu a::before {
    left: -45px;
    width: calc(100% + 90px);
  }
  .section-expertises .illustration-graphique {
    padding-left: 40px;
  }
  .liste-realisations .vignette {
    height: 400px;
  }
  .liste-realisations .content-vignette .with-arrow {
    height: 40px;
    width: 40px;
  }
  .content-vignette .client {
    font-size: 26px;
    margin-top: 30px;
  }
  .content-vignette h3 {
    font-size: 30px;
  }
  .homepage .section-realisations h2,
  .section-references h2,
  footer .container-un-projet .bloc-un-projet .texte {
    font-size: 70px;
    line-height: 1.1em;
  }
  .liste-realisations {
    margin-top: 40px;
  }
  .homepage .liste-realisations {
    width: 75%;
    margin-left: 25%;
  }
  .content-vignette .container-content-vignette {
    padding: 30px;
  }
  .section-references .surtitre {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .section-references #slider-references {
    margin-top: 40px;
    width: 100%;
  }
  .section-references #slider-references li div figure {
    margin: 10px 60px 10px 0;
  }
  .section-references .slider-references-navigation {
    width: 100%;
  }
  .section-references #slider-temoignages {
    width: 460px;
    height: 460px;
    padding: 30px 20px;
  }
  .section-references #slider-temoignages li {
    padding: 0 35px!important;
  }
  .section-references .slider-temoignages-navigation a.prev {
    left: 20px;
  }
  .section-references .slider-temoignages-navigation a.next {
    right: 20px;
  }
  .section-categories a.big-texte {
    font-size: 60px;
  }
  .section-categories a.big-texte.with-arrow::after {
    width: 40px;
    height: 40px;
  }
  #header-work-content h1,
  .section-autres-projets h2 {
    font-size: 60px;
  }
  #header-work-content .subtitle {
    font-size: 30px;
  } 
 .section-autres-projets .vignette figure {
    height: 300px;
  }
  .section-autres-projets .content-vignette .with-arrow {
    width: 40px;
    height: 40px;
    top: 20px;
  }
  .section-autres-projets .content-vignette .client,
  .section-autres-projets .content-vignette h3 {
    font-size: 20px;
  }
  body .section-autres-projets .content-vignette h3 {
    margin-bottom: 0px;
  }
  .section-autres-projets .content-vignette .container-content-vignette {
    padding: 20px 0;
  }
  #details-work h2, 
  #details-work h3,
  .liste-competences .vignette h2,
  .page-contact h2, 
  .page-demarche-rse .section-intro h2,
  .section-sections .liste-paragraphes h3,
  .page-studio .studio-intro h2,
  footer .container-un-projet .bloc-un-projet .titre {
    font-size: 32px;
  }
  .page-portfolio .section-realisations, 
  .page-expertises .section-competences, 
  .page-studio .studio-equipe,
  .contact-formulaire {
    padding-bottom: calc( var(--main-padding) + 160px);
  }
  .liste-competences .vignette figure {
    height: 380px;
  }
  #header-work-content {
    max-width: 55%!important;
    bottom: 60px;
  }
  #content-work .liste-paragraphes .col-md-6.order-md-0 {
    padding-right:40px;
  }
  #content-work .liste-paragraphes .col-md-6.order-md-1 {
    padding-left:40px;
  }
  #content-work .liste-paragraphes .bloc-photo.col-md-12 .cadre-photo {
    margin-bottom: 40px;
  }
  #content-work .liste-paragraphes .bloc-texte {
    padding:0 40px;
  }
  #content-work .liste-paragraphes .bloc-photo.col-md-6 .cadre-photo {
    height: 400px;
  }
  .page-demarche-rse .section-intro {
    padding-top: 0;
  }
  .page-demarche-rse .section-intro .cadre-photo {
    height: 360px;
    width: 360px;
    top: -360px;
  }
  .section-sections h2,
  .page-studio h2 {
    font-size: 64px;
  }
  .page-studio .liste-chiffres .bloc-chiffre .number {
    font-size: 70px;
  }
  .studio-projets .liste-paragraphes {
    padding-left: 60px;
  }  
  .studio-projets .liste-paragraphes .bloc-paragraphe {
    margin: 0 50px 100px;
    width: calc(50% - 100px);
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe:nth-child(2n+1) {
    margin-left: 0;
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe:nth-child(2n+2) {
    margin-right: 0;
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe .number {
    font-size: 160px;
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe .texte {
    padding-left: 60px;
  }
  .studio-equipe .person {
    height: 320px;
  }
  .studio-equipe .person figure svg {
    max-width: 80%;
    max-height: 80%;
  }
  .studio-equipe .person .call-to-actions .button {
    margin-bottom: 20px;
  }
  .wpcf7-form .acceptation {
    width: 35%;
  }
  .wpcf7-form .container-submit {
    width: 65%;
  }
  .pastille-contact {
    width: 130px;
    height: 130px;
  }
  footer .footer-triangle {
    width: 20vw;
    height: 25vw;
    max-height: 300px;
    max-width: 260px;
  }
  footer .container-un-projet .bloc-un-projet .texte p::after {
    width: 40px;
    height: 40px;
  }
  footer .column-liens {
    flex-direction: column;
  }
  footer .bloc-francenum {
    padding-top: 0;
    width: 100%;
    padding-left: 0px;
    justify-content: flex-start;
  }
  footer .bloc-francenum .bloc-francenum-logo {
    max-width: 120px;
  }
  footer .bloc-francenum .bloc-francenum-logo figure {
    padding: 0;
    border: none;
  }
  footer .bloc-rse {
    padding-left: 0;
    width: 100%;
    padding-top: 40px;
    justify-content: flex-start;    
  }
  footer .bloc-rse-logo {
    max-width: 140px;
  }
}
@media only screen and (max-width: 991px) {
  /*** Vars ***/
  :root {
    --size-h1: 40px;
    --size-h2: 28px;
    --size-h3: 22px;
    --size-h4: 18px;
    --size-txt:  16px;
    --size-txt2: 14px;
    --navbar-height: 110px;
    --sticky-height: 100px;
    --width-container: 720px;
    --main-padding:  80px;
    --marge-left:  0px;
    --slider-home-height:  100dvh;
    --slider-page-height:  100dvh;
    --margin-block-image: 120px;
  }
  @-webkit-keyframes expandLinkFromCenter {
     0% { height:100%; opacity:0; width:0; margin-top:0; margin-left:0; left:calc(50%);}
     25% { opacity:0;width:0; margin-top:0; margin-left:0; left:calc(50%);}
     100% { height:calc(100% + 2px); opacity:1; width:calc(100% + 60px); margin-top:0em; margin-left:-1.6875em; left:calc(1.6875em - 30px);}
  }
  @keyframes expandLinkFromCenter {
     0% { height:100%; opacity:0; width:0; margin-top:0; margin-left:0; left:calc(50%);}
     25% { opacity:0;width:0; margin-top:0; margin-left:0; left:calc(50%);}
     100% { height:calc(100% + 2px); opacity:1; width:calc(100% + 60px); margin-top:0em; margin-left:-1.6875em; left:calc(1.6875em - 30px);}
  }
  .menu-responsive-container li a::before,
  .liste-expertises a::before,
  .section-menu-interne .liste-items-menu a::before {
    border-radius: 0;
  }
  .menu-responsive-container li a:hover::before,
  .liste-expertises li a:hover::before,
  .section-menu-interne .liste-items-menu a:hover::before {
    animation: none;
    opacity: 0;
  }
  .menu-responsive-container li a:hover,
  .liste-expertises li a:hover,
  .section-menu-interne .liste-items-menu a:hover {
    color: var(--col-noir);
  }
  .liste-expertises a::before, 
  .menu-responsive-container li a::before, 
  .section-menu-interne .liste-items-menu a::before {
    left: 0px;
    width: 100%;
  }
  a.button, 
  .multi-select-button, 
  .formulaire .chosen-container, 
  .formulaire select.chosen, .formulaire .submit,
  .wpcf7-form .button-submit input[type="submit"] {
    height: 70px;
    line-height: 70px;
    font-size: 15px;
    padding: 0 40px;
  }
  .wpcf7-form .button-submit input[type="submit"] {
    padding-right: 55px;
  }
  .wpcf7-form .button-submit::after {
    top: 28px;
    right: 34px;
  }
  a.small-button {
    font-size: 10px;
    height: 26px;
    line-height: 26px;
    padding: 0 10px;
  }
  .navbar .logo {
    max-height:56px;
    max-width: 120px;
  }
  .menu-responsive::before {
    width: 200dvw;
    height: 200dvw;
  }  
  .menu-responsive .menu-content .menu-left {
    width: 40%;
  }
  .menu-responsive .menu-content .menu-right {
    width: 60%;
  }
  html.with-triangle header::after {
    width: 35vw;
    height: 35vw;
  }
  .menu-burger {
    padding-right: 25px;
  }
  .navbar.sticky .menu-burger {
    padding: 10px 25px;
  }  
  .banner-content h1 {
    font-size: 18px;
  }
  .section-intro h2,
  .page .section-titre-h1 h1 {
    font-size: 80px;
  }
  .page .section-titre-h1 h1 {
    margin-bottom: 60px;
  }
  .section-categories {
    margin-top: 60px;
  }
  .section-intro .cadre-photo,
  .section-sections .cadre-photo,
  .page-studio .cadre-photo.illustration,
  .page-contact .cadre-photo.illustration {
    height: 400px;
    width: 400px;
  }
  .section-intro .colonne-texte {
    padding-top: 20px;
  }
  #lottie-lettre-u {
    position: relative;
  }
  .section-expertises .liste-expertises {
    margin-bottom: var(--main-padding);
  }
  .liste-expertises a::before,
  .menu-responsive-container li a::before,
  .section-menu-interne .liste-items-menu a::before {
    left: -30px;
    width: calc(100% + 60px);
  }
  .section-expertises .liste-expertises a,
  .menu-responsive-container li a,
  .section-menu-interne .liste-items-menu a {
    font-size: 22px;
  }
  .liste-expertises a .with-arrow::after,
  .menu-responsive-container li a .with-arrow::after,
  .section-menu-interne .liste-items-menu a .with-arrow::after {
    width: 18px;
    height: 18px;
  }
  .section-expertises .liste-expertises a,
  .section-menu-interne .liste-items-menu a,
  .menu-responsive-container li a {
    height: 80px;
  }
  .section-expertises .liste-expertises a .icone,
  .menu-responsive-container li a .icone,
  .section-menu-interne .liste-items-menu a .icone {
    width: 56px;
  }
  .section-menu-interne .liste-items-menu a .icone figure {
    width: 56px;
    height: 56px;
  }
  .section-expertises .liste-expertises a span,
  .menu-responsive-container li a span,
  .section-menu-interne .liste-items-menu a span {
    padding-left: 15px;
    width: calc(100% - 56px);
  }
  .section-expertises .illustration-graphique {
    padding-left: 0px;
    text-align: center;
  }
  .page-home .section-realisations .realisations-triangle {
    width: 22vw;
    height: 26vw;    
  }
  .liste-realisations .vignette {
    height: 320px;
  }
  .liste-realisations .content-vignette .with-arrow {
    height: 30px;
    width: 30px;
  }
  .content-vignette .client {
    font-size: 22px;
    margin-top: 20px;
  }
  .content-vignette h3 {
    font-size: 26px;
  }
  .homepage .section-realisations h2,
  .section-references h2,
  footer .container-un-projet .bloc-un-projet .texte {
    font-size: 60px;
    line-height: 1.1em;
  }
  .liste-realisations {
    margin-top: 30px;
  }
  .homepage .liste-realisations {
    width: 85%;
    margin-left: 15%;
  }
  .content-vignette .container-content-vignette {
    padding: 20px;
  }
  .section-references .surtitre {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .section-references #slider-references {
    margin-top: 30px;
    width: calc(100% + 90px);
  }
  .section-references #slider-references li div figure {
    margin: 10px 50px 10px 0;
  }
  .section-references .slider-references-navigation {
    width: calc(100% + 90px);
    padding-top: 0;
  }
  .section-references #slider-temoignages {
    width: 500px;
    height: 500px;
    padding: 40px 40px;
    margin-top: 40px;
    margin: var(--main-padding) auto;
  }
  .section-references #slider-temoignages li {
    padding: 0 30px!important;
  }
  .section-references .slider-temoignages-navigation a.prev {
    left: 20px;
  }
  .section-references .slider-temoignages-navigation a.next {
    right: 20px;
  }
  .section-categories a.big-texte {
    font-size: 50px;
  }
  .section-categories a.big-texte.with-arrow::after {
    width: 35px;
    height: 35px;
  }
  #header-work-content h1,
  .section-autres-projets h2 {
    font-size: 54px;
  }
  .section-autres-projets h2 {
    width: calc(100% - 100px);
  }
  .section-autres-projets .slider-autres-projets-navigation a {
    top: calc(50% - 30px);
    position:absolute;
    display:block;
    width: 30px;
    height: 30px;
    cursor:pointer;
    transition:all 450ms ease;
    text-align:center
  }
  .section-autres-projets .slider-autres-projets-navigation a::before {
    content: "";
    display: block;
    width: 30px;
    height: 30px;
    clip-path: polygon(0 0, 0% 5%, 92.5% 5%, 0% 96%, 4% 100%, 95% 10%, 95% 100%, 100% 100%, 100% 0);
    background-color: var(--col-noir);
  }
  .section-autres-projets .slider-autres-projets-navigation a:hover::before {
   background-color: var(--col-orange); 
  }
  .section-autres-projets .slider-autres-projets-navigation a.prev {
    right: 100px;
  }
  .section-autres-projets .slider-autres-projets-navigation a.next {
    right: 40px;
  }
  .section-autres-projets .slider-autres-projets-navigation a.prev::before {
    transform: rotate(-135deg);
  }
  .section-autres-projets .slider-autres-projets-navigation a.next::before {
    transform: rotate(45deg);
  }  
  .section-autres-projets .slider-autres-projets .vignette {
/*    width: 540px!important;*/
    padding: 0 15px;
  }
  .section-autres-projets .vignette figure {
    height: 500px;
  }
  .section-autres-projets .content-vignette .with-arrow {
    width: 56px;
    height: 56px;
    top: 40px;
  }
  .section-autres-projets .content-vignette .client,
  .section-autres-projets .content-vignette h3 {
    font-size: 30px;
  }
  body .section-autres-projets .content-vignette h3 {
    margin-bottom: 20px;
  }
  .section-autres-projets .content-vignette .container-content-vignette {
    padding: 40px 0;
  }
  #details-work h2, 
  #details-work h3,
  .liste-competences .vignette h2,
  .page-contact h2, 
  .page-demarche-rse .section-intro h2,
  .section-sections .liste-paragraphes h3,
  .page-studio .studio-intro h2,
  footer .container-un-projet .bloc-un-projet .titre {
    font-size: 30px;
  }
  .page-portfolio .section-realisations, 
  .page-expertises .section-competences, 
  .page-studio .studio-equipe,
  .contact-formulaire {
    padding-bottom: calc( var(--main-padding) + 120px);
  }
  .page-expertises .liste-competences {
    width: 90%;
    margin-left: 10%;
  }
  .liste-competences .vignette figure {
    height: 320px;
  }
  #header-work-content {
    max-width: 55%!important;
    bottom: 60px;
  }
  #content-work .liste-paragraphes .col-md-6.order-md-0 {
    padding-right:30px;
  }
  #content-work .liste-paragraphes .col-md-6.order-md-1 {
    padding-left:30px;
  }
  #content-work .liste-paragraphes .bloc-photo.col-md-12 .cadre-photo {
    margin-bottom: 30px;
  }
  #content-work .liste-paragraphes .bloc-texte {
    padding:0 30px;
  }
  #content-work .liste-paragraphes .bloc-photo.col-md-6 .cadre-photo {
    height: 360px;
  }
  .page-demarche-rse .section-intro {
    padding-top: 0;
  }
  .page-demarche-rse .section-intro .cadre-photo {
    height: 320px;
    width: 320px;
    top: -320px;
  }
  .section-sections h2,
  .page-studio h2 {
    font-size: 56px;
  }
  .page-studio h2 {
    z-index: 1;
  }
  .page-studio .cadre-photo.illustration,
  .page-contact .cadre-photo.illustration {
    margin: -150px 0 0;
  }
  .page-contact .cadre-photo.illustration {
    position: relative;
    top: 0;
  }
  .section-sections .cadre-photo.with-parallax {
    margin-top: -100px;
  }
  .page-studio .liste-chiffres {
    width: 100%;
    margin-left: 0%;
    margin-top: 0px;
  }  
  .page-studio .liste-chiffres .bloc-chiffre .number {
    font-size: 60px;
  }
  .page-studio .liste-chiffres .bloc-chiffre {
    margin-bottom: 60px;
  }
  .studio-projets .liste-paragraphes {
    padding-left: 0px;
  }  
  .studio-projets .liste-paragraphes .bloc-paragraphe {
    margin: 0 40px 80px;
    width: calc(50% - 80px);
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe:nth-child(2n+1) {
    margin-left: 0;
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe:nth-child(2n+2) {
    margin-right: 0;
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe .number {
    font-size: 130px;
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe .texte {
    padding-left: 50px;
  }
  .studio-equipe .person {
    height: 320px;
    width: calc(50% - 30px);
    margin: 0 15px 30px!important;
  }
  .studio-equipe .person:nth-child(2n+1) {
    margin-left: 0px;
  }
  .studio-equipe .person:nth-child(2n+2) {
    margin-right: 0px;
  }  
  .studio-equipe .person figure svg {
    max-width: 80%;
    max-height: 80%;
  }
  .studio-equipe .person .call-to-actions .button {
    margin-bottom: 20px;
  }
  .wpcf7-form .acceptation,
  .wpcf7-form .container-submit {
    width: 100%;
  }
  .pastille-contact {
    width: 130px;
    height: 130px;
  }
  footer .footer-triangle {
    width: 20vw;
    height: 25vw;
    max-height: 300px;
    max-width: 260px;
  }
  footer .container-un-projet .bloc-un-projet .texte p::after {
    width: 40px;
    height: 40px;
  }
  footer .bloc-rse {
    padding-top: 20px;
    justify-content: flex-start;
  }
  footer .column-1 {
    padding-top: 40px;
  }
  footer .copyrights-container {
    text-align: left;
  }
  footer .column-liens {
    flex-direction: row;
    justify-content: flex-start;
    padding-top: 40px;
  }
  footer .bloc-francenum {
    padding-left: 0;
    width: auto;
  }
  footer .bloc-francenum .bloc-francenum-logo {
    max-width: none;
  }
  footer .bloc-francenum .bloc-francenum-logo figure {
    padding-right: 30px;
    border-right: solid 1px var(--col-orange);
  }
  footer .bloc-rse {
    width: auto;
    padding-top: 0;
    padding-left: 30px;
  }
}
@media only screen and (max-width: 767px) {
  /*** Vars ***/
  :root {
    --size-h1: 34px;
    --size-h2: 26px;
    --size-h3: 20px;
    --size-h4: 18px;
    --size-txt:  16px;
    --size-txt2: 14px;
    --navbar-height: 110px;
    --sticky-height: 100px;
    --width-container: 540px;
    --main-padding:  80px;
    --marge-left:  0px;
    --slider-home-height:  100dvh;
    --slider-page-height:  100dvh;
    --margin-block-image: 100px;
  }
  a.button, 
  .multi-select-button, 
  .formulaire .chosen-container, 
  .formulaire select.chosen, .formulaire .submit,
  .wpcf7-form .button-submit input[type="submit"] {
    height: 70px;
    line-height: 70px;
    font-size: 15px;
    padding: 0 40px;
  }
  .wpcf7-form .button-submit input[type="submit"] {
    padding-right: 55px;
  }
  .wpcf7-form .button-submit::after {
    top: 28px;
    right: 34px;
  }
  a.small-button {
    font-size: 10px;
    height: 26px;
    line-height: 28px;
    padding: 0 10px;
  }
  .navbar .logo {
    max-height:56px;
    max-width: 120px;
  }
  .menu-responsive {
    right: -300dvw;
  }
  .menu-responsive::before {
    width: 300dvw;
    height: 300dvw;
  }  
  .menu-responsive .menu-content {
    flex-wrap: wrap;
  }
  .menu-responsive .menu-content .menu-left {
    width: 100%;
    order: 2;
    padding-top: 40px;
    text-align: left;
  }
  .menu-responsive .menu-content .menu-right {
    width: 100%;
    order: 1;
  }
  html.with-triangle header::after {
    width: 40vw;
    height: 40vw;
  }
  .menu-burger {
    padding-right: 25px;
  }
  .navbar.sticky .menu-burger {
    padding: 10px 25px;
  }  
  .banner-content h1 {
    font-size: 18px;
    line-height: 2em;
    width: 95%;
    margin: 0 auto;
  }
  .section-intro h2,
  .page .section-titre-h1 h1 {
    font-size: 60px;
  }
  .page .section-titre-h1 h1 {
    margin-bottom: 40px;
  }
  .section-categories {
    margin-top: 40px;
  }
  .section-intro .cadre-photo,
  .section-sections .cadre-photo,
  .page-studio .cadre-photo.illustration,
  .page-contact .cadre-photo.illustration {
    height: 360px;
    width: 360px;
  }
  .section-intro .colonne-texte {
    padding-top: 20px;
  }
  .section-expertises {
    padding-bottom: calc(var(--main-padding) * 2);
  }
  .section-expertises .liste-expertises {
    margin-bottom: var(--main-padding);
  }
  .section-expertises .illustration-graphique {
    padding-left: 0px;
    text-align: center;
  }
  .page-home .section-realisations .realisations-triangle {
    width: 22vw;
    height: 26vw;    
  }
  .liste-realisations .vignette {
    height: 440px;
  }
  .homepage .liste-realisations .vignette {
    height: 280px;
    margin: 0 20px 40px;
    width: calc(50% - (40px / 2));
  }
  .homepage .liste-realisations .vignette:nth-child(2n+1) {
    margin-left: 0;
  }
  .homepage .liste-realisations .vignette:nth-child(2n+2) {
    margin-right: 0;
  }
  .liste-realisations .content-vignette .with-arrow {
    height: 20px;
    width: 20px;
  }
  .content-vignette .client {
    font-size: 18px;
    margin-top: 10px;
  }
  .content-vignette h3 {
    font-size: 22px;
  }
  .homepage .section-realisations h2,
  .section-references h2,
  footer .container-un-projet .bloc-un-projet .texte {
    font-size: 44px;
    line-height: 1.1em;
  }
  .liste-realisations {
    margin-top: 40px;
  }
  .homepage .liste-realisations {
    width: 100%;
    margin-left: 0;
  }
  .homepage .section-realisations {
    padding-bottom:calc(var(--main-padding) * 2);
  }
  .content-vignette .container-content-vignette {
    padding: 15px;
  }
  .section-references .surtitre {
    font-size: 32px;
    margin-bottom: 30px;
  }
  .section-references #slider-references {
    margin-top: 30px;
    width: calc(100% + 90px);
  }
  .section-references #slider-references li div figure {
    margin: 10px 50px 10px 0;
  }
  .section-references .slider-references-navigation {
    width: calc(100% + 90px);
    padding-top: 0;
  }
  .section-references #slider-temoignages {
    width: 500px;
    height: 500px;
    padding: 40px 40px;
    margin-top: 40px;
    margin: var(--main-padding) auto;
  }
  .section-references #slider-temoignages li {
    padding: 0 30px!important;
  }
  .section-references .slider-temoignages-navigation a.prev {
    left: 20px;
  }
  .section-references .slider-temoignages-navigation a.next {
    right: 20px;
  }
  .section-categories a.big-texte {
    font-size: 44px;
  }
  .section-categories a.big-texte.with-arrow::after {
    width: 30px;
    height: 30px;
  }
  .page-portfolio .liste-realisations .vignette:nth-child(7n+1),
  .page-portfolio .liste-realisations .vignette:nth-child(7n+2),
  .page-portfolio .liste-realisations .vignette:nth-child(7n+3),
  .page-portfolio .liste-realisations .vignette:nth-child(7n+4),
  .page-portfolio .liste-realisations .vignette:nth-child(7n+5),
  .page-portfolio .liste-realisations .vignette:nth-child(7n+6),
  .page-portfolio .liste-realisations .vignette:nth-child(7n+7) {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  #header-work-content h1,
  .section-autres-projets h2 {
    font-size: 50px;
  }
  .section-autres-projets h2 {
    width: calc(100% - 100px);
  }
  .section-autres-projets .slider-autres-projets-navigation a {
    top: calc(50% - 24px);
    width: 24px;
    height: 24px;
  }
  .section-autres-projets .slider-autres-projets-navigation a::before {
    width: 24px;
    height: 24px;
  }
  .section-autres-projets .slider-autres-projets-navigation a.prev {
    right: 80px;
  }
  .section-autres-projets .slider-autres-projets-navigation a.next {
    right: 30px;
  }
  .section-autres-projets .slider-autres-projets-navigation a.prev::before {
    transform: rotate(-135deg);
  }
  .section-autres-projets .slider-autres-projets-navigation a.next::before {
    transform: rotate(45deg);
  }  
  #details-work .colonne-texte {
    padding-right: 15px;
  }
  .section-autres-projets .slider-autres-projets .vignette {
    padding: 0 15px;
  }
  .section-autres-projets .vignette figure {
    height: 440px;
  }
  .section-autres-projets .content-vignette .with-arrow {
    width: 40px;
    height: 40px;
    top: 20px;
  }
  .section-autres-projets .content-vignette .client,
  .section-autres-projets .content-vignette h3 {
    font-size: 24px;
  }
  body .section-autres-projets .content-vignette h3 {
    margin-bottom: 20px;
  }
  .section-autres-projets .content-vignette .container-content-vignette {
    padding: 20px 0;
  }
  .section-expertises .liste-expertises a,
  .menu-responsive-container li a,
  .section-menu-interne .liste-items-menu a {
    font-size: 20px;
  }
  #details-work h2, 
  #details-work h3,
  .liste-competences .vignette h2,
  .page-contact h2, 
  .page-demarche-rse .section-intro h2,
  .section-sections .liste-paragraphes h3,
  .page-studio .studio-intro h2,
  footer .container-un-projet .bloc-un-projet .titre {
    font-size: 25px;
  }
  .page-portfolio .section-realisations, 
  .page-expertises .section-competences, 
  .page-studio .studio-equipe,
  .contact-formulaire {
    padding-bottom: calc( var(--main-padding) + 100px);
  }
  .page-expertises .liste-competences {
    width: 100%;
    margin-left: 0;
  }
/*
  .liste-competences .vignette:nth-child(2n+4) {
    margin-top: -110px;
  }
  .liste-competences .vignette:nth-last-child(3) {
    margin-top: -40px;
  }
*/
  .liste-competences .vignette figure {
    height: 240px;
  }
  #header-work-content {
    max-width: 55%!important;
    bottom: 60px;
  }
  #content-work .liste-paragraphes .col-md-6.order-md-0 {
    padding-right:15px;
  }
  #content-work .liste-paragraphes .col-md-6.order-md-1 {
    padding-left:15px;
  }
  #content-work .liste-paragraphes .bloc-photo.col-md-12 .cadre-photo {
    margin-bottom: 30px;
  }
  #content-work .liste-paragraphes .bloc-texte {
    padding:0 30px;
  }
  #content-work .liste-paragraphes .bloc-photo.col-md-6 .cadre-photo {
    height: 360px;
    margin-bottom: 40px;
  }
  .page-demarche-rse .section-intro {
    padding-top: 0;
  }
  .page-demarche-rse .section-intro .cadre-photo {
    height: 200px;
    width: 200px;
    top: -240px;
  }
  .section-sections h2,
  .page-studio h2 {
    font-size: 52px;
  }
  .page-studio h2 {
    z-index: 1;
  }
  .page-studio .cadre-photo.illustration,
  .page-contact .cadre-photo.illustration {
    margin: -130px 0 0;
  }
  .page-contact .cadre-photo.illustration {
    position: relative;
    top: 0;
  }
  .section-sections .cadre-photo.with-parallax {
    margin-top: -80px;
  }
  .section-sections .liste-paragraphes .bloc-paragraphe {
    width: 100%;
    margin: 0 0 60px;
  }
  .page-studio .liste-chiffres {
    width: 100%;
    margin-left: 0%;
    margin-top: 0px;
  }  
  .page-studio .liste-chiffres .bloc-chiffre .number {
    font-size: 50px;
  }
  .page-studio .liste-chiffres .bloc-chiffre {
    margin:0 15px 60px!important;
    width: calc(50% - 15px);
  }
  .page-studio .liste-chiffres .chiffres-lg-1 .bloc-chiffre:nth-child(1), 
  .page-studio .liste-chiffres .chiffres-end .bloc-chiffre:nth-child(2n+1) {
    margin-left: 0!important;
  }
  .page-studio .liste-chiffres .chiffres-lg-1 .bloc-chiffre:nth-child(2), 
  .page-studio .liste-chiffres .chiffres-end .bloc-chiffre:nth-child(2n+2) {
    margin-right: 0!important;
  }
  .studio-projets .liste-paragraphes {
    padding-left: 0px;
    padding-top: calc(var(--main-padding) + 80px);
  }  
  .studio-projets .liste-paragraphes .bloc-paragraphe {
    margin: 0 0px 80px;
    width: 100%;
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe:nth-child(2n+1) {
    margin-left: 0;
    margin-top: 0;
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe:nth-child(2n+2) {
    margin-right: 0;
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe .number {
    font-size: 130px;
  }
  .studio-projets .liste-paragraphes .bloc-paragraphe .texte {
    padding-left: 50px;
  }
  .studio-equipe .person {
    height: 280px;
    width: calc(50% - 30px);
    margin: 0 15px 30px!important;
  }
  .studio-equipe .person:nth-child(2n+1) {
    margin-left: 0px;
  }
  .studio-equipe .person:nth-child(2n+2) {
    margin-right: 0px;
  }  
  .studio-equipe .person figure svg {
    max-width: 80%;
    max-height: 80%;
  }
  .studio-equipe .person .call-to-actions .button {
    margin-bottom: 20px;
  }
  .wpcf7-form .acceptation,
  .wpcf7-form .container-submit {
    width: 100%;
  }
  .wpcf7-form .button-submit {
    margin: 0 auto;
  }
  .pastille-contact {
    width: 120px;
    height: 120px;
  }
  footer .footer-triangle {
    width: 20vw;
    height: 25vw;
    max-height: 300px;
    max-width: 260px;
  }
  footer .container-un-projet .bloc-un-projet .texte p::after {
    width: 30px;
    height: 30px;
  }
  footer .bloc-rse {
    justify-content: flex-start;
  }
  footer .column-1 {
    padding-top: 40px;
  }
  footer .copyrights-container {
    text-align: left;
  }
  footer .bloc-rse-logo {
    max-width: 120px;
  }
  footer .bloc-rse-description .surtitre {
    font-size: 13px;
  }  
  footer .bloc-rse-description .texte {
    margin-top: 10px;
    font-size: 36px;
  }
}
@media only screen and (max-width: 575px) {
  /*** Vars ***/
  :root {
    --size-h1: 34px;
    --size-h2: 26px;
    --size-h3: 20px;
    --size-h4: 18px;
    --size-txt:  16px;
    --size-txt2: 14px;
    --navbar-height: 110px;
    --sticky-height: 100px;
    --width-container: 100%;
    --main-padding:  80px;
    --marge-left:  0px;
    --slider-home-height:  100dvh;
    --slider-page-height:  100dvh;
    --margin-block-image: 80px;
  }
  .container {
    padding: 0 30px;
  }
  .section-intro .container {
    padding-left: 30px;
  }
  .pastille-contact {
    width: 100px;
    height: 100px;
    right: 10px;
    bottom: 10px;
  }
  .background-video {
    width: 100dvw;
    height: 100dvh;
    max-height: 600px;
  }
  .menu-responsive .menu-content .menu-left {
    padding: 40px 15px 0;
  }
  .menu-responsive-container li a::before,
  .liste-expertises a::before,
  .section-menu-interne .liste-items-menu a::before {
    border-radius: 0;
  }
  .menu-responsive-container li a:hover::before,
  .liste-expertises li a:hover::before,
  .section-menu-interne .liste-items-menu a:hover::before {
    animation: none;
    opacity: 0;
  }
  .menu-responsive-container li a:hover,
  .liste-expertises li a:hover,
  .section-menu-interne .liste-items-menu a:hover {
    color: var(--col-noir);
  }
  .liste-expertises a::before, 
  .menu-responsive-container li a::before, 
  .section-menu-interne .liste-items-menu a::before {
    left: 0px;
    width: 100%;
  }
  .homepage .liste-realisations .vignette {
    width: 100%;
    margin: 0 0 40px!important;
  }
  .homepage .liste-realisations .vignette:nth-child(2n+2) {
    margin-top: 0;
  }
  .homepage .liste-realisations .vignette,
  .liste-competences .vignette figure {
    height: 440px;
  }
  .liste-realisations .content-vignette .with-arrow {
    height: 40px;
    width: 40px;
  }
  .content-vignette .client {
    font-size: 28px;
    margin-top: 20px;
  }
  .content-vignette h3,
  .single-competence #content-work h2 {
    font-size: 32px;
  }
  .homepage .section-realisations {
    padding-bottom: var(--main-padding);
  }
  .section-realisations .call-to-action {
    margin-top: 40px;
  }  
  .section-references #slider-temoignages {
    width: 400px;
    height: 400px;
    line-height: 1.2em;
  }
  .page-expertises .liste-categories {
    width: 100%;
  }
  .liste-competences .with-colonnes {
    display: none !important;
  }
  .liste-competences .vignette {
    width: 100%;
    margin: 0 0 40px!important;
  }
/*
  .liste-competences .vignette:nth-last-child(2) {
    margin: 0;
    display: none;
  }
*/
  #header-work-content {
    left: 15px;
  }
  #content-work .liste-paragraphes .bloc-texte {
    padding: 0 15px;
  }  
  .studio-chiffres h2 {
    margin-bottom: 40px;
  }
  .studio-projets {
    padding-top: calc(var(--main-padding) * 2);
  }
  .studio-equipe .person {
    height: 440px;
    width: 100%;
    margin: 0 0px 30px !important;
  }
  #navigation-block a {
    background: transparent;
    bottom: 0;
    top: auto;
  }
  .wpcf7-form .w-50:nth-child(2), 
  .wpcf7-form .w-50:nth-child(5),
  .wpcf7-form .w-50:nth-child(3), 
  .wpcf7-form .w-50:nth-child(2n+2),
  .wpcf7-form .w-50:nth-child(6) {
    padding: 0;
  }
  .w-50 {
    width: 100% !important;
  }
  footer .footer-contacts {
    font-size: 16px;
  }
  footer .footer-triangle {
    right: 0;
  }
  footer .column-1 {
    padding-top: 20px;
  }
  footer .logo-footer img {
    width: 120px;
  }  
  footer .bloc-francenum .bloc-francenum-logo figure {
    padding-right: 25px;
  }
  footer .bloc-rse {
    padding-left: 20px;
  }
  footer .bloc-rse-logo {
    max-width: 100px;
  }
  footer .bloc-francenum-logo img, 
  footer .bloc-rse-logo img {
    height: 100px;
  }  
  footer .column-liens {
    padding-top: 40px;
  }
  footer .bloc-rse-description {
    justify-content: flex-start;
  }
  footer .bloc-rse-description .surtitre {
    font-size: 14px;
  }
  footer .bloc-rse-description .texte {
    font-size: 32px;
  }
}
@media only screen and (max-width: 499px) {
  .single-portfolio #work a.button {
    height: 66px;
    line-height: 66px;
    font-size: 14px;
    padding: 0 34px;
  }
  .single-portfolio #work a.button .with-arrow::after {
    width: 14px;
    height: 14px;
  }
  .single-portfolio #work a.small-button {
    font-size: 10px;
    height: 26px;
    line-height: 28px;
    padding: 0 10px;
  }
  .menu-burger .str-only {
    font-size: 0;
  }
  .menu-responsive {
    right: -400dvw;
  }
  .menu-responsive::before {
    width: 400dvw;
    height: 400dvw;
  }
  .menu-responsive .menu-burger {
    top: 20px;
  }
  .menu-responsive .menu-responsive-container {
    margin-top: 0;
  }
  .section-expertises .liste-expertises a, 
  .menu-responsive-container li a, 
  .section-menu-interne .liste-items-menu a {
    font-size: 18px;
  }
  .section-expertises .liste-expertises a span, 
  .menu-responsive-container li a span, 
  .section-menu-interne .liste-items-menu a span {
    padding-right: 15px;
  }
  .section-references #slider-temoignages {
    width: 370px;
    height: 370px;
    line-height: 1.2em;
  }
  #header-work-content h1 {
    font-size: 40px;
  }
  .section-autres-projets h2 {
    font-size: 36px;
  }
  .section-autres-projets .slider-autres-projets-navigation a::before {
    width: 20px;
    height: 20px;
  }
  .section-autres-projets .slider-autres-projets-navigation a.prev {
    right: 60px;
  }
  .section-autres-projets .slider-autres-projets-navigation a.next {
    right: 20px;
  }
  #header-work-content .subtitle {
    font-size: 24px;
  }
  #header-work-content {
    max-width: 80% !important;
    bottom: 80px;
  }
  .page-demarche-rse .section-intro .cadre-photo {
    height: 200px;
    width: 200px;
    position: relative;
    margin-left: 15px;
    top: -40px;
  }
  .section-sections h2, .page-studio h2 {
    font-size: 44px;
  }
  .section-sections .intro {
    font-size: 18px;
  }
  #details-work h2, 
  #details-work h3, 
  .liste-competences .vignette h2, 
  .page-contact h2, 
  .page-demarche-rse .section-intro h2, 
  .section-sections .liste-paragraphes h3, 
  .page-studio .studio-intro h2, 
  footer .container-un-projet .bloc-un-projet .titre {
    font-size: 22px;
  }
  .page-studio .liste-chiffres .bloc-chiffre {
    margin: 0 0px 40px !important;
    width: 100%;
    text-align: right;
  }
  .page-studio .liste-chiffres .bloc-chiffre .separator {
    width: 100%;
    padding-left: calc(100% - 160px);
  }
  .studio-equipe .person {
    height: 400px;
  }
  #details-work .strate-details .text-details::before {
    display: none;
  }
  #details-work .strate-details .text-details {
    padding-left: 0px;
  }
  footer .bloc-rse-description .surtitre {
    font-size: 16px;
  }
  footer .bloc-rse-description .texte {
    font-size: 30px;
  }
  footer .column-liens {
    flex-direction: column;
    padding-top: 40px;
  }
  footer .bloc-francenum {
    width: 100%;
  }
  footer .bloc-francenum .bloc-francenum-logo {
    max-width: 120px;
  }
  footer .bloc-francenum .bloc-francenum-logo figure {
    padding-right: 0;
    border: none;
  }
  footer .bloc-rse {
    padding-left: 0px;
    width: 100%;
  }
  footer .bloc-rse-logo {
    max-width: 120px;
  }
}
@media only screen and (max-width: 449px) {
  .background-video {
    max-height: 580px;
  }
  .menu-burger {
    padding-right: 20px;
  }
  .navbar.sticky .menu-burger {
    height: 49px;
    padding: 6px 20px;
  }
  .menu-burger .icon-bar:nth-child(1), 
  .menu-burger .icon-bar:nth-child(2), 
  .menu-burger .icon-bar:nth-child(3) {
    width: 24px;
    height: 2px;
  }
  .menu-burger button {
    width: 24px;
    height: 37px;
  }
  .section-intro .cadre-photo, 
  .section-sections .cadre-photo, 
  .page-studio .cadre-photo.illustration, 
  .page-contact .cadre-photo.illustration {
    height: 340px;
    width: 340px;
  }
  .cadre-photo.with-parallax img {
    height: calc(100% + 200px);
    margin-top: -100px;
  }  
  .section-references #slider-references li div figure {
    margin: 10px 20px 10px 0;
  }
  .section-expertises .liste-expertises a, 
  .menu-responsive-container li a, 
  .section-menu-interne .liste-items-menu a {
    font-size: 16px;
  }
  .section-autres-projets h2 {
    width: calc(100% - 70px);
    font-size: 34px;
  }
  .section-autres-projets .slider-autres-projets-navigation a::before {
    width: 16px;
    height: 16px;
  }
  .section-autres-projets .slider-autres-projets-navigation a {
    top: calc(50% - 16px);
  }
  .section-autres-projets .slider-autres-projets-navigation a.prev {
    right: 45px;
  }
  .section-autres-projets .slider-autres-projets-navigation a.next {
    right: 15px;
  }
 .section-autres-projets .vignette figure {
    height: 340px;
  }  
  .studio-equipe .person {
    height: 360px;
  }
  footer .footer-contacts {
    font-size: 14px;
  }
}
@media only screen and (max-width: 399px) {
  .container {
    padding: 0 15px;
  }
  .section-intro .container {
    padding-left: 30px;
  }
  .section-expertises .liste-expertises a span, 
  .menu-responsive-container li a span, 
  .section-menu-interne .liste-items-menu a span {
    padding-left: 10px;
  }
  .section-expertises .liste-expertises a, 
  .menu-responsive-container li a, 
  .section-menu-interne .liste-items-menu a {
    font-size: 15px;
  }
  .section-intro h2, .page .section-titre-h1 h1 {
    font-size: 50px;
  }
  .section-intro .cadre-photo, 
  .section-sections .cadre-photo, 
  .page-studio .cadre-photo.illustration, 
  .page-contact .cadre-photo.illustration {
    height: 280px;
    width: 280px;
  }
  .cadre-photo.with-parallax img {
    height: calc(100% + 150px);
    margin-top: -50px;
  }  
  .liste-realisations .vignette, 
  .liste-competences .vignette figure {
    height: 400px;
  }
  .section-references #slider-temoignages {
    width: 330px;
    height: 330px;
    padding: 10px;
    line-height: 1.1em;
    margin-left: auto;
    margin-right: auto;
  }
  .section-references #slider-temoignages li {
    padding: 0 15px !important;
  }
  .section-references #slider-temoignages li .text-temoignage {
    font-size: 14px;
  }
  .section-references .slider-temoignages-navigation a::before {
    width: 12px;
    height: 12px;
  }
  .section-references .slider-temoignages-navigation a.prev {
    left: 10px;
  }
  .section-references .slider-temoignages-navigation a.next {
    right: 10px;
  }
  #header-work-content {
    max-width: 90% !important;
    bottom: 70px;
  }
  .section-autres-projets h2 {
    width: calc(100% - 60px);
    font-size: 30px;
  }
  .section-autres-projets .vignette figure {
    height: 300px;
  }  
  .section-sections h2, .page-studio h2 {
    font-size: 38px;
  }
  .section-sections .intro {
    font-size: 16px;
  }
  #details-work h2, 
  #details-work h3, 
  .liste-competences .vignette h2, 
  .page-contact h2, 
  .page-demarche-rse .section-intro h2, 
  .section-sections .liste-paragraphes h3, 
  .page-studio .studio-intro h2, 
  footer .container-un-projet .bloc-un-projet .titre {
    font-size: 20px;
  } 
  .studio-equipe .person {
    height: 340px;
  } 
}
@media only screen and (max-width: 359px) {
  .homepage .section-references .col-12:last-child {
    padding: 0;
  }
  .section-references #slider-temoignages {
    width: 320px;
    height: 320px;
  }
  .section-references #slider-temoignages li .text-temoignage {
    font-size: 13px;
  }
}
@media only screen and (max-height: 700px) {
  h1.with-revealText div:last-child {
    padding-bottom: 0px;
  }
}
@media only screen and (max-height: 640px) {
  .background-video {
    max-height: 560px;
  }
  .menu-responsive .navbar-brand img {
    height: 50px;
    width: auto;
  }
  .menu-responsive-container ul.menu {
    margin-top: 0;
  }
}