:root {
  --fs-16: 16px;
  --fs-24: 18px;
  --fs-32: 32px;
  --fs-48: 32px;
  --gap-24: 24px;
  --gap-32: 32px;
  --padding-horizontal: 5%;
  --padding-150: 150px;
  --padding-100: 100px;
  --transition: 0.75s cubic-bezier(0.2, 0.6, 0, 1);
}

/***************************************************************/
/*** 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;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #f2f0eb;
}

.f-counter span {
  color: #f2f0eb;
}

h1,
h2 {
  font-family: "Quicksand", sans-serif;
  color: #466174;
  font-weight: 600;
  text-align: center;
  margin-bottom: var(--gap-32);
}
h1 span,
h2 span {
  font-family: "Quicksand", sans-serif;
  color: #466174;
  text-align: center;
  color: #b9bfcf;
}

h1 {
  font-size: var(--fs-48);
  line-height: 1;
  font-weight: 600;
  text-align: left;
  color: #466174;
  margin-bottom: var(--gap-32);
  color: #466174;
}

.subtitle {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: var(--fs-24);
  margin-bottom: 10px;
  color: #bfb4a2;
}
.subtitle span {
  font-family: "Quicksand", sans-serif;
  font-weight: 400;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
  position: relative;
  font-size: var(--fs-24);
  color: #b9bfcf;
}

.title {
  position: relative;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fs-48);
  font-weight: 600;
  line-height: 1.1;
  text-align: left;
  margin-bottom: calc(2 * var(--gap-24));
}
.title span {
  font-family: "Quicksand", sans-serif;
  font-size: var(--fs-48);
  line-height: 1.1;
  font-weight: 600;
  text-align: left;
  color: #b9bfcf;
  text-align: center;
}

a,
span {
  display: inline-block;
  font-family: "Quicksand", sans-serif;
  color: #466174;
}

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

li {
  list-style-type: none;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img a,
.img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.width {
  padding: 0 var(--padding-horizontal);
  margin: 0 auto;
}

p,
.txt {
  font-family: "Quicksand", sans-serif;
  font-size: var(--fs-16);
  font-weight: 300;
  line-height: 1.3;
  text-align: left;
  color: #466174;
  text-align: justify !important;
  max-width: 40ch;
}
p b,
.txt b {
  font-weight: bold;
}

.txt:not(:last-of-type) {
  margin-bottom: var(--gap-32);
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  overflow: hidden;
}

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

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

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #466174;
  cursor: pointer;
}

a[data-fancybox] {
  display: block;
  width: 100%;
  height: 100%;
}
a[data-fancybox] img {
  display: block;
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
}
a[data-fancybox]:focus-visible {
  outline: none;
}
a[data-fancybox]:hover img {
  transform: scale(1.05);
}

.fancybox-inner .fancybox-image {
  -o-object-fit: initial;
     object-fit: initial;
}

.fancybox-infobar {
  display: flex;
  color: white !important;
  font-family: "Quicksand", sans-serif !important;
}
.fancybox-infobar * {
  color: white;
  font-family: "Quicksand", sans-serif;
}

.fancybox-toolbar svg path,
.fancybox-navigation svg path {
  fill: white !important;
}

.animation {
  transition: 0.5s;
  opacity: 0;
  transform: translateX(-50px);
}
.animation.isAnimated {
  transform: translateX(0);
  opacity: 1;
}

/***************************************************************/
/*** BUTTONS ***************************************************/
/***************************************************************/
.btn {
  background-color: transparent;
  color: #466174;
  padding: 12px var(--gap-24);
  border: 1px solid transparent;
  border-radius: 32px;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fs-16);
  font-weight: 400;
  line-height: 1;
  text-align: center;
  cursor: pointer;
  white-space: nowrap;
  position: relative;
  outline: 1px solid #466174;
  outline-offset: 0px;
  text-shadow: none;
  transition: all 0.4s linear;
  letter-spacing: 1px;
}
.btn:hover {
  border: 1px solid #466174;
  background-color: #466174;
  outline: 1px solid #466174;
  outline-color: rgba(70, 97, 116, 0);
  outline-offset: 15px;
  color: #f2f0eb;
}

.brand {
  width: 50px;
  height: auto;
  position: absolute;
  top: 57%;
  left: 50%;
  transform: translate(-50%);
}
.brand svg .cls-3 {
  fill: #b9bfcf;
  stroke-width: 0.5;
  stroke: #b9bfcf;
}
.brand svg.animate path {
  stroke-dasharray: 200px;
  stroke-dashoffset: 200px;
  stroke-width: 0.5;
  fill: transparent;
  transition: stroke-dashoffset 1.5s 0.3s ease-in, fill 0.3s 1.8s, stroke-width 0.3s 1.8s;
}
.brand svg.isAnimated path {
  stroke-dashoffset: 0;
  fill: #b9bfcf;
}

/***************************************************************/
/*** 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;
  text-align: center;
}
header .width .left {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: calc(var(--gap-24) * 2.5);
  width: 100%;
}
header .width .logo {
  width: 120px;
  position: relative;
  z-index: 9;
  flex-shrink: 0;
  filter: invert(1) brightness(2);
  opacity: 0;
  transition: all 0.3s linear;
}
header .width .logo a {
  width: 100%;
  height: 100%;
  font-family: "Quicksand", sans-serif;
}
header .width .logo a img {
  transition: all 0.5s linear;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .width nav {
  display: flex;
  justify-content: flex-end;
  margin-right: 50px;
  transition: right 0.4s linear;
  width: 100vw;
}
header .width nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  gap: var(--gap-32);
}
header .width nav ul li a {
  font-family: "Quicksand", sans-serif;
  font-size: var(--fs-16);
  font-weight: 600;
  line-height: 1.5;
  text-align: left;
  color: #f2f0eb;
  position: relative;
  border-bottom: 1px solid transparent;
  transition: all 0.3s linear;
  letter-spacing: 2px;
}
header .width nav ul li a:before {
  content: "";
  position: absolute;
  bottom: -2px;
  right: 0;
  width: 0px;
  background: #466174;
  height: 1px;
  transition: all 0.5s linear;
}
header .width nav ul li a:hover:before {
  width: 100%;
  right: auto;
  left: 0;
}
header .width nav ul li.hidden {
  display: none;
}
header .width nav ul li.contact-item {
  display: none;
}
header .width .right {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
header .width .right .contact-btn .btn {
  font-weight: 600;
  margin-right: 24px;
  filter: invert(1) brightness(2);
}
header .width .right .contact-btn .btn:hover {
  filter: none;
}
header #contact-btn {
  transition: all 0.3s linear;
}
header.active {
  padding: 4px 0;
  background-color: #f2f0eb;
}
header.active .logo {
  transition: all 0.3s linear;
  width: 70px;
  filter: none;
}
header.active .width nav ul li a {
  color: #466174;
  text-shadow: none;
}
header.active .width nav ul li a:hover:before {
  background-color: #466174;
}
header.active .width .right .contact-btn .btn {
  filter: none;
}

header .width {
  display: flex;
  width: 96vw !important;
  margin-left: 0;
  margin-right: auto;
  width: -moz-max-content;
  width: max-content;
}
header .width nav {
  transition: all 0.6s linear;
  position: fixed;
  top: -150%;
  left: 0;
  background-color: #f2f0eb;
  padding: 50px;
  width: 100vw;
  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 {
  width: 100%;
  text-align: center;
}
header .width nav ul li a {
  font-size: 18px;
  text-align: center;
  text-transform: uppercase;
  color: #466174;
  text-shadow: none;
}
header .width nav ul li.hidden {
  display: block;
}
header .width nav ul li.contact-item {
  display: block;
}
header .width nav.active {
  top: 0;
  left: 0;
  transition: all 0.6s linear;
}
header .width nav.active header .width .right .contact-btn .btn {
  display: none;
}
header.active .width .logo {
  height: auto;
}
header.active #menu-btn {
  top: 50%;
}
header.active #menu-btn span,
header.active #menu-btn span::before,
header.active #menu-btn span::after {
  background-color: #466174;
}
header.active #menu-btn.active span {
  background: transparent;
}
header.active #menu-btn.active ~ #contact-btn {
  opacity: 0;
  pointer-events: none;
}

#menu-btn {
  background-color: transparent;
  cursor: pointer;
  border: none;
  width: 45px;
  height: 45px;
  position: absolute;
  z-index: 100;
  display: flex;
  top: 50%;
  right: var(--padding-horizontal);
}
#menu-btn.active span {
  background-color: transparent;
}
#menu-btn.active span::before {
  transform: translateY(-8px) rotate(135deg);
  background-color: #466174;
}
#menu-btn.active span::after {
  transform: translateY(12px) rotate(-135deg);
  background-color: #466174;
}
#menu-btn.active ~ #contact-btn {
  opacity: 0;
  pointer-events: none;
}
#menu-btn span,
#menu-btn span::before,
#menu-btn span::after {
  content: "";
  width: 40px;
  height: 1px;
  display: block;
  position: absolute;
  background-color: #f2f0eb;
}
#menu-btn span::before {
  top: 10px;
  transition: all 0.1s linear;
}
#menu-btn span::after {
  bottom: 10px;
  transition: all 0.1s linear;
}

.menu-item-56 {
  display: none;
}

/***************************************************************/
/*** ACCUEIL ***************************************************/
/***************************************************************/
#accueil {
  height: 100vh;
  min-height: 800px;
  max-height: 1080px;
  display: flex;
  overflow: visible;
  position: relative;
  background: url("imgs/vis/1-night-desktop.jpg") no-repeat center center;
  background-size: cover;
}
#accueil .width {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 0;
  gap: calc(2 * var(--gap-32));
}
#accueil .width .left {
  width: 40%;
}
#accueil .width .left .logo {
  width: 20%;
  position: absolute;
  left: 15%;
  top: 15%;
  z-index: 2;
}
#accueil .width .left .logo svg.animate path {
  stroke-dasharray: 290px;
  stroke-dashoffset: 290px;
  stroke-width: 0.5;
  fill: transparent;
  transition: stroke-dashoffset 1.5s ease-in, fill 0.3s 0.5s, stroke-width 0.3s 0.5s;
}
#accueil .width .left .logo svg.animate path.cls-1 {
  stroke-width: 2;
}
#accueil .width .left .logo svg.animate text tspan {
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}
#accueil .width .left .logo svg.isAnimated path {
  stroke-dashoffset: 0;
}
#accueil .width .left .logo svg.isAnimated path:not(.cls-1) {
  fill: #f2f0eb;
}
#accueil .width .left .logo svg.isAnimated text tspan {
  opacity: 1;
  transform: translateY(0);
}
#accueil .width .left .logo svg.isAnimated text tspan:nth-child(1) {
  transition-delay: 0.2s;
}
#accueil .width .left .logo svg.isAnimated text tspan:nth-child(2) {
  transition-delay: 0.3s;
}
#accueil .width .left .logo svg.isAnimated text tspan:nth-child(3) {
  transition-delay: 0.4s;
}
#accueil .width .left .logo svg.isAnimated text tspan:nth-child(4) {
  transition-delay: 0.5s;
}
#accueil .width .left .logo svg.isAnimated text tspan:nth-child(5) {
  transition-delay: 0.6s;
}
#accueil .width .left .logo svg.isAnimated text tspan:nth-child(6) {
  transition-delay: 0.7s;
}
#accueil .width .left .logo svg.isAnimated text tspan:nth-child(7) {
  transition-delay: 0.8s;
}
#accueil .width .left .logo svg.isAnimated text tspan:nth-child(8) {
  transition-delay: 0.9s;
}
#accueil .width .left .logo svg.isAnimated text tspan:nth-child(9) {
  transition-delay: 1s;
}
#accueil .width .right {
  width: 60%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  position: relative;
  padding: var(--padding-horizontal);
}
#accueil .width .right .wrapper {
  height: 60px;
  overflow: hidden;
}
#accueil .width .right .wrapper.wrapper1 .title {
  line-height: 1.5;
  margin-bottom: 0;
}
#accueil .width .right .wrapper.wrapper2 {
  height: 95px;
}
#accueil .width .right .wrapper.wrapper2 .subtitle {
  transition-delay: 2s;
  font-size: 24px;
  max-width: 51ch;
  text-transform: none;
}
#accueil .width .right .wrapper .animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 1s 1.3s linear;
}
#accueil .width .right .wrapper .animate.isAnimated {
  opacity: 1;
  transform: translateY(0px);
}
#accueil .width .right h1,
#accueil .width .right h2 {
  text-align: center;
  color: #f2f0eb;
  z-index: 2;
}
#accueil .width .right h2 {
  margin-bottom: 0;
}
#accueil .layer {
  position: absolute;
  inset: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
#accueil .lines {
  position: absolute;
  inset: 0;
}
#accueil .lines .line {
  background-color: #f2f0eb;
  position: absolute;
  transition: all 2s cubic-bezier(0.51, 0.15, 0.89, 0.95);
  opacity: 0;
  border-radius: 32px;
}
#accueil .lines .line.line1, #accueil .lines .line.line2 {
  width: 2px;
  left: 40%;
  transform: translateX(-40%);
}
#accueil .lines .line.line1 {
  top: var(--padding-horizontal);
  height: 0vh;
}
#accueil .lines .line.line1.isAnimated {
  height: 59vh;
  opacity: 1;
}
#accueil .lines .line.line2 {
  bottom: var(--padding-horizontal);
  height: 0;
}
#accueil .lines .line.line2.isAnimated {
  height: 29vh;
  opacity: 1;
}
#accueil .lines .line.line3, #accueil .lines .line.line4 {
  height: 2px;
  top: 65%;
  transform: translateY(-40%);
}
#accueil .lines .line.line3 {
  left: var(--padding-horizontal);
  width: 0vw;
  right: auto;
}
#accueil .lines .line.line3.isAnimated {
  width: 34vw;
  opacity: 1;
}
#accueil .lines .line.line4 {
  right: var(--padding-horizontal);
  width: 0;
  left: auto;
}
#accueil .lines .line.line4.isAnimated {
  width: 54vw;
  opacity: 1;
}
#accueil .scroll-downs {
  position: absolute;
  top: auto;
  right: 27%;
  bottom: var(--gap-24);
  margin: auto;
  width: 34px;
  height: 55px;
}
#accueil .scroll-downs .mousey {
  width: 3px;
  padding: 10px 15px;
  height: 35px;
  border: 2px solid #f2f0eb;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}
#accueil .scroll-downs .scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #f2f0eb;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(0.15, 0.41, 0.69, 0.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% {
    opacity: 0;
  }
  10% {
    transform: translateY(0);
    opacity: 1;
  }
  100% {
    transform: translateY(25px);
    opacity: 0;
  }
}

/***************************************************************/
/*** PROJECT1 ***************************************************/
/***************************************************************/
.wrapper {
  height: -moz-max-content;
  height: max-content;
  overflow: hidden;
}
.wrapper.wrapper1 .subtitle {
  line-height: 1.5;
  margin-bottom: 10px;
}
.wrapper.wrapper2 {
  height: -moz-max-content;
  height: max-content;
  position: relative;
}
.wrapper.wrapper2 .title {
  transition-delay: 1s;
}
.wrapper .animate {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s 0.5s linear;
}
.wrapper .animate.isAnimated {
  opacity: 1;
  transform: translateY(0px);
}

#projet1 {
  background-color: #f2f0eb;
  padding: var(--padding-150) 0;
  position: relative;
  display: flex;
}
#projet1 .width {
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
}
#projet1 .width h2 {
  max-width: 30ch;
  text-align: center;
  margin-bottom: var(--padding-100);
}
#projet1 .width .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 250px;
}
#projet1 .width .container p {
  max-width: 40ch;
}
#projet1 .width .container .left {
  width: 50%;
}
#projet1 .width .container .right {
  width: 50%;
}
#projet1 .width .container .right h2 {
  text-align: left;
  margin-top: 24px;
}

/***************************************************************/
/*** PROJECT2 ***************************************************/
/***************************************************************/
#projet2 {
  background-color: #f2f0eb;
  padding: 0;
  overflow: visible;
}
#projet2 .width {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
  position: relative;
  gap: 50px;
}
#projet2 .width .left {
  width: 64%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
#projet2 .width .left .img {
  height: 90dvh;
  max-height: 650px;
}
#projet2 .width .left .img a {
  overflow: hidden;
}
#projet2 .width .right {
  width: -moz-max-content;
  width: max-content;
  flex-shrink: 0;
  position: sticky;
  top: 20%;
  padding: var(--padding-150) var(--padding-horizontal);
}
#projet2 .width .right .wrapper.wrapper2 h2 {
  max-width: 20ch;
}
#projet2 .width .right .btn {
  margin-top: 32px;
  background-color: #466174;
  color: #f2f0eb;
}
#projet2 .width .right .btn:hover {
  background-color: #f2f0eb;
  color: #466174;
}
#projet2 .width .border1 {
  width: 2px;
  height: 0;
  background-color: #b9bfcf;
  position: absolute;
  left: 0;
  top: 5%;
  border-radius: 32px;
  transition: all 2s cubic-bezier(0.51, 0.15, 0.89, 0.95);
}
#projet2 .width .border1.isAnimated {
  height: 96%;
}
#projet2 .width .border2 {
  display: none;
  width: 0;
  height: 2px;
  background-color: #b9bfcf;
  position: absolute;
  right: 5%;
  bottom: 10%;
  top: auto;
  border-radius: 32px;
  left: auto;
  transition: all 2s cubic-bezier(0.51, 0.15, 0.89, 0.95);
}
#projet2 .width .border2.isAnimated {
  width: 90vw;
  max-width: 1920px;
}

/***************************************************************/
/*** PROJECT1 ***************************************************/
/***************************************************************/
#projet3 {
  display: flex;
  padding: var(--padding-150) 0 var(--padding-150) 0;
  justify-content: space-between;
  background-color: #f2f0eb;
  z-index: 2;
  position: relative;
}
#projet3 .left {
  width: 50%;
  color: #f2f0eb;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
}
#projet3 .left .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 50px;
  margin: var(--padding-100) auto;
}
#projet3 .left .info .btn {
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 0;
  width: -moz-max-content;
  width: max-content;
  background-color: #466174;
  color: #f2f0eb;
}
#projet3 .left .info .btn:hover {
  background-color: #f2f0eb;
  color: #466174;
}
#projet3 .left .info p {
  max-width: 40ch;
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 0;
}
#projet3 .left .info span,
#projet3 .left .info h2,
#projet3 .left .info p {
  color: #466174;
}
#projet3 .left .img {
  width: 100%;
  height: auto;
  height: 70vh;
  min-height: 500px;
}
#projet3 .left .img a {
  overflow: hidden;
}
#projet3 .left .img img {
  -o-object-fit: cover;
     object-fit: cover;
}
#projet3 .right {
  width: 50%;
  color: #f2f0eb;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-between;
  background-color: #466174;
}
#projet3 .right .img {
  width: 100%;
  height: 70vh;
  min-height: 500px;
  margin: 0 auto 0 auto;
  overflow: hidden;
}
#projet3 .right .info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 32px;
  margin: var(--padding-100) auto;
}
#projet3 .right .info p {
  max-width: 40ch;
  margin: 0 auto;
  text-align: left;
  font-weight: 400;
  color: #b9bfcf;
}

/***************************************************************/
/*** GALERIE ****************************************************/
/***************************************************************/
#galerie {
  padding: var(--padding-150) 0 var(--padding-150) 0;
  position: relative;
  border-top: 1px solid #466174;
}
#galerie .width {
  padding-right: 0;
  padding-left: 0;
  width: 100%;
  background-color: var(--dark);
  color: #fff;
  font-family: "Quicksand", sans-serif;
  overflow: hidden;
  line-height: 1.8;
}
#galerie .width .slider {
  height: 100%;
  height: 500px;
  overflow: visible;
}
#galerie .width .slider .slier__wrapper {
  transition: var(--transition) !important;
  will-change: transform;
  margin-left: 0;
}
#galerie .width .slider .slier__wrapper .slider__item {
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--transition), box-shadow var(--transition);
  position: relative;
}
#galerie .width .slider .slier__wrapper .slider__item .slider__img {
  width: 300%;
  height: 100%;
  background-size: cover;
  position: absolute;
  background-repeat: no-repeat;
  left: -100%;
  transition: var(--transition) !important;
  will-change: transform;
  background-position: center center;
}
#galerie .width .description {
  padding-left: var(--padding-horizontal);
  padding-right: 50px;
  position: absolute;
  font-size: calc(var(--sizeindex) * 0.8);
  width: 38%;
  transition: opacity var(--transition), transform var(--transition);
}
#galerie .width .description p {
  opacity: 0.9;
  transition: transform var(--transition);
  transition-duration: 3s;
}
#galerie .width .description.hidden {
  opacity: 0;
  transform: translateY(5vh);
}
#galerie .width .description.hidden p {
  transform: translateY(2vh);
}

/***************************************************************/
/*** FULL IMAGE ****************************************************/
/***************************************************************/
#fullImg {
  height: 90vh;
  max-height: 1080px;
  min-height: 800px;
  width: 100%;
  position: relative;
  overflow: visible;
  display: flex;
  align-items: flex-start;
  justify-self: flex-start;
  margin-top: var(--padding-150);
}
#fullImg img {
  position: absolute;
}
#fullImg .layer {
  position: absolute;
  inset: 0;
  background-color: rgba(70, 97, 116, 0.5);
}
#fullImg .info {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 100px;
}
#fullImg .info .container {
  position: sticky;
  top: 20%;
  bottom: 20%;
  left: 5%;
  right: var(--padding-horizontal);
  display: flex;
  width: 600px;
  flex-shrink: 0;
  justify-content: space-between;
  flex-direction: column;
}
#fullImg .info .container .subtitle,
#fullImg .info .container .title,
#fullImg .info .container p {
  color: #f2f0eb;
}

.fullImg2 {
  height: 100vh;
  max-height: 1080px;
}
.fullImg2 img {
  display: block;
}

.fullImg3 {
  background-color: #b9bfcf;
  margin: 0 auto;
  height: 90vh;
  width: 100%;
  max-height: 1080px;
}
.fullImg3 img {
  display: block;
}

/***************************************************************/
/*** situation *************************************************/
/***************************************************************/
#situation {
  background-color: #f2f0eb;
  position: relative;
  margin-top: var(--padding-150);
  margin-bottom: var(--padding-150);
}
#situation * {
  color: #466174;
}
#situation .width {
  position: relative;
  z-index: 1;
  display: flex;
  padding-right: 0;
  padding-left: 0;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--padding-100);
}
#situation .width .top {
  height: auto;
  width: 100%;
  padding-right: var(--padding-horizontal);
}
#situation .width .top img {
  display: block;
}
#situation .width .bottom {
  width: calc(var(--padding-horizontal) + 450px);
  flex-shrink: 0;
  position: relative;
  padding: var(--padding-100) var(--padding-horizontal);
  padding-right: 0;
}
#situation .width .bottom .title {
  max-width: 30ch;
  text-align: left;
  padding-left: 0;
  margin-left: auto;
  margin-right: auto;
}
#situation .width .bottom .subtitle {
  border-color: #f2f0eb;
  margin-left: 0;
  margin-right: auto;
  display: block;
  text-align: left;
}
#situation .width .bottom .description {
  display: flex;
  justify-content: center;
  gap: 180px;
  position: relative;
  flex-direction: column;
}
#situation .width .bottom .description .brand {
  top: 41%;
  left: 200px;
}
#situation .width .bottom .description .txt {
  text-align: left;
  margin-bottom: 0;
  flex: 1;
  max-width: initial;
}

/***************************************************************/
/*** situation1 *************************************************/
/***************************************************************/
#situation1 {
  background-color: #f2f0eb;
  padding: 0;
  overflow: visible;
}
#situation1 .width {
  display: flex;
  align-items: stretch;
  justify-content: center;
  padding-left: 0;
  padding-right: 0;
  overflow: visible;
  position: relative;
  flex-direction: column;
}
#situation1 .width .left {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 0;
}
#situation1 .width .left .img {
  width: 100%;
}
#situation1 .width .left .img a {
  overflow: hidden;
}
#situation1 .width .left .img a:hover img {
  transform: none;
}
#situation1 .width .left .img a img {
  -o-object-fit: contain;
     object-fit: contain;
}
#situation1 .width .left .info {
  padding: var(--padding-100) var(--padding-horizontal) var(--padding-100) var(--padding-horizontal);
  background-color: #b8bfcf;
}
#situation1 .width .left .info .wrapper {
  padding-top: 50px;
}
#situation1 .width .left .info .wrapper h2 {
  position: relative;
  margin-bottom: 50px;
  max-width: 27ch;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#situation1 .width .left .info .wrapper::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #466174;
  display: block;
  margin-bottom: var(--padding-100);
}
#situation1 .width .left .info ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}
#situation1 .width .left .info ul li {
  height: 150px;
  padding: 16px;
  flex: 1;
  min-width: 220px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: flex-start;
  border: 1px solid #466174;
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s linear;
}
#situation1 .width .left .info ul li .top,
#situation1 .width .left .info ul li .bottom {
  z-index: 1;
  max-width: 50%;
}
#situation1 .width .left .info ul li .top span,
#situation1 .width .left .info ul li .bottom span {
  transition: all 0.3s linear;
}
#situation1 .width .left .info ul li img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transition: all 0.3s linear;
  clip-path: polygon(60% 0, 100% 0%, 100% 100%, 60% 100%);
}
#situation1 .width .left .info ul li::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 60%;
  display: block;
  background-color: rgba(70, 97, 116, 0.7);
  z-index: 0;
  opacity: 0;
  transition: all 0.3s linear;
}
#situation1 .width .left .info ul li:hover:after {
  opacity: 1;
}
#situation1 .width .left .info ul li:hover .top span,
#situation1 .width .left .info ul li:hover .bottom span {
  color: #f2f0eb;
  text-shadow: 1px 1px #000;
}
#situation1 .width .left .info ul li:hover img {
  opacity: 1;
  clip-path: polygon(0 0, 100% 0%, 100% 100%, 0% 100%);
  transform: scale(1.2);
}
#situation1 .width .left .info ul li .top .number {
  font-size: 30px;
  font-weight: bold;
}
#situation1 .width .right {
  width: 100%;
  padding: 0 var(--padding-horizontal);
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: var(--padding-100);
  margin-top: var(--padding-150);
  margin-bottom: var(--padding-150);
}
#situation1 .width .right .container {
  width: 450px;
  flex-shrink: 0;
  padding-top: var(--padding-100);
  padding-bottom: var(--padding-100);
}
#situation1 .width .right .container .subtitle {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
  display: block;
}
#situation1 .width .right .container h2 {
  text-align: left;
}
#situation1 .width .right .container p {
  max-width: initial;
  text-align: center;
}
#situation1 .width .right .container .btn {
  margin-top: 50px;
  margin-left: 0;
  display: block;
  width: -moz-max-content;
  width: max-content;
}
#situation1 .width .right .img {
  overflow: hidden;
}

#situation2 {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  position: relative;
  height: 90vh;
}
#situation2 .left {
  width: 100%;
}
#situation2 .left img {
  -o-object-fit: cover;
     object-fit: cover;
}
#situation2 .text {
  position: absolute;
  top: 0;
  z-index: 2;
  padding-top: var(--padding-horizontal);
  padding-left: var(--padding-horizontal);
  width: 100%;
  height: 100%;
  padding: 100px;
  z-index: 2;
}
#situation2 .text .wrapper {
  position: absolute;
  top: 10%;
  bottom: 10%;
  left: 50%;
  transform: translateX(-50%);
  right: var(--padding-horizontal);
  display: flex;
  flex-shrink: 0;
  justify-content: space-between;
  flex-direction: column;
  max-width: 65ch;
}
#situation2 .text .wrapper h2 {
  color: #466174;
  font-size: 32px;
  margin-bottom: 0;
  text-align: center;
}

/***************************************************************/
/*** budget ************************************************/
/***************************************************************/
#budget {
  background-color: #b9bfcf;
  padding: var(--padding-150) 0 var(--padding-150) 0;
  position: relative;
}
#budget .width {
  display: flex;
  flex-direction: column;
  align-items: center;
}
#budget .title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  color: #f2f0eb;
  margin-bottom: 24px;
}
#budget p {
  color: #f2f0eb;
  font-size: 20px;
  margin-bottom: calc(var(--gap-24) * 2);
  text-align: center;
  max-width: initial;
  margin-bottom: 50px;
}
#budget .table {
  text-align: left !important;
  width: 100%;
  max-width: 1080px;
  margin-top: 0px;
  margin-left: auto;
  margin-right: auto;
  border-collapse: collapse;
}
#budget .table * {
  font-family: "Quicksand", sans-serif;
}
#budget .table tbody tr {
  width: auto;
}
#budget .table tbody tr:first-of-type {
  z-index: 5;
}
#budget .table th {
  color: #466174;
  text-align: left !important;
  font-size: var(--fs-16);
  text-align: left !important;
}
#budget .table th img {
  width: auto;
  height: 34px;
  display: block;
  margin: 0 auto;
  filter: invert(1) brightness(2);
}
#budget .table th,
#budget .table td {
  padding: 10px 30px 10px 0px;
  font-size: var(--fs-16);
  pointer-events: none;
  border: 1px solid #b9bfcf;
  text-align: left;
}
#budget .table th .mobile,
#budget .table td .mobile {
  display: none;
}
#budget .table td {
  color: #466174;
  padding: 0px 30px 50px 0px;
  font-weight: 300;
}
#budget .table tr.images td {
  height: 480px;
  width: 25%;
  padding: 0;
  padding-right: 24px;
  position: relative;
}
#budget .table tr.images td img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#processus {
  padding-bottom: var(--padding-150);
  padding-top: var(--padding-150);
}
#processus .width .subtitle,
#processus .width .title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  display: block;
  max-width: initial;
  width: -moz-max-content;
  width: max-content;
  max-width: 30ch;
}
#processus .width .wrapper.wrapper2 h2 {
  margin-bottom: var(--padding-100);
}
#processus .width .container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  gap: 0px;
  margin-bottom: 0px;
}
#processus .width .container:last-of-type {
  margin-bottom: 0px;
}
#processus .width .container > div {
  width: 20%;
  min-width: 280px;
}

/*  VILLAS **********************************/
#villas {
  padding-top: var(--padding-150);
}
#villas .width {
  display: flex;
  gap: var(--padding-100);
  justify-content: space-between;
  align-items: stretch;
}
#villas .width .left .img {
  overflow: hidden;
  height: 100%;
}
#villas .width .right {
  padding-top: var(--padding-100);
  padding-bottom: var(--padding-100);
  width: 450px;
  flex-shrink: 0;
  display: flex;
  gap: var(--gap-32);
  flex-direction: column;
}
#villas .width .right span:not(.subtitle) {
  display: block;
}
#villas .width .right .title span {
  display: inline-block;
}

/*  PLANS **********************************/
#plans-et-prix {
  padding-bottom: var(--padding-150);
  padding-top: var(--padding-150);
  padding-right: var(--padding-horizontal);
  padding-left: var(--padding-horizontal);
  background-color: #f2f0eb;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  flex-direction: column;
}
#plans-et-prix .title {
  width: 100%;
  margin-right: 0;
  margin-left: auto;
  margin-top: 0;
}
#plans-et-prix .txt {
  width: 75%;
}
#plans-et-prix .tabs {
  display: flex;
  align-items: flex-end;
  gap: 2px;
  justify-content: flex-start;
  margin-bottom: -26px;
  height: 80px;
  border-bottom: 1px solid #b9bfcf;
}
#plans-et-prix .tabs .tab {
  cursor: pointer;
  padding: 24px 35px 4px 35px;
  background-color: rgba(70, 97, 116, 0.5);
  white-space: nowrap;
  transition: all 0.3s linear;
  color: #f2f0eb;
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border: 1px solid #b9bfcf;
}
#plans-et-prix .tabs .tab.active {
  top: 0px;
  color: #f2f0eb;
  padding: 24px 35px 32px 35px;
  background-color: #466174;
  border: 1px solid #b9bfcf;
}
#plans-et-prix .facade {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 100px;
  width: 100%;
}
#plans-et-prix .facade #prix {
  width: 100%;
  height: 519px;
  overflow: auto;
  position: relative;
}
#plans-et-prix .facade #prix table {
  display: none;
}
#plans-et-prix .facade #prix table.active {
  display: table;
}
#plans-et-prix .facade #prix thead {
  position: sticky;
  top: 0;
  z-index: 5;
}
#plans-et-prix .facade #prix tbody tr td {
  padding: 24px 10px;
}
#plans-et-prix .facade #prix ul {
  list-style: none;
}
#plans-et-prix .facade #prix .lot {
  background-color: #b9bfcf;
  margin-bottom: 0;
  border-bottom: solid 7px rgb(245, 247, 246);
  text-align: center;
  transition-duration: 0.3s;
  cursor: pointer;
}
#plans-et-prix .facade #prix .lot:before {
  content: none;
}
#plans-et-prix .facade #prix .lot.selected {
  background-color: #466174;
}
#plans-et-prix .facade #prix .lot.selected .lot-name span {
  color: #f2f0eb !important;
}
#plans-et-prix .facade #prix .lot.selected #lot-03-08 {
  pointer-events: none;
}
#plans-et-prix .facade #prix .lot.selected .lot-info {
  border-color: #466174;
}
#plans-et-prix .facade #prix table {
  width: 100%;
  border-collapse: collapse;
}
#plans-et-prix .facade #prix tbody tr {
  cursor: pointer;
  border-bottom: solid 1px #b9bfcf;
  transition: all 0.3s linear;
}
#plans-et-prix .facade #prix tbody tr.active td {
  background-color: rgba(70, 97, 116, 0.1);
}
#plans-et-prix .facade #prix td,
#plans-et-prix .facade #prix th {
  font-family: "Quicksand", sans-serif;
  color: #466174;
  font-weight: 400;
  padding: 6px 6px;
  text-align: center;
  font-size: 13px;
  white-space: nowrap;
  border: 1px solid #b9bfcf;
  transition: all 0.3s linear;
}
#plans-et-prix .facade #prix td span,
#plans-et-prix .facade #prix th span {
  color: #f2f0eb;
}
#plans-et-prix .facade #prix td {
  background-color: #f2f0eb;
  font-family: "Quicksand", sans-serif;
  color: #466174;
  font-weight: 400;
  font-size: 14px;
}
#plans-et-prix .facade #prix th {
  background-color: #466174;
  font-weight: 300;
  padding: 20px 6px;
  vertical-align: middle;
  color: #f2f0eb;
}
#plans-et-prix .facade #facade {
  padding: 0;
  width: 100%;
  position: relative;
  order: 1;
  max-width: 1080px;
}
#plans-et-prix .btns .btn {
  margin: 50px auto 0 auto;
  display: none;
  width: -moz-max-content;
  width: max-content;
  white-space: nowrap;
  background-color: #466174;
  border-color: transparent;
  color: #f2f0eb;
  outline: 1px solid #b9bfcf;
}
#plans-et-prix .btns .btn:hover {
  outline: 1px solid rgba(185, 191, 207, 0.1);
  color: #466174;
  border-color: #466174;
  background-color: #f2f0eb;
}
#plans-et-prix .btns .btn.active {
  display: flex;
}

/***************************************************************/
/*** ventes ***************************************************/
/***************************************************************/
#ventes {
  border-top: 1px solid #466174;
  padding-top: var(--padding-150);
  padding-bottom: var(--padding-150);
}
#ventes .width {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20vw;
  flex-wrap: wrap;
}
#ventes .width .manager {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#ventes .width .manager h2 {
  text-align: center;
}
#ventes .width .manager h2.subtitle {
  margin-bottom: 24px;
  color: #466174;
}
#ventes .width .manager a {
  margin-bottom: 6px;
  text-align: center;
  color: #466174;
}
#ventes .width .manager a:hover {
  text-decoration: underline;
}
#ventes .width .manager .logo {
  width: 200px;
  height: 100px;
  margin-bottom: 32px;
}
#ventes .width .manager .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

/***************************************************************/
/*** CONTACT ***************************************************/
/***************************************************************/
#contact {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#contact .layer {
  background-color: #466174;
  position: absolute;
  inset: 0;
  pointer-events: none;
}
#contact .width {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  padding: 0;
  padding: 0;
  width: 100%;
}
#contact .width .details {
  padding: 0;
  width: 50%;
  z-index: 2;
}
#contact .width .details img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#contact .width .form-container {
  width: 50%;
  z-index: 1;
  padding: var(--padding-150) var(--padding-horizontal) var(--padding-150) var(--padding-horizontal);
  display: flex;
  flex-direction: column;
  min-width: 700px;
  flex-shrink: 0;
}
#contact .width .form-container .wrapper.wrapper2 .title {
  color: #f2f0eb;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
#contact .width .form-container .info-wrapper {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 0px;
}
#contact .width .form-container .info-wrapper .info {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 50px;
  width: 100%;
}
#contact .width .form-container .info-wrapper .info .subtitle {
  margin-bottom: 32px;
  color: #f2f0eb;
}
#contact .width .form-container .info-wrapper .info img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  margin-bottom: 32px;
}
#contact .width .form-container .info-wrapper .info p,
#contact .width .form-container .info-wrapper .info a {
  display: block;
  color: #f2f0eb;
  text-align: center;
  margin-bottom: 4px;
}
#contact .width .form-container .info-wrapper .info h3 {
  color: #f2f0eb;
  font-size: var(--fs-24);
  font-family: "Quicksand", sans-serif;
  text-align: center;
}
#contact .width .form-container form {
  width: 100%;
}
#contact .width .form-container form div input:not(#accept),
#contact .width .form-container form div textarea {
  padding: 8px 0;
  color: #fff;
  width: 100%;
  font-family: "Quicksand", sans-serif;
  text-align: left;
  outline: none;
  font-size: var(--fs-16);
  border: none;
  border-bottom: 1px solid #fff;
  background-color: transparent;
  margin-bottom: 10px;
}
#contact .width .form-container form div label {
  color: #fff;
  font-family: "Quicksand", sans-serif;
  font-size: var(--fs-16);
}
#contact .width .form-container form button.btn {
  background-color: transparent;
  color: #f2f0eb;
  outline: 1px solid #f2f0eb;
  margin-top: 80px;
  font-family: "Quicksand", sans-serif;
  width: 170px;
}
#contact .width .form-container form button.btn:hover {
  border: 1px solid;
  outline: 1px solid rgba(242, 240, 235, 0);
}
#contact .width .form-container form .accept-container {
  margin-top: var(--gap-32);
  display: flex;
  gap: 10px;
}
#contact .width .form-container form .accept-container div input {
  width: 20px;
  height: 20px;
}
#contact .width .form-container .small {
  font-size: 12px;
  margin-bottom: var(--gap-24);
}
#contact .width .form-container .bottom {
  margin-left: var(--gap-24);
  padding-top: 50px;
  border-top: 1px solid #466174;
}

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

#succes > div {
  background-color: #466174;
  text-align: center;
  font-size: var(--fs-16);
  z-index: 1;
  color: #f2f0eb;
  padding: 100px;
  border-radius: 50px;
  line-height: 1.5;
  position: relative;
  outline-offset: 20px;
  font-family: "Quicksand", 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: #f2f0eb;
  z-index: 9999;
  cursor: pointer;
}

/***************************************************************/
/*** LOADING ***************************************************/
/***************************************************************/
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f2f0eb;
  z-index: 99999;
  transition-duration: 3s;
  display: flex;
  align-items: center;
  justify-content: center;
  transition-delay: 3.3s;
}
#loading > div.logo {
  transition-duration: 1s;
  transition-delay: 2s;
}
#loading > div.logo svg {
  width: 100%;
  min-width: 280px;
}
#loading > div.logo svg path {
  transition: fill 2s 1s linear;
}
#loading.hidden {
  opacity: 0;
  visibility: hidden;
}
#loading.hidden div.logo {
  transform: scale(1.5);
}
#loading.hidden div.logo svg path {
  fill: #466174;
}

/***************************************************************/
/*** MESSAGE ***************************************************/
/***************************************************************/
.message {
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: #f2f0eb;
}
.message section > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.message section > div * {
  color: #466174;
}
.message section > div #e404 {
  margin-bottom: 30px;
  font-size: var(--fs-48);
}

/***************************************************************/
/*** ERROR PAGE ************************************************/
/***************************************************************/
.error404 {
  height: 100vh;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  background-color: #f2f0eb;
}
.error404 section > div {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}
.error404 section > div * {
  color: #466174;
}
.error404 section > div #e404 {
  margin-bottom: 30px;
  font-size: var(--fs-48);
}

/***************************************************************/
/*** FOOTER ****************************************************/
/***************************************************************/
footer {
  background-color: #466174;
  padding-top: 30px;
  padding-bottom: 3px;
  border-top: 1px solid #b9bfcf;
}
footer .width {
  position: relative;
  padding-bottom: 30px;
}
footer .width::after {
  content: "";
  background-color: #f2f0eb;
  height: 1px;
  width: 80%;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
footer .width.txt p,
footer .width.txt a {
  color: #f2f0eb;
  text-align: center;
}
footer .width nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style: none;
}
footer .width nav ul .menu-item-56 {
  display: block;
}
footer .width nav ul li {
  padding: 0 20px;
}
footer .width nav ul li a {
  font-weight: 400;
  font-size: 14px;
  text-align: center;
  color: #f2f0eb;
  border-bottom: 1px solid transparent;
  transition: all 0.3s linear;
}
footer .width nav ul li a:hover {
  border-bottom: 1px solid #f2f0eb;
}
footer .avp {
  padding: 0px 0 30px 0;
  text-align: center;
}
footer .avp p,
footer .avp a {
  font-weight: 300;
  line-height: initial;
  font-size: 14px;
  color: #f2f0eb;
  text-align: center !important;
  margin-left: auto;
  margin-right: auto;
}
footer .avp a {
  transition: all 0.3s linear;
  border-bottom: 1px solid transparent;
}
footer .avp a:hover {
  border-bottom: 1px solid #f2f0eb;
}

/***************************************************************/
/********* MEDIA ***********************************************/
/***************************************************************/
@media only screen and (max-width: 1380px) {
  #accueil .width .left .logo {
    top: 24%;
  }
}
@media only screen and (max-width: 1090px) {
  :root {
    --fs-16: 16px;
    --fs-32: 26px;
    --fs-16: 16px;
    --fs-48: 28px;
    --padding-150: 100px;
    --padding-horizontal: 7%;
    --padding-100: 70px;
  }
  .brand {
    top: 28%;
    transform: scale(0.7) translateX(-50%);
    left: 50%;
  }
  #contact-btn {
    display: none;
  }
  header {
    max-width: 100vw;
    margin-left: 0;
    margin-right: 0;
  }
  #accueil {
    height: 100dvh;
    min-height: 660px;
    background: #b9bfcf url(imgs/vis/1-night.jpg) no-repeat top center;
    background-size: contain;
  }
  #accueil .lines {
    display: none;
  }
  #accueil .scroll-downs {
    right: 20px;
  }
  #accueil .width {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
  }
  #accueil .width .left {
    width: 100%;
  }
  #accueil .width .left .logo {
    left: 50%;
    top: 10%;
    width: 250px;
    transform: translateX(-50%);
  }
  #accueil .width .right {
    width: 100%;
    background-color: #b9bfcf;
  }
  #projet1 .width {
    flex-direction: column;
  }
  #projet1 .width .container {
    flex-direction: column;
    gap: 150px;
    margin-top: 0;
    position: relative;
  }
  #projet1 .width .container .left {
    width: 100%;
  }
  #projet1 .width .container .left p {
    max-width: initial;
  }
  #projet1 .width .container .right {
    width: 100%;
  }
  #projet1 .width .container .right p {
    max-width: initial;
  }
  #projet2 .width {
    flex-direction: column;
    gap: 0;
  }
  #projet2 .width .border1 {
    display: none;
  }
  #projet2 .width .border2 {
    bottom: 0;
  }
  #projet2 .width .left {
    width: 100%;
    display: flex;
    flex-direction: row;
    height: 500px;
  }
  #projet2 .width .left .img {
    height: 100%;
  }
  #projet2 .width .left .img img {
    height: 100%;
  }
  #projet2 .width .left * {
    max-width: initial;
  }
  #projet2 .width .right {
    width: 100%;
    position: static;
  }
  #projet2 .width .right .wrapper.wrapper2 h2 {
    max-width: -moz-fit-content;
    max-width: fit-content;
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  #projet2 .width .right .wrapper.wrapper1 .subtitle {
    align-items: center;
    margin-left: auto;
    max-width: -moz-fit-content;
    max-width: fit-content;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  #projet2 .width .right .btn {
    margin-left: auto;
    margin-right: auto;
    display: block;
    max-width: 260px;
  }
  #projet2 .width .right * {
    max-width: initial;
  }
  #projet3 {
    flex-direction: column;
    padding-left: 0;
    padding-right: 0;
  }
  #projet3 .right {
    width: 100%;
    order: -1;
  }
  #projet3 .right .info p {
    max-width: initial;
  }
  #projet3 .left {
    width: 100%;
    padding-right: var(--padding-horizontal);
    padding-left: var(--padding-horizontal);
    padding-top: var(--padding-150);
    padding-bottom: 0px;
    gap: var(--gap-24);
  }
  #projet3 .left p {
    max-width: initial;
  }
  #projet3 .left .btn {
    margin-bottom: calc(var(--padding-100) - var(--gap-24));
    margin-top: calc(var(--padding-100) - var(--gap-24));
  }
  #situation1 .width .right {
    flex-direction: column;
    margin-top: 0;
  }
  #situation1 .width .right .container {
    width: 100%;
    padding-bottom: 0;
  }
  #situation1 .width .right .container h2 {
    text-align: center;
  }
  #situation1 .width .right .container .subtitle {
    text-align: center;
  }
  #situation1 .width .right .container .btn {
    margin-left: auto;
    margin-right: auto;
  }
  #processus .width .title {
    max-width: -moz-fit-content;
    max-width: fit-content;
    text-align: center !important;
  }
  #processus .width .container > div {
    width: 28%;
  }
  #budget .table {
    height: 1920px;
    display: flex;
    justify-content: center;
    overflow: hidden;
  }
  #budget .table thead {
    display: none;
  }
  #budget .table tbody {
    display: flex;
    gap: 24px;
  }
  #budget .table tbody tr {
    display: flex;
    flex-direction: column;
  }
  #budget .table tbody tr:first-of-type {
    max-width: 180px;
  }
  #budget .table tbody tr td {
    padding: 0;
    height: 480px;
    padding-bottom: 24px;
    display: flex;
    align-items: flex-end;
    flex-direction: column;
    justify-content: center;
  }
  #budget .table tbody tr td:last-of-type {
    padding-bottom: 0px;
  }
  #budget .table tbody tr td .mobile {
    display: block;
    color: #466174;
    font-weight: bold;
    margin-bottom: 8px;
    text-align: right !important;
  }
  #budget .table tbody tr.images td {
    height: 480px;
    width: 100%;
    padding-bottom: 20px;
  }
  #fullImg {
    display: flex;
    flex-direction: column;
    height: 500px;
    min-height: initial;
    margin-top: 0;
  }
  #fullImg .info .container p {
    max-width: initial;
  }
  .fullImg2,
  .fullImg3 {
    height: auto;
  }
  .fullImg2 img,
  .fullImg3 img {
    height: auto;
  }
  .fullImg3 {
    width: 100%;
    margin-top: 0;
  }
  #situation {
    margin-top: 0;
    margin-bottom: 0;
  }
  #situation::after {
    width: 100%;
    min-width: initial;
  }
  #situation .width .top {
    display: none;
  }
  #situation .width .top .img {
    width: 100%;
  }
  #situation .width .bottom {
    width: 100%;
    min-width: initial;
    padding-right: var(--padding-horizontal);
  }
  #situation .width .bottom .title {
    max-width: initial;
    margin-bottom: calc(2 * var(--gap-24));
    text-align: center;
  }
  #situation .width .bottom .subtitle {
    text-align: center;
  }
  #situation .width .bottom .description {
    padding-right: 0;
    justify-content: flex-start;
    gap: 150px;
    flex-direction: column;
  }
  #situation .width .bottom .description .brand {
    top: 30%;
    left: 50%;
  }
  #situation .width .bottom .description .txt {
    width: 100%;
    max-width: initial;
  }
  #situation2 {
    height: 450px;
  }
  #situation2 .text .wrapper {
    max-width: initial;
    width: 82%;
  }
  #situation2 .text .wrapper h2 {
    text-shadow: 1px 1px #fff;
    max-width: 30ch;
    margin-left: auto;
    margin-right: auto;
  }
  .title::before {
    height: 40px;
  }
  #villas .width {
    flex-direction: column;
  }
  #villas .width .left {
    width: 100%;
  }
  #villas .width .right {
    width: 100%;
    order: -1;
    padding-top: 0;
    padding-bottom: 0;
  }
  #villas .width .right .wrapper.wrapper2 h2 {
    max-width: initial;
    text-align: center;
  }
  #villas .width .right .wrapper.wrapper1 .subtitle {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    display: block;
  }
  #villas .width .right p {
    max-width: initial;
  }
  #galerie {
    padding-bottom: 100px;
  }
  #galerie .width {
    display: flex;
    flex-direction: column;
  }
  #galerie .width .subtitle {
    text-align: center;
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #galerie .width h2 {
    text-align: center;
    margin-bottom: calc(var(--gap-24) * 2);
  }
  #galerie .width .description {
    width: 100%;
    padding-right: var(--padding-horizontal);
    padding-bottom: var(--padding-150);
    position: static;
  }
  #galerie .width .description p {
    max-width: initial;
  }
  #galerie .width .swiper {
    width: 100%;
    margin-top: 0px;
    height: 400px;
  }
  #fullImg .info {
    padding: var(--padding-horizontal);
  }
  #fullImg .info .container {
    width: 100%;
  }
  #plans-et-prix .wrapper.wrapper2 {
    width: 100%;
  }
  #plans-et-prix .wrapper.wrapper2 .title {
    margin-bottom: calc(var(--gap-24) * 2);
    text-align: center;
  }
  #plans-et-prix .subtitle {
    display: block;
    margin-left: auto;
    margin-right: auto;
  }
  #plans-et-prix .facade {
    flex-direction: column;
    gap: 50px;
  }
  #plans-et-prix .facade #facade {
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 50px;
  }
  #plans-et-prix .facade #facade .btns {
    order: -1;
  }
  #plans-et-prix .facade #facade .btns .btn.active {
    margin-top: 0;
  }
  #plans-et-prix .facade #prix {
    height: auto;
  }
  #plans-et-prix .facade .table {
    width: 100%;
  }
  #plans-et-prix .tabs .tab {
    padding: 24px 15px 4px 15px;
  }
  #plans-et-prix .tabs .tab.active {
    padding: 24px 15px 32px 15px;
  }
}
@media only screen and (max-width: 850px) {
  :root {
    --fs-16: 16px;
    --fs-32: var(--gap-24);
    --fs-16: 16x;
    --fs-48: 24px;
    --padding-150: 100px;
    --padding-100: 70px;
    --padding-horizontal: 7%;
  }
  #accueil {
    background-size: contain;
  }
  #plans-et-prix .title {
    width: 100%;
    margin-right: 0;
    margin-left: 0;
    margin-top: 0px;
    margin-bottom: var(--padding-150);
  }
  #plans-et-prix .facade {
    flex-direction: column;
    gap: 50px;
  }
  #plans-et-prix .facade #facade {
    width: 100% !important;
    margin-bottom: 0;
  }
  #plans-et-prix .facade #prix {
    width: 100%;
  }
  #plans-et-prix .facade .table {
    width: 100%;
  }
  #plans-et-prix .btns {
    margin: 0 auto;
  }
  #situation .width .bottom .description .brand {
    top: 40%;
    left: 50%;
  }
  #situation2 .text {
    padding: 50px var(--padding-horizontal);
  }
  #situation2 .text .wrapper h2 {
    font-size: 24px;
  }
  .brand {
    top: 33%;
  }
  #lot-container #lot-data {
    margin: 0;
    width: 80%;
  }
  #lot-container .row {
    padding: 50px var(--padding-horizontal);
  }
  #lot-container .row-container {
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
  }
  #lot-container .row-container .details {
    width: 100%;
    align-items: center;
  }
  #lot-container .row-container .plans {
    width: 100%;
  }
  #lot-container .row-container .plans .lot-png {
    margin-bottom: var(--padding-150);
  }
  #lot-container .btn-container {
    margin: 30px auto 30px auto;
  }
  #galerie {
    padding-bottom: 70px;
  }
  #galerie .width .description {
    flex-direction: column;
  }
  #galerie .width .description .left {
    width: 100%;
  }
  #galerie .width .description .right {
    width: 100%;
  }
  #galerie .width .description .right .txt {
    margin-left: var(--gap-24);
  }
  #galerie .width .swiper-container-galerie {
    width: 100%;
  }
  #fullImg .icons {
    padding-top: 20px;
    top: 290px;
  }
  #contact {
    min-height: initial;
    padding: var(--padding-horizontal);
  }
  #contact .width {
    flex-direction: column;
  }
  #contact .width .details {
    display: none;
    width: 100%;
    align-items: center;
    padding-right: 0;
    order: 1;
    margin-top: 50px;
  }
  #contact .width .details .subtitle {
    text-align: center !important;
  }
  #contact .width .details .title {
    text-align: center;
  }
  #contact .width .details .txt {
    text-align: center !important;
  }
  #contact .width .form-container {
    width: 100%;
    padding: 32px 0 0 0;
    margin-left: 0;
    justify-self: center;
    min-width: initial;
  }
  #contact .width .form-container .info-wrapper {
    flex-direction: column;
  }
  #contact .width .form-container form {
    margin-left: 0;
    display: flex;
    flex-direction: column;
    justify-self: center;
  }
  #contact .width .form-container form button.btn {
    max-width: 200px;
    margin: 50px auto 0 auto;
  }
  footer .width nav ul li {
    padding: 0 4px;
  }
}
@media only screen and (max-width: 650px) {
  :root {
    --fs-16: 16px;
    --fs-32: var(--gap-24);
    --fs-16: 16px;
    --fs-48: 24px;
    --padding-150: 100px;
    --padding-100: 70px;
  }
  #menu-btn {
    top: 30%;
  }
  #loading div.logo svg {
    max-width: 250px;
  }
  #loading.hidden div.logo {
    transform: scale(1.2);
  }
  #projet1 {
    height: auto;
  }
  footer .width nav ul {
    flex-wrap: wrap;
  }
  #accueil {
    background-image: url("imgs/vis/1-night-mobile.jpg");
  }
  #accueil .width .right {
    background-color: #b9bfcf;
  }
  #accueil .width .right .description {
    width: 100%;
  }
  #accueil .width .left {
    background-color: #b9bfcf;
  }
  #accueil .width .left .logo {
    top: 25%;
  }
  #accueil .width .left h1 {
    font-size: 30px;
  }
  #projet2 .width .left {
    height: 300px;
  }
  #galerie .width .swiper {
    height: 250px;
  }
  #galerie .width .swiper-container-galerie2 {
    bottom: -70px;
    height: 50px;
  }
  #galerie .width .swiper-container-galerie2 swiper-slide {
    height: 50px;
  }
  #galerie .width .swiper-container-galerie2 swiper-slide img {
    height: 50px;
  }
}
@media only screen and (max-width: 490px) {
  #projet {
    padding-top: 445px;
  }
  #accueil .width .right .description {
    grid-template-columns: 1fr;
    gap: 0;
    bottom: -900px;
  }
  #accueil .width .right .description li {
    width: 100%;
    text-align: center;
    padding-left: 0;
  }
  #accueil .width .right .description li::before {
    display: none;
  }
  #fullImg .icons {
    top: 330px;
  }
  #processus .width .container > div {
    width: 40%;
  }
  #budget {
    width: 100%;
  }
  #budget .table-wrapper {
    width: 100%;
  }
  #budget .table-wrapper .table {
    width: 100%;
  }
  #budget .table-wrapper .table tbody {
    width: 100%;
  }
  #budget .table-wrapper .table tbody tr {
    width: 90%;
  }
  #budget .table-wrapper .table tbody tr:first-of-type {
    position: absolute;
    width: auto;
    max-width: initial;
    width: 90%;
  }
  #budget .table-wrapper .table tbody tr:first-of-type td {
    align-items: flex-start;
    justify-content: flex-start;
    width: 100%;
    padding-top: 10px;
    padding-left: 10px;
    color: #f2f0eb;
  }
  #budget .table-wrapper .table tbody tr:first-of-type td b {
    font-size: 18px;
    color: #466174;
  }
  #budget .table-wrapper .table tbody tr:first-of-type td p.mobile {
    color: #466174;
    font-size: 18px;
    margin-bottom: 0;
  }
  #budget .table-wrapper .table tbody tr.images td {
    padding-right: 0;
    padding-left: 0px;
    padding-top: 70px;
  }
}
@media only screen and (max-width: 450px) {
  :root {
    --fs-16: 14px;
    --fs-32: var(--gap-24);
    --fs-16: 14px;
    --fs-48: 24px;
    --padding-150: 70px;
    --padding-100: 70px;
  }
  #accueil .width .right .description li {
    margin: 0;
    margin-bottom: 12px;
  }
  #accueil .width .right .description li span {
    white-space: wrap;
  }
  #accueil .width .left .logo {
    width: 200px;
  }
  .btn {
    font-size: 12px !important;
    padding: 10px 20px;
  }
  #situation2 .txt {
    font-size: 18px;
  }
  #galerie .width .swiper {
    height: 200px;
  }
}/*# sourceMappingURL=style.css.map */