@font-face {
  font-family: "Calming";
  src: url(fonts/Calming.otf);
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
  overflow-x: hidden;
}

body {
  max-width: 1920px;
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background-color: #F2ECE4;
}

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
  overflow: hidden;
}

/* Track */
::-webkit-scrollbar-track {
  background: #F2ECE4;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #BFB08A;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #5b5c5c;
}

#loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #BFB08A;
  z-index: 100;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#loading .logo svg {
  width: 300px;
}

@-webkit-keyframes scaleSvg {
  from {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes scaleSvg {
  from {
    -webkit-transform: scale(0.8);
            transform: scale(0.8);
  }
  to {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

#loading svg path {
  fill-opacity: 0;
  stroke: white;
  stroke-width: 0.5;
  stroke-dasharray: 419;
  stroke-dashoffset: 419;
  -webkit-animation-name: draw;
  animation-name: draw;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-iteration-count: 1;
  animation-iteration-count: 1;
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
}

#loading .cls-2 {
  -webkit-animation-delay: .4s;
  animation-delay: .4s;
}

#loading .cls-3 {
  -webkit-animation-delay: .5s;
  animation-delay: .5s;
}

#loading .cls-4 {
  -webkit-animation-delay: .6s;
  animation-delay: .6s;
}

#loading .cls-5 {
  -webkit-animation-delay: .7s;
  animation-delay: .7s;
}

@-webkit-keyframes draw {
  90% {
    stroke-dashoffset: 0;
    stroke-width: 1;
    fill-opacity: 0;
  }
  100% {
    stroke-width: 0;
    fill-opacity: 1;
  }
}

@keyframes draw {
  90% {
    stroke-dashoffset: 0;
    stroke-width: .5;
    fill-opacity: 0;
  }
  100% {
    stroke-width: 0;
    fill-opacity: 1;
  }
}

#succes {
  z-index: 9999;
  display: none;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition-duration: .6s;
  transition-duration: .6s;
}

#succes > div {
  text-align: center;
  font-size: 24px;
  z-index: 1;
  color: #a77e50;
  background-color: #F8F0E5;
  padding: 60px;
  line-height: 1.5;
  position: relative;
}

#succes.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

#succes.hidden {
  visibility: hidden !important;
  opacity: 0 !important;
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: #a77e50;
  cursor: pointer;
}

.width {
  padding: 0 13%;
  margin: 0 auto;
}

h1 {
  font-family: "Roboto Slab", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 86px;
  line-height: 90%;
  color: white;
  max-width: 20ch;
  margin-bottom: 48px;
  position: relative;
  text-transform: uppercase;
}

h1:after {
  content: '';
  position: absolute;
  top: -3%;
  left: -8%;
  width: 134px;
  height: 3px;
  background-color: white;
  -webkit-transform: rotate(-30deg);
          transform: rotate(-30deg);
}

a {
  text-decoration: none;
}

a, p, li, span {
  font-family: "Roboto", sans-serif;
}

span {
  display: inline-block;
}

.subtitle {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 500;
  font-size: 16px;
  line-height: 152.19%;
  /* or 24px */
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #839B96;
  margin-bottom: 20px;
}

h2 {
  font-family: "Roboto Slab", serif;
  color: #5b5c5c;
  font-style: normal;
  font-weight: 300;
  font-size: 46px;
  line-height: 95%;
  margin-bottom: 45px;
  position: relative;
}

h2:after {
  position: absolute;
  top: -130%;
  left: -2%;
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 700;
  font-size: 126px;
  line-height: 152.19%;
  letter-spacing: -0.055em;
  text-transform: uppercase;
  color: rgba(49, 42, 36, 0.1);
}

p {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 165%;
  color: #5b5c5c;
  margin-bottom: 20px;
}

.btn {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 152.19%;
  /* or 24px */
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px 20px;
  width: 320px;
  margin-top: 50px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  border-radius: 3px;
  cursor: pointer;
  background-color: #5b5c5c;
  border: 1px solid #5b5c5c;
  color: #F2ECE4;
}

.btn:hover {
  background-color: transparent;
  color: #5b5c5c;
}

.btn:hover img {
  -webkit-filter: none;
  filter: none;
}

.btn img {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-left: 20px;
  -webkit-filter: invert(1);
  filter: invert(1);
  position: relative;
  -webkit-animation: arrowRight 0.5s linear infinite alternate;
  animation: arrowRight 0.5s linear infinite alternate;
}

@-webkit-keyframes arrowRight {
  from {
    left: 0;
  }
  to {
    left: 5px;
  }
}

@keyframes arrowRight {
  from {
    left: 0;
  }
  to {
    left: 5px;
  }
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 99;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

header.active {
  padding: 15px 0;
  background-color: #F2ECE4;
}

header.active .logo {
  width: 100px;
}

header.active .logo a img {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  -webkit-filter: invert(1);
          filter: invert(1);
}

header.active .nav a {
  color: #5b5c5c;
}

header.active #menu-btn span, header.active #menu-btn span:after, header.active #menu-btn span:before {
  background-color: #5b5c5c;
}

header.active #menu-btn.active span {
  background-color: transparent;
}

header > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header > div .logo {
  width: 160px;
  position: relative;
  z-index: 100;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

header > div .logo a img {
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

header > div .logo a img.active {
  -webkit-filter: none;
          filter: none;
}

header > div .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header > div .nav a {
  color: white;
  font-weight: 500;
  font-size: 18px;
  margin-right: 85px;
}

header > div nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-color: #F2ECE4;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: opacity .5s ease-in,visibility .5s ease-in;
  transition: opacity .5s ease-in,visibility .5s ease-in;
}

header > div nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  list-style-type: none;
  text-align: center;
}

header > div nav ul li {
  margin: 1em;
}

header > div nav ul li a {
  color: #5b5c5c;
  font-family: "Roboto Slab", serif;
  text-transform: uppercase;
  font-size: 26px;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

header > div nav ul li a:hover {
  border-bottom: 1px solid #BFB08A;
}

header > div nav ul .last {
  margin-top: 2em;
}

header > div nav ul .last a {
  text-transform: initial;
  font-size: 20px;
  font-family: "Roboto", sans-serif;
}

header > div nav.active {
  opacity: 1;
  visibility: visible;
}

.filter {
  -webkit-filter: none;
  filter: none !important;
}

#menu-btn {
  background-color: transparent;
  cursor: pointer;
  border: none;
  width: 27px;
  height: 30px;
  position: relative;
  z-index: 100;
}

#menu-btn.active span {
  background-color: transparent;
}

#menu-btn.active span::before {
  -webkit-transform: translateY(-8px) rotate(135deg);
          transform: translateY(-8px) rotate(135deg);
  background-color: #5b5c5c;
}

#menu-btn.active span::after {
  -webkit-transform: translateY(4px) rotate(-135deg);
          transform: translateY(4px) rotate(-135deg);
  background-color: #5b5c5c;
}

#menu-btn span, #menu-btn span::before, #menu-btn span::after {
  content: "";
  width: 27px;
  height: 2px;
  display: block;
  position: absolute;
  background-color: white;
  border-radius: 40px;
}

#menu-btn span::before {
  top: 6px;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

#menu-btn span::after {
  bottom: 6px;
  -webkit-transition: all 0.1s linear;
  transition: all 0.1s linear;
}

nav.active ~ .logo {
  -webkit-filter: initial;
  filter: initial;
}

#accueil {
  height: 100vh;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}

#accueil > div {
  width: 100%;
  margin-top: 10%;
}

#accueil > div span {
  font-weight: 400;
  font-size: 18px;
  line-height: 152.19%;
  letter-spacing: 0.02em;
  color: white;
}

#accueil > div span img {
  position: relative;
  margin-left: 23px;
  -webkit-animation: moveDown 0.5s linear infinite alternate;
  animation: moveDown 0.5s linear infinite alternate;
}

#accueil .line {
  position: absolute;
  bottom: 0;
  right: 15%;
  width: 5px;
  background-color: #F2ECE4;
  height: 20%;
  overflow: hidden;
  z-index: 9;
}

#accueil .line:after {
  content: '';
  width: 7px;
  height: 50%;
  background-color: #BFB08A;
  position: absolute;
  z-index: 10;
  -webkit-animation: animate 2s linear infinite;
  animation: animate 2s linear infinite;
}

@-webkit-keyframes animate {
  0% {
    top: 0;
  }
  100% {
    top: 100%;
  }
}

@keyframes animate {
  0% {
    top: -100%;
  }
  100% {
    top: 100%;
  }
}

@-webkit-keyframes moveDown {
  from {
    top: 0;
  }
  to {
    top: 20px;
  }
}

@keyframes moveDown {
  from {
    top: 0;
  }
  to {
    top: 10px;
  }
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
}

.flex:after {
  content: '';
  position: absolute;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  top: 25%;
  width: 1px;
  background-color: #BFB08A;
  height: 500px;
}

.flex > div {
  width: 45%;
}

.flex > div.img {
  height: 300px;
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

.flex > div.img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

#localisation {
  background-color: #BFB08A;
}

#localisation * {
  color: #5b5c5c;
}

#localisation .flex:after {
  background-color: #F2ECE4;
}

#localisation .flex .btn {
  border: 1px solid #F2ECE4;
}

#localisation .flex .btn:hover {
  background-color: #F2ECE4;
  color: #BFB08A;
}

#localisation .flex .btn:hover img {
  -webkit-filter: none;
          filter: none;
}

#localisation .flex .btn img {
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

#localisation .flex > div.img {
  height: 450px;
}

#localisation .flex .txt h2:after {
  content: '02';
  color: #fff9ec;
  opacity: 0.5;
  z-index: -1;
  top: -100px;
}

#projet {
  margin-top: 100px;
}

#projet .flex {
  padding-top: 50px;
}

#projet .flex:after {
  top: 14%;
}

#projet .flex .txt h2:after {
  content: '01';
  top: -100px;
}

#projet .flex .img {
  height: 525px;
}

#interieurs {
  margin-top: 100px;
}

#interieurs .flex {
  padding-top: 50px;
}

#interieurs .flex:after {
  top: 14%;
}

#interieurs .flex .txt h2:after {
  content: '03';
  top: -120px;
}

#interieurs .flex .img {
  height: 625px;
}

#icons-section {
  background-color: #839B96;
  padding: 180px;
}

#icons-section * {
  color: #F2ECE4;
}

#icons-section h2 {
  margin-bottom: 150px;
  text-align: center;
}

#icons-section .container {
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#icons-section .container > div {
  width: 33%;
  text-align: center;
}

#icons-section .container > div p {
  margin-top: 21px;
  font-style: normal;
  font-weight: 300;
  font-size: 20px;
  line-height: 152.19%;
  letter-spacing: 0.05em;
}

#icons-section .container > div.borders {
  border-left: 1px solid white;
  border-right: 1px solid white;
}

#icons-section .container > div > div:first-child {
  margin-bottom: 68px;
}

#icons-section .container > div > div img, #icons-section .container > div > div svg {
  height: 42px;
}

.fullImg {
  min-height: 100vh;
  background-position: center bottom;
  background-size: cover;
}

#architecture {
  background-color: #F2ECE4;
}

#architecture * {
  color: #5b5c5c;
}

#architecture .flex:after {
  top: 20%;
  background-color: #BFB08A;
}

#architecture .flex .txt h2:after {
  content: '04';
  color: rgba(177, 96, 36, 0.1);
  top: -130px;
}

#architecture .flex .txt .btn {
  border: 1px solid #BFB08A;
}

#architecture .flex .txt .btn:hover {
  background-color: #BFB08A;
  border: 1px solid #839B96;
  color: #F2ECE4;
}

#architecture .flex .txt .btn:hover img {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

#galerie {
  padding-top: 160px;
  padding-bottom: 160px;
  background-color: #BFB08A;
}

#galerie * {
  color: #5b5c5c;
}

#galerie h2:after {
  content: '05';
  top: -130px;
  left: -15px;
  color: #fff9ec;
  opacity: 0.1;
}

#galerie .img-container .gallery-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 2em;
}

#galerie .img-container .gallery-flex:first-child, #galerie .img-container .gallery-flex:nth-child(2) {
  margin-bottom: 2em;
}

#galerie .img-container .gallery-flex > div {
  overflow: hidden;
}

#galerie .img-container .gallery-flex > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  -webkit-transition: all 0.5s linear;
  transition: all 0.5s linear;
}

#galerie .img-container .gallery-flex > div img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0.8;
}

#galerie .img-container .gallery-flex .gallery-flex-1 {
  width: 50%;
}

#galerie .img-container .gallery-flex .gallery-flex-2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 50%;
  gap: 2em;
}

#galerie .img-container .gallery-flex .gallery-flex-2 > div {
  width: 100%;
  overflow: hidden;
  height: 400px;
}

#galerie .img-container .gallery-flex .gallery-flex-full {
  width: 100%;
}

/* fullscreen ***********************************/
#fullscreen,
#fullscreen-showImg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #F2ECE4;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  opacity: 0;
  visibility: hidden;
}

#fullscreen *,
#fullscreen-showImg * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

#fullscreen > div > div,
#fullscreen-showImg > div > div {
  opacity: 0;
  visibility: hidden;
}

#fullscreen .full-img-wrap,
#fullscreen-showImg .full-img-wrap {
  position: relative;
  padding: 10px;
}

#fullscreen #full-img,
#fullscreen-showImg #full-img {
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

#fullscreen .close,
#fullscreen-showImg .close {
  position: absolute;
  top: 0px;
  right: 1%;
  background: none;
  border: none;
  width: 50px;
  height: 50px;
  padding: 0 10px;
  font-size: 22px;
  font-weight: 800;
  color: #5b5c5c;
  display: none;
  cursor: pointer;
  font-weight: lighter;
}

#fullscreen.active,
#fullscreen-showImg.active {
  opacity: 1;
  visibility: visible;
}

#fullscreen.active > div > div,
#fullscreen-showImg.active > div > div {
  opacity: 1;
  visibility: visible;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#fullscreen.active #full-img,
#fullscreen-showImg.active #full-img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#fullscreen.active .full-border,
#fullscreen-showImg.active .full-border {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#fullscreen .full-border,
#fullscreen-showImg .full-border {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  position: absolute;
  padding: 0;
  left: 0;
  top: 0;
}

#fullscreen .nav-btn,
#fullscreen-showImg .nav-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  font-size: 32px;
  color: #BFB08A;
  text-shadow: 0 0 2px #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

#fullscreen .next,
#fullscreen-showImg .next {
  right: 0;
}

#fullscreen .prev,
#fullscreen-showImg .prev {
  left: 0;
}

#motto {
  background-color: #5b5c5c;
  padding-top: 150px;
  padding-bottom: 150px;
  text-align: center;
}

#motto * {
  color: #BFB08A;
}

#motto .width h3 {
  margin-bottom: 26px;
  font-family: "Roboto Slab", serif;
  font-style: normal;
  font-weight: 300;
  font-size: 52px;
  line-height: 110.1%;
  max-width: 30ch;
  position: relative;
  display: inline-block;
  width: auto;
  margin-bottom: 50px;
}

#motto .width img {
  height: 120px;
  margin-bottom: 40px;
}

#motto .width p {
  max-width: 65ch;
  margin-left: auto;
  margin-right: auto;
}

#contact {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 200px;
  padding-bottom: 200px;
}

#contact a {
  font-family: "Roboto", sans-serif;
  display: block;
  color: #5b5c5c;
  font-size: 18px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  margin-bottom: 5px;
}

#contact a:hover {
  color: #BFB08A;
}

#contact > div {
  width: 50%;
}

#contact > div h2:after {
  content: '06';
  top: -100px;
}

#contact > div p {
  max-width: 50ch;
}

#contact > div form {
  position: relative;
}

#contact > div form .form-group {
  position: relative;
}

#contact > div form .form-group .form-input {
  position: relative;
  padding: 10px 5px;
  width: 100%;
  outline: 0;
  border: 0;
  -webkit-transition: -webkit-box-shadow 150ms ease-out;
  transition: -webkit-box-shadow 150ms ease-out;
  transition: box-shadow 150ms ease-out;
  transition: box-shadow 150ms ease-out, -webkit-box-shadow 150ms ease-out;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #5b5c5c;
  color: #5b5c5c;
  padding: 10px 5px;
  font-size: 16px;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 300;
  width: 100%;
  margin-bottom: 55px;
  position: relative;
}

#contact > div form .form-group .form-input:hover {
  cursor: pointer;
}

#contact > div form .form-group .form-input:focus {
  -webkit-box-shadow: 0 1px 0 0 #BFB08A;
          box-shadow: 0 1px 0 0 #BFB08A;
}

#contact > div form .form-group .form-input.filled {
  -webkit-box-shadow: 0 1px 0 0 #839B96;
          box-shadow: 0 1px 0 0 #839B96;
}

#contact > div form .form-group .form-label {
  position: absolute;
  left: 0;
  top: 10px;
  color: #5b5c5c;
  background-color: #F2ECE4;
  z-index: 10;
  width: 100%;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  -webkit-transition: font-size 150ms ease-out, -webkit-transform 150ms ease-out;
  transition: font-size 150ms ease-out, -webkit-transform 150ms ease-out;
  transition: transform 150ms ease-out, font-size 150ms ease-out;
  transition: transform 150ms ease-out, font-size 150ms ease-out, -webkit-transform 150ms ease-out;
  cursor: pointer;
}

#contact > div form .focused .form-label {
  -webkit-transform: translateY(-135%);
          transform: translateY(-135%);
  font-size: .85em;
}

#contact > div form .btn:hover {
  background-color: #BFB08A;
  border: 1px solid #BFB08A;
}

#contact > div .message {
  padding-top: 40px;
}

#contact > div .message .form-input {
  height: 150px;
}

#contact > div .message ::-webkit-input-placeholder {
  color: transparent;
}

#contact > div .message :-ms-input-placeholder {
  color: transparent;
}

#contact > div .message ::-ms-input-placeholder {
  color: transparent;
}

#contact > div .message ::placeholder {
  color: transparent;
}

#acteurs {
  padding-bottom: 200px;
  padding-top: 200px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}

#acteurs .acteur {
  width: 33%;
  text-align: center;
}

#acteurs .acteur img {
  margin: 40px auto;
  height: 80px;
  -o-object-fit: cover;
  object-fit: cover;
}

#acteurs .acteur .client h3, #acteurs .acteur .client p, #acteurs .acteur .client a {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  color: #5b5c5c;
  text-align: center;
}

#acteurs .acteur .client h3 {
  font-weight: 700;
  text-transform: uppercase;
  font-size: 26px;
  color: #5b5c5c;
  margin-bottom: 18px;
}

#acteurs .acteur .client p {
  font-weight: 400;
  font-size: 16px;
  margin-bottom: 0;
}

#acteurs .acteur .client a:hover {
  color: #BFB08A;
}

footer {
  background-color: white;
  padding-top: 63px;
  padding-bottom: 40px;
}

footer .width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .width .logo {
  width: 150px;
}

footer .width .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

footer .width .details * {
  color: #5b5c5c;
}

footer .width .details > div a {
  font-family: "Roboto", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 165%;
  /* identical to box height, or 30px */
  -webkit-text-decoration-line: underline;
  padding-left: 96px;
  text-decoration-line: underline;
}

footer .width .details > div a:hover {
  color: #BFB08A;
}

footer .width .details .avp, footer .width .details .avp a {
  margin-top: 27px;
  text-align: right;
  font-style: normal;
  font-weight: 300;
  font-size: 14px;
  line-height: 17px;
  color: #5b5c5c;
}

/******************************/
@media only screen and (max-width: 1600px) {
  h2:after {
    top: -100%;
  }
  .width {
    padding-left: 12%;
    padding-right: 12%;
  }
  #icons-section {
    padding: 180px 0%;
  }
  #acteurs .acteur .client {
    margin: 0 20px;
  }
  #acteurs .acteur .client p, #acteurs .acteur .client a {
    font-size: 16px;
  }
  #contact > div:first-child {
    margin-right: 50px;
  }
}

@media only screen and (max-width: 1300px) {
  .width {
    padding-left: 10%;
    padding-right: 10%;
  }
  header {
    padding: 25px 0;
  }
  header > div .logo {
    width: 120px;
  }
  header > div nav ul li a {
    font-size: 28px;
  }
  h1 {
    font-size: 76px;
    line-height: 95%;
  }
  h2 {
    font-size: 42px;
    line-height: 95%;
  }
  h2:after {
    top: -300%;
  }
  p {
    font-size: 15px;
  }
  #projet .flex {
    padding-bottom: 100px;
  }
  #galerie .img-container .gallery-flex .gallery-flex-2 > div {
    height: 300px;
  }
  #contact {
    padding-bottom: 200px;
  }
  #acteurs {
    padding-bottom: 150px;
  }
  #acteurs .acteur img {
    height: 70px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #acteurs .acteur .client h3 {
    font-size: 26px;
  }
  footer {
    padding-top: 20px;
    padding-bottom: 20px;
  }
  footer .width .logo {
    width: 150px;
  }
  footer .width .details > div a {
    font-size: 16px;
    padding-left: 65px;
  }
  footer .width .details .avp a {
    margin-top: 7px;
    font-size: 12px;
  }
}

@media only screen and (max-width: 1050px) {
  header > div .nav a {
    font-size: 16px;
    margin-right: 50px;
  }
  h1 {
    font-size: 60px;
    line-height: 125%;
  }
  h1:after {
    top: -10%;
    width: 104px;
    height: 2px;
  }
  h2 {
    font-size: 48px;
    margin-bottom: 45px;
  }
  h2:after {
    top: -140%;
  }
  p {
    font-size: 15px;
  }
  .btn {
    font-size: 15px;
    padding: 12px 20px;
    width: 200px;
  }
  .flex {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #icons-section {
    padding: 130px 0;
  }
  #icons-section .container > div p {
    margin-top: 18px;
    font-size: 17px;
  }
  #localisation .flex > div.img {
    height: 650px;
  }
  #motto {
    padding-top: 100px;
  }
  #motto .width h3 {
    margin-bottom: 42px;
    font-size: 48px;
  }
  #motto .width h3:before {
    left: -80px;
  }
  #motto .width h3:after {
    right: -80px;
  }
  #contact {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-bottom: 100px;
  }
  #contact > div {
    width: 100%;
  }
  #contact > div:first-child {
    margin-right: 0px;
  }
  #contact > div form {
    margin-top: 50px;
  }
  #acteurs {
    padding-bottom: 100px;
    padding-top: 150px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #acteurs .acteur {
    width: 100%;
    margin-bottom: 30px;
  }
}

@media only screen and (max-width: 800px) {
  h1 {
    font-size: 56px;
  }
  h2:after {
    top: -280%;
  }
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex:after {
    display: none;
  }
  .flex > div {
    width: 100%;
  }
  .flex .txt {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 80px;
  }
  #interieurs .flex {
    padding-top: 0px;
  }
  #projet .flex {
    padding-top: 0px;
  }
  #localisation .flex > div.img {
    height: 450px;
  }
  #icons-section h2 {
    margin-bottom: 100px;
  }
  #galerie {
    padding-top: 140px;
    padding-bottom: 100px;
  }
  #galerie .img-container .gallery-flex {
    gap: 1em;
  }
  #galerie .img-container .gallery-flex .gallery-flex-2 {
    gap: 1em;
  }
  #galerie .img-container .gallery-flex .gallery-flex-2 > div {
    height: 200px;
  }
  #galerie .img-container .gallery-flex:first-child, #galerie .img-container .gallery-flex:nth-child(2) {
    margin-bottom: 1em;
  }
  #fullscreen .nav-btn {
    top: initial;
    bottom: 5%;
  }
  #icons-section {
    padding: 100px 0;
  }
  #icons-section .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #icons-section .container > div {
    width: 100%;
  }
  #icons-section .container > div.borders {
    padding: 40px 0;
    border-left: 0px solid white;
    border-right: 0px solid white;
  }
  #motto .width img {
    height: 90px;
    margin-bottom: 100px;
  }
  footer .width .details > div a {
    font-size: 14px;
    padding-left: 15px;
  }
  footer .width {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .width .logo {
    margin-bottom: 00px;
    width: 150px;
  }
  footer .width .details .avp, footer .width footer .width .details .avp a {
    font-size: 12px;
  }
}

@media only screen and (max-width: 500px) {
  h1 {
    font-size: 42px;
  }
  h1:after {
    top: -15%;
    width: 80px;
  }
  h2 {
    font-size: 32px;
    margin-bottom: 45px;
  }
  h2:after {
    top: -100%;
    font-size: 130px;
  }
  #localisation .flex .txt h2:after {
    top: -150%;
  }
  header > div .nav a {
    font-size: 16px;
    margin-right: 20px;
  }
  header > div nav ul li a {
    font-size: 22px;
  }
  header > div nav ul .last a {
    font-size: 16px;
  }
  #projet .flex .img, #interieurs .flex .img {
    height: 300px;
  }
  .flex .txt {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
    margin-bottom: 40px;
  }
  #motto {
    padding-top: 80px;
  }
  #motto .width h3 {
    font-size: 30px;
  }
  #acteurs .acteur .client h3 {
    font-size: 22px;
    margin-bottom: 10px;
  }
  #acteurs .acteur .client a, #acteurs .acteur .client p {
    font-size: 15px;
  }
  #galerie {
    padding-top: 100px;
  }
  #galerie .img-container .gallery-flex .gallery-flex-2 > div {
    height: 150px;
  }
}

@media only screen and (max-width: 805px) and (orientation: landscape) {
  header > div nav.active {
    opacity: 1;
    visibility: visible;
    overflow-y: scroll;
  }
  header > div nav ul li a {
    font-size: 20px;
  }
}
/*# sourceMappingURL=style.css.map */