:root {
  --fs-text: 16px;
  --fs-header: 64px;
  --fs-subheader: 52px;
  --fs-title: 36px;
  --fs-button: 14px;
  --gap: 24px;
  --gap-large: 32px;
  --padding-horizontal: 5%;
  --padding-vertical: 100px;
}

@font-face {
  font-family: "Vonca";
  src: url("fonts/Vonca.woff");
  src: url("fonts/Vonca.woff") format("woff"), url("fonts/Vonca.ttf") format("truetype"), url("fonts/Vonca.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Inter";
  src: url("fonts/Inter.ttf") format("truetype");
  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: #d5c9b8;
}

h1,
h2 {
  font-family: "Vonca", sans-serif;
  color: #5e6756;
  text-align: left;
  letter-spacing: 0.2rem;
}

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

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

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

.subtitle {
  font-family: "Inter", sans-serif;
  font-size: var(--fs-text);
  color: #5e6756;
  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(--gap);
}
.info::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 90px;
  width: 1px;
  display: block;
  background-color: #5e6756;
}

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

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

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: "Inter", sans-serif;
  font-size: var(--fs-text);
  font-weight: 400;
  line-height: 1.2;
  text-align: justify;
  color: #5e6756;
  margin-bottom: var(--gap-large);
}

/* 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 {
  opacity: 0;
  visibility: hidden;
}
#loading.hidden div {
  transform: scale(1.5);
}

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

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

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

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

/***************************************************************/
/*** BUTTONS ***************************************************/
/***************************************************************/
.btn {
  background-color: #5e6756;
  color: #d5c9b8;
  padding: 10px 40px 10px 40px;
  border: 1px solid #5e6756;
  font-family: "Inter", sans-serif;
  font-size: var(--fs-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;
  position: relative;
  width: max-content;
}
.btn:hover {
  background-color: rgba(213, 201, 184, 0.5);
  color: #5e6756;
}
.btn.arrow {
  padding: 10px 16px 10px 16px;
  border: 1px solid #5e6756;
  padding-right: 60px;
  position: relative;
  display: inline-block;
  background-color: transparent;
  color: #5e6756;
}
.btn.arrow a {
  color: #5e6756;
  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: #d5c9b8;
  color: #5e6756;
}
.btn.arrow:hover::after {
  right: -6px;
}
.btn.arrow.noborder {
  border: 1px solid transparent;
}
.btn.arrow.transparent {
  background-color: transparent;
  border-color: #5e6756;
  color: #5e6756;
}
.btn.arrow.transparent::after {
  filter: invert(1);
}
.btn.arrow.transparent a {
  color: #5e6756;
}

/***************************************************************/
/*** 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 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--gap);
  text-align: center;
}
header .width .logo {
  height: 100px;
  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: flex-end;
  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: var(--gap);
}
header .width nav ul li a {
  font-family: "Inter", sans-serif;
  font-size: var(--fs-text);
  font-weight: 300;
  line-height: 1.2;
  letter-spacing: 0.2rem;
  text-align: left;
  color: #5e6756;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  border-bottom: 1px solid transparent;
  transition: all 0.3s linear;
  line-height: 34px;
  padding: 2px 20px 2px 20px;
}
header .width nav ul li a:hover {
  background-color: #5e6756;
  color: #d5c9b8;
}
header .width nav ul li.hidden {
  display: none;
}
header.active {
  padding: 10px 0;
  background-color: #d5c9b8;
  box-shadow: #5e6756 0px 3px 8px;
}
header.active .logo {
  transition: all 0.3s linear;
  height: 60px;
}
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-horizontal);
}
#menu-btn.active span {
  background-color: transparent;
}
#menu-btn.active span::before {
  transform: translateY(-8px) rotate(135deg);
  background-color: #5e6756;
}
#menu-btn.active span::after {
  transform: translateY(12px) rotate(-135deg);
  background-color: #5e6756;
}
#menu-btn span,
#menu-btn span::before,
#menu-btn span::after {
  content: "";
  width: 40px;
  height: 1px;
  display: block;
  position: absolute;
  background-color: #5e6756;
}
#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;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
  position: relative;
  background: url("imgs/vis/2-night.jpg?v.01") no-repeat center center;
  background-size: cover;
}
.accueil .txt {
  text-align: center;
  max-width: 40ch;
  margin: 0 auto;
  margin-bottom: var(--gap-large);
}
.accueil .buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-large);
}
.accueil .wrapper {
  padding: var(--gap);
  background-color: rgba(94, 103, 86, 0.6);
  border-radius: 32px;
  margin-bottom: 50px;
}
.accueil .wrapper h1 {
  color: #d5c9b8;
}
.accueil .wrapper .btn {
  border-color: #d5c9b8;
  background-color: #d5c9b8;
}

/***************************************************************/
/*** PROJECT ***************************************************/
/***************************************************************/
.projet {
  padding-top: var(--padding-vertical);
  padding-bottom: 0;
  color: #5e6756;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  overflow: hidden;
  margin-top: 100px;
}
.projet .width {
  margin-bottom: 250px;
}
.projet .width .subtitle {
  margin-bottom: 14px;
  text-align: center;
}
.projet .width .subheader {
  margin-bottom: 50px;
  color: #5e6756;
  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: #5e6756;
  padding: 0 var(--padding-horizontal) 50px var(--padding-horizontal);
  height: 500px;
}
.projet .wrapper .left * {
  color: #d5c9b8;
}
.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: var(--padding-vertical);
  padding-bottom: var(--padding-vertical);
  max-height: 100vh;
}
.projet1 .left {
  width: 60%;
  color: #d5c9b8;
}
.projet1 .right {
  width: 40%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  color: #5e6756;
  padding-right: var(--padding-horizontal);
  padding-left: var(--padding-horizontal);
}
.projet1 .right .info {
  width: 100%;
}
.projet1 .right .info .txt {
  color: #5e6756;
  text-align: justify;
  max-width: 47ch;
}
.projet1 .right .info .img {
  height: 400px;
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  margin-bottom: var(--gap);
  object-fit: cover;
}

/***************************************************************/
/*** GALERIE ***************************************************/
/***************************************************************/
#galerie {
  padding: var(--padding-vertical) 0 105px 0;
  background-color: #5e6756;
}
#galerie .width {
  color: #d5c9b8;
}
#galerie .width .info {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--gap-large);
  max-width: 1314px;
  margin-bottom: 78px;
  color: #d5c9b8;
}
#galerie .width .info .left {
  max-width: 90ch;
}
#galerie .width .info .left .btn.arrow {
  border: 1px solid #d5c9b8;
}
#galerie .width .info .left .btn.arrow a {
  color: #d5c9b8;
}
#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 .left .title,
#galerie .width .info .left .subtitle {
  color: #d5c9b8;
}
#galerie .width .info .right {
  margin-top: var(--gap-large);
  width: 50%;
  max-width: 70ch;
}
#galerie .width .info .right .txt {
  text-align: left;
  color: #d5c9b8;
}
#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: #d5c9b8;
  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: #d5c9b8;
  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: #d5c9b8;
  z-index: 9999;
  cursor: pointer;
  font-weight: bold;
  background-color: #5e6756;
  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: #5e6756;
  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;
}

/***************************************************************/
/*** Situation *************************************************/
/***************************************************************/
#situation {
  scroll-margin: 100px;
  min-height: 500px;
  background-color: #d5c9b8;
  display: flex;
  padding-bottom: var(--padding-vertical);
}
#situation .width {
  width: 50%;
  padding-top: var(--padding-vertical);
  padding-bottom: var(--padding-vertical);
}
#situation .width .info .txt {
  width: 80%;
}
#situation .map {
  width: 50%;
  height: auto;
}
#situation .map iframe {
  width: 100%;
  height: 100%;
}

/***************************************************************/
/*** Appartements **********************************************/
/***************************************************************/
#appartements {
  background-color: #d5c9b8;
  position: relative;
  padding: var(--padding-vertical) 0;
}
#appartements .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--gap-large);
  padding-left: 0;
}
#appartements .width .subtitle,
#appartements .width h2 {
  color: #5e6756;
}
#appartements .width .left {
  width: 50%;
}
#appartements .width .right {
  width: 50%;
  display: flex;
  align-items: center;
  position: relative;
  height: 500px;
}
#appartements .width .right img {
  position: relative;
  z-index: 2;
  height: 100%;
  width: 100%;
  object-fit: cover;
}
#appartements .width .table {
  width: 100%;
  margin-top: 50px;
  display: none;
  overflow-x: auto;
}
#appartements .width .table.active {
  display: block;
  position: relative;
}
#appartements .width .table table {
  width: 100%;
  width: 100%;
  border-spacing: 0;
  background-color: #d5c9b8;
}
#appartements .width .table table * {
  font-family: "Inter", sans-serif;
  font-size: var(--fs-text);
}
#appartements .width .table table thead {
  background-color: #5e6756;
  color: #d5c9b8;
}
#appartements .width .table table thead tr {
  border: 1px solid #d5c9b8;
}
#appartements .width .table table thead tr th {
  padding: 10px;
  font-weight: 700px;
}
#appartements .width .table table tbody tr {
  transition: all 0.3s linear;
}
#appartements .width .table table tbody tr:nth-child(2n) {
  background-color: rgba(94, 103, 86, 0.1);
  border-bottom: 12px solid #d5c9b8;
}
#appartements .width .table table tbody tr:nth-child(2n+1) {
  background-color: rgba(94, 103, 86, 0.3);
  border-bottom: 12px solid #d5c9b8;
}
#appartements .width .table table tbody td {
  text-align: center;
  padding: 10px 5px;
  border-bottom: 1px solid #d5c9b8;
}
#appartements .width P {
  margin-top: 50px;
}
#appartements .width .btn {
  margin: 30px auto 0 auto;
  width: 300px;
  text-align: center;
  background-color: #d5c9b8;
  color: #5e6756;
  border: 1px solid #5e6756;
}
#appartements .width .btn.active, #appartements .width .btn:hover {
  background-color: #5e6756;
  color: #d5c9b8;
}
#appartements .width #batA,
#appartements .width #batB {
  width: 100px;
  position: relative;
  z-index: 2;
}
#appartements .width #plansA,
#appartements .width #plansB {
  display: none;
  margin-left: 0;
  width: 350px;
  border: 1px solid #5e6756;
}
#appartements .width #plansA.active,
#appartements .width #plansB.active {
  display: block;
  background-color: #d5c9b8;
  color: #5e6756;
}
#appartements .width #plansA.active:hover,
#appartements .width #plansB.active:hover {
  background-color: #5e6756;
  color: #d5c9b8;
}
#appartements .width #imageA,
#appartements .width #imageB {
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  transition: all 0.3s linear;
}
#appartements .width #imageA.active,
#appartements .width #imageB.active {
  opacity: 1;
}

/***************************************************************/
/*** CONTACT ***************************************************/
/***************************************************************/
.contact {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  background-color: rgba(94, 103, 86, 0.5);
  overflow: hidden;
  color: #d5c9b8;
}
.contact .left {
  padding: var(--padding-vertical) 0;
  width: 100%;
}
.contact .left .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--padding-vertical);
  flex-wrap: wrap;
}
.contact .left .width .wrapper {
  width: 30%;
}
.contact .left .width .wrapper .subtitle {
  margin-bottom: 38px;
  color: #d5c9b8;
}
.contact .left .width .wrapper .details h3 {
  font-family: "Vonca", 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 .client {
  width: 250px;
  margin-bottom: 24px;
}
.contact .left .width .wrapper .details .item {
  display: flex;
  align-items: center;
  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: 110px;
}
.contact .left .width .wrapper .logo img {
  object-fit: contain;
}
.contact .left .width .form-container {
  display: block;
  width: 58%;
}
.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 #d5c9b8;
  font-family: "Inter", sans-serif;
  font-size: var(--fs-text);
  color: #d5c9b8;
  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: #d5c9b8;
  opacity: 1;
}
.contact .left .width .form-container form > div textarea {
  margin-bottom: 55px;
}
.contact .left .width .form-container form > div .btn {
  color: #d5c9b8;
  border: 1px solid #d5c9b8;
  background-color: transparent;
}
.contact .left .width .form-container form > div .btn:hover {
  background-color: #5e6756;
}
.contact .left .txt {
  margin-bottom: 28px;
  max-width: 45ch;
}
.contact .left .buttons {
  display: flex;
  gap: var(--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: #5e6756;
  text-align: center;
  font-size: 24px;
  z-index: 1;
  color: #d5c9b8;
  padding: 100px;
  border-radius: 50px;
  line-height: 1.5;
  position: relative;
  outline-offset: 20px;
  font-family: "Inter", 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: #d5c9b8;
  z-index: 9999;
  cursor: pointer;
}

/***************************************************************/
/*** RESPONSIVE ************************************************/
/***************************************************************/
@media only screen and (max-width: 1090px) {
  :root {
    --fs-text: 16px;
    --fs-header: 40px;
    --fs-subheader: 24px;
    --fs-title: 20px;
    --fs-button: 14px;
    --gap: 24px;
    --gap-large: 30px;
    --padding-horizontal: 5%;
    --padding-vertical: 80px;
  }
  .txt {
    text-align: left;
  }
  header .width 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 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;
    justify-content: center;
  }
  header .right .contact-btn {
    display: none;
  }
  #menu-btn {
    display: block;
  }
  #accueil {
    position: relative;
  }
  #accueil .left {
    padding-right: 0;
    padding-left: 0;
    position: relative;
    z-index: 3;
    width: 100%;
  }
  #accueil .left .img {
    background-color: #5e6756;
    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(94, 103, 86, 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: var(--padding-vertical);
  }
  #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(--gap);
  }
  #accueil .right .description .top {
    margin-bottom: var(--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%;
  }
  #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%;
  }
  #appartements {
    padding-top: 0;
  }
  #appartements .width {
    flex-direction: column;
    padding-left: var(--padding-horizontal);
  }
  #appartements .width .right {
    width: 100%;
  }
  #appartements .width .left {
    width: 100%;
    order: -1;
  }
  .contact .left {
    padding: 50px 0 50px 0;
  }
  .contact .left .width .form-container {
    width: 53%;
  }
}
@media only screen and (max-width: 850px) {
  :root {
    --fs-text: 16px;
    --fs-header: 36px;
    --fs-subheader: 24px;
    --fs-title: 20px;
    --fs-button: 12px;
    --gap: 18px;
    --gap-large: 26px;
    --padding-horizontal: 5%;
    --padding-vertical: 80px;
  }
  #loading.hidden div {
    transform: scale(1.1);
  }
  header .width .logo {
    height: 60px;
  }
  header.active .width .logo {
    height: 40px;
  }
  #accueil .right .description > div {
    justify-content: center;
  }
  .projet .wrapper {
    flex-direction: column;
  }
  .projet .wrapper .left {
    width: 100%;
  }
  .projet .wrapper .left img {
    top: -50px;
  }
  .projet .wrapper .right {
    width: 100%;
    padding: 0 var(--padding-horizontal) 50px var(--padding-horizontal);
  }
  .projet1 {
    flex-direction: column;
    max-height: none;
    padding-top: 50px;
  }
  .projet1 .left {
    width: 100%;
  }
  .projet1 .right {
    width: 100%;
    order: -1;
    margin-bottom: 50px;
  }
  .projet1 .right .info .txt {
    max-width: none;
  }
  #situation {
    flex-direction: column;
  }
  #situation .width {
    width: 100%;
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #situation .map {
    width: 100%;
    height: 450px;
    margin-bottom: 50px;
  }
  #galerie {
    padding: 50px 0 50px 0;
  }
  .contact .left .width {
    flex-direction: column;
    gap: 100px;
  }
  .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-text: 16px;
    --fs-header: 30px;
    --fs-subheader: 24px;
    --fs-title: 20px;
    --fs-button: 12px;
    --gap: 18px;
    --gap-large: 26px;
    --padding-horizontal: 5%;
    --padding-vertical: 50px;
  }
  #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;
  }
}
@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 */