@charset "UTF-8";
.content {
  will-change: transform;
}

:root {
  --fluid-unit: min(calc(1vw + 1vh), 30px);
  --font-size-h1: clamp(38px, calc(var(--fluid-unit) * 3.233), 109px);
  --font-size-title: clamp(32px, calc(var(--fluid-unit) * 2.133), 64px);
  --font-size-title-small: clamp(28px, calc(var(--fluid-unit) * 1.733), 52px);
  --font-size-38: clamp(24px, calc(var(--fluid-unit) * 1.267), 38px);
  --font-size-30: clamp(20px, calc(var(--fluid-unit) * 1), 30px);
  --font-size-text: clamp(16px, calc(var(--fluid-unit) * 0.733), 22px);
  --font-size-text-middle: clamp(14px, calc(var(--fluid-unit) * 0.57), 18px);
  --font-size-text-small: clamp(14px, calc(var(--fluid-unit) * 0.533), 16px);
  --size-gap-24: 24px;
  --size-gap-48: 48px;
  --size-gap-100: 100px;
  --padding-horizontal: calc(var(--fluid-unit) * 10);
  --padding-150: 150px;
}

@font-face {
  font-family: "Mangro";
  src: url("fonts/Mangro.woff") format("woff"),
    url("fonts/Mangro.ttf") format("truetype"),
    url("fonts/Mangro.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/***************************************************************/
/*** MAIN ******************************************************/
/***************************************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

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

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

li {
  list-style-type: none;
}

li,
p,
a,
span {
  font-family: "Inter", sans-serif;
  font-size: var(--font-size-text-middle);
  line-height: 1.3;
  color: #003534;
  font-weight: 300;
  letter-spacing: 0;
  text-align: center;
}

p {
  text-align: justify;
  line-height: 1.3;
}
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: 10px;
  overflow: hidden;
}

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

/* Handle */
::-webkit-scrollbar-thumb {
  background: #003534;
  -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: #038e8e;
}

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: #ededed;
}

#succes {
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition-duration: 0.6s;
}
#succes > div {
  text-align: center;
  font-size: var(--font-size-secondary);
  z-index: 1;
  color: #ededed;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px;
  line-height: 1.2;
  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: #003534;
  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);
  }
}

.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: "Mangro", sans-serif;
  font-weight: 300;
  font-size: var(--font-size-h1);
  line-height: 100%;
  letter-spacing: 0;
  text-align: center;
  color: #003534;
  overflow: hidden;
  height: var(--font-size-h1);
  white-space: nowrap;
}

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

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

.title {
  font-family: "Mangro", sans-serif;
  font-size: var(--font-size-title-small);
  line-height: 1;
  text-align: left;
  color: #003534;
  font-weight: 300;
  letter-spacing: 0;
  max-width: 10ch;
}

.subtitle {
  font-family: "Inter", sans-serif;
  font-size: var(--font-size-text-middle);
  line-height: 1;
  text-align: left;
  color: #038e8e;
  font-weight: 300;
  letter-spacing: 0;
  text-transform: uppercase;
  margin-bottom: 24px;
}

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

/***************************************************************/
/*** BUTTON ****************************************************/
/***************************************************************/
.btn {
  color: #003534;
  padding: 14px 30px;
  border: 1px solid #003534;
  cursor: pointer;
  position: relative;
  border-radius: 22px;
  overflow: hidden;
  min-width: 167px;
  line-height: 1;
}
.btn span {
  font-family: "Inter", sans-serif;
  font-size: var(--font-size-text-middle);
  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: #003534;
  display: block;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.3s ease, right 0.3s ease, transform 0.5s;
  transition-delay: 0s;
}
.btn:hover span {
  color: #ededed;
  transition-delay: 0.2s;
}
.btn:hover::after {
  opacity: 1;
  right: 0;
  transform: scale(14);
  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/arrow.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 #003534;
  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);
  background-color: transparent;
}
header .width {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: var(--size-gap-48);
}
header .width .left {
  width: auto;
}
header .width .left .logo {
  width: 190px;
}
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: 60px;
}
header .width .right nav ul li.contact-nav {
  display: none;
}
header .width .right nav ul li a {
  padding: 11px 0;
  position: relative;
}
header .width .right nav ul li a:after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 0px;
  background: #003534;
  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::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 25px;
  transform: translate(-50%, -50%);
  height: 25px;
  border-radius: 50%;
  background-color: #003534;
  display: block;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.5s linear, transform 0.5s linear;
}
header .width #contact-btn .btn:hover span {
  color: #ededed;
  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: 10px 0;
  background-color: #fff;
}

#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: #003534;
}
#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: #ededed;
  width: 40px;
}
#menu-btn.active span::after {
  transform: translateY(12px) rotate(45deg);
  background-color: #ededed;
  width: 40px;
}

/***************************************************************/
/*** ACCUEIL ***************************************************/
/***************************************************************/
#accueil {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  height: 78.125vw;
  max-width: 1920px;
  max-height: 1500px;
  margin: 0 auto;
  will-change: transform;
}
#accueil .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-position: top;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top;
}
#accueil .width:first-of-type {
  height: 100%;
  align-items: center;
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  flex-direction: column;
}
#accueil .width:first-of-type .top {
  text-align: center;
  width: 100%;
  margin-top: max(-800px, min(var(--fluid-unit) * -30, -500px));
}
#accueil .width:last-of-type {
  position: absolute;
  bottom: 75px;
  z-index: 9;
}
#accueil .width:last-of-type::after {
  content: "";
  display: block;
  position: absolute;
  height: 500px;
  width: 100%;
  bottom: -120px;
  left: 0;
  background: linear-gradient(
    181.77deg,
    rgba(0, 0, 0, 0) 8.56%,
    #003534 57.26%
  );
}
#accueil .width:last-of-type ul.bottom {
  width: 100%;
  display: flex;
  z-index: 11;
  gap: var(--size-gap-24);
  justify-content: center;
}
#accueil .width:last-of-type ul.bottom li {
  display: flex;
  flex-direction: column;
  gap: 10px;
  width: -moz-max-content;
  width: max-content;
}
#accueil .width:last-of-type ul.bottom li span:first-of-type {
  font-weight: 700;
  font-size: var(--font-size-38);
  margin-bottom: 24px;
  color: #fff;
  white-space: nowrap;
}
#accueil .width:last-of-type ul.bottom li span:last-of-type {
  font-size: var(--font-size-30);
  color: #fff;
}

/***************************************************************/
/*** PROJET ****************************************************/
/***************************************************************/
#projet,
#situation1 {
  margin-top: var(--padding-150);
  will-change: transform;
  scroll-margin-top: 100px;
}
#projet .width,
#situation1 .width {
  gap: var(--size-gap-100);
  align-items: center;
  justify-content: space-between;
  margin-bottom: var(--padding-150);
}
#projet .width ul li,
#situation1 .width ul li {
  list-style: disc;
  margin-left: 32px;
}
#projet .width .left,
#situation1 .width .left {
  width: calc(50% - var(--size-gap-100) / 2);
}
#projet .width .left .title,
#situation1 .width .left .title {
  font-size: var(--font-size-title);
}
#projet .width .right,
#situation1 .width .right {
  width: max-width;
}
#projet .width .right p,
#situation1 .width .right p {
  max-width: 51ch;
  font-size: var(--font-size-text);
}
#projet .width .right .btn,
#situation1 .width .right .btn {
  margin-top: 50px;
}
#projet .swiper-projet,
#situation1 .swiper-projet {
  width: 100%;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  will-change: transform;
}
#projet .swiper-projet swiper-slide,
#situation1 .swiper-projet swiper-slide {
  height: 500px;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  will-change: transform;
}
#projet .swiper-projet swiper-slide a,
#situation1 .swiper-projet swiper-slide a {
  width: 100%;
  height: 100%;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  will-change: transform;
}
#projet .swiper-projet swiper-slide a img,
#situation1 .swiper-projet swiper-slide a img {
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  will-change: transform;
}
#projet .swiper-projet swiper-slide::after,
#situation1 .swiper-projet swiper-slide::after {
  content: url("imgs/icons/plus.svg");
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 53, 52, 0.1);
  opacity: 0;
  transition: all 0.5s cubic-bezier(0.09, 0.65, 0.68, 1.01);
  pointer-events: none;
}
#projet .swiper-projet swiper-slide:hover,
#situation1 .swiper-projet swiper-slide:hover {
  width: 35% !important;
}
#projet .swiper-projet swiper-slide:hover::after,
#situation1 .swiper-projet swiper-slide:hover::after {
  opacity: 1;
}

#situation1 .width .right p {
  font-size: var(--font-size-text-middle);
  max-width: 62ch;
}

#services {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  margin: var(--padding-150) 0;
  max-width: 1920px;
  margin-left: auto;
  margin-right: auto;
  background-color: #f6f6f6;
  scroll-margin-top: 100px;
}
#services .left {
  width: 45%;
}
#services .right {
  width: 55%;
  background-color: #f6f6f6;
  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;
}
#services .right ul:first-of-type {
  margin-bottom: var(--size-gap-100);
}
#services .right ul li {
  text-align: justify;
  width: calc(50% - 30px);
  position: relative;
}
#services .right ul li::before {
  content: "•";
  position: absolute;
  left: 0;
  color: #038e8e;
  display: inline-block;
  width: 1em;
  margin-left: -1em;
}
#services .right ul li span {
  font-weight: bold;
  color: #038e8e;
}
#services .title {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 50px;
  color: #038e8e;
  max-width: initial;
}

#appartements,
#projet1 {
  will-change: transform;
  margin-top: var(--padding-150);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1920px;
  gap: var(--size-gap-100);
  margin-left: auto;
  margin-right: auto;
  height: 100vh;
  max-height: 960px;
  scroll-margin-top: 100px;
}
#appartements .left,
#projet1 .left {
  width: calc(50% - var(--size-gap-100) / 2);
  height: 100%;
  max-width: 860px;
}
#appartements .left a,
#projet1 .left a {
  height: 100%;
  overflow: hidden;
}
#appartements .left a img,
#projet1 .left a img {
  height: 120%;
}
#appartements .left .title,
#projet1 .left .title {
  margin-bottom: 50px;
  max-width: 14ch;
}
#appartements .left p,
#projet1 .left p {
  max-width: 51ch;
}
#appartements .left .btn,
#projet1 .left .btn {
  margin-top: 60px;
}
#appartements .right,
#projet1 .right {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  padding-right: var(--padding-horizontal);
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  margin: 0;
}
#appartements .right ul li,
#projet1 .right ul li {
  list-style: disc;
  margin-left: 32px;
}
#appartements .right a,
#projet1 .right a {
  height: 100%;
  overflow: hidden;
}
#appartements .right a img,
#projet1 .right a img {
  height: 120%;
}
#appartements .right .title,
#projet1 .right .title {
  margin-bottom: 50px;
  max-width: 14ch;
}
#appartements .right p,
#projet1 .right p {
  max-width: 51ch;
}
#appartements .right .btns,
#projet1 .right .btns {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 60px;
}

#appartements .right .btns .btn,
#projet1 .right .btns .btn {
  width: 190px;
}

#appartements .right .btns .btn:nth-of-type(2),
#projet1 .right .btns .btn:nth-of-type(2) {
  background-color: #003534;
}
#appartements .right .btns .btn:nth-of-type(2) span,
#projet1 .right .btns .btn:nth-of-type(2) span {
  color: #fff;
}
#appartements .right .btns .btn:nth-of-type(2)::before,
#projet1 .right .btns .btn:nth-of-type(2)::before {
  background-image: url(imgs/icons/arrow-white.svg);
  border-color: #fff;
}
#appartements .right .btns .btn:nth-of-type(2)::after,
#projet1 .right .btns .btn:nth-of-type(2)::after {
  background-color: #fff;
}
#appartements .right .btns .btn:nth-of-type(2):hover span,
#projet1 .right .btns .btn:nth-of-type(2):hover span {
  color: #003534;
}
#appartements .right .btns .btn:nth-of-type(2):hover::before,
#projet1 .right .btns .btn:nth-of-type(2):hover::before {
  background-image: url(imgs/icons/arrow.svg);
  border-color: #003534;
  filter: none;
}

#projet1 .right {
  padding-left: var(--padding-horizontal);
  padding-right: 0;
}

/***************************************************************/
/*** SITUATION ***************************************************/
/***************************************************************/
#situation {
  max-width: 1920px;
  margin: 0 auto;
  scroll-margin-top: 100px;
  padding-top: var(--padding-150);
  padding-bottom: var(--padding-150);
}
#situation .width {
  display: flex;
  flex-direction: column;
  margin-bottom: var(--size-gap-100);
  width: 100%;
}
#situation .width .title {
  max-width: 20ch;
}
#situation .swiper-maps {
  background-color: #fff;
  width: 60%;
  margin-left: var(--padding-horizontal);
}
#situation .swiper-maps .swiper-slide {
  background-color: #fff;
  opacity: 0.3;
  margin-left: 40px;
}
#situation .swiper-maps .swiper-slide.swiper-slide-active {
  opacity: 1;
}
#situation .swiper-maps::part(container) {
  overflow: visible;
}
#situation .swiper-maps::part(button-prev),
#situation .swiper-maps::part(button-next) {
  width: 80px;
  height: 80px;
  background: url("imgs/icons/arrow-aqua.svg") no-repeat center center;
  background-size: 30%;
  bottom: 50%;
  top: auto;
  left: 0;
  transform: translateY(calc(-50% + 50px));
  border-radius: 50%;
  border: 1px solid #038e8e;
  background-color: #fff;
}
#situation .swiper-maps::part(button-prev) {
  transform: translateY(calc(-50% + 50px)) rotate(180deg);
}

#situation2 {
  padding-top: var(--padding-150);
  background-color: #f6f6f6;
}
#situation2 .width {
  display: flex;
  flex-direction: column;
}
#situation2 .width .title {
  max-width: 20ch;
  margin-bottom: var(--size-gap-100);
}
#situation2 .width .img {
  height: 80vh;
  overflow: hidden;
  max-height: 1080px;
}
#situation2 .width .img img {
  height: 130%;
}
#situation2 .width .wrapper {
  position: relative;
  padding: 15%;
  background-color: #f6f6f6;
}
#situation2 .width .wrapper p {
  color: #038e8e;
  font-size: var(--font-size-30);
  position: relative;
  border-radius: 24px;
  z-index: 1;
}
#situation2 .width .wrapper .star.star-small {
  position: absolute;
  margin: 0;
  display: block;
}
#situation2 .width .wrapper .star.star-small img {
  height: 50px;
  width: 50px;
}
#situation2 .width .wrapper .star.star-small:last-of-type {
  left: 50%;
  top: 14%;
  transform: translateX(-50%);
}

/***************************************************************/
/*** ICONS ***************************************************/
/***************************************************************/
#icons {
  padding-top: var(--padding-150);
  padding-bottom: var(--padding-150);
  margin-top: var(--padding-150);
  background-color: #003534;
  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.3;
  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: "Inter", 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: "Inter", sans-serif;
  font-weight: 300;
  font-size: var(--font-size-text-small);
  line-height: 1.3;
  letter-spacing: 0;
  text-align: center;
  color: #fff;
  max-width: 37ch;
}

/***************************************************************/
/*** CONTACT ****************************************************/
/***************************************************************/
#contact {
  min-height: 600px;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: space-between;
  overflow: hidden;
  color: #ededed;
  padding: var(--padding-150) 0 0 0;
  background-color: #fff;
  scroll-margin-top: 100px;
}
#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 {
  max-width: 37ch;
  margin-bottom: var(--size-gap-100);
  text-align: center;
  max-width: 20ch;
  margin-bottom: var(--padding-150);
}
#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: 35%;
  text-align: center;
}
#contact .width:first-of-type .container .left .logo {
  display: block;
  width: 233px;
  height: 80px;
  margin: 0 auto 50px auto;
}
#contact .width:first-of-type .container .left .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#contact .width:first-of-type .container .left 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 p.acteur-name {
  margin-bottom: 32px;
}
#contact .width:first-of-type .container .left 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 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 a:hover {
  color: #038e8e;
}
#contact .width:first-of-type .container .left .img {
  width: 180px;
  height: 180px;
  text-align: center;
  display: block;
  margin: 40px auto 40px auto;
}
#contact .width:first-of-type .container form {
  width: 50%;
}
#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 #038e8e;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  border-left: 1px solid #fff;
  font-size: 14px;
  text-align: left;
  color: #003534;
  font-family: "Inter", 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: "Inter", sans-serif;
  color: #003534;
  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: "Inter", sans-serif;
  color: #003534;
  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 #038e8e;
  background-color: #fff;
  display: block;
  height: 55px;
  border-radius: 26px;
}
#contact .width:first-of-type .container form #submit span {
  color: #038e8e;
}
#contact .width:first-of-type .container form #submit::before {
  background-image: url(imgs/icons/arrow-aqua.svg);
  border-color: #038e8e;
}
#contact .width:first-of-type .container form #submit:after {
  background-color: #038e8e;
}
#contact .width:first-of-type .container form #submit:hover span {
  color: #fff;
}
#contact .width:last-of-type {
  align-items: center;
  justify-content: center;
  padding: 50px var(--padding-horizontal);
  background-color: #003534;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#contact .width:last-of-type .footer {
  width: -moz-max-content;
  width: max-content;
}
#contact .width:last-of-type .footer:first-of-type img {
  width: 330px;
}
#contact .width:last-of-type .footer:nth-of-type(2) p {
  text-align: center;
}
#contact .width:last-of-type .footer * {
  color: #fff;
}

/***************************************************************/
/*** MEDIA ***************************************************/
/***************************************************************/
@media only screen and (max-width: 1440px) {
  #services .right ul {
    flex-direction: column;
  }
  #services .right ul li {
    width: 100%;
  }
}
@media only screen and (max-width: 1200px) {
  :root {
    --size-gap-24: 24px;
    --size-gap-48: 48px;
    --size-gap-100: 70px;
    --padding-horizontal: calc(var(--fluid-unit) * 5);
    --padding-150: 100px;
  }
  #projet .swiper-projet swiper-slide,
  #situation1 .swiper-projet swiper-slid {
    height: 400px;
  }
  #projet .swiper-projet swiper-slide:hover,
  #situation1 .swiper-projet swiper-slid:hover {
    width: 40% !important;
  }
  #appartements,
  #projet1 {
    max-height: 700px;
    min-height: 700px;
  }
  #icons .width ul li {
    width: 41%;
  }
  #icons .width ul li .info {
    font-size: var(--font-size-text);
  }
  #services .right ul {
    gap: 24px;
  }
  #contact .width:last-of-type .footer:first-of-type img {
    width: 220px;
  }
}
@media only screen and (max-width: 992px) {
  :root {
    --size-gap-24: 24px;
    --size-gap-48: 48px;
    --size-gap-100: 70px;
    --padding-horizontal: calc(var(--fluid-unit) * 3);
    --padding-150: 100px;
  }
  header .width #contact-btn {
    display: none;
  }
  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: #003534;
    padding: 10%;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 100vh;
  }
  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: #ededed;
    margin-bottom: 0;
  }
  header .width .right nav ul li a::after {
    background-color: #ededed;
  }
  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);
  }
  #menu-btn {
    display: block;
  }
  #accueil .width:first-of-type {
    z-index: 11;
    overflow: hidden;
  }
  #accueil .width:first-of-type .top {
    margin-top: calc(78.125vw - 60px);
  }
  #accueil .width:first-of-type .top h1 {
    height: 100px;
  }
  #accueil .width:first-of-type .top h1 .letter {
    text-shadow: 1px 1px 1px #003534;
    color: #fff;
  }
  #accueil .width:last-of-type {
    bottom: -110px;
  }
  #accueil .width:last-of-type ul.bottom {
    flex-wrap: wrap;
    position: relative;
    bottom: -82px;
  }
  #accueil .width:last-of-type ul.bottom li span:first-of-type {
    font-size: 20px;
  }
  #projet,
  #situation1 {
    margin-top: var(--padding-150);
  }
  #projet .width,
  #situation1 .width {
    flex-direction: column;
    gap: var(--size-gap-100);
  }
  #projet .width .left,
  #situation1 .width .left {
    width: 100%;
  }
  #projet .width .left .subtitle,
  #situation1 .width .left .subtitle {
    margin-left: auto;
    margin-right: auto;
    width: -moz-max-content;
    width: max-content;
    display: block;
  }
  #projet .width .left .title,
  #situation1 .width .left .title {
    max-width: none;
    text-align: center;
  }
  #projet .width .right,
  #situation1 .width .right {
    width: 100%;
  }
  #projet .width .right p,
  #situation1 .width .right p {
    max-width: none;
  }
  #projet .swiper-projet swiper-slide:hover,
  #situation1 .swiper-projet swiper-slide:hover {
    width: 60% !important;
  }
  #situation .swiper-maps .swiper-slide {
    margin-left: 0px;
    margin-right: 30px;
  }
  #situation .swiper-maps::part(button-prev),
  #situation .swiper-maps::part(button-next) {
    width: 50px;
    height: 50px;
  }
  #situation2 .width .wrapper {
    padding: 128px 0 15% 0;
  }
  #situation2 .width .img {
    max-height: 500px;
  }
  #services {
    flex-direction: column;
    margin-top: 0;
  }
  #services .left {
    width: 100%;
    order: 1;
  }
  #services .right {
    width: 100%;
    padding: var(--padding-150) var(--padding-horizontal) var(--padding-150)
      var(--padding-horizontal);
  }
  #projet {
    margin-top: 300px;
  }
  #appartements,
  #projet1 {
    flex-direction: column;
    min-height: initial;
    max-height: initial;
    height: auto;
  }
  #appartements .left,
  #projet1 .left {
    width: 100%;
    height: 450px;
  }
  #appartements .left .subtitle,
  #projet1 .left .subtitle {
    margin-left: auto;
    margin-right: auto;
    width: -moz-max-content;
    width: max-content;
    display: block;
  }
  #appartements .left .title,
  #projet1 .left .title {
    max-width: none;
    text-align: center;
  }
  #appartements .right,
  #projet1 .right {
    width: 100%;
    padding-left: var(--padding-horizontal);
    padding-right: var(--padding-horizontal);
  }
  #appartements .right p,
  #projet1 .right p {
    max-width: none;
  }
  #appartements .right .subtitle,
  #projet1 .right .subtitle {
    margin-left: auto;
    margin-right: auto;
    width: -moz-max-content;
    width: max-content;
    display: block;
  }
  #appartements .right .title,
  #projet1 .right .title {
    max-width: none;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #appartements .right .btn,
  #projet1 .right .btn {
    margin-left: auto;
    margin-right: auto;
  }
  #appartements .swiper-projet swiper-slide:hover,
  #projet1 .swiper-projet swiper-slide:hover {
    width: 60% !important;
  }
  #situation .swiper-maps {
    width: 80%;
  }
  #appartements .left {
    order: 1;
  }
  #icons {
    margin-top: 0;
  }
  #icons .width ul li .description {
    max-width: none;
  }
  #icons .width ul li .icon {
    width: 50px;
    height: 50px;
  }
  #icons .width ul li .icon svg {
    width: 50px !important;
    height: 50px !important;
  }
  #contact .width:first-of-type .container {
    flex-direction: column;
  }
  #contact .width:first-of-type .container .left {
    width: 100%;
  }
  #contact .width:first-of-type .container form {
    width: 100%;
    order: -1;
    margin-bottom: var(--padding-150);
  }
  #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-horizontal: calc(var(--fluid-unit) * 3);
    --padding-150: 80px;
  }
  header .width .left .logo {
    width: 150px;
  }
  #accueil .width:first-of-type .top h1 {
    height: 80px;
  }
  #accueil .width:first-of-type .top h1 .letter {
    font-size: 42px;
  }
  #accueil .width:last-of-type ul.bottom li span:first-of-type {
    white-space: inherit;
  }
  #contact .width:first-of-type .container .left .logo {
    width: 150px;
  }
  #contact .width:last-of-type {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  #contact .width:last-of-type .footer {
    width: -moz-max-content;
    width: max-content;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #contact .width:last-of-type .footer:first-of-type {
    margin-bottom: 24px;
  }
  #contact .width:last-of-type .footer:nth-of-type(2) {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 576px) {
  :root {
    --size-gap-24: 24px;
    --size-gap-48: 48px;
    --size-gap-100: 70px;
    --padding-horizontal: calc(var(--fluid-unit) * 3);
    --padding-150: 50px;
  }
  #accueil .width:first-of-type .top h1 {
    height: 80px;
  }
  #accueil .width:first-of-type .top h1 .letter {
    font-size: 32px;
  }
  #projet .swiper-projet swiper-slide:hover,
  #situation1 .swiper-projet swiper-slide:hover {
    width: 70% !important;
  }
  #icons .width .title {
    text-align: center;
  }
  #icons .width ul {
    gap: 50px;
  }
  #icons .width ul li {
    width: 100%;
  }
  #icons .width ul li .icon {
    margin-bottom: 24px;
  }
}
@media only screen and (max-width: 480px) {
  #accueil .width:first-of-type .top h1 {
    height: 80px;
  }
  #accueil .width:first-of-type .top h1 .letter {
    font-size: 30px;
  }
  #appartements .right .btns,
  #projet1 .right .btns {
    gap: 24px;
  }
}
@media only screen and (max-width: 420px) {
  #accueil .width:first-of-type .top h1 {
    height: 80px;
  }
  #accueil .width:first-of-type .top h1 .letter {
    font-size: 30px;
  }
} /*# sourceMappingURL=style.css.map */
