:root {
  --padding-150: 150px;
  --padding-100: 100px;
  --padding-40: 40px;
  --fs-14: 15px;
  --fs-16: 16px;
  --fs-20: 20px;
  --fs-32: 32px;
  --gap-24: 24px;
  --gap-32: 32px;
}

* {
  box-sizing: border-box;
  background-repeat: no-repeat;
  padding: 0;
  margin: 0;
}

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

body {
  max-width: 1920px;
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background-color: white;
  font-family: "cofo-sans-variable", sans-serif;
}

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

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

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

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

#legales {
  padding-top: 150px;
  padding-bottom: 50px;
}
#legales h2 {
  margin: 30px 0;
}
#legales p {
  margin: 10px 0;
}

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

.width-10 {
  padding-left: 10%;
  margin: 0 auto;
  padding-right: 10%;
}

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-infobar * {
  color: white;
}

.swiper-button-next,
.swiper-button-prev {
  color: #e5e9dd !important;
}

#e404 {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

a {
  text-decoration: none;
}

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

#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f8fafc;
  z-index: 99999;
  transition-duration: 1s;
  transition-delay: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading svg {
  width: 40%;
  height: auto;
  transition: all 0.3s linear;
}
#loading svg g path.river {
  stroke-dasharray: 50px;
  stroke-dashoffset: 100px;
  stroke-width: 0.3;
  fill-opacity: 0;
  transition: stroke-dashoffset 3s, stroke-width 3s linear, fill-opacity 3s linear, stroke-dasharray 3s linear;
}
#loading svg.animated g path.river {
  stroke-dashoffset: 0;
  fill-opacity: 1;
  stroke-width: 0.3;
}
#loading svg g path.tree {
  stroke-dasharray: 20px;
  stroke-dashoffset: 100px;
  stroke-width: 1;
  fill-opacity: 0;
  transition: stroke-dashoffset 3s, stroke-width 3s linear, fill-opacity 1s linear, stroke-dasharray 3s linear;
}
#loading svg.animated g path.tree {
  stroke-dashoffset: 0;
  fill-opacity: 1;
  stroke-width: 0.3;
}
#loading svg path.border {
  stroke-dasharray: 30px;
  stroke-dashoffset: 100px;
  stroke-width: 0;
  transition: stroke-dashoffset 2s, stroke-width 3s linear, stroke-dasharray 2s linear;
}
#loading svg.animated path.border {
  stroke-dasharray: 1500px;
  stroke-width: 1;
}
#loading svg .moulin {
  transform-origin: center center;
  animation: rotateMoulin 3.5s linear;
  transform-box: border-box;
  transition: all 0.3s linear;
}
@keyframes rotateMoulin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(15deg);
  }
}
#loading.hidden {
  opacity: 0;
  visibility: hidden;
}
#loading.hidden svg {
  transform: scale(1.1);
}

.corners img {
  width: 18px;
  height: 18px;
  position: absolute;
}
.corners img:nth-of-type(1) {
  top: 70px;
  left: 8%;
}
.corners img:nth-of-type(2) {
  top: 70px;
  right: 8%;
  transform: rotate(90deg);
}
.corners img:nth-of-type(3) {
  bottom: 70px;
  left: 8%;
  transform: rotate(-90deg);
}
.corners img:nth-of-type(4) {
  bottom: 70px;
  right: 8%;
  transform: rotate(180deg);
}

h1,
h2,
.title {
  font-family: "cofo-sans-variable", sans-serif;
  font-size: var(--fs-32);
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  color: #393939;
  position: relative;
  margin-bottom: 32px;
  letter-spacing: -0.8px;
}
h1 span,
h2 span,
.title span {
  font-family: "cofo-sans-variable", sans-serif;
  font-size: var(--fs-32);
  font-weight: 300;
  line-height: 1.2;
  display: inline;
  color: #c7ab94;
}

a,
p,
li,
span {
  font-family: "cofo-sans-variable", sans-serif;
  font-size: var(--fs-14);
  font-weight: 400;
  line-height: 140%;
  text-align: left;
  text-decoration: none;
  color: #393939;
}

.subtitle {
  font-family: "cofo-sans-variable", sans-serif;
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  line-height: 1.2;
  text-align: left;
  color: #c7ab94;
  margin-bottom: 25px;
}
.subtitle::before {
  content: url("imgs/icons/moulin-icon.svg");
  display: block;
  width: 55px;
  height: 48px;
  margin-bottom: 16px;
}

.btn {
  font-style: normal;
  font-weight: 400;
  font-size: var(--fs-14);
  line-height: 1;
  color: #f8fafc;
  background-color: #c7ab94;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 14px;
  border: 1px solid #c7ab94;
  cursor: pointer;
  position: relative;
  transition: all 0.3s linear;
  margin-top: 44px;
  width: 271px;
}
.btn:hover {
  background-color: transparent;
  color: #c7ab94;
}

header {
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  z-index: 99;
  transition: all 0.3s linear;
  background-color: white;
  display: flex;
  justify-content: center;
  position: fixed;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}
header .width {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 40px 0;
  gap: var(--gap-32);
  width: 90%;
  margin: 0;
}
header .width .logo {
  position: absolute;
  z-index: 999;
  right: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 1s linear;
  width: 250px;
  height: auto;
  top: 50%;
  transform: translateY(-50%);
}
header .width .logo a {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
header .width .logo a img {
  -o-object-fit: contain;
     object-fit: contain;
}
header .width nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .width nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style-type: none;
  gap: 37px;
}
header .width nav ul li {
  position: relative;
}
header .width nav ul li a {
  font-family: "cofo-sans-variable", sans-serif;
  font-size: var(--fs-14);
  font-weight: 400;
  line-height: 1;
  letter-spacing: 4px;
  text-align: left;
  text-transform: uppercase;
  transition: all 0.5s;
  white-space: nowrap;
  color: #393939;
}
header .width nav ul li:not(:last-of-type)::after {
  content: "";
  height: 12px;
  width: 1px;
  display: block;
  background-color: #c7ab94;
  position: absolute;
  top: 0px;
  right: -16px;
}
header .width nav ul li:hover a {
  color: #c7ab94;
}
header .width .phone {
  display: none;
  position: absolute;
  left: 5%;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
header .width .phone span {
  color: #393939;
  font-weight: 600;
  text-transform: uppercase;
}
header .width .phone p a {
  color: #c7ab94;
}

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

.icons-section {
  position: relative;
  background-color: #f8fafc;
  padding-top: var(--padding-150);
  padding-bottom: var(--padding-150);
}
.icons-section .width-5 .title {
  text-align: center;
  margin-bottom: 100px;
}
.icons-section .width-5 .title:before {
  display: none;
}
.icons-section .width-5 ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.icons-section .width-5 ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 33.33%;
}
.icons-section .width-5 ul li::before {
  content: "";
  width: 50px;
  height: 50px;
  background-color: rgba(208, 222, 229, 0.5019607843);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: -5px;
  left: calc(50% - 20px);
  transform: translateX(-50%);
}
.icons-section .width-5 ul li img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 30px;
}
.icons-section .width-5 ul li span {
  font-size: var(--fs-16);
  font-weight: 500;
  margin-bottom: 8px;
  color: #393939;
}
.icons-section .width-5 ul li p {
  color: #393939;
}
.icons-section .width-5 .btn {
  margin: 67px auto 0 auto;
  background-color: transparent;
  border: 1px solid #abc7d6;
  color: #abc7d6;
}
.icons-section .width-5 .btn:hover {
  background-color: #abc7d6;
  color: white;
}

.icons-projet {
  position: relative;
  background-color: #f8fafc;
  padding-top: var(--padding-150);
  padding-bottom: var(--padding-150);
}
.icons-projet .subtitle::before {
  margin: 0 auto 20px auto;
}
.icons-projet .width-5 .title {
  text-align: center;
}
.icons-projet .width-5 .title:before {
  display: none;
}
.icons-projet .width-5 .toggle-button {
  background: none;
  border: none;
  font-size: 30px;
  cursor: pointer;
  display: block;
  margin: 10px auto;
  transition: transform 0.3s ease;
}
.icons-projet .width-5 .toggle-button .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
  width: 50px;
  opacity: 0.3;
}
.icons-projet .width-5 .collapsible-content {
  list-style-type: none;
  padding-left: 0;
}
.icons-projet .width-5 .collapsible-content .imgs {
  width: 70%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.icons-projet .width-5 .collapsible-content .imgs img {
  display: block;
  width: 48%;
}
.icons-projet .width-5 .collapsible-content li {
  width: 70%;
  margin: 30px auto;
}
.icons-projet .width-5 .collapsible-content li p b {
  display: block;
  text-decoration: underline;
  margin: 10px 0;
}
.icons-projet .width-5 .collapsible-content li span {
  font-weight: 500;
  display: block;
  color: #393939;
  font-size: 20px;
  margin-bottom: 20px;
  position: relative;
  z-index: 3;
}
.icons-projet .width-5 .collapsible-content li span b {
  color: #c7ab94;
  font-weight: 300;
}
.icons-projet .width-5 .collapsible-content li span::before {
  content: "";
  width: 30px;
  height: 30px;
  background-color: rgba(208, 222, 229, 0.5019607843);
  border-radius: 50%;
  z-index: -2;
  display: block;
  position: absolute;
  top: -5px;
  left: -20px;
}
.icons-projet .width-5 .collapsible-content li p {
  text-align: justify;
  color: #393939;
}
.icons-projet .collapsible-content.open {
  max-height: 2000px; /* Set a value that's larger than the height of the content */
  opacity: 1;
  visibility: visible;
}
.icons-projet .toggle-button.active .arrow {
  transform: rotate(180deg); /* Change arrow direction */
}

.icons2 {
  position: relative;
  padding-top: var(--padding-100);
  padding-bottom: var(--padding-150);
}
.icons2:after {
  content: url(imgs/icons/tree-full.svg);
  width: 250px;
  height: auto;
  position: absolute;
  bottom: -50px;
  left: 0;
  z-index: -1;
}
.icons2:before {
  content: "";
  width: 250px;
  height: auto;
  position: absolute;
  bottom: -46px;
  left: 0;
  border-bottom: 1px solid #e5e8dc;
  z-index: -1;
}
.icons2 h2 {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}
.icons2 h2::after {
  content: "";
  position: absolute;
  bottom: -25px;
  left: 0;
  margin: 0 auto;
  right: 0px;
  height: 1px;
  width: 350px;
  background-color: #9c9c9c;
}
.icons2 h2 span {
  display: inline;
}
.icons2 h2::before {
  display: none;
}
.icons2 .width-5 .title {
  text-align: center;
}
.icons2 .width-5 .title .subtitle {
  margin: 0 auto !important;
  text-align: center;
}
.icons2 .width-5 .title .subtitle:before {
  margin: 0 auto 20px auto !important;
}
.icons2 .width-5 ul {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.icons2 .width-5 ul li {
  width: 45%;
  display: flex;
  align-items: center;
  gap: var(--gap-24);
  justify-content: center;
  margin: 30px;
}
.icons2 .width-5 ul li img {
  width: 50px;
  height: 50px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 1s linear;
}
.icons2 .width-5 ul li p {
  color: #393939;
  max-width: 30ch;
  text-align: center;
}

.icons3 .width-5 ul li {
  width: 30%;
  flex-direction: column;
  margin: 30px 0;
  justify-content: flex-start;
}

#images {
  padding-top: var(--padding-100);
  padding-bottom: var(--padding-150);
}
#images .titleSection {
  margin-bottom: 100px;
  text-align: center;
}
#images .titleSection .subtitle,
#images .titleSection .title {
  margin: 0 auto 23px auto;
  text-align: center;
}
#images .titleSection .subtitle:before,
#images .titleSection .title:before {
  margin: 0 auto 23px auto;
}
#images .titleSection .subtitle span,
#images .titleSection .title span {
  text-align: center;
  display: inline;
}
#images .titleSection .subtitle {
  margin-bottom: 25px;
}
#images .titleSection .title {
  position: relative;
}
#images .titleSection hr {
  width: 342px;
  margin: 0 auto;
  height: 1px;
  background-color: #9c9c9c;
}
#images .titleSection h2,
#images .titleSection span {
  max-width: auto;
}
#images .width-5 .swiper-container-galerie::part(container) {
  overflow: visible;
}
#images .width-5 .swiper-container-galerie::part(button-prev) {
  width: 30px;
  height: 30px;
  top: 50%;
  left: 0;
  color: #9c9c9c;
  background-color: #e5e9dd;
  border-radius: 50%;
  padding: 10px;
  transform: translateX(-50%);
}
#images .width-5 .swiper-container-galerie::part(button-prev) svg {
  width: 20px !important;
  height: 20px !important;
}
#images .width-5 .swiper-container-galerie::part(button-next) {
  width: 30px;
  height: 30px;
  top: 50%;
  left: 100%;
  color: #9c9c9c;
  background-color: #e5e9dd;
  border-radius: 50%;
  padding: 10px;
  transform: translateX(-50%);
}
#images .width-5 .swiper-container-galerie swiper-slide {
  height: 600px;
  max-height: 80vh;
  transition: all 0.3s linear;
}
#images .width-5 .swiper-container-galerie swiper-slide a {
  position: relative;
  display: block;
}
#images .width-5 .swiper-container-galerie swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
#images .width-5 .swiper-container-galerie swiper-slide a img::after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s linear;
  z-index: 5;
}
#images .width-5 .swiper-container-galerie swiper-slide a p {
  opacity: 0;
  transition: all 0.3s linear;
  position: absolute;
  bottom: 20px;
  font-size: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #abc7d6;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
#images .width-5 .swiper-container-galerie swiper-slide:hover p {
  opacity: 1;
}
#images .width-5 .swiper-container-galerie swiper-slide:hover img::after {
  opacity: 1;
}

#accueilPage #accueil .top {
  height: 90vh;
  max-height: 1080px;
  position: relative;
}
#accueilPage #accueil2 .width-5 {
  padding-top: 100px;
  padding-bottom: 100px;
}
#accueilPage #accueil2 .width-5 img {
  width: 350px;
  text-align: center;
  margin: 0 auto;
}
#accueilPage #accueil2 .width-5 p {
  margin: 30px auto;
  font-style: italic;
  font-size: 20px;
  text-align: center;
  max-width: 95ch;
}
#accueilPage #accueil2 .width-5 p.color {
  color: #c7ab94;
}
#accueilPage #accueil3 {
  padding-bottom: var(--padding-150);
  padding-top: 50px;
  position: relative;
  width: 100%;
}
#accueilPage #accueil3:after {
  content: url(imgs/icons/tree-full.svg);
  position: absolute;
  bottom: 0px;
  left: 85%;
  width: 100%;
  height: 250px;
}
#accueilPage #accueil3:before {
  content: url(imgs/icons/tree-small.svg);
  position: absolute;
  bottom: 0px;
  left: 80%;
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
#accueilPage #accueil3 .width-10 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--padding-100);
}
#accueilPage #accueil3 .width-10 .left {
  width: 50%;
  height: 450px;
}
#accueilPage #accueil3 .width-10 .right {
  width: 35%;
  margin: 0 auto;
}
#accueilPage #accueil3 .width-10 .right p {
  max-width: 47ch;
  text-align: justify;
  margin-bottom: 20px;
}
#accueilPage #accueil4 {
  padding-bottom: var(--padding-100);
}
#accueilPage #accueil4 .width-10 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--padding-100);
}
#accueilPage #accueil4 .width-10 .left {
  width: calc(40% - var(--padding-100));
}
#accueilPage #accueil4 .width-10 .left p {
  max-width: 47ch;
  margin-bottom: 20px;
  text-align: justify;
}
#accueilPage #accueil4 .width-10 .right {
  width: 60%;
}

#communePage #commune .width-5 .top {
  height: 950px;
}
#communePage #commune .width-5 .top img {
  -o-object-position: top;
     object-position: top;
}
#communePage #commune2 {
  padding-bottom: 50px;
  padding-top: 50px;
}
#communePage #commune2 .width-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
#communePage #commune2 .width-5 .left {
  width: 100%;
  position: relative;
  height: 100%;
}
#communePage #commune2 .width-5 .right {
  order: -1;
  width: 100%;
  margin-bottom: 30px;
}
#communePage #commune2 .width-5 .right h2.title {
  display: inline-block;
}
#communePage #commune2 .width-5 .right p {
  margin-bottom: 20px;
  text-align: justify;
}
#communePage #commune3 {
  padding-bottom: 0px;
}
#communePage #commune3 .width-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#communePage #commune3 .width-5 .right {
  width: 55%;
  position: relative;
  height: 100%;
  min-height: 500px;
}
#communePage #commune3 .width-5 .left {
  width: 100%;
}
#communePage #commune3 .width-5 .left h2.title {
  display: inline-block;
}
#communePage #commune3 .width-5 .left p {
  margin-bottom: 20px;
  text-align: justify;
}

#projetPage #projet .top {
  height: 90vh;
  max-height: 1080px;
  position: relative;
}
#projetPage #projet .top .box {
  position: absolute;
  width: 308px;
  height: 67px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 65%;
  right: 1%;
  background-color: #c7ab94;
  transform: rotate(90deg);
  transform-origin: 100% 65%;
}
#projetPage #projet .top .box a {
  color: #f8fafc;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0%;
  border-bottom: 1px solid #f8fafc;
  transition: all 0.3s linear;
}
#projetPage #projet .top .box a:hover {
  transform: scale(1.1);
}
#projetPage #projet .bottom .description {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #c7ab94;
  padding: 32px 64px 32px 32px;
  flex-wrap: wrap;
  position: relative;
  letter-spacing: 1px;
  display: grid;
  grid-template-columns: 1.2fr 1fr 0.8fr;
  gap: 4px 32px;
  position: absolute;
  bottom: 10px;
  left: 10%;
}
#projetPage #projet .bottom .description li {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin: 10px;
  position: relative;
  padding-left: 12px;
}
#projetPage #projet .bottom .description li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background-color: white;
  width: 1px;
  height: 36px;
  display: block;
}
#projetPage #projet .bottom .description li span,
#projetPage #projet .bottom .description li a {
  color: white;
  text-transform: uppercase;
  font-family: "cofo-sans-variable", sans-serif;
  font-size: var(--font-size-subheader);
}
#projetPage #projet .bottom .description li span:last-of-type,
#projetPage #projet .bottom .description li a:last-of-type {
  text-transform: none;
}
#projetPage #projet2 {
  padding-top: var(--padding-150);
  padding-bottom: var(--padding-100);
}
#projetPage #projet2 .width-10 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--padding-100);
}
#projetPage #projet2 .width-10 .left {
  width: calc(40% - var(--padding-100));
}
#projetPage #projet2 .width-10 .left p {
  max-width: 47ch;
  margin-bottom: 20px;
  text-align: justify;
}
#projetPage #projet2 .width-10 .right {
  width: 60%;
}
#projetPage #projet2 .width-10 .right video {
  width: 100%;
  height: 100%;
}
#projetPage #projet3,
#projetPage #projet5 {
  padding-bottom: var(--padding-150);
  padding-top: 50px;
  position: relative;
  width: 100%;
}
#projetPage #projet3:after,
#projetPage #projet5:after {
  content: url(imgs/icons/tree-full.svg);
  position: absolute;
  bottom: 0px;
  left: 85%;
  width: 100%;
  height: 250px;
}
#projetPage #projet3:before,
#projetPage #projet5:before {
  content: url(imgs/icons/tree-small.svg);
  position: absolute;
  bottom: 0px;
  left: 80%;
  width: 100%;
  height: 150px;
  -o-object-fit: contain;
     object-fit: contain;
}
#projetPage #projet3 .width-10,
#projetPage #projet5 .width-10 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--padding-100);
}
#projetPage #projet3 .width-10 .left,
#projetPage #projet5 .width-10 .left {
  width: 50%;
  height: 450px;
}
#projetPage #projet3 .width-10 .right,
#projetPage #projet5 .width-10 .right {
  width: 35%;
  margin: 0 auto;
}
#projetPage #projet3 .width-10 .right p,
#projetPage #projet5 .width-10 .right p {
  max-width: 47ch;
  margin-bottom: 20px;
  text-align: justify;
}
#projetPage #projet4 {
  padding-top: 50px;
  padding-bottom: var(--padding-150);
}
#projetPage #projet4 .width-10 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#projetPage #projet4 .width-10 .left {
  width: 40%;
}
#projetPage #projet4 .width-10 .left p {
  margin-bottom: 20px;
  text-align: justify;
}
#projetPage #projet4 .width-10 .right {
  width: 35%;
}
#projetPage #projet4 .width-10 .right .conatiner {
  display: flex;
  align-items: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
#projetPage #projet4 .width-10 .right .conatiner .box {
  width: 45%;
  margin-bottom: 24px;
  margin-left: 24px;
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  border: 1px solid #abc7d6;
  padding: 24px;
}
#projetPage #projet4 .width-10 .right .conatiner .box span {
  font-weight: 400;
  font-size: 32px;
  line-height: 20px;
  letter-spacing: 0%;
  display: block;
  text-align: center;
  color: #abc7d6;
  margin-bottom: 16px;
}
#projetPage #projet4 .width-10 .right .conatiner .box p {
  text-align: center;
  color: #9c9c9c;
}

#situationPage #situation {
  position: relative;
}
#situationPage #situation:after, #situationPage #situation:before {
  content: "";
  background-image: url(imgs/icons/tree-full.svg);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
  border-bottom: 1px solid #e5e8dc;
}
#situationPage #situation:after {
  bottom: 0px;
  right: 200px;
  width: 175px;
  height: 251px;
}
#situationPage #situation:before {
  bottom: 0px;
  right: 100px;
  width: 106px;
  height: 154px;
  opacity: 0.5;
}
#situationPage #situation .width-5 .top {
  height: auto;
  position: relative;
}
#situationPage #situation .width-5 .top .box {
  position: absolute;
  width: 308px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 70%;
  right: 0%;
  background-color: #c7ab94;
  transform: rotate(90deg);
  transform-origin: 100% 70%;
}
#situationPage #situation .width-5 .top .box a {
  color: #f8fafc;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0%;
  border-bottom: 1px solid #f8fafc;
  transition: all 0.3s linear;
}
#situationPage #situation .width-5 .top .box a:hover {
  transform: scale(1.1);
}
#situationPage #situation .titleSection {
  text-align: center;
  padding-top: 88px;
  padding-bottom: 150px;
}
#situationPage #situation .titleSection .subtitle {
  margin: 0 auto;
  text-align: center;
}
#situationPage #situation .titleSection .subtitle:before {
  margin: 0 auto 10px auto;
}
#situationPage #situation .titleSection .title {
  margin: 30px auto 0 auto;
  text-align: center;
}
#situationPage #situation .titleSection .title span {
  display: inline-block;
}
#situationPage #situation .titleSection hr {
  width: 342px;
  height: 1px;
  margin: 24px auto 0 auto;
}
#situationPage .icons-situation .width-5 ul {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
#situationPage .icons-situation .width-5 ul li {
  display: flex;
  flex-direction: column;
  text-align: center;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 30%;
}
#situationPage .icons-situation .width-5 ul li::before {
  content: "";
  width: 50px;
  height: 50px;
  background-color: rgba(199, 171, 148, 0.3);
  border-radius: 50%;
  display: block;
  position: absolute;
  top: -5px;
  left: calc(50% - 20px);
  transform: translateX(-50%);
}
#situationPage .icons-situation .width-5 ul li img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 30px;
}
#situationPage .icons-situation .width-5 ul li span {
  font-size: var(--fs-16);
  font-weight: 500;
  margin-bottom: 8px;
  color: #393939;
}
#situationPage .icons-situation .width-5 ul li p {
  color: #393939;
  max-width: 40ch;
  margin: 0 auto;
  text-align: center;
}
#situationPage #situation1 {
  padding-bottom: 100px;
  padding-top: 150px;
}
#situationPage #situation1 .width-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#situationPage #situation1 .width-5 .right {
  width: 60%;
  position: relative;
  margin-right: -5%;
}
#situationPage #situation1 .width-5 .right img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#situationPage #situation1 .width-5 .left {
  width: 38%;
}
#situationPage #situation1 .width-5 .left .title {
  margin-bottom: 100px;
}
#situationPage #situation1 .width-5 .left .table {
  border-collapse: collapse;
  width: 100%;
}
#situationPage #situation1 .width-5 .left .table thead tr td:first-child p {
  text-align: left;
}
#situationPage #situation1 .width-5 .left .table thead tr td {
  font-weight: 500;
  padding: 10px;
  white-space: nowrap;
  background-color: #f8fafc;
  text-align: center;
  color: #c7ab94;
}
#situationPage #situation1 .width-5 .left .table thead tr td .flex-table {
  display: flex;
  align-items: center;
  justify-content: center;
}
#situationPage #situation1 .width-5 .left .table thead tr td p {
  color: #c7ab94;
  margin-left: 5px;
  text-align: center;
  font-size: 16px;
}
#situationPage #situation1 .width-5 .left .table thead tr td img {
  height: 20px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#situationPage #situation1 .width-5 .left .table tbody tr:not(:last-of-type) td {
  border-bottom: 0.5px solid #9c9c9c;
}
#situationPage #situation1 .width-5 .left .table tbody tr td {
  padding: 10px;
  min-width: auto;
  text-align: center;
}
#situationPage #situation1 .width-5 .left .table tbody tr td:first-of-type {
  min-width: auto;
  text-align: left;
}
#situationPage #situation1 .width-5 .left .table tbody tr td:first-of-type p {
  text-align: left;
}
#situationPage #situation2 .width-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#situationPage #situation2 .width-5 .left {
  width: 50%;
  position: relative;
  height: 100%;
  min-height: 500px;
}
#situationPage #situation2 .width-5 .left .map {
  height: 100%;
  width: 100%;
}
#situationPage #situation2 .width-5 .left .map .swiper-map::part(container) {
  overflow: visible;
}
#situationPage #situation2 .width-5 .left .map .swiper-map::part(button-prev) {
  width: 30px;
  height: 30px;
  top: 50%;
  left: 0;
  color: white;
  background-color: #e5e9dd;
  border-radius: 50%;
  padding: 10px;
  transform: translateX(-50%);
}
#situationPage #situation2 .width-5 .left .map .swiper-map::part(button-prev) svg {
  width: 20px !important;
  height: 20px !important;
}
#situationPage #situation2 .width-5 .left .map .swiper-map::part(button-next) {
  width: 30px;
  height: 30px;
  top: 50%;
  left: 100%;
  color: white;
  background-color: #e5e9dd;
  border-radius: 50%;
  padding: 10px;
  transform: translateX(-50%);
}
#situationPage #situation2 .width-5 .right {
  width: 45%;
}
#situationPage #situation2 .width-5 .right .title {
  margin-bottom: 50px;
}
#situationPage #situation2 .width-5 .right .table {
  border-collapse: collapse;
  width: 100%;
}
#situationPage #situation2 .width-5 .right .table thead tr td {
  font-weight: 500;
  padding: 10px;
  text-align: center;
  white-space: nowrap;
  background-color: #f8fafc;
}
#situationPage #situation2 .width-5 .right .table thead tr td:first-child p {
  text-align: left;
}
#situationPage #situation2 .width-5 .right .table thead tr td .flex-table {
  display: flex;
  align-items: center;
  justify-content: center;
}
#situationPage #situation2 .width-5 .right .table thead tr td p {
  color: #c7ab94;
  font-size: 16px;
  text-align: center;
}
#situationPage #situation2 .width-5 .right .table thead tr td img {
  height: 20px;
  width: auto;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 10px;
}
#situationPage #situation2 .width-5 .right .table tbody tr td {
  padding: 20px 10px;
  border-bottom: 1px solid #9c9c9c;
  text-align: center;
}
#situationPage #situation2 .width-5 .right .table tbody tr td:first-of-type {
  min-width: auto;
  text-align: left;
}

#plans-et-prix-location {
  margin-top: 5px;
  background-color: white;
}
#plans-et-prix-location * {
  font-family: "cofo-sans-variable", sans-serif;
}
#plans-et-prix-location .txt-content {
  padding-top: 150px;
  margin-left: 0;
  width: 45%;
}
#plans-et-prix-location .txt-content ul li {
  font-size: 18px;
  font-weight: 500;
}
#plans-et-prix-location .facade-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 100px;
  width: 100%;
  overflow: auto;
  height: 100vh;
}
#plans-et-prix-location .facade-container .facade {
  width: 40%;
  right: 5%;
  z-index: 1;
  position: fixed;
  top: 70px;
}
#plans-et-prix-location .facade-container .prix {
  margin-top: 50px;
  width: 34%;
}
#plans-et-prix-location .facade-container .prix .pieces-selection {
  border: 1px solid #9c9c9c;
  padding: 24px 10%;
  border-radius: 24px;
  position: relative;
}
#plans-et-prix-location .facade-container .prix .pieces-selection p {
  font-weight: 400;
  font-size: 14px;
  color: #393939;
  line-height: 1;
  position: absolute;
  top: -23px;
  left: 34px;
  background-color: white;
  padding: 15px;
}
#plans-et-prix-location .facade-container .prix .pieces-selection .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 5px;
}
#plans-et-prix-location .facade-container .prix .pieces-selection .container label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: -moz-max-content;
  width: max-content;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#plans-et-prix-location .facade-container .prix .pieces-selection .container label input {
  display: none;
}
#plans-et-prix-location .facade-container .prix .pieces-selection .container label input:checked + .checkmark {
  background-color: #9c9c9c;
  border-color: #9c9c9c;
}
#plans-et-prix-location .facade-container .prix .pieces-selection .container label span {
  color: #393939;
  font-size: 14px;
  font-family: "cofo-sans-variable", sans-serif;
  white-space: nowrap;
}
#plans-et-prix-location .facade-container .prix .pieces-selection .container label .checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid transparent;
  display: block;
  position: relative;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  padding: 2px;
  outline: 1px solid #393939;
  outline-offset: 2px;
  flex-shrink: 0;
  margin-right: 10px;
}
#plans-et-prix-location .facade-container .prix .status-container {
  padding-top: 32px;
  padding-bottom: 32px;
}
#plans-et-prix-location .facade-container .prix .status-container p {
  font-weight: 400;
  font-size: 14px;
  line-height: 17.5px;
  letter-spacing: 0px;
  margin-bottom: 12px;
  color: #393939;
}
#plans-et-prix-location .facade-container .prix .status-container .container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
#plans-et-prix-location .facade-container .prix .status-container .container > div {
  width: 30%;
  max-width: 90px;
}
#plans-et-prix-location .facade-container .prix .status-container .container > div span {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
}
#plans-et-prix-location .facade-container .prix .status-container .container > div span.disp {
  background-color: #80bb9f;
}
#plans-et-prix-location .facade-container .prix .status-container .container > div span.res {
  background-color: #ffdfa0;
}
#plans-et-prix-location .facade-container .prix .status-container .container > div span.loue {
  background-color: #eb7b81;
}
#plans-et-prix-location .facade-container .prix .status-container .container > div p {
  text-align: center;
  margin-top: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0px;
  color: #393939;
  margin-bottom: 0;
}
#plans-et-prix-location .facade-container .prix .tabs {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: 50px;
  border-bottom: 1px solid #c7ab94;
  gap: 12px;
}
#plans-et-prix-location .facade-container .prix .tabs .tab {
  cursor: pointer;
  padding: 10px;
  background-color: white;
  white-space: nowrap;
  transition: all 0.3s linear;
  color: rgba(57, 57, 57, 0.3);
  border-top-right-radius: 4px;
  border-top-left-radius: 4px;
  border: 1px solid rgba(57, 57, 57, 0.3);
  border-radius: 50px;
  margin-bottom: 12px;
  width: 48%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#plans-et-prix-location .facade-container .prix .tabs .tab.active {
  top: 0px;
  color: #e5e9dd;
  background-color: #c7ab94;
  border: 1px solid #c7ab94;
}
#plans-et-prix-location .facade-container .prix .tables {
  position: relative;
}
#plans-et-prix-location .facade-container .prix .tables #table-no-results {
  position: absolute;
  top: 24px;
  left: 0;
  display: flex;
  width: 100%;
  display: none;
}
#plans-et-prix-location .facade-container .prix .tables #table-no-results div {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
}
#plans-et-prix-location .facade-container .prix .tables #table-no-results div p {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
}
#plans-et-prix-location .facade-container .prix .location-legend {
  display: none;
}
#plans-et-prix-location .facade-container .prix .legend-data {
  margin-top: 50px;
}
#plans-et-prix-location .facade-container .prix .legend-data p {
  margin: 10px 0;
}
#plans-et-prix-location .facade-container .prix .facade-table {
  overflow-y: auto;
  height: 49vh;
  min-height: 400px;
  display: none;
}
#plans-et-prix-location .facade-container .prix .facade-table.active {
  display: block;
}
#plans-et-prix-location .facade-container .prix .facade-table.table-location .lot-detail .lot-info div {
  width: 20%;
}
#plans-et-prix-location .facade-container .prix .facade-table::-webkit-scrollbar {
  width: 5px;
}
#plans-et-prix-location .facade-container .prix .facade-table::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 5px;
}
#plans-et-prix-location .facade-container .prix .facade-table::-webkit-scrollbar-track {
  background-color: #fff;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail {
  padding-right: 20px;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail li {
  margin-bottom: 8px;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail li.active {
  background-color: #eee6df;
  border-radius: 100px;
  color: #393939;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail li p {
  font-weight: 700;
  font-size: 16px;
  line-height: 16px;
  letter-spacing: 0%;
  text-align: center;
  color: #393939;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail li .price p {
  color: #80bb9f;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail li .price-hidden {
  width: 10px !important;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header {
  display: flex;
  padding: 20px 10px 20px 0;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  position: relative;
  border: 2px solid #eee6df;
  border-radius: 100px;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header.active {
  background-color: #e5e9dd;
  border-radius: 100px;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header .showMore {
  position: absolute;
  top: 20%;
  right: -15px;
  background-color: #eee6df;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: none;
  border: 1px solid #e5e9dd;
  transition: all 0.4s ease-in-out;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header .showMore.active {
  transform: rotate(180deg);
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header .showMore.r {
  background-color: #ffdfa0;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header .showMore.d {
  background-color: #80bb9f;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header .showMore.v {
  background-color: #eb7b81;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header .showMore img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header:hover {
  background: #eee6df;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header > div {
  width: 25%;
  border-right: 1px solid #393939;
  display: flex;
  align-items: center;
  justify-content: center;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header > div:nth-child(4) {
  border-right: none;
  min-width: 120px;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header > div p {
  margin: 0 5px;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header > div sup {
  font-size: 13px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info {
  align-items: flex-start;
  justify-content: space-between;
  text-align: center;
  display: flex;
  visibility: hidden;
  height: 0;
  opacity: 0;
  width: 92%;
  border-right: 1px solid #eee6df;
  border-left: 1px solid #eee6df;
  margin: 0 auto;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info sup,
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info p {
  color: #393939;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info .statut-txt p {
  color: transparent;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info.show {
  padding: 20px 10px 10px 0;
  visibility: initial;
  height: auto;
  opacity: 1;
  transition: all 0.5s linear;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info div {
  width: 25%;
  padding: 5px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info div p {
  margin: 0 5px;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info div:last-child {
  border-right: none;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn {
  border-bottom: 2px solid #edeeec;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  display: flex;
  visibility: hidden;
  height: 0;
  opacity: 0;
  width: 92%;
  margin: 0 auto;
  border-bottom: 1px solid #eee6df;
  border-right: 1px solid #eee6df;
  border-left: 1px solid #eee6df;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn.show {
  padding: 10px 10px 20px 0;
  visibility: initial;
  height: auto;
  opacity: 1;
  transition: all 0.5s linear;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn a,
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn div {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn a sup,
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn div sup {
  color: #393939;
  margin-bottom: 5px;
  font-size: 10px;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn a:last-child,
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn div:last-child {
  border-right: none;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn a img,
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn div img {
  width: 30px;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  padding-bottom: 20px;
  transition: scale 0.3s linear;
}
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn a img:hover,
#plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn div img:hover {
  transform: scale(1.1);
}
#plans-et-prix-location .facade-container .plan-big {
  top: 0;
  width: 50vw;
  right: -100%;
  position: fixed;
  z-index: 9999;
  background-color: #ffffff;
  border: 1px solid #e5e9dd;
  padding: 40px;
  transition-duration: 0.6s;
  opacity: 0;
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#plans-et-prix-location .facade-container .plan-big.active {
  right: 0;
  opacity: 1;
}
#plans-et-prix-location .facade-container .plan-big img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#plans-et-prix-location .facade-container .plan-big .close {
  position: absolute;
  top: 10px;
  right: 10px;
  background: none;
  border: none;
  width: 50px;
  height: 50px;
  font-size: 40px;
  line-height: 50px;
  cursor: pointer;
  font-weight: lighter;
  z-index: 1000;
}
#plans-et-prix-location .facade-container .v.hover *,
#plans-et-prix-location .facade-container .v:hover * {
  fill: #f98888 !important;
}
#plans-et-prix-location .facade-container .r.hover *,
#plans-et-prix-location .facade-container .r:hover * {
  fill: #f2eba6 !important;
}
#plans-et-prix-location .facade-container .d.hover *,
#plans-et-prix-location .facade-container .d:hover * {
  fill: #9ee18e !important;
}
#plans-et-prix-location .facade-container .grass {
  fill: #b2ceb6 !important;
  stroke: none !important;
  cursor: default !important;
}
#plans-et-prix-location .facade-container .grey {
  fill: #cccccc;
}
#plans-et-prix-location .facade-container sup {
  font-size: 10px;
}
#plans-et-prix-location .tooltip {
  position: fixed;
  z-index: 99;
  visibility: hidden;
  background-color: #c7ab94;
  width: 80px;
  height: 80px;
  transform: rotate(45deg);
  top: 40%;
  left: 38%;
  text-align: center; /* Center text horizontally */
  line-height: 100px; /* Center text vertically */
  transform-origin: center;
}
#plans-et-prix-location .tooltip > div {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition-duration: 0.2s;
  width: 80px;
  height: 80px;
  transform: rotate(-45deg);
  text-align: center;
}
#plans-et-prix-location .tooltip > div * {
  color: white;
}
#plans-et-prix-location .tooltip > div h5 {
  font-family: "cofo-sans-variable", sans-serif;
  font-size: 16px;
  line-height: initial;
  margin-bottom: initial;
}
#plans-et-prix-location .tooltip > div p {
  font-size: 12px;
  line-height: 110%;
  text-align: center;
}
#plans-et-prix-location .tooltip.visible {
  visibility: visible;
}
#plans-et-prix-location .tooltip.visible > div {
  opacity: 1;
}
#plans-et-prix-location .floor {
  transition: all 0.4s linear;
}
#plans-et-prix-location .floor.move {
  transform: translateX(50px) translateY(-50px);
}
#plans-et-prix-location #BAT-B .floor {
  transition: all 0.4s linear;
}
#plans-et-prix-location #BAT-B .floor.move {
  transform: translateX(0px) translateY(0px);
}
#plans-et-prix-location #lot-number-tooltip {
  white-space: pre-line;
}
#plans-et-prix-location .icons-section {
  position: relative;
  z-index: 3;
}
#plans-et-prix-location .icons-section .titleSection .subtitle {
  color: #393939;
  text-align: center;
}
#plans-et-prix-location .icons-section .titleSection .subtitle::before {
  margin: 0 auto 20px auto;
}
#plans-et-prix-location .icons-section .width-5 {
  margin-top: 55px;
}
#plans-et-prix-location .icons-section .width-5 ul li a {
  display: block;
}
#plans-et-prix-location .icons-section .width-5 ul li:hover img {
  width: 50px;
}
#plans-et-prix-location .icons-section .width-5 ul li:nth-child(2) img, #plans-et-prix-location .icons-section .width-5 ul li:nth-child(3) img {
  margin-left: 20px;
}
#plans-et-prix-location .icons-section .width-5 ul li img {
  width: 40px;
  margin-bottom: 0;
  transition: all 0.3s linear;
}
#plans-et-prix-location .icons-section .width-5 ul li p {
  margin-top: 20px;
}
#plans-et-prix-location .contactSection {
  padding-top: 150px;
}

#galerie {
  padding-top: 250px;
}
#galerie .images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 150px;
}
#galerie .images a {
  display: block;
  height: 340px;
  overflow: hidden;
  border: 8px solid white;
}
#galerie .images a img {
  transition: all 0.3s linear;
  -o-object-fit: cover;
     object-fit: cover;
}
#galerie .images a img:hover {
  transform: scale(1.1);
}
#galerie .images a:first-child {
  width: 45%;
}
#galerie .images a:nth-child(2), #galerie .images a:nth-child(3), #galerie .images a:nth-child(16) {
  width: 55%;
}
#galerie .images a:nth-child(4), #galerie .images a:nth-child(5), #galerie .images a:nth-child(17), #galerie .images a:nth-child(18) {
  width: 22.2%;
}
#galerie .images a:nth-child(6), #galerie .images a:nth-child(8), #galerie .images a:nth-child(19), #galerie .images a:nth-child(20), #galerie .images a:nth-child(22), #galerie .images a:nth-child(23), #galerie .images a:nth-child(25), #galerie .images a:nth-child(26) {
  width: 30%;
  height: 560px;
}
#galerie .images a:nth-child(7), #galerie .images a:nth-child(21), #galerie .images a:nth-child(24), #galerie .images a:nth-child(27) {
  width: 40%;
  height: 560px;
}
#galerie .images a:nth-child(9), #galerie .images a:nth-child(10) {
  width: 30%;
}
#galerie .images a:nth-child(11) {
  width: 40%;
}
#galerie .images a:nth-child(12) {
  width: 65%;
}
#galerie .images a:nth-child(13) {
  width: 35%;
}
#galerie .images a:nth-child(15) {
  width: 65%;
  height: 560px;
}
#galerie .images a:nth-child(14) {
  width: 35%;
  height: 560px;
}

.contactSection {
  padding-top: 50px;
  padding-bottom: 150px;
  position: relative;
  background-color: white;
  z-index: 3;
}
.contactSection:after, .contactSection:before {
  content: "";
  background-image: url(imgs/icons/tree-full.svg);
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.contactSection:after {
  bottom: -23px;
  left: 50px;
  width: 443px;
  height: 673px;
}
.contactSection:before {
  bottom: -3px;
  right: 150px;
  width: 219px;
  height: 315px;
}
.contactSection .width-10 {
  width: 100%;
  margin: 0 auto;
  background-color: #fcfaf9;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 220px;
  padding-bottom: 220px;
}
.contactSection .width-10 .logo {
  width: 233px;
}
.contactSection .width-10 .data {
  margin-top: 40px;
  margin-bottom: 40px;
}
.contactSection .width-10 .data p {
  text-align: center;
  margin-bottom: 21px;
}
.contactSection .width-10 .data a {
  text-align: center;
  display: block;
}
.contactSection .width-10 .btn {
  margin-top: 0;
  position: relative;
  z-index: 4;
}

/*** CONTACT PAGE ***/
#contact {
  padding-top: var(--padding-150);
  position: relative;
}
#contact:after {
  content: url(imgs/icons/tree.svg);
  width: auto;
  height: auto;
  position: absolute;
  bottom: 28%;
  right: 0%;
  z-index: -1;
}
#contact:before {
  content: url(imgs/icons/tree.svg);
  transform: scaleX(-1);
  width: auto;
  height: auto;
  position: absolute;
  bottom: 28%;
  left: 0%;
  z-index: -1;
}
#contact .width-10 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8%;
  padding-right: 8%;
}
#contact .width-10 .left {
  width: 100%;
}
#contact .width-10 .left .subtitle::before {
  display: none;
}
#contact .width-10 .left .title {
  margin-bottom: 80px;
  max-width: 35ch;
}
#contact .width-10 .left .title span {
  display: inline;
}
#contact .width-10 .left .title::before {
  height: 60%;
}
#contact .width-10 .left form {
  display: flex;
  justify-content: space-between;
}
#contact .width-10 .left form .wrapper {
  width: 47%;
}
#contact .width-10 .left form .form-flex {
  display: flex;
  text-align: left;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
  width: 47%;
}
#contact .width-10 .left form .form-flex div {
  width: 100%;
}
#contact .width-10 .left form .form-flex input:not([type=submit]),
#contact .width-10 .left form .form-flex textarea {
  background: #f8fafc;
  outline: none;
  border: 1px solid #abc7d6;
  font-size: var(--fs-16);
  text-align: left;
  color: #abc7d6;
  font-weight: bold;
  padding: 14px;
  width: 100%;
  margin-bottom: 24px;
  max-width: 675px;
}
#contact .width-10 .left form .form-flex input:not([type=submit])::-moz-placeholder, #contact .width-10 .left form .form-flex textarea::-moz-placeholder {
  font-family: "cofo-sans-variable", sans-serif;
  color: #abc7d6;
  font-size: var(--fs-14);
  font-weight: 400;
}
#contact .width-10 .left form .form-flex input:not([type=submit])::placeholder,
#contact .width-10 .left form .form-flex textarea::placeholder {
  font-family: "cofo-sans-variable", sans-serif;
  color: #abc7d6;
  font-size: var(--fs-14);
  font-weight: 400;
}
#contact .width-10 .left form .interesse,
#contact .width-10 .left form .appartements,
#contact .width-10 .left form .en,
#contact .width-10 .left form .besoin {
  max-width: 675px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: var(--gap-32);
  flex-direction: column;
}
#contact .width-10 .left form .interesse legend,
#contact .width-10 .left form .appartements legend,
#contact .width-10 .left form .en legend,
#contact .width-10 .left form .besoin legend {
  font-family: "cofo-sans-variable", sans-serif;
  font-size: var(--fs-16);
  color: #c7ab94;
}
#contact .width-10 .left form .interesse .checkboxes,
#contact .width-10 .left form .appartements .checkboxes,
#contact .width-10 .left form .en .checkboxes,
#contact .width-10 .left form .besoin .checkboxes {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 36px;
  flex-wrap: wrap;
}
#contact .width-10 .left form .interesse .checkboxes label,
#contact .width-10 .left form .appartements .checkboxes label,
#contact .width-10 .left form .en .checkboxes label,
#contact .width-10 .left form .besoin .checkboxes label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--gap-24);
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#contact .width-10 .left form .interesse .checkboxes label input,
#contact .width-10 .left form .appartements .checkboxes label input,
#contact .width-10 .left form .en .checkboxes label input,
#contact .width-10 .left form .besoin .checkboxes label input {
  display: none;
}
#contact .width-10 .left form .interesse .checkboxes label input:checked + .checkmark,
#contact .width-10 .left form .appartements .checkboxes label input:checked + .checkmark,
#contact .width-10 .left form .en .checkboxes label input:checked + .checkmark,
#contact .width-10 .left form .besoin .checkboxes label input:checked + .checkmark {
  background-color: #969696;
  border-color: #969696;
}
#contact .width-10 .left form .interesse .checkboxes label span,
#contact .width-10 .left form .appartements .checkboxes label span,
#contact .width-10 .left form .en .checkboxes label span,
#contact .width-10 .left form .besoin .checkboxes label span {
  color: #393939;
  font-size: var(--fs-16);
  font-family: "cofo-sans-variable", sans-serif;
  white-space: nowrap;
}
#contact .width-10 .left form .interesse .checkboxes label .checkmark,
#contact .width-10 .left form .appartements .checkboxes label .checkmark,
#contact .width-10 .left form .en .checkboxes label .checkmark,
#contact .width-10 .left form .besoin .checkboxes label .checkmark {
  width: 16px;
  height: 16px;
  border: 1px solid transparent;
  display: block;
  position: relative;
  transition: all 0.2s ease-in-out;
  box-sizing: border-box;
  padding: 2px;
  outline: 1px solid #969696;
  outline-offset: 2px;
  flex-shrink: 0;
}
#contact .width-10 .left form .interesse {
  padding-bottom: 30px;
  padding-left: 24px;
  border-bottom: 1px solid #393939;
}
#contact .width-10 .left form .appartements {
  padding-bottom: 30px;
  padding-left: 24px;
  padding-top: 30px;
  border-bottom: 1px solid #393939;
}
#contact .width-10 .left form .en {
  padding-top: 30px;
  padding-bottom: 30px;
  padding-left: 24px;
  border-bottom: 1px solid #393939;
}
#contact .width-10 .left form .besoin {
  padding-top: 30px;
  padding-left: 24px;
}
#contact .width-10 .left form #submit {
  width: 243px;
  margin: 0 auto;
}
#contact .acteurs {
  margin-top: 100px;
  background-color: #f8fafc;
  padding-top: 150px;
  padding-left: 10%;
  padding-right: 10%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#contact .acteurs h2 {
  margin-bottom: 50px;
}
#contact .acteurs h2::before {
  display: none;
}
#contact .acteurs .wrapper {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#contact .acteurs .wrapper:first-of-type {
  margin-bottom: 60px;
}
#contact .acteurs .wrapper > div {
  width: 33%;
  text-align: center;
}
#contact .acteurs .wrapper > div .logo {
  display: block;
  width: 233px;
  height: 76px;
  margin: 30px auto 30px auto;
}
#contact .acteurs .wrapper > div .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#contact .acteurs .wrapper > div .logo span {
  font-size: 24px;
  text-align: center;
}
#contact .acteurs .wrapper p.acteur-title {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  font-weight: bold;
  line-height: 17.5px;
  letter-spacing: 2px;
  color: #9c9c9c;
  margin-bottom: 12px;
}
#contact .acteurs .wrapper p.acteur-name {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  font-weight: bold;
  line-height: 17.5px;
  letter-spacing: 2px;
  color: #393939;
  margin-bottom: 12px;
}
#contact .acteurs .wrapper p,
#contact .acteurs .wrapper a {
  font-weight: 400;
  letter-spacing: 0px;
  text-align: center;
  color: #393939;
  transition: all 0.3s linear;
  display: block;
}
#contact .acteurs .wrapper a:hover {
  color: #c7ab94;
}

/*** FOOTER ***/
footer {
  border-top: 1px solid #e5e9dd;
  padding-top: 80px;
  padding-bottom: 60px;
  position: relative;
  background-color: white;
  z-index: 3;
}
footer .width-10 {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 8%;
  padding-right: 8%;
}
footer .width-10 .left {
  width: 30%;
}
footer .width-10 .left a {
  width: 250px;
  display: block;
}
footer .width-10 .left a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .width-10 .center {
  width: 35%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  gap: 10px;
}
footer .width-10 .center p {
  font-size: 14px;
  max-width: initial;
  align-items: center !important;
}
footer .width-10 .center p a {
  margin: 5px 0;
  display: inline-block;
  text-decoration: underline;
}
footer .width-10 .right {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  width: 30%;
}

/*** SUCCES ***/
#succes {
  min-height: 90vh;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
}
#succes section {
  margin-bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
#succes div {
  height: 100%;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
#succes h2 {
  font-size: 32px;
  text-align: center;
}
#succes .icon {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  font-size: 80px;
  border-radius: 15px;
  border: solid 10px #ffffff;
  box-shadow: 0 0 0 10px #2e3136;
  margin: 0 auto 30px auto;
  transition-duration: 0.6s;
  background-color: #ffffff;
}
#succes .icon img {
  width: 30px;
  height: 30px;
  transition-duration: 0.6s;
  transition-delay: 0.2s;
  opacity: 0;
}
#succes .icon.display img {
  width: 100px;
  height: 100px;
  opacity: 1;
}
#succes .display.sended {
  background-color: #9ee18e;
}
#succes .display.not-sended {
  background-color: #f98888;
}

/*** RESPONSIVE ***/
@media only screen and (max-width: 1700px) {
  header .width .logo {
    width: 200px;
  }
  .width-10 {
    padding-left: 5%;
    padding-right: 5%;
  }
  #situationPage #situation:after {
    bottom: 100px;
    width: 175px;
    height: 251px;
  }
  #situationPage #situation:before {
    bottom: 100px;
    width: 106px;
    height: 154px;
  }
  #situationPage .icons-situation .width-5 ul {
    justify-content: space-between;
  }
  #galerie {
    padding-top: 200px;
  }
  #galerie .images {
    padding-bottom: 100px;
  }
  #plans-et-prix-location .facade-container .facade {
    width: 45%;
    right: 5%;
    height: 100vh;
    z-index: 1;
    position: fixed;
    overflow-y: auto;
    top: 80px;
  }
  #plans-et-prix-location .facade-container .prix {
    width: 45%;
  }
  #plans-et-prix-location .facade-container .prix .pieces-selection {
    padding-left: 30px;
  }
}
@media only screen and (max-width: 1600px) {
  #communePage #commune3 {
    padding-bottom: 0px;
  }
}
@media only screen and (max-width: 1440px) {
  :root {
    --padding-150: 100px;
  }
  header .width nav ul li a {
    font-size: 14px;
  }
  #situationPage #situation1 {
    padding-top: 100px;
  }
  #situationPage #situation1 .width-5 .left .title {
    margin-bottom: 50px;
  }
  #situationPage #situation1 .width-5 .left .table tbody tr td:first-of-type {
    min-width: 130px;
  }
  #situationPage #situation1 .width-5 .left .table tr td {
    font-size: 14px !important;
  }
  #situationPage #situation1 .width-5 .left .table tr td p {
    font-size: 13px !important;
  }
  #situationPage #situation2 .width-5 .right .table tr td {
    font-size: 14px !important;
  }
  #situationPage #situation2 .width-5 .right .table tr td p {
    font-size: 13px !important;
  }
  #projetPage #projet2 {
    padding-bottom: 50px;
  }
  #projetPage #projet4 {
    padding-top: 0;
  }
  #projetPage #projet4 .width-10 .right {
    width: 55%;
  }
  #projetPage #projet3,
  #projetPage #projet5 {
    padding-top: 0px;
  }
  #projetPage #projet3 .width-10 .right,
  #projetPage #projet5 .width-10 .right {
    margin: initial;
    width: 40%;
  }
  #projetPage #projet3 {
    padding-bottom: 100px;
  }
  #contact {
    padding-top: 200px;
  }
  #contact .width-10 {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media only screen and (max-width: 1300px) {
  .width-10 {
    padding-left: 5%;
    padding-right: 5%;
  }
  .corners img:nth-of-type(1) {
    left: 3%;
  }
  .corners img:nth-of-type(2) {
    right: 3%;
  }
  .corners img:nth-of-type(3) {
    left: 3%;
  }
  .corners img:nth-of-type(4) {
    right: 3%;
  }
  header .width .logo {
    padding: 5px;
    right: 6%;
  }
  header .width nav.active {
    top: 0;
    left: 0;
    transition: all 0.6s linear;
  }
  header .width nav {
    transition: all 0.6s linear;
    position: fixed;
    top: -100%;
    left: 0;
    background-color: #f8fafc;
    padding: 50px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 100dvh;
    transition-duration: 0.6s;
  }
  header .width nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 25px;
    margin-top: 40px;
  }
  header .width nav ul li {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  header .width nav ul li:not(:last-of-type)::after {
    display: none;
  }
  header .width nav ul li a {
    font-size: 18px;
    text-align: center;
  }
  #menu-btn {
    display: block;
    left: 6%;
  }
  #communePage #commune .width-5 .top {
    height: 550px;
    margin-top: 100px;
  }
  #situationPage #situation1 .width-5 {
    flex-direction: column;
  }
  #situationPage #situation1 .width-5 .left {
    width: 100%;
    margin-bottom: 50px;
  }
  #situationPage #situation1 .width-5 .right {
    width: 100%;
  }
  #situationPage #situation2 .width-5 {
    flex-direction: column;
  }
  #situationPage #situation2 .width-5 .left {
    width: 100%;
  }
  #situationPage #situation2 .width-5 .right {
    width: 100%;
    order: -1;
    margin-bottom: 50px;
  }
  .icons2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .icons2 .subtitle::before {
    margin: 0 auto 20px auto !important;
  }
  #plans-et-prix-location .txt-content {
    padding-top: 130px;
    width: 55%;
    margin: initial;
  }
  #plans-et-prix-location .facade-container .facade {
    top: 120px;
  }
  #plans-et-prix-location .facade-container .plan-big {
    width: 100%;
  }
  #plans-et-prix-location .facade-container .prix {
    width: 45%;
  }
  #plans-et-prix-location .contactSection {
    padding-top: 0px;
  }
  #contact {
    padding-top: 150px;
  }
  #contact .width-10 .left form .interesse .checkboxes label,
  #contact .width-10 .left form .appartements .checkboxes label,
  #contact .width-10 .left form .en .checkboxes label,
  #contact .width-10 .left form .besoin .checkboxes label {
    gap: 10px;
  }
  #contact .acteurs {
    padding-left: 5%;
    padding-right: 5%;
  }
  #galerie {
    padding-top: 150px;
  }
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  footer p,
  footer a {
    font-size: 13px !important;
  }
  footer .width-10 {
    padding-left: 4%;
    padding-right: 4%;
  }
  footer .width-10 .left a {
    width: 200px;
  }
}
@media only screen and (max-width: 1060px) {
  :root {
    --padding-150: 100px;
    --padding-100: 80px;
    --fs-14: 16px;
    --fs-16: 16px;
    --fs-20: 18px;
    --fs-32: 26px;
  }
  #loading svg {
    width: 40%;
  }
  #accueilPage #accueil2 .width-5 {
    padding-top: 80px;
    padding-bottom: 50px;
  }
  #accueilPage #accueil2 .width-5 img {
    width: 250px;
  }
  #accueilPage #accueil2 .width-5 p {
    font-size: 18px;
  }
  #situationPage #situation:after, #situationPage #situation:before {
    bottom: 0;
    z-index: -1;
  }
  #situationPage #situation .titleSection {
    margin-bottom: 0px;
  }
  #situationPage #situation .width-5 .top {
    height: 500px;
    margin-top: 100px;
  }
  #situationPage #situation1 {
    padding-top: 50px;
  }
  #situationPage .icons-situation .width-5 ul {
    flex-direction: column;
  }
  #situationPage .icons-situation .width-5 ul li {
    width: 100%;
    margin-top: 40px;
  }
  #situationPage .icons-situation .width-5 ul li p {
    max-width: 60ch;
  }
  #projetPage #projet .bottom .description {
    width: 80%;
  }
  #projetPage #projet .top .box {
    width: 250px;
    height: 67px;
    top: 65%;
    right: 1%;
  }
  #projetPage #projet2 .width-10 {
    gap: initial;
    flex-wrap: wrap;
  }
  #projetPage #projet2 .width-10 .left {
    width: 100%;
    margin-bottom: 50px;
  }
  #projetPage #projet2 .width-10 .left p {
    max-width: initial;
  }
  #projetPage #projet2 .width-10 .right {
    width: 100%;
  }
  #projetPage #projet3 {
    padding-bottom: 50px;
  }
  #projetPage #projet3 .width-10 {
    padding-top: 0px;
    gap: initial;
    flex-wrap: wrap;
  }
  #projetPage #projet3 .width-10 .left {
    width: 100%;
  }
  #projetPage #projet3 .width-10 .right {
    width: 100%;
    order: -1;
    margin-bottom: 50px;
  }
  #projetPage #projet3 .width-10 .right p {
    max-width: initial;
  }
  #projetPage #images {
    padding-top: 100px;
    padding-bottom: var(--padding-150);
  }
  #projetPage #images .titleSection {
    margin-bottom: 50px;
  }
  #projetPage #images .title:before,
  #projetPage #images h2:before {
    display: none;
  }
  #projetPage #projet4 .width-10 {
    flex-wrap: wrap;
  }
  #projetPage #projet4 .width-10 .left {
    width: 100%;
    margin-bottom: 50px;
  }
  #projetPage #projet4 .width-10 .left p {
    max-width: initial;
  }
  #projetPage #projet4 .width-10 .right {
    width: 100%;
  }
  #projetPage #projet5 {
    padding-bottom: 50px;
  }
  #projetPage #projet5 .width-10 {
    flex-direction: column;
    gap: 50px;
  }
  #projetPage #projet5 .width-10 .left {
    width: 100%;
  }
  #projetPage #projet5 .width-10 .right {
    width: 100%;
  }
  #projetPage #projet5 .width-10 .right p {
    max-width: initial;
  }
  .icons2 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .icons3 .width-5 ul li {
    width: 30%;
    margin: 30px;
    justify-content: flex-start;
  }
  .icons-projet {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .icons-projet .subtitle::before {
    margin: 0 auto 30px auto;
  }
  .icons-projet .width-5 .icons-projet .width-5 .toggle-button {
    font-size: 20px;
  }
  .icons-projet .width-5 .icons-projet .width-5 .toggle-button .arrow {
    width: 35px;
  }
  .icons-projet .width-5 .collapsible-content li {
    width: 85%;
  }
  .icons-projet .width-5 .collapsible-content .imgs {
    width: 85%;
  }
  #plans-et-prix-location .txt-content {
    width: 100%;
  }
  #plans-et-prix-location .contactSection,
  #plans-et-prix-location .contactSection {
    padding-top: 0px;
  }
  #plans-et-prix-location .facade-container {
    flex-wrap: wrap;
    height: auto;
  }
  #plans-et-prix-location .facade-container .facade {
    width: 100%;
    height: auto;
    position: initial;
    margin-top: 50px;
    overflow-y: initial;
    min-height: auto;
  }
  #plans-et-prix-location .facade-container .prix {
    width: 100%;
  }
  #plans-et-prix-location .facade-container .prix .pieces-selection {
    width: 100%;
  }
  #plans-et-prix-location .facade-container .prix .facade-table {
    height: 350px;
  }
  #galerie .images {
    padding-bottom: 50px;
  }
  #contact .acteurs {
    padding-top: 100px;
    padding-bottom: 0;
  }
  #contact .acteurs .wrapper {
    flex-wrap: wrap;
    gap: 50px;
  }
  #contact .acteurs .wrapper > div {
    width: 100%;
  }
  #contact .acteurs .wrapper:last-of-type .acteur-title {
    margin-bottom: 0;
  }
}
@media only screen and (max-width: 850px) {
  header .width .phone {
    left: 15%;
  }
  header .width .logo {
    width: 210px;
    height: 146px;
  }
  #loading svg {
    width: 60%;
  }
  #accueilPage #accueil3 {
    padding-bottom: 0 !important;
    padding-top: 0;
  }
  #accueilPage #accueil3 .width-10 {
    flex-direction: column;
  }
  #accueilPage #accueil3 .width-10 .left {
    width: 100%;
    height: auto;
  }
  #accueilPage #accueil3 .width-10 .right {
    width: 100%;
  }
  #accueilPage #accueil4 {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #accueilPage #accueil4 .width-10 {
    flex-direction: column;
    gap: 50px;
  }
  #accueilPage #accueil4 .width-10 .left {
    width: 100% !important;
    height: auto;
    order: 1;
  }
  #accueilPage #accueil4 .width-10 .left p {
    max-width: -moz-max-content;
    max-width: max-content;
  }
  #accueilPage #accueil4 .width-10 .right {
    width: 100% !important;
  }
  #situationPage #situation2 .width-5 .left {
    min-height: auto;
  }
  .icons-section .width-5 ul {
    flex-wrap: wrap;
  }
  .icons-section .width-5 ul li {
    width: 45%;
    margin: 20px 0;
  }
  #projetPage #projet .bottom .description {
    width: 100%;
    left: 0%;
  }
  #projetPage #projet4 {
    padding-bottom: 50px;
  }
  #projetPage #projet5 {
    padding-bottom: 0px;
  }
  .icons-projet {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  .icons-projet .width-5 .toggle-button .arrow {
    width: 35px;
  }
  .icons2 .width-5 ul li {
    width: 100%;
    gap: var(--gap-24);
    margin: 30px;
  }
  #plans-et-prix-location .width-5 {
    padding-right: 1%;
  }
  #plans-et-prix-location .facade-container {
    margin-bottom: 50px;
  }
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail li p {
    font-size: 14px;
    line-height: 16px;
  }
  #plans-et-prix-location .facade-container .prix .status-container .container {
    justify-content: space-between;
  }
  #plans-et-prix-location .icons-section .width-5 ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .contactSection {
    padding-bottom: 50px;
  }
  .contactSection:after {
    bottom: -23px;
    left: 50px;
    width: 200px;
    height: 350px;
  }
  .contactSection:before {
    bottom: -10px;
    right: 50px;
    width: 119px;
    height: 215px;
  }
  #galerie .images a {
    height: 250px !important;
    border: 4px solid white;
  }
  #galerie .images a:nth-child(6),
  #galerie .images a:nth-child(7),
  #galerie .images a:nth-child(8),
  #galerie .images a:nth-child(19),
  #galerie .images a:nth-child(20),
  #galerie .images a:nth-child(21) {
    height: 360px;
  }
  #contact .width-10 .left form {
    flex-direction: column;
  }
  #contact .width-10 .left form .wrapper {
    width: 100%;
  }
  #contact .width-10 .left form .form-flex {
    width: 100%;
  }
  #contact .acteurs {
    padding-top: 100px;
    padding-bottom: 0px;
    flex-wrap: wrap;
  }
  #contact .acteurs > div {
    margin-bottom: 50px;
    width: 100%;
  }
  #contact .width-10 .left form .form-flex input:not([type=submit]),
  #contact .width-10 .left form .form-flex textarea {
    max-width: 100%;
  }
  footer .width-10 {
    flex-direction: column;
  }
  footer .width-10 .left {
    margin-bottom: 40px;
    width: 100%;
  }
  footer .width-10 .left a {
    margin: 0 auto;
  }
  footer .width-10 .center {
    width: 100%;
  }
  footer .width-10 .right {
    width: 100%;
    text-align: center;
    align-items: center;
  }
}
@media only screen and (max-width: 580px) {
  #legales {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  header .width nav ul {
    gap: 5px;
    margin-top: 20px;
  }
  header .width nav ul li a {
    font-size: 16px;
  }
  #accueilPage #accueil .top {
    height: auto;
    margin-top: 100px;
    max-height: auto;
    position: relative;
  }
  #accueilPage #accueil2 .width-5 {
    padding-top: 50px;
  }
  #accueilPage #accueil2 .width-5 p {
    font-size: 16px;
  }
  #accueilPage #accueil3 .width-10 {
    gap: 40px !important;
  }
  #accueilPage #accueil4 {
    padding-bottom: 10px;
  }
  #communePage #commune .width-5 .top {
    height: 350px;
    margin-top: 100px;
  }
  .contactSection .width-10 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .contactSection .width-10 .data {
    z-index: 222;
  }
  #situationPage .icons-situation .width-5 ul li img {
    width: 40px;
    height: 40px;
  }
  #situationPage #situation .titleSection {
    padding-left: 3%;
    padding-right: 3%;
    padding-top: 50px;
  }
  #situationPage #situation .titleSection .title span {
    text-align: center;
  }
  #situationPage #situation .width-5 .top {
    height: 350px;
  }
  #situationPage #situation .width-5 .top .box {
    top: 70%;
    right: 2%;
  }
  #situationPage #situation1 {
    padding-bottom: 50px;
  }
  #situationPage #situation1 .width-5 .left .table tr td {
    font-size: 12px !important;
    padding: 10px 5px !important;
    min-width: auto !important;
  }
  #situationPage #situation1 .width-5 .left .table tr td img {
    width: 18px !important;
    height: auto;
  }
  #situationPage #situation1 .width-5 .left .table tbody tr td:first-of-type {
    min-width: auto;
  }
  #situationPage #situation1 .width-5 .left .table thead tr td .flex-table {
    flex-direction: column;
  }
  #situationPage #situation1 .width-5 .left .table thead tr td .flex-table p {
    display: none;
  }
  #situationPage #situation2 .width-5 .right .table thead tr td .flex-table {
    flex-direction: column;
  }
  #situationPage #situation2 .width-5 .right .table thead tr td .flex-table p {
    display: none;
  }
  #situationPage #situation2 .width-5 .right .table tr td {
    font-size: 12px !important;
  }
  #projetPage #projet {
    margin-bottom: 50px;
  }
  #projetPage #projet .top {
    height: auto;
    max-height: 650px;
    position: relative;
    margin-top: 100px;
  }
  #projetPage #projet .top .box {
    display: none;
  }
  #projetPage #projet .bottom .description {
    position: static;
    width: 100%;
    left: 0%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 10px 5%;
    bottom: 0;
  }
  #projetPage #projet .bottom .description li span {
    font-size: 14px;
  }
  #projetPage #projet2 {
    padding-top: 0;
  }
  #projetPage #projet4 .width-10 .right .conatiner .box {
    width: 100%;
    margin-left: 0px;
  }
  .icons-projet .width-5 .collapsible-content .imgs {
    flex-direction: column;
  }
  .icons-projet .width-5 .collapsible-content .imgs img {
    width: 100%;
    margin: 10px 0;
  }
  #galerie .images a {
    height: 150px !important;
    border: 4px solid white;
  }
  #plans-et-prix-location .icons-section {
    padding-top: 120px !important;
    padding-left: 5%;
    padding-right: 5%;
  }
  #plans-et-prix-location .facade-container .prix .pieces-selection {
    padding: 20px 16px;
  }
  #plans-et-prix-location .facade-container .prix .facade-table.table-location .lot-detail .lot-info div {
    width: 33%;
  }
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail {
    padding-right: 10px;
  }
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header {
    padding: 20px 10px 20px 5px;
  }
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header > div:nth-child(2) {
    display: none;
  }
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header > div {
    width: 33%;
  }
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header > div p {
    font-size: 14px;
    line-height: 14px;
  }
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info,
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn {
    padding-right: 10px;
  }
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info > div p,
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info a p,
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn > div p,
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn a p {
    font-size: 13px;
    line-height: 14px;
  }
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info > div,
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info a,
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn > div,
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn a {
    width: 33%;
  }
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info > div:nth-child(3),
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-info a:nth-child(3),
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn > div:nth-child(3),
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-btn a:nth-child(3) {
    display: none;
  }
  #plans-et-prix-location .txt-content ul {
    margin-left: 20px;
    margin-right: 20px;
  }
  #plans-et-prix-location .facade-container .prix .pieces-selection .container {
    flex-wrap: wrap;
    justify-content: flex-start;
  }
  #plans-et-prix-location .facade-container .prix .pieces-selection .container label {
    width: 25%;
    margin: 10px 0;
  }
  #plans-et-prix-location .facade-container .prix .facade-table .lot-detail .lot-header > div:nth-child(4) {
    min-width: auto;
  }
  #plans-et-prix-location .icons-section .width-5 ul li {
    width: 100%;
    margin: 20px 0;
  }
  .contactSection .width-10 .logo {
    width: 180px;
  }
  #contact .width-10 .left .title {
    margin-bottom: 40px;
  }
  #contact .acteurs {
    padding-top: 50px;
    padding-bottom: 0px;
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=style.css.map */