: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: #f7f6ed;
  font-family: "DM Sans", sans-serif;
}

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

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

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

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

/* loading */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #2b3348;
  z-index: 99999;
  transition-duration: 1s;
  transition-delay: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading > div {
  width: 450px;
  height: auto;
  transition-duration: 1.5s;
  transform: scale(0.5);
}
#loading > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#loading.hidden {
  opacity: 0;
  visibility: hidden;
}
#loading.hidden div {
  transform: scale(1);
}

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

.whatsapp {
  position: fixed;
  z-index: 99999;
  display: block;
  bottom: 1%;
  right: 1%;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  border-radius: 50%;
  justify-content: center;
  background-color: #f6724b;
  transition: all 0.3s linear;
}
.whatsapp:hover {
  transform: scale(1.1);
}
.whatsapp img {
  height: 100%;
  width: 30px;
  height: 30px;
  filter: invert(1);
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.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: #f7f6ed !important;
}

#e404 {
  min-height: 80dvh;
  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;
}

h1,
h2,
.title {
  font-family: "arnika-variable", sans-serif;
  font-size: var(--fs-32);
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  color: #2b3348;
  position: relative;
  margin-bottom: 25px;
}
h1 span,
h2 span,
.title span {
  font-family: "arnika-variable", sans-serif;
  font-size: var(--fs-32);
  font-weight: 300;
  line-height: 1.2;
  text-align: left;
  color: #f6724b;
}

a,
p,
li,
span {
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 140%;
  text-align: left;
  text-decoration: none;
  color: #2b3348;
}

p {
  margin-bottom: 15px;
}

.subtitle {
  font-size: 14px;
  text-transform: uppercase;
  font-weight: 400;
  letter-spacing: 4px;
  display: block;
  line-height: 1.2;
  text-align: left;
  color: #2b3348;
  margin-bottom: 10px;
  font-family: "arnika-variable", sans-serif;
}

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

header {
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  height: 100px;
  z-index: 99;
  transition: all 0.3s linear;
  background-color: transparent;
  display: flex;
  justify-content: space-between;
  position: fixed;
}
header.active {
  background-color: #2b3348;
}
header .width-5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin: 0;
}
header .width-5 .logo {
  position: relative;
  z-index: 999;
  height: 100px;
}
header .width-5 .logo a {
  height: 100%;
  width: 100%;
  overflow: hidden;
}
header .width-5 .logo a img {
  -o-object-fit: contain;
     object-fit: contain;
}
header .width-5 nav {
  display: flex;
  justify-content: center;
  align-items: center;
}
header .width-5 nav ul {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  list-style-type: none;
  gap: 37px;
}
header .width-5 nav ul li {
  position: relative;
}
header .width-5 nav ul li a {
  font-family: "arnika-variable", sans-serif;
  font-size: 16px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 4px;
  text-align: left;
  text-transform: uppercase;
  transition: all 0.5s;
  white-space: nowrap;
  color: #f7f6ed;
}
header .width-5 nav ul li:hover a {
  border-bottom: 1px solid #f7f6ed;
}
header .width-5 .phone {
  position: absolute;
  left: 5%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 14px;
}
header .width-5 .phone span {
  color: #2b3348;
  font-weight: 600;
  text-transform: uppercase;
}
header .width-5 .phone p a {
  color: #f7f6ed;
}

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

.message {
  height: calc(100vh - 91px);
  display: flex;
  align-items: center;
  justify-content: center;
}

.pastille {
  background-color: #2b3348;
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  position: absolute;
  top: 100px;
  z-index: 2;
  right: 5%;
  animation: pulse 4s linear infinite alternate-reverse;
}
@keyframes pulse {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.1);
  }
}
.pastille p {
  color: #f7f6ed;
  font-size: 16px;
  text-align: center;
  margin-bottom: initial;
  text-transform: uppercase;
  line-height: initial;
}
.pastille p span {
  color: #2b3348;
  display: block;
  font-size: 18px;
  text-align: center;
  font-weight: bold;
}

.icons-section {
  position: relative;
  background-color: #2b3348;
  padding-top: var(--padding-150);
  padding-bottom: var(--padding-150);
}
.icons-section .width-5 .title {
  text-align: center;
  margin-bottom: 100px;
  color: #f7f6ed;
}
.icons-section .width-5 .title span {
  color: #f6724b;
}
.icons-section .width-5 .title img {
  width: 220px;
  margin: 0 auto;
}
.icons-section .width-5 .title:before {
  display: none;
}
.icons-section .width-5 ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.icons-section .width-5 ul li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 30%;
  margin: 30px 5px;
}
.icons-section .width-5 ul li img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-bottom: 20px;
}
.icons-section .width-5 ul li span {
  font-size: var(--fs-16);
  font-weight: 500;
  margin-bottom: 8px;
  color: #f7f6ed;
}
.icons-section .width-5 ul li p {
  font-size: var(--fs-16);
  font-weight: 500;
  margin-bottom: 8px;
  text-align: center;
  color: #f7f6ed;
}
.icons-section .width-5 .btn {
  margin: 67px auto 0 auto;
}

.icons2 {
  padding-top: var(--padding-100);
  padding-bottom: var(--padding-150);
  background-color: #2b3348;
}
.icons2 h2 {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
  color: #f7f6ed;
}
.icons2 h2 span {
  color: #2b3348;
}
.icons2 .width-5 .logo {
  width: 250px;
  margin: 0 auto 0px auto;
}
.icons2 .width-5 .title {
  text-align: center;
  max-width: 40ch;
  margin: 0 auto;
}
.icons2 .width-5 .title span {
  color: #f6724b;
}
.icons2 .width-5 ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  position: relative;
  grid-gap: 50px var(--gap-24);
  margin-top: 100px;
}
.icons2 .width-5 ul li {
  display: flex;
  align-items: center;
  gap: var(--gap-24);
  justify-content: flex-start;
  flex-direction: column;
}
.icons2 .width-5 ul li img {
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 1s linear;
  filter: invert(1);
}
.icons2 .width-5 ul li p {
  color: #f7f6ed;
  max-width: 56ch;
  text-align: center;
  font-size: 17px;
}

#accueilPage #accueil .top {
  height: 100dvh;
  max-height: 1080px;
  position: relative;
}
#accueilPage #accueil .top:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
}
#accueilPage #accueil .top .titleSection {
  background-color: rgb(246, 114, 75);
  z-index: 2;
  position: absolute;
  padding: 40px 50px 20px 5%;
  bottom: 0px;
  width: auto;
  left: 0%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
#accueilPage #accueil .top .titleSection h1 {
  padding-right: 100px;
  font-size: 38px;
  color: #f7f6ed;
}
#accueilPage #accueil .top .titleSection a {
  text-align: center;
  display: block;
  color: #f7f6ed;
  font-size: 18px;
  text-transform: uppercase;
  border-bottom: 1px solid #f7f6ed;
  transition: all 0.6s linear;
}
#accueilPage #accueil .top .titleSection a:hover {
  transform: scale(1.1);
}
#accueilPage #accueil .top .btn {
  z-index: 2;
  position: absolute;
  top: 85%;
  left: 6%;
}
#accueilPage #accueil .top .box {
  z-index: 2;
  position: absolute;
  width: auto;
  padding: 0 20px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 65%;
  right: 2%;
  background-color: #2b3348;
  transform: rotate(90deg);
  transform-origin: 100% 65%;
  transition: all 1s linear;
}
#accueilPage #accueil .top .box:hover {
  background-color: #f6724b;
}
#accueilPage #accueil .top .box a {
  color: #f7f6ed;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "DM Sans", sans-serif;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
#accueilPage #accueil .top .box a img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 15px;
  filter: invert(1);
}
#accueilPage #accueil .bottom {
  padding-top: var(--padding-40);
  padding-bottom: 20px;
  border-bottom: 1px solid #2b3348;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: var(--gap-32);
}
#accueilPage #accueil .bottom div {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  text-align: center;
}
#accueilPage #accueil .bottom div:not(:last-of-type)::after {
  content: "";
  display: block;
  background-color: #2b3348;
  height: 61px;
  width: 0.5px;
  position: absolute;
  top: 0;
  right: 0;
}
#accueilPage #accueil .bottom div p {
  font-size: 16px;
  letter-spacing: 1px;
  text-transform: uppercase;
  text-align: center;
}
#accueilPage #accueil .bottom div p:first-of-type {
  color: #2b3348;
  margin-bottom: 8px;
  font-weight: 800;
}
#accueilPage #accueil .bottom div p:last-of-type {
  color: #f6724b;
}
#accueilPage #accueil2 {
  padding-top: var(--padding-150);
  padding-bottom: var(--padding-100);
}
#accueilPage #accueil2 .width-10 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--padding-100);
}
#accueilPage #accueil2 .width-10 .left {
  width: calc(40% - var(--padding-100));
}
#accueilPage #accueil2 .width-10 .left p {
  max-width: 47ch;
}
#accueilPage #accueil2 .width-10 .right {
  width: 60%;
}
#accueilPage #accueil2 .width-10 .right video {
  width: 100%;
  height: 100%;
}
#accueilPage #accueil3 {
  padding-bottom: var(--padding-150);
  padding-top: 50px;
  width: 100%;
}
#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;
}
#accueilPage #images {
  padding-top: var(--padding-100);
}
#accueilPage #images .titleSection {
  margin-bottom: 100px;
}
#accueilPage #images .titleSection .subtitle,
#accueilPage #images .titleSection .title {
  margin: 0 auto 23px auto;
  text-align: center;
}
#accueilPage #images .titleSection .subtitle:before,
#accueilPage #images .titleSection .title:before {
  margin: 0 auto 23px auto;
}
#accueilPage #images .titleSection .subtitle span,
#accueilPage #images .titleSection .title span {
  text-align: center;
  display: inline;
}
#accueilPage #images .titleSection .subtitle {
  margin-bottom: 25px;
}
#accueilPage #images .titleSection .title {
  position: relative;
}
#accueilPage #images .titleSection hr {
  width: 342px;
  margin: 0 auto;
  height: 1px;
  background-color: #f7f6ed;
}
#accueilPage #images .titleSection h2,
#accueilPage #images .titleSection span {
  max-width: auto;
}
#accueilPage #images .width-5 .swiper-container-galerie::part(container) {
  overflow: visible;
}
#accueilPage #images .width-5 .swiper-container-galerie::part(button-prev) {
  width: 30px;
  height: 30px;
  background: url("../imgs/icons/swiper-arrow-prev.svg") no-repeat center center;
  top: 50%;
  left: 0;
  color: #f7f6ed;
  background-color: #f6724b;
  border-radius: 50%;
  padding: 10px;
  transform: translateX(-50%);
}
#accueilPage #images .width-5 .swiper-container-galerie::part(button-prev) svg {
  width: 20px !important;
  height: 20px !important;
}
#accueilPage #images .width-5 .swiper-container-galerie::part(button-next) {
  width: 30px;
  height: 30px;
  background: url("../imgs/icons/swiper-arrow-next.svg") no-repeat center center;
  top: 50%;
  left: 100%;
  color: #f7f6ed;
  background-color: #f6724b;
  border-radius: 50%;
  padding: 10px;
  transform: translateX(-50%);
}
#accueilPage #images .width-5 .swiper-container-galerie swiper-slide {
  height: 600px;
  max-height: 80dvh;
  transition: all 0.3s linear;
}
#accueilPage #images .width-5 .swiper-container-galerie swiper-slide a {
  position: relative;
  display: block;
}
#accueilPage #images .width-5 .swiper-container-galerie swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
#accueilPage #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;
}
#accueilPage #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: #f7f6ed;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
#accueilPage #images .width-5 .swiper-container-galerie swiper-slide:hover p {
  opacity: 1;
}
#accueilPage #images .width-5 .swiper-container-galerie swiper-slide:hover img::after {
  opacity: 1;
}
#accueilPage #accueil4 {
  padding-top: 50px;
  padding-bottom: var(--padding-150);
}
#accueilPage #accueil4 .width-10 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#accueilPage #accueil4 .width-10 .left {
  width: 40%;
}
#accueilPage #accueil4 .width-10 .right {
  width: 35%;
}
#accueilPage #accueil4 .width-10 .right .conatiner {
  display: flex;
  align-items: flex-end;
  align-items: center;
  flex-wrap: wrap;
}
#accueilPage #accueil4 .width-10 .right .conatiner .box {
  width: 45%;
  margin-bottom: 24px;
  margin-left: 24px;
  text-align: center;
  border: 1px solid #f7f6ed;
  padding: 24px;
}
#accueilPage #accueil4 .width-10 .right .conatiner .box span {
  font-weight: 400;
  font-size: 32px;
  line-height: 20px;
  letter-spacing: 0%;
  display: block;
  text-align: center;
  color: #f7f6ed;
  margin-bottom: 16px;
}
#accueilPage #accueil4 .width-10 .right .conatiner .box p {
  text-align: center;
  color: #f7f6ed;
}

#situationPage #situation .width .top {
  height: auto;
  position: relative;
  margin-top: 100px;
}
#situationPage #situation .width .top img {
  -o-object-fit: cover;
     object-fit: cover;
}
#situationPage #situation .width .top .box {
  position: absolute;
  width: 308px;
  height: 87px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 70%;
  right: 1%;
  background-color: #f7f6ed;
  transform: rotate(90deg);
  transform-origin: 100% 70%;
}
#situationPage #situation .width .top .box a {
  color: #f7f6ed;
  font-weight: 500;
  font-size: 20px;
  line-height: 25px;
  letter-spacing: 0%;
  border-bottom: 1px solid #f7f6ed;
  transition: all 0.3s linear;
}
#situationPage #situation .width .top .box a:hover {
  transform: scale(1.1);
}
#situationPage #situation .titleSection {
  text-align: center;
  padding-top: 80px;
  padding-bottom: 100px;
}
#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 #situation2 {
  padding-bottom: 150px;
  padding-top: 0px;
}
#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 img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#situationPage #situation2 .width-5 .right {
  width: 30%;
  margin-right: 10%;
}
#situationPage #situation2 .width-5 .right h2.title {
  display: inline-block;
}
#situationPage #situation2 .width-5 .right h2.title::before {
  display: none;
}
#situationPage #situation3 {
  padding-bottom: 150px;
  padding-top: 0px;
}
#situationPage #situation3 .width-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#situationPage #situation3 .width-5 .right {
  width: 55%;
  position: relative;
  height: 100%;
  min-height: 500px;
}
#situationPage #situation3 .width-5 .right .top {
  position: absolute;
  top: 0px;
  right: 0;
  height: 424px;
  width: 90%;
  transition: all 0.3s linear;
}
#situationPage #situation3 .width-5 .right .top:hover {
  transform: scale(1.1);
}
#situationPage #situation3 .width-5 .right .top img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#situationPage #situation3 .width-5 .right .bottom {
  height: 275px;
  z-index: 2;
  position: absolute;
  bottom: -50px;
  left: 0;
  width: 40%;
  transition: all 0.3s linear;
}
#situationPage #situation3 .width-5 .right .bottom:hover {
  transform: scale(1.1);
}
#situationPage #situation3 .width-5 .right .bottom img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#situationPage #situation3 .width-5 .left {
  width: 35%;
}
#situationPage #situation3 .width-5 .left h2.title {
  display: inline-block;
}
#situationPage #situation3 .width-5 .left h2.title::before {
  display: none;
}
#situationPage #situation3 .width-5 .left .icon {
  margin-top: 43px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#situationPage #situation3 .width-5 .left .icon img {
  width: 38px;
  height: 38px;
}
#situationPage #situation3 .width-5 .left .icon p {
  margin-left: 35px;
}
#situationPage #situation4 {
  padding-top: 150px;
}
#situationPage #situation4 .width-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#situationPage #situation4 .width-5 .left {
  width: 50%;
  position: relative;
  height: 100%;
  min-height: 500px;
}
#situationPage #situation4 .width-5 .left .map {
  height: 550px;
}
#situationPage #situation4 .width-5 .left .map iframe {
  height: 100%;
  width: 100%;
}
#situationPage #situation4 .width-5 .right {
  width: 30%;
  margin-right: 10%;
}
#situationPage #situation4 .width-5 .right h2.title {
  display: inline-block;
}
#situationPage #situation4 .width-5 .right h2.title::before {
  display: none;
}
#situationPage #situation4 .width-5 .right .icon {
  margin-top: 43px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#situationPage #situation4 .width-5 .right .icon img {
  width: 38px;
  height: 38px;
}
#situationPage #situation4 .width-5 .right .icon p {
  margin-left: 35px;
}

#architecturePage p b {
  color: #f6724b;
}
#architecturePage #architecture-accueil .width .top {
  height: 750px;
  position: relative;
}
#architecturePage #architecture-accueil .width .top img {
  -o-object-position: center;
     object-position: center;
}
#architecturePage #architecture-accueil .width .top .box {
  position: absolute;
  width: auto;
  padding: 0 20px;
  height: 65px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 65%;
  right: 2%;
  background-color: #f6724b;
  transform: rotate(90deg);
  transform-origin: 100% 65%;
  transition: all 1s linear;
}
#architecturePage #architecture-accueil .width .top .box:hover {
  background-color: #2b3348;
}
#architecturePage #architecture-accueil .width .top .box a {
  color: #f7f6ed;
  font-weight: 500;
  text-transform: uppercase;
  font-family: "arnika-variable", sans-serif;
  font-size: 16px;
  line-height: 25px;
  letter-spacing: 0%;
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
}
#architecturePage #architecture-accueil .width .top .box a img {
  width: 30px;
  height: 30px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: 15px;
  filter: invert(1);
}
#architecturePage #architecture-accueil .titleSection {
  text-align: center;
  padding-top: 88px;
  padding-bottom: 150px;
}
#architecturePage #architecture-accueil .titleSection .subtitle {
  margin: 0 auto;
  text-align: center;
}
#architecturePage #architecture-accueil .titleSection .subtitle:before {
  margin: 0 auto 10px auto;
}
#architecturePage #architecture-accueil .titleSection .title {
  margin: 30px auto 0 auto;
  text-align: center;
}
#architecturePage #architecture-accueil .titleSection .title span {
  display: inline-block;
}
#architecturePage #architecture-accueil .titleSection hr {
  width: 342px;
  height: 1px;
  margin: 24px auto 0 auto;
}
#architecturePage #architecture2 {
  padding-bottom: 150px;
  padding-top: 0px;
}
#architecturePage #architecture2 .width-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#architecturePage #architecture2 .width-5 .left {
  width: 50%;
  position: relative;
  height: 100%;
  height: auto;
}
#architecturePage #architecture2 .width-5 .left img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#architecturePage #architecture2 .width-5 .right {
  width: 30%;
  margin-right: 10%;
}
#architecturePage #architecture2 .width-5 .right h2.title {
  display: inline-block;
}
#architecturePage #architecture2 .width-5 .right h2.title::before {
  display: none;
}
#architecturePage #architecture2 .width-5 .right .icon {
  margin-top: 43px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#architecturePage #architecture2 .width-5 .right .icon img {
  width: 38px;
  height: 38px;
}
#architecturePage #architecture2 .width-5 .right .icon p {
  margin-left: 35px;
}
#architecturePage #architecture3 {
  padding-bottom: 50px;
  background-color: #f7f6ed;
}
#architecturePage #architecture3 .width-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#architecturePage #architecture3 .width-5 .right {
  width: 55%;
  position: relative;
  height: 100%;
  height: auto;
}
#architecturePage #architecture3 .width-5 .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#architecturePage #architecture3 .width-5 .left {
  width: 35%;
}
#architecturePage #architecture3 .width-5 .left p b a {
  font-weight: bold;
  color: #f6724b;
  text-decoration: underline;
}
#architecturePage #architecture4 .width-5 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#architecturePage #architecture4 .width-5 .left {
  width: 50%;
  position: relative;
  height: 100%;
  height: auto;
}
#architecturePage #architecture4 .width-5 .right {
  width: 30%;
  margin-right: 10%;
}

/*** PLANS & PRIX ***/
#appartements {
  margin-top: 5px;
}
#appartements * {
  font-family: "DM Sans", sans-serif;
}
#appartements .facade-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 100px;
  width: 100%;
  overflow: auto;
  margin-top: 180px;
}
#appartements .facade-container .facade {
  width: 50%;
  left: 2%;
  position: relative;
}
#appartements .facade-container .facade .busole {
  position: absolute;
  top: 20%;
  left: 0;
  width: 60px;
  height: 60px;
  opacity: 0.5;
}
#appartements .facade-container .facade svg {
  margin-top: -50px;
}
#appartements .facade-container .prix {
  width: 50%;
}
#appartements .facade-container .prix .pieces-selection {
  margin-bottom: 30px;
}
#appartements .facade-container .prix .pieces-selection p {
  font-weight: 400;
  font-size: 14px;
  color: #2b3348;
  margin-bottom: 12px;
}
#appartements .facade-container .prix .pieces-selection .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 5px;
}
#appartements .facade-container .prix .pieces-selection .container label {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 90px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
#appartements .facade-container .prix .pieces-selection .container label input {
  display: none;
}
#appartements .facade-container .prix .pieces-selection .container label input:checked + .checkmark {
  background-color: #f6724b;
  border-color: #f6724b;
}
#appartements .facade-container .prix .pieces-selection .container label span {
  color: #2b3348;
  font-size: 14px;
  font-family: "DM Sans", sans-serif;
  white-space: nowrap;
}
#appartements .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 #2b3348;
  outline-offset: 2px;
  flex-shrink: 0;
  margin-right: 10px;
}
#appartements .facade-container .prix .facade-table {
  overflow-y: auto;
  height: auto;
}
#appartements .facade-container .prix .facade-table::-webkit-scrollbar {
  width: 5px;
}
#appartements .facade-container .prix .facade-table::-webkit-scrollbar-thumb {
  background-color: #ccc;
  border-radius: 5px;
}
#appartements .facade-container .prix .facade-table::-webkit-scrollbar-track {
  background-color: #fff;
}
#appartements .facade-container .prix .facade-table ul li.v,
#appartements .facade-container .prix .facade-table ul li.r {
  pointer-events: none;
}
#appartements .facade-container .prix .facade-table ul li.v .lot-header .showMore,
#appartements .facade-container .prix .facade-table ul li.r .lot-header .showMore {
  display: none;
}
#appartements .facade-container .prix .facade-table .lot-detail {
  padding-right: 20px;
  list-style: none;
  height: 55vh;
  min-height: 480px;
}
#appartements .facade-container .prix .facade-table .lot-detail li {
  margin-bottom: 16px;
}
#appartements .facade-container .prix .facade-table .lot-detail li.active .lot-header, #appartements .facade-container .prix .facade-table .lot-detail li:hover .lot-header {
  background-color: #f6724b;
}
#appartements .facade-container .prix .facade-table .lot-detail li.active .lot-header *,
#appartements .facade-container .prix .facade-table .lot-detail li.active .lot-header .price p, #appartements .facade-container .prix .facade-table .lot-detail li:hover .lot-header *,
#appartements .facade-container .prix .facade-table .lot-detail li:hover .lot-header .price p {
  color: #f7f6ed;
}
#appartements .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: #2b3348;
}
#appartements .facade-container .prix .facade-table .lot-detail li * {
  transition: all 0.4s ease-in-out;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 8px 8px 8px 0;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  grid-gap: 4px 0px;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  position: relative;
  border-top: 1px solid rgb(192, 190, 190);
  background-color: #e0e0e0;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header * {
  transition: all 0.4s ease-in-out;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header.active, #appartements .facade-container .prix .facade-table .lot-detail .lot-header:hover {
  background-color: #e0e0e0;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header .showMore {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
  background-color: #f6724b;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  border: none;
  border: 1px solid #f7f6ed;
  transition: all 0.4 ease-in-out;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header .showMore.active {
  transform: translateY(-50%) rotate(180deg);
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header .showMore img {
  filter: invert(1);
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
     object-fit: contain;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header .statut-txt {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header .statut-txt p {
  color: transparent;
  width: 60px;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header > div {
  border-right: 1px solid rgb(192, 190, 190);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header > div:nth-child(4) {
  border-right: none;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header > div:last-child {
  border-right: none;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header > div p {
  margin: 0 5px;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header > div sup {
  font-size: 12px;
  font-weight: 300;
  line-height: initial;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-07 .lot-header {
  border-top: 5px solid rgb(192, 190, 190);
}
#appartements .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;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-info sup,
#appartements .facade-container .prix .facade-table .lot-detail .lot-info p {
  color: #2b3348;
  line-height: initial;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-info sup sup,
#appartements .facade-container .prix .facade-table .lot-detail .lot-info p sup {
  font-size: 9px !important;
}
#appartements .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;
  display: none;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-info div {
  width: 25%;
  padding: 5px;
  border-right: 1px solid #f7f6ed;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: flex-start;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-info div p {
  margin: 0 5px;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-info div:last-child {
  border-right: none;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-btn {
  align-items: center;
  justify-content: space-between;
  text-align: center;
  display: flex;
  visibility: hidden;
  height: 0;
  opacity: 0;
  transition: all 0.5s linear;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-btn.show {
  padding: 10px 10px 10px 0;
  visibility: initial;
  height: auto;
  opacity: 1;
  transition: all 1s linear;
  border: 1px solid #e0e0e0;
  border-top: none;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-btn a,
#appartements .facade-container .prix .facade-table .lot-detail .lot-btn div {
  width: 25%;
  border-right: 1px solid #f7f6ed;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  flex-direction: column;
  cursor: pointer;
  transition: all 0.4s linear;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-btn a sup,
#appartements .facade-container .prix .facade-table .lot-detail .lot-btn div sup {
  color: #2b3348;
  margin-bottom: 5px;
  font-size: 10px;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-btn a:last-child,
#appartements .facade-container .prix .facade-table .lot-detail .lot-btn div:last-child {
  border-right: none;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-btn a img,
#appartements .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: all 0.3s linear;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-btn a img:hover,
#appartements .facade-container .prix .facade-table .lot-detail .lot-btn div img:hover {
  transform: scale(1.1);
}
#appartements .facade-container .plan-big {
  top: 0;
  width: 60vw;
  right: -100%;
  position: fixed;
  z-index: 9999;
  background-color: #ffffff;
  border: 1px solid #f7f6ed;
  padding: 20px;
  transition-duration: 0.6s;
  opacity: 0;
  text-align: center;
  height: 100dvh;
  display: flex;
  align-items: center;
  justify-content: center;
}
#appartements .facade-container .plan-big.active {
  right: 0;
  opacity: 1;
}
#appartements .facade-container .plan-big .data {
  width: 30%;
  margin-right: 50px;
}
#appartements .facade-container .plan-big .data p:first-child,
#appartements .facade-container .plan-big .data p:first-child span {
  font-size: 22px;
  color: #f6724b;
}
#appartements .facade-container .plan-big .data p {
  font-weight: bold;
}
#appartements .facade-container .plan-big .data p sup {
  font-size: 11px;
}
#appartements .facade-container .plan-big img {
  width: 50%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#appartements .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;
}
#appartements .facade-container .v.hover *,
#appartements .facade-container .v:hover * {
  fill: #f98888 !important;
  cursor: not-allowed;
}
#appartements .facade-container .r.hover *,
#appartements .facade-container .r:hover * {
  fill: #f2eba6 !important;
  cursor: not-allowed;
}
#appartements .facade-container .d.hover *,
#appartements .facade-container .d:hover * {
  fill: #9ee18e !important;
}
#appartements .facade-container .grey,
#appartements .facade-container .grey * {
  fill: #e0e0e0;
  stroke: #666666;
  stroke-width: 0.25;
  stroke-miterlimit: 10;
}
#appartements .facade-container .grey1,
#appartements .facade-container .grey1 * {
  fill: #e0e0e0;
  stroke: #666666;
  stroke-width: 0.25;
  stroke-miterlimit: 10;
}
#appartements .facade-container .grey2,
#appartements .facade-container .grey2 * {
  fill: #e0e0e0;
  stroke: #666666;
  stroke-width: 0.25;
  stroke-miterlimit: 10;
}
#appartements .facade-container .lot,
#appartements .facade-container .lot * {
  fill: #f1f0e7;
  stroke: #666666;
  stroke-width: 0.25;
  stroke-miterlimit: 10;
}
#appartements .facade-container .window,
#appartements .facade-container .window * {
  fill: #f1f0e7;
  stroke: #666666;
  stroke-width: 0.25;
  stroke-miterlimit: 10;
}
#appartements .facade-container sup {
  font-size: 10px;
}
#appartements .tooltip {
  position: fixed;
  z-index: 99;
  visibility: hidden;
  background-color: #f6724b;
  width: 60px;
  height: 60px;
  transform: rotate(45deg);
  top: 40%;
  left: 38%;
  text-align: center; /* Center text horizontally */
  line-height: 100px; /* Center text vertically */
  transform-origin: center;
}
#appartements .tooltip > div {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition-duration: 0.2s;
  width: 60px;
  height: 60px;
  transform: rotate(-45deg);
  text-align: center;
}
#appartements .tooltip > div * {
  color: white;
}
#appartements .tooltip > div h5 {
  font-family: "DM Sans", sans-serif;
  font-size: 15px;
  line-height: initial;
  margin-bottom: initial;
}
#appartements .tooltip > div p {
  font-size: 12px;
  line-height: initial;
  margin-bottom: 5px;
  text-align: center;
}
#appartements .tooltip.visible {
  visibility: visible;
}
#appartements .tooltip.visible > div {
  opacity: 1;
}
#appartements .floor {
  transition: all 0.4s linear;
}
#appartements .floor.move {
  transform: translateX(50px) translateY(-200px);
}
#appartements .icons-section {
  position: relative;
  z-index: 3;
}
#appartements .icons-section .titleSection img {
  width: 200px;
  margin: 0 auto 0px auto;
}
#appartements .icons-section .titleSection .subtitle {
  color: #f7f6ed;
  text-align: center;
  font-weight: bold;
}
#appartements .icons-section .width-5 {
  margin-top: 80px;
}
#appartements .icons-section .width-5 ul li a {
  display: block;
  color: #f7f6ed;
}
#appartements .icons-section .width-5 ul li {
  width: 20%;
}
#appartements .icons-section .width-5 ul li img {
  margin: 0 auto;
  filter: brightness(0) invert(1);
}
#appartements .icons-section .width-5 ul li:hover img {
  width: 50px;
}
#appartements .icons-section .width-5 ul li:hover p {
  border-bottom: 1px solid #f7f6ed;
}
#appartements .icons-section .width-5 ul li img {
  width: 40px;
  margin-bottom: 0;
  transition: all 0.3s linear;
}
#appartements .icons-section .width-5 ul li p {
  transition: all 0.3s linear;
  margin-top: 20px;
  font-weight: 300;
  color: #f7f6ed;
  border-bottom: 1px solid transparent;
}
#appartements .contactSection {
  padding-top: 150px;
}

#plans-et-prix-appartements .facade-container .facade {
  min-height: 100dvh;
  overflow-y: scroll;
}
#plans-et-prix-appartements .floor.move {
  transform: translateX(80px) translateY(-80px);
}

/*** GALERIE ***/
#galerie {
  padding-top: 250px;
}
#galerie .images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 0px;
}
#galerie .images a {
  display: block;
  height: 450px;
  overflow: hidden;
  border: 8px solid #f7f6ed;
}
#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) {
  width: 55%;
}
#galerie .images a:nth-child(4), #galerie .images a:nth-child(5) {
  width: 22.2%;
}
#galerie .images a:nth-child(6), #galerie .images a:nth-child(8) {
  width: 30%;
  height: 560px;
}
#galerie .images a:nth-child(7) {
  width: 40%;
  height: 560px;
}
#galerie .images a:nth-child(9), #galerie .images a:nth-child(10) {
  width: 30%;
}
#galerie .images a:last-child {
  width: 100%;
}

.contactSection {
  padding-top: 100px;
  padding-bottom: 100px;
  position: relative;
  z-index: 3;
}
.contactSection .width-10 {
  width: 80%;
  margin: 0 auto;
  background-color: #2b3348;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding-top: 80px;
  padding-bottom: 80px;
}
.contactSection .width-10 .title {
  text-align: center;
  margin: 0 auto 80px auto;
  color: #f7f6ed;
}
.contactSection .width-10 .title span {
  display: block;
}
.contactSection .width-10 .data {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.contactSection .width-10 .data .left {
  margin-right: 60px;
}
.contactSection .width-10 .data .left img {
  height: 250px;
  width: 250px;
  border-radius: 50%;
  -o-object-position: right top;
     object-position: right top;
}
.contactSection .width-10 .data .right .logo {
  width: 160px;
}
.contactSection .width-10 .data .right .logo img {
  filter: brightness(0) invert(1);
}
.contactSection .width-10 .data .right p {
  text-align: center;
  margin: 21px 0;
  color: #f7f6ed;
}
.contactSection .width-10 .data .right p b {
  font-size: 1.2em;
  white-space: nowrap;
}
.contactSection .width-10 .data .right a {
  color: #f7f6ed;
  text-align: center;
  display: block;
  margin-bottom: 5px;
  transition: all 0.3s linear;
}
.contactSection .width-10 .data .right a:hover {
  color: #f6724b;
}
.contactSection .width-10 .btn {
  margin-top: 80px;
  position: relative;
  z-index: 4;
}

/*** CONTACT PAGE ***/
#contact .width {
  position: relative;
}
#contact .width .btn-bottom {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #f6724b;
  cursor: pointer;
}
#contact .width .btn-bottom img {
  width: 100%;
  filter: invert(1);
  height: 100%;
}
#contact .width .top {
  height: 90dvh;
  max-height: 1080px;
}
#contact .width-10 {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
  padding-top: 150px;
  padding-bottom: 150px;
}
#contact .width-10 img {
  width: 250px;
}
#contact .width-10 .subtitle:before {
  margin: 0 auto 10px auto;
}
#contact .width-10 .title {
  max-width: 37ch;
  margin-bottom: 100px;
  text-align: center;
}
#contact .width-10 .title span {
  display: inline;
}
#contact .width-10 .title::before {
  display: none;
}
#contact .width-10 .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#contact .width-10 .container .left {
  width: 35%;
  text-align: center;
}
#contact .width-10 .container .left .logo {
  display: block;
  width: 233px;
  height: 80px;
  margin: 0 auto 30px auto;
}
#contact .width-10 .container .left .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#contact .width-10 .container .left p.acteur-title {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 16px;
  font-weight: bold;
  line-height: 17.5px;
  letter-spacing: 2px;
  color: #2b3348;
  margin-bottom: 12px;
}
#contact .width-10 .container .left p {
  font-weight: 400;
  letter-spacing: 0px;
  text-align: center;
  color: #2b3348;
  transition: all 0.3s linear;
  display: block;
}
#contact .width-10 .container .left a {
  font-size: 17px;
  letter-spacing: 0px;
  margin-bottom: 3px;
  text-align: center;
  color: #2b3348;
  transition: all 0.3s linear;
  display: block;
}
#contact .width-10 .container .left a:hover {
  color: #f6724b;
}
#contact .width-10 .container .left .img {
  text-align: center;
  display: block;
  margin: 0 auto 40px auto;
}
#contact .width-10 .container form {
  width: 50%;
}
#contact .width-10 .container form .form-flex {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
#contact .width-10 .container form .form-flex div {
  width: 100%;
}
#contact .width-10 .container form .form-flex textarea {
  min-height: 200px;
}
#contact .width-10 .container form .form-flex input:not([type=submit]),
#contact .width-10 .container form .form-flex textarea {
  background: #edeeec;
  outline: none;
  border: 1px solid #2b3348;
  font-size: var(--fs-16);
  text-align: left;
  color: #2b3348;
  font-weight: bold;
  padding: 14px;
  width: 100%;
  margin-bottom: 30px;
  width: 100%;
}
#contact .width-10 .container form .form-flex input:not([type=submit])::-moz-placeholder, #contact .width-10 .container form .form-flex textarea::-moz-placeholder {
  font-family: "DM Sans", sans-serif;
  color: #2b3348;
  font-size: var(--fs-14);
  font-weight: 400;
}
#contact .width-10 .container form .form-flex input:not([type=submit])::placeholder,
#contact .width-10 .container form .form-flex textarea::placeholder {
  font-family: "DM Sans", sans-serif;
  color: #2b3348;
  font-size: var(--fs-14);
  font-weight: 400;
}
#contact .width-10 .container form #submit {
  margin-top: 0;
  width: 100%;
  background-color: #f6724b;
  color: #f7f6ed;
  font-weight: bold;
  border: 1px solid #f6724b;
  transition: all 0.3s linear;
}
#contact .width-10 .container form #submit:hover {
  background-color: transparent;
  color: #f6724b;
}

/*** FOOTER ***/
footer {
  border-top: 1px solid #2b3348;
  padding-top: 20px;
  padding-bottom: 20px;
  position: relative;
  background-color: #2b3348;
  z-index: 3;
}
footer .width-10 {
  text-align: center;
}
footer .width-10 p,
footer .width-10 a {
  font-weight: 400;
  font-size: 14px;
  line-height: 17.5px;
  letter-spacing: 2px;
  text-align: center;
  color: #f7f6ed;
}
footer .width-10 a {
  text-decoration: underline;
}
footer .width-10 p:first-child {
  max-width: 75ch;
  margin: 0 auto;
}
footer .width-10 p.avp {
  margin-top: 11px;
  color: #f7f6ed;
}
footer .width-10 p.avp a {
  color: #f7f6ed;
  white-space: nowrap;
  display: inline-block;
  transition: all 0.3s linear;
  text-decoration: none;
}
footer .width-10 p.avp a:hover {
  color: #f7f6ed;
}

/*** SUCCES ***/
#succes {
  padding-bottom: 110px;
  min-height: 600px;
  display: flex;
  align-items: center;
}
#succes section {
  margin-bottom: 0;
}
#succes div {
  text-align: center;
}
#succes h2 {
  font-size: 32px;
}
#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) {
  #contact .width-5 .top {
    height: 700px;
    max-height: 1080px;
  }
  #galerie {
    padding-top: 200px;
  }
  #architecturePage #architecture-accueil .titleSection {
    padding-top: 88px;
    padding-bottom: 100px;
  }
  #appartements .facade-container .facade svg {
    margin-top: 0px;
  }
}
@media only screen and (max-width: 1600px) {
  .icons-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .icons2 .width-5 ul li {
    margin-left: 30px;
    margin-right: 30px;
  }
  #accueilPage #images .width-5 .swiper-container-galerie swiper-slide {
    height: 450px;
    max-height: auto;
  }
  #situationPage #situation .titleSection {
    padding-top: 88px;
    padding-bottom: 100px;
  }
  #architecturePage #architecture-accueil .titleSection {
    padding-top: 88px;
    padding-bottom: 100px;
  }
  #architecturePage #architecture-accueil .width .top .box {
    right: 3%;
  }
  #architecturePage #architecture3 {
    padding-bottom: 0;
  }
  #architecturePage #architecture2 {
    padding-bottom: 100px;
  }
  #architecturePage #architecture2 .width-5 .right {
    width: 35%;
    margin-right: 5%;
  }
}
@media only screen and (max-width: 1440px) {
  :root {
    --padding-150: 100px;
  }
  header .width-5 nav ul li a {
    font-size: 14px;
  }
  h1,
  h2,
  .title,
  .title span {
    font-size: 28px;
    margin-bottom: 32px;
  }
  .subtitle {
    font-size: 14px;
    margin-bottom: 15px;
  }
  #accueilPage #accueil .top .box {
    right: 3%;
  }
  #accueilPage #accueil .bottom div p {
    letter-spacing: initial;
  }
  #accueilPage #accueil .bottom div p:last-of-type {
    padding-right: 0px;
  }
  #accueilPage #accueil2 {
    padding-bottom: 50px;
  }
  #accueilPage #accueil2 .width-10 .left {
    width: 40%;
  }
  #accueilPage #images .width-5 .swiper-container-galerie swiper-slide {
    height: 400px;
    max-height: initial;
  }
  #architecturePage #architecture2 .width-5 .right {
    width: 40%;
    margin-right: 5%;
  }
  #situationPage #situation2 .width-5 .left {
    min-height: initial;
  }
  #situationPage #situation2 .width-5 .right {
    width: 40%;
    margin-right: 5%;
  }
}
@media only screen and (max-width: 1300px) {
  .pastille {
    top: 80px;
  }
  .width-10 {
    padding-left: 8%;
    padding-right: 8%;
  }
  header .width-5 nav.active {
    top: 0;
    left: 0;
    transition: all 0.6s linear;
  }
  header .width-5 nav {
    transition: all 0.6s linear;
    position: fixed;
    top: -100%;
    left: 0;
    background-color: #2b3348;
    padding: 50px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 100dvh;
    transition-duration: 0.6s;
  }
  header .width-5 nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
    gap: 25px;
    margin-top: 40px;
  }
  header .width-5 nav ul li {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  header .width-5 nav ul li:not(:last-of-type)::after {
    display: none;
  }
  header .width-5 nav ul li a {
    font-size: 18px;
    text-align: center;
  }
  #menu-btn {
    display: block;
    right: 6%;
  }
  .icons-section .width-5 ul li img {
    width: 50px;
    height: 50px;
  }
  #situationPage #situation2 {
    padding-bottom: 100px;
  }
  #situationPage #situation3 .width-5 .right .bottom {
    bottom: -90px;
    width: 60%;
  }
  #situationPage #situation4 {
    padding-bottom: 0px;
    padding-top: 100px;
  }
  #situationPage #situation4 .width-5 {
    align-items: flex-start;
  }
  #situationPage #situation4 .width-5 .left {
    min-height: auto;
  }
  #situationPage #situation4 .width-5 .left .map {
    height: 350px;
  }
  #situationPage #situation4 .width-5 .right {
    width: 35%;
    margin-right: 5%;
  }
  .contactSection .width-10 {
    width: 80%;
  }
  #appartements .facade-container.width-5 {
    padding-left: 2%;
    padding-right: 2%;
  }
  #appartements .facade-container .facade h2 {
    margin-left: 5%;
  }
  #appartements .facade-container .facade svg {
    margin-top: initial;
  }
  #appartements .facade-container .plan-big {
    width: 100%;
  }
  #appartements .facade-container .prix {
    width: 55%;
  }
  #galerie {
    padding-top: 150px;
  }
  #contact .width-10 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #contact .acteurs {
    padding-top: 100px;
    padding-bottom: 100px;
  }
}
@media only screen and (max-width: 1080px) {
  :root {
    --padding-150: 100px;
    --padding-100: 80px;
    --fs-14: 16px;
    --fs-16: 16px;
    --fs-20: 18px;
    --fs-32: 26px;
  }
  h2,
  .title {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    max-width: none !important;
  }
  h2 span,
  .title span {
    text-align: center;
  }
  .subtitle {
    width: -moz-max-content;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    position: relative;
  }
  .subtitle::before {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    top: -65px;
  }
  #loading svg {
    width: 40%;
  }
  #accueilPage #accueil .top .titleSection {
    flex-direction: column;
  }
  #accueilPage #accueil .bottom {
    padding-top: 40px;
    padding-bottom: 10px;
    grid-gap: initial;
  }
  #accueilPage #accueil2 {
    padding-bottom: 0;
  }
  #accueilPage #accueil2 .width-10 {
    gap: initial;
    flex-wrap: wrap;
  }
  #accueilPage #accueil2 .width-10 .left {
    width: 100%;
    margin-bottom: 50px;
  }
  #accueilPage #accueil2 .width-10 .left p {
    max-width: initial;
  }
  #accueilPage #accueil2 .width-10 .right {
    width: 100%;
  }
  #accueilPage #accueil3 .width-10 {
    padding-top: 50px;
    gap: initial;
    flex-wrap: wrap;
  }
  #accueilPage #accueil3 .width-10 .left {
    width: 100%;
    height: auto;
  }
  #accueilPage #accueil3 .width-10 .right {
    width: 100%;
    order: -1;
    margin-bottom: 50px;
  }
  #accueilPage #accueil3 .width-10 .right p {
    max-width: initial;
  }
  #accueilPage #images {
    padding-top: 100px;
    padding-bottom: 0;
  }
  #accueilPage #images .width-5 .swiper-container-galerie swiper-slide {
    height: 300px;
  }
  #accueilPage #images .titleSection {
    margin-bottom: 50px;
  }
  #accueilPage #images .title:before,
  #accueilPage #images h2:before {
    display: none;
  }
  #accueilPage #accueil .top .titleSection h1 {
    padding-right: 50px;
    font-size: 38px;
    margin-bottom: 15px;
  }
  #icons .width ul li img {
    width: 40px;
    height: 40px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 30px;
  }
  #icons .width ul li span {
    text-align: center;
  }
  #icons .width ul li p {
    text-align: center;
    padding-left: 16px;
    padding-right: 16px;
  }
  #icons .width ul li::before {
    width: 30px;
    height: 30px;
  }
  .icons-section {
    padding-top: 80px;
    padding-bottom: 80px;
    flex-wrap: wrap;
  }
  .icons-section .width-5 ul li {
    width: 48%;
    text-align: center;
  }
  .icons-section .width-5 ul li p {
    text-align: center;
  }
  .icons2 .width ul {
    grid-template-columns: repeat(2, 1fr);
  }
  #situationPage #situation .titleSection {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #situationPage #situation .titleSection hr {
    margin: 0px auto 0 auto;
  }
  #situationPage #situation2 {
    padding-bottom: 80px;
  }
  #situationPage #situation2 .width-5 {
    flex-wrap: wrap;
  }
  #situationPage #situation2 .width-5 .left {
    width: 100%;
    margin-top: 60px;
  }
  #situationPage #situation2 .width-5 .left .top {
    top: 0;
  }
  #situationPage #situation2 .width-5 .left .bottom {
    width: auto;
  }
  #situationPage #situation2 .width-5 .right {
    width: 100%;
    order: -1;
    margin-right: 0;
  }
  #situationPage #situation3 .width-5 {
    flex-wrap: wrap;
  }
  #situationPage #situation3 .width-5 .left {
    width: 100%;
    margin-bottom: 60px;
  }
  #situationPage #situation3 .width-5 .right {
    width: 100%;
  }
  #situationPage #situation4 .width-5 {
    flex-wrap: wrap;
  }
  #situationPage #situation4 .width-5 .left {
    width: 100%;
  }
  #situationPage #situation4 .width-5 .left .map {
    height: 450px;
  }
  #situationPage #situation4 .width-5 .right {
    order: -1;
    margin-bottom: 60px;
    width: 100%;
  }
  #architecturePage #architecture-accueil .titleSection {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #architecturePage #architecture-accueil .titleSection hr {
    margin: 0px auto 0 auto;
  }
  #architecturePage #architecture2 {
    padding-bottom: 80px;
  }
  #architecturePage #architecture2 .width-5 {
    flex-wrap: wrap;
  }
  #architecturePage #architecture2 .width-5 .left {
    width: 100%;
    margin-top: 60px;
  }
  #architecturePage #architecture2 .width-5 .left .top {
    top: 0;
  }
  #architecturePage #architecture2 .width-5 .left .bottom {
    width: auto;
  }
  #architecturePage #architecture2 .width-5 .right {
    width: 100%;
    order: -1;
    margin-right: 0;
  }
  #architecturePage #architecture3 {
    padding-bottom: 0px;
  }
  #architecturePage #architecture3 .width-5 {
    flex-wrap: wrap;
  }
  #architecturePage #architecture3 .width-5 .left {
    width: 100%;
    margin-bottom: 60px;
  }
  #architecturePage #architecture3 .width-5 .right {
    width: 100%;
  }
  #architecturePage #architecture4 .width-5 {
    flex-wrap: wrap;
  }
  #architecturePage #architecture4 .width-5 .left {
    width: 100%;
  }
  #architecturePage #architecture4 .width-5 .right {
    order: -1;
    margin-bottom: 60px;
    width: 100%;
  }
  #appartements .contactSection,
  #appartements .contactSection {
    padding-top: 0px;
  }
  #appartements .icons-section {
    margin-bottom: 100px;
  }
  #appartements .facade-container {
    flex-wrap: wrap;
    margin-top: 150px;
    margin-bottom: 80px;
  }
  #appartements .facade-container .facade {
    width: 100%;
    height: auto;
    position: initial;
    margin-top: 0px;
    overflow-y: initial;
    min-height: auto;
    text-align: center;
  }
  #appartements .facade-container .facade .busole {
    position: absolute;
    top: 30%;
    left: 8%;
    width: 60px;
    height: 60px;
    opacity: 0.5;
  }
  #appartements .facade-container .facade h2 {
    margin-left: initial;
  }
  #appartements .facade-container .facade svg {
    width: 70%;
    margin: -100px auto 0 auto;
  }
  #appartements .facade-container .facade .status-container {
    margin: 0 auto;
  }
  #appartements .facade-container .facade .status-container .container {
    justify-content: center;
  }
  #appartements .facade-container .facade .status-container .container > div {
    margin: 0 20px;
  }
  #appartements .facade-container .prix {
    margin-top: 0px;
    width: 100%;
  }
  #appartements .facade-container .prix .facade-table .lot-detail {
    height: auto;
    min-height: none;
  }
  #appartements .facade-container .prix .pieces-selection {
    width: 100%;
  }
  #galerie .images a {
    height: 350px;
  }
  #galerie .images a:nth-child(6), #galerie .images a:nth-child(8), #galerie .images a:nth-child(7) {
    height: 400px;
  }
  #contact .width-10 {
    padding-top: 140px;
  }
  #contact .width-10 .title {
    max-width: 37ch !important;
    margin-bottom: 60px;
    text-align: center;
  }
  #contact .acteurs {
    margin-top: 100px;
    padding-left: 5%;
    padding-right: 5%;
  }
  footer .width .left {
    display: none;
  }
  footer .width .right {
    width: 100%;
    align-items: center;
  }
  footer .width .right .top {
    width: 100%;
    max-width: none;
  }
  footer .width .right .top h3 {
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 810px) {
  header .width-5 .logo {
    height: auto;
    width: 150px;
  }
  .subtitle {
    letter-spacing: 1px;
    padding-left: 5%;
    padding-right: 5%;
  }
  #accueilPage #accueil .bottom {
    grid-template-columns: repeat(1, 1fr);
  }
  #accueilPage #accueil .bottom div:not(:last-of-type)::after {
    content: "";
    display: none;
  }
  #accueilPage #accueil .bottom > div {
    width: 100%;
  }
  #accueilPage #accueil .top .titleSection {
    flex-direction: column;
  }
  #accueilPage #accueil .top .titleSection h1 {
    padding-right: 20px;
    font-size: 28px;
    margin-bottom: 15px;
  }
  #accueilPage #accueil2 {
    padding-top: 80px;
  }
  #accueilPage #accueil3 {
    padding-top: 0;
  }
  #accueilPage #accueil .top .box {
    right: 5%;
  }
  .icons-section .width-5 .btn {
    margin: 30px auto 0 auto;
  }
  .icons-section .width-5 .title {
    margin-bottom: 60px;
  }
  .icons-section .width-5 ul {
    flex-wrap: wrap;
    padding-left: 5%;
    padding-right: 5%;
  }
  .icons-section .width-5 ul li {
    width: 45%;
    text-align: center;
    margin-bottom: 20px;
  }
  .icons-section .width-5 ul li span:after {
    display: none !important;
  }
  .icons-section .width-5 ul li:not(:first-of-type) ::after {
    display: none !important;
  }
  .icons2 {
    padding-top: 60px;
  }
  .icons2 .width-5 ul {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px 20px;
    margin-left: 0px;
  }
  .icons2 .width-5 ul li {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
  }
  #situationPage #situation2 .width-5 .left .top {
    height: auto;
    position: relative;
    width: 80%;
  }
  #situationPage #situation2 .width-5 .left .bottom {
    width: 80%;
    position: relative;
    margin-top: -100px;
    margin-left: auto;
  }
  #situationPage #situation4 {
    padding-top: 80px;
  }
  #architecturePage #architecture-accueil .width .top .box {
    right: 5%;
  }
  #contact {
    margin-top: 0;
  }
  #contact .width-5 .top {
    height: 400px;
    max-height: auto;
  }
  #contact .width-10 {
    padding-top: 130px;
  }
  #contact .acteurs {
    padding-top: 100px;
    padding-bottom: 50px;
    flex-wrap: wrap;
  }
  #contact .acteurs > div {
    margin-bottom: 50px;
    width: 100%;
  }
  #contact .width-10 {
    padding-bottom: 100px;
  }
  #contact .width-10 .container {
    flex-wrap: wrap;
  }
  #contact .width-10 .container .left,
  #contact .width-10 .container form {
    width: 100%;
  }
  #contact .width-10 .container .left {
    margin-bottom: 60px;
  }
  #appartements .icons-section {
    margin-bottom: 100px;
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #appartements .icons-section .width-5 ul li {
    width: 45%;
  }
  #appartements .facade-container .plan-big {
    padding: 10px;
  }
  #appartements .facade-container .plan-big .data p,
  #appartements .facade-container .plan-big .data span {
    font-size: 14px;
  }
  .contactSection .width-10 .data .left img {
    height: 200px;
    width: 200px;
  }
}
@media only screen and (max-width: 576px) {
  .whatsapp {
    bottom: 1%;
    right: 1%;
    width: 40px;
    height: 40px;
  }
  .whatsapp:hover {
    transform: scale(1.1);
  }
  .whatsapp img {
    width: 30px;
    height: 30px;
  }
  .pastille {
    width: 90px;
    height: 90px;
    top: 80px;
  }
  .pastille p {
    font-size: 15px;
  }
  header .width-5 {
    padding-left: 2%;
    padding-right: 2%;
  }
  .icons2 {
    padding-top: 40px;
  }
  .icons2 .width-5 ul {
    grid-template-columns: repeat(1, 1fr);
    grid-gap: 40px 20px;
    margin-left: 0%;
  }
  .icons-section {
    padding-top: 80px;
    padding-bottom: 60px;
  }
  .icons-section .width-5 ul li:not(:first-of-type) ::after {
    display: none;
  }
  #accueilPage #accueil .top {
    max-height: initial;
  }
  #accueilPage #accueil .top img {
    -o-object-position: 10% 30%;
       object-position: 10% 30%;
  }
  #accueilPage #accueil .top .titleSection a {
    font-size: 16px;
    text-align: left;
  }
  #accueilPage #accueil .top .titleSection h1 {
    padding-right: 10px;
    font-size: 24px;
    margin-bottom: 15px;
  }
  #accueilPage #accueil .top .titleSection h1 br {
    display: none;
  }
  #accueilPage #accueil .top .box {
    right: 8%;
    display: none;
  }
  #accueilPage #accueil .bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    padding-bottom: 10px;
  }
  #accueilPage #accueil .bottom div {
    width: 100%;
    margin-bottom: 20px;
  }
  #accueilPage #accueil .bottom div:after {
    display: none !important;
  }
  #accueilPage #accueil .bottom div:nth-child(2) {
    padding-left: 10px;
    padding-right: 10px;
  }
  #accueilPage #accueil3 {
    padding-top: 0;
  }
  #accueilPage #accueil3:after {
    left: 65%;
  }
  #accueilPage #accueil3 .width-10 .left {
    height: auto;
  }
  #accueilPage #images {
    padding-bottom: 0px;
    padding-top: 80px;
  }
  #accueilPage #images .titleSection {
    padding-left: 5%;
    padding-right: 5%;
  }
  #accueilPage #images .width-5 .swiper-container-galerie swiper-slide {
    height: 250px;
  }
  #accueilPage #accueil4 .width-10 .right .conatiner .box {
    width: 100%;
    margin-bottom: 14px;
    margin-left: 0px;
    padding: 20px;
  }
  .icons2 .width-5 .logo {
    width: 200px;
  }
  .icons2 h2 span {
    font-size: 20px !important;
  }
  #situationPage #situation .titleSection {
    padding-left: 5%;
    padding-right: 5%;
  }
  #situationPage #situation .width-5 .top {
    height: 550px;
  }
  #situationPage #situation .width-5 .top .box {
    right: 5%;
  }
  #situationPage #situation2 .width-5 .left .bottom {
    margin-top: -50px;
  }
  #situationPage #situation2 .width-5 .right h2,
  #situationPage #situation2 .width-5 .right h2 span {
    font-size: 20px;
  }
  #situationPage #situation4 .width-5 .left .map .swiper-map::part(button-next) {
    width: 28px;
    height: 28px;
    left: 95%;
  }
  #situationPage #situation4 .width-5 .left .map .swiper-map::part(button-prev) {
    width: 28px;
    height: 28px;
    left: 5%;
  }
  #galerie {
    padding-top: 150px;
  }
  #galerie .images a {
    height: 250px;
    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(14), #galerie .images a:nth-child(15) {
    height: 350px;
  }
  #appartements .facade-container {
    margin-bottom: 50px;
  }
  #appartements .facade-container .plan-big {
    flex-direction: column;
    overflow: scroll;
    height: 100%;
    align-items: flex-start;
    justify-content: flex-start;
  }
  #appartements .facade-container .plan-big .data {
    width: 90%;
    margin-right: 0px;
    margin: 30px auto;
  }
  #appartements .facade-container .plan-big .data p {
    text-align: center;
  }
  #appartements .facade-container .plan-big .data a {
    margin-left: auto;
    margin-right: auto;
    width: -moz-max-content;
    width: max-content;
  }
  #appartements .facade-container .plan-big img {
    width: 80%;
    margin: 0 auto;
  }
  #appartements .facade-container .facade svg {
    width: 80%;
    margin-top: -40px;
  }
  #appartements .facade-container .prix {
    width: 100%;
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-header .showMore {
    width: 25px;
    height: 25px;
  }
  #appartements .facade-container .prix .facade-table .lot-detail li p {
    font-size: 14px;
    line-height: 16px;
  }
  #appartements .facade-container .prix .status-container .container {
    justify-content: space-between;
  }
  #architecturePage #architecture-accueil .width .top .box {
    right: 6%;
  }
  #architecturePage #architecture2 .width-5 .left {
    margin-top: 40px;
  }
  #architecturePage #architecture3 .width-5 .left {
    margin-bottom: 40px;
  }
  .contactSection .width-10 {
    padding-top: 100px;
  }
  .contactSection .width-10 .data {
    flex-direction: column;
  }
  .contactSection .width-10 .data .left {
    order: 1;
    margin-top: 30px;
    margin-right: 0px;
  }
  footer {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  footer .width-10 p,
  footer .width-10 a {
    line-height: 110%;
    letter-spacing: initial;
  }
}
@media only screen and (max-width: 480px) {
  a,
  p,
  li,
  span {
    font-size: 14px;
  }
  h1,
  h2,
  .title,
  .title span {
    font-size: 24px;
  }
  header .width-5 nav ul li {
    margin-bottom: 20px;
  }
  header .width-5 nav ul li a {
    font-size: 16px;
    text-align: center;
  }
  #accueilPage #accueil .top h1 {
    font-size: 26px;
    margin-bottom: 0;
  }
  #accueilPage #accueil .top .box {
    top: 75%;
    width: 330px;
    height: 45px;
  }
  #accueilPage #accueil .top .box a img {
    width: 20px;
    height: 20px;
  }
  #accueilPage #accueil2 {
    padding-top: 60px;
  }
  #accueilPage #accueil2 .width-10 .left {
    margin-bottom: 30px;
  }
  #accueilPage #accueil3 {
    padding-bottom: 60px;
    width: 100%;
  }
  .icons-section .width-5 ul li {
    width: 100%;
    margin-bottom: 20px;
  }
  #architecturePage #architecture-accueil .width .top .box {
    right: 8%;
    top: 65%;
    width: 320px;
    height: 45px;
  }
  #architecturePage #architecture-accueil .width .top .box a img {
    width: 20px;
    height: 20px;
  }
  #architecturePage #architecture2 .width-5 .left {
    width: 100%;
    margin-top: 40px;
  }
  #architecturePage #architecture3 .width-5 .left {
    margin-bottom: 30px;
  }
  #architecturePage #architecture4 .width-5 .right {
    margin-bottom: 40px;
    width: 100%;
    margin-right: 5%;
  }
  .icons-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  .contactSection {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #situationPage #situation .width-5 .top .box {
    width: 250px;
    height: 65px;
    top: 70%;
  }
  #situationPage #situation2 {
    padding-bottom: 60px;
  }
  #situationPage #situation2 .width-5 .left {
    min-height: auto;
    margin-top: 40px;
  }
  #situationPage #situation2 .width-5 .left .bottom {
    height: auto;
    top: 15px;
  }
  #situationPage #situation2 .width-5 .right .icon p {
    margin-left: 25px;
  }
  #situationPage #situation3 {
    padding-bottom: 80px;
  }
  #situationPage #situation3 .width-5 .left {
    margin-bottom: 30px;
  }
  #situationPage #situation3 .width-5 .right .bottom {
    bottom: -50px;
    width: 70%;
    height: auto;
  }
  #situationPage #situation4 {
    padding-bottom: 30px;
    padding-top: 80px;
  }
  #galerie .images a {
    height: 200px;
    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(14), #galerie .images a:nth-child(15) {
    height: 250px;
  }
  #appartements .icons-section {
    padding-top: 60px !important;
    padding-bottom: 30px;
  }
  #appartements .facade-container .facade .busole {
    top: 25%;
    left: 5%;
    width: 40px;
    height: 40px;
  }
  #appartements .facade-container .prix .pieces-selection {
    padding: 20px 16px;
  }
  #appartements .facade-container .prix .pieces-selection .container {
    flex-wrap: wrap;
  }
  #appartements .facade-container .prix .pieces-selection .container label {
    width: 33%;
    margin: 10px 0;
  }
  #appartements .facade-container .prix .facade-table .lot-detail {
    padding-right: 10px;
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-header {
    grid-template-columns: repeat(3, 1fr);
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-header hr {
    display: none;
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-header > div:nth-child(10) {
    display: none;
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-header > div:nth-child(14) {
    display: none;
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-header > div:nth-child(4) {
    border-right: 1px solid rgb(192, 190, 190);
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-header > div:last-child {
    border-right: 1px solid rgb(192, 190, 190);
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-header > div:nth-child(3) {
    border-right: none;
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-header > div:last-child {
    border-right: none;
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-header > div p {
    font-size: 13px;
    white-space: nowrap;
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-info,
  #appartements .facade-container .prix .facade-table .lot-detail .lot-btn {
    padding-right: 10px;
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-info > div,
  #appartements .facade-container .prix .facade-table .lot-detail .lot-info a,
  #appartements .facade-container .prix .facade-table .lot-detail .lot-btn > div,
  #appartements .facade-container .prix .facade-table .lot-detail .lot-btn a {
    width: 33%;
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-info > div p,
  #appartements .facade-container .prix .facade-table .lot-detail .lot-info a p,
  #appartements .facade-container .prix .facade-table .lot-detail .lot-btn > div p,
  #appartements .facade-container .prix .facade-table .lot-detail .lot-btn a p {
    font-size: 13px;
    line-height: 14px;
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-info > div:nth-child(4),
  #appartements .facade-container .prix .facade-table .lot-detail .lot-info a:nth-child(4),
  #appartements .facade-container .prix .facade-table .lot-detail .lot-btn > div:nth-child(4),
  #appartements .facade-container .prix .facade-table .lot-detail .lot-btn a:nth-child(4) {
    display: none;
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-header > div:nth-child(4) {
    white-space: nowrap;
  }
  #appartements .facade-container {
    overflow: initial;
  }
  #appartements .facade-container .prix .facade-table {
    overflow-y: initial;
    height: auto;
  }
  #appartements .facade-container .prix .facade-table::-webkit-scrollbar {
    width: 0px;
  }
  #appartements .facade-container .prix .facade-table::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 0px;
  }
  #appartements .facade-container .prix .facade-table::-webkit-scrollbar-track {
    background-color: #fff;
  }
  #contact .acteurs {
    margin-top: 80px;
    padding-top: 80px;
    padding-bottom: 20px;
    flex-wrap: wrap;
  }
}/*# sourceMappingURL=style.css.map */