@charset "UTF-8";
@import 'fonts.css';

@font-face {
  font-display:swap;
  font-family:FontAwesome;
  src:url('../fonts/fontawesome-webfont.eot');
  src:url('../fonts/fontawesome-webfont.eot?#iefix') format('embedded-opentype'),
  url('../fonts/fontawesome-webfont.woff') format('woff'),
  url('../fonts/fontawesome-webfont.ttf') format('truetype'),
  url('../fonts/fontawesome-webfont.svg#fontawesome-webfont') format('svg');
  font-weight:400;
  font-style:normal
}
.fab::before {
  font-family:FontAwesome;
  font-size:1.2em;
  font-style:normal
}
.fab.fa-linkedin-in::before {
  content:"\f0e1"
}
.fab.fa-facebook-f::before {
  content:"\f230"
}
.fab.fa-vimeo-v::before {
  content:"\f27d"
}
.fab.fa-x-twitter {
  font-family:sans-serif
}
.fab.fa-x-twitter::before {
  content:"𝕏";
  font-size:1.2em;
  font-style:normal
}
/*** Vars ***/
:root {
  --col-noir: #292929;
  --col-orange: #FF7700;
  --col-blanc: #FFFFFF;
  --col-gris: #F5F5F5;
  --col-anthracite: #dbdbdb;
  --col-marine: #011E6F;
  --col-ciel: #60A9FF;
  --col-vert:  #3ee4ad;
  --rgb-noir: 41, 41, 41;
  --rgb-orange: 255, 119, 0;
  --rgb-blanc: 255, 255, 255;
  --rgb-gris: 245, 245, 245;
  --rgb-marine: 1, 30, 111;
  --rgb-ciel: 96, 169, 255;
  --rgb-vert: 62, 228, 173;

  --size-h1:  60px;
  --size-h2: 38px;
  --size-h3: 28px;
  --size-h4: 22px;
  --size-surtitre:  18px;
  --size-txt:  16px;
  --size-txt-big:  22px;
  --size-anime:  160px;

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

  --slider-home-height:  100vh;
  --slider-page-height:  100vh;
  --cadre-photo-height:450px;

  --break-point-1500: 1420px;

  --width-container: 1420px;

  --main-padding:  60px;
  --main-padding-left:  60px;
  --main-padding-right: 60px;

  --height-slide-vertical: 700px;

  --radius-photo:  20px;
  --radius-min:  20px;
}
/*** Animations ***/
@-webkit-keyframes loading {
  0%, 30%
  {
    opacity: 0;
    filter: blur(0); 
  }
  30%, 50%
  {
    opacity: 1;
    filter: blur(0); 
  }
  95%
  {
    filter: blur(1.1em);
  }
  100%
  {
    filter: blur(0); 
  }
}
@keyframes loading {
  0%, 30%
  {
    opacity: 0;
    filter: blur(0); 
  }
  30%, 50%
  {
    opacity: 1;
    filter: blur(0); 
  }
  95%
  {
    filter: blur(1.1em);
  }
  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;
    -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 fadeInLeft {
  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 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 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 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 fadeInBigDown {
  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 fadeInBigDown {
  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 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;}
}
@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(2px, -2px);
    -ms-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  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(2px, -2px);
    -ms-transform: translate(2px, -2px);
    transform: translate(2px, -2px);
  }
  30%,
  100% {
    -webkit-transform: translate(0px,0px);
    -ms-transform: translate(0px,0px);
    transform: translate(0px,0px);
  }
}
@-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 spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
@keyframes defilement-rtl {
  from { transform: translateX(100dvw); }
  to { transform: translateX(-100%); }  
}
@keyframes defilement-ltr {
  from { transform: translateX(-100%); }
  to { transform: translateX(100dvw); }  
}
/*****
@keyframes defilement-ttb {
  from { transform: translateY(-100%); }
  to { transform: translateY(var(--height-slide-vertical)); }  
}
@keyframes defilement-btt {
  from { transform: translateY(var(--height-slide-vertical)); }
  to { transform: translateY(-100%); }  
}
*****/
@keyframes defilement-ttb {
  0% { transform: translateY(calc(-100% + var(--height-slide-vertical) - 40px)); }
  50% { transform: translateY(40px); }  
  100% { transform: translateY(calc(-100% + var(--height-slide-vertical) - 40px)); }
}
@keyframes defilement-btt {
  0% { transform: translateY(0%); }
  50% { transform: translateY(calc(-100% + var(--height-slide-vertical))); }  
  100% { transform: translateY(0%); }
}
@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 entree-titre-anime-ligne1 {
  0% { transform: translateX(100dvw); }
/*  75% { transform: translateX(25%); }*/
  100% { transform: translateX(0px); }  
}
@keyframes entree-titre-anime-ligne2 {
  0% { transform: translateX(-100%); }
/*  75% { transform: translateX(25%); }*/
  100% { transform: translateX(5%); }  
}
@keyframes sortie-titre-anime-ligne1 {
  0% { transform: translateX(0px); }
  75% { transform: translateX(-95%); }
  100% { transform: translateX(-100%); }  
}
@keyframes defilement-ltr {
  from { transform: translateX(-100%); }
  to { transform: translateX(100dvw); }  
}
@keyframes anim-annee-histoire {
  from { transform: translateX(200%); }
  to { transform: translateX(15px); }  
}
/*** Règles ***/
html {
  background-color: var(--col-blanc);
  color: var(--col-noir);
}
/*** On cache les anims ***/
.wow {
  visibility: hidden;
}

/*** Règles ***/
body {
  font-size: var(--size-txt);
  font-family: 'Sora', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  line-height: 1.5em;
  color: var(--col-noir);
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
}
body .wrapper {
  background-color: var(--col-blanc);
  min-height: 100vh;
}
::-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;
}

@media (min-width:1500px) {
  .container,
  .wp-block-embed {
    max-width:var(--break-point-1500);
  }
  .wp-block-embed {
    margin-left:auto;
    margin-right: auto;
  }
}
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:20px;
}
.margin-bottom {
  margin-bottom:20px;
}
.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: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;  
}
.vertical-align-top {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: start;  
}
.vertical-align-bottom {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: end;  
}

/*** 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;
}

/*** MAGNIFIC POPUP ***/
.mfp-bg {
  opacity:0.9;
}
/*** BACK TO TOP ***/
.back-to-top {
  position: fixed;
  z-index: 100;
  right: 15px;
  bottom: 15px;
  color: #fff;
  width: 40px;
  height: 40px;
  text-align: center;
  opacity: 0;
  transition: all 0.2s ease-in; 
  -webkit-animation: animtop 2s infinite 2s;
  animation: animtop 2s infinite 2s;
}
@keyframes animtop {
  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);
  }
}
.back-to-top::before {
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:100%;
  z-index:-1;
  background-color: var(--col-marine);
  border-radius: 100%;
  border: solid 1px var(--col-blanc); 
}
.back-to-top:hover {
  transform:translateY(-3px);
}
.back-to-top.visible {
  opacity:0.9;
}
.back-to-top a {
  height: 40px;
  position: relative;
  width: 40px;
  display: block; 
  -webkit-transition: all .2s ease-in;
  transition: all .2s ease-in;
  transform: scale(1)
}
.back-to-top a::before {
  content: "";
  position:absolute;
  text-align:center;
  color:var(--col-blanc);
  left:15px;
  top:17.5px;
  width:10px;
  height: 10px;
  border-top: solid 1px var(--col-blanc);
  border-right: solid 1px var(--col-blanc);
  transform: rotate(-45deg);
}
.back-to-top.visible:hover {
  opacity:1;
}
@media (min-width:992px) {
  .back-to-top {
    width:60px;
    height:60px;
  }
  .back-to-top a {
    height: 60px;
    width: 60px;
  }
  .back-to-top a::before {
    width:20px;
    height: 20px;
    left:20px;
    top:22.5px;
  }
}
/*** ReCaptcha Badge ***/
.grecaptcha-badge { 
  visibility: hidden;
}
/*** cookies : tarteaucitron ***/
body #tarteaucitronRoot * {
  font-family:'Sora', sans-serif!important;
}
body #tarteaucitronRoot #tarteaucitronAlertBig {
  font-size:14px!important;
  font-family:'Sora', 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:'Sora', sans-serif!important;
  color: var(--col-marine) !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-marine)!important;
  font-size:14px!important;
  font-family:'Sora', 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-marine)!important;
}
body #tarteaucitron #tarteaucitronInfo {
  background-color: #efefef!important;
  color: var(--col-marine)!important;
  border: none!important;
}
body #tarteaucitronAlertSmall,
body #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer {
  opacity: .75;
  right: auto;
  left: 70px;
}
body #tarteaucitronAlertSmall:hover,
body #tarteaucitronAlertSmall #tarteaucitronCookiesListContainer:hover {
  opacity: 1;
}
/*** Classes pour animations ***/
.fadeInBigUp {
  -webkit-animation-name: fadeInBigUp;
  animation-name: fadeInBigUp;
}
.fadeInBigDown {
  -webkit-animation-name: fadeInBigDown;
  animation-name: fadeInBigDown;
}
.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,
.animated.buttonFromCenter::after {
  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;
}
/*
.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;
}
*/
.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 18px 0px 18px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  font-stretch: normal;
  font-style: normal;
  line-height: 40px;
  height: 40px;
  width:auto;
  cursor: pointer;  
  text-decoration: none;
  border: none;
  background-color: transparent;
/*  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 ease-in-out;
}
a.button-1,
.multi-select-button,
.formulaire .chosen-container,
.formulaire select.chosen,
.formulaire .submit {
  color: var(--col-blanc);
}
a.button-1::before,
.multi-select-button::before,
.formulaire .chosen-container::before,
.formulaire select.chosen::before {
  background-color: var(--col-orange);
  border-radius: 100px;
  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 ease-in-out;
}
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: 100px;
}
a.button-1:hover {
  color: var(--col-orange);
}
a.button-1:hover::before {
  background-color: var(--col-blanc);
  border-radius: 100px;
}
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-blanc);
}
a.button-2-b {
  color: var(--col-orange);
}
a.button-2::before {
  background-color: transparent;
  border-radius: 100px;
}
a.button-2::after {
  border: solid 1px var(--col-blanc);
  border-radius: 100px;
  opacity: 1;
}
a.button-2-b::after {
  border: solid 1px var(--col-orange);
}
a.button-2:hover::before {
/*
  background-color: var(--col-blanc);
  border-radius: 100px;
  filter: blur(4px);
  transition: filter .45s cubic-bezier(.4,0,0,1);
*/
}
a.button-2:hover {
  color: var(--col-orange);
}
a.button-2.without-arrow:hover::before {
  background-color: var(--col-blanc);
  border-radius: 100px;
}

a.button-2-b:hover {
  color: var(--col-blanc);
}
a.button-3 {
  color: var(--col-orange);
}
a.button-3::before {
  background-color: var(--col-blanc);
  border-radius: 100px;
}
a.button-3::after {
/*  background-color: var(--col-noir);*/
}
a.button-3:hover {
  color: var(--col-blanc);
}
a.button-3:hover::before {
  background-color: var(--col-orange);
}
a.button-4 {
  color: var(--col-marine);
}
a.button-4::before {
  background-color: transparent;
  border-radius: 100px;
}
a.button-4::after {
  border: solid 1px var(--col-marine);
  border-radius: 100px;
  opacity: 1;
}
a.button-4:hover::before {
  background-color: var(--col-blanc);
  border-radius: 100px;
}
a.button-4:hover::after {
  border: solid 1px var(--col-blanc);
}
a.button-4:hover {
  color: var(--col-orange);
}

a.button-2 .with-arrow::before {
  content:"";
  position: absolute;
  z-index: -1;
  background-color: var(--col-blanc);
  width: 28px;
  height: 28px;
  border-radius: 100px;
  right: 8px;
  top: 6px;
  transition: all .450s cubic-bezier(.4,.4,.4,1);
}
a.button-2-b .with-arrow::before {
  background-color: var(--col-orange);
}
a.button-2 .with-arrow::after {
  content:"";
  position: relative;
  z-index: 1;
  display:inline-block;
  width:11px;
  height:10px;
  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-2-b .with-arrow::after {
  border-top:solid 3px var(--col-blanc);
  border-right:solid 3px var(--col-blanc);
  background-color:var(--col-blanc);
}
a.button-2:hover .with-arrow::before {
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
/*
  filter: blur(5px);
  transform: scale(1.05);
*/  
  transition: all .450s cubic-bezier(.4,.4,.4,1);
}
/*
a.button-2:hover .with-arrow::after {
  animation:2s infinite hoverArrow
}
*/
ul {
  padding: 0 0 0 20px;
}
body ul li:not(.col-12) {
  position: relative;
  padding-left: 10px;
}
ul.slick-slider,
ul.slick-dots,
.banner ul.slider-home {
  padding: 0;
  list-style: none;
}
body ul.pagination li,
body ul.slick-slider li,
body ul.slick-dots li,
body ul.slider-home 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;
  color: var(--col-marine);
}
body h2,
body .h2 {
  position: relative;
  font-weight: 800;
  font-size: var(--size-h2);
  line-height: 1.25em;
  margin-bottom: 40px;
  color: var(--col-marine);
}
body h1 p,
body .h1 p,
body h2 p,
body .h2 p {
  margin-bottom: 0;
}
body h3,
body .h3 {
  font-weight: 700;
  font-size: var(--size-h3);
  line-height: 1.25em;
  letter-spacing: normal;  
  margin-bottom: 20px;
}
body h4,
body .h4 {
  font-weight: 700;
  font-size: var(--size-h4);
  line-height: var(--size-h4);
  letter-spacing: normal;  
  margin-bottom: 20px;
}
body .sur-titre {
  font-weight: 400;
  font-size: var(--size-surtitre);
  line-height: 30px;
  text-transform: uppercase;  
  display: block;
  margin-bottom: 10px;
}
.page {
  font-weight: 400;
  font-size: var(--size-txt);
  line-height: 150%;
/*  padding-top: var(--navbar-height);*/
}
.with-background .page {
  padding-top: 0;
}
.page-standard .bg-degrade-2,
.page-standard .bg-degrade-4 {
  padding-top: var(--navbar-height);  
}
.homepage,
.page.page-contact {
  overflow: hidden;
}
.page .texte {
  text-align: left;
  font-weight: 400;
  line-height: 140%;
}
.page .texte.texte-grand {
  font-size: var(--size-txt-big);
}
.page .texte mark {
  position: relative;  
  font-weight: 600;
  background: linear-gradient(to top, transparent 10%, rgba(var(--rgb-vert),1) 10.01%, rgba(var(--rgb-vert),1) 50%, transparent 50.01%) no-repeat;
  padding: 0 5px 5px;
  color: var(--col-noir);
}
.page .texte strong,
.page .texte b {
  font-weight: 700!important;
}
.page .texte a {
  text-decoration: underline;
}
.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 li {
  padding-left: 24px;
  margin-bottom: 20px;
}
.page-content .texte li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 8px;
  height: 8px;
  border-radius: 100%;
  background-color: var(--col-noir);
}
.section-interne {
  position: relative;
  padding: var(--main-padding) 0;
}
.container-padding-left {
  padding-left: var(--main-padding-left);
}
.container-padding-right {
  padding-right:var(--main-padding-right);
}
.container-big-padding-left {
  padding-left: calc(var(--main-padding-left)*2);
}
.container-big-padding-right {
  padding-right: calc(var(--main-padding-right)*2);
}
.container-padding-left-right {
  padding: 0 calc(var(--main-padding-left) + 15px);
}
.cadre-photo {
  overflow: hidden;
/*  background: rgba(var(--rgb-marine), 0.05);*/
  width: 100%;
  height: 510px;
  position: relative;
  z-index: 1;
/*  animation: fadeInDownRight .45s linear;*/
}
.cadre-photo figure {
  position: relative;
  margin: 0;
  height: 100%;
  width: 100%;
}
.cadre-photo img {
  mix-blend-mode: normal;
  object-fit: cover;
  object-position: center center;
  height: 100%;
  width: 100%;
}
.cadre-photo.with-parallax img {
  height: calc(100% + 700px);
  margin-top: -300px;
}
.cadre-photo.border-radius {
  border-radius: var(--radius-min);
}
.bg-gris {
  background-color: var(--col-gris);
}
.bg-blanc {
  background-color: var(--col-blanc);
}
.bg-orange {
  background-color: var(--col-orange);
}
.bg-marine {
  background-color: var(--col-marine);
}
/*** Homepage ***/
.banner {
  position: relative;
  z-index: 0;
  background-color: rgba(var(--rgb-marine), 1);
  color: var(--col-blanc);
  position: relative;
  text-align: center;
}
.banner .cadre-photo {
  position: relative;
  height:var(--slider-home-height);
}
.banner .cadre-photo::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0px;
  width: 100%;
  height: 100%;
  z-index: 2;
  background: #0000004D;
  opacity: 0.9;
}
.banner .logo {
  padding-top: 60px;
  height: 100px;
}
.banner .banner-content {
  animation:1.5s ease-out 0s 1 slideFade;
  -webkit-animation:1.5s ease-out 0s 1 slideFade;
  position:absolute;
  width:100%;
  height:100%;
  top: 0;
  left:0;
  z-index:5;
  display: flex;
  text-align: left;
  justify-content: space-between;
}
.banner-content .row,
.banner-content .col-12 {
  height:100%;
}
.banner-content .text-content {
  height:calc(100% - 100px);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.banner-content h1 {
  font-weight: 800;
  font-size: var(--size-h1);
  line-height: 1.25em; 
  text-align: left;
  color: var(--col-blanc);
  max-width:55%;
  margin-bottom:40px;
}
.banner-content .texte {
  font-weight: 400;
  font-size: var(--size-txt);
  line-height: 130%;
  max-width:50%;
  margin-bottom:40px;
}
.section-service-transport-express {
  background-color:var(--col-marine);
}
.section-service-transport-express h2 {
  text-align:center;
  color:var(--col-orange);
}
.section-service-transport-express .liste-services {
  display:grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-column-gap: 30px;
  list-style: none;
  padding:0;
  margin:0;
  color:var(--col-blanc);
}
.liste-services .bloc-service {
  text-align:center;
}
.liste-services .bloc-service img {
  max-height:100px;
  margin:0 auto;
}
.liste-services .bloc-service figure {
  margin-bottom:40px;
}
.liste-services .bloc-service .intitule {
  font-size:16px;
  font-weight:700;
  line-height:1.22em;
}
.section-service-transport-express .call-to-action {
  text-align:center;
  margin-top:40px;
}
.section-pourquoi-choisir-oofrais h2 {
  text-align: center;
}
.section-pourquoi-choisir-oofrais .row,
.section-etapes-solution .row {
  padding-bottom:var(--main-padding);
}
.section-pourquoi-choisir-oofrais .row:first-child,
.section-etapes-solution .row:first-child {
  padding-bottom:0;
}
.section-pourquoi-choisir-oofrais .cadre-photo,
.section-etapes-solution .cadre-photo {
  height:var(--cadre-photo-height);
  border-radius: var(--radius-photo);
}
.section-pourquoi-choisir-oofrais .text-container,
.section-couverture-nationale-internationale .text-container,
.section-etapes-solution .text-container {
  height:100%;
}
.section-pourquoi-choisir-oofrais .row:nth-child(even) .text-container {
  padding-left:45px;
}
.section-pourquoi-choisir-oofrais .row:nth-child(odd) .text-container {
  padding-right:45px;
}
.section-pourquoi-choisir-oofrais .text-container h3 {
  color:var(--col-orange);
  font-weight:700;
  margin-bottom:40px;
}
.section-pourquoi-choisir-oofrais .row:last-child h3,
.section-pourquoi-choisir-oofrais .row:last-child .texte,
.section-pourquoi-choisir-oofrais .row:last-child .call-to-action {
  text-align:center;
}
.section-pourquoi-choisir-oofrais .row:last-child .call-to-action {
  margin-top:40px;
}
.section-couverture-nationale-internationale {
  background-color: var(--col-marine);
}
.section-couverture-nationale-internationale h3 {
  color:var(--col-orange);
  margin-bottom:40px;
}
.section-couverture-nationale-internationale .texte {
  color:var(--col-blanc);
}
.section-etapes-solution h2 {
  text-align:center;
  margin:20px auto 60px;
}
.section-etapes-solution .row:nth-child(even) .content-text {
  padding-left:30px;
}
.section-etapes-solution .row:nth-child(odd) .content-text {
  padding-right:30px;
}
.section-etapes-solution .content-text {
  display:flex;
}
.section-etapes-solution .content-text .number {
  color:var(--col-orange);
  font-weight:800;
  font-size:128px;
  line-height:150px;
  width:150px;
  text-align:center;
}
.section-etapes-solution .text-container {
  display: flex;
  flex-direction: column;
  padding-left:30px;
}
.section-etapes-solution .text-container h3 {
  color:var(--col-marine);
  font-weight:700;
  margin-bottom:20px;
}
.section-confiance h2,
.section-confiance .texte,
.section-confiance .call-to-action {
  text-align: center;
}
.section-confiance .call-to-action {
  margin-top: 40px;
}
footer {
  background-color: var(--col-marine);
  color:var(--col-blanc);
  padding: 90px 0;
  position: relative;
}
footer .logo-footer {
  text-align: center;
  max-width: 175px;
}
footer .social-content {
  width:100%;
  text-align:left;
  font-size:14px;
  margin-top:40px
}
ul.reseaux-sociaux {
  list-style:none;
  padding:0;
  margin:0;
  display:flex;
  justify-content:space-between;
  max-width:180px
}
footer .social-content .reseaux-sociaux a {
  margin:0 10px 20px;
  transition:all .35s ease-in-out;
  font-size:0
}
footer .social-content .reseaux-sociaux a:hover {
  color:var(--col-ciel)!important
}
footer .social-content .reseaux-sociaux i {
  font-size:16px;
  vertical-align:top;
  margin-right:4px
}
footer .fab::before {
  color: var(--col-blanc);
}
footer a {
  text-decoration: none!important;
  color: var(--col-blanc);
}
footer .column-footer-content,
footer .menu-footer-principal {
  height: 100%;
}
footer .menu-footer-principal ul,
footer .menu-footer-secondaire ul {
  list-style: none;
  padding: 0;
  margin: 0px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
footer .menu-footer-principal ul {
  height: 100%;
}
footer .menu-footer-principal li,
footer .menu-footer-secondaire li {
  font-size: 16px;
  font-weight: 400;
  font-stretch: normal;
  font-style: normal;
  line-height: 120%;
  letter-spacing: 0em;
  text-align: left;
  color: var(--col-blanc);
  position: relative;
}
footer .menu-footer-secondaire li {
  margin-bottom: 8px;
}
footer a {
  color: rgba(var(--rgb-blanc),1)!important;
}
footer a:hover {
  color: rgba(var(--rgb-ciel),1)!important;
}
footer .menu-footer-secondaire ul li.bt-blanc a {
  background-color: var(--col-blanc);
  color: var(--col-marine)!important;
  text-align:center;
  cursor:pointer;
  padding: 0px 18px 0px 18px;
  border-radius: 100px;
  line-height: 40px;
  height: 40px;
  width:auto;
  text-decoration: none;
  display: inline-block;
  margin-bottom: 20px;
}
footer .menu-footer-secondaire ul li.bt-blanc a:hover {
  background-color: var(--col-ciel);
  color: var(--col-blanc)!important;
}
footer .copyrights-container {
  margin-top: 20px;
  font-size: 12px;
  font-weight: 400;
  text-align: left;
  color: rgba(var(--rgb-blanc),1);
  position: relative;
}
footer .credits {
  text-align: left;
  margin-top: 20px;
}
footer .credits img {
  max-width: 50px;
  margin-left: 10px;
}
footer .copyrights-container p {
  margin: 0;
}
@media only screen and (max-width: 1499px) {
  :root {
    --width-container: 1140px;
  }
}
@media only screen and (max-width: 1199px) {
  :root {
    --size-h1: 50px;
    --size-h2: 34px;
    --size-h3: 26px;
    --size-h4: 22px;
    --size-surtitre:  18px;
    --size-txt:  16px;
    --size-txt-big:  22px;
    --size-anime:  160px;

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

    --slider-home-height:  100vh;
    --slider-page-height:  100vh;
    --cadre-photo-height:450px;

    --width-container: 960px;

    --main-padding:  60px;
    --main-padding-left:  60px;
    --main-padding-right: 60px;

    --height-slide-vertical: 700px;

    --radius-photo:  20px;
    --radius-min:  20px;
  }
  header .banner-content .texte {
    max-width: 75%;
  }
  .liste-services .bloc-service img {
    max-height:80px;
  }
}
@media only screen and (max-width: 991px) {
  :root {
    --size-h1: 44px;
    --size-h2: 32px;
    --size-h3: 26px;
    --size-h4: 22px;
    --size-surtitre:  18px;
    --size-txt:  16px;
    --size-txt-big:  22px;
    --size-anime:  160px;

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

    --slider-home-height:  100vh;
    --slider-page-height:  100vh;
    --cadre-photo-height:400px;

    --width-container: 720px;

    --main-padding:  60px;
    --main-padding-left:  60px;
    --main-padding-right: 60px;

    --height-slide-vertical: 700px;

    --radius-photo:  20px;
    --radius-min:  20px;
  }
  .banner-content h1 {
    max-width:90%;
  }
  header .banner-content .texte {
    max-width: 80%;
  }
  .section-service-transport-express .liste-services {
    grid-template-columns:1fr 1fr;
    grid-row-gap:30px;
  }
  .liste-services .bloc-service img {
    max-height: 80px;
  }
  .section-pourquoi-choisir-oofrais .cadre-photo, 
  .section-etapes-solution .cadre-photo {
    margin-bottom: 40px;
  }
  .section-pourquoi-choisir-oofrais .row:nth-child(even) .text-container {
    padding-left:0px;
  }
  .section-pourquoi-choisir-oofrais .row:nth-child(odd) .text-container {
    padding-right:0px;
  }
  .carte-france {
    text-align:center;
    margin-bottom:40px;
  }
  .carte-france img {
    max-height: 400px;
    width: auto;
    margin: 0 auto;
  }
  .section-etapes-solution .row:nth-child(even) .content-text {
    padding-left:0px;
  }
  .section-etapes-solution .row:nth-child(odd) .content-text {
    padding-right:0px;
  }
  footer .social-content {
    margin-bottom:40px;
  }
}
@media only screen and (max-width: 767px) {
  :root {
    --size-h1: 40px;
    --size-h2: 30px;
    --size-h3: 24px;
    --size-h4: 20px;
    --size-surtitre:  18px;
    --size-txt:  16px;
    --size-txt-big:  22px;
    --size-anime:  160px;

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

    --slider-home-height:  100vh;
    --slider-page-height:  100vh;
    --cadre-photo-height:360px;

    --width-container: 540px;

    --main-padding:  60px;
    --main-padding-left:  60px;
    --main-padding-right: 60px;

    --height-slide-vertical: 700px;

    --radius-photo:  20px;
    --radius-min:  20px;
  }
  .banner-content h1 {
    max-width: 85%;
  }
  .liste-services .bloc-service img {
    max-height: 60px;
  }
  .section-etapes-solution .content-text .number {
    font-size:100px;
  }
}
@media only screen and (max-width: 575px) {
  :root {
    --size-h1: 38px;
    --size-h2: 28px;
    --size-h3: 24px;
    --size-h4: 20px;
    --size-surtitre:  18px;
    --size-txt:  16px;
    --size-txt-big:  22px;
    --size-anime:  160px;

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

    --slider-home-height:  100vh;
    --slider-page-height:  100vh;
    --cadre-photo-height:340px;

    --width-container: 100%;

    --main-padding:  60px;
    --main-padding-left:  60px;
    --main-padding-right: 60px;

    --height-slide-vertical: 700px;

    --radius-photo:  20px;
    --radius-min:  20px;
  }  
}
@media only screen and (max-width: 499px) {
  :root {
    --size-h1: 38px;
    --size-h2: 28px;
    --size-h3: 24px;
    --size-h4: 20px;
    --size-surtitre:  18px;
    --size-txt:  16px;
    --size-txt-big:  22px;
    --size-anime:  160px;

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

    --slider-home-height:  100vh;
    --slider-page-height:  100vh;
    --cadre-photo-height:300px;

    --width-container: 100%;

    --main-padding:  60px;
    --main-padding-left:  60px;
    --main-padding-right: 60px;

    --height-slide-vertical: 700px;

    --radius-photo:  20px;
    --radius-min:  20px;
  }  
  .banner-content h1 {
    max-width: 90%;
  }
  header .banner-content .texte {
    max-width: 90%;
  }  
}
@media only screen and (max-width: 449px) {
  :root {
    --size-h1: 38px;
    --size-h2: 28px;
    --size-h3: 24px;
    --size-h4: 20px;
    --size-surtitre:  18px;
    --size-txt:  16px;
    --size-txt-big:  22px;
    --size-anime:  160px;

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

    --slider-home-height:  100vh;
    --slider-page-height:  100vh;
    --cadre-photo-height:260px;

    --width-container: 100%;

    --main-padding:  60px;
    --main-padding-left:  60px;
    --main-padding-right: 60px;

    --height-slide-vertical: 700px;

    --radius-photo:  20px;
    --radius-min:  20px;
  }  
  .banner-content h1 {
    max-width: 95%;
  }
  header .banner-content .texte {
    max-width: 95%;
  }  
  .section-etapes-solution .content-text .number {
    font-size: 80px;
    line-height: 80px;
  }
}
@media only screen and (max-width: 399px) {
  .section-service-transport-express .liste-services {
      grid-template-columns: 1fr;
  }  
  footer .menu-footer-principal li, 
  footer .menu-footer-secondaire li {
    font-size: 14px;
  }
}
@media only screen and (max-height: 749px) {
  .banner .logo {
    padding-top: 40px;
    height: 80px;
  }
  .banner-content .text-content {
    height: calc(100% - 80px);
  }
}
@media only screen and (max-height: 699px) {
  .banner .logo {
    padding-top: 20px;
    height: 60px;
  }
  .banner-content .text-content {
    height: calc(100% - 60px);
  }
  .banner-content h1,
  header .banner-content .texte {
    margin-bottom:30px;
  }
}
@media only screen and (max-height: 699px) {
  .banner-content h1,
  header .banner-content .texte {
    margin-bottom:20px;
  }
}