@charset "UTF-8";
:root {
  --font-size-text: 16px;
  --font-size-header: 64px;
  --font-size-subheader: 52px;
  --font-size-title: 36px;
  --font-size-button: 14px;
  --size-gap: 24px;
  --size-gap-large: 32px;
  --padding-horizontal: 5%;
}

@font-face {
  font-family: "EthosNova";
  src: url("fonts/EthosNova-Regular.eot");
  src: url("fonts/EthosNova-Regular.eot?#iefix") format("embedded-opentype"), url("fonts/EthosNova-Regular.woff2") format("woff2"), url("fonts/EthosNova-Regular.woff") format("woff"), url("fonts/EthosNova-Regular.svg#EthosNova") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "BrightDarling";
  src: url("fonts/Bright-Darling.ttf") format("truetype"), url("fonts/Bright-Darling.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/***************************************************************/
/*** MAIN ******************************************************/
/***************************************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

h1,
h2 {
  font-family: "BrightDarling", sans-serif;
  color: #5a5a5c;
  text-align: center;
  letter-spacing: 0.2rem;
  margin-bottom: var(--size-gap-large);
}

h1 {
  font-size: var(--font-size-header);
  line-height: 1.2;
  font-weight: 700;
  text-align: center;
  color: #5a5a5c;
  max-width: 30ch;
  margin-bottom: var(--size-gap-large);
}

.title {
  font-family: "BrightDarling", sans-serif;
  font-size: var(--font-size-title);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  margin-bottom: var(--size-gap-large);
  text-transform: uppercase;
}

.subheader {
  font-family: "BrightDarling", sans-serif;
  font-size: var(--font-size-subheader);
  font-weight: 400;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
}

.subtitle {
  font-family: "EthosNova", sans-serif;
  font-size: var(--font-size-text);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.2rem;
  text-align: left;
  text-transform: uppercase;
  position: relative;
  margin-bottom: 9px;
}

.info {
  position: relative;
  padding-left: var(--size-gap);
}
.info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 90px;
  width: 1px;
  display: block;
  background-color: currentColor;
}

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

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

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-horizontal);
  margin: 0 auto;
}

.txt {
  font-family: "EthosNova", sans-serif;
  font-size: var(--font-size-text);
  font-weight: 400;
  line-height: 1.2;
  text-align: justify;
  color: #5a5a5c;
}
.txt:not(:last-of-type) {
  margin-bottom: var(--size-gap-large);
}

/* loading */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #eceded;
  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 {
  opacity: 0;
  visibility: hidden;
}
#loading.hidden div {
  transform: scale(1.5);
}

.error404 section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 100vh;
  padding: 40px;
}
.error404 section h3 {
  margin: 1em 0;
  font-size: 32px;
}
.error404 section #e404 {
  font-size: 3em;
  color: #5a5a5c;
}

#politique {
  padding-top: 180px;
  padding-bottom: 100px;
}
#politique a {
  text-decoration: underline;
  color: #5a5a5c;
  transition: all 0.3s linear;
}
#politique a:hover {
  color: #eceded;
}
#politique h1 {
  font-size: 46px;
  margin-bottom: 50px;
  color: #eceded;
}
#politique nav ol {
  list-style: none;
}
#politique nav ol li ol {
  margin-left: 20px;
}
#politique > div {
  margin: 50px 0;
}
#politique > div h2 {
  margin-bottom: 30px;
  color: #eceded;
  font-size: 32px;
}
#politique > div p {
  margin-bottom: 20px;
}
#politique > div ul {
  margin-left: 20px;
}

::-webkit-scrollbar {
  width: 3px;
  overflow: hidden;
}

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

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

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

/***************************************************************/
/*** BUTTONS ***************************************************/
/***************************************************************/
.btn {
  background-color: #5a5a5c;
  color: #eceded;
  padding: 10px 40px 10px 40px;
  border-radius: 100px;
  border: 1px solid #5a5a5c;
  font-family: "EthosNova", sans-serif;
  font-size: var(--font-size-button);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.2rem;
  text-align: left;
  transition: all 0.3s linear;
  text-transform: uppercase;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
}
.btn:hover {
  background-color: rgba(255, 255, 255, 0.5);
  color: #5a5a5c;
}
.btn.arrow {
  padding: 10px 16px 10px 16px;
  border: 1px solid #5a5a5c;
  padding-right: 60px;
  position: relative;
  display: inline-block;
  background-color: transparent;
  color: #5a5a5c;
}
.btn.arrow a {
  color: #5a5a5c;
  font-weight: 600;
}
.btn.arrow::after {
  content: url("imgs/icons/button-arrow.svg");
  position: absolute;
  right: 0;
  top: 10px;
  width: 28px;
  height: 10px;
  transform: translateX(-50%);
  display: block;
  background-image: no-repeat;
  transition: all 0.3s linear;
}
.btn.arrow:hover {
  background-color: #eceded;
  color: #5a5a5c;
}
.btn.arrow:hover::after {
  right: -6px;
}
.btn.arrow.noborder {
  border: 1px solid transparent;
}
.btn.arrow.transparent {
  background-color: transparent;
  border-color: #5a5a5c;
  color: #5a5a5c;
}
.btn.arrow.transparent::after {
  filter: invert(1);
}
.btn.arrow.transparent a {
  color: #5a5a5c;
}

/***************************************************************/
/*** HEADER ***************************************************/
/***************************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 25px 0;
  z-index: 99;
  transition: all 0.3s linear;
  background-color: transparent;
}
header .width {
  gap: var(--size-gap);
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
}
header .width .logo {
  height: 130px;
  position: relative;
  z-index: 9;
  flex-shrink: 0;
}
header .width .logo a {
  width: 100%;
  height: 100%;
}
header .width .logo a img {
  transition: all 0.5s linear;
  height: 100%;
  width: 100%;
  object-fit: contain;
}
header .width nav {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.4s linear;
  width: 100%;
}
header .width nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  gap: calc(var(--size-gap) * 3);
}
header .width nav ul li a {
  font-family: "EthosNova", sans-serif;
  font-size: var(--font-size-text);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.2rem;
  text-align: left;
  color: #5a5a5c;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  border-bottom: 1px solid transparent;
  transition: all 0.3s linear;
  line-height: 34px;
}
header .width nav ul li a:hover {
  border-bottom: 1px solid #5a5a5c;
}
header .width nav ul li.hidden {
  display: none;
}
header.active {
  padding: 10px 0;
  background-color: #eceded;
  box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
}
header.active .logo {
  transition: all 0.3s linear;
  height: 60px;
}
header.active nav ul li a {
  font-size: var(--font-size-button);
}

.right {
  width: 20%;
  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-horizontal);
}
#menu-btn.active span {
  background-color: transparent;
}
#menu-btn.active span::before {
  transform: translateY(-8px) rotate(135deg);
  background-color: #5a5a5c;
}
#menu-btn.active span::after {
  transform: translateY(12px) rotate(-135deg);
  background-color: #5a5a5c;
}
#menu-btn span,
#menu-btn span::before,
#menu-btn span::after {
  content: "";
  width: 40px;
  height: 1px;
  display: block;
  position: absolute;
  background-color: #5a5a5c;
}
#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: 700px;
  max-height: 1080px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  background: url("imgs/vis/2.jpg?") no-repeat center center;
}
.accueil h1 {
  text-shadow: 1px 1px 2px #000, 0 0 1em #000, 0 0 1em #000;
  color: #fff;
}
.accueil .txt {
  text-align: center;
  margin: 0 auto;
  margin-bottom: var(--size-gap-large);
  font-size: calc(var(--font-size-text) * 1.5);
  background-color: rgba(90, 90, 92, 0.5);
  color: #fff;
  padding: 10px;
  border-radius: 10px;
}
.accueil .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--size-gap-large);
  margin-bottom: 80px;
}
.accueil .buttons * {
  text-shadow: none;
}
.accueil .buttons .btn {
  background-color: rgba(236, 237, 237, 0.5);
}

/***************************************************************/
/*** PROJECT ***************************************************/
/***************************************************************/
.projet {
  padding-top: 100px;
  padding-bottom: 0;
  color: #5a5a5c;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
}
.projet .width {
  margin-bottom: 250px;
}
.projet .width .subtitle {
  margin-bottom: 14px;
  text-align: center;
}
.projet .width .subheader {
  margin-bottom: 50px;
  color: #5a5a5c;
  text-align: center;
}
.projet .wrapper {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 50px;
  height: 100%;
}
.projet .wrapper .left {
  width: 50%;
  background-color: #ada7a4;
  padding: 0 var(--padding-horizontal) 50px var(--padding-horizontal);
}
.projet .wrapper .left * {
  color: #eceded;
}
.projet .wrapper .left img {
  height: 600px;
  position: relative;
  top: -150px;
}
.projet .wrapper .left .txt,
.projet .wrapper .left .title {
  width: 80%;
}
.projet .wrapper .right {
  width: 50%;
  padding: 0 var(--padding-horizontal) 50px 0;
}
.projet .wrapper .right .txt,
.projet .wrapper .right .title {
  width: 80%;
}

/***************************************************************/
/*** PROJECT1 ***************************************************/
/***************************************************************/
.projet1 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding-top: 100px;
  padding-bottom: 100px;
}
.projet1 .left {
  width: 60%;
  color: #eceded;
}
.projet1 .right {
  width: 40%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  color: #5a5a5c;
  padding-right: var(--padding-horizontal);
  padding-left: var(--padding-horizontal);
}
.projet1 .right .btn {
  margin-top: 50px;
}
.projet1 .right .btn a {
  white-space: break-spaces;
}
.projet1 .right .info {
  width: 100%;
}
.projet1 .right .info .txt {
  color: #5a5a5c;
  text-align: justify;
  max-width: 47ch;
}
.projet1 .right .info .img {
  height: 400px;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: var(--size-gap);
  object-fit: cover;
}

/***************************************************************/
/*** VILLA ***************************************************/
/***************************************************************/
.villa {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  height: 100vh;
  min-height: 900px;
  max-height: 1100px;
  overflow: hidden;
}
.villa .left {
  width: 65%;
  background-color: #5a5a5c;
  padding: 100px 0 50px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}
.villa .left .info {
  color: #eceded;
  width: 80%;
  margin: 0 calc(1.6 * var(--padding-horizontal));
}
.villa .left .info .title {
  max-width: 35ch;
  margin-bottom: 50px;
}
.villa .left .info .txt {
  max-width: 39ch;
  margin-right: 0;
  margin-left: auto;
}
.villa .left .imgs {
  width: 80%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--size-gap);
}
.villa .left .imgs img:first-of-type {
  width: 65%;
}
.villa .left .imgs img:last-of-type {
  width: 35%;
}
.villa .right {
  width: 35%;
}

/***************************************************************/
/*** VILLA1 ***************************************************/
/***************************************************************/
.villa1 {
  padding: 50px 0 0 0;
  position: relative;
  min-height: 900px;
  overflow: hidden;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--size-gap);
}
.villa1 .left {
  width: 60%;
  position: relative;
  display: flex;
  flex-direction: column;
}
.villa1 .left .info {
  color: #5a5a5c;
  margin: 0 calc(2 * var(--padding-horizontal)) 70px;
}
.villa1 .left .info .title {
  max-width: 30ch;
}
.villa1 .left .info .txt {
  max-width: 61ch;
  margin-bottom: var(--size-gap);
  color: #5a5a5c;
}
.villa1 .left > img {
  width: 400px;
  max-width: 25vw;
  margin-bottom: 70px;
}
.villa1 .left .imgs {
  position: relative;
  height: 450px;
  width: 80%;
}
.villa1 .left .imgs img:nth-of-type(2) {
  position: absolute;
  top: -25%;
  right: -30%;
  width: 400px;
  height: 230px;
}
.villa1 .right {
  width: 40%;
  justify-content: flex-start;
  padding-left: 5%;
  flex-direction: column;
  align-items: flex-end;
}
.villa1 .right img:first-of-type {
  width: 750px;
  max-width: 40vw;
  margin-bottom: 50px;
  margin-top: 50px;
  height: 50%;
}
.villa1 .right img:last-of-type {
  width: 350px;
  margin-top: 50px;
  position: absolute;
  bottom: 0;
  right: 0;
  height: 550px;
}

/***************************************************************/
/*** PISCINE ***************************************************/
/***************************************************************/
.piscine {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 100px;
}
.piscine .left {
  width: 30%;
  padding-top: 200px;
}
.piscine .left .txt {
  color: #5a5a5c;
  margin-top: 50px;
  width: 70%;
  margin-right: 0;
}
.piscine .left img {
  height: 450px;
}
.piscine .right {
  width: 67%;
  display: flex;
  flex-direction: column;
  gap: var(--size-gap-large);
}
.piscine .right .info {
  width: 80%;
  margin: 100px auto 100px 0;
}
.piscine .right .info .txt {
  color: #5a5a5c;
  max-width: 36ch;
}
.piscine .right img {
  height: 600px;
}

/***************************************************************/
/*** GALERIE ****************************************************/
/***************************************************************/
#galerie {
  padding: 100px 0 105px 0;
  background-color: #5a5a5c;
}
#galerie .width {
  color: #eceded;
}
#galerie .width .info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--size-gap-large);
  max-width: 1314px;
  margin-bottom: 78px;
  color: #eceded;
}
#galerie .width .info .left {
  max-width: 90ch;
}
#galerie .width .info .left .btn.arrow {
  border: 1px solid #eceded;
}
#galerie .width .info .left .btn.arrow a {
  color: #eceded;
}
#galerie .width .info .left .btn.arrow::after {
  content: url(imgs/icons/button-arrow-light.svg);
}
#galerie .width .info .left .btn.arrow:hover {
  background-color: transparent;
}
#galerie .width .info .right {
  margin-top: var(--size-gap-large);
  width: 50%;
  max-width: 70ch;
}
#galerie .width .info .right .txt {
  text-align: left;
  color: #eceded;
}
#galerie .galerie-container {
  position: relative;
  margin-right: 0;
  margin-left: 20%;
}
#galerie .galerie-container #roller {
  display: flex;
  align-items: center;
  transition-duration: 0.6s;
  z-index: 1;
  width: max-content;
  height: 580px;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}
#galerie .galerie-container #roller img {
  height: 100%;
  width: 65vw;
  transition-duration: 0.2s;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: zoom-in;
  opacity: 0.8;
  padding-right: 40px;
}
#galerie .galerie-container #roller .active {
  opacity: 1;
  z-index: 44;
}
#galerie .galerie-container .gallery-nav {
  position: absolute;
  top: 50%;
  width: calc(65vw + 40px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  left: -40px;
}
#galerie .galerie-container .gallery-nav span {
  cursor: pointer;
  width: 122px;
  height: 122px;
  background-color: white;
  border-radius: 50%;
}
#galerie .galerie-container .gallery-nav span.gallery-nav-prev {
  z-index: 1;
}
#galerie .galerie-container .gallery-nav span.gallery-nav-prev.hidden {
  visibility: hidden;
}
#galerie .galerie-container .gallery-nav span.gallery-nav-next {
  z-index: 1;
}
#galerie .galerie-container .gallery-nav span.gallery-nav-next.hidden {
  visibility: hidden;
}
#galerie .galerie-container .gallery-nav span img {
  width: 32px;
  filter: invert(1);
  object-fit: contain;
  margin-left: 44px;
  transition: all 0.3s linear;
}
#galerie .galerie-container .gallery-nav span:hover.gallery-nav-prev img {
  margin-left: 38px;
}
#galerie .galerie-container .gallery-nav span:hover.gallery-nav-next img {
  margin-left: 50px;
}

/***************************************************************/
/*** FULL GALLERY ****************************************************/
/***************************************************************/
.fullGallery,
.fullGallery1 {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #eceded;
  transition-duration: 0.5s;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
}
.fullGallery .full-img,
.fullGallery1 .full-img {
  position: relative;
}
.fullGallery .full-img .close-btn,
.fullGallery1 .full-img .close-btn {
  position: absolute;
  top: 0em;
  right: 2%;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #eceded;
  z-index: 9999;
  cursor: pointer;
  font-weight: bold;
  background-color: #5a5a5c;
  padding: 10px;
  border-radius: 50%;
}
.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: 55px;
  height: 55px;
  cursor: pointer;
  z-index: 99;
  background-color: #5a5a5c;
  padding: 10px;
  border-radius: 50%;
}
.fullGallery .full-img .gallery-nav-next,
.fullGallery1 .full-img .gallery-nav-next {
  right: 3%;
}
.fullGallery .full-img .gallery-nav-prev,
.fullGallery1 .full-img .gallery-nav-prev {
  left: 3%;
}
.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;
}

/***************************************************************/
/*** FULL IMAGE ****************************************************/
/***************************************************************/
.fullImg {
  height: 100vh;
}
.fullImg div {
  background-position: center center;
  background-size: contain;
  height: 100%;
  width: 100%;
}

.fullImg2 {
  height: 130vh;
}
.fullImg2 div {
  background-position: center center;
  background-size: cover;
  height: 100%;
  width: 100%;
}

@keyframes scale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
/***************************************************************/
/*** situation1 ****************************************************/
/***************************************************************/
#situation {
  min-height: 500px;
  background-color: #eceded;
  display: flex;
}
#situation .width {
  width: 50%;
  padding-top: 100px;
  padding-bottom: 100px;
}
#situation .width .info .txt {
  width: 80%;
}
#situation .width .btn {
  margin-top: 100px;
}
#situation .map {
  width: 50%;
  height: auto;
}
#situation .map iframe {
  width: 100%;
  height: 100%;
}

#situation1 {
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
}
#situation1 .img {
  min-height: 450px;
  max-height: 932px;
  overflow: hidden;
}
#situation1 img {
  width: 100%;
  object-fit: contain;
  margin: 0 auto;
}
#situation1 .info {
  position: absolute;
  top: 0;
  left: 0;
  padding: 80px var(--padding-horizontal);
  background-color: transparent;
  color: #5a5a5c;
  z-index: 2;
  pointer-events: none;
}
#situation1 .info .title {
  max-width: 23ch;
}
#situation1 .info .txt {
  color: #5a5a5c;
  max-width: 50ch;
}
#situation1 .info::before {
  display: none;
}

/***************************************************************/
/*** CARACTÉRISTIQUES ****************************************************/
/***************************************************************/
#caracteristique {
  background-color: #5a5a5c;
  color: #eceded;
  position: relative;
  top: -5px;
}
#caracteristique .subtitle {
  margin-bottom: 70px;
}
#caracteristique .width {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--size-gap);
  flex-wrap: wrap;
  padding-right: 0;
}
#caracteristique .width ul li {
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-gap);
  padding-bottom: 8px;
  padding-top: 8px;
  border-bottom: 0.5px solid rgba(255, 255, 255, 0.5);
  transition: all 0.3s linear;
}
#caracteristique .width ul li p.key {
  text-transform: uppercase;
}
#caracteristique .width .left {
  width: 58%;
  padding-top: 163px;
  padding-bottom: 83px;
}
#caracteristique .width .right {
  width: 37%;
  display: block;
}

/***************************************************************/
/*** COMMODITÉS ****************************************************/
/***************************************************************/
#commodites,
#commodites1 {
  padding: 62px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: var(--size-gap);
}
#commodites .list,
#commodites1 .list {
  color: #5a5a5c;
  display: flex;
  gap: var(--size-gap-large);
  align-items: flex-start;
  justify-content: flex-start;
  position: relative;
  padding-left: 15px;
  flex-direction: column;
}
#commodites .list::before,
#commodites1 .list::before {
  content: "";
  position: absolute;
  top: -50px;
  left: 0;
  width: 1px;
  height: 90px;
  background-color: #5a5a5c;
  margin-right: 15px;
}
#commodites .list .caption,
#commodites1 .list .caption {
  font-family: "BrightDarling", sans-serif;
  font-size: var(--font-size-title);
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
}
#commodites .list .txt,
#commodites1 .list .txt {
  color: #5a5a5c;
  max-width: 33ch;
}
#commodites .list ul li,
#commodites1 .list ul li {
  text-transform: uppercase;
  text-align: left;
  line-height: 1.5;
  max-width: 32ch;
  list-style: "- ";
  color: #5a5a5c;
}
#commodites .left .list,
#commodites1 .left .list {
  margin-left: calc(2 * var(--padding-horizontal));
}
#commodites .left,
#commodites .right,
#commodites1 .left,
#commodites1 .right {
  width: 50%;
  justify-content: flex-start;
}
#commodites .right .list,
#commodites1 .right .list {
  margin-left: 15%;
}
#commodites .right .list .txt,
#commodites1 .right .list .txt {
  max-width: 44ch;
  text-align: left;
}
#commodites .top,
#commodites .bottom,
#commodites1 .top,
#commodites1 .bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--size-gap);
}
#commodites .bottom,
#commodites1 .bottom {
  justify-content: flex-start;
}

/***************************************************************/
/*** COMMODITÉS1 ****************************************************/
/***************************************************************/
#commodites1 {
  padding: 62px 0 0 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  gap: var(--size-gap);
  position: relative;
}
#commodites1 .width {
  margin-left: 0;
}
#commodites1 .list div {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--size-gap-large);
}
#commodites1 .top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 70%;
  margin-bottom: 50px;
}
#commodites1 .bottom {
  height: 750px;
  width: 100%;
}
#commodites1 .bottom img:last-of-type {
  position: absolute;
  right: 0;
  top: 0;
  width: 450px;
  height: 750px;
  z-index: 2;
  border-left: 15px solid white;
  border-bottom: 15px solid white;
}

/***************************************************************/
/*** CONTACT ****************************************************/
/***************************************************************/
.contact {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: #5a5a5c;
  overflow: hidden;
  color: #eceded;
}
.contact .left {
  padding: 100px 0 50px 0;
  width: 100%;
}
.contact .left .width {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact .left .width .wrapper {
  width: 30%;
}
.contact .left .width .wrapper .subtitle {
  margin-bottom: 38px;
}
.contact .left .width .wrapper .details {
  margin-bottom: 50px;
}
.contact .left .width .wrapper .details h3 {
  font-family: "BrightDarling", sans-serif;
  font-size: 24px;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.contact .left .width .wrapper .details img {
  height: 100px;
  margin-bottom: 32px;
  object-fit: contain;
}
.contact .left .width .wrapper .details .item {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  gap: 16px;
  white-space: nowrap;
  width: max-content;
}
.contact .left .width .wrapper .details .item p {
  text-transform: uppercase;
  margin-bottom: 0;
  font-weight: 300;
}
.contact .left .width .wrapper .logo {
  height: 137px;
}
.contact .left .width .form-container {
  display: block;
  width: 58%;
}
.contact .left .width .form-container .txt {
  color: #eceded;
  max-width: none;
  margin-bottom: 100px;
}
.contact .left .width .form-container form {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.contact .left .width .form-container form > div {
  width: 100%;
}
.contact .left .width .form-container form > div input,
.contact .left .width .form-container form > div textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 0.5px solid #eceded;
  font-family: "EthosNova", sans-serif;
  font-size: var(--font-size-text);
  color: #eceded;
  padding: 16px 0;
}
.contact .left .width .form-container form > div input::placeholder,
.contact .left .width .form-container form > div textarea::placeholder {
  text-transform: uppercase;
  color: #eceded;
  opacity: 1;
}
.contact .left .width .form-container form > div textarea {
  margin-bottom: 55px;
}
.contact .left .width .form-container form > div .btn.arrow {
  color: #eceded;
  border: 1px solid #eceded;
}
.contact .left .width .form-container form > div .btn.arrow::after {
  content: url(imgs/icons/button-arrow-light.svg);
}
.contact .left .width .form-container form > div .btn.arrow:hover {
  background-color: transparent;
}
.contact .left .width .txt.txt-images {
  text-align: center;
  color: #fff;
  margin: 100px auto 0 auto;
}
.contact .left .txt {
  margin-bottom: 28px;
  max-width: 45ch;
}
.contact .left .buttons {
  display: flex;
  gap: var(--size-gap);
  flex-wrap: wrap;
}

/***************************************************************/
/*** 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: #5a5a5c;
  text-align: center;
  font-size: 24px;
  z-index: 1;
  color: #eceded;
  padding: 100px;
  border-radius: 50px;
  line-height: 1.5;
  position: relative;
  outline-offset: 20px;
  font-family: "EthosNova", 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: #fff;
  z-index: 9999;
  cursor: pointer;
}

/***************************************************************/
/*** FOOTER ****************************************************/
/***************************************************************/
/***************************************************************/
/*** ANIMATIONS *****************************************/
/***************************************************************/
/*****************media**********************************************/
/*** RESPONSIVE ************************************************/
/***************************************************************/
@media only screen and (min-width: 1440px) {
  #galerie .galerie-container .gallery-nav {
    width: 1040px;
  }
  #galerie .galerie-container #roller img {
    width: 1000px;
  }
}
@media only screen and (max-width: 1650px) {
  :root {
    --font-size-text: 16px;
    --font-size-header: 60px;
    --font-size-subheader: 48px;
    --font-size-title: 32px;
    --font-size-button: 14px;
    --size-gap: 24px;
    --size-gap-large: 30px;
    --padding-horizontal: 5%;
  }
  #villa1 .left .imgs img:nth-of-type(2) {
    right: -40%;
  }
}
@media only screen and (max-width: 1380px) {
  :root {
    --font-size-text: 16px;
    --font-size-header: 44px;
    --font-size-subheader: 28px;
    --font-size-title: 22px;
    --font-size-button: 14px;
    --size-gap: 24px;
    --size-gap-large: 30px;
    --padding-horizontal: 5%;
  }
  .accueil .left {
    margin-top: 40px;
  }
  .accueil .right {
    background-size: cover;
  }
  .accueil .right .description {
    padding-left: var(--padding-horizontal);
    padding-right: var(--padding-horizontal);
  }
  .projet .top .subheader {
    margin-bottom: 290px;
  }
  .projet .bottom .left {
    padding-top: 430px;
  }
  .projet .bottom .left .width .img {
    height: 500px;
    width: 80%;
  }
  #fullScreenImg {
    display: flex;
    flex-direction: column;
  }
  #fullScreenImg .info {
    position: static;
    margin: 0 auto;
    order: -1;
  }
  #villa1 .left .imgs img:nth-of-type(2) {
    right: -100%;
    top: -65%;
    z-index: 3;
  }
  #commodites .top {
    width: 100%;
  }
  #commodites .bottom {
    width: 100%;
    justify-content: space-between;
  }
}
@media only screen and (max-width: 1090px) {
  :root {
    --font-size-text: 16px;
    --font-size-header: 44px;
    --font-size-subheader: 28px;
    --font-size-title: 22px;
    --font-size-button: 14px;
    --size-gap: 24px;
    --size-gap-large: 30px;
    --padding-horizontal: 5%;
  }
  .txt {
    text-align: left;
  }
  header .width {
    display: block;
    margin-left: 0;
    margin-right: auto;
    width: max-content;
  }
  header .width .logo {
    height: auto;
    width: 130px;
  }
  header .width nav {
    transition: all 0.6s linear;
    position: fixed;
    top: -150%;
    left: 0;
    background-color: #eceded;
    padding: 50px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    transition-duration: 0.6s;
  }
  header .width nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  header .width nav ul li {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  header .width nav ul li.hidden {
    display: block;
  }
  header .width nav.active {
    top: 0;
    left: 0;
    transition: all 0.6s linear;
  }
  header.active .width .logo {
    height: auto;
    width: 80px;
  }
  header .right .contact-btn {
    display: none;
  }
  #menu-btn {
    display: block;
  }
  #accueil {
    flex-direction: column;
    position: relative;
  }
  #accueil .left {
    padding-right: 0;
    padding-left: 0;
    position: relative;
    z-index: 3;
    width: 100%;
  }
  #accueil .left .img {
    background-color: rgba(32, 29, 22, 0.8);
    padding-top: 20px;
    width: 100%;
    display: flex;
    justify-content: center;
  }
  #accueil .left .img img {
    width: 150px;
  }
  #accueil .left h1,
  #accueil .left .txt {
    background-color: rgba(90, 90, 92, 0.8);
    padding: var(--padding-horizontal);
    width: 100%;
    text-align: center;
  }
  #accueil .left h1 {
    padding-top: 20px;
    margin-bottom: 0;
    padding-bottom: 10px;
  }
  #accueil .left .txt {
    max-width: none;
    padding-bottom: 100px;
  }
  #accueil .left .buttons {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 76px;
  }
  #accueil .right {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
  }
  #accueil .right .description > div {
    gap: var(--size-gap);
  }
  #accueil .right .description .top {
    margin-bottom: var(--size-gap-large);
  }
  .projet {
    padding-top: 50px;
  }
  .projet .width {
    margin-bottom: 200px;
  }
  .projet .width .subheader {
    margin-bottom: 0;
  }
  .projet .wrapper .right .title,
  .projet .wrapper .right .txt {
    width: 100%;
  }
  .projet .wrapper .left img {
    height: 450px;
    top: -100px;
  }
  .projet .wrapper .left .title,
  .projet .wrapper .left .txt {
    width: 100%;
  }
  .projet1 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .projet1 .left img {
    margin-bottom: 0;
  }
  .projet1 .right {
    padding-top: 0;
  }
  .projet1 .right .info .txt {
    margin-bottom: var(--size-gap);
  }
  .projet1 .right .info .img {
    height: 350px;
    margin-bottom: 0;
  }
  .villa {
    min-height: auto;
    height: auto;
    max-height: none;
    flex-direction: column;
    background-color: #5a5a5c;
  }
  .villa .left {
    width: 100%;
    background-color: transparent;
    padding: 50px 0 var(--size-gap) 0;
  }
  .villa .left .info .txt {
    margin: 0 0 30px;
  }
  .villa .left .imgs {
    width: 100%;
  }
  .villa .left .imgs img {
    height: 250px;
  }
  .villa .left .imgs img:first-of-type, .villa .left .imgs img:last-of-type {
    width: 50%;
  }
  .villa .right {
    width: 100%;
    padding: 0;
    height: 350px;
  }
  #villa1 {
    flex-direction: column;
    position: relative;
  }
  #villa1 .left {
    width: 100%;
  }
  #villa1 .left > img {
    width: 400px;
    margin: 0 auto 70px auto;
    max-width: none;
  }
  #villa1 .left .imgs {
    width: 50%;
  }
  #villa1 .left .imgs img:nth-of-type(2) {
    right: -97%;
    top: -6%;
    z-index: 3;
    border: 15px solid white;
  }
  #villa1 .right {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
  }
  #piscine {
    flex-direction: column-reverse;
    padding: 0 var(--padding-horizontal);
  }
  #piscine .left {
    width: 100%;
    padding: var(--padding-horizontal) 0;
    display: flex;
    flex-direction: column-reverse;
    gap: var(--size-gap-large);
  }
  #piscine .left img {
    height: 400px;
  }
  #piscine .left .txt {
    margin: 0;
  }
  #piscine .right {
    width: 100%;
  }
  #piscine .right .info {
    margin: 0 auto 0 0;
  }
  #piscine .right img {
    height: 400px;
  }
  #galerie .width .info {
    flex-direction: column;
    max-width: none;
  }
  #galerie .width .info .left {
    width: 100%;
  }
  #galerie .width .info .right {
    width: 100%;
    max-width: none;
  }
  #galerie .galerie-container #roller {
    height: 450px;
  }
  #galerie .galerie-container .gallery-nav span {
    width: 80px;
    height: 80px;
  }
  #galerie .galerie-container .gallery-nav span img {
    margin-left: 22px;
  }
  #galerie .galerie-container .gallery-nav span:hover.gallery-nav-prev img {
    margin-left: 22px;
  }
  #galerie .galerie-container .gallery-nav span:hover.gallery-nav-next img {
    margin-left: 22px;
  }
  #situation .width .info .txt {
    width: 100%;
  }
  #situation1 .info {
    padding: 40px var(--padding-horizontal);
  }
  #caracteristique .width {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }
  #caracteristique .width .left {
    width: 100%;
    padding: 0 var(--padding-horizontal) 50px;
  }
  #caracteristique .width .right {
    width: 100%;
    height: 400px;
  }
  #commodites .top {
    gap: var(--size-gap-large);
    margin-bottom: 50px;
    justify-content: center;
  }
  #commodites .list {
    display: flex;
    flex-direction: column;
  }
  #commodites .center {
    height: 450px;
  }
  #commodites .bottom {
    gap: var(--size-gap-large);
    margin-bottom: 50px;
    justify-content: center;
  }
  #commodites1 .top {
    width: 100%;
    justify-content: flex-start;
    gap: 20%;
  }
  #commodites1 .bottom {
    flex-direction: row;
    height: 400px;
    align-items: unset;
  }
  #commodites1 .bottom img.zoom {
    position: static;
    width: 50%;
    border: none;
    height: auto;
  }
  .contact .left {
    padding: 50px 0;
  }
  .contact .left .width .form-container {
    width: 53%;
  }
}
@media only screen and (max-width: 850px) {
  :root {
    --font-size-text: 16px;
    --font-size-header: 34px;
    --font-size-subheader: 28px;
    --font-size-title: 20px;
    --font-size-button: 12px;
    --size-gap: 12px;
    --size-gap-large: 24px;
    --padding-horizontal: 5%;
  }
  #loading.hidden div {
    transform: scale(1.1);
  }
  #accueil .right .description > div {
    justify-content: center;
  }
  #fullScreenImg .info {
    padding: 27px var(--padding-horizontal);
  }
  #fullScreenImg .info table tbody td {
    padding: 6px 4px 6px 10px;
  }
  #fullScreenImg .info table tbody td:nth-child(2) {
    width: 200px;
  }
  #fullScreenImg .info table tbody td:nth-child(3),
  #fullScreenImg .info table tbody td:nth-child(4) {
    width: 50px;
  }
  .projet .wrapper {
    flex-direction: column;
  }
  .projet .wrapper .left {
    width: 100%;
  }
  .projet .wrapper .right {
    width: 100%;
    padding: 0 var(--padding-horizontal) 50px var(--padding-horizontal);
  }
  .projet1 {
    flex-direction: column;
    padding-top: 0;
    padding-bottom: 0;
  }
  .projet1 .left {
    width: 100%;
  }
  .projet1 .right {
    width: 100%;
    padding: 50px var(--padding-horizontal) 50px var(--padding-horizontal);
  }
  .projet1 .right .info .txt {
    max-width: none;
  }
  #villa1 .right {
    margin-top: -284px;
    z-index: 6;
    align-items: flex-end;
  }
  #villa1 .right img:last-of-type {
    display: none;
  }
  #situation {
    flex-direction: column;
  }
  #situation .width {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #situation .width .btn {
    margin-top: 50px;
    text-align: right;
    margin-right: 0;
    margin-left: auto;
    display: block;
    width: max-content;
  }
  #situation .map {
    width: 100%;
    height: 450px;
    margin-bottom: 50px;
  }
  .situation1 .img {
    height: 450px;
  }
  #galerie {
    padding: 50px 0 50px 0;
  }
  .contact .left .width {
    flex-direction: column;
  }
  .contact .left .width .wrapper {
    width: 100%;
    margin-top: 100px;
  }
  .contact .left .width .wrapper * {
    text-align: center;
    margin: 0 auto;
  }
  .contact .left .width .wrapper .details h3 {
    text-align: center;
  }
  .contact .left .width .wrapper .logo {
    display: flex;
    margin-bottom: 50px;
  }
  .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) {
  #accueil .left .buttons {
    flex-wrap: wrap;
    left: var(--padding-horizontal);
    transform: translateX(0);
  }
  #accueil .right .description {
    padding-bottom: 50px;
  }
  #accueil .right .description .item {
    width: 44%;
  }
  #accueil .right .description > div {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #projet .imgs img {
    height: 400px;
  }
  #situation1 .info2 table tbody td {
    padding: 6px 4px 6px 6px;
  }
  #situation1 .info2 table tbody td:nth-child(1) {
    width: 0;
    min-width: 0;
    height: 40px;
  }
  #commodites {
    padding: 100px 0 0 0;
    display: block;
  }
  #commodites .top {
    flex-direction: column;
    margin-bottom: 100px;
    gap: 50px;
  }
  #commodites .top .left {
    width: 100%;
  }
  #commodites .top .right {
    width: 100%;
  }
  #commodites .top .right img {
    height: 400px;
  }
  #commodites .bottom {
    flex-direction: column-reverse;
  }
  #commodites .bottom .left {
    width: 100%;
  }
  #commodites .bottom .left img {
    height: 400px;
  }
  #commodites .bottom .right {
    width: 100%;
    justify-content: flex-end;
    margin-bottom: 30px;
  }
  #commodites .bottom .right .list {
    margin-left: calc(2 * var(--padding-horizontal));
  }
  #commodites1 .top {
    display: flex;
    flex-direction: column;
    gap: 80px;
  }
  #commodites1 .list:last-of-type {
    align-self: flex-end;
  }
}
@media only screen and (max-width: 450px) {
  #accueil .left {
    padding-top: 80%;
  }
  #accueil .left .txt {
    margin-bottom: 50px;
  }
  #accueil .right .description {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */