#loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #40362d;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading img {
  width: 350px;
}

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

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

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

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

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

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

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

#succes {
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  transition-duration: 0.6s;
}
#succes > div {
  text-align: center;
  font-size: 24px;
  z-index: 1;
  color: #f2e5d5;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px;
  line-height: 1.5;
  position: relative;
}
#succes.active {
  display: flex;
}
#succes.hidden {
  visibility: hidden !important;
  opacity: 0 !important;
}

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

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

h1,
h2 {
  font-family: "Lato", sans-serif;
}

h1 {
  font-size: 110px;
  font-weight: 400;
  line-height: 110%;
  color: #40362d;
}

h2 {
  font-size: 52px;
  font-weight: 400;
  line-height: 110%;
  text-align: left;
  text-transform: uppercase;
  color: #f2e5d5;
}

h3 {
  font-family: "Lato", sans-serif;
  color: #40362d;
  font-size: 36px;
  font-weight: 600;
  line-height: 43px;
  letter-spacing: 0em;
  text-transform: initial;
}

a {
  text-decoration: none;
}

a,
p,
li,
span {
  font-family: "Lato", sans-serif;
  color: #40362d;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
  text-align: left;
}

span {
  display: inline-block;
}

.subtitle {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 21.17px;
  text-align: left;
  text-transform: uppercase;
  color: #f2e5d5;
  margin-bottom: 20px;
}

.btn {
  font-family: "Lato", sans-serif;
  display: block;
  font-size: 16px;
  font-weight: 400;
  line-height: 21.17px;
  text-align: center;
  background-color: transparent;
  text-transform: uppercase;
  transition: all 0.3s linear;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn.btn-blue {
  border: 1px solid #40362d;
  color: #40362d;
  display: inline-block;
}
.btn.btn-blue:hover {
  background-color: #40362d;
  color: #f2e5d5;
}
.btn.btn-gold {
  border: 1px solid #bf9f78;
  color: #bf9f78;
}
.btn.btn-gold:hover {
  background-color: #bf9f78;
  color: #40362d;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 5px 0;
  z-index: 99;
  transition: all 0.3s linear;
  background: rgba(255, 255, 255, 0.4);
}
header .width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .width .logo {
  width: 250px;
  position: relative;
  z-index: 100;
  transition: all 0.3s linear;
}
header .width .logo img {
  transition: all 1s linear;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .width nav {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.4s linear;
  margin-left: 140px;
}
header .width nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}
header .width nav ul li {
  margin: 0 40px;
}
header .width nav ul li.contact-nav {
  display: none;
}
header .width nav ul li a {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  color: #40362d;
  font-weight: 400;
  line-height: 21px;
  letter-spacing: 0em;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
}
header .width nav ul li a:after, header .width nav ul li a:before {
  transition: all 0.5s;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 0%;
  content: ".";
  color: transparent;
  background: #40362d;
  height: 1px;
}
header .width nav ul li a:hover {
  color: rgb(41, 40, 40);
}
header .width nav ul li a:hover:after {
  width: 100%;
}
header .width #contact-btn {
  margin-left: auto;
}
header .width #contact-btn .btn {
  padding: 15px 30px;
  background-color: #40362d;
  color: #bf9f78;
  transition: all 0.3s linear;
  border: 1px solid #40362d;
}
header .width #contact-btn .btn:hover {
  background-color: #bf9f78;
  border: 1px solid #bf9f78;
  color: #40362d;
}
header.active {
  background-color: #f2e5d5;
}
header.active .width .logo {
  width: 150px;
}
header.active .width nav ul li a {
  font-size: 14px;
}

#menu-btn {
  background-color: transparent;
  cursor: pointer;
  border: none;
  width: 52px;
  height: 30px;
  position: absolute;
  z-index: 100;
  display: none;
  top: 23px;
  right: 7%;
}
#menu-btn.active span {
  background-color: transparent;
  width: 40px;
}
#menu-btn.active span::before {
  transform: translateY(-8px) rotate(135deg);
  background-color: #40362d;
  width: 40px;
}
#menu-btn.active span::after {
  transform: translateY(12px) rotate(-135deg);
  background-color: #40362d;
  width: 40px;
}
#menu-btn span,
#menu-btn span::before,
#menu-btn span::after {
  content: "";
  width: 60px;
  height: 1px;
  display: block;
  position: absolute;
  background-color: #40362d;
}
#menu-btn span::before {
  top: 10px;
  transition: all 0.5s linear;
}
#menu-btn span::after {
  bottom: 10px;
  transition: all 0.5s linear;
}

#accueil {
  min-height: 100vh;
  background-size: cover;
  background-position: center;
  height: 100vh;
  position: relative;
}
#accueil:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #f2e5d5;
  opacity: 0.2;
}
#accueil .width {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding-bottom: 1%;
  position: relative;
  z-index: 55;
}

#projet {
  padding-top: 92px;
  padding-bottom: 92px;
  background-color: #f2e5d5;
}
#projet .title {
  margin-left: auto;
  width: 50%;
  background-color: #cdc1ad;
  padding: 92px 5% 92px 170px;
  position: relative;
}
#projet .title h2 {
  overflow-wrap: anywhere;
}
#projet .title:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imgs/Creamy-Gradient-Texture-Background-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0.4;
  background-size: cover;
}
#projet .title * {
  color: #40362d;
  position: relative;
  z-index: 3;
}
#projet .txt {
  width: 50%;
  margin-left: 5%;
  margin-top: -320px;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 3;
}
#projet .txt img {
  height: 552px;
  -o-object-fit: cover;
     object-fit: cover;
}
#projet .txt .txt-flex {
  margin-top: 40px;
}
#projet .txt .txt-flex p {
  display: block;
  width: 90%;
  margin-bottom: 20px;
}
#projet .txt .txt-flex p .btn {
  margin-top: 40px;
  width: 320px;
}
#projet .img2 {
  height: 420px;
  width: 40%;
  margin-left: auto;
  padding-right: 5%;
  margin-top: -420px;
}
#projet .img2 img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

#situation {
  background-color: #f2e5d5;
  padding-top: 100px;
  padding-bottom: 50px;
}
#situation .title * {
  color: #40362d;
}
#situation .map-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 40px;
}
#situation .map-container .left {
  width: 60%;
  height: 550px;
}
#situation .map-container .left img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
#situation .map-container .txt {
  margin-top: 30px;
  width: 35%;
  padding-right: 8%;
}
#situation .map-container .txt h3 {
  margin-bottom: 50px;
}
#situation .map-container .txt p {
  margin-bottom: 30px;
}
#situation .map-container .txt .btn {
  margin-bottom: 24px;
}
#situation .txt-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 50px;
}
#situation .txt-img .icons {
  width: 24%;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#situation .txt-img .icons .icon {
  width: 20%;
  height: 80px;
  margin-right: 30px;
}
#situation .txt-img .icons .icon img {
  width: 100%;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
#situation .txt-img .icons .txt {
  width: 70%;
}
#situation .txt-img .icons .txt p {
  margin-bottom: 20px;
}
#situation .txt-img .icons .txt ul {
  margin-left: 20px;
}
#situation .txt-img .icons .txt ul li {
  font-size: 16px;
}

#situation2 {
  padding-bottom: 100px;
}
#situation2 .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -100px;
  position: relative;
  z-index: 1;
}
#situation2 .width .img {
  width: 65%;
  position: relative;
  padding-top: 80px;
  padding-bottom: 100px;
  position: relative;
}
#situation2 .width .img:before {
  content: "";
  position: absolute;
  top: 0;
  left: -9%;
  width: 80%;
  height: 50%;
  background-color: #cdc1ad;
  z-index: -1;
}
#situation2 .width .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#situation2 .width .img h2 {
  max-width: 18ch;
  margin-bottom: 80px;
  color: #40362d;
}
#situation2 .width .img img {
  height: 607px;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border: 1px solid white;
}
#situation2 .width .txt {
  width: 32%;
}
#situation2 .width .txt .icons {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
#situation2 .width .txt .icons .txt {
  width: 70%;
}
#situation2 .width .txt .icons .txt p {
  margin-bottom: 20px;
}
#situation2 .width .txt .icons .txt ul {
  margin-left: 20px;
}
#situation2 .width .txt .icons .txt ul li {
  font-size: 16px;
}
#situation2 .txt-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#situation2 .txt-img .icons {
  width: 33%;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#situation2 .txt-img .icons .icon {
  width: 20%;
  height: 80px;
  margin-right: 30px;
}
#situation2 .txt-img .icons .icon img {
  width: 100%;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
#situation2 .txt-img .icons .txt {
  width: 70%;
}
#situation2 .txt-img .icons .txt p {
  margin-bottom: 20px;
}
#situation2 .txt-img .icons .txt ul {
  margin-left: 20px;
}
#situation2 .txt-img .icons .txt ul li {
  font-size: 16px;
}

#technique {
  padding-bottom: 100px;
  margin-top: 50px;
}
#technique .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: -100px;
  position: relative;
  z-index: 1;
  gap: 32px;
}
#technique .width h3 {
  margin-bottom: 24px;
}
#technique .width .img {
  width: 65%;
  position: relative;
  padding-top: 80px;
  position: relative;
}
#technique .width .img:before {
  content: "";
  position: absolute;
  top: 0;
  left: -9%;
  width: 70%;
  height: 50%;
  background-color: #cdc1ad;
  z-index: -1;
}
#technique .width .img:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#technique .width .img h2 {
  max-width: 18ch;
  margin-bottom: 80px;
  color: #40362d;
}
#technique .width .img img {
  max-height: 750px;
  width: 600px;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
}
#technique .width .txt {
  width: 72%;
}
#technique .width .txt .icons {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 100%;
}
#technique .width .txt .icons .txt {
  width: 70%;
}
#technique .width .txt .icons .txt p {
  margin-bottom: 20px;
}
#technique .width .txt .icons .txt ul {
  margin-left: 20px;
}
#technique .width .txt .icons .txt ul li {
  font-size: 16px;
}
#technique .txt-img {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#technique .txt-img .icons {
  width: 33%;
  margin-top: 100px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#technique .txt-img .icons .icon {
  width: 20%;
  height: 80px;
  margin-right: 30px;
}
#technique .txt-img .icons .icon img {
  width: 100%;
  height: 70px;
  -o-object-fit: contain;
     object-fit: contain;
}
#technique .txt-img .icons .txt {
  width: 70%;
}
#technique .txt-img .icons .txt p {
  margin-bottom: 20px;
}
#technique .txt-img .icons .txt ul {
  margin-left: 20px;
}
#technique .txt-img .icons .txt ul li {
  font-size: 16px;
}

#architecture {
  background-color: #f2e5d5;
  position: relative;
}
#architecture:before {
  content: "";
  top: -200px;
  left: 0;
  width: 100%;
  height: 200px;
  position: absolute;
  background-color: #f2e5d5;
  z-index: -1;
}
#architecture .width {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 50px;
  padding-top: 73px;
  padding-bottom: 50px;
}
#architecture .width > div {
  width: 45%;
}
#architecture .width > div.img {
  width: 40%;
  height: 509px;
  position: relative;
  margin-top: -200px;
}
#architecture .width > div.img:after {
  content: "";
  position: absolute;
  z-index: 1;
  top: 10%;
  left: -20%;
  width: 100%;
  height: 100%;
  background-color: #cdc1ad;
}
#architecture .width > div.img img {
  position: absolute;
  z-index: 2;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#architecture .width > div.txt h2 {
  color: #40362d;
}
#architecture .width > div.txt h2 b {
  display: block;
  white-space: nowrap;
  font-weight: initial;
}
#architecture .width > div.txt .btn {
  margin-top: 40px;
  width: 250px;
}

#icons {
  margin-top: 100px;
  margin-bottom: 100px;
}
#icons .icons {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}
#icons .icons > div {
  width: 25%;
  padding: 28px 0;
  text-align: center;
}
#icons .icons > div img {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  width: auto;
}
#icons .icons > div p {
  font-size: 18px;
  font-weight: 500;
  line-height: 22.4px;
  letter-spacing: 0.05em;
  text-align: center;
  margin-top: 20px;
}
#icons .txt {
  width: 45%;
  background-color: #40362d;
  padding: 72px 6%;
  margin-top: -230px;
  position: relative;
  z-index: 2;
}
#icons .txt h2 {
  margin-bottom: 37px;
}
#icons .txt p {
  color: #f2e5d5;
}
#icons .txt .btn {
  width: 250px;
}

#appartements {
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
}
#appartements:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imgs/Creamy-Gradient-Texture-Background-3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0.4;
  background-size: cover;
}
#appartements .width {
  position: relative;
  z-index: 3;
}
#appartements .width .title h2 {
  color: #40362d;
}
#appartements .width .table {
  width: 100%;
  margin-top: 50px;
}
#appartements .width .table table {
  width: 100%;
  width: 100%;
  border-spacing: 0;
  border-collapse: collapse;
}
#appartements .width .table table * {
  font-family: "Lato", sans-serif;
  font-size: 16px;
}
#appartements .width .table table thead {
  background-color: #40362d;
  color: #f2e5d5;
}
#appartements .width .table table thead tr th {
  padding: 5px;
}
#appartements .width .table table tbody tr:nth-child(3) td, #appartements .width .table table tbody tr:nth-child(6) td, #appartements .width .table table tbody tr:nth-child(9) td {
  border-bottom: 1px solid #40362d;
}
#appartements .width .table table tbody tr td {
  text-align: center;
  font-weight: 300;
  padding: 10px 5px;
}
#appartements .width .table table tbody tr td a {
  text-decoration: underline;
  font-weight: bold;
}
#appartements .width P {
  margin-top: 50px;
}
#appartements .width .btn {
  margin: 60px auto 0 auto;
  width: 300px;
  text-align: center;
}

#galerie {
  padding-bottom: 250px;
  padding-top: 100px;
  background-color: #f2e5d5;
}
#galerie h2 {
  margin-bottom: 50px;
  color: #40362d;
}
#galerie .galerie-container {
  margin-left: -1.5%;
  position: relative;
  width: 100%;
}
#galerie .galerie-container #roller {
  display: flex;
  align-items: center;
  position: relative;
  transition-duration: 0.6s;
  z-index: 1;
  width: 100%;
  height: 500px;
  width: 60%;
}
#galerie .galerie-container #roller img {
  height: 100%;
  border: 20px solid #f2e5d5;
  transition-duration: 0.2s;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  opacity: 0.8;
}
#galerie .galerie-container #roller .active {
  opacity: 1;
  z-index: 44;
}
#galerie .galerie-container .gallery-nav {
  position: absolute;
  top: 105%;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  z-index: 1;
}
#galerie .galerie-container .gallery-nav span {
  width: 50px;
  height: 50px;
  cursor: pointer;
}
#galerie .galerie-container .gallery-nav span.gallery-nav-prev {
  margin-left: 15px;
}
#galerie .galerie-container .gallery-nav span.gallery-nav-next {
  margin-right: 0px;
}
#galerie .galerie-container .gallery-nav span img {
  width: 100%;
  height: 100%;
  filter: invert(1);
  opacity: 0.8;
  -o-object-fit: contain;
     object-fit: contain;
}

/* fullscreen ***********************************/
.showImg,
.showImg2 {
  cursor: pointer;
  position: relative;
}
.showImg:before,
.showImg2:before {
  content: url("imgs/icons/fullscreen-small.png");
  position: absolute;
  display: block;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s linear;
}
.showImg:hover:before,
.showImg2:hover:before {
  opacity: 0.8;
}

.showImg:before {
  top: 10px;
  right: 10px;
  filter: invert(1);
  background-color: rgba(255, 255, 255, 0.6);
}

.showImg2:before {
  top: 40px;
  right: 20px;
}

#fullscreen,
#fullscreen-showImg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #f9f9fb !important;
  transition-duration: 1s;
  opacity: 0;
  visibility: hidden;
}
#fullscreen *,
#fullscreen-showImg * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#fullscreen > div > div,
#fullscreen-showImg > div > div {
  opacity: 0;
  visibility: hidden;
}
#fullscreen .full-img-wrap,
#fullscreen-showImg .full-img-wrap {
  position: relative;
  padding: 50px;
}
#fullscreen #full-img,
#fullscreen-showImg #full-img {
  background-position: center;
  background-size: cover;
  transform: scale(0.7);
}
#fullscreen .close,
#fullscreen-showImg .close {
  position: absolute;
  top: 2%;
  right: 1%;
  background: none;
  border: none;
  width: 50px;
  height: 50px;
  padding: 0 10px;
  font-size: 2em;
  color: #40362d;
  display: none;
  cursor: pointer;
  font-weight: lighter;
}
#fullscreen.active,
#fullscreen-showImg.active {
  opacity: 1;
  visibility: visible;
}
#fullscreen.active > div > div,
#fullscreen-showImg.active > div > div {
  opacity: 1;
  visibility: visible;
  transition-duration: 1s;
  transition-delay: 1s;
}
#fullscreen.active #full-img,
#fullscreen-showImg.active #full-img {
  transform: scale(1);
}
#fullscreen.active .full-border,
#fullscreen-showImg.active .full-border {
  transform: scale(1);
}
#fullscreen .full-border,
#fullscreen-showImg .full-border {
  transform: scale(1.2);
  position: absolute;
  padding: 0;
  left: 0;
  top: 0;
}
#fullscreen .nav-btn,
#fullscreen-showImg .nav-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  font-size: 32px;
  text-shadow: 0 0 2px #000000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#fullscreen .next,
#fullscreen-showImg .next {
  right: 0;
}
#fullscreen .prev,
#fullscreen-showImg .prev {
  left: 0;
}

.fullGallery {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #6b534d;
  transition-duration: 0.5s;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
}
.fullGallery:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imgs/Creamy-Gradient-Texture-Background-3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0.4;
  background-size: cover;
}
.fullGallery .full-img {
  position: relative;
  z-index: 4;
}
.fullGallery .full-img .close-btn {
  position: absolute;
  top: 0em;
  right: 2%;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #f2e5d5;
  z-index: 9999;
  cursor: pointer;
  font-weight: bold;
}
.fullGallery .full-img .gallery-nav-prev,
.fullGallery .full-img .gallery-nav-next {
  position: absolute;
  top: 50%;
  width: 40px;
  height: 40px;
  cursor: pointer;
  z-index: 99;
}
.fullGallery .full-img .gallery-nav-next {
  right: 3%;
}
.fullGallery .full-img .gallery-nav-prev {
  left: 3%;
}
.fullGallery.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s linear;
}
.fullGallery * {
  width: 100%;
  height: 100%;
}
.fullGallery * img {
  -o-object-fit: contain;
  object-fit: contain;
}
.fullGallery img {
  transition: all 0.4s linear;
}
.fullGallery img.active {
  display: block;
}

.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);
  }
}
#contact {
  background-color: #bf9f78;
  position: relative;
  overflow: hidden;
}
#contact:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imgs/Creamy-Gradient-Texture-Background-1.jpg);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0.4;
  background-size: cover;
}
#contact .width {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: 120px;
  position: relative;
  z-index: 4;
}
#contact .width:before {
  content: "";
  position: absolute;
  top: 65%;
  right: -43%;
  width: 100%;
  transform: rotate(-90deg);
  height: 150px;
  background-image: url(imgs/logos/logo-accent.png);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 50;
  opacity: 0.4;
  background-size: contain;
}
#contact .width > div.data {
  background-color: #cec4b3;
  padding: 150px 5% 150px 5%;
  margin-top: -200px;
  margin-left: -5%;
  width: 40%;
  z-index: 2;
  position: relative;
}
#contact .width > div.data:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(imgs/Creamy-Gradient-Texture-Background-3.jpg);
  background-position: center;
  background-repeat: no-repeat;
  z-index: 2;
  opacity: 0.4;
  background-size: cover;
}
#contact .width > div.data h2 {
  margin-bottom: 100px;
  position: relative;
  z-index: 4;
  color: #40362d;
}
#contact .width > div.data .details {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
#contact .width > div.data .details h3 {
  margin: 50px 0;
  width: 100%;
}
#contact .width > div.data .details .logo {
  width: 150px;
  margin-bottom: 40px;
}
#contact .width > div.data .details .logo-bigger {
  width: 200px;
  margin-bottom: 40px;
}
#contact .width > div.data .details * {
  color: #40362d;
}
#contact .width > div.data .details p b {
  margin-bottom: 20px;
  display: block;
}
#contact .width > div.data .details a {
  transition: all 0.3s linear;
}
#contact .width > div.data .details a:hover {
  text-decoration: underline;
}
#contact .width > div.form-container {
  width: 60%;
  padding-top: 150px;
}
#contact .width > div.form-container form {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
}
#contact .width > div.form-container form > div {
  width: 45%;
  margin-bottom: 40px;
}
#contact .width > div.form-container form > div input,
#contact .width > div.form-container form > div textarea {
  padding: 16px 0;
  color: #f2e5d5;
  width: 100%;
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: left;
  outline: none;
  border: none;
  border-bottom: 1px solid #f2e5d5;
  background-color: transparent;
  padding-bottom: 30px;
}
#contact .width > div.form-container form > div input::-moz-placeholder, #contact .width > div.form-container form > div textarea::-moz-placeholder {
  color: #f2e5d5;
}
#contact .width > div.form-container form > div input::placeholder,
#contact .width > div.form-container form > div textarea::placeholder {
  color: #f2e5d5;
}
#contact .width > div.form-container form > div textarea {
  height: 100%;
}
#contact .width > div.form-container form > div.textarea {
  width: 100%;
}
#contact .width > div.form-container form > div.submit {
  margin-top: 40px;
}
#contact .width > div.form-container form > div.submit .btn {
  outline: none;
  border: 1px solid #f2e5d5;
  background-color: #f2e5d5;
  width: 100%;
}
#contact .width > div.form-container form > div.submit .btn:hover {
  background-color: transparent;
  color: #f2e5d5;
}

footer {
  background-color: #f2e5d5;
  padding-top: 30px;
  padding-bottom: 30px;
}
footer * {
  color: #40362d;
}
footer .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
footer .width .logo {
  width: 300px;
}
footer .width .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .width .details {
  width: auto;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
footer .width .details > div {
  margin-left: 150px;
  text-align: center;
}
footer .width .details > div p {
  text-align: center;
}
footer .width .details > div p b {
  display: block;
  margin-bottom: 20px;
}
footer .avp {
  text-align: right;
  transition: all 0.3s linear;
  font-size: 14px;
  display: block;
  padding-right: 5%;
}
footer .avp * {
  font-size: 14px;
}
footer .avp a {
  text-decoration: underline;
  transition: all 0.3s linear;
}
footer .avp a:hover {
  color: #bf9f78;
}

/******************************/
@media only screen and (max-width: 1660px) {
  h2 {
    font-size: 44px;
    line-height: 100%;
  }
  #contact .width > div.data {
    width: 50%;
  }
  #contact .width > div.form-container {
    width: 50%;
  }
}
@media only screen and (max-width: 1320px) {
  h1 {
    font-size: 86px;
    line-height: 110%;
  }
  h2 {
    font-size: 42px;
    line-height: 48px;
  }
  h3 {
    font-size: 28px;
    line-height: 33px;
  }
  header .width nav ul li {
    margin: 0 20px;
  }
  #accueil .width {
    padding-bottom: 5%;
  }
  #projet .title {
    padding: 80px 5% 80px 110px;
  }
  #projet .img2 {
    height: 560px;
    margin-top: -550px;
  }
  #projet .txt img {
    height: 450px;
  }
  #projet .txt .txt-flex {
    justify-content: space-between;
  }
  #projet .txt .txt-flex p {
    width: 90%;
    margin-left: 0px;
    margin-bottom: 40px;
  }
  #icons .txt {
    width: 65%;
  }
  #architecture .width > div {
    width: 35%;
  }
  #architecture .width > div.img {
    width: 50vw;
    height: 350px;
    position: relative;
    margin-top: -100px;
    border-radius: 0px 0px 100px 0px;
  }
  #situation .map-container .right {
    height: 400px;
    border-radius: 50px;
  }
  #situation .map-container .right img {
    border-radius: 50px;
  }
  #situation2 .width .img:before {
    width: 95%;
  }
  #situation2 .width .img h2 {
    max-width: 15ch;
  }
  #situation2 .width .img img {
    height: 450px;
  }
  #technique .width .img:before {
    width: 70%;
  }
  #technique .width .img h2 {
    max-width: 15ch;
  }
  #technique .width .txt {
    width: 55%;
  }
  #appartements {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #appartements .width .table table * {
    font-size: 15px;
  }
  #galerie {
    padding-bottom: 180px;
  }
  #galerie .galerie-container #roller {
    height: 300px;
  }
  #contact .width > div.data .details h3 {
    margin: 50px 0 0 0;
    width: 100%;
  }
  #contact .width > div.data h2 {
    margin-bottom: 10px;
  }
  #contact .width > div.data .details {
    flex-direction: column;
  }
  #contact .width > div.data .details .logo {
    margin-top: 50px;
  }
  #contact .width > div.data .details > div {
    width: 100%;
  }
  #contact .width > div.form-container {
    width: 50%;
  }
}
@media only screen and (max-width: 1140px) {
  header {
    background: transparent;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  header .width .logo {
    width: 150px;
    position: relative;
    z-index: 99999;
  }
  header .width nav.active {
    top: 0;
    left: 0;
    transition: all 0.6s linear;
  }
  header .width nav {
    transition: all 0.6s linear;
    position: fixed;
    top: -100%;
    left: 0;
    background-color: #f2e5d5;
    padding: 50px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 100dvh;
    transition-duration: 0.6s;
    z-index: 9999;
    margin-left: 0;
  }
  header .width nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  header .width nav ul li {
    margin-bottom: 18px;
    width: 100%;
    text-align: center;
  }
  header .width nav ul li.contact-nav {
    display: block;
  }
  header .width nav ul li a {
    font-size: 16px;
  }
  header .width #contact-btn {
    display: none;
  }
  h2 {
    font-size: 38px;
    line-height: 42px;
  }
  #menu-btn {
    display: block;
    z-index: 99999;
    top: 15px;
  }
  .fullImg {
    height: 450px;
  }
  .fullImg div {
    background-size: cover;
  }
  #architecture .width > div:nth-child(2) {
    width: 22%;
  }
  #architecture .width > div:last-child {
    width: 40%;
  }
  #situation {
    padding-top: 80px;
  }
  #situation .txt {
    width: 80%;
  }
  #situation .map-container .right {
    height: 300px;
    border-radius: 50px;
  }
  #situation .txt-img {
    margin-top: 10px;
  }
  #situation .txt-img .img {
    height: 400px;
  }
  #situation .txt-img .icons {
    width: 48%;
    margin-top: 60px;
    padding-top: 0;
    justify-content: center;
  }
  #situation .txt-img .icons .txt {
    width: 80%;
  }
  #situation .txt-img .icons .icon {
    height: auto;
  }
  #situation .txt-img .icons .icon img {
    height: 50px;
  }
  #situation2 .width {
    margin-top: -100px;
  }
  #situation2 .width .img {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #situation2 .width .img h2 {
    margin-bottom: 50px;
  }
  #situation2 .width .img img {
    height: 400px;
  }
  #situation2 .txt-img .img {
    height: 200px;
  }
  #situation2 .txt-img {
    margin-top: 10px;
  }
  #situation2 .txt-img .icons {
    width: 48%;
    margin-top: 60px;
    padding-top: 0;
    justify-content: center;
  }
  #situation2 .txt-img .icons .txt {
    width: 80%;
  }
  #situation2 .txt-img .icons .icon {
    height: auto;
  }
  #situation2 .txt-img .icons .icon img {
    height: 50px;
  }
  #technique .width {
    margin-top: -50px;
    flex-direction: column;
  }
  #technique .width .img {
    padding-top: 50px;
    padding-bottom: 50px;
    width: 100%;
  }
  #technique .width .img::before {
    width: 120%;
  }
  #technique .width .img h2 {
    margin-bottom: 50px;
  }
  #technique .width .img img {
    margin: 0 auto;
  }
  #technique .width .txt {
    width: 100%;
  }
  #technique .txt-img {
    margin-top: 10px;
  }
  #technique .txt-img .img {
    height: 200px;
  }
  #technique .txt-img .icons {
    width: 48%;
    margin-top: 60px;
    padding-top: 0;
    justify-content: center;
  }
  #technique .txt-img .icons .txt {
    width: 80%;
  }
  #technique .txt-img .icons .icon {
    height: auto;
  }
  #technique .txt-img .icons .icon img {
    height: 50px;
  }
  #appartements .width .table table * {
    font-size: 13px;
  }
  #galerie {
    padding-top: 100px;
  }
  #contact .width > div.data {
    padding-bottom: 40px;
  }
  #contact .width > div.data .details .logo {
    width: 150px;
  }
  #contact .width > div.data .details .logo-bigger {
    width: 200px;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 850px) {
  h1 {
    font-size: 52px;
  }
  h2 {
    font-size: 32px;
    line-height: 38px;
  }
  p,
  a,
  li {
    font-size: 16px;
    line-height: 19px;
  }
  #projet {
    margin-top: 50px;
  }
  #projet .title {
    padding: 60px 5% 60px 10%;
  }
  #projet .txt {
    margin-top: -350px;
  }
  #projet .txt img {
    height: 350px;
  }
  #projet .txt .txt-flex {
    justify-content: space-between;
    flex-wrap: wrap;
  }
  #projet .txt .txt-flex p {
    width: 100%;
    margin-bottom: 20px;
  }
  #projet .txt .txt-flex p .btn {
    margin-top: 40px;
  }
  #projet .img2 {
    height: 450px;
    margin-top: -410px;
  }
  #architecture .width {
    flex-wrap: wrap;
    padding-bottom: 50px;
  }
  #architecture .width > div.img {
    width: 90%;
  }
  #architecture .width > div.txt {
    width: 35%;
  }
  #architecture .width > div.txt:last-child {
    margin-top: 40px;
    width: 100%;
  }
  .fullImg2 {
    height: 450px;
  }
  #situation {
    padding-top: 60px;
    padding-bottom: 50px;
  }
  #situation .map-container {
    flex-wrap: wrap;
  }
  #situation .map-container .left {
    width: 100%;
  }
  #situation .map-container .txt {
    margin-top: 60px;
    width: 100%;
    padding-right: 8%;
    padding-left: 8%;
    margin-bottom: 50px;
  }
  #situation .txt-img .txt {
    padding-top: 150px;
  }
  #situation .txt-img .icons {
    width: 100%;
    margin-top: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  #situation .txt-img .icons .icon {
    width: 20%;
    justify-content: space-between;
    align-items: center;
  }
  #situation .txt-img .icons .icon img {
    height: 50px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #situation .txt-img .icons .icon img.bus {
    height: 30px;
  }
  #situation .txt-img .icons .txt {
    width: 70%;
    padding-top: 0;
  }
  #situation2 .txt-img .txt {
    padding-top: 150px;
  }
  #situation2 {
    padding-bottom: 50px;
  }
  #situation2 .width {
    flex-wrap: wrap;
  }
  #situation2 .width .img {
    width: 100%;
    padding-bottom: 50px;
  }
  #situation2 .width .txt {
    width: 100%;
  }
  #situation2 .txt-img .icons {
    width: 100%;
    margin-top: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  #situation2 .txt-img .icons .icon {
    width: 20%;
    justify-content: space-between;
    align-items: center;
  }
  #situation2 .txt-img .icons .icon img {
    height: 50px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #situation2 .txt-img .icons .icon img.bus {
    height: 30px;
  }
  #situation2 .txt-img .icons .txt {
    width: 70%;
    padding-top: 0;
  }
  #technique {
    padding-bottom: 50px;
  }
  #technique .width {
    flex-wrap: wrap;
  }
  #technique .width .img {
    width: 100%;
    padding-bottom: 50px;
  }
  #technique .width .txt {
    width: 100%;
  }
  #technique .txt-img .txt {
    padding-top: 150px;
  }
  #technique .txt-img .icons {
    width: 100%;
    margin-top: 20px;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  #technique .txt-img .icons .icon {
    width: 20%;
    justify-content: space-between;
    align-items: center;
  }
  #technique .txt-img .icons .icon img {
    height: 50px;
    width: 100%;
    -o-object-fit: contain;
       object-fit: contain;
  }
  #technique .txt-img .icons .icon img.bus {
    height: 30px;
  }
  #technique .txt-img .icons .txt {
    width: 70%;
    padding-top: 0;
  }
  #appartements .width .table {
    overflow-x: auto;
  }
  #appartements .width .table * {
    font-size: 12px;
  }
  #appartements .width .table table thead tr th {
    padding: 5px 20px;
  }
  .fullGallery .full-img .gallery-nav-prev,
  .fullGallery .full-img .gallery-nav-next {
    position: absolute;
    top: initial;
    bottom: 5%;
  }
  #galerie {
    padding-top: 80px;
  }
}
@media only screen and (max-width: 600px) {
  h2 {
    font-size: 26px;
    line-height: 32px;
  }
  .subtitle {
    font-size: 14px;
  }
  #projet {
    margin-top: 0;
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #projet .title {
    width: 90%;
    padding: 40px 5% 80px 10%;
  }
  #projet .txt {
    margin-top: -50px;
    width: 100%;
    padding-right: 5%;
  }
  #projet .txt img {
    height: 350px;
  }
  #projet .txt .txt-flex p {
    padding-right: 5%;
  }
  #projet .txt .txt-flex p .btn {
    margin-top: 20px;
  }
  #projet .img2 {
    margin-top: 30px;
    width: 100%;
    height: 300px;
  }
  #situation .map-container .right {
    height: 200px;
    border-radius: 50px;
  }
  #situation .map-container .right img {
    -o-object-position: 60%;
       object-position: 60%;
  }
  #situation .txt {
    width: 100%;
    padding-left: 5%;
  }
  .fullImg {
    height: 300px;
  }
  .fullImg2 {
    height: 400px;
  }
  #architecture .width > div.img {
    height: 250px;
  }
  #situation .map-container .left {
    height: 350px;
  }
  #situation2 .width .img img {
    height: 350px;
  }
  #les-appartements,
  #les-appartements2 {
    padding-bottom: 0px;
    padding-right: 0;
  }
  #les-appartements .map-container,
  #les-appartements2 .map-container {
    margin-top: 40px;
    flex-wrap: wrap;
  }
  #les-appartements .map-container .left,
  #les-appartements2 .map-container .left {
    width: 100%;
    height: 350px;
  }
  #les-appartements .map-container .txt,
  #les-appartements2 .map-container .txt {
    width: 100%;
    margin-top: 0;
    margin-bottom: 50px;
    order: -1;
    padding-right: 5%;
  }
  #galerie {
    padding-bottom: 100px;
  }
  #contact .width {
    padding-top: 250px;
    flex-wrap: wrap;
  }
  #contact .width:before {
    top: 35%;
  }
  #contact .width > div.data {
    width: 95%;
    padding: 50px 5%;
  }
  #contact .width > div.data h2 {
    margin-bottom: 40px;
  }
  #contact .width > div.form-container {
    width: 100%;
    margin-top: 50px;
    padding-top: 0px;
  }
  #contact .width > div.form-container form > div {
    width: 100%;
  }
  #contact .width > div.form-container form > div input,
  #contact .width > div.form-container form > div textarea {
    font-size: 14px;
    padding-bottom: 20px;
  }
  footer .width {
    flex-direction: column;
  }
  footer .width > div {
    width: 100%;
  }
  footer .width .logo {
    width: 220px;
  }
  footer .width .details {
    width: 100%;
    justify-content: space-between;
  }
  footer .width .details > div {
    margin: 30px 10px;
  }
  footer .avp {
    text-align: center;
  }
}
@media only screen and (max-width: 450px) {
  h1 {
    font-size: 32px;
  }
  #accueil .width {
    padding-bottom: 15%;
  }
  #loading img {
    width: 250px;
  }
  #architecture .width {
    padding-top: 0px;
    padding-bottom: 0;
  }
  #architecture .width > div.img {
    width: 100vw;
    order: 2;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #architecture .width > div.txt {
    width: 100%;
    margin-top: 30px;
  }
  #architecture .width > div.txt:last-child {
    margin-top: 15px;
  }
  #les-appartements .map-container {
    margin-top: 20px;
  }
  #situation {
    padding-top: 50px;
  }
  #situation .map-container {
    margin-top: 50px;
  }
  #situation .map-container .txt {
    margin-top: 50px;
  }
  #situation .map-container .txt h3 {
    margin-bottom: 30px;
  }
  #situation .map-container .right {
    height: 150px;
  }
  #situation2 .width .img img {
    height: 300px;
  }
  #icons {
    margin-bottom: 20px;
  }
  #icons .icons > div {
    padding: 15px 0;
  }
  #icons .icons > div img {
    height: 120px;
    width: 120px;
  }
  #icons .icons > div p {
    font-size: 14px;
  }
  #appartements {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #galerie {
    padding-top: 60px;
  }
  #galerie .galerie-container #roller {
    height: 200px;
  }
  #galerie .galerie-container #roller img {
    border: 5px solid #e3dbd0;
  }
  footer .avp a {
    text-decoration: underline;
    transition: all 0.3s linear;
    display: block;
    text-align: center;
  }
}/*# sourceMappingURL=style.css.map */