* {
  margin: 0;
  padding: 0;
  border-style: none;
  list-style-type: none;
  box-sizing: border-box;
  font-family: proxima-nova, sans-serif;
}

html {
  background-color: #f2f2f2;
}

a {
  cursor: pointer;
}


.mfp-zoom-out-cur,
.mfp-container,
.mfp-bg,
.mfp-ready {
  overflow: hidden;
}



header {
  position: fixed;
  z-index: 98;

  display: grid;
  grid-template-columns: 0.2fr 1fr 0.2fr;
  width: 100vw;
  /* padding: 20px; */
  background-color: #363636;
  transition: background 0.5s;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0) 30%);
}

.headerHidden {
  background-color: transparent !important;
}

main {
  position: relative;
  width: auto;
  /* overflow-x: hidden; */
  /* overflow-y: scroll; */
}

#mainframe {
  display: grid;
  position: absolute;
  /* height: 100vw; */
  width: 100vw;
}

#homeBtn img {
  /* -webkit-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.15);
box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.15); */
  width: 90px;
  position: relative;
  filter: drop-shadow(0px 3px 10px #00000026);
  padding: 10px;
}

#burgerMenubtn {
  display: none;
  background-image: url("img/icons/burger_menu.png");
  position: fixed;
  top: 8px;
  right: 8px;
  width: 35px;
  height: 35px;
  z-index: 99;
  background-size: cover;
  cursor: pointer;

}

#burgerMenuCross {
  display: none;
  background-image: url("img/icons/cross.png");
  position: fixed;
  top: 8px;
  right: 8px;
  width: 35px;
  height: 35px;
  z-index: 5;
  background-size: cover;
  cursor: pointer;
}

#menuAnim {
  z-index: 2;
  position: absolute;
  background-color: #39ab27;
  width: 0px;
  bottom: -13px;
  height: 5px;
  opacity: 0;
  transition: all 0.5s ease-in-out;
  border-radius: 27px;
  z-index: 5;
}

.menunoir {
  color: #666 !important;
}

.menuGradient {
  background: linear-gradient(0deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 93%) 0%);
}

#menu h3 {
  transition: 0.5s;
}

#menu {
  display: grid;
  grid-template-columns: 1fr .2fr;
  grid-gap: 100px;
  justify-self: center;
  filter: drop-shadow(0px 3px 10px #00000026);
  margin: 5px 0;
  min-width: 50vw;
  max-width: 80%;
  /*   margin-left:143px; */
}

.activeOnglet * {
  color: green !important;
}

#menu h3 {
  font-family: proxima-nova, sans-serif;
  font-size: 15px;
  font-weight: 400;
  white-space: nowrap;
}

#menu a {
  text-decoration: none;
  color: #FFF;
  display: grid;
  align-items: center;
}

#menu li {
  z-index: 3;
  display: grid;
  color: #FFF;
  text-align: center;
  border-radius: 27px;
  background-color: rgba(255, 255, 255, 0);
  transition: all .5s ease;
  transform: translate(0, 0);
  position: relative;
}

#menu ol {
  /* z-index: 1; */
  display: grid;
  grid-template-columns: repeat(5, auto);
  grid-gap: 30px;
  /*   background-color: #39AB27; */
  border-radius: 27px;
}

#menu ol>li:after,
#langSelect:after,
#appBtn:after {
  content: '';
  position: absolute;
  height: 5px;
  bottom: -13px;
  width: 16px;
  left: calc(50% - 7px);
  border-radius: 60px;
  background-color: white;
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}

#menu ol>li:hover:after,
#langSelect:hover:after,
#appBtn:hover:after {
  width: 10px;
  left: calc(50% - 5px);
  opacity: 1;
}

#appBtn {
  background-color: transparent;
  position: relative;
}

/* #menu li:hover > a , #menu .active > a, #langSelect {
  color: #39AB27;
} */
#menu .active>a,
#langSelect {
  color: #39AB27;
}

/* ============  DropDown Language  ============ */

#langSelect {


  cursor: pointer;
  user-select: none;
  position: relative;
  display: grid;
  align-content: center;
  color: #FFF;
  text-align: center;
  font-family: proxima-nova, sans-serif;
  font-size: 15px;
  font-weight: 400;
  min-width: 60px;

  display: none;
}

#lang {
  overflow: hidden;
  z-index: -1;
  position: absolute;
  /*     padding-top: 24%; */
  padding: 10px 0;
  top: 75%;
  width: 100%;
  /*     height: 189%; */
  background-color: white;
  border-radius: 20px;
  transform: scaleY(1);
  transition: all .2s ease-out;
  z-index: 3;
}

#lang li,
#lang label {
  cursor: pointer;
  color: #39AB27;
  font-size: 15px;
}

input[type=radio],
input[type=checkbox] {
  display: none;
}

#select:not(:checked)+#lang {
  padding-top: 0;
  height: 0;
  padding: 0;
}

/* ============  Fin DropDown Language  ============ */

#appBtn {
  display: grid;
  justify-content: center;
  align-items: center;
  /*   background-color: #39AB27; */
  border-radius: 27px;
}

#socialLink {
  width: 112px;
  display: grid;
  grid-template-columns: repeat(3, 24px);
  align-items: end;
  justify-content: space-around;
  justify-self: center;
  align-self: center;
}

#socialLinkHidden {
  display: none;
}

#socialLink a {
  display: grid;
  align-items: center;
}

#icon-yt {
  width: 30px;
  justify-self: center;
}

#centeredHome {
  position: absolute;
  display: flex;
  flex-direction: column;
  padding-bottom: 130px;
  bottom: 0;
  top: 0;
  left: 0;
  right: 0;
  align-items: center;
  justify-content: end;
}

#realaction {
  /*   display:none; */
  background-color: rgb(0, 0, 0, 0.1);
  z-index: 97;
  border: 3px solid #FFFFFF;
  border-radius: 27px;
  padding: 8px 42px 8px 42px;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease-in;
  flex-grow: 0;
  height: fit-content;
  margin-top: 20px;
}

#studio3D {
  /*   display:none; */
  z-index: 97;
  /*     padding-top: 65vh; */
  color: #ffffff;
  font-size: 1.5em;
  font-weight: 400 !important;
}

#studio3D h4 strong {
  font-weight: 600 !important;
}


#realaction h4,
#realaction a {
  text-decoration: none;
  color: #FFF;
  font-family: proxima-nova, sans-serif;
  font-size: 20px;
  font-weight: 200;
}

#realaction:hover {
  background-color: #FFF;
  cursor: pointer;
  transform: scale(1.05);
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.40);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.40);
}

#realaction:hover>a h4 {
  color: #39AB27;
}

.contact {
  z-index: 98;
  position: fixed;
  bottom: 30px;
  right: 30px;
  background-color: #39AB27;
  border-radius: 7px;
  height: 70px;
  width: 70px;
  background-image: url("img/icons/Contact-icon.png");
  background-repeat: no-repeat;
  background-position: center;
  transition: all 0.15s ease-in-out;
}

.contactPopup {
  display: flex;
  justify-content: center;
  align-content: center;
  cursor: default !important;
}

#contactPopupContent {
  border-radius: 7px;
  background-color: white;
  width: 500px;
  min-height: 550px;
  padding: 30px 50px;
  display: flex;
  flex-direction: column;
  z-index: 10;
  justify-content: space-between;
  position: absolute;
  bottom: 30px;
  right: 30px;
  -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.15);
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.15);
}

#contactPopupContent a {
  font-family: proxima-nova, sans-serif;
  font-weight: 900;
  font-size: 1.2em;
  color: #bbbbbb;
  text-decoration: none;
  text-underline-offset: 10px;
  display: flex;
  align-items: center;
  margin-top: 20px;
}

#contactPopupContent a:hover {
  text-decoration: underline 3px #bbbbbb;
}

#closePopupCross {
  background-image: url("img/icons/cross.png");
  background-size: cover;
  position: absolute;
  top: 5px;
  right: 5px;
  width: 50px;
  height: 50px;
  cursor: pointer;
}

#contactPopupContent h7 {
  font-family: proxima-nova, sans-serif;
  font-weight: 900;
  font-size: 2em;
  color: #39AB27;
}

#contactPopupContent input,
textarea {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  color: white;
  background-color: #bbbbbb;
  padding: 10px;
  border-radius: 5px;
  resize: none;
  margin-bottom: 15px;
}

#contactPopupContent input::placeholder,
textarea::placeholder {
  font-family: proxima-nova, sans-serif;
  font-weight: 700;
  color: #efefef;
  font-style: italic;
}

#send {
  width: fit-content;
  width: intrinsic;
  /* Safari/WebKit uses a non-standard name */
  width: -moz-max-content;
  /* Firefox/Gecko */
  width: -webkit-max-content;
  /* Chrome */
  background-color: #39AB27;
  border-radius: 7px;
  padding: 15px 30px;
  color: white;
  font-size: 1.1em;
  font-weight: 900;
  align-self: end;
  margin-top: 15px;
  cursor: pointer;
}

#closeContact {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  cursor: pointer;
}

#contactPopup {
  cursor: default !important;
}

.contact a {
  z-index: 99;
  display: grid;
}

.contactanim {
  background-image: none;
  bottom: 200px;
  right: 700px;
  top: 200px;
  left: 700px;
  background-color: #FFF;
  width: auto;
  height: auto;
  border-radius: 27px;
}

.contact:hover {
  background-color: #FFF;
  background-image: url("img/icons/Contact-icon_Hover.png");
  cursor: pointer;
  transform: scale(1.1);
}

#textContact {
  z-index: 98;
  position: fixed;
  bottom: 30px;
  right: 69px;
  color: #FFF;
  background-color: #39AB27;
  border-radius: 7px;
  padding: 6px 60px 6px 25px;
  font-family: proxima-nova, sans-serif;
  font-size: 14px;
  font-weight: 200;
  opacity: 1;
  transform: translate(0px, 0px);
  transition: all 1s ease-in-out;
  pointer-events: none;
  height: 70px;
  display: flex;
  align-items: center;
}

.textContact {
  opacity: 0 !important;
  transform: translate(50px, 0px) !important;
}

.fullScreen {
  display: flex;
  justify-content: center;
  /* width: 100vw; */
  position: relative;
  height: 100%;
  align-items: center;
  flex-direction: column;
}

.fullScreen video {
  position: absolute;
  width: 100%;
  height: 100%;
  align-self: center;
  object-fit: cover;
  pointer-events: none;
}


#protectionWrapperStudio {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}



/* ///////////////////////////////////////////////////////////////// FULLPAGE */
#fullpage {
  /* display: grid;
  grid-gap: 0;
  grid-auto-rows: minmax(100px, auto); */
  background-color: #363636;


  width: 100%;
  height: 100vh;
}

#fullpage>.section:nth-child(1) {
  width: 100% !important;
  height: 100% !important;
}

.fp-slide {
  position: relative;
}

.section {
  /* display:grid;
  grid-auto-rows: minmax(100px, auto); */
  position: relative;
  /* width: 100vw; */
  min-height: 100vh;
  width: 1000px;
  margin: 0 auto !important;
  /*   max-height: 100vh !important; */
}



.fullpageContentWrapper {
  grid-column: 6 / 36;
  grid-row: 7 / 32;
  /* background-color: #fff; */
  border-radius: 26px;
  /* -webkit-box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.15);
  box-shadow: 0px 10px 10px 0px rgba(0,0,0,0.15); */
}

.fp-slides {
  overflow: visible !important;
}


/* ///////////////////////////////////////////PAGE SERVICES/////////////////////////////////////////// */
button[data-action="stop"] {
  display: none;
}

.servicesslide {
  position: relative;
  min-height: 100vh;
  display: flex;
}

#scrollServices {
  height: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

#scrollServices .fullpageContentWrapper {
  z-index: 0;
  display: flex;
  justify-content: space-between;
  gap: 40px;
}

.slideCarrousel aside {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  width: 40%;
  /* max-width:450px; */
  min-width: 375px;
  position: relative;
  justify-content: center;
}

.carrousel .slideCarrousel aside h1 {
  pointer-events: none;
  font-family: proxima-nova, sans-serif;
  position: absolute;
  left: -55px;
  font-size: 50em;
  top: -0.37em;
  color: #efefef;
  -webkit-text-stroke: 30px #efefef;
  z-index: 0;
}

.carrousel .slideCarrousel aside h1:before {
  content: attr("data-num");
  pointer-events: none;
  font-family: proxima-nova, sans-serif;
  position: absolute;
  font-size: 50em;
  top: -10px;
  right: 10px;
  color: #efefef;
  -webkit-text-stroke: 30px #efefef;
  z-index: 1;
}

.carrousel {
  width: 100%;
  height: 100vh;
}

.slideCarrousel {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}

.servicesslide:nth-child(2)>.slideCarrousel {
  flex-direction: row-reverse;
}

.servicesslide:nth-child(2)>.slideCarrousel>.exemples::after {
  background: linear-gradient(-90deg, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 0) 31%);
}

/* dots pages slider */
.dotSliderWrapper {
  position: absolute;
  display: flex;
  justify-content: center;
}

.dotSliderVertical {
  flex-direction: column;
  width: 16px;
  top: 0;
  bottom: 0;
  right: -32px;
}

.dotSliderVertical:before {
  content: "";
  display: none;
  background-color: white;
  position: absolute;
  height: 140px;
  width: 100%;
  border-radius: 26px;
}

.dotSliderHorizontal {
  flex-direction: row;
  left: 0;
  right: 0;
  height: 16px;
  bottom: 32px;
}

.dotSlider {
  position: relative;
  margin: 10px;
  width: 16px;
  height: 16px;
  max-width: 16px;
  max-height: 16px;
  background-color: #efefef;
  transition: all 0.3s ease-in-out;
  border-radius: 8px;
  box-shadow: 2px 2px 10px rgb(0 0 0 / 16%);
}

.dotSliderActive {
  max-width: 32px;
  max-height: 32px;
  flex-grow: 1;
  background-color: #39AB27 !important;
}


.textService {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  z-index: 1;
  padding: 0;
  width: 60%;
  min-width: 300px;
  padding: 20px 20px 80px 20px;
  border: solid 2px #47aa2c;
  border-radius: 20px;
  position: relative;

  -webkit-box-shadow: 14px 19px 45px 13px rgba(71, 170, 44, 0.05);
  box-shadow: 14px 19px 45px 13px rgba(71, 170, 44, 0.05);
}

.textService:nth-child(1)::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 40px;
  z-index: 2;
  background: url("img/pie-graphic.png") no-repeat center;
  background-size: contain;
  animation: swing 2s infinite alternate;
  animation-delay: 0ms;
}

.textService:nth-child(2)::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 40px;
  z-index: 2;
  background: url("img/customer-support.png") no-repeat center;
  background-size: contain;
  animation: swing 2s infinite alternate;
  animation-delay: 666ms;
}

.textService:nth-child(3)::after {
  content: "";
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  height: 40px;
  z-index: 2;
  background: url("img/vr.png") no-repeat center;
  background-size: contain;
  animation: swing 2s infinite alternate;
  animation-delay: 1320ms;
}

h2 {
  pointer-events: none;
  font-family: proxima-nova, sans-serif;
  font-size: 3.5em;
  color: #39ab27;
  z-index: 2;

  /* max-width:70%; */
  line-height: 1;
  align-self: flex-start;
  margin-bottom: 20px;

  /* padding-left:15%; */
}

.textService p {
  /* max-width: 85%; */
  font-family: proxima-nova, sans-serif;
  align-self: flex-end;
  color: #666;
  text-align: justify;

  /* padding-left:15%; */
}

.textService h2 {
  font-size: 2rem;
}

.exemples {
  /* display:grid;
  grid-gap: 10px;
  grid-template-columns: repeat(2, 1fr);
  grid-auto-rows: repeat(4, 1fr);

  flex-grow:1;
  padding:20px;

  z-index:1;
  height: fit-content; */

  position: relative;

  width: 60%;
  height: auto;

  background-size: cover;
  background-position: right;

}

.exemples::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: linear-gradient(90deg, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 0) 31%);
}

.exemples div {
  width: 50%;
  height: 140px;
  background-color: #efefef;
  border-radius: 16px;
  /*   padding:10px; */
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 15%);
  /*   overflow:hidden; */

  width: auto;
  /* height:auto; */
  background-size: cover;
  background-position: center;
  position: relative;
}

.exemples h4 {
  font-family: proxima-nova, sans-serif;
  /* text-shadow: 1px 1px 4px rgba(0,0,0,1); */
  color: #39ab27;
  background-color: white;
  padding: 10px 20px 10px 10px;
  max-width: fit-content;
  width: intrinsic;
  /* Safari/WebKit uses a non-standard name */
  width: -moz-max-content;
  /* Firefox/Gecko */
  width: -webkit-max-content;
  /* Chrome */
  border-radius: 14px 0px 30px 0px;
  margin: -1px 0 0 -1px;
  max-width: 75%;
  position: absolute;
}

/* ///////////////////////////////////////////FIN PAGE SERVICES/////////////////////////////////////////// */






/* ///////////////////////////////////////////PAGE REALISATIONS/////////////////////////////////////////// */
#scrollRealisations {
  /*   background-color: #e5e5e4; */
  width: auto;
  height: auto;
}

#scrollRealisations .protectionWrapper {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  position: relative;
  margin: 180px 0;
  gap: 60px;
}

#scrollServices .protectionWrapper {
  position: relative;
}

#scrollRealisations .dotSliderWrapper {
  right: 7%;
}

#scrollRealisations .fullpageContentWrapper {
  display: flex;
  flex-direction: row;
  background-color: transparent;
  z-index: 1;
  margin: 0 50px;
  box-shadow: none;
  -webkit-box-shadow: none;
}

#scrollRealisations .BGreal {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  filter: blur(0px) brightness(100%);
  background-size: cover;
  background-position: center;
  transition: filter 1s;
}

.BGblured {
  filter: blur(2px) brightness(10%) contrast(0.5) !important;
}



.visibleProject {
  opacity: 1 !important;
}

.pHideAfter::after {
  opacity: 0 !important;
}



.projectSpacer {
  margin: 100px 15%;
  display: flex;
  justify-content: center;
  height: 4px;
  position: relative;
  /* opacity: 0; */
}

.projectSpacer:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  /*   left:40%;right:40%; */
  width: 950px;
  max-width: 100%;
  border-radius: 30px;
  /* background-color: #39AB27; */

}

.description {
  width: 30%;
  /*   min-width:420px;
  max-width:500px; */

  /*   height:100%; */
  padding: 25px 40px;

  display: flex;
  flex-direction: column;

  border-radius: 26px;
  /* background-color: white; */
  /*   margin:10px 0; */
}

.description h5 {
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  font-style: normal;
  color: #444444;
  font-size: 3em;
  line-height: 1.2;
}

.description p {
  position: relative;
  font-family: proxima-nova, sans-serif;
  font-weight: 400;
  font-style: normal;
  color: #666;
  font-size: 1.2em;
  padding-right: 30px;
  padding-left: 35px;
  margin-top: 30px;

  margin-bottom: 25px;
  text-align: justify;
}

.description p a,
.textService a {
  font-weight: 700;
  color: #39AB27;
}

.description p:hover::after {
  text-decoration: underline;
}

/* .description p::after{
    content: "lire la suite";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;bottom: 0;
    background: rgb(255,255,255);
    background: linear-gradient(0deg, rgba(255,255,255,1) 15%, rgba(255,255,255,0) 110%, rgba(255,255,255,0) 100%);
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    font-family: proxima-nova, sans-serif;
    font-weight: 700;
    color: #666;
    opacity:1;
  transition:all 0.5s;
} */
.description .capsuleClient {
  margin: 15px 0 30px 0;
  padding: 8px 20px 8px 20px;
  border-radius: 50px;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 16%);
  background-color: white;
  width: fit-content;
  width: intrinsic;
  /* Safari/WebKit uses a non-standard name */
  width: -moz-max-content;
  /* Firefox/Gecko */
  width: -webkit-max-content;
  /* Chrome */
}

.capsuleClient {
  display: none;
}

.description .capsuleClient img {
  height: 40px;
  width: auto;
  /*   filter: drop-shadow(2px 2px 2px #00000040); */
}

.imgsProjet {
  height: auto !important;
  /*     margin: 0 30px;
    padding-right: 30px; */
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-around;
  /* gap: 10px; */
  row-gap: 20px;
  align-items: center;
  box-shadow: 12px 12px 24px #c6c6c647, -12px -12px 24px #ffffff;
  border-radius: 7px;
  padding: 15px;
}

.imgsProjet>img {
  border-radius: 26px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 25%);
  cursor: pointer;
  object-fit: cover;
  flex-shrink: 6;
  max-width: 32.5%;
}

.imgsProjet img:nth-child(2) {
  max-width: calc(65% + 10px);
  min-width: calc(65% + 10px);
  width: calc(65% + 10px);
}


.urlVideos {
  margin-left: 35px;
  margin-right: 30px;
  padding: 15px 25px;
  border-radius: 7px;
  background-color: #47aa2c;
  color: white;
  width: fit-content;
  font-weight: bold;
  display: flex;
  align-items: center;
  text-decoration: none;
  margin-top: auto;

  transition: all 0.15s;

  -webkit-box-shadow: 5px 5px 27px -30px rgba(255, 0, 0, 0);
  box-shadow: 5px 5px 27px -30px rgba(255, 0, 0, 0);
}

.urlVideos:hover {
  background-color: #f40000;
  -webkit-box-shadow: 5px 5px 27px 12px rgba(255, 0, 0, 0.5);
  box-shadow: 5px 5px 27px 12px rgba(255, 0, 0, 0.5);
}

#btnGEODINO {
  margin-top: 25px;
  margin-left: 35px;
  margin-right: 30px;
  padding: 15px 25px;
  border-radius: 7px;
  background-color: #47aa2c;
  color: white;
  width: fit-content;
  font-weight: bold;
  display: flex;
  align-items: center;
  text-decoration: none;

  transition: all 0.15s;

  -webkit-box-shadow: 5px 5px 27px -30px rgba(255, 0, 0, 0);
  box-shadow: 5px 5px 27px -30px rgba(255, 0, 0, 0);
  /* pointer-events: none; */
}

#btnGEODINO:hover {
  cursor: not-allowed;
}

.YTpopup {
  height: 100%;
  Width: 50px;

  /* filter: brightness(100); */

  margin-left: 15px;
}










/* ///// NOUVEAU SLIDER PROJECT///// */

.sliderProjects {
  height: fit-content;
  width: 70%;
}

.splide__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  cursor: zoom-in;
}

.splide__track--draggable {
  /* border-radius: 7px; */
  /* z-index: 1; */
  /* -webkit-box-shadow: -10px 10px 0px 0px #39AB27;
  box-shadow: -10px 10px 0px 0px #39AB27; */
  max-height: 70vh;

  border-radius: 7px;
  /* background: #f2f2f2;
  box-shadow: 12px 12px 24px #c6c6c6,
    -12px -12px 24px #ffffff; */
}


/* ///// FIN NOUVEAU SLIDER PROJECT///// */














.tags {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 15px;
}

.tag {
  background-color: #39AB27;
  color: white;
  font-family: proxima-nova, sans-serif;
  border-radius: 20px;
  padding: 2px 35px 2px 35px;
  margin-right: 10px;
  margin-bottom: 10px;
  font-weight: 600;
  position: relative;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 15%);
}




/* /////////////////////////////////// POPUP /////////////////////////////////////////// */
#popup {
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;

  padding: 5%;
  background-color: rgba(62, 62, 62, 0.85);
  z-index: 100;
  cursor: pointer;
  opacity: 1;
  transition: all 0.2s;
}

.transparentPopup {
  opacity: 0 !important;
}

#popup img {
  max-width: 100%;
  max-height: 100%;

  /*   width: fit-content; width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;

  height: fit-content; height: intrinsic;
  height: -moz-max-content;
  height: -webkit-max-content;  */

  width: auto;
  height: auto;

  border-radius: 30px;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 25%);
}


/* /////////////////////////////////// FIN POPUP /////////////////////////////////////////// */


/* ///////////////////////////////////////////PAGE STUDIO/////////////////////////////////////////// */
#sectionStudio {
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.secStudio {
  /* overflow: scroll; */
  /* display: flex;
  align-items: center; */

  display: flex;
  justify-content: stretch;

  min-height: auto;
  margin: 70px;
  border-radius: 7px;
  /* box-shadow: 12px 12px 24px #c6c6c647, -12px -12px 24px #ffffff; */
}

.secStudio .projectSpacer:after {
  background-color: #39AB27 !important;
}

.secStudio h2 {
  margin: 20px 0 !important;
}


#aboutLeft {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  width: 100%;
}

#contentAboutLeft {
  /* padding: 83px 105px 83px 105px; */
  padding: 10%;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* justify-content: flex-start; */
}



h6 {
  font-weight: 400;
  font-size: 1.8em;
  color: #39AB27;
  position: relative;
  padding-left: 160px;
}

h6::after {
  position: absolute;
  content: "";
  width: 140px;
  left: 0;
  top: 15px;
  bottom: 15px;
  background-color: #C0C0C0;
  border-radius: 50px;
  max-height: 12px;
}

#aboutLeft #contentAboutLeft p {
  padding: 30px;
  font-weight: 400;
  color: #666;
  font-size: 1.3em;
}

#studioLeftShift {
  display: flex;
  flex-direction: column;
}

#aboutClients {
  display: flex;
  flex-direction: row;
  /* flex-wrap: wrap; */
  padding: 30px;
  justify-content: space-around;
  align-items: center;
  overflow: hidden;
  /*   margin:auto; */
}

@keyframes scroll {
  0% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(-50%);
  }
}

.logos {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  animation: scroll 45s linear infinite;
  gap: 50px;
  justify-content: space-evenly;
  align-items: center;
}

#aboutClients a {
  display: flex;
}

#aboutClients a img {
  max-width: 80px;
  max-height: 60px;
  min-width: 60px;
  /*   width: fit-content; width: intrinsic;
  width: -moz-max-content;
  width: -webkit-max-content;

  height: fit-content; height: intrinsic;
  height: -moz-max-content;
  height: -webkit-max-content;  */

  width: auto;
  height: auto;

  object-fit: scale-down;

  margin: 12.5px;
}

#aboutVR3D {
  margin: 0px 0 70px 0;
}

#vr3Dcontent {
  display: flex;
  flex-direction: column;
  align-items: center;
}

#vr3Dcontent p {
  text-align: justify;
}

#vr3Dcontent b {
  color: #da5f3c;
}

#aboutVR3D>h2>img {
  justify-self: left;
  max-height: 50px;
  margin-right: 30px;
}

#vr3Dcontent img {
  justify-self: left;
  max-width: 600px;
  margin-right: 30px;
  /* height: fit-content; */
  height: auto;
}



#mentionsLegales {
  background-color: white;
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  padding: 20px 50px;
  position: relative;

  width: 100%;

  filter: drop-shadow(0px 0px 14px rgba(0, 0, 0, 0.18));

}

/* #mentionsLegales::before {
    content: "";
    position: absolute;
    width: 50px;
    right: -50px;
    top: 0;
    bottom: 0;
    background-color: #39AB27;
    z-index: 0;
} */
#mentionsLegales p {
  font-size: 1em;
  font-weight: 600;
  color: #424242;
}

#mentionsLegales a {
  color: #424242;
  text-decoration: none;
}

#mentionsLegales a:after {
  content: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAoAAAAKCAYAAACNMs+9AAAAQElEQVR42qXKwQkAIAxDUUdxtO6/RBQkQZvSi8I/pL4BoGw/XPkh4XigPmsUgh0626AjRsgxHTkUThsG2T/sIlzdTsp52kSS1wAAAABJRU5ErkJggg==);
  margin: 0 3px 0 5px;
  filter: invert(1);
}

#mentionsLegales a:hover {
  text-decoration: underline;
}

#aboutRight {
  /* background-color: #D2D2D2; */
  padding: 83px 73px;
  /* max-width: 440px;
  min-width: 440px; */
  /* border-radius: 26px; */
  z-index: 1;
  /* box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 16%); */
  position: relative;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}

#aboutRight .dotSliderHorizontal {
  bottom: 74px !important;
}

#titrePartenaires {
  /*
    font-weight: 400;
  padding-left: 50px; */
  /* color: white; */
  margin-bottom: 70px;
  width: 100%;
  max-width: none;

}

#titrePartenaires:after {
  background-color: white;
  max-width: 30px;
}

#secGTAentities {
  width: 100%;
  min-height: auto;
}


.GTAentities {
  display: flex;
  flex-direction: column;
  height: 68%;
  justify-content: space-between;
  align-items: center;
  color: #666;
  font-weight: 500;
  font-size: 1.3em;
  min-height: 400px;
  width: 25%;
}

.GTAentities>p {
  text-align: justify;
}

.GTAentitiesNone {
  display: none !important;
}

.GTAentities img {
  height: 120px;
  max-width: 100%;
  filter: brightness(0.7);
}

.GTAentities a {
  text-decoration: none !important;
}

.knowMore {
  border: 2px solid #666;
  padding: 10px 30px;
  border-radius: 50px;
  color: #666 !important;
  font-family: proxima-nova, sans-serif;
  text-decoration: none !important;
}

#previousEntity,
#nextEntity {
  position: absolute;
  top: calc(73px + 30%);
  cursor: pointer;
  font-size: 1.8em;
  font-weight: 900;
  font-family: proxima-nova, sans-serif;
  color: white;

  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

#previousEntity {
  left: 10px;
}

#nextEntity {
  right: 10px;
}

/* ///////////////////////////////////////////FIN PAGE STUDIO/////////////////////////////////////////// */









@media screen and (max-width: 1100px) {

  #sectionStudio {
    flex-direction: column !important;
    justify-content: stretch;
  }



  h2 {
    font-size: 3.5em;
  }

  #vr3Dcontent {
    flex-direction: column !important;
  }

  .section {
    width: auto;
  }

  #scrollServices .fullpageContentWrapper {
    flex-direction: column;
    gap: 40px;
    align-items: center;

  }
  #scrollServices{
    margin: 50px auto !important;
  }
}


@media screen and (max-width: 1900px),
screen and (max-height: 950px) {
  #aboutClients {
    padding: 10px;
  }

  #aboutLeft #contentAboutLeft p {
    padding: 10px;
  }

  #aboutRight {
    padding: 40px;
    /* max-width: 400px;
    min-width: 400px; */
  }

  #contentAboutLeft {
    /* padding: 32px 110px 32px 110px; */
    /*     justify-content:center; */
  }

  #mentionsLegales {
    padding: 45px 50px 120px 51px;
  }


  #titrePartenaires {
    margin-bottom: 120px;
  }

}

@media screen and (max-width: 1920px),
screen and (max-height: 1140px) {
  .GTAentities {
    font-size: 1em;
    margin-bottom: 90px;
  }

  #aboutLeft #contentAboutLeft p {
    font-size: 1em;
  }

  #scrollRealisations .fullpageContentWrapper {
    margin: 0 210px;
  }
}

@media screen and (max-width: 1420px),
screen and (max-height: 1000px) {
  .fullpageContentWrapper {
    grid-column: 4 / 36;
    grid-row: 5 / 32;
  }



  h6::after {
    width: 50px;
  }

  h6 {
    padding-left: 74px;
  }

  #titrePartenaires {
    padding-left: 74px;
  }

  #titrePartenaires:after {
    max-width: 50px;
  }

  /*   #aboutClients a img {
    max-width: 90px;
    max-height: 90px;
    margin: 7px;
  } */
}



@media screen and (max-width: 1700px) {
  #scrollRealisations .fullpageContentWrapper {
    margin: 0 100px;
  }
}

@media screen and (max-width: 1500px) {
  .description {
    max-width: calc(85% + 10px);
    min-width: calc(85% + 10px);
    width: calc(85% + 10px);
  }

  .imgsProjet img:nth-child(2) {
    width: 32.5%;
    height: auto;
    max-width: 32.5%;
    min-width: auto;
    max-height: none;
  }

  #menu {
    grid-gap: 46px;
  }
}


@media screen and (max-width: 920px),
screen and (max-width: 920px) and (hover: none) {

  #vr3Dcontent img {
    max-width: 95%;
    margin-right: 0;
  }

  .urlVideos {
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .slideCarrousel {
    flex-direction: column !important;
  }


  .sliderProjects img {
    max-height: 30vh;
    max-width: 100vw;
  }

  .projectSlide {
    margin: 0 !important;
  }

  h2 {
    font-size: 3em;
  }

  #mentionsLegales {
    padding: none;
  }

  .secStudio {
    margin: 5px !important;
  }




  .sliderProjects {
    height: auto;
    width: 70%;
  }

  .sliderProjects img {
    min-height: 100%;
    min-width: 100%;

    object-fit: cover;
  }

  .splide__track--draggable {
    border-radius: 0px;
    /* z-index: 1; */
    /* -webkit-box-shadow: 0px 10px 0px 0px #39AB27;
    box-shadow: -10px 10px 0px 0px #39AB27; */
  }



  #menu h3 {
    color: #666;
  }

  #titrePartenaires {
    padding-left: 0;
  }

  .slideCarrousel aside {
    width: auto;
    /* padding-right:50px; */
    max-width: none;
    min-width: none;
  }

  .carrousel .slideCarrousel aside h1 {
    top: -0.47em !important;
  }

  #homeBtn img {
    width: 45px;
    padding: 0;
  }

  /*.exemples{
    display:grid;
    grid-gap: 10px;
    grid-template-columns: repeat(4, repeat(4, minmax(0, 1fr)));
    grid-auto-rows: repeat(2, 1fr);

    flex-grow:1;
    padding:20px;

    z-index:1;
  }*/

  /* .textService {
    padding-top: 15px;
    height: 100%;
    justify-content: space-around;
    flex-direction: column;

    padding: 15% 5% 5% 5%;
    margin: auto;
  } */

  .textService h2 {
    padding-left: 5%;
    padding-right: 5%;

  }

  .textService p {
    padding-left: 0;
  }




  #menu {
    display: flex;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;

    min-width: auto !important;
    max-width: none !important;
    width: 100vw;
    justify-content: center;
    background-color: white;
    margin: 0;
    flex-direction: column;
    transform: translate(100%, 0);

    transition: transform 0.3s ease;
  }

  #lang {
    top: -10px;
    left: calc(50% - 50px);
    width: 100px;
    padding: 10px;
    height: auto;
    background-color: white;
    border-radius: 20px;
    transform: scaleY(1);
    transition: all .2s ease-out;
    z-index: 3;
  }

  #lang li,
  #lang label {
    font-size: 18px;
  }

  #select:not(:checked)+#lang {
    padding: 0;
  }

  #langSelect {
    font-size: 18px;
    font-weight: 500;
  }

  .contact {
    animation: none !important;
  }

  .burgerMenuDisplayed {
    transform: translate(0, 0) !important;
  }

  #menu ol {
    display: flex;
    flex-direction: column;
    grid-gap: 20px;
  }

  #menu h3 {
    font-size: 23px;
    font-weight: 400;
  }



  .dotSliderVertical:before {
    display: block;
  }

  #menu ol>li:after,
  #langSelect:after,
  #appBtn:after {
    display: none;
  }

  #socialLinkHidden {
    display: flex;
    justify-content: space-between;
    /* padding: 7% 30% 0 30%; */
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 130px;
  }

  #socialLinkHidden a {
    width: 27px;
  }

  #burgerMenubtn {
    display: block;
  }

  #burgerMenuCross {
    display: block;
  }



  .exemples {
    width: 100%;
    min-height: 40vh;
  }

  .exemples::after {
    background: linear-gradient(180deg, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 0) 31%) !important;
  }


  .description {
    min-height: 510px;
  }

  .imgsProjet {
    flex-direction: column !important;
  }

  .imgsProjet>* {
    width: 100% !important;
    max-width: 100% !important;
    /* max-height: 70vh; */
    /* min-height:510px; */
  }

  #scrollRealisations .fullpageContentWrapper {
    margin: 0 20px;
  }

  .slideCarrousel aside {
    /* padding-right: 20px; */
    flex-grow: 1;
  }

  .fullpageContentWrapper {
    grid-column: 2 / 35;
    grid-row: 3 / 32;
    margin-top: 30px;
  }

  .carrousel .slideCarrousel aside h1 {
    left: 7px;
    font-size: 25em;
    top: -0.35em !important;
  }

  .textService h2 {
    font-size: 2.5em;

  }

  .textService p {
    /*     font-size: 0.9em; */
    font-size: 0.9em;
    max-width: calc(100% - 40px);
    align-self: center;
  }

  header {
    background: transparent !important;
    display: flex;
    justify-content: flex-start;
    padding: 8px;
  }

  #homeBtn {
    margin: 0;
  }

  #socialLink {
    display: none;
  }

  #sectionStudio {
    overflow: hidden;
    display: flex;
    flex-direction: column;
  }

  #contentAboutLeft {
    padding: 0px;

  }

  h6 {
    font-size: 1.5em;
  }

  #aboutClients a img {
    max-width: 120px;
    max-height: 120px;
    margin: 4px;
    width: fit-content;
    width: intrinsic;
    /* Safari/WebKit uses a non-standard name */
    width: -moz-max-content;
    /* Firefox/Gecko */
    width: -webkit-max-content;
    /* Chrome */
    height: fit-content;
    height: intrinsic;
    /* Safari/WebKit uses a non-standard name */
    height: -moz-max-content;
    /* Firefox/Gecko */
    height: -webkit-max-content;
    /* Chrome */

  }

  #aboutRight {
    padding: 30px 26px;
    max-width: 100%;
    /* min-width: fit-content; */
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-top: 35px;
  }

  #aboutLeft {
    padding: 30px 26px;
    max-width: 100%;
    /* min-width: fit-content; */
    flex-grow: 1;
    display: flex;
    justify-content: center;
    flex-direction: column;
    margin-top: 35px;
  }

  .knowMore {
    margin-top: 20px;
  }

  .GTAentities img {
    height: 69px;
    margin-bottom: 15px;
  }

  .GTAentities {
    width: 50%;
    min-width: 300px;
    min-height: 250px;

  }

  #textContact {
    display: none;
  }

  #contentAboutLeft {
    flex-direction: column;
    justify-content: space-around;
  }

  #contentAboutLeft>div {
    width: auto;
  }

  #aboutLeft #contentAboutLeft p {
    font-size: 1em;
  }

  .GTAentities>p {
    font-size: 0.9em;
    max-width: 75%;
  }

  #aboutRight .dotSliderHorizontal {
    bottom: 32px !important;
  }

  .dotSliderVertical .dotSlider {
    background-color: #c1c1c1;
  }


  #scrollRealisations .protectionWrapper {
    margin: 69px 0;
  }

  #contactPopupContent {
    border-radius: 7px;
    background-color: white;
    width: 100%;
    height: 100%;
    padding: 30px 50px;
    display: flex;
    flex-direction: column;
    z-index: 10;
    justify-content: space-between;
    position: relative;
    bottom: 0;
    right: 0;
    -webkit-box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.15);
    overflow-y: auto;
    max-height: 100%;
    /* position: absolute; */
    /* top: 0; */
    /* bottom: 0; */
    /* flex-wrap: initial; */
    min-height: auto;
  }

  textarea {
    min-height: 150px !important;
  }


  .frenchFlag {
    width: 30px;
    height: 30px;
    background-image: url("img/icons/Flag_of_France.png");
    background-size: contain;
  }


  #popup {
    padding: 5px;
  }

  #closePopupCross {
    top: 7px;
    right: 7px;
  }

  .desc {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }

  .urlVideos {
    align-self: center;
  }

  #sectionStudio {
    min-height: 100%;
    overflow: visible;
    width: 100%;
  }

  #protectionWrapperStudio {
    padding: 50px 10px 10px 10px;
    /* height:fit-content; */
    /* min-height:100%; */
    flex-wrap: nowrap;
    display: flex;
    justify-content: stretch;

    position: relative;
  }

  .dotSliderVertical {
    right: -13px;
  }

}

@media screen and (max-width: 920px) {
  .dotSliderVertical {
    width: fit-content;
    width: intrinsic;
    /* Safari/WebKit uses a non-standard name */
    width: -moz-max-content;
    /* Firefox/Gecko */
    width: -webkit-max-content;
    /* Chrome */
    /*padding-bottom:50%;*/
    left: 0px;
  }

  .exemples {
    display: flex;
    height: 100%;
  }

  .tns-inner {
    height: 100%;
  }

  .tns-ovh {
    height: 100%;
    overflow: visible;
    max-width: 80vw;
  }

  .tns-outer {
    flex-grow: 1;
    padding: 0 39px !important;
    z-index: 0;
    max-height: 500px;
    flex-grow: 12;
  }
}

@media (hover) {

  /* pour les appareils ayant des curseurs */
  .fp-scroller {
    transition: all 0.3s !important;
  }
}

@media (hover: none) and (pointer: coarse) {

  /* pour les appareils mobiles tactiles*/
  .description,
  .imgsProjet>img,
  .projectSpacer {
    opacity: 1 !important;
    animation: none !important;
  }

  #menuAnim {
    display: none !important;
  }

  #menu ol>li:after,
  #langSelect:after,
  #appBtn:after {
    display: none;
  }

  .contact {
    animation: none !important;
  }
}

@media (orientation: landscape) {
  #sectionStudio {
    flex-direction: column;
  }


  /*   #aboutRight {
    min-width: auto;
    flex-grow: 0;
  } */
}

@media (orientation: portrait) {
  .slideCarrousel {
    flex-direction: column !important;
    align-items: center;
    gap: 45px;
  }

  .slideCarrousel aside {
    flex-grow: 1;
    width: 100%;
    max-width: none;
    justify-content: center;
  }

  .exemples {
    width: 100%;
    min-height: 40vh;
    display: flex;
    height: 100%;
  }

  .textService {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    z-index: 1;
    width: 60%;
    min-width: 300px;
  }

  .exemples::after {
    background: linear-gradient(180deg, rgba(242, 242, 242, 1) 0%, rgba(242, 242, 242, 0) 31%) !important;
  }
}


.tns-nav {
  display: none;
}

.veryQuickAnimate {
  --animate-duration: 0.5s !important;
}

b {
  color: #39ab27;
}

.notif {
  position: fixed;
  right: 30px;
  top: 30px;
  border-radius: 26px;
  max-width: calc(100vw - 60px);
  padding: 26px;
  background-color: white;
  color: white;
  z-index: 200;
  font-weight: 600;
  box-shadow: 0px 10px 10px 0px rgba(0, 0, 0, 0.15);
}

.alert-danger {
  background-color: red;
}

.alert-warning {
  background-color: #ff9500;
}

.alert-success {
  background-color: #39ab27;
}