@charset "UTF-8";
:root {
  --color-gradient-1: #1a2a38;
  --color-gradient-2: #223846;
  --color-gradient-3: #2b4554;
  --color-gradient-4: #335164;
  --color-gradient-5: #3a5d72;
  --color-gradient-6: #3d6273;
  --color-gradient-7: #3e5c76;
  --gradient-base:
    var(--color-gradient-1) 2%, var(--color-gradient-1) 18%,
    var(--color-gradient-1) 20%, var(--color-gradient-2) 35%,
    var(--color-gradient-3) 50%, var(--color-gradient-4) 70%,
    var(--color-gradient-5) 90%, var(--color-gradient-6) 98%;
  --gradient-1: linear-gradient(270deg, var(--gradient-base));
  --gradient-2: linear-gradient(0deg, var(--gradient-base));
  --gradient-3: linear-gradient(94deg, #fff -2%, var(--color-gradient-7) 60%);
  --blending: hard-light;
  --circle-size: 80%;
  --transition: all 0.5s;
  --transition-menu: 1s cubic-bezier(0.8, 0, 0.1, 1);
  --radius: 8px;
}

.content {
  will-change: transform;
}

.wrapper {
  will-change: transform;
}

.layer {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
}

:root {
  --font-size-title: 24px;
  --font-size-subtitle: 16px;
  --font-size-text: 16px;
  --size-gap-24: 24px;
  --size-gap-48: 48px;
  --size-gap-100: 100px;
  --padding-horizontal: 7%;
  --padding-150: 150px;
}

/***************************************************************/
/*** MAIN ******************************************************/
/***************************************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #fff;
  color: #0c1221;
  margin: auto;
}

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

b {
  font-weight: bold;
}

a {
  text-decoration: none;
  cursor: pointer;
}

li {
  list-style-type: none;
  font-family: "area-normal", sans-serif;
}

li,
p,
a,
span {
  font-family: "area-normal", sans-serif;
  font-size: var(--font-size-text);
  line-height: 1.4;
  color: #0c1221;
  font-weight: 300;
  letter-spacing: 0;
  text-align: center;
}

p {
  text-align: justify !important;
  line-height: 1.4;
}
p:not(:last-of-type) {
  margin-bottom: 28px;
}

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

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

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

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgba(62, 92, 118, 0.5);
  -webkit-transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: rgba(62, 92, 118, 0.5);
}

a[data-fancybox] {
  display: block;
  width: 100%;
  height: 100%;
}
a[data-fancybox] img {
  display: block;
  width: 100%;
  height: 100%;
}
a[data-fancybox]:focus-visible {
  outline: none;
}

.fancybox-image {
  background-color: #fff !important;
}

.fancybox-infobar * {
  color: #f2efeb;
}

.f-counter {
  display: flex;
  align-items: center;
}
.f-counter span {
  color: white;
  font-family: "area-normal", sans-serif;
}

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

.whatsapp {
  position: fixed;
  z-index: 99999;
  display: block;
  bottom: 82px;
  right: 4px;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  padding: 16px;
  background-color: #0c1221;
  transition: all 0.3s linear;
}
.whatsapp:hover img {
  animation: shake 0.5s;
  animation-iteration-count: 1;
}
@keyframes shake {
  0% {
    transform: translate(0, 0);
  }
  20% {
    transform: translate(-2px, 0);
  }
  40% {
    transform: translate(2px, 0);
  }
  60% {
    transform: translate(-2px, 0);
  }
  80% {
    transform: translate(2px, 0);
  }
  100% {
    transform: translate(0, 0);
  }
}

.section-heading .clip-text {
  display: inline-block !important;
}

.star {
  width: 50px;
  height: 50px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 40px;
}
.star img {
  -o-object-fit: contain;
  object-fit: contain;
}

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

h1 {
  font-family: "area-normal", sans-serif;
  font-weight: 300;
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #f2efeb;
  overflow: hidden;
  height: var(--font-size-title);
  white-space: nowrap;
}

h1 .letter {
  position: relative;
  opacity: 0;
  top: -5em;
  transition:
    opacity ease-in-out,
    top ease-in-out;
  font-family: "area-normal", sans-serif;
  font-weight: 300;
  font-size: var(--font-size-title);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #f2efeb;
}

h1.active .letter {
  opacity: 1;
  top: 0;
}

.title {
  font-family: "area-normal", sans-serif;
  font-size: var(--font-size-title);
  line-height: 1;
  text-align: left;
  color: #3e5c76;
  font-weight: bold;
  letter-spacing: 0;
  max-width: 15ch;
}

h2 {
  font-family: "area-normal", sans-serif;
  font-size: var(--font-size-text);
  line-height: 1;
  text-align: left;
  color: #3e5c76;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
}

.subtitle {
  font-family: "area-normal", sans-serif;
  font-size: var(--font-size-subtitle);
  line-height: 1;
  text-align: left;
  color: #3e5c76;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 12px;
}

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

/***************************************************************/
/*** BUTTON ****************************************************/
/***************************************************************/
.btn {
  color: #3e5c76;
  padding: 14px 30px;
  border: 1px solid #3e5c76;
  cursor: pointer;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-width: 120px;
  line-height: 1;
  transition: color 0.5s ease;
  height: 50px;
}
.btn span {
  font-family: "area-normal", sans-serif;
  font-size: var(--font-size-text);
  font-weight: 300;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  position: relative;
  z-index: 1;
  transition: color 0.3s ease;
  transition-delay: 0s;
}
.btn::after {
  content: "";
  position: absolute;
  right: 32px;
  top: 50%;
  width: 25px;
  transform: translateY(-50%);
  height: 25px;
  border-radius: 50%;
  background-color: #3e5c76;
  display: block;
  z-index: 0;
  opacity: 0;
  transition:
    opacity 0.3s ease,
    right 0.3s ease,
    transform 0.5s;
  transition-delay: 0s;
}
.btn:hover {
  color: #f2efeb;
}
.btn:hover span {
  color: #f2efeb;
  transition-delay: 0.2s;
}
.btn:hover::after {
  opacity: 1;
  right: 0;
  transform: scale(30);
  z-index: -1;
  transition:
    opacity 0.3s ease,
    right 0.5s 0.2s ease,
    transform 0.5s 0.2s;
}
.btn-arrow {
  position: relative;
  text-align: right;
  padding-right: 85px;
}
.btn-arrow::before {
  content: "";
  position: absolute;
  right: 32px;
  top: 50%;
  width: 25px;
  height: 25px;
  transform: translateY(-50%);
  background-image: url("imgs/icons/arrow1.svg");
  background-size: 40%;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 1;
  transition: filter 0.3s ease;
  transition-delay: 0s;
  border: 1px solid #0c1221;
  border-radius: 50%;
  padding: 6px;
  box-sizing: border-box;
}
.btn-arrow:hover::before {
  filter: brightness(0) invert(1);
  transition-delay: 0.2s;
}

/***************************************************************/
/*** HEADER ***************************************************/
/***************************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 40px 0 40px 0;
  z-index: 99;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  filter: invert(1) brightness(10);
  background: transparent;
}
header .width {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--size-gap-48);
  z-index: 10;
}
header .width.desktop {
  display: flex;
}
header .width.mobile {
  display: none;
}
header .width .left {
  width: auto;
}
header .width .left .logo {
  width: 100px;
  opacity: 1;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
}
header .width .left .logo a img {
  height: auto;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
header .width .right {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 60px;
}
header .width .right nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
}
header .width .right nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
  gap: 50px;
}
header .width .right nav ul li.contact-nav {
  display: none;
}
header .width .right nav ul li a {
  padding: 0;
  position: relative;
  color: #3e5c76;
}
header .width .right nav ul li a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0px;
  background: #3e5c76;
  height: 1px;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
}
header .width .right nav ul li a:hover::after {
  width: 100%;
  right: auto;
  left: 0;
}
header .width #contact-btn {
  margin-right: 0;
}
header .width #contact-btn .btn {
  color: #3e5c76;
  border: 1px solid #3e5c76;
}
header .width #contact-btn .btn span {
  color: #3e5c76;
}
header .width #contact-btn .btn::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  transform: translate(-50%, -50%);
  height: 25px;
  border-radius: 50%;
  background-color: #3e5c76;
  display: block;
  z-index: 0;
  opacity: 0;
  transition:
    opacity 0.5s linear,
    transform 0.5s linear;
}
header .width #contact-btn .btn:hover span {
  color: #fff;
  transition-delay: 0s;
}
header .width #contact-btn .btn:hover::after {
  opacity: 1;
  transform: scale(14);
  transition:
    opacity 0.5s linear,
    transform 0.5s linear;
}
header.active {
  padding: 24px 0 10px 0;
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  filter: none;
}
header.active .width .left .logo {
  opacity: 1;
}

#menu-btn {
  background-color: transparent;
  cursor: pointer;
  border: none;
  width: 30px;
  height: 30px;
  position: absolute;
  z-index: 100;
  display: none;
  top: 50%;
  right: var(--padding-horizontal);
  transform: translateY(-50%);
}
#menu-btn span,
#menu-btn span::before,
#menu-btn span::after {
  content: "";
  width: 30px;
  height: 1px;
  display: block;
  position: absolute;
  background-color: #0c1221;
}
#menu-btn span::before {
  top: 10px;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
}
#menu-btn span::after {
  bottom: 10px;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
}
#menu-btn.active span {
  background-color: transparent;
  width: 40px;
}
#menu-btn.active span::before {
  transform: translateY(-8px) rotate(-45deg);
  background-color: #f2efeb;
  width: 40px;
}
#menu-btn.active span::after {
  transform: translateY(12px) rotate(45deg);
  background-color: #f2efeb;
  width: 40px;
}

/***************************************************************/
/*** ACCUEIL ***************************************************/
/***************************************************************/
#accueil {
  margin: 0;
  padding: 0;
  height: 100vh;
  color: white;
  background-color: #fff;
  text-transform: uppercase;
  max-width: 1920px;
  max-height: 1920px;
  margin-left: auto;
  margin-right: auto;
}
#accueil section {
  height: 100%;
  width: 100%;
  top: 0;
  position: absolute;
  visibility: hidden;
  max-height: 1920px;
  max-width: 1920px;
  left: 50%;
  transform: translateX(-50%);
}
#accueil section .outer,
#accueil section .inner {
  width: 100%;
  height: 100%;
  overflow-y: hidden;
  display: flex;
  align-items: flex-start;
}
#accueil section .bg {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 200px;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  background-size: cover;
  background-position: center;
}
#accueil section .bg h1 {
  z-index: 2;
  font-size: 90px;
  height: 90px;
  margin-left: 0;
  margin-right: auto;
  color: #fff;
  position: relative;
  margin-bottom: 100px;
}
#accueil section .bg .clip-text {
  overflow: hidden;
}
#accueil .first .bg {
  background-image: url("imgs/vis/2.jpg?v.01");
  height: 100dvh;
  max-height: 1920px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#accueil .first .bg .width {
  z-index: 11;
}
#accueil .first .bg .width img {
  width: 30vw;
  min-width: 300px;
  height: auto;
  filter: invert(1) brightness(4);
  margin-left: auto;
  margin-right: auto;
}
#accueil .first .bg::after {
  content: "";
  position: absolute;
  position: absolute;
  inset: 0;
  top: auto;
  display: block;
  background: linear-gradient(
    180deg,
    rgba(39, 39, 39, 0) 20%,
    rgba(37, 37, 37, 0.7) 100%
  );
  height: 44%;
  width: 100%;
}

/***************************************************************/
/*** PROJET ****************************************************/
/***************************************************************/
.maincontainer {
  position: relative;
  height: 100dvh;
  overflow: hidden;
  perspective: 240px;
}
.maincontainer .width.wrapper {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
  height: 90dvh;
  align-items: center;
  justify-content: center;
  margin-top: 88px;
}
.maincontainer .width.wrapper .info {
  padding: 0 var(--padding-horizontal) 0 var(--padding-horizontal);
  width: 100%;
}
.maincontainer .width.wrapper .info img {
  border-radius: 40px;
}
.maincontainer .width.wrapper .info h2 {
  margin-bottom: 50px;
  max-width: initial;
  line-height: 1.3;
}
.maincontainer .width.wrapper .info h2.first {
  margin-bottom: 2px;
}
.maincontainer .width.wrapper .info p {
  margin-bottom: 50px;
  max-width: 64ch;
}
.maincontainer .width.wrapper .info a {
  height: 40vh;
}

#projet {
  scroll-margin-top: 100px;
  background-color: #748cab;
  background-image: url("imgs/vis/6.jpg?v.01");
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 90vw;
  height: 90dvh;
  z-index: 20;
  top: 0;
  background-position: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 40px;
}
#projet .width {
  gap: var(--size-gap-100);
  align-items: center;
  justify-content: center;
}
#projet .width .left {
  z-index: 5;
  position: relative;
  width: calc(50% - var(--size-gap-100) / 2);
}
#projet .width .left .subtitle {
  color: #3e5c76;
  font-weight: 400;
}
#projet .width .left .title {
  font-size: var(--font-size-title);
  color: #3e5c76;
  font-weight: 600;
}
#projet .width .right {
  position: relative;
  z-index: 1;
}
#projet .width .right p {
  max-width: 51ch;
  font-size: var(--font-size-text);
  color: #3e5c76;
  font-weight: 400;
}
#projet .width .right .btn {
  margin-top: 50px;
  color: #f2efeb;
  border-color: #3e5c76;
  background-color: #3e5c76;
}
#projet .width .right .btn span {
  color: #f2efeb;
  font-weight: 400;
}
#projet .width .right .btn::before {
  border-color: #f2efeb;
  background-image: url("imgs/icons/arrow-white.svg");
}
#projet .width .right .btn:hover span {
  color: #3e5c76;
}
#projet .width .right .btn:hover::before {
  filter: none;
  border-color: #3e5c76;
  background-image: url("imgs/icons/arrow1.svg");
}
#projet .width .right .btn:hover::after {
  background-color: #fff;
  z-index: 0;
}

#architecture {
  top: 0;
  position: absolute;
  height: 100%;
  z-index: 22;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  scroll-margin-top: 100px;
  background-color: #3e5c76;
  width: 90vw;
  border-radius: 40px;
  overflow: hidden;
}
#architecture .left {
  width: 50%;
  height: 100%;
  order: -1;
}
#architecture .left a {
  height: 100%;
  overflow: hidden;
}
#architecture .left a img {
  height: 100%;
}
#architecture .left .title {
  margin-bottom: 50px;
}
#architecture .left p {
  max-width: 51ch;
}
#architecture .left .btn {
  margin-top: 60px;
}
#architecture .right {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  margin: 0;
  padding-left: 5%;
  padding-right: 5%;
  padding-top: 50px;
  margin-top: -60px;
}
#architecture .right * {
  color: #f2efeb;
}
#architecture .right ul li {
  list-style: disc;
  margin-left: 32px;
  text-align: left;
  line-height: 1.4;
}
#architecture .right a {
  height: 100%;
  overflow: hidden;
}
#architecture .right a img {
  height: 100%;
}
#architecture .right .title {
  margin-bottom: 50px;
  max-width: 28ch;
  line-height: 1.3;
}
#architecture .right p {
  max-width: 51ch;
}
#architecture .right .btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 60px;
}
#architecture .right .btns .btn:last-of-type {
  background-color: #0c1221;
}
#architecture .right .btns .btn:last-of-type span {
  color: #fff;
}
#architecture .right .btns .btn:last-of-type::before {
  background-image: url(imgs/icons/arrow-white.svg);
  border-color: #fff;
}
#architecture .right .btns .btn:last-of-type::after {
  background-color: #fff;
}
#architecture .right .btns .btn:last-of-type:hover span {
  color: #0c1221;
}
#architecture .right .btns .btn:last-of-type:hover::before {
  background-image: url(imgs/icons/arrow1.svg);
  border-color: #0c1221;
  filter: none;
}

#architecture1 {
  top: 0;
  position: absolute;
  height: 100%;
  z-index: 21;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  scroll-margin-top: 100px;
  background-color: #3e5c76;
  width: 90vw;
  height: 90dvh;
  border-radius: 40px;
  overflow: hidden;
}
#architecture1 .left {
  width: 50%;
  height: 100%;
}
#architecture1 .left a {
  height: 100%;
  overflow: hidden;
}
#architecture1 .left a img {
  height: 100%;
}
#architecture1 .left .title {
  margin-bottom: 50px;
  max-width: 14ch;
}
#architecture1 .left p {
  max-width: 51ch;
}
#architecture1 .left .btn {
  margin-top: 60px;
}
#architecture1 .right {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  margin: 0;
  padding-left: var(--padding-horizontal);
  padding-right: var(--padding-horizontal);
}
#architecture1 .right * {
  color: #f2efeb;
}
#architecture1 .right ul li {
  list-style: disc;
  margin-left: 32px;
}
#architecture1 .right a {
  height: 100%;
  overflow: hidden;
}
#architecture1 .right a img {
  height: 100%;
}
#architecture1 .right .title {
  margin-bottom: 50px;
  max-width: 14ch;
}
#architecture1 .right p {
  max-width: 51ch;
}
#architecture1 .right .btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 60px;
}
#architecture1 .right .btns .btn:last-of-type {
  background-color: #0c1221;
}
#architecture1 .right .btns .btn:last-of-type span {
  color: #fff;
}
#architecture1 .right .btns .btn:last-of-type::before {
  background-image: url(imgs/icons/arrow-white.svg);
  border-color: #fff;
}
#architecture1 .right .btns .btn:last-of-type::after {
  background-color: #fff;
}
#architecture1 .right .btns .btn:last-of-type:hover span {
  color: #0c1221;
}
#architecture1 .right .btns .btn:last-of-type:hover::before {
  background-image: url(imgs/icons/arrow1.svg);
  border-color: #0c1221;
  filter: none;
}

#services {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  background-color: #748cab;
  position: relative;
  z-index: 3;
  height: 100dvh;
}
#services .left {
  width: 40%;
}
#services .left a {
  overflow: hidden;
}
#services .left a img {
  height: 100%;
}
#services .right {
  width: 55%;
  padding: var(--padding-150) var(--padding-horizontal) var(--padding-150)
    var(--size-gap-100);
}
#services .right ul {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 60px;
  flex-wrap: wrap;
  margin-bottom: 0;
}
#services .right ul li {
  text-align: left;
  width: calc(50% - 30px);
  position: relative;
}
#services .right ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #3e5c76;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
#services .right ul li span {
  font-weight: bold;
  color: #3e5c76;
}
#services .title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  color: #3e5c76;
  max-width: initial;
}

#appartements {
  margin-top: var(--padding-150);
  position: relative;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  gap: var(--size-gap-100);
  margin-left: auto;
  margin-right: auto;
  height: 100dvh;
  scroll-margin-top: 100px;
  background-color: #3e5c76;
}
#appartements .width {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  padding-right: var(--padding-horizontal);
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  margin: 0;
  width: 100%;
  flex-direction: row;
}
#appartements .width .left {
  width: 48%;
}

#appartements .width .left p {
  margin-top: 30px;
}
#appartements .width .left .btn {
  border-color: #f2efeb;
  margin-top: 50px;
  text-transform: uppercase;
}
#appartements .width .left .btn::before {
  border-color: #f2efeb;
  background-color: #f2efeb;
}
#appartements .width .left .btn::after {
  border-color: #f2efeb;
  background-color: #f2efeb;
}
#appartements .width .left .btn:hover span {
  color: #3e5c76;
}
#appartements .width .left .btn:hover::before {
  content: url();
  border-color: #3e5c76;
  filter: none;
}
#appartements .width .left .subtitle,
#appartements .width .left .title {
  text-align: left;
  margin-left: auto;
  margin-right: auto;
}
#appartements .width .left * {
  color: #f2efeb;
}
#appartements .width .left .prix {
  width: 100%;
}
#appartements .width .left .prix .wrapper {
  width: 100%;
  overflow-x: auto;
}
#appartements .width .left .prix .wrapper table {
  border-collapse: collapse;
  width: 100%;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 40px;
}
#appartements .width .left .prix .wrapper table thead tr th {
  background-color: rgba(116, 140, 171, 0.3);
  color: #f2efeb;
  border-left: 1px solid #748cab;
  border-right: 1px solid #748cab;
  padding: 10px;
  font-family: "area-normal", sans-serif;
  font-weight: 300;
  font-size: var(--font-size-text);
}
#appartements .width .left .prix .wrapper table thead tr th span {
  color: #f2efeb;
  font-size: var(--font-size-text);
}
#appartements .width .left .prix .wrapper table thead tr th:first-of-type {
  border-left: none;
}
#appartements .width .left .prix .wrapper table thead tr th:last-of-type {
  border-right: none;
}
#appartements .width .left .prix .wrapper table tbody tr td {
  text-align: center;
  border-top: 1px solid #748cab;
  padding: 10px;
  font-family: "area-normal", sans-serif;
  position: relative;
  font-size: var(--font-size-text);
}
#appartements .width .left .prix .wrapper table tbody tr td:not(:last-of-type) {
  border-right: 1px solid #748cab;
}
#appartements .width .left .prix .wrapper table tbody tr td img {
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
  object-fit: contain;
  margin-left: auto;
  margin-right: auto;
}
#appartements .width .left .prix .wrapper table tbody tr a.link {
  position: absolute;
  inset: 0;
  z-index: 2;
  height: 100%;
  width: 100%;
}
#appartements .width .left .prix .wrapper table tbody tr:hover {
  background-color: rgba(116, 140, 171, 0.2);
}
#appartements .width .left .title {
  margin-bottom: 50px;
  max-width: initial;
}
#appartements .width .left p {
  max-width: 51ch;
}
#appartements .width .left .btns {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 50px;
  flex-wrap: wrap;
  margin-top: 60px;
}
#appartements .width .left .btns .btn:last-of-type {
  background-color: #0c1221;
}
#appartements .width .left .btns .btn:last-of-type span {
  color: #fff;
}
#appartements .width .left .btns .btn:last-of-type::before {
  background-image: url(imgs/icons/arrow-white.svg);
  border-color: #fff;
}
#appartements .width .left .btns .btn:last-of-type::after {
  background-color: #fff;
}
#appartements .width .left .btns .btn:last-of-type:hover span {
  color: #0c1221;
}
#appartements .width .left .btns .btn:last-of-type:hover::before {
  background-image: url(imgs/icons/arrow1.svg);
  border-color: #0c1221;
  filter: none;
}
#appartements .width .right {
  width: 48%;
  border-radius: 40px;
  overflow: hidden;
}

/***************************************************************/
/*** SITUATION ***************************************************/
/***************************************************************/
#situation {
  max-width: 1920px;
  margin: 0 auto;
  scroll-margin-top: 100px;
  padding-top: var(--padding-150);
  padding-bottom: var(--padding-150);
  height: 200%;
}
#situation .width {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--size-gap-100);
  width: 100%;
}
#situation .width .title {
  max-width: initial;
  margin-bottom: 50px;
  max-width: 30ch;
}
#situation .width .title.first {
  margin-bottom: 6px;
}
#situation .width p {
  max-width: 64ch;
  margin-bottom: 32px;
}
#situation .width ul {
  margin-left: 32px;
  margin-bottom: 24px;
  max-width: 77ch;
}
#situation .width ul li {
  list-style: disc;
  text-align: left;
}
#situation .width .btn {
  margin-bottom: 100px;
  width: -moz-max-content;
  width: max-content;
}
#situation .width #map-container {
  display: flex;
  gap: 24px;
}
#situation .width #map-container a {
  transform-origin: top center;
}
#situation .width #map-container a img {
  -o-object-fit: contain;
  object-fit: contain;
  border-radius: 40px;
}

#situation1 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  margin-bottom: var(--padding-150);
}
#situation1 .width {
  flex-direction: column;
}
#situation1 .width .title {
  margin-bottom: 50px;
  max-width: initial;
}
#situation1 .width p {
  margin-bottom: 100px;
  max-width: 64ch;
}
#situation1 .width ul {
  margin-left: 32px;
  margin-bottom: 50px;
}
#situation1 .width ul li {
  list-style: disc;
  text-align: left;
}

#appartements2 {
  margin-bottom: var(--padding-150);
  margin-top: var(--padding-150);
}
#appartements2 .accordion {
  display: flex;
  gap: 20px;
  width: 100%;
}
#appartements2 .accordion__col {
  position: relative;
  z-index: 1;
  height: 82vh;
  max-height: 800px;
  overflow: hidden;
  border-radius: 16px;
  display: flex;
  flex: 1;
  align-items: center;
  min-width: 210px;
  cursor: pointer;
  transition: all 1s;
}
#appartements2 .accordion__col .accordion__bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  transition: all 1s;
}
#appartements2 .accordion__col .accordion__bg img {
  display: block;
}
#appartements2 .accordion__col .accordion__bg::after {
  content: "";
  position: absolute;
  inset: 0;
}
#appartements2 .accordion__col .accordion__bg [data-parallax-target] {
  height: 120%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  inset: 0;
  top: -10%;
  transform-origin: 50% 50%;
}
#appartements2 .accordion__col .accordion__start {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  position: absolute;
  inset: 0;
  color: #f2efeb;
  text-shadow: 1px 1px 10px #0c1221;
  font-family: "area-normal", sans-serif;
  font-size: var(--font-size-title);
  transition: var(--transition);
  transition-delay: 0.3s;
  padding-left: 24px;
  padding-right: 24px;
}
#appartements2 .accordion__col .accordion__content {
  padding: 0 5%;
}
#appartements2 .accordion__col .accordion__content .accordion__header {
  overflow: hidden;
  margin-bottom: 24px;
  padding-bottom: 10px;
}
#appartements2 .accordion__col .accordion__content .accordion__header h2 {
  font-weight: 300;
  font-size: 50px;
  line-height: 92%;
  padding-bottom: 10px;
  margin-bottom: -10px;
  background: white;
  text-shadow: 1px 1px 6px #f2efeb;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
  display: inline-block;
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 130%) rotate(10deg);
  transition: var(--transition);
  transition-duration: 1s;
}
#appartements2 .accordion__col .accordion__content .accordion__description {
  max-width: 380px;
  font-weight: 400;
  color: #f2efeb;
  font-family: "area-normal", sans-serif;
  font-size: var(--font-size-text);
  opacity: 0;
  transform: translate(0, 20%);
  transition: var(--transition);
  transition-duration: 1s;
  font-kerning: none;
}
#appartements2 .accordion__col.active {
  width: 100%;
  flex: 3;
}
#appartements2 .accordion__col.active .accordion__start {
  opacity: 0;
  transition-delay: 0.1s;
}
#appartements2 .accordion__col.active .accordion__header h2 {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0) rotate(0);
}
#appartements2 .accordion__col.active .accordion__description {
  opacity: 0.8;
  transform: translate(0, 0);
  transition: var(--transition);
}

#situation2 {
  padding-top: 250px;
  padding-bottom: var(--padding-150);
  z-index: 5;
  position: relative;
}
#situation2 .width {
  display: flex;
  flex-direction: column;
}
#situation2 .width .title {
  max-width: initial;
  margin-bottom: 50px;
}
#situation2 .width ul {
  display: flex;
  gap: 10px;
}
#situation2 .width ul li {
  position: relative;
  height: 300px;
  flex: 1;
  padding: 16px;
  border: 1px solid #3e5c76;
  border-radius: 16px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  overflow: hidden;
}
#situation2 .width ul li .data {
  display: flex;
  gap: 2px;
  align-items: flex-start;
  justify-content: flex-start;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
}
#situation2 .width ul li .data .number {
  font-size: var(--font-size-title);
  font-family: "area-normal", sans-serif;
  line-height: 1;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  color: #3e5c76;
}
#situation2 .width ul li .data .value {
  font-size: 14px;
  text-transform: uppercase;
  font-family: "area-normal", sans-serif;
  line-height: 1;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  text-align: left;
  color: #3e5c76;
}
#situation2 .width ul li .description {
  font-size: var(--font-size-text);
  font-family: "area-normal", sans-serif;
  color: #3e5c76;
  text-align: left;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
}
#situation2 .width ul li .background {
  position: absolute;
  inset: 0;
  z-index: 0;
  clip-path: circle(0% at 50% 50%);
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
}
#situation2 .width ul li:hover .data {
  z-index: 10;
}
#situation2 .width ul li:hover .data .number {
  color: #f2efeb;
}
#situation2 .width ul li:hover .data .value {
  color: #f2efeb;
}
#situation2 .width ul li:hover .description {
  color: #f2efeb;
  z-index: 10;
}
#situation2 .width ul li:hover .background {
  clip-path: circle(70.7% at 50% 50%);
  transform: scale(1.3);
}

/***************************************************************/
/*** ICONS ***************************************************/
/***************************************************************/
#icons {
  padding-top: var(--padding-150);
  padding-bottom: var(--padding-150);
  margin-top: var(--padding-150);
  background-color: #0c1221;
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
#icons .width {
  display: flex;
  flex-direction: column;
}
#icons .width .subtitle {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  margin-bottom: 0;
  max-width: 98ch;
  margin-bottom: 50px;
  line-height: 1.4;
  color: #fff;
}
#icons .width .title {
  margin-bottom: 88px;
  margin-left: auto;
  margin-right: auto;
  color: #fff;
}
#icons .width ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 80px;
}
#icons .width ul li {
  width: 26%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}
#icons .width ul li .icon {
  width: 75px;
  height: 75px;
  margin-bottom: 50px;
}
#icons .width ul li.animation .icon svg path,
#icons .width ul li.animation .icon svg circle {
  stroke-dasharray: 150px;
  stroke-dashoffset: 150px;
  stroke-width: 1;
  fill: transparent;
  transition:
    stroke-dashoffset 1.5s ease-in,
    stroke-width 0.3s 1.5s;
}
#icons .width ul li.isAnimated .icon svg path,
#icons .width ul li.isAnimated .icon svg circle {
  stroke-dashoffset: 0;
  stroke-width: 1;
}
#icons .width ul li .info {
  font-family: "area-normal", sans-serif;
  font-weight: 700;
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0;
  text-align: center;
  margin-bottom: 12px;
  color: #fff;
}
#icons .width ul li .description {
  font-family: "area-normal", sans-serif;
  font-weight: 300;
  font-size: var(--font-size-text);
  line-height: 1.4;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  max-width: 37ch;
}

/***************************************************************/
/*** galerie ***************************************************/
/***************************************************************/
.content {
  will-change: transform;
}

#galerie {
  height: 100vh;
  min-height: 1080px;
  width: 100vw;
  max-width: 1920px;
  position: relative;
  margin-left: auto;
  margin-right: auto;
  padding: 5%;
  margin-top: var(--padding-150);
}
#galerie .head-text {
  position: absolute;
  top: -10%;
  left: -35%;
  width: 100%;
  height: 100%;
  display: flex;
  font-family: "area-normal", sans-serif;
  align-items: center;
  justify-content: center;
  font-size: calc(var(--font-size-title) * 1.5);
  text-align: center;
  line-height: 1;
  z-index: 10;
  pointer-events: none;
  color: #3e5c76;
  text-shadow: 1px 1px #f2efeb;
}
#galerie .head-text h2 {
  font-size: calc(var(--font-size-title) * 2);
}
#galerie .card {
  position: absolute;
  border-radius: 16px;
  opacity: 1;
  cursor: pointer;
  transition:
    opacity 0.3s ease,
    transform 0.75s ease-out;
}
#galerie .card img {
  width: 100%;
  transition:
    opacity 0.3s ease,
    transform 0.75s ease-out;
  border-radius: 16px;
}
#galerie .card:hover {
  opacity: 1;
}
#galerie .card:hover img {
  transform: translateY(-20px);
}
#galerie .card h3 {
  text-transform: uppercase;
  font-size: 14px;
  margin-top: 8px;
  margin-bottom: 2.5px;
  font-family: "area-normal", sans-serif;
  font-weight: 400;
}
#galerie .card p {
  padding: 0;
  font-size: 11px;
  font-family: "area-normal", sans-serif;
}

/***************************************************************/
/*** CONTACT ****************************************************/
/***************************************************************/
#contact {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  color: #f2efeb;
  padding: var(--padding-150) 0 0 0;
  background-color: #fff;
  scroll-margin-top: 100px;
  border-top: 1px solid #0c1221;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
}
#contact .width:first-of-type {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  margin-bottom: var(--padding-150);
}
#contact .width:first-of-type .logo-small {
  width: 110px;
  height: 110px;
  margin-bottom: 80px;
}
#contact .width:first-of-type .logo-small img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#contact .width:first-of-type img {
  width: 250px;
}
#contact .width:first-of-type .subtitle:before {
  margin: 0 auto 10px auto;
}
#contact .width:first-of-type .title {
  margin-bottom: var(--size-gap-100);
  text-align: center;
  max-width: initial;
  width: 100%;
}
#contact .width:first-of-type .title span {
  display: inline;
}
#contact .width:first-of-type .title::before {
  display: none;
}
#contact .width:first-of-type .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#contact .width:first-of-type .container .left {
  width: 45%;
  text-align: center;
}
#contact .width:first-of-type .container .left .partners {
  display: flex;
  gap: 50px;
}
#contact .width:first-of-type .container .left .partners .partner {
  flex: 1;
}
#contact .width:first-of-type .container .left .partners .partner h2 {
  text-align: center;
  height: 40px;
}
#contact .width:first-of-type .container .left .partners .partner .logo {
  display: block;
  width: 233px;
  height: 80px;
  margin: 0 auto 50px auto;
}
#contact .width:first-of-type .container .left .partners .partner .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#contact
  .width:first-of-type
  .container
  .left
  .partners
  .partner
  p.acteur-title {
  text-transform: uppercase;
  font-weight: 300 !important;
  font-size: 16px;
  font-weight: bold;
  line-height: 17.5px;
  letter-spacing: 2px;
  margin-bottom: 40px;
}
#contact
  .width:first-of-type
  .container
  .left
  .partners
  .partner
  p.acteur-name {
  margin-bottom: 32px;
}
#contact .width:first-of-type .container .left .partners .partner p {
  font-weight: 300;
  letter-spacing: 0px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  display: block;
}
#contact .width:first-of-type .container .left .partners .partner a {
  font-size: 17px;
  letter-spacing: 0px;
  margin-bottom: 3px;
  text-align: center;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  display: block;
}
#contact .width:first-of-type .container .left .partners .partner a:hover {
  color: #3e5c76;
}
#contact .width:first-of-type .container .left .partners .partner .img {
  width: 180px;
  height: 180px;
  text-align: center;
  display: block;
  margin: 40px auto 40px auto;
}
#contact .width:first-of-type .container form {
  width: 42%;
}
#contact .width:first-of-type .container form .form-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#contact .width:first-of-type .container form .form-flex div {
  width: 100%;
}
#contact .width:first-of-type .container form .form-flex textarea {
  min-height: 48px;
}
#contact
  .width:first-of-type
  .container
  form
  .form-flex
  input:not([type="submit"]),
#contact .width:first-of-type .container form .form-flex textarea {
  background: #fff;
  outline: none;
  border-bottom: 1px solid #3e5c76;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  font-size: 14px;
  text-align: left;
  color: #0c1221;
  font-family: "area-normal", sans-serif;
  font-weight: 300;
  padding: 14px;
  width: 100%;
  margin-bottom: 30px;
  width: 100%;
}
#contact
  .width:first-of-type
  .container
  form
  .form-flex
  input:not([type="submit"])::-moz-placeholder,
#contact
  .width:first-of-type
  .container
  form
  .form-flex
  textarea::-moz-placeholder {
  font-family: "area-normal", sans-serif;
  color: #0c1221;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
}
#contact
  .width:first-of-type
  .container
  form
  .form-flex
  input:not([type="submit"])::placeholder,
#contact .width:first-of-type .container form .form-flex textarea::placeholder {
  font-family: "area-normal", sans-serif;
  color: #0c1221;
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
}
#contact .width:first-of-type .container form #submit {
  margin-top: 0;
  margin-left: 0;
  margin-right: auto;
  border: 1px solid #3e5c76;
  background-color: #fff;
  display: block;
  height: 55px;
  border-radius: 26px;
}
#contact .width:first-of-type .container form #submit span {
  color: #3e5c76;
}
#contact .width:first-of-type .container form #submit::before {
  background-image: url(imgs/icons/arrow1.svg);
  border-color: #3e5c76;
}
#contact .width:first-of-type .container form #submit:after {
  background-color: #3e5c76;
}
#contact .width:first-of-type .container form #submit:hover::before {
  background-image: url(imgs/icons/arrow-white.svg);
  border-color: #fff;
  z-index: 3;
}
#contact .width:first-of-type .container form #submit:hover::after {
  background-color: #3e5c76;
  z-index: 2;
}
#contact .width:first-of-type .container form #submit:hover span {
  color: #fff;
  z-index: 3;
}
#contact .width:last-of-type {
  align-items: center;
  justify-content: center;
  padding: 50px var(--padding-horizontal);
  background-color: #3e5c76;
  display: flex;
  align-items: center;
  justify-content: space-between;
  display: none;
}
#contact .width:last-of-type .footer {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#contact .width:last-of-type .footer:first-of-type img {
  width: 150px;
}
#contact .width:last-of-type .footer:nth-of-type(2) {
  flex-direction: column;
}
#contact .width:last-of-type .footer:nth-of-type(2) p,
#contact .width:last-of-type .footer:nth-of-type(2) a {
  text-align: center;
  margin-bottom: 0;
  font-size: 14px;
}

#contact .width:last-of-type .footer:last-of-type {
  justify-content: flex-end;
}
#contact .width:last-of-type .footer * {
  color: #fff;
}

/***************************************************************/
/*** MEDIA ***************************************************/
/***************************************************************/
@media only screen and (max-width: 1600px) {
  #appartements {
    height: auto;
  }

  #appartements .width {
    padding-top: 100px;
    padding-bottom: 100px;
  }

  #appartements .width .left {
    width: 58%;
  }

  #appartements .width .right {
    width: 40%;
  }
}

@media only screen and (max-width: 1200px) {
  :root {
    --size-gap-24: 24px;
    --size-gap-48: 48px;
    --size-gap-100: 70px;
    --padding-150: 100px;
  }
  #contact .width:first-of-type .container .left .partners {
    flex-direction: column;
  }
  #contact .width:first-of-type .container .left .partners .partner {
    width: 100%;
  }

  #contact .width:last-of-type .footer:first-of-type img {
    width: 120px;
  }

  /* #contact .width:last-of-type .footer:last-of-type img {
    width: 220px;
  } */

  #appartements .width {
    flex-wrap: wrap;
  }

  #appartements .width .left,
  #appartements .width .right {
    width: 100%;
  }

  #appartements .width .left {
    margin-bottom: 40px;
  }

  #appartements {
    height: auto;
  }
}
@media only screen and (max-width: 992px) {
  :root {
    --size-gap-24: 24px;
    --size-gap-48: 48px;
    --size-gap-100: 70px;
    --padding-150: 100px;
    --font-size-title: 18px;
    --font-size-subtitle: 14px;
    --font-size-text: 16px;
  }
  header {
    filter: none;
  }
  header.active {
    backdrop-filter: initial;
  }
  header .width #contact-btn {
    display: none;
  }
  header .width.desktop {
    display: none;
  }
  header .width.mobile {
    display: flex;
  }
  header .width.mobile .header-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 20px;
    pointer-events: none;
    z-index: 100;
    transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  }
  header .width.mobile .top-line {
    display: flex;
    gap: 50px;
    justify-content: space-between;
    width: 100%;
  }
  header .width.mobile .top-line__left {
    width: 80px;
    display: flex;
    align-items: center;
  }
  header .width.mobile .top-line__right {
    width: 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
  }
  header .width.mobile p {
    text-align: left !important;
  }
  header .width.mobile .top-mnu {
    background: rgba(255, 255, 255, 0.4);
    border-radius: 16px;
    padding: 4px;
    backdrop-filter: blur(15px);
    transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  }
  header .width.mobile .top-mnu ul {
    display: flex;
    gap: 2px;
  }
  header .width.mobile .top-mnu a {
    position: relative;
    font-size: 16px;
    line-height: 120%;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 17.5px;
    border-radius: 16px;
    min-width: 100px;
  }
  header .width.mobile .top-mnu a::before {
    content: "";
    position: absolute;
    inset: 0;
    background-color: rgba(255, 255, 255, 0.05);
    transform: scaleX(0.925);
    transition: var(--transition);
    opacity: 0;
    border-radius: 16px;
  }
  header .width.mobile .top-mnu::after {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    content: attr(data-text);
    opacity: 0;
    transition: var(--transition);
  }
  header .width.mobile .top-mnu a:hover::before {
    opacity: 1;
    transform: scaleX(1);
  }
  header .width.mobile .top-mnu a:hover::after {
    opacity: 0.5;
  }
  header .width.mobile .logo,
  header .width.mobile .top-mnu,
  header .width.mobile .mnu-button {
    pointer-events: auto;
  }
  header .width.mobile .main-menu {
    opacity: 0;
    visibility: hidden;
    position: fixed;
    top: 10px;
    right: 10px;
    bottom: 10px;
    z-index: 7;
    width: 95%;
    max-width: 600px;
    overflow-y: auto;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(30px);
    transform-origin: right top;
    border-radius: 10px;
    pointer-events: auto;
    transform: scale(0) translate(0, 0) rotate(0.001deg);
    transition: var(--transition-menu);
  }
  header .width.mobile .main-menu.active {
    transform: scale(1) translate(0, 0) rotate(0.001deg);
    opacity: 1;
    visibility: visible;
    height: 100vh;
    filter: none !important;
  }
  header .width.mobile .main-menu__inner {
    padding: 76px 40px 80px;
    display: flex;
    gap: 50px;
    min-height: 100%;
    flex-direction: column;
    justify-content: center;
    background-color: rgba(62, 92, 118, 0.5);
  }
  header .width.mobile .main-menu__inner li {
    position: relative;
  }
  header .width.mobile .main-menu__inner li a {
    font-size: 32px;
    font-weight: 300;
    line-height: 143%;
    opacity: 1;
    display: block;
    position: relative;
    color: #f2efeb;
    transition: var(--transition);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
    width: -moz-max-content;
    width: max-content;
    margin-right: auto;
    margin-left: auto;
    padding: 0 24px;
  }
  header .width.mobile .main-menu__inner a span {
    content: "";
    position: absolute;
    left: 0;
    bottom: -1px;
    height: 1px;
    width: 100%;
    transform-origin: right;
    transform: scaleX(0);
    transition: transform 0.5s;
    background: var(--gradient-1);
    opacity: 0.3;
  }
  header .width.mobile .main-menu__inner a::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    background: var(--gradient-1);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    z-index: 1;
    transition: var(--transition);
  }
  header .width.mobile .main-menu__inner li a:hover {
    opacity: 1;
    border-bottom: 1px solid #3e5c76;
  }
  header .width.mobile .main-menu__inner li a:hover span {
    transform-origin: left;
    transform: scaleX(1);
  }
  header .width.mobile .mnu-button__menu {
    width: 40px;
    height: 40px;
    background: #3e5c76;
    border-radius: 16px;
    border: none;
    cursor: pointer;
    z-index: 10;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
    backdrop-filter: blur(15px);
  }
  header .width.mobile .mnu-button__menu span {
    width: 22px;
    height: 2px;
    background: #fff;
    display: block;
    border-radius: 16px;
    transition: var(--transition-menu);
  }
  header .width.mobile .mnu-button__menu:hover span:first-child {
    transform: translateY(1px);
  }
  header .width.mobile .mnu-button__menu:hover span:last-child {
    transform: translateY(-1px);
  }
  header .width.mobile .mnu-button__menu::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--gradient-2);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
    transition: var(--transition);
  }
  header .width.mobile .mnu-button__menu:hover::after {
    opacity: 1;
  }
  header .width.mobile .mnu-button__menu.active span:first-child {
    transform: translateY(3px) rotate(45deg);
  }
  header .width.mobile .mnu-button__menu.active span:last-child {
    transform: translateY(-4px) rotate(-46deg);
  }
  header .width.mobile .main-menu-background {
    position: fixed;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 5;
    pointer-events: auto;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-menu);
  }
  header .width.mobile .main-menu-background.active {
    opacity: 1;
    visibility: visible;
  }
  header .width .right nav {
    transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
    position: fixed;
    top: -120%;
    left: 0;
    background-color: #0c1221;
    padding: 10%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 100dvh;
  }
  header .width .right nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 24px;
  }
  header .width .right nav ul li {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
    margin-bottom: 0;
  }
  header .width .right nav ul li a {
    font-size: 20px;
    color: #f2efeb;
    margin-bottom: 0;
  }
  header .width .right nav ul li a::after {
    background-color: #f2efeb;
  }
  header .width .right nav ul li.contact-nav {
    display: block;
  }
  header .width .right nav.active {
    top: 0;
    left: 0;
    transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  }
  .title {
    margin-bottom: 32px;
  }

  #contact .width:last-of-type {
    flex-direction: column;
    gap: 16px;
  }

  #contact .width:last-of-type .footer:nth-of-type(2) {
    order: 1;

    br {
      display: none;
    }
  }

  #accueil section .bg h1 {
    font-size: 50px;
  }
  .maincontainer {
    display: flex;
    align-items: center;
    justify-content: center;
    height: auto;
  }
  .maincontainer .width.wrapper {
    height: auto;
  }
  .maincontainer .width.wrapper .info {
    z-index: 22;
    padding-bottom: var(--padding-150);
    background-color: #fff;
  }
  .maincontainer .width.wrapper .info h2 {
    margin-bottom: 32px;
  }
  .maincontainer .width.wrapper .info p {
    max-width: initial;
  }
  #projet {
    position: static;
    height: 500px;
    padding-top: var(--padding-150);
    padding-bottom: var(--padding-150);
    width: 100vw;
  }
  #projet .width {
    flex-direction: column;
    gap: 32px;
    align-items: flex-start;
  }
  #projet .width .left {
    width: 100%;
  }
  #projet .width .left .title {
    margin-bottom: 0;
  }
  #projet .width .right {
    width: 100%;
  }
  #projet .width .right p {
    max-width: initial;
  }
  #architecture {
    position: static;
    flex-direction: column;
    padding-top: var(--padding-150);
    height: auto;
    width: 100vw;
  }
  #architecture .left {
    width: 100%;
    order: 1;
  }
  #architecture .right {
    width: 100%;
    padding-bottom: var(--padding-150);
  }
  #architecture1 {
    position: static;
    height: auto;
    flex-direction: column;
    padding-top: var(--padding-150);
    width: 100vw;
    margin-top: var(--padding-150);
    margin-bottom: var(--padding-150);
  }
  #architecture1 .left {
    width: 100%;
  }
  #architecture1 .right {
    width: 100%;
    padding-bottom: var(--padding-150);
  }
  #situation .width {
    margin-bottom: 0px;
  }
  #situation .width p {
    margin-bottom: 50px;
  }
  #situation .width #map-container {
    height: 450px;
    margin-left: -4%;
    margin-right: -4%;
    gap: 6px;
    margin-bottom: 50px;
  }
  #situation .width #map-container a {
    height: auto !important;
  }
  #situation .width #map-container a img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  #appartements2 .accordion {
    flex-direction: column;
    height: 1060px;
  }
  #appartements2 .accordion .accordion__col {
    flex: 2;
  }
  #appartements2 .accordion .accordion__col.active {
    flex: 3;
  }
  #appartements2 .accordion .accordion__col .accordion__content {
    padding: 24px;
  }
  #appartements2
    .accordion
    .accordion__col
    .accordion__content
    .accordion__header
    h2 {
    font-size: 30px;
  }
  #situation1 .width p {
    margin-bottom: 50px;
  }
  #situation2 {
    padding-top: 0;
  }
  #situation2 .width ul {
    flex-wrap: wrap;
  }
  #situation2 .width ul li {
    flex: auto;
    width: 47%;
    height: 200px;
  }
  #appartements {
    height: auto;
    padding-top: var(--padding-150);
    padding-bottom: var(--padding-150);
  }
  #appartements .width {
    flex-direction: column;
    gap: 50px;
  }
  #appartements .width .left {
    width: 100%;
  }
  #appartements .width .left .prix .wrapper table thead tr th {
    font-size: 14px;
  }
  #appartements .width .left .prix .wrapper table thead tr th span {
    font-size: 12px;
  }
  #appartements .width .left .prix .wrapper table tbody tr td {
    font-size: 14px;
  }
  #appartements .width .right {
    width: 100%;
  }
  #galerie {
    height: 600px;
    min-height: initial;
  }
  .head-text {
    font-size: 32px;
  }
  .card h3 {
    font-size: 12px;
  }
  #contact .width:first-of-type .title {
    margin-left: auto;
    margin-right: auto;
  }
  #contact .width:first-of-type .container {
    flex-direction: column;
    gap: 50px;
  }
  #contact .width:first-of-type .container .left {
    width: 100%;
  }
  #contact .width:first-of-type .container .left .partners {
    flex-direction: row;
  }
  #contact .width:first-of-type .container form {
    width: 100%;
  }
  #contact .width:first-of-type .container form #submit {
    margin-left: auto;
  }
}
@media only screen and (max-width: 768px) {
  :root {
    --size-gap-24: 24px;
    --size-gap-48: 48px;
    --size-gap-100: 70px;
    --padding-150: 80px;
  }
  #contact .width:first-of-type .container .left .partners {
    flex-direction: column;
  }
  #contact
    .width:first-of-type
    .container
    .left
    .partners
    .partner:first-of-type {
    order: 1;
  }
  #contact .width:last-of-type {
    flex-direction: column;
  }
  #contact .width:last-of-type .footer {
    margin-top: 24px;
  }
  #contact .width:last-of-type .footer:nth-of-type(2) p {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #galerie .head-text {
    font-size: 28px;
  }
  #galerie .card h3 {
    display: none;
  }

  #appartements .width {
    padding-top: 20px;
    padding-bottom: 20px;
  }
}

@media only screen and (max-width: 625px) {
  #appartements .width .left .prix .wrapper table tbody tr td,
  #appartements .width .left .prix .wrapper table tbody tr td {
    padding: 5px 3px;
  }
}

@media only screen and (max-width: 576px) {
  :root {
    --size-gap-24: 24px;
    --size-gap-48: 48px;
    --size-gap-100: 70px;
    --padding-150: 50px;
  }

  #appartements .width {
    flex-direction: column;
    gap: 0px;
  }
} /*# sourceMappingURL=style.css.map */
