@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;800&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Sen:wght@400..800&display=swap");

html,
body {
  max-width: 100vw;
  overflow-x: hidden !important;
}

a#mail {
  font-size: 12px;
  background-color: #03ff81;
  color: black;
  text-decoration: none;
  padding: 10px;
  position: absolute;
  top: 0;
  right: 0;
  text-align: right !important;
}

html {
  scroll-behavior: smooth;
}

.spanBlack {
  background-color: black;
  color: white;
}

.home1::after {
  content: "";
  width: 5px;
  height: 150px;
  position: absolute;
  z-index: 99;
  bottom: 0px;
  display: block;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  background-color: black;
  filter: invert(100%);
  mix-blend-mode: difference;
}
.afterTrait {
  position: relative;
}
.afterTrait::after {
  content: "";
  width: 5px;
  height: 100px;
  position: absolute;
  z-index: 99;
  right: 0;
  display: block;
  bottom: -50px;
  background-color: black;
  filter: invert(100%);
  mix-blend-mode: difference;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}

#loader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  z-index: 9999;
}

.loader-text {
  font-size: 15px;
  color: #03ff81;
  margin-top: 50px;
  /* width: 100%; */
}

.maxWidth {
  max-width: 1400px;
  margin-right: auto;
  margin-left: auto;
}

.maxWidth2 {
  max-width: 80%;
  margin-right: auto;
  margin-left: auto;
}

#loader img {
  width: 150px;
  height: auto;
  display: block;
}

*,
*:before,
*:after {
  box-sizing: border-box;
}

.activeNav,
.active {
  color: #03ff81 !important;
  font-weight: bold !important;
  letter-spacing: 1px;
}

a,
p,
li {
  font-family: "Poppins", sans-serif !important;
  font-weight: 400;
  font-style: normal;
  text-wrap: balance;
  font-size: 1rem;
}

h1,
h2,
h3,
h5,
h4,
h6,
h7 {
  font-family: "Sen", sans-serif !important;
  font-optical-sizing: auto;

  font-weight: 800;
  font-style: normal;

  text-wrap: balance;
  font-size: 2rem;
}

/* 
.poppins-light {
  font-family: "Poppins", sans-serif;
  font-weight: 300;
  font-style: normal;
}

.poppins-regular {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.poppins-extrabold {
  font-family: "Poppins", sans-serif;
  font-weight: 800;
  font-style: normal;
}
 */

.textSize-1 {
  font-size: calc(2rem + 2vw);
}

.textSize-2 {
  font-size: calc(30px + 5vw);
}

.textSize-3 {
  font-size: calc(2rem + 2vw);
}

.textSize-4 {
  font-size: calc(1rem + 2vw);
}

.textSize-5 {
  font-size: calc(1rem + 1vw);
}

.textHuge {
  text-transform: uppercase;
  font-weight: bolder;
}

#cursor {
  position: fixed;
  z-index: 999;
  left: 0;
  top: 0;
  pointer-events: none;
  will-change: transform;
  mix-blend-mode: difference;
}

@media (hover: hover) and (pointer: fine) {
  .cursor__circle {
    width: 64px;
    height: 64px;
    margin-top: -50%;
    margin-left: -50%;
    border-radius: 50%;
    border: solid 1px rgba(227, 222, 193, 0.64);
    transition: opacity 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      background-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      border-color 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      width 0.3s cubic-bezier(0.25, 1, 0.5, 1),
      height 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  }

  #cursor.arrow .cursor__circle {
    width: 128px;
    height: 128px;
    background-color: #7a4495;
    border-color: #7a4495;
  }

  #cursor.arrow::after {
    content: "";
    position: absolute;
    left: -50%;
    top: -50%;
    width: 100%;
    height: 100%;
    background-image: url("https://svgshare.com/i/MzQ.svg");
    background-repeat: no-repeat;
    background-position: center;
    /* backdrop-filter: blur(10px);
      background-blend-mode: darken ; */
  }

  #cursor.subtle .cursor__circle {
    opacity: 0.16;
  }

  #cursor.overlay .cursor__circle {
    width: 48px;
    height: 48px;
    background-color: rgba(227, 222, 193, 0.08);
    border-color: transparent;
  }
}

@media (hover: hover) and (pointer: fine) {
  .image-container:hover img {
    transform: scale(1.1);
  }

  .underline:hover::after {
    opacity: 1;
  }

  section::after {
    display: none;
  }
}

.noise {
  animation: grain2 8s steps(10) infinite;
  background-image: url(../img/noise.png);
}

#key {
  margin-bottom: 100px;
  margin-top: 50px;
}

@keyframes grain {
  0%,
  100% {
    transform: translate(0, 0);
  }

  10% {
    transform: translate(-2%, -2%);
  }

  20% {
    transform: translate(-5%, 5%);
  }

  30% {
    transform: translate(7%, -5%);
  }

  40% {
    transform: translate(-2%, 2%);
  }

  50% {
    transform: translate(-5%, 5%);
  }

  60% {
    transform: translate(5%, 0%);
  }

  70% {
    transform: translate(0%, 5%);
  }

  80% {
    transform: translate(3%, 2%);
  }

  90% {
    transform: translate(-5%, 2%);
  }
}

@keyframes grain2 {
  0%,
  100% {
    background-position: 50% 50%;
  }

  10% {
    background-position: 45% 45%;
  }

  20% {
    background-position: 40% 23%;
  }

  30% {
    background-position: 20% 45%;
  }

  40% {
    background-position: 35% 40%;
  }

  50% {
    background-position: 30% 76%;
  }

  60% {
    background-position: 20% 54%;
  }

  70% {
    background-position: 60% 34%;
  }

  80% {
    background-position: 53% 46%;
  }

  90% {
    background-position: 30% 40%;
  }
}

.invert {
  mix-blend-mode: difference;
  filter: invert(1);
  -webkit-filter: invert(100%);
  -ms-filter: invert(100%);
  -o-filter: invert(100%);
}

.invertDisable {
  mix-blend-mode: normal;
  filter: none;
  background-color: white;
}

.navbar img {
  width: 50px;
  height: auto;
  margin-top: 25px;
  margin-left: 25px;
}

.secondnav {
  margin-bottom: 40px;
  max-width: 500px;
  width: 100%;
  z-index: 9999;
}

.secondnav .row {
  min-height: 50px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.33);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(134, 134, 134, 0.27);
}

.secondnav .row a {
  color: white;
  text-decoration: none;

  /* font-weight: bolder; */
  border-right: 1px solid rgba(134, 134, 134, 0.27);
  min-height: 40px;
  line-height: 50px;
}

.secondnav .row a:nth-child(3) {
  border-right: 0px !important;
}

.home1 {
  height: 90vh;
  width: 100vw;
  padding-left: 10vw;
  padding-right: 10vw;
}

.home1 .slogan span {
  background: black;
  color: white;
  padding: 2px;

  /* transition: all 10s; */
}
.home1 .titreSite {
  top: 50%;
  position: relative;
  z-index: 2;
  height: fit-content;
  transform: translateY(-50%);
}

.home1 #rockLottie {
  position: absolute;
  top: 50%;
  right: 50%;
  transform: translate(50%, -50%);
}

.home1 .slogan {
  text-align: right;
  width: 100%;
  position: relative;
  padding: 20px;
  float: right;
  z-index: 4;
  color: black;
  /* border-bottom: 1px solid black; */
  transform: scale(1);
  /* right: 10vw;
 top: 15vh; */
  border-radius: 20px;
  /* border: 1px solid black; */
  background: rgba(255, 255, 255, 0.2);
  /* box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1); */
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  /* border: 1px solid rgba(255, 255, 255, 0.27); */
  height: fit-content;
  margin-top: 10vh;
  display: none;
}

.gradientTop {
  position: absolute;
  top: 0;
  right: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.748) 40%,
    rgba(0, 0, 0, 0) 100%
  );
  z-index: 1;
}

.available {
  margin-top: 20px;
  font-size: 10px;
}
.available::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  background-color: rgb(0, 233, 0);
  border-radius: 10px;
  display: inline-block;
  margin-right: 10px;
  filter: drop-shadow(0 0 5px rgb(0, 233, 0));
  animation: dispo 1.5s infinite;
  margin-top: 10px;
  margin-bottom: -3px;
}
@keyframes dispo {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(0.7);
  }
  100% {
    transform: scale(1);
  }
}

.ouroffer {
  padding: 15px;
  background: rgb(0, 233, 0);
  color: black;
  text-decoration: none;
  border-radius: 20px;
  font-size: 15px;
  padding-right: 30px;
  padding-left: 30px;
  margin-top: 100px;
  margin-bottom: 10px;
  transition: all 0.5s;
  font-weight: bolder;
}

.ouroffer3 {
  padding: 15px;
  background: rgb(0, 233, 0);
  color: black;
  text-decoration: none;
  border-radius: 20px;
  font-size: 15px;
  padding-right: 30px;
  padding-left: 30px;
  height: 50px;
  transition: all 0.5s;
  font-weight: bolder;
  text-align: center;
}
.accordion-item,
.accordion-button {
  background: none;
  border: none;
}

.accordion-body {
  max-width: 700px;
}
.ouroffer2 {
  border: 1px solid rgb(0, 233, 0);
  max-width: 200px;
  text-align: center;
}

h7 {
  font-weight: bold;
  font-size: 25px;
}
.masterSubOffer {
  margin-top: 50px;
}

.masterSubOffer .subOffer .priceSubOffer {
  font-weight: bold;
  text-align: right;
  margin-right: 20px;
  font-size: 25px;
}

.masterSubOffer .subOffer .innerSubOffer p span {
  font-weight: bold;
}

.masterSubOffer .subOffer .innerSubOffer {
  padding: 10px;
  background-color: #f7f4ee;
  border: 1px solid black;
  padding: 15px 20px 15px 20px;
  border-radius: 20px;
  height: 100%;
}

.ouroffer:hover,
.ouroffer3:hover {
  background: white;
  color: black;
  border: 1px solid rgb(0, 233, 0);
  transition: all 0.5s;
}
.theWheel {
  text-align: center;
  padding-top: 200px;
  padding-bottom: 200px;
}

.theWheel .textSize-3 {
  margin-bottom: 50px;
  font-weight: bold;
}

.remplace {
  max-width: 600px;
  margin-bottom: 100px;
}

.notreTravail div {
  margin-bottom: 50px;
}
.masterWheel {
  margin-right: auto;
  margin-left: auto;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.notreTravail {
  margin-right: auto;
  margin-left: auto;
  background-color: white;
  padding-top: 50px;
}

.notreTravail span {
  font-weight: bold;
}
.notreTravail p {
  max-width: 350px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

/* .pin-spacer .textintro,.pin-spacer {
  margin:0px!important;
  margin-right: 0px !important;
  left: 0px!important;
  top: 0px!important;
} */

.find {
  text-align: center;
  color: white;
}
.find p {
  max-width: 200px;
  display: block;
  margin-right: auto;
  margin-left: auto;
}

.soustitreOffer {
  text-align: center;
  color: white;
  max-width: 350px;
  margin-bottom: 100px;
  margin-top: 50px;
}

.txtintro {
  min-height: 120vh;
  background-color: black;
  display: flex;
  justify-content: center;
  flex-direction: column;
  align-items: center;
}
.txtintro #discours {
  text-align: center;
  text-wrap: balance;
  font-weight: bold;
}

.txtintro .textSize-3 {
  max-width: 1600px;
  color: white;
  text-wrap: balance !important;
}

#TitrePro span {
  font-weight: bold !important;
  color: #03ff81;
}
#TitrePro {
  font-weight: lighter;
}

#TitrePro span {
  font-weight: bold !important;
}

.masterSpanMov {
  padding-top: 200px;
  padding-bottom: 200px;
}

.sectionMask {
  height: 100vh;
  position: relative;
  padding: 0;
  overflow: hidden;
  font-weight: bold;
}

.sectionMask .colormask {
  position: relative;
  width: 100vw;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
}

.sectionMask .txtmask {
  position: absolute;
  z-index: 2;
  width: 80%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 1600px;
  text-align: left;
  height: fit-content;
}

.canvas-container {
  height: 100vh;
  /* transform: translateY(30vh); */
}

.canvas-container .canvasscroll {
  width: 100vw;
  height: auto;
  position: relative;
  /* transform: scale(1.4); */
}

.blackTitre {
  color: black !important;
}

.jobSection .row,
.jobSection div,
.jobSection p,
.jobSection h6,
.jobSection .jobBox {
  height: fit-content;
  text-wrap: balance;
}

.jobSection {
  height: 100vh;
  display: none;
  justify-content: center;
  align-items: center;
}

.jobSection .row {
  width: 90%;
  max-width: 2000px;
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
  padding: 0px;
}

.jobSection .introJobtext {
  /* text-align: right; */
  text-wrap: balance;
}

.jobSection .jobBox div {
  /* background-color: blue; */
  padding-right: 30px;
  padding-left: 30px;
  height: fit-content !important;
  /* border-radius: 20px; */
  /* border: 1px solid lightgray; */
  border-left: 1px solid black;
  /* max-height: 12vh !important; */
  padding-top: 2vh !important;
  padding-bottom: 2vh !important;
  /* background: white; */
}

.jobSection .jobBox .p-3 {
  min-height: 200px;
  height: fit-content;
  display: flex;
  flex-flow: column;
  justify-content: center;
}

.jobSection .jobBox h6 {
  font-weight: bolder;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.jobSection .align-end {
  align-self: flex-end;
}

.masterSection {
  position: relative;
  height: 80vh;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 10vh;
  width: 90vw;
  border-radius: 40px;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
}

.masterSection .bg {
  position: absolute;
  position: -webkit-sticky;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}

.section1 .bg {
  background-image: url("../img/1.jpg");
}

.section2 .bg {
  background-image: url("../img/2.jpg");
}

.section3 .bg {
  background-image: url("../img/3.jpg");
}

.containerPerso {
  width: 90vw;
  margin-right: auto;
  margin-left: auto;
  margin-top: 30vh;
  display: none;
}

.containerPerso .workslide {
  letter-spacing: 20px;
}

.containerPerso h2 {
  text-wrap: nowrap;
}

.containerPerso h2 span {
  opacity: 0.1;
}
.masterWhatOffer {
  max-width: 800px;
  display: flex;

  flex-wrap: wrap;
}
.whatOffer p {
  padding: 10px;
  border-radius: 20px;
  background-color: white;
  margin-bottom: 10px;
  padding-right: 30px;
  padding-left: 30px;
  margin-right: 5px;
  margin-left: 5px;
  font-weight: bolder;
  display: block;
  color: black;
  border: 1px solid black;
}
/* 
.masterWhatOffer :nth-child(1) p,
.masterWhatOffer :nth-child(9) p {
  background-color: rgb(255, 172, 186);
}

.masterWhatOffer :nth-child(2) p,
.masterWhatOffer :nth-child(7) p,
.masterWhatOffer :nth-child(13) p {
  background-color: #f2b705;
}

.masterWhatOffer :nth-child(3) p,
.masterWhatOffer :nth-child(11) p,
.masterWhatOffer :nth-child(15) p {
  background-color: rgb(0, 162, 255);
  color: white;
}
.masterWhatOffer :nth-child(4) p,
.masterWhatOffer :nth-child(6) p {
  background-color: rgb(0, 255, 128);
  color: white;
}

.masterWhatOffer :nth-child(5) p,
.masterWhatOffer :nth-child(9) p,
.masterWhatOffer :nth-child(14) p {
  background-color: #5c2ba6;
  color: white;
}
.masterWhatOffer :nth-child(8) p {
  background-color: black;
  color: white;
}
.masterWhatOffer :nth-child(10) p {
  background-color: rgb(255, 97, 97);
  color: white;
} */
.sectionContact {
  height: 100vh;
  width: 90vw;
  margin-right: auto;
  margin-left: auto;
}
.sectionContact .contactContent {
  max-width: 1600px;
  height: fit-content;
}

.sectionContact .contactContent button {
  background: none;
  padding: 10px;
  border-radius: 50px;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto;
  /* float: right; */
  /* transform: scale(1); */
  border: 1px solid black;
  color: black;
  transition: all 0.5s;
}

.sectionContact .contactContent button:hover {
  background: black;
  color: white;
}

.transitionOpacity {
  opacity: 0;
}

.InMov span {
  opacity: 0.1;
}

.containJoinUs {
  width: 90%;
  max-width: 1600px;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-top: 200px;
  padding-bottom: 200px;
}

.contentJoinUs {
  background-color: black;
  color: white;
  padding: 50px;
  border-radius: 40px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}
.contentJoinUs h5 {
  font-weight: lighter;
  font-size: 5vw;
  letter-spacing: 4px;
  text-transform: none;
  margin-bottom: 50px;
}

.contentJoinUs h5 span {
  font-weight: bold;
}

.infoJoin1,
.infoJoin2 {
  border: 1px solid #03ff81;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.contentJoinUs .infoJoin1,
.contentJoinUs .infoJoin2 {
  border: 1px solid #03ff81;
  border-radius: 20px;
  padding: 20px;
  margin-bottom: 20px;
}

.infoJoin2 .joinTitre,
.infoJoin1 .joinTitre {
  font-weight: bold;
}

.innerJoinTitre {
  display: flex;
  /* flex-direction: row; */
}

.joinDescri {
  /* background-color: #f7f4ee; */

  /* border-radius: 40px; */
  /* margin-bottom: 50px; */
  /* display: flex; */
  flex-direction: column;
  /* justify-content: space-between; */
  align-items: start;
}

.joinDescri .innerJoinDescri {
  background-color: #f7f4ee;
  padding: 50px;
  border-radius: 40px;
  border: 1px solid black;
}
.joinDescri h6 {
  font-weight: bold;
  font-size: 32px;
  margin-bottom: 50px;
}
.joinDescri .prix {
  font-weight: bold;
  font-size: 35px;
  letter-spacing: 2px;
}

.joinDescri .prix span {
  font-size: 15px;
}

.joinDescri .corretsize {
  font-size: 20px;
  border-bottom: 1px solid black;
  padding-bottom: 50px;
  padding-top: 20px;
}
.joinDescri .corretsize2 {
  padding-bottom: 20px;
  font-weight: bold;
  margin-top: 50px;
}

.elementJoin p::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  /* border: 2px solid #03ff81; */
  margin-right: 10px;
  border-radius: 10px;
  margin-left: -20px;
  background-color: #03ff81;
}

.containAccordion {
  max-width: 1600px;
  width: 90%;
  display: block;
  margin-right: auto;
  margin-left: auto;
  margin-top: 100px;
  padding-top: 100px;
  padding-bottom: 200px;

  .accordion-button:not(.collapsed) {
    background-color: rgb(0, 255, 128);
    color: black;
    border: none;
  }
}

.containAccordion h6 {
  font-size: 50px;
  margin-bottom: 50px;
}
.containAccordion .accordion {
  background-color: none;
}

.containAccordion .accordion-header button {
  font-weight: bold;
  --bs-primary-bg-subtle: none;
}

.masterTextend {
  margin-bottom: 200px;
  /* margin-top: 200px; */
}
.txtend {
  max-width: 500px;
}

.hero {
  width: 80vw;
  height: 80vh;
  position: relative;
  margin-top: 10vh;
  margin-bottom: 10vh;
  margin-right: auto;
  margin-left: auto;
  overflow: hidden;
  border-radius: 40px;
}

.hero__bg-wrap {
  border-radius: 40px;

  @media (max-width: 1280px) {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    clip: rect(0, auto, auto, 0);
    border-radius: 40px;
  }
}

.hero__bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  border-radius: 40px;
  background-size: cover;
  background-attachment: fixed;

  @media (max-width: 1280px) {
    position: fixed;
    display: block;
    transform: translateZ(0);
    will-change: transform;
    top: 0;
    left: 0;
    height: 100vh;
    background: none;
    border-radius: 40px;
  }
}

.hero__bg1 {
  background-image: url("../img/eglise/larchant-mockup-large.jpg") !important;
  background-position: center;
}

.hero__bg2 {
  background-image: url("../img/sinfoni/mockup-sinfoni.jpg") !important;
  background-position: center;
}

.hero__bg3 {
  background-image: url("../img/storyfox/mockupLaptop.jpg") !important;
  background-position: center;
}

.hero__bg4 {
  background-image: url("../assets/greenData/screenData.jpg") !important;
  background-position: center;
}

.hero__bg5 {
  background-image: url("../assets/opera/mockup-carte-de-visite-large.jpg") !important;
  background-position: center;
}

.hero__bg6 {
  background-image: url("../assets/habitat/cover02.jpg") !important;
  background-position: center;
}

.hero__img {
  display: none;

  @media (max-width: 1280px) {
    display: block;
    object-fit: cover;
    width: 100%;
    height: 100%;
  }
}

.hero__bg-wrap {
  overflow: hidden;
  border-radius: 40px;
}

.hero-mosa {
  .hero-mosa a {
    text-decoration: none;
    color: black !important;
  }

  .hero {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contentCard {
    width: 60%;
    margin-right: auto;
    margin-left: auto;
    padding: 25px;
    border-radius: 40px;
    background: rgba(255, 255, 255, 0.33);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(0, 0, 0, 0.27);
    position: absolute;
    color: black !important;
    z-index: 5;
    max-width: 1000px;
  }

  .contentCard .date {
    text-transform: uppercase;
  }

  .contentCard h3 {
    /* margin-top: 50px;
    margin-bottom: 50px; */
  }

  .linkMosa {
    text-decoration: none;
    color: black;
  }

  .hero__bg {
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .contentCard button {
    background-image: url(../img/arrow.svg);
    border: none;
    background-color: transparent;
    padding: 15px;
    /* padding-right: 20px;
    padding-left: 20px; */
    float: right;
    text-decoration: none;
    color: black;
    /* width: 50px; */
    background-position: center;
    background-repeat: no-repeat;
  }
}

.pageProjet .enter {
  color: black;
  height: 100vh;
  width: 100vw;
  justify-content: center;
  padding-top: 5%;
  position: relative;
}

.pageProjet .spacerSection3 {
  height: 50vh;
}

.pageProjet .projetEnter {
  position: absolute;
  z-index: 2;
  color: white;
  top: 40vh;
  left: 15%;
}

.pageProjet .container2 {
  width: 100vw;
  padding-right: 10%;
  padding-left: 10%;
}

.pageProjet .church360 {
  margin-top: 50vh;
}

.pageProjet .window360 {
  height: 100vh;
  width: 100vw;
}

.pageProjet #animationWindow {
  width: 100%;
  height: 100%;
}

.pageProjet .containtWindow {
  display: block;
  overflow: hidden;

  max-width: 1600px;
  width: 100%;
  margin-right: auto;
  margin-left: auto;
}

.pageProjet .mockMask {
  /* background-color: red; */
  width: 80%;
  height: 90%;
  min-width: 80%;
  display: flex;
  overflow: hidden;
  border-radius: 100px;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  justify-content: center;
  background-color: red;
}

.pageProjet .mockMask img {
  /* width:100vw;
    height: auto; */
  /* margin-left: -45%; */
  display: block;
  margin-right: auto;
  margin-left: auto;
  position: relative;
  transform: translateX(0);
}

.pageProjet .txtchurch360 {
  font-weight: bolder;
  max-width: 60vw;
  margin-right: auto;
  margin-left: auto;
  text-align: center;
  color: white;
  z-index: 10;
  position: relative;
  /* background-color: black; */
}

.pageProjet .replaceImg {
  background-image: url("../img/eglise/larchant-mockup-large.jpg");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: block;
  width: 100vw;
  height: 100vh;
  transform: translateX(0);
}

.pageProjet .inventTop {
  margin-bottom: 30vh;
}

.pageProjet .Mtextbox .pin-spacer {
  /* margin-top: 0px!important; */
  background-color: black;
}

.pageProjet .background-Black {
  background-color: black;
}

.pageProjet .introDemo p {
  color: black;
  text-align: center;
  font-weight: bolder;
  margin-bottom: 30vh;
}

.pageProjet .introDemo span {
  background-color: white;
}

.pageProjet .secframe iframe {
  height: 50vh;
  display: block;
  margin-bottom: 30vh;
}

.videoSection {
  margin-top: 15vh;
  padding-right: 5vw;
  padding-left: 5vw;
}
.videoSection .playBTN {
  width: 50px;
  height: auto;
  background: transparent;
  border: none;
  transition: 0.5s all;
  transform: scale(1);
  margin-right: auto;
  margin-left: auto;
}

.videoSection #btnplay {
  background: none;
  border: none;
  display: flex;
  justify-content: center;
  width: 100%;
}

.videoSection video {
  width: 80%;
  max-width: 1600px;
  border: 1px solid rgba(211, 211, 211, 0.2);
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 25px;
  border-radius: 40px;
  overflow: hidden;
}

.videoSection div {
  flex-direction: column;
  justify-content: space-between;
}

.sinfoni .enter {
  height: 100vh;
}

.sinfoni .ligne1 {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  padding-left: 15vw;
  z-index: 1;
}

.sinfoni .txtintroPro {
  width: 400px;
}

.sinfoni .imgSinfoniMock {
  width: 100vw;
  height: auto;
  position: relative;
  z-index: 10;
}

.shapeBack {
  /* background: green;  */
  width: 80vw;
  height: 80vh;
  position: absolute;
  z-index: 0;
  top: 10vh;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
  border-radius: 60px;
  overflow: hidden;
  /* margin-top:-20vh ; */
}

.shapeBack .imgShape {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-image: url("../img/sinfoni/mockup-sinfoni.jpg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.startShape {
  position: absolute;
  width: 100px;
  height: 0;
  /* background:red; */
  z-index: 10;
  display: block;
  top: 0;
}

/* 
.sinfoni .containMock:after {
  content:""; 
  width: 100vw;
  height: 50vh;
  background-color: #e6e6e6;

  display: block;
  position: relative;
}  */

.sinfoni .txtUpSinfoni {
  width: 80%;
  margin: auto;
  z-index: 5;
  position: relative;
  right: 0;
  left: 0;
  margin-top: 30vh;
  text-wrap: balance;
}

.sinfoni .containMock {
  /* position: absolute; */
  display: block;
  position: relative;
  /* top: 100vh; */
}

.sinfoni .part2Sinfoni {
  background-color: #e6e6e6;
  width: 100vw;
  position: relative;
  z-index: 11;
  padding-top: 30vh;
}

.sinfoni .part2Sinfoni .conceptSinfoni {
  justify-content: space-between;
  width: 90%;
  float: left;
  margin-bottom: 30vh;
}

.sinfoni .part2Sinfoni .conceptSinfoni .cardConcept {
  /* background: red; */
  height: 40vh;
  margin-left: 5px;
  width: 24%;
  background: white;
  border-radius: 50px;
  overflow: hidden;
  padding-bottom: 30px;
  padding-right: 25px;
  padding-left: 25px;
  border: 1px solid lightgrey;
}

.sinfoni .part2Sinfoni .conceptSinfoni .titreConcept {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
  background-image: url("../img/sinfoni/sinfoniDesign.jpg");
  background-position: center;
  background-size: cover;
  position: relative;
}

.sinfoni .headShape {
  /* overflow:hidden; */
  /* background: red; */
  display: block;
  position: relative;
}

.svgSinfoni {
  background-image: url("../img/sinfoni/eco.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  width: 100%;
  position: relative;
  margin-left: -30%;
  display: block;
  height: 80%;
  /* background: red; */
}

.svgSinfoni.svg2 {
  background-image: url("../img/sinfoni/layout.svg");
}

.svgSinfoni.svg3 {
  background-image: url("../img/sinfoni/transparent.svg");
}

.sinfoni .cardConcept p {
  color: black;
}

.sinfoni .container3 {
  /* background-color: lightgrey; */
  padding-top: 10vh;
  margin-bottom: 30vh;
}

.sinfoni .sinfoniConcept {
  display: flex;
  justify-content: space-around;
  width: 80vw;
  margin: auto;
  max-width: 1500px;
  /* --bs-gutter-x: 0; */
}

.sinfoni .sinfoniConcept .cardConcept {
  /* margin-right: 5px;
 paddin */
  background-color: white;
  height: 500px;
  margin-right: 5px;
  /* width: 24%; */
  border-radius: 40px;
}

.sinfoni .sinfoniConcept .cardConcept:last-of-type {
  margin-right: 0px;
}

.sinfoni .sinfoniConcept .cardConcept:nth-of-type(1) {
  background-color: white;
  border-radius: 0px;
  border-top-right-radius: 40px;
  border-bottom-right-radius: 40px;
  background-color: #00a1ae;
}

.sinfoniConcept .cardConcept:nth-of-type(1) p {
  color: white;
  text-transform: uppercase;
  font-weight: bolder;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-90deg);
  font-size: 55px;
}

.sinfoniConcept .cardConcept:nth-of-type(2) p,
.sinfoniConcept .cardConcept:nth-of-type(3) p,
.sinfoniConcept .cardConcept:nth-of-type(4) p {
  vertical-align: bottom;
  align-self: end;
}

.sinfoniConcept .cardConcept:nth-of-type(2),
.sinfoniConcept .cardConcept:nth-of-type(3),
.sinfoniConcept .cardConcept:nth-of-type(4) {
  padding: 25px;
  display: flex;
  position: relative;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
}

.sinfoni .cardConcept img {
  display: block;
  width: 90%;
  position: relative;
  margin-left: -30%;
  height: auto;
}

.sinfoniDesign {
  margin-top: 20vh;
}

.colorSinfoni div {
  /* background-color: red; */
  border-radius: 30px;
  /* --bs-gutter-x: 10px; */
}

.innerColorSinfoni {
  margin-right: 10px;
  display: flex;
  justify-content: space-between;
}

.innerColorSinfoni div {
  height: 245px;
  background-color: blue;
  width: 49%;
  display: flex;
  border: 1px solid black;
  justify-content: center;
  flex-flow: column-reverse;
}

.innerColorSinfoni div:nth-of-type(1),
.innerColorSinfoni div:nth-of-type(2) {
  margin-bottom: 10px;
  background-color: green;
}

.innerColorSinfoni div:nth-of-type(1),
.innerColorSinfoni div:nth-of-type(3) {
  /* margin-right: 5px; */
  --bs-gutter-x: 30px;
}

.sinfoniTypo {
  height: 500px;
  background-color: white;
  border: 1px solid lightgrey;
}

.sinfoniTypo #sinfoniTypoAnim,
.sinfoniTypo #sinfoniTypoAnim2 {
  transform: translateY(-14%);
  position: relative;
}

/* 
.sinfoni .innerColorSinfoni p {
  display: flex;
  justify-content: center;
  margin-bottom: 0px;
  font-weight: bolder;
  letter-spacing: 2px;

} */

/* .colorSinfoni {
  margin-bottom: 30vh;
  --bs-gutter-x: 10px;
} */

.sinfoni .blocColorSinfoni .masterRondsinfoni {
  display: flex;
  /* justify-content: center; */
  flex-direction: column;
  flex-wrap: wrap;
  align-content: center;
}

.sinfoni .blocColorSinfoni .masterRondsinfoni .colorRond {
  width: 100px;
  height: 100px;
  border-radius: 50px;
  border: 1px solid lightgrey;
}

.masterRondsinfoni1 div {
  background-color: #035f80;
}

.masterRondsinfoni2 div {
  background-color: #000000;
}

.masterRondsinfoni3 div {
  background-color: #00abba;
}

.masterRondsinfoni4 div {
  background-color: #ffffff;
}

.sinfoni .blocColorSinfoni {
  color: black;
  font-weight: bolder;
  text-align: center;
  margin-bottom: 10vh;
}

.sinfoni .colorTypo h5 {
  margin-bottom: 10vh;
  font-size: 30px;
}

.sinfoni .colorTypo {
  margin-bottom: 30vh;
}

.sinfoniGrid img {
  position: absolute;
  width: 65%;
  height: auto;
}

.sinfoniGrid img:first-of-type {
  right: 0;
}

.sinfoniGrid img:last-of-type {
  left: 0;
}

.sinfoniGrid {
  position: relative;
  height: fit-content;
  margin-bottom: 50vh !important;
}

.sinfoniGrid:after {
  content: "";
  display: block;
  /* background: red; */
  height: 50vh;
  width: 50vw;
  position: relative;
}

footer {
  position: fixed;
  top: 2vh;
  right: 2vh;
  text-align: right;
  /* width: 85px; */
  /* transform: rotate(-90deg) translateX(100%); */
  /* background: red; */
  z-index: 1031;
  transform-origin: right;
  padding-bottom: 2%;
}

.mailContact {
  color: black;
}

.pageAbout canvas {
  position: fixed;
  /* top: 0;
  left: 0; */
  height: 50%;
}

.sectionAbout1 {
  width: 100vw;
  height: 100vh;
  text-align: left;
  padding-left: 10vw;
  padding-right: 10vw;
}

.sectionAbout2,
.sectionAbout3,
.sectionAbout4 {
  height: 100vh;
}

.sectionAbout4 {
  /* padding-top: 20vh; */
}

.defis {
  font-weight: bolder;
}

.sectionAbout3 div {
  background: rgba(255, 255, 255, 0.33);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(134, 134, 134, 0.27);
  /* height: 100vh; */
  height: fit-content;
  float: right;
  width: 550px;
  padding: 40px;
  margin-right: 5%;
  margin-bottom: 10%;
  border-radius: 40px;
}

.sectionAbout3 {
  display: flex;
  justify-content: center;
}

/* .sectionAbout3 div:before {
  content: "";
position: absolute;
  border-left: 2px solid black;
  left: 20px;
  height: 100px;
} */

.sectionAbout3 p {
  color: black;
  text-align: left;
  text-wrap: balance;
  margin-bottom: 0px;
}

.sectionAbout2 p {
  font-weight: bolder;
}

.pageAbout #container3D {
  width: 50%;
  height: 0;
  border-radius: 40px;
  /* overflow: hidden ; */
  display: block;
  padding-bottom: 50%;
  top: 50%;
  transform: translate(50%, -50%);
  position: fixed;
}

.pageAbout {
  overflow-x: hidden;
  margin: 0px;
  font-family: monospace;
  color: black !important;
  background: white;
}
.pageAbout #scrollProgress {
  opacity: 0;
}

.pageAbout .sectionAbout1 h1 {
  color: black;
  margin-top: 40vh;
  margin-bottom: 0px;
  height: fit-content;
}

.pageAbout .sectionAbout1 p {
  width: 500px;
  margin-top: 100px;
}

.pageAbout #container3D canvas {
  border-radius: 40px;
}

.pageAbout .main {
  width: 100vw;
  /* height: 200vw; */
  z-index: 99;
  position: absolute;
  justify-content: center;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  display: block;
  max-width: 2000px;
  left: 0;
  right: 0;

  /* pointer-events: none; */
}

/* .section {
  min-height: 100vh;
  padding: 20px;
  font-size: 4vh;
} */

.pageAbout #scrollProgress {
  position: fixed;
  bottom: 10px;
  left: 10px;
  z-index: 99;
  font-size: 3vh;
}
.formcontact {
  width: 90%;
  margin: auto;
  text-align: left;
  --bs-gutter-x: 0px;
  padding-bottom: 10vh;
}

.formcontact form {
  display: flex;
  justify-content: space-between;
}

.formcontact input,
textarea {
  width: 100%;
  display: block;
  background: none;
  border-radius: 40px;
  height: 70px;
  font-size: 1rem;
  border: 1px solid black;
  padding: 10px;
  padding-right: 20px;
  padding-left: 20px;
}

textarea {
  height: 300px;
  min-height: 300px;
  max-height: 600px;
  padding: 20px;
}

.formcontact div {
  border: 1px solid black;
  border-radius: 40px;
  height: fit-content;
  padding: 30px;
  --bs-gutter-y: 20px;
  /* margin-right: -10px;
  margin-left: -10px; */
  background: rgba(121, 121, 121, 0.33);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(0, 0, 0, 0.27);
}

.formcontact button {
  width: 300px;
  border-radius: 20px;
  border: 1px solid black;
  height: 50px;
  line-height: 50px;
  font-weight: bolder;
  margin-top: 50px;
  float: right;
  transition: all 0.5s;
}

.formcontact button:hover {
  transform: scale(1.1);
  background: black;
  color: white;
}

.formcontact .message {
  align-self: center;
}

.formcontact .message input {
  background: red;
}

.formcontact .name,
.formcontact .email {
  width: 49%;
}

.repSuivant {
  width: 200px;
  height: 50px;
  /* background-color: red ; */
  padding-bottom: 10vh;
}

#langue {
  padding-bottom: 4vh;
  padding-left: 3vw;
  font-weight: bolder;
  background: none;
  border: none;
  display: none;
}

#framePlayer {
  height: 100vh;
  transform: scale(0.7);
}

.templateProjet {
}
.templateProjet .imgShape {
  background-image: url(../img/storyfox/mockupLaptop.jpg);
}

.templateProjet .sectionClient {
  margin-top: 20vh;
  margin-bottom: 20vh;
  padding-right: 10vw;
  padding-left: 10vw;
}

.templateProjet .sectionClient img {
  filter: grayscale(100%);
  height: auto;
  max-width: 200px;
}

.templateProjet .sectionClientText {
  margin-bottom: 10vh;
}

.templateProjet .videoSection {
  margin-top: 30vh;
  margin-bottom: 10vh;
}

.templateProjet #fox {
  width: 50vw;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
}

.templateProjet .finStoryfox {
  margin-bottom: 10vh;
}
.smallHero .col-6 {
  width: 49% !important;
}

.smallHero {
  display: flex;
  width: 100vw;
  --bs-gutter-x: 0px;
  justify-content: center;
}

.smallHero a {
  width: 49%;
  height: auto;
}

.smallHero .hero {
  width: 80%;
  height: 50vh;
}

.mTopBottom {
  margin-top: 20vh;
  margin-bottom: 20vh;
}

.pRightLeft {
  padding-right: 5vw;
  padding-left: 5vw;
}

.contentCard .textSize-4 {
  margin-top: 10px !important;
  margin-bottom: 10px !important;
}

.cardConceptMaster {
  padding-right: 5vw;
  padding-left: 5vw;
  margin-top: 15vh;
}
.cardConceptMaster .cardConcept {
  overflow: hidden;
}

.cardConceptMaster .cardConcept img {
  transform: scale(0.8);
}

.cardConceptMaster .cardConcept:nth-of-type(1) {
  flex-direction: column;

  padding: 5px;
  border-radius: 40px;
}
.sinfoniDesign {
  margin-bottom: 25vh;
}

.opera .imgShape {
  background-image: url(../assets/opera/mockup-carte-de-visite.jpg);
}

.opera .ligne1 p,
.opera .ligne1 h1 {
  color: white;
}

.containerMaster {
  padding-right: 5vw;
  padding-left: 5vw;
}

.operaProcess {
  margin-top: 20vh;
}

.operaLogoMaster {
  /* height: 50vh; */
  width: 70%;
  background: #005e9a;
  display: block;
  border-radius: 40px;
  margin-top: 20vh;
  margin-right: auto;
  margin-left: auto;
}
.operaLogoMaster #operaLogo {
  width: 100%;
  display: block;
  height: auto;
  margin: auto;
}
.logoDemo {
  margin-top: 20vh;
  margin-bottom: 20vh;
  position: relative;
}
.logoDemo #logoDemoGrey {
  background-image: url(../assets/opera/logo-opera-gris.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  width: 500px;
  margin-right: auto;
  margin-left: auto;
}

.logoDemo #logoDemoColor {
  background-image: url(../assets/opera/logo-opera.svg);
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  height: 200px;
  width: 500px;
  margin-right: auto;
  margin-left: auto;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
}
.allLogoOpera {
  --bs-gutter-x: 0;
  margin-bottom: 20vh;
}

.maxWidth70 {
  max-width: 70%;
  margin-right: auto;
  margin-left: auto;
}

.videoOpera {
  border-radius: 40px;
  overflow: hidden;
  margin-right: auto;
  margin-left: auto;
  display: block;
  margin-bottom: 25vh;
  margin-top: 50vh;
}

.habitat .imgShape {
  background-image: url(../assets/habitat/cover02.jpg);
}

.habitat .ligne1 {
  color: white;
}

.habitat .canvas-container {
  /* transform: translateX(-15%); */
}

.imgShape2 {
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(../assets/habitat/img2.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}

.sectionHabitatRendu {
  margin-top: 40vh;
  padding-right: 5vw;
  padding-left: 5vw;
}

.sectionHabitatRendu div.col-sm-12 {
  flex-direction: column;
}

.borderR40 {
  border-radius: 40px;
}

.marginB50 {
  margin-bottom: 50px;
}

.marginB25 {
  margin-bottom: 25px;
}

.MinH100 {
  height: 100vh;
}

.habitatImage img {
  width: 50%;
  border-radius: 40px;
  display: inline-block;
}

.habitatImage {
  display: flex;
  justify-content: space-between;
  padding-left: 5vw;
  padding-right: 5vw;
  margin-bottom: 10vh;
}

/* .habitatImage img:first-of-type {
float:left;
position: relative;
} */

.masterArrow {
  background: black;
}

.secondnav a:hover {
  /* border: 1px solid white; */
  background: #03ff81;
  transition: all 0.5s;
  color: black;
  /* transform:scale(1.1); */
}

.secondnav a:hover {
  /* border: 1px solid white; */
  transition: all 0.5s;
}

.secondnav .row {
  overflow: hidden;
}

/* page motion */
/* page motion */
/* page motion */
/* page motion */
.motionProjet1 {
  /* background: rgba(128, 128, 128, 0.311); */
  padding-bottom: 10vh;
  /* height: 100vh; */
}

.motionProjet1 h4,
.motionProjet2 h4 {
  padding-top: 5vh;
  padding-bottom: 5vh;
  text-align: center;
}

.motion video {
  position: relative;
  z-index: 1;
}

.motion #TitrePro,
.motion .info {
  color: black;
}

.motion .videoSection .d-flex {
  position: relative;

  width: fit-content;
  --bs-gutter-x: 0px;
  display: flex;
  justify-content: center;
}

.motionProjet2 {
  padding-left: 5vw;
  padding-right: 5vw;
  /* margin-top: 10vh; */
  padding-bottom: 10vh;
}
.motionProjet2 .maxWidth {
  margin-bottom: 10vh;
}
.motionProjet2 .containVideo {
  margin-top: 10vh;
}
.motionProjet2 img {
  border-radius: 40px;
}

.motionAbove {
  margin-left: -200px;
  margin-top: 500px;
}
.motionAbove .motionVideo2 {
  display: block;
  position: relative;
  width: 100%;
  height: auto;
  border-radius: 20px;
}
.motionAbove2 {
  margin-left: -400px;
  margin-top: 700px;
}

.motion .custom-play-button {
  height: fit-content;
  display: block;
  position: absolute;
  z-index: 2;
  bottom: 25px;
  border: none;
  background-color: transparent;
  height: 50px;
  left: 25px;
}
.motion .custom-play-button img {
  background-color: lightgrey;
  width: 50px;
  height: 50px;
  border-radius: 100px;
  display: block;
}
.motion .containVideo {
  position: relative;
  display: flex;
  justify-content: center;
  width: fit-content;
}

.motion video {
  border-radius: 40px;
  height: 80vh;
  width: auto;
  position: relative;
  z-index: 1;
}

.motionProjet1 .maxWidthMotion div {
  padding: 20px;
}
.maxWidthMotion {
  max-width: 1500px;
}

.motionProjet1 .maxWidthMotion div img {
  border-radius: 40px;
}

.motionProjet1 {
  padding-bottom: 10vh;
}

.motionProjet1 video {
  margin-top: 20px;
}
.flyingVideo {
  width: fit-content;
}
.flyingVideo video {
  width: 500px;
  height: auto;
  margin-top: -30%;
  margin-left: 50%;
}

.containFlying {
  position: relative;
  margin-top: 1.5rem;
  max-width: 80%;
  max-width: 1600px;
}

.containFlying .flyingImg {
  width: calc(10vw + 10vh);
  height: auto;
  position: absolute;
  bottom: -200px;
  margin-left: -200px;
  z-index: 5;
}
.motionProjet3 {
  padding-right: 5vw;
  padding-left: 5vw;
  padding-top: 10vh;
  padding-bottom: 10vh;
}
.motion H4 {
  text-align: center;
  margin-bottom: 10vh;
  margin-top: 10vh;
}
.motionProjet3 img {
  border-radius: 40px;
}

.motion .playBTN {
  border: 1px solid grey;
}

.motion .rose {
  padding-right: 5vw;
  padding-left: 5vw;
}

.eglise .gallery--bento .caption {
  text-align: center;
}

.motion video {
  border: 1px solid grey;
}

.eglise .txtintroPro {
  width: 500px;
}

.motion section {
  padding-top: 10vh;
  padding-bottom: 10vh;

  border-bottom: 1px solid lightgrey;
}

.demomotion {
  width: 100vw;
  height: auto;
}

.boldSpan {
  font-weight: bolder;
}

.replaceImg,
.imgShape {
  --afterOpacity: 0.6;
}
.replaceImg::before,
.imgShape::before {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  background: black;
  opacity: var(--afterOpacity);
}

.infoBulleEnd {
  margin-top: 20vh;
}

.infoBulleEnd .masterWhatOffer {
  max-width: 80%;
  display: block;
  margin-right: auto;
  margin-left: auto;
}
.iconSvg {
  width: 60px;
  height: auto;
  margin-bottom: 10px;
}

.notreTravail div {
  background-color: white;
  padding: 10px;
  border-radius: 20px;
}

.backwhite {
  background-color: white;
}

/* bento grid */
.bento {
  min-block-size: 100vh;
  display: flex;
  flex-wrap: wrap;
  gap: 1ch;
  padding: 1ch;
  margin-top: 100px;
}

.bento__container {
  display: grid;
  grid-template-rows: 3fr 1fr 1fr 2fr 2fr 3fr;
  gap: 1ch;
  min-height: inherit;
  flex: 2 0 320px;
}

.bento__container[variant-1] {
  background: transparent;
  grid-template-columns: 3fr 1fr 2fr;
}

.bento__container[variant-2] {
  grid-template-columns: 2fr 3fr 1fr 2fr;
}

.bento__container[variant-3] {
  /* --bg: #72f286; */
  grid-template-columns: 1fr 1fr;
}

.bento__item {
  height: 100%;
  width: 100%;
  grid-column: var(--columns, span 1);
  grid-row: var(--rows, span 1);
  background-color: var(--bg);
  border-radius: 1rem;
}

.lienprojet {
  display: block;
  width: 100%;
  height: 100%;
  background: yellow;
  position: relative;
}
.btnprojet1:hover {
  border: 1px solid #03ff81;
  transition: all 0.5s;
  transform: scale(0.9);
}
.btnprojet1 {
  transition: all 0.5s;
  background-image: url("./img/projetImg/sinfoni.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  display: flex;
  padding-bottom: 0px;
  padding-right: 0px;
  justify-content: space-between;
  border: 1px solid #03ff81;
}
.btnprojet2 {
  background-image: url("./img/projetImg/cryptomockup.jpg");
}
.btnprojet3 {
  background-image: url("./img/projetImg/horizonVirtuel.jpg");
}
.btnprojet4 {
  background-image: url("./img/projetImg/mobitype.jpg");
}
.btnprojet5 {
  background-image: url("./img/eglise/larchant-mockup-large.jpg");
}
.btnprojet6 {
  font-size: 3vw;
  background-image: url("./img/storyfox/mockupLaptop.jpg");
}
.btnprojet7 {
  background-image: url("./assets/greenData/screenData.jpg");
}

.btnprojet8 {
  background-image: url("./assets/opera/mockup-carte-de-visite.jpg");
}
.btnprojet9 {
  background-image: url("./img/projetImg/cover02.jpg");
}
.btnprojet10 {
  background-image: url("./img/projetImg/fdti.png");
}

.btnprojet11 {
  background-image: url("https://lepage.studio/portfolio/img/projet/starminer/starminer.png");
}

.btnprojet12 {
  background-image: url("./img/projetImg/logocover.jpg");
}

.btnprojet13 {
  background-image: url("https://lepage.studio/portfolio/img/cours/preview.png");
}

.btnprojet14 {
  background-image: url("./img/projetImg/euroconstructCover.jpg");
}

.btnprojet15 {
  background-image: url("https://lepage.studio/assets/motion/iphone/2.jpg");
}

.titreProjetHover {
  color: white;
  font-size: 2rem;
  text-transform: uppercase;
  mix-blend-mode: difference;
  text-align: left;
}
/* .titreProjetHoverSmall {
  font-size: 2vw;
} */

.sousTitreProjetHover {
  background: #03ff81;
  font-size: 20px;
  align-self: flex-end;
  margin-bottom: 0px;
  text-transform: uppercase;
  padding: 10px;
  font-size: 13px;
  position: absolute;
  right: 0;
  bottom: 0;
}

.modal {
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  background: rgba(0, 0, 0, 0.2);
}

.modal-dialog {
  width: 90vw;
  display: block;
  min-width: vw;
  margin-right: auto;
  margin-left: auto;
}
.modal-header {
  max-width: 1500px;
  margin-right: auto;
  margin-left: auto;
  border-bottom: 0p;
}
.modal-sub {
  max-width: 800px;
}
.modal-title {
  font-size: 5vw;
  align-items: flex-start !important;
  text-transform: uppercase;
  font-weight: normal;
}
.modal-dialog img {
  max-width: 100%;
  margin-right: auto;
  margin-left: auto;
  display: block;
}
.modal-date {
  text-align: right;
  font-weight: bolder;
  text-transform: uppercase;
}
.modal-body .ouroffer {
  max-width: 200px;
  height: 50px;
  text-align: center;
  display: flex;
  flex-direction: column;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 100px;
}

.modal .btn-close {
  right: 20px;
  margin-right: 20px;
  position: absolute;
  top: 20px;
  background-color: white;
  border: 2px solid #03ff81;
}

.modal-content {
  background: black;
  color: white;
}

a#mail {
  font-size: 12px;
  background-color: #03ff81;
  color: black;
  text-decoration: none;
  padding: 10px;
  position: fixed;
  z-index: 1031;
  top: 0;
  right: 0;
  text-align: right !important;
  transition: all 0.5s;
}

a#mail:hover {
  letter-spacing: 1px;
  font-weight: bolder;
  transform: scale(1.1);
  transition: all 0.5s;
}

.formcontact input,
textarea {
  border: #03ff81 1px solid;
}

/* .btnprojet2 {
  background-image: url("./img/projetImg/cryptomockup.jpg");
}
.btnprojet3 {
  background-image: url("./img/projetImg/horizonVirtuel.jpg");
}
.btnprojet4 {
  background-image: url("./img/projetImg/mobitype.jpg");
}
.btnprojet5 {
  background-image: url("./img/eglise/larchant-mockup-large.jpg");
}
.btnprojet6 {
  font-size: 3vw !important;
  background-image: url("./img/storyfox/mockupLaptop.jpg");
} */

/* Extra small devices (phones, 600px and down) */
/* Extra small devices (phones, 600px and down) */
/* Extra small devices (phones, 600px and down) */
/* Extra small devices (phones, 600px and down) */
/* Extra small devices (phones, 600px and down) */
/* Extra small devices (phones, 600px and down) */
/* Extra small devices (phones, 600px and down) */
/* Extra small devices (phones, 600px and down) */
/* Extra small devices (phones, 600px and down) */
/* Extra small devices (phones, 600px and down) */
/* Extra small devices (phones, 600px and down) */
/* Extra small devices (phones, 600px and down) */
@media only screen and (max-width: 600px) {
}

/* Small devices (portrait tablets and large phones, 600px and up) */
@media only screen and (max-width: 800px) {
  body {
    overflow-x: hidden;
    max-width: 100vw;
  }

  .slogan {
    width: 80%;
    transform: scale(1) !important;
  }

  .textSize-1 {
    font-size: calc(2rem + 2vw);
  }

  .textSize-2 {
    font-size: calc(1rem + 2vw);
  }

  #rockLottie {
    transform: scale(3);
    transform-origin: 25% 80%;
  }

  .textSize-3 {
    font-size: calc(30px + 2vw);
  }

  #discours {
    max-width: 80%;
  }

  .jobSection .col-sm-6 {
    width: 49.5%;
  }

  .jobSection {
    min-height: 100vh;
    height: auto;
    margin-top: 10vh;
    margin-bottom: 10vh;
  }

  .d-sm-none {
    display: none;
  }

  .secondnav .row,
  .secondnav .row a {
    min-height: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 15px;
  }

  .secondnav {
    width: 100%;
    margin-bottom: 0px;
    height: 50px;
  }

  .secondnav .row {
    border-radius: 0px;
    height: 100%;
  }

  .contentCard {
    padding: 20px !important;
    width: 100% !important;
    border-top-right-radius: 0px !important;
    border-top-left-radius: 0px !important;
  }

  .hero {
    align-items: flex-end !important;
  }

  .contentCard p {
    text-wrap: balance !important;
  }

  #rockLottie canvas {
    width: 1000px !important;
    height: auto;
    margin-right: auto;
    margin-left: -300px;
  }

  #rockLottie {
    overflow: hidden;
    max-width: 100vw;
    max-height: 100vh;
    margin-right: auto;
    margin-left: auto;
  }

  .logoMov {
    width: 50px !important;
    height: auto !important;
    margin-top: 2vw !important;
    margin-left: 2vw !important;
  }

  .secondnav .row a {
    font-size: 15px !important;
    font-weight: normal;
  }

  /* .secondnav {
  margin-bottom:30px;
  height: 30px;
  line-height: 30px;
} */
  footer .mailContact,
  footer a {
    font-size: 10px;
    text-align: right;
  }

  footer .mailContact {
    margin-left: 0;
  }

  footer {
    margin-bottom: -10px;
  }

  .contactContent {
    width: 100%;
    margin: auto;
    margin-top: 0px;
  }

  .pageAbout {
    max-width: 100vw;
  }

  .pageAbout .sectionAbout1 p {
    width: 80%;
    margin-top: 100px;
  }

  .sectionAbout2 p {
    max-width: 90%;
    margin: auto;
    text-align: center;
  }

  .sectionAbout3 div {
    width: 80%;
    margin: auto;
  }

  .formcontact .name,
  .formcontact .email {
    width: 100%;
  }

  .formcontact input,
  textarea {
    height: 50px;
  }

  textarea {
    height: 200px;
    min-height: 200px;
  }

  .formcontact {
    padding-bottom: 20vh;
  }

  .formcontact button {
    align-self: center;
    margin-right: auto;
    margin-left: auto;
  }

  .txtintroPro {
    width: 80% !important;
  }

  .cardConceptMaster {
    text-align: center;
  }

  .sinfoniGrid {
    transform: scale(1.5);
  }

  #hero-lightpass {
    transform: scale(2);
  }

  #framePlayer .colorControls {
    background: red !important;
    width: 100vw !important;
  }

  #framePlayer {
    max-width: 100vw;
    width: 100vw;
    height: 50vh;
  }

  #fox {
    width: 80vw !important;
  }

  .smallHero {
    --bs-gutter-x: 0rem;
  }

  .smallHero .hero {
    margin-top: 0vh;
    margin-bottom: 0vh;
  }

  .canvas-container {
    transform: translateY(30vh);
  }

  .smallHero a {
    width: 100%;
    margin-bottom: 5vh;
  }

  .smallHero .hero {
    height: 40vh;
  }

  .videoSection {
    margin-top: 0;
    padding-right: 0;
    padding-left: 0;
  }

  .videoSection video {
    border-radius: 0px;
  }

  .spacerSection3 {
    height: 25vh;
  }

  .smNone {
    display: none;
  }

  .spacerSection3Small {
    height: 20vh !important;
  }

  .sinfoni .cardConcept img {
    width: 65%;
  }

  .sectionClient {
    padding-right: 5vw;
    padding-left: 5vw;
  }

  #logoDemoColor,
  #logoDemoGrey {
    width: 80% !important;
  }

  .maxWidth70 {
    max-width: 90%;
  }

  .masterVideoOpera {
    height: fit-content;
  }

  .videoOpera {
    border-radius: 20px;
    margin-bottom: 25vh;
    margin-top: 20vh;
  }

  #langue {
    padding-bottom: 1vh;
  }

  .maxWidth2 {
    max-width: 100%;
  }

  .habitatImage img {
    width: 100%;
    border-radius: 40px;
    margin-bottom: 25px;
  }

  .habitat .canvas-container {
    transform: translateX(10%) scale(0.6);
  }

  .motionAbove {
    margin-left: 0;
    margin-top: 5vh;
  }
  .motion video {
    width: 100%;
    height: auto;
  }
  .flyingVideo video {
    width: 60%;
    margin-left: 35%;
  }

  .motion .flyingImg {
    width: 60%;
    top: 40%;
  }
  .gradientTop {
    display: block;
  }
  .titreMov {
    text-align: center;
  }
  .home1 {
    padding-right: 20px;
    padding-left: 20px;
    margin-right: auto;
    margin-left: auto;
  }
  .contentJoinUs h5 {
    font-size: 15vw;
  }
  .masterSubOffer {
    display: block;
    margin-right: auto;
    margin-left: auto;
  }
  .subOffer {
    margin-bottom: 20px;
  }
  .invertDisable2 {
    mix-blend-mode: normal !important;
    filter: none !important;
  }
  .theWheel {
    padding-right: 25px;
    padding-left: 25px;
  }
}
