@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap");
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Open Sans", sans-serif;
  font-size: 16px;
  color: #707070;
}

body {
  position: relative;
  width: 100%;
  height: 100%;
}

h1 {
  font-size: 2rem;
  line-height: 1.5;
}

h2 {
  margin-bottom: 50px;
  color: #FFAC4C;
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: center;
}
@media (max-width: 599px) {
  h2 {
    margin-bottom: 20px;
    padding: 0 20px;
    font-size: 1.25em;
  }
}

ul {
  list-style-type: none;
}

.container {
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.orangeElmt {
  color: #FFAC4C !important;
}

strong {
  font-size: 700;
}

.linkMenu {
  font-weight: 700;
  text-decoration: underline;
  color: #ECECEC;
  cursor: pointer;
}
.linkMenu:hover {
  text-decoration: none;
}

.linkConnexion {
  margin-right: 20px;
  padding: 7.5px 20px !important;
  border: 2px solid #FFAC4C;
  text-decoration: none;
  color: #FFAC4C;
  transition: all 0.25s ease;
}
.linkConnexion:hover {
  background-color: #FFAC4C;
  color: #ffffff;
}

.defaultBtn {
  display: block;
  width: fit-content;
  padding: 7.5px 20px;
  border: 2px solid #FFAC4C;
  font-weight: 700;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.25s ease;
}

.whiteBtn {
  background-color: transparent;
  color: #FFAC4C;
}
.whiteBtn:hover {
  background-color: #FFAC4C;
  color: #ffffff;
}

.orangeBtn {
  background-color: #FFAC4C;
  color: #5C4429;
}
.orangeBtn:hover {
  background-color: transparent;
  color: #5C4429;
}

.pages_container {
  display: none;
}

.page_showed {
  display: block;
}

#loader {
  position: absolute;
  top: 0;
  left: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 100vw;
  height: 100vh;
  background-color: #1D1D1B;
  z-index: 999;
}
#loader #bodyOfTheTruck {
  width: 15%;
  margin-bottom: 20px;
}
#loader #bodyOfTheTruck #truck, #loader #bodyOfTheTruck #wheelTruck {
  fill: #FFAC4C;
  transform: translateX(-2px) translateY(0px);
  animation-name: theTruck;
  -moz-animation-name: theTruck;
  -webkit-animation-name: theTruck;
  animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  -webkit-animation-duration: 0.6s;
  animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-direction: alternate;
  -moz-animation-direction: alternate;
  -webkit-animation-direction: alternate;
  animation-play-state: running;
  -moz-animation-play-state: running;
  -webkit-animation-play-state: running;
}
#loader #bodyOfTheTruck #line01 {
  fill: #FFAC4C;
  transform: translateX(5px) translateY(0px);
  animation-name: line01;
  -moz-animation-name: line01;
  -webkit-animation-name: line01;
  animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -webkit-animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-play-state: running;
  -moz-animation-play-state: running;
  -webkit-animation-play-state: running;
}
#loader #bodyOfTheTruck #line02 {
  fill: #FFAC4C;
  transform: translateX(-5px) translateY(-0.25px);
  animation-name: line02;
  -moz-animation-name: line02;
  -webkit-animation-name: line02;
  animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -webkit-animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-play-state: running;
  -moz-animation-play-state: running;
  -webkit-animation-play-state: running;
}
#loader #bodyOfTheTruck #line03 {
  fill: #FFAC4C;
  transform: translateX(5px) translateY(0.5px);
  animation-name: line03;
  -moz-animation-name: line03;
  -webkit-animation-name: line03;
  animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -webkit-animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-play-state: running;
  -moz-animation-play-state: running;
  -webkit-animation-play-state: running;
}
#loader #bodyOfTheTruck svg {
  fill: #FFAC4C;
}
#loader img {
  width: 15%;
}
@media (max-width: 599px) {
  #loader #bodyOfTheTruck {
    width: 50%;
  }
  #loader img {
    width: 50%;
  }
}

#website {
  display: none;
}

.header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100px;
  z-index: 999;
}
.header__TopBar {
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 100px;
  padding: 0 50px;
  z-index: 10;
}
.header__TopBar .topLogo {
  width: 100%;
  max-width: 300px;
  cursor: pointer;
}
.header__TopBar .topMenu {
  display: flex;
  flex-flow: row nowrap;
  align-items: baseline;
}
.header__TopBar .topMenu .linkMenu {
  padding: 0 10px;
}
@media (max-width: 599px) {
  .header__TopBar {
    justify-content: center;
  }
}

main {
  position: relative;
  width: 100%;
  height: auto;
  /* ----------------------------------- */
  /* style spécifique à la page bouclage */
  /* ----------------------------------- */
  /* ---------------------------------- */
  /* style spécifique à la page société */
  /* ---------------------------------- */
}
main .headerMain {
  position: relative;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 80vh;
  background: url("./images/bkg-header.jpeg") center/cover no-repeat;
  font-weight: 800;
  text-align: center;
  z-index: 0;
}
main .headerMain::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 29, 27, 0.65);
  z-index: -1;
}
main .headerMain h1 {
  padding: 0 20px 25px;
  color: #ffffff;
}
main .headerMain h1 span {
  font-size: 2rem;
}
main .headerMain p {
  margin-top: 10px;
  margin-bottom: 50px;
  font-size: 0.9em;
  font-weight: 400;
  color: #ffffff;
}
@media (max-width: 599px) {
  main .headerMain {
    justify-content: flex-start;
  }
  main .headerMain h1 {
    padding: 25vh 20px 20px;
    font-size: 1em;
  }
  main .headerMain h1 span {
    font-size: 1rem;
  }
  main .headerMain p {
    font-size: 0.8em;
  }
}
@media (min-width: 600px) {
  main .headerMain {
    justify-content: flex-start;
  }
  main .headerMain h1 {
    padding: 30vh 20px 20px;
    font-size: 1.25em;
  }
  main .headerMain h1 span {
    font-size: 1.25rem;
  }
}
@media (min-width: 1080px) {
  main .headerMain {
    height: 100vh;
  }
}
@media (min-width: 1200px) {
  main .headerMain {
    justify-content: center;
  }
  main .headerMain h1 {
    padding: 0 20px 25px;
    font-size: 2em;
  }
  main .headerMain h1 span {
    font-size: 2rem;
  }
}
main .darkBlock {
  position: relative;
  width: 100%;
  background-color: #1D1D1B;
}
@media (min-width: 1080px) {
  main .darkBlock {
    padding: 330px 0 100px;
  }
}
@media (min-width: 1200px) {
  main .darkBlock {
    padding: 80px 0 100px;
  }
}
@media screen and (min-height: 400px) and (min-width: 1080px) {
  main .darkBlock {
    padding: 320px 0 100px;
  }
}
@media screen and (min-height: 500px) and (min-width: 1080px) {
  main .darkBlock {
    padding: 295px 0 100px;
  }
}
@media screen and (min-height: 700px) and (min-width: 1080px) {
  main .darkBlock {
    padding: 250px 0 100px;
  }
}
@media screen and (min-height: 800px) and (min-width: 1080px) {
  main .darkBlock {
    padding: 180px 0 100px;
  }
}
@media screen and (min-height: 900px) and (min-width: 1080px) {
  main .darkBlock {
    padding: 130px 0 100px;
  }
}
main .darkBlock .upBlock {
  top: -50%;
  left: 50%;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  padding: 50px 50px;
  background-color: #ffffff;
  box-shadow: 10px 10px 35px rgba(29, 29, 27, 0.5);
  font-weight: 800;
  text-align: center;
}
main .darkBlock .upBlock::after {
  content: " ";
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.15;
  background-image: url("./images/pattern.png");
  background-position: 250% 75%;
  background-size: 75%;
  background-repeat: no-repeat;
  z-index: 1;
}
@media (min-width: 1080px) {
  main .darkBlock .upBlock::after {
    display: block;
  }
}
@media (max-width: 599px) {
  main .darkBlock .upBlock {
    padding: 25px 25px 50px;
  }
  main .darkBlock .upBlock::after {
    background-position: -75% -50%;
    background-size: 125%;
  }
}
@media (min-width: 1080px) {
  main .darkBlock .upBlock {
    position: absolute;
    transform: translate(-50%);
  }
}
main .darkBlock .upBlock #bodyOfTheTruck {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 225px;
}
main .darkBlock .upBlock #bodyOfTheTruck svg {
  width: 90%;
}
main .darkBlock .upBlock #bodyOfTheTruck #truck, main .darkBlock .upBlock #bodyOfTheTruck #wheelTruck {
  fill: #FFAC4C;
  transform: translateX(-2px) translateY(0px);
  animation-name: theTruck;
  -moz-animation-name: theTruck;
  -webkit-animation-name: theTruck;
  animation-duration: 0.6s;
  -moz-animation-duration: 0.6s;
  -webkit-animation-duration: 0.6s;
  animation-timing-function: ease;
  -moz-animation-timing-function: ease;
  -webkit-animation-timing-function: ease;
  animation-fill-mode: forwards;
  -moz-animation-fill-mode: forwards;
  -webkit-animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-direction: alternate;
  -moz-animation-direction: alternate;
  -webkit-animation-direction: alternate;
  animation-play-state: running;
  -moz-animation-play-state: running;
  -webkit-animation-play-state: running;
}
main .darkBlock .upBlock #bodyOfTheTruck #line01 {
  fill: #FFAC4C;
  transform: translateX(5px) translateY(0px);
  animation-name: line01;
  -moz-animation-name: line01;
  -webkit-animation-name: line01;
  animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -webkit-animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-play-state: running;
  -moz-animation-play-state: running;
  -webkit-animation-play-state: running;
}
main .darkBlock .upBlock #bodyOfTheTruck #line02 {
  fill: #FFAC4C;
  transform: translateX(-5px) translateY(-0.25px);
  animation-name: line02;
  -moz-animation-name: line02;
  -webkit-animation-name: line02;
  animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -webkit-animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-play-state: running;
  -moz-animation-play-state: running;
  -webkit-animation-play-state: running;
}
main .darkBlock .upBlock #bodyOfTheTruck #line03 {
  fill: #FFAC4C;
  transform: translateX(5px) translateY(0.5px);
  animation-name: line03;
  -moz-animation-name: line03;
  -webkit-animation-name: line03;
  animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -webkit-animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-play-state: running;
  -moz-animation-play-state: running;
  -webkit-animation-play-state: running;
}
@media (max-width: 599px) {
  main .darkBlock .upBlock #bodyOfTheTruck {
    display: none;
  }
}
main .darkBlock .upBlock p {
  padding: 25px 0 50px;
  line-height: 1.75;
  color: #1D1D1B;
  z-index: 2;
}
@media (max-width: 599px) {
  main .darkBlock .upBlock p {
    padding: 0 0 20px;
    font-size: 1em;
  }
  main .darkBlock .upBlock p span {
    font-size: 1rem;
  }
}
main .darkBlock .upBlock a {
  z-index: 2;
}
main .darkBlock .upBlock .defaultBtn {
  padding: 7.5px 20px;
  line-height: initial;
  color: #FFAC4C;
}
main .darkBlock .upBlock .defaultBtn:hover {
  color: #ffffff;
}
@media (max-width: 599px) {
  main .darkBlock .upBlock {
    top: -25%;
  }
}
@media (min-width: 600px) {
  main .darkBlock .upBlock {
    top: -32.5%;
  }
}
@media screen and (min-height: 400px) and (min-width: 1080px) {
  main .darkBlock .upBlock {
    top: -2.5%;
  }
}
@media screen and (min-height: 500px) and (min-width: 1080px) {
  main .darkBlock .upBlock {
    top: -6.5%;
  }
}
@media screen and (min-height: 700px) and (min-width: 1080px) {
  main .darkBlock .upBlock {
    top: -10.5%;
  }
}
@media screen and (min-height: 800px) and (min-width: 1080px) {
  main .darkBlock .upBlock {
    top: -20.5%;
  }
}
@media screen and (min-height: 900px) and (min-width: 1080px) {
  main .darkBlock .upBlock {
    top: -26.5%;
  }
}
main .darkBlock h2 {
  padding: 0 20px;
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  main .darkBlock h2 {
    margin-bottom: 50px;
    font-size: 1.25em;
  }
}
main .darkBlock__content {
  margin-top: 50px;
}
@media (min-width: 900px) {
  main .darkBlock__content {
    margin-top: 50px;
  }
}
@media (min-width: 1080px) {
  main .darkBlock__content {
    margin-top: 280px;
  }
}
main .darkBlock .block {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  padding: 0 45px;
  text-align: center;
}
@media (min-width: 768px) {
  main .darkBlock .block {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "s1 s1" "s1-t1 s1-t2" "s1-c1 s1-c2" "s2 s3" "s2-t s3-t" "s2-c s3-c";
    column-gap: 40px;
  }
}
@media (min-width: 1080px) {
  main .darkBlock .block {
    grid-template-columns: repeat(4, 1fr);
    grid-template-areas: "s1 s1 s2 s3" "s1-t1 s1-t2 s2-t s3-t" "s1-c1 s1-c2 s2-c s3-c";
    column-gap: 0;
    padding: 0;
  }
}
main .darkBlock .block .section {
  margin-bottom: 25px;
}
main .darkBlock .block .section__title {
  margin-bottom: 10px;
  color: #FFAC4C;
}
@media (min-width: 1080px) {
  main .darkBlock .block .section__title {
    padding: 0 20px;
    margin-bottom: 55px;
    color: #707070;
  }
}
main .darkBlock .block .section__content {
  position: relative;
  margin-bottom: 50px;
}
@media (min-width: 1080px) {
  main .darkBlock .block .section__content {
    margin-bottom: 0;
  }
}
@media (min-width: 768px) {
  main .darkBlock .block .section--1 {
    grid-area: s1;
  }
}
@media (min-width: 768px) {
  main .darkBlock .block .section--1__title--1 {
    grid-area: s1-t1;
  }
}
@media (min-width: 768px) {
  main .darkBlock .block .section--1__title--2 {
    grid-area: s1-t2;
  }
}
@media (min-width: 768px) {
  main .darkBlock .block .section--1--content--1 {
    grid-area: s1-c1;
  }
}
@media (min-width: 768px) {
  main .darkBlock .block .section--1--content--2 {
    grid-area: s1-c2;
  }
}
@media (min-width: 768px) {
  main .darkBlock .block .section--2 {
    grid-area: s2;
  }
}
@media (min-width: 768px) {
  main .darkBlock .block .section--2__title {
    grid-area: s2-t;
  }
}
@media (min-width: 768px) {
  main .darkBlock .block .section--2__content {
    grid-area: s2-c;
  }
}
@media (min-width: 768px) {
  main .darkBlock .block .section--3 {
    grid-area: s3;
  }
}
@media (min-width: 768px) {
  main .darkBlock .block .section--3__title {
    grid-area: s3-t;
  }
}
@media (min-width: 768px) {
  main .darkBlock .block .section--3__content {
    grid-area: s3-c;
  }
}
main .darkBlock .block .defaultBtn {
  display: none;
  margin: 0 auto;
}
main .darkBlock .block .defaultBtn:hover + .listing {
  display: block;
}
@media (min-width: 1080px) {
  main .darkBlock .block .defaultBtn {
    display: block;
  }
}
main .darkBlock .block .listing {
  width: 100%;
  background-color: #1D1D1B;
  z-index: 4;
  transition-property: display, transform;
  transition-timing-function: ease;
  transition-delay: 0.25s, 0s;
  transition-duration: 0.25s;
  box-shadow: 10px 10px 35px rgba(29, 29, 27, 0.5);
}
@media (min-width: 1080px) {
  main .darkBlock .block .listing {
    display: none;
    position: absolute;
    width: 270px;
    padding: 40px 20px 20px;
  }
}
main .whiteBlock {
  padding: 100px 0;
  background-color: #ffffff;
}
main .whiteBlock h2 {
  margin-bottom: 50px;
}
@media (max-width: 599px) {
  main .whiteBlock {
    padding: 50px 0;
  }
  main .whiteBlock h2 {
    margin-bottom: 0;
    padding: 0 20px;
    font-size: 1.25rem;
  }
}
main .whiteBlock .content {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: baseline;
  width: 100%;
  margin: auto;
  padding: 0 100px;
  text-align: center;
  color: #1D1D1B;
}
main .whiteBlock .content__Text {
  margin: 0 50px;
  line-height: 1.75;
}
main .whiteBlock .content #helmet {
  transform: translateX(0px) translateY(-50px) rotate(0deg);
  transform-origin: 50% 40%;
  animation-name: helmet;
  -moz-animation-name: helmet;
  -webkit-animation-name: helmet;
  animation-duration: 1.8s;
  -moz-animation-duration: 1.8s;
  -webkit-animation-duration: 1.8s;
  animation-direction: alternate;
  -moz-animation-direction: alternate;
  -webkit-animation-direction: alternate;
  animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-play-state: paused;
  -moz-animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
main .whiteBlock .content #head {
  transform: translateY(0px);
  animation-name: head;
  -moz-animation-name: head;
  -webkit-animation-name: head;
  animation-duration: 1.8s;
  -moz-animation-duration: 1.8s;
  -webkit-animation-duration: 1.8s;
  animation-delay: 0.55s;
  -moz-animation-delay: 0.55s;
  -webkit-animation-delay: 0.55s;
  animation-direction: alternate;
  -moz-animation-direction: alternate;
  -webkit-animation-direction: alternate;
  animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -webkit-animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-play-state: paused;
  -moz-animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
main .whiteBlock .content #arrows {
  transform: rotate(0deg);
  transform-origin: 50% 50%;
  animation-name: arrows;
  -moz-animation-name: arrows;
  -webkit-animation-name: arrows;
  animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-timing-function: ease-in-out;
  -moz-animation-timing-function: ease-in-out;
  -webkit-animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-play-state: paused;
  -moz-animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
main .whiteBlock .content #shovel {
  transform-origin: 50%;
  animation-name: shovel;
  -moz-animation-name: shovel;
  -webkit-animation-name: shovel;
  animation-duration: 1.2s;
  -moz-animation-duration: 1.2s;
  -webkit-animation-duration: 1.2s;
  animation-direction: alternate;
  -moz-animation-direction: alternate;
  -webkit-animation-direction: alternate;
  animation-timing-function: ease-in;
  -moz-animation-timing-function: ease-in;
  -webkit-animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-iteration-count: infinite;
  animation-play-state: paused;
  -moz-animation-play-state: paused;
  -webkit-animation-play-state: paused;
}
main .whiteBlock .content .contentAnimate:hover .svgAnimate #helmet,
main .whiteBlock .content .contentAnimate:hover .svgAnimate #head,
main .whiteBlock .content .contentAnimate:hover .svgAnimate #arrows,
main .whiteBlock .content .contentAnimate:hover .svgAnimate #shovel {
  animation-play-state: running;
}
@media (max-width: 599px) {
  main .whiteBlock .content {
    flex-flow: row wrap;
    padding: 0 20px;
  }
  main .whiteBlock .content__Text {
    margin: 0 25px;
    padding-bottom: 25px;
  }
  main .whiteBlock .content__Text .svgAnimate {
    width: 50%;
  }
}
@media (min-width: 600px) {
  main .whiteBlock .content {
    padding: 0 20px;
  }
  main .whiteBlock .content__Text {
    margin: 0 25px;
    padding-bottom: 25px;
    width: calc(50% - 50px);
  }
  main .whiteBlock .content__Text .svgAnimate {
    width: 75%;
  }
}
main .whiteBlock a {
  margin: 50px auto 0;
  text-align: center;
}
@media (max-width: 599px) {
  main .whiteBlock a {
    margin: 20px auto 0;
  }
}
main .greyBlock {
  padding: 100px 0;
  background-color: #ECECEC;
  text-align: center;
  /* @include tabletVert {
      padding: 50px 0;

      p { padding: 0 20px; }
  } */
}
main .greyBlock h2 {
  margin-bottom: 50px;
}
main .greyBlock p {
  padding: 0;
  line-height: 1.75;
}
main .greyBlock a {
  margin: 50px auto;
  text-align: center;
}
main .greyBlock hr {
  height: 1px;
  margin: 15px 25px;
  background-color: #ffac4c;
  border: none;
}
main .greyBlock .block {
  padding: 0 25px;
  margin-bottom: 80px;
}
main .greyBlock .block > p {
  margin-bottom: 25px;
}
main .greyBlock .block em {
  font-style: normal;
  text-decoration: underline;
}
main .greyBlock .block--1 p {
  margin-bottom: 35px;
}
main .greyBlock .block--1 em {
  font-weight: 600;
}
main .greyBlock .block--1 .list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
  margin-bottom: 35px;
}
main .greyBlock .block--1 .list__text {
  flex: 1 0 100%;
  padding: 0 25px;
}
@media (min-width: 600px) {
  main .greyBlock .block--1 .list__text {
    flex: 1 0 30%;
  }
}
main .greyBlock .block--1 .list__text span {
  font-weight: 600;
}
main .greyBlock .block--1 .list__text img {
  height: 20px;
  margin-bottom: 5px;
}
@media (min-width: 600px) {
  main .greyBlock .block--1 .list__text img {
    display: none;
  }
}
main .greyBlock .block--1 .list__image {
  display: flex;
  align-items: center;
}
main .greyBlock .block--1 .list__image img {
  display: none;
  height: 130px;
}
@media (min-width: 600px) {
  main .greyBlock .block--1 .list__image img {
    display: inline;
  }
}
main .greyBlock .block--1 .details p {
  margin-bottom: 8px;
}
main .greyBlock .block--1 .details ul {
  margin-bottom: 16px;
  list-style-type: circle;
  list-style-position: inside;
}
main .greyBlock .block--1 .details li {
  margin-bottom: 8px;
}
main .greyBlock .block--2 {
  display: grid;
  grid-template-columns: 1fr;
  padding: 0;
  background-color: #ffffff;
  box-shadow: 10px 10px 35px rgba(29, 29, 27, 0.5);
}
@media (min-width: 768px) {
  main .greyBlock .block--2 {
    grid-template-columns: 2fr 1fr;
  }
}
main .greyBlock .block--2__container {
  display: grid;
  grid-template-rows: auto;
  padding: 50px;
}
@media (min-width: 480px) {
  main .greyBlock .block--2__container {
    display: block;
    text-align: left;
  }
}
@media (min-width: 768px) {
  main .greyBlock .block--2__container {
    padding: 65px;
  }
}
main .greyBlock .block--2__text {
  padding: 0;
  margin-bottom: 50px;
  color: #FFAC4C;
  font-weight: 600;
}
main .greyBlock .block--2__list {
  display: grid;
  grid-template-rows: auto;
  gap: 35px;
}
main .greyBlock .block--2__list li {
  align-items: center;
  gap: 20px;
  width: 100%;
}
@media (min-width: 480px) {
  main .greyBlock .block--2__list li {
    display: flex;
  }
}
main .greyBlock .block--2__list li img {
  height: 20px;
}
main .greyBlock .block--2__list li p {
  padding: 0;
}
main .greyBlock .block--2__list li span {
  font-weight: 600;
}
main .greyBlock .block--2__image {
  display: none;
  background-image: url("./images/AdobeStock_332129046.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
@media (min-width: 768px) {
  main .greyBlock .block--2__image {
    display: block;
  }
}
main .greyBlock .block--3 p {
  margin-bottom: 35px;
}
main .greyBlock .block--3 .list {
  display: flex;
  flex-wrap: wrap;
  row-gap: 25px;
}
main .greyBlock .block--3 .list__text {
  flex: 1 0 100%;
  padding: 0 25px;
}
@media (min-width: 600px) {
  main .greyBlock .block--3 .list__text {
    flex: 1 0 30%;
  }
}
main .greyBlock .block--3 .list__text span {
  font-weight: 600;
}
main .greyBlock .block--3 .list__text img {
  height: 20px;
  margin-bottom: 5px;
}
@media (min-width: 600px) {
  main .greyBlock .block--3 .list__text img {
    display: none;
  }
}
main .greyBlock .block--3 .list__image {
  display: flex;
  align-items: center;
}
main .greyBlock .block--3 .list__image img {
  display: none;
  height: 120px;
}
@media (min-width: 600px) {
  main .greyBlock .block--3 .list__image img {
    display: inline;
  }
}
main .greyBlock .whiteInnerBlock {
  display: flex;
  flex-flow: row nowrap;
  align-items: stretch;
  width: 100%;
  max-width: 1080px;
  margin: 50px auto;
  background-color: #ffffff;
  box-shadow: 10px 10px 35px rgba(29, 29, 27, 0.5);
}
@media (min-width: 600px) {
  main .greyBlock .whiteInnerBlock {
    margin: 100px auto 50px;
  }
}
main .greyBlock .whiteInnerBlock .left {
  width: 33.3333333333%;
  background-image: url("./images/img-block-left.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
main .greyBlock .whiteInnerBlock .right {
  width: 66.6666666667%;
  height: 100%;
  padding: 50px;
}
main .greyBlock .whiteInnerBlock .right h2 {
  text-align: left;
}
main .greyBlock .whiteInnerBlock .right p {
  padding: 10px 0;
  text-align: left;
  line-height: 1.75;
}
main .greyBlock .whiteInnerBlock .right em {
  font-style: normal;
  text-decoration: underline;
}
main .greyBlock .whiteInnerBlock .right hr {
  height: 1px;
  margin: 15px 0;
  background-color: #ffac4c;
  border: none;
}
main .greyBlock .whiteInnerBlock .right ul {
  text-align: left;
  font-style: italic;
  list-style-type: circle;
  list-style-position: inside;
}
main .greyBlock .whiteInnerBlock .right ul li {
  font-style: normal;
}
main .greyBlock .whiteInnerBlock .right .more {
  text-decoration: underline;
  cursor: pointer;
}
main .greyBlock .whiteInnerBlock .right .more:hover {
  color: #FFAC4C;
}
main .greyBlock .whiteInnerBlock .right .listingWhiteInnerBlock p, main .greyBlock .whiteInnerBlock .right .listingWhiteInnerBlock strong {
  transition: color 0.5s ease;
}
main .greyBlock .whiteInnerBlock .right .listingWhiteInnerBlock .title {
  padding: 20px 0 0;
}
main .greyBlock .whiteInnerBlock .right .listingWhiteInnerBlock .subtitle {
  padding: 0;
}
main .greyBlock .whiteInnerBlock .right .listingWhiteInnerBlock .listings {
  display: none;
  transform: scaleY(0);
  transition-property: display, transform;
  transition-timing-function: ease;
  transition-delay: 0.25s, 0s;
  transition-duration: 0.25s;
}
main .greyBlock .whiteInnerBlock .right .listingWhiteInnerBlock .listings .listingTitle {
  padding: 10px 0 0;
  font-style: italic;
}
main .greyBlock .whiteInnerBlock .right .listingWhiteInnerBlock .listings .listing {
  padding: 0;
}
main .greyBlock .whiteInnerBlock .right .listingWhiteInnerBlock ul {
  list-style-type: none;
  line-height: 1.75;
}
main .greyBlock .mention {
  font-size: 0.75rem;
  font-style: italic;
  text-align: center;
}
@media (max-width: 599px) {
  main .greyBlock {
    padding: 50px 0;
  }
  main .greyBlock h2 {
    margin-bottom: 20px;
    padding: 0 20px;
    font-size: 1.25rem;
  }
  main .greyBlock p {
    padding: 0 20px;
  }
  main .greyBlock .whiteInnerBlock .left {
    display: none;
  }
  main .greyBlock .whiteInnerBlock .right {
    width: 100%;
  }
  main .greyBlock .whiteInnerBlock .right h2, main .greyBlock .whiteInnerBlock .right p {
    text-align: center;
  }
  main .greyBlock .whiteInnerBlock .right a {
    margin: 50px auto 0;
  }
}
main #page_bouclage .headerMain {
  height: 650px;
  background: url("./images/bkg-header-02.jpeg") center/cover no-repeat;
}
@media (max-width: 599px) {
  main #page_bouclage .headerMain {
    height: auto;
  }
  main #page_bouclage .headerMain a {
    margin-bottom: 50px;
  }
}
main #page_bouclage .content {
  background-color: #ECECEC;
}
main #page_bouclage .content .breadcrump {
  padding: 25px 0;
  font-weight: 700;
}
main #page_bouclage .content .breadcrumpDown {
  text-align: right;
}
main #page_bouclage .content__Box {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
}
main #page_bouclage .content__Box .boxContent {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  background-image: url("./images/bkg-box.jpeg");
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
main #page_bouclage .content__Box .boxContent__Overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(29, 29, 27, 0.65);
  z-index: 0;
}
main #page_bouclage .content__Box .boxContent p {
  position: relative;
  padding: 50px;
  font-weight: 700;
  text-align: center;
  line-height: 1.75;
  z-index: 1;
}
main #page_bouclage .content__Box .boxContent .arrowRight {
  display: block;
  position: absolute;
  top: 50%;
  right: -15px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 15px solid #1d1d1b;
}
main #page_bouclage .content__Box .boxContent .arrowBottom {
  display: none;
}
main #page_bouclage .content__Box .box {
  width: auto;
}
main #page_bouclage .content__Box .box img {
  width: 100%;
}
main #page_bouclage .content__Text {
  margin-top: 50px;
}
main #page_bouclage .content__Text p {
  line-height: 1.75;
}
main #page_bouclage .content__Text ul {
  list-style: inside;
  line-height: 1.75;
}
@media (max-width: 599px) {
  main #page_bouclage .content .breadcrump {
    padding: 25px 20px;
  }
  main #page_bouclage .content__Box {
    grid-template-columns: repeat(1, 1fr);
  }
  main #page_bouclage .content__Box .boxContent .arrowRight {
    display: none;
  }
  main #page_bouclage .content__Box .boxContent .arrowBottom {
    display: block;
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-right: 15px solid transparent;
    border-left: 15px solid transparent;
    border-top: 15px solid #1d1d1b;
  }
  main #page_bouclage .content__Text {
    padding: 0 20px;
  }
}
@media (min-width: 600px) {
  main #page_bouclage .content .breadcrump {
    padding: 25px 20px;
  }
  main #page_bouclage .content__Text {
    padding: 0 20px;
  }
}
main #page_societe .headerMain {
  height: 650px;
  background: url("./images/bkg-header.jpeg") center bottom/cover no-repeat;
}
main #page_societe .headerMain p {
  max-width: 1080px;
  font-weight: 400;
  font-style: italic;
  color: #ffffff;
}
main #page_societe .headerMain p strong {
  color: #ffffff;
}
@media (max-width: 599px) {
  main #page_societe .headerMain {
    height: auto;
  }
  main #page_societe .headerMain p {
    margin-bottom: 50px;
  }
}
main #page_societe .content {
  background-color: #ECECEC;
}
main #page_societe .content .breadcrump {
  padding: 25px 0;
  font-weight: 700;
}
main #page_societe .content .breadcrumpDown {
  text-align: right;
}
main #page_societe .content__Box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px 200px;
  padding: 50px 0;
}
main #page_societe .content__Box .box h3 {
  font-size: 4rem;
  font-weight: 800;
}
main #page_societe .content__Box .box p {
  font-style: italic;
  line-height: 1.75;
}
main #page_societe .content__Legal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 50px;
  margin: 100px auto 0;
  padding: 20px 0;
  border: 1px solid #373737;
}
@media (max-width: 599px) {
  main #page_societe .headerMain p {
    padding: 0 20px;
  }
  main #page_societe .content .breadcrump {
    padding: 25px 20px;
  }
  main #page_societe .content__Box {
    grid-template-columns: repeat(1, 1fr);
  }
  main #page_societe .content__Box .box {
    padding: 0 20px;
  }
  main #page_societe .content__Legal {
    grid-template-columns: repeat(1, 1fr);
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
  }
  main #page_societe .content__Legal .legal {
    padding: 0 20px;
  }
}
@media (min-width: 600px) {
  main #page_societe .headerMain p {
    padding: 0 20px;
  }
  main #page_societe .content .breadcrump {
    padding: 25px 20px;
  }
  main #page_societe .content__Box {
    grid-template-columns: repeat(2, 1fr);
    gap: 50px;
  }
  main #page_societe .content__Box .box {
    padding: 0 20px;
  }
  main #page_societe .content__Legal {
    grid-template-columns: repeat(2, 1fr);
    width: auto;
    margin-right: 20px;
    margin-left: 20px;
  }
  main #page_societe .content__Legal .legal {
    padding: 0 20px;
  }
}
@media (min-width: 900px) {
  main #page_societe .content__Box {
    grid-template-columns: repeat(3, 1fr);
  }
  main #page_societe .content__Legal {
    grid-template-columns: repeat(3, 1fr);
    width: auto;
    margin-right: auto;
    margin-left: auto;
  }
}

footer {
  position: relative;
  padding: 100px;
  background: linear-gradient(50deg, #373737 0%, #1d1d1b 100%);
}
footer::after {
  content: " ";
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-image: url("./images/icon-regulapro.png");
  background-position: 130% 5%;
  background-size: 50%;
  background-repeat: no-repeat;
  z-index: 1;
}
footer .bottomLogo {
  position: relative;
  width: 100%;
  max-width: 300px;
  cursor: pointer;
  z-index: 2;
}
footer p {
  position: relative;
  margin: 10px 0 50px;
  color: #707070;
  z-index: 2;
}
footer .downMenu {
  position: relative;
}
footer .downMenu .linkMenu {
  padding: 0 20px 0 0;
  z-index: 2;
}
footer .downMenu .linkMenu:hover {
  text-decoration: none;
}
@media (max-width: 599px) {
  footer {
    padding: 50px 20px;
  }
}

.active {
  display: block !important;
  transform: scaleY(1) !important;
}

@keyframes theTruck {
  from {
    transform: translateX(4px) translateY(0px);
  }
  to {
    transform: translateX(-2px) translateY(0px);
  }
}
@keyframes line01 {
  from {
    transform: translateX(5px) translateY(0px);
  }
  to {
    transform: translateX(125px) translateY(0px);
  }
}
@keyframes line02 {
  from {
    transform: translateX(-5px) translateY(0px);
  }
  to {
    transform: translateX(80px) translateY(0px);
  }
}
@keyframes line03 {
  from {
    transform: translateX(5px) translateY(0px);
  }
  to {
    transform: translateX(95px) translateY(0px);
  }
}
@keyframes helmet {
  from {
    transform: translateX(0px) translateY(0px) rotate(360deg);
  }
  to {
    transform: translateX(0px) translateY(-75px) rotate(0deg);
  }
}
@keyframes head {
  from {
    transform: translateY(1px);
  }
  to {
    transform: translateY(0px);
  }
}
@keyframes arrows {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes shovel {
  from {
    transform: translateX(15px) rotate(-25deg);
  }
  to {
    transform: translateX(-40px) rotate(0deg);
  }
}

/*# sourceMappingURL=main.css.map */
