:root {
  --fs-header: 28px;
  --fs-title: 40px;
  --fs-text: 28px;
  --fs-button: 16px;
  --gap: 24px;
  --gap-large: 32px;
  --padding-5: 5%;
  --padding-10: 10%;
  --padding-100: 100px;
  --angle: 0deg;
  --c1: rgba(166, 144, 124, 1);
  --c2: rgba(166, 144, 124, 0.2);
  --_i: 0%;
}

@font-face {
  font-family: "Arnika";
  src: url("fonts/Arnika.otf");
  src: url("fonts/Arnika.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Jost";
  src: url("fonts/Jost.ttf");
  src: url("fonts/Jost.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
/***************************************************************/
/*** MAIN ******************************************************/
/***************************************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "Jost", sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
html.no-scrolling {
  overflow: hidden;
}

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

h1,
h2,
h3 {
  font-family: "Arnika", sans-serif;
  color: #605c5a;
  text-align: left;
}

h1 {
  font-family: "Jost", sans-serif;
  font-size: var(--fs-header);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  margin-bottom: 24px;
}

a,
span {
  display: inline-block;
  font-family: "Jost", sans-serif;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #605c5a;
}

li {
  list-style-type: none;
}

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

.width {
  padding: 0 var(--padding-5);
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
}

.title {
  font-family: "Arnika", sans-serif;
  font-size: var(--fs-title);
  color: #605c5a;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}

.txt {
  font-family: "Jost", sans-serif;
  font-size: var(--fs-text);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  color: #605c5a;
}

/***************************************************************/
/*** LOADING ***************************************************/
/***************************************************************/
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #d5c9b8;
  z-index: 99999;
  transition-duration: 1s;
  transition-delay: 0.5s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading > div {
  width: 270px;
  height: auto;
  transition-duration: 0.5s;
}
#loading > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#loading.hidden {
  visibility: hidden;
  transform: translateY(100%);
}
#loading.hidden div {
  transform: scale(1.5);
}

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

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

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

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

/***************************************************************/
/*** BUTTONS ***************************************************/
/***************************************************************/
.btn {
  background-color: transparent;
  color: #605c5a;
  padding: 10px 40px;
  border: 1px solid #605c5a;
  font-family: "Jost", sans-serif;
  font-size: var(--fs-button);
  line-height: 1.2;
  font-weight: 600;
  height: 64px;
  letter-spacing: 0.05rem;
  text-align: center;
  transition: all 0.3s linear;
  text-transform: uppercase;
  cursor: pointer;
  position: relative;
  width: max-content;
  display: flex;
  align-items: center;
  white-space: nowrap;
}
.btn::after, .btn::before {
  position: absolute;
  content: "";
  width: 0%;
  height: 0%;
  visibility: hidden;
}
.btn::after {
  bottom: -2px;
  right: -2px;
  border-left: 2px solid #a6907c;
  border-bottom: 2px solid #a6907c;
  transition: width 0.1s ease 0.1s, height 0.1s ease, visibility 0s 0.2s;
}
.btn::before {
  top: -2px;
  left: -2px;
  border-top: 2px solid #a6907c;
  border-right: 2px solid #a6907c;
  transition: width 0.1s ease 0.3s, height 0.1s ease 0.2s, visibility 0s 0.4s;
}
.btn:hover {
  animation: pulse 1s ease-out 0.4s;
  color: #a6907c;
}
.btn:hover::after, .btn:hover::before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  visibility: visible;
  transition: width 0.1s ease 0.2s, height 0.1s ease 0.3s, visibility 0s 0.2s;
}
.btn:hover::after {
  transition: width 0.1s ease 0.2s, height 0.1s ease 0.3s, visibility 0s 0.2s;
}
.btn:hover::before {
  transition: width 0.1s ease, height 0.1s ease 0.1s;
}

.btn-arrow {
  font-family: "Jost", sans-serif;
  font-size: var(--fs-button);
  line-height: 1.2;
  font-weight: 600;
  height: 64px;
  letter-spacing: 0.05rem;
  text-align: center;
  transition: all 0.3s linear;
  text-transform: uppercase;
  cursor: pointer;
  width: max-content;
  white-space: nowrap;
  padding: 10px 50px 10px 16px;
  border: 1px solid #605c5a;
  position: relative;
  background-color: #605c5a;
  color: #f7f4f2;
  display: flex;
  align-items: center;
}
.btn-arrow a {
  color: #a6907c;
  font-weight: 600;
}
.btn-arrow::after {
  content: url("imgs/icons/button-arrow.svg");
  position: absolute;
  right: 0;
  top: 20px;
  width: 28px;
  height: 10px;
  transform: translateX(-50%);
  display: block;
  background-image: no-repeat;
  transition: all 0.3s linear;
}
.btn-arrow:hover {
  background-color: #605c5a;
}
.btn-arrow:hover::after {
  right: -6px;
}

.txt-btn {
  font-family: "Jost", sans-serif;
  font-size: var(--fs-button);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  height: 40px;
  text-transform: uppercase;
  min-width: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/***************************************************************/
/*** HEADER ****************************************************/
/***************************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: var(--gap) 0;
  z-index: 4;
  transition: all 0.3s linear;
  background-color: transparent;
}
header .width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
  text-align: center;
  padding: 0 var(--padding-10);
}
header .width .left {
  width: 56%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-large);
}
header .width .left .logo {
  width: 270px;
  position: relative;
  z-index: 4;
  flex-shrink: 0;
}
header .width .left .logo a {
  width: 100%;
  height: 100%;
}
header .width .left .logo a img {
  transition: all 0.3s linear;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
header .width .left nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  transition: right 0.4s linear;
  width: 100%;
}
header .width .left nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  gap: var(--gap);
}
header .width .left nav ul li a {
  text-align: center;
  transition: all 0.3s linear;
  position: relative;
  border-bottom: 1px solid transparent;
  border: 1px solid transparent;
  padding: 10px;
}
header .width .left nav ul li.hidden {
  display: none;
}
header .width .right {
  width: 40%;
}
header .width .right .contact-btn .btn {
  height: 40px;
  border-color: #605c5a;
  background-color: #605c5a;
  color: #f7f4f2;
}
header .width .right .contact-btn .btn::after, header .width .right .contact-btn .btn::before {
  border-color: #f7f4f2;
}
header .width .right .contact-btn .btn:hover::after, header .width .right .contact-btn .btn:hover::before {
  border-color: #f7f4f2;
}
header.active {
  padding: 10px 0;
  background-color: #f7f4f2;
  box-shadow: #a6907c 0px 3px 8px;
}
header.active .width .left .logo {
  transition: all 0.3s linear;
  width: 150px;
}
header.active .width .right .contact-btn .btn::after, header.active .width .right .contact-btn .btn::before {
  border-color: #a6907c;
}
header.active .width .right .contact-btn .btn:hover {
  color: #a6907c;
}
header.active nav ul li a {
  font-size: var(--fs-button);
}

.right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.right .contact-btn {
  display: block;
}

#menu-btn {
  background-color: transparent;
  cursor: pointer;
  border: none;
  width: 52px;
  height: 30px;
  position: absolute;
  z-index: 100;
  display: none;
  top: 22px;
  right: var(--padding-5);
}
#menu-btn.active span {
  background-color: transparent;
}
#menu-btn.active span::before {
  transform: translateY(-8px) rotate(135deg);
  background-color: #605c5a;
}
#menu-btn.active span::after {
  transform: translateY(12px) rotate(-135deg);
  background-color: #605c5a;
}
#menu-btn span,
#menu-btn span::before,
#menu-btn span::after {
  content: "";
  width: 40px;
  height: 1px;
  display: block;
  position: absolute;
  background-color: #605c5a;
}
#menu-btn span::before {
  top: 10px;
  transition: all 0.1s linear;
}
#menu-btn span::after {
  bottom: 10px;
  transition: all 0.1s linear;
}

/***************************************************************/
/*** ACCUEIL ***************************************************/
/***************************************************************/
#accueil {
  height: 100vh;
  min-height: 900px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  position: relative;
  margin-bottom: var(--padding-100);
}
#accueil .width:first-child {
  height: 100%;
  display: flex;
  padding-right: 0;
  gap: var(--gap);
}
#accueil .width:first-child .left {
  height: 100%;
  width: 60%;
}
#accueil .width:first-child .right {
  height: 100%;
  width: 40%;
  background-color: #a6907c;
}
#accueil .width:last-child {
  position: absolute;
  height: 660px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -45%);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#accueil .width:last-child .left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
#accueil .width:last-child .left .wrapper {
  border: 2px solid #a6907c;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: 32px 32px 32px var(--padding-10);
  width: 100%;
  border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.2turn, var(--c1) 0.25turn, var(--c2) 0.35turn) 60;
  animation: borderRotate 5000ms linear infinite forwards;
  transition: all 0.3s linear;
  will-change: border-image;
}
#accueil .width:last-child .left .wrapper p {
  font-size: var(--fs-header);
  font-family: "Jost", sans-serif;
  color: #605c5a;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  padding-right: 12px;
}
#accueil .width:last-child .left .wrapper .btn {
  border: 2px solid #f7f4f2;
  outline: auto;
}
#accueil .width:last-child .right {
  width: 50%;
  height: 100%;
  overflow: hidden;
}
#accueil .width:last-child .right .image {
  width: 110%;
  height: 100%;
  background-size: cover;
  background-image: url("imgs/vis/22.jpg");
  background-position: center center;
  background-repeat: no-repeat;
  transition: all 0.3s alternate;
  --_g: 10% / 45% 45% no-repeat linear-gradient(#000 0 0);
  --m: left var(--_i) top var(--_g), bottom var(--_i) left var(--_g),
    top var(--_i) right var(--_g), right var(--_i) bottom var(--_g);
  -webkit-mask: var(--m);
  mask: var(--m);
  transition: all 1s linear;
  filter: grayscale(0);
  --_i: 10%;
}
#accueil .width:last-child .right .image.active {
  --_i: 0%;
  filter: grayscale(1);
}
#accueil .width:last-child .right .image.active2 {
  --_g: 10% / 100% 45% no-repeat linear-gradient(#000 0 0);
}
@keyframes borderRotate {
  0% {
    --angle: 0deg;
  }
  2% {
    --angle: 7.2deg;
  }
  4% {
    --angle: 14.4deg;
  }
  6% {
    --angle: 21.6deg;
  }
  8% {
    --angle: 28.8deg;
  }
  10% {
    --angle: 36deg;
  }
  12% {
    --angle: 43.2deg;
  }
  14% {
    --angle: 50.4deg;
  }
  16% {
    --angle: 57.6deg;
  }
  18% {
    --angle: 64.8deg;
  }
  20% {
    --angle: 72deg;
  }
  22% {
    --angle: 79.2deg;
  }
  24% {
    --angle: 86.4deg;
  }
  26% {
    --angle: 93.6deg;
  }
  28% {
    --angle: 100.8deg;
  }
  30% {
    --angle: 108deg;
  }
  32% {
    --angle: 115.2deg;
  }
  34% {
    --angle: 122.4deg;
  }
  36% {
    --angle: 129.6deg;
  }
  38% {
    --angle: 136.8deg;
  }
  40% {
    --angle: 144deg;
  }
  42% {
    --angle: 151.2deg;
  }
  44% {
    --angle: 158.4deg;
  }
  46% {
    --angle: 165.6deg;
  }
  48% {
    --angle: 172.8deg;
  }
  50% {
    --angle: 180deg;
  }
  52% {
    --angle: 187.2deg;
  }
  54% {
    --angle: 194.4deg;
  }
  56% {
    --angle: 201.6deg;
  }
  58% {
    --angle: 208.8deg;
  }
  60% {
    --angle: 216deg;
  }
  62% {
    --angle: 223.2deg;
  }
  64% {
    --angle: 230.4deg;
  }
  66% {
    --angle: 237.6deg;
  }
  68% {
    --angle: 244.8deg;
  }
  70% {
    --angle: 252deg;
  }
  72% {
    --angle: 259.2deg;
  }
  74% {
    --angle: 266.4deg;
  }
  76% {
    --angle: 273.6deg;
  }
  78% {
    --angle: 280.8deg;
  }
  80% {
    --angle: 288deg;
  }
  82% {
    --angle: 295.2deg;
  }
  84% {
    --angle: 302.4deg;
  }
  86% {
    --angle: 309.6deg;
  }
  88% {
    --angle: 316.8deg;
  }
  90% {
    --angle: 324deg;
  }
  92% {
    --angle: 331.2deg;
  }
  94% {
    --angle: 338.4deg;
  }
  96% {
    --angle: 345.6deg;
  }
  98% {
    --angle: 352.8deg;
  }
  100% {
    --angle: 360deg;
  }
}

/***************************************************************/
/*** VIDEO *****************************************************/
/***************************************************************/
#videoPopup {
  display: flex;
  position: fixed;
  z-index: 1000;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: #f7f4f2;
  justify-content: center;
  align-items: center;
  transition: all 0.5s linear;
  transform: translateY(-100%);
  visibility: hidden;
  opacity: 0;
}
#videoPopup.active {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}
#videoPopup .popup-content {
  position: relative;
  width: 100%;
  height: 100%;
  max-width: 1800px;
}
#videoPopup .popup-content video {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/***************************************************************/
/*** PROJET ****************************************************/
/***************************************************************/
.projet {
  scroll-margin: 100px;
}
.projet .width {
  padding: var(--padding-100) var(--padding-10) var(--padding-100) var(--padding-10);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
}
.projet .width .title {
  margin-bottom: var(--gap-large);
}
.projet .width .txt {
  margin-bottom: var(--gap-large);
}

.projet1 {
  width: 60%;
  background-color: #a6907c;
  position: relative;
}
.projet1 * {
  color: #f7f4f2;
}
.projet1 .right {
  position: absolute;
  position: absolute;
  right: -50%;
  top: 50%;
}

.projet2 .width {
  align-items: center;
}
.projet2 .width .wrapper {
  padding: var(--gap-large);
  border: 2px solid #a6907c;
  border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.2turn, var(--c1) 0.25turn, var(--c2) 0.35turn) 60;
  animation: borderRotate 5000ms linear infinite forwards;
  transition: all 0.3s linear;
  will-change: border-image;
}
.projet2 .width .wrapper ul:last-of-type {
  margin-bottom: 0;
}

.projet3 {
  width: 60%;
  background-color: #a6907c;
  position: relative;
  margin-right: 0;
  margin-left: auto;
}
.projet3 * {
  color: #f7f4f2;
  border-color: #f7f4f2;
}
.projet3 .width p:last-of-type {
  margin-bottom: 0;
}
.projet3 .right {
  position: absolute;
  position: absolute;
  left: -50%;
  top: 50%;
}
.projet3 .right * {
  color: #605c5a;
  border-color: #605c5a;
}
.projet3 .right .btn:hover {
  color: #a6907c;
}

/***************************************************************/
/*** SITUATION *************************************************/
/***************************************************************/
#situation {
  padding-bottom: var(--padding-100);
}
#situation .width .image {
  height: 745px;
}
#situation .width .image img {
  object-fit: contain;
}
#situation .width .info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: calc(var(--gap-large) * 3);
  margin-bottom: 150px;
}
#situation .width .info .btn {
  background-color: transparent;
  color: #605c5a;
}
#situation .width .info .btn:hover {
  color: #a6907c;
}

/***************************************************************/
/*** SITUATION2 ************************************************/
/***************************************************************/
#situation2 {
  margin-bottom: 50px;
  scroll-margin: 100px;
}
#situation2 .width:first-child {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: calc(var(--gap-large) * 2);
  padding: 0;
}
#situation2 .width:first-child .left .txt {
  max-width: 22ch;
}
#situation2 .width:first-child .right img {
  width: 100%;
  height: auto;
  object-fit: cover;
  min-height: 450px;
  margin-left: auto;
  margin-right: 0;
  display: block;
}
#situation2 .width:last-child {
  padding-left: var(--padding-10);
  padding-right: var(--padding-10);
  padding-top: var(--padding-100);
}
#situation2 .width:last-child .title {
  padding: 10px;
  position: relative;
  top: 32px;
  left: 100px;
  background: #f7f4f2;
  width: max-content;
}
#situation2 .width:last-child .buttons {
  padding: 130px var(--padding-100) var(--padding-100) var(--padding-100);
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--gap-large);
  border: 2px solid #a6907c;
  border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.2turn, var(--c1) 0.25turn, var(--c2) 0.35turn) 60;
  animation: borderRotate 5000ms linear infinite forwards;
  transition: all 0.3s linear;
  will-change: border-image;
}

/***************************************************************/
/*** GALERIE ***************************************************/
/***************************************************************/
#galerie {
  padding: var(--padding-100) 0 calc(var(--padding-100) * 2) 0;
  display: flex;
  align-items: flex-end;
}
#galerie .wrapper {
  height: 475px;
  border: 2px solid #a6907c;
  margin-left: 32px;
  width: 85%;
  border-image: conic-gradient(from var(--angle), var(--c2), var(--c1) 0.2turn, var(--c1) 0.25turn, var(--c2) 0.35turn) 60;
  animation: borderRotate 5000ms linear infinite forwards;
  transition: all 0.3s linear;
  will-change: border-image;
  position: relative;
}
#galerie .galerie-container {
  position: relative;
  margin-left: 0%;
  overflow: hidden;
  width: calc(100% - 200px);
  justify-content: flex-end;
  display: flex;
  top: 67px;
  left: -33px;
}
#galerie .galerie-container #roller {
  display: flex;
  align-items: center;
  transition-duration: 0.6s;
  z-index: 1;
  width: max-content;
  height: 475px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
  flex-direction: row-reverse;
  justify-content: end;
}
#galerie .galerie-container #roller img {
  height: 100%;
  width: 65vw;
  transition-duration: 0.2s;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: zoom-in;
  padding-right: 40px;
}
#galerie .galerie-container #roller .active {
  opacity: 1;
  z-index: 44;
}
#galerie .gallery-nav {
  margin-left: -200px;
  margin-bottom: -30px;
  bottom: 168px;
  right: 14%;
  background-color: #f7f4f2;
  padding: 0 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
#galerie .gallery-nav span {
  cursor: pointer;
  width: 67px;
  height: 67px;
  background-color: #605c5a;
}
#galerie .gallery-nav span.gallery-nav-prev {
  z-index: 1;
  transition: all 0.3s linear;
}
#galerie .gallery-nav span.gallery-nav-prev.hidden {
  background-color: rgb(235, 235, 228);
  cursor: default;
}
#galerie .gallery-nav span.gallery-nav-next {
  z-index: 1;
  transition: all 0.3s linear;
}
#galerie .gallery-nav span.gallery-nav-next.hidden {
  background-color: rgb(235, 235, 228);
  cursor: default;
}
#galerie .gallery-nav span img {
  width: 32px;
  object-fit: contain;
  margin-left: 19px;
  transition: all 0.3s linear;
}

/***************************************************************/
/*** FULL GALLERY **********************************************/
/***************************************************************/
.fullGallery,
.fullGallery1 {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #f7f4f2;
  transition-duration: 0.5s;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
}
.fullGallery .full-img,
.fullGallery1 .full-img {
  position: relative;
}
.fullGallery .full-img .gallery-nav-prev,
.fullGallery .full-img .gallery-nav-next,
.fullGallery1 .full-img .gallery-nav-prev,
.fullGallery1 .full-img .gallery-nav-next {
  position: absolute;
  top: 55%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 99;
  background-color: #a6907c;
  padding: 10px;
  border-radius: 50%;
}
.fullGallery .full-img .gallery-nav-next,
.fullGallery1 .full-img .gallery-nav-next {
  right: 2%;
}
.fullGallery .full-img .gallery-nav-prev,
.fullGallery1 .full-img .gallery-nav-prev {
  left: 2%;
}
.fullGallery.active,
.fullGallery1.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s linear;
}
.fullGallery *,
.fullGallery1 * {
  width: 100%;
  height: 100%;
}
.fullGallery * img,
.fullGallery1 * img {
  -o-object-fit: contain;
  object-fit: contain;
}
.fullGallery img,
.fullGallery1 img {
  transition: all 0.4s linear;
}
.fullGallery img.active,
.fullGallery1 img.active {
  display: block;
}

.close-btn {
  position: absolute;
  top: 12px;
  right: 2%;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #d5c9b8;
  z-index: 9999;
  cursor: pointer;
  font-weight: bold;
  background-color: #a6907c;
  padding: 10px;
  border-radius: 50%;
}

.imgShow1 {
  cursor: zoom-in;
}

/***************************************************************/
/*** CONTACT ***************************************************/
/***************************************************************/
#contact {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: #a6907c;
  overflow: hidden;
  color: #a6907c;
  padding: var(--padding-100) 0;
}
#contact * {
  color: #f7f4f2;
}
#contact .contact-title {
  font-family: "Arnika", sans-serif;
  font-size: 30px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: var(--gap);
}
#contact .title {
  font-size: 22px;
}
#contact .width {
  padding-left: var(--padding-10);
  padding-right: var(--padding-10);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--padding-100);
}
#contact .width .wrapper {
  width: 40%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
#contact .width .wrapper .info {
  margin-top: var(--gap-large);
  display: flex;
  gap: 60px;
}
#contact .width .wrapper .info p {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 6px;
}
#contact .width .form-container {
  display: block;
  width: 40%;
}
#contact .width .form-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
#contact .width .form-container form > div {
  width: 100%;
}
#contact .width .form-container form > div input,
#contact .width .form-container form > div textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 0.5px solid #f7f4f2;
  font-family: "Jost", sans-serif;
  font-size: var(--fs-button);
  color: #f7f4f2;
  padding: 20px 0;
}
#contact .width .form-container form > div input::placeholder,
#contact .width .form-container form > div textarea::placeholder {
  text-transform: uppercase;
  color: #f7f4f2;
  opacity: 1;
}
#contact .width .form-container form > div .label {
  text-transform: uppercase;
  color: #f7f4f2;
  opacity: 1;
  font-family: "Jost", sans-serif;
  position: relative;
  top: 24px;
}
#contact .width .form-container form > div textarea {
  margin-bottom: 55px;
  height: 144px;
  border: 1px solid #f7f4f2;
  margin-top: 40px;
  position: relative;
}
#contact .width .form-container form > div .btn {
  color: #f7f4f2;
  background-color: #605c5a;
  border: 1px solid #605c5a;
  height: 56px;
}
#contact .width .form-container form > div .btn::after, #contact .width .form-container form > div .btn::before {
  border-color: #f7f4f2;
}
#contact .width .form-container form > div .btn:hover::after, #contact .width .form-container form > div .btn:hover::before {
  border-color: #f7f4f2;
}

/***************************************************************/
/*** FOOTER ****************************************************/
/***************************************************************/
footer {
  height: 360px;
  background-color: #403f2e;
}
footer .width {
  padding-top: 70px;
  padding-bottom: 70px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
footer .width ul {
  display: flex;
  gap: 50px;
  align-items: flex-start;
  justify-content: center;
}
footer .width p,
footer .width p a,
footer .width li a {
  color: #f7f4f2;
  text-transform: none;
  font-family: "Jost", sans-serif;
  font-size: var(--fs-button);
  font-weight: 400;
  line-height: 1.2;
  transition: all 0.3s linear;
  text-align: center;
}
footer .width a:hover {
  text-decoration: underline;
  text-underline-offset: 8px;
}

/***************************************************************/
/*** SUCCES ****************************************************/
/***************************************************************/
#succes {
  z-index: 99;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(6, 7, 5, 0.5);
  transition-duration: 0.6s;
}

#succes > div {
  background-color: #a6907c;
  text-align: center;
  font-size: 24px;
  z-index: 1;
  color: #d5c9b8;
  padding: var(--padding-100);
  border-radius: 50px;
  line-height: 1.5;
  position: relative;
  outline-offset: 20px;
  font-family: "Jost", sans-serif;
}

#succes.active {
  display: flex;
}

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

.close {
  position: absolute;
  top: 2%;
  right: 2%;
  background: none;
  border: none;
  width: 60px;
  height: 60px;
  font-size: 40px;
  color: #f7f4f2;
  z-index: 9999;
  cursor: pointer;
}

/***************************************************************/
/*** RESPONSIVE ************************************************/
/***************************************************************/
@media only screen and (min-width: 1440px) {
  #galerie .galerie-container #roller img {
    width: 830px !important;
  }
}
@media only screen and (max-width: 1090px) {
  :root {
    --fs-header: 20px;
    --fs-title: 32px;
    --fs-text: 20px;
    --fs-button: 14px;
    --gap: 24px;
    --gap-large: 32px;
    --padding-100: 100px;
  }
  header .width .left nav {
    transition: all 0.6s linear;
    position: fixed;
    top: -150%;
    left: 0;
    background-color: #d5c9b8;
    padding: 50px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    transition-duration: 0.6s;
  }
  header .width .left nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  header .width .left nav ul li {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  header .width .left nav ul li.hidden {
    display: block;
  }
  header .width .left nav.active {
    top: 0;
    left: 0;
    transition: all 0.6s linear;
    justify-content: center;
  }
  header .right .contact-btn {
    display: none;
  }
  #menu-btn {
    display: block;
  }
  .txt-btn {
    min-width: 150px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  #accueil .width:last-child {
    flex-direction: column;
    top: 55%;
    gap: var(--gap-large);
    height: 80%;
  }
  #accueil .width:last-child .left {
    width: 100%;
    z-index: 10;
    height: auto;
  }
  #accueil .width:last-child .left .wrapper {
    background-color: rgba(247, 244, 242, 0.2);
    padding-left: var(--gap-large);
    justify-content: flex-start;
    padding-top: var(--gap);
    padding-bottom: var(--gap);
  }
  #accueil .width:last-child .left .wrapper p {
    text-shadow: 1px 1px 1px #f7f4f2;
  }
  #accueil .width:last-child .right {
    width: 100%;
  }
  #accueil .width:last-child .right .image {
    background-position: center center;
  }
  .projet .width * {
    text-align: center;
    margin: 0 auto;
  }
  .projet1 .right {
    right: -60%;
  }
  .projet3 .right {
    left: -60%;
  }
  #situation {
    padding-bottom: 70px;
  }
  #situation .width .image {
    height: auto;
  }
  #situation .width .info {
    flex-direction: column;
    gap: var(--gap-large);
    margin-bottom: var(--padding-100);
  }
  #situation .width .info * {
    max-width: none;
    text-align: center;
    margin: 0 auto;
  }
  #situation2 {
    margin-bottom: 0;
  }
  #situation2 .width:last-child .buttons {
    padding-top: var(--padding-100);
  }
  #situation2 .width:last-child .title {
    left: 24px;
  }
  #galerie .wrapper {
    width: 95%;
  }
  #galerie .galerie-container {
    width: calc(100% - 80px);
  }
  #galerie .gallery-nav {
    margin-left: -112px;
    margin-bottom: -18px;
  }
  #galerie .gallery-nav span {
    width: 40px;
    height: 40px;
  }
  #galerie .gallery-nav span img {
    margin-left: 4px;
  }
  #contact .contact-title {
    font-size: 28px;
  }
  #contact .title {
    font-size: 18px;
  }
  #contact .width {
    flex-direction: column;
  }
  #contact .width .wrapper {
    width: 100%;
  }
  #contact .width .wrapper * {
    text-align: center;
    margin: 0 auto;
  }
  #contact .width .wrapper .details p {
    margin-bottom: 12px;
  }
  #contact .width .wrapper .details:first-of-type {
    margin-bottom: 100px;
  }
  #contact .width .wrapper .details .info {
    width: 100%;
  }
  #contact .width .wrapper .details .info .item {
    width: 50%;
  }
  #contact .width .wrapper .details .info .item * {
    text-align: center;
  }
  #contact .width .form-container {
    width: 100%;
    order: -1;
  }
  #contact .width .form-container form > div .btn {
    margin: 0 auto;
  }
  footer {
    height: 300px;
  }
}
@media only screen and (max-width: 850px) {
  :root {
    --fs-header: 18px;
    --fs-title: 28px;
    --fs-text: 18px;
    --fs-button: 12px;
    --gap: 20px;
    --gap-large: 30px;
    --padding-100: 50px;
  }
  .btn {
    height: 50px !important;
  }
  .btn::after {
    top: 14px !important;
  }
  #loading.hidden div {
    transform: scale(1.1);
  }
  header .width .left .logo {
    width: 150px;
  }
  header.active .width .left .logo {
    width: 100px;
  }
  #galerie {
    padding: 50px 0 50px 0;
  }
  #galerie .gallery-nav {
    margin-left: -125px;
    margin-bottom: 454px;
  }
  #galerie .galerie-container {
    width: 100%;
    left: 25px;
    overflow: visible;
  }
  #galerie .galerie-container #roller {
    height: 350px;
  }
  .projet .width {
    padding: var(--padding-100) var(--padding-5) var(--padding-100) var(--padding-5);
  }
  .projet1 {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 80px;
  }
  .projet1 .right {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: -70px;
  }
  .projet3 {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 80px;
  }
  .projet3 .right {
    left: 50%;
    transform: translateX(-50%);
    right: auto;
    bottom: -70px;
  }
  .projet3 .right .btn {
    color: #f7f4f2;
    border-color: #f7f4f2;
  }
  .projet3 .right .btn:hover {
    border-color: #605c5a;
  }
  .fullGallery .full-img .gallery-nav-prev,
  .fullGallery .full-img .gallery-nav-next {
    top: 90%;
  }
  .contact .left .width {
    flex-direction: column;
    gap: var(--padding-100);
  }
  .contact .left .width .wrapper {
    width: 100%;
  }
  .contact .left .width .wrapper * {
    text-align: center;
    margin: 0 auto;
  }
  .contact .left .width .wrapper .details {
    margin-bottom: 0;
  }
  .contact .left .width .wrapper .details h3 {
    text-align: center;
  }
  .contact .left .width .wrapper .logo {
    display: flex;
  }
  .contact .left .width .wrapper .logo img {
    object-fit: contain;
  }
  .contact .left .width .form-container {
    width: 90%;
    margin: 0 auto;
    order: -1;
  }
}
@media only screen and (max-width: 650px) {
  :root {
    --fs-header: 20px;
    --fs-title: 20px;
    --fs-text: 20px;
    --fs-button: 12px;
    --gap: 20px;
    --gap-large: 30px;
    --padding-100: 50px;
  }
  #contact .width .wrapper .details .info {
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=style.css.map */