* {
  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: "Jost", sans-serif;
}

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

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

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

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

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

#scroll-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 5px;
  width: 0%;
  background-color: #c7ad90;
  z-index: 9999;
  transition: width 0.1s ease-out;
}

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

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-style: Regular;
  line-height: 125%;
  text-transform: uppercase;
}

h1 {
  /* font-size: 48px; */
  font-size: 28px;
  letter-spacing: 1.92px;
  vertical-align: middle;
  color: #faf3eb;
}

h2 {
  font-size: 28px;
  letter-spacing: 0.96px;
  vertical-align: middle;
  margin-bottom: 16px;
  color: #23343b;
}
h2 span {
  color: #c7ad90;
}

h3 {
  font-weight: 400;
  font-style: Regular;
  font-size: 25px;
  line-height: 38.4px;
  letter-spacing: 0%;
  text-transform: uppercase;
}

h4 {
  font-weight: 400;
  font-size: 15.4px;
  line-height: 26.88px;
  letter-spacing: 7.68px;
  text-align: center;
  vertical-align: middle;
  text-transform: uppercase;
  color: #fefdfb;
}

a {
  text-decoration: none;
  font-family: "Jost", sans-serif;
}

p,
li {
  font-family: "Jost", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 140%;
  letter-spacing: 0%;
}

span {
  font-family: "Jost", sans-serif;
}
span.subtitle {
  display: inline-block;
  font-weight: 600;
  font-size: 16px;
  line-height: 23.04px;
  letter-spacing: 0%;
  margin-bottom: 16px;
  color: #c7ad90;
}

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

.btn {
  display: inline-block;
  font-weight: 400;
  font-size: 13.4px;
  line-height: 19.2px;
  letter-spacing: 3.84px;
  text-align: center;
  text-transform: uppercase;
  padding: 16px 32px;
  transition: all 0.3s linear;
}
.btn__dark {
  background-color: #23343b;
  color: #faf3eb;
}
.btn__dark:hover {
  background-color: #c7ad90;
}
.btn__accent {
  background-color: #c7ad90;
  color: #faf3eb;
}
.btn__accent:hover {
  background-color: #23343b;
}

header {
  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;
  padding: 20px 0;
}
header.active .width .logo {
  width: 200px;
  right: 5%;
}
header .width-5 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
header .width-5 .logo {
  transition: all 1s linear;
  width: 185px;
  height: auto;
  position: relative;
  z-index: 9999;
}
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: 52px;
}
header .width-5 nav ul li {
  position: relative;
  display: inline-block;
}
header .width-5 nav ul li:after {
  content: "";
  position: absolute;
  width: 100%;
  transform: scaleX(0);
  height: 1px;
  bottom: 0;
  left: -2px;
  background-color: #23343b;
  transition: transform 0.25s ease-out;
  transform-origin: bottom right;
}
header .width-5 nav ul li:hover::after {
  transform: scaleX(1);
  transform-origin: bottom left;
}
header .width-5 nav ul li#menu-item-21 {
  display: none;
}
header .width-5 nav ul li a {
  font-weight: 400;
  font-size: 13px;
  line-height: 19.2px;
  letter-spacing: 3.84px;
  text-align: center;
  text-transform: uppercase;
  color: #23343b;
}
header .width-5 .contact {
  width: auto;
  position: relative;
  z-index: 9999;
}
header .width-5 .contact a {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .width-5 .contact a:hover img {
  transform: scale(1.1);
}
header .width-5 .contact a span {
  font-weight: 400;
  font-size: 11.5px;
  line-height: 13.44px;
  letter-spacing: 0%;
  text-align: right;
  text-transform: uppercase;
  text-decoration: underline;
  color: #23343b;
}
header .width-5 .contact a img {
  width: 30px;
  height: 30px;
  margin-left: 14px;
  transition: all 0.3s linear;
}

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

.container-fullImg {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  position: relative;
}
.container-fullImg .box {
  position: absolute;
  background-color: rgba(254, 253, 251, 0.9);
  padding: 53px 44px;
  width: auto;
}
.container-fullImg .box h2 {
  max-width: 30ch;
}
.container-fullImg .box p {
  max-width: 50ch;
  margin-bottom: 20px;
}

#accueilPage #accueil {
  height: 100vh;
}
#accueilPage #accueil > div {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  width: 100%;
  height: 100%;
  position: relative;
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
#accueilPage #accueil > div .pdf {
  position: absolute;
  top: 40%;
  left: 0;
  transform-origin: top left;
  transform: rotate(-90deg) translateX(-100%);
}
#accueilPage #accueil > div .pdf a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #c7ad90;
  padding: 15px 24px;
  transition: all 0.3s linear;
}
#accueilPage #accueil > div .pdf a:hover {
  background-color: #23343b;
}
#accueilPage #accueil > div .pdf a span {
  color: #fefdfb;
  font-weight: 400;
  text-transform: uppercase;
  font-size: 15px;
  line-height: 19.2px;
  letter-spacing: 3.84px;
  text-align: center;
}
#accueilPage #accueil > div .pdf a img {
  width: 20px;
  height: auto;
  margin-left: 16px;
  transform: rotate(90deg);
}
#accueilPage #accueil > div .txt {
  width: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 73px;
}
#accueilPage #accueil > div .txt .left {
  flex: 1;
}
#accueilPage #accueil > div .txt .left p {
  color: #faf3eb;
  margin-top: 20px;
  font-size: 20px;
  max-width: 40ch;
}
#accueilPage #accueil > div .txt .right {
  flex: 1;
  text-align: right;
}
#accueilPage #projet {
  padding-top: 81px;
  padding-bottom: 81px;
}
#accueilPage #projet .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#accueilPage #projet .container .left {
  width: 25%;
}
#accueilPage #projet .container .right {
  width: 60%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#accueilPage #projet .container .right .box {
  width: 30%;
}
#accueilPage #projet .container .right .box img {
  height: 50px;
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin-bottom: 50px;
}
#accueilPage #projet .container .right .box p {
  max-width: 25ch;
  text-transform: uppercase;
}
#accueilPage #fullImg {
  width: 100%;
}
#accueilPage #fullImg .container-fullImg {
  height: 900px;
}
#accueilPage #fullImg .container-fullImg .box {
  top: 0;
  right: 0;
}
#accueilPage #projet2 {
  padding-top: 25px;
  padding-bottom: 67px;
}

#accueilPage #projet1 {
  padding-top: 25px;
  padding-bottom: 0px;
}

#accueilPage #projet2 .container,
#accueilPage #projet1 .container {
  padding-top: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#accueilPage #projet2 .container > div,
#accueilPage #projet1 .container > div {
  width: 50%;
}
#accueilPage #projet2 .container > div.txt,
#accueilPage #projet1 .container > div.txt {
  text-align: center;
}
#accueilPage #projet2 .container > div.txt h2,
#accueilPage #projet1 .container > div.txt h2 {
  max-width: 30ch;
  margin: 0 auto 22px auto;
}
#accueilPage #projet2 .container > div.txt p,
#accueilPage #projet1 .container > div.txt p {
  max-width: 48ch;
  margin: 0 auto;
}


#accueilPage #projet2 .container > div.img,
#accueilPage #projet1 .container > div.img {
  height: 477px;
  overflow: hidden;
}
#accueilPage #projet2 .container > div.img img,
#accueilPage #projet1 .container > div.img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 1s linear;
}
#accueilPage #projet2 .container > div.img img:hover,
#accueilPage #projet1 .container > div.img img:hover {
  transform: scale(1.2);
}
#accueilPage #fullImg2 {
  width: 100%;
}
#accueilPage #fullImg2 .container-fullImg {
  height: 900px;
}
#accueilPage #fullImg2 .container-fullImg .box {
  top: 0;
  left: 0;
}

#acteurs {
  padding-top: 100px;
  padding-bottom: 100px;
  background-color: #c7ad90;
}
#acteurs .width-5 {
  display: flex;
  align-items: flex-start;
  justify-content: center;
}
#acteurs .width-5 .box {
  text-align: center;
  width: 40%;
}

#acteurs .width-5 .box a.no-link {
  height: 30px;
  cursor: initial;
  pointer-events: none;
  margin: 30px auto;
}

#acteurs .width-5 .box a img {
  width: 200px;
  height: 80px;
  margin: 30px auto;
  object-fit: contain;
}
#acteurs .width-5 .box p,
#acteurs .width-5 .box a {
  font-size: 16px;
  color: #fefdfb;
  line-height: 140%;
}
#acteurs .width-5 .box p {
  margin-bottom: 10px;
}
#acteurs .width-5 .box a {
  display: block;
}
#acteurs .width-5 .box a:hover {
  text-decoration: underline;
}

#situationPage {
  background-color: #f3e1d1;
}
#situationPage #situation {
  width: 100%;
  padding-top: 50px;
}
#situationPage #situation .container-fullImg {
  height: 900px;
}
#situationPage #situation .container-fullImg .box {
  bottom: 0;
  left: 0;
  background-color: rgba(244, 227, 211, 0.9);
}
#situationPage #situation2 {
  background-color: #f3e1d1;
}
#situationPage #situation2 .container {
  padding-top: 100px;
  padding-bottom: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#situationPage #situation2 .container > div {
  width: 50%;
}
#situationPage #situation2 .container > div.txt {
  width: 40%;
}
#situationPage #situation2 .container > div.txt p {
  max-width: 50ch;
  margin-bottom: 10px;
}
#situationPage #situation2 .distances {
  background-color: #23343b;
  color: #f3e1d1;
}
#situationPage #situation2 .distances table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
}
#situationPage #situation2 .distances table td,
#situationPage #situation2 .distances table th {
  padding: 27px;
  text-transform: uppercase;
}
#situationPage #situation2 .distances table tr:first-child td,
#situationPage #situation2 .distances table tr:first-child th {
  border-bottom: 1px solid #f4e3d3;
}
#situationPage .contactSection {
  background-color: #fefdfb;
}

/*** GALERIE ***/
#galerie {
  background-color: #fefdfb;
}
#galerie .container {
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 800px;
  width: 100%;
  position: relative;
}
#galerie .container .box {
  position: absolute;
  bottom: 0;
  left: 0;
  background-color: rgba(254, 253, 251, 0.6);
  padding: 53px 44px;
  width: auto;
}
#galerie .container .box h2 {
  max-width: 25ch;
}
#galerie .container .box p {
  max-width: 50ch;
  margin-bottom: 20px;
}
#galerie .images {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-bottom: 50px;
  padding-top: 150px;
}
#galerie .images a {
  display: block;
  height: 540px;
  overflow: hidden;
  border: 8px solid #fefdfb;
}
#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: 55%;
}
#galerie .images a:nth-child(2),
#galerie .images a:nth-child(3) {
  width: 45%;
}
#galerie .images a:nth-child(4),
#galerie .images a:nth-child(5) {
  width: 55%;
}
#galerie .images a:nth-child(6),
#galerie .images a:nth-child(9) {
  width: 45%;
}
#galerie .images a:nth-child(7) {
  width: 45%;
}

#galerie .images a:nth-child(8) {
  width: 55%;
}

#galerie .images a:last-child {
  width: 100%;
}

.contactSection {
  padding-top: 133px;
  padding-bottom: 133px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
.contactSection .left {
  width: 25%;
}
.contactSection .left h2 {
  margin-bottom: 42px;
}
.contactSection .right {
  width: 65%;
}
.contactSection .right form {
  width: 100%;
}
.contactSection .right form .form-flex {
  align-items: flex-start;
  justify-content: space-between;
  gap: 5px;
  flex-wrap: wrap;
  display: flex;
}
.contactSection .right form .form-flex > div {
  width: calc(50% - 5px);
  margin-bottom: 5px;
}
.contactSection .right form .form-flex > div input,
.contactSection .right form .form-flex > div textarea {
  width: 100%;
  background-color: #faf3eb;
  border: none;
  outline: none;
  padding: 16px 8px;
  color: #c7ad90;
}
.contactSection .right form .form-flex > div input::-moz-placeholder,
.contactSection .right form .form-flex > div textarea::-moz-placeholder {
  color: #c7ad90;
  font-family: "Jost", sans-serif;
}
.contactSection .right form .form-flex > div input::placeholder,
.contactSection .right form .form-flex > div textarea::placeholder {
  color: #c7ad90;
  font-family: "Jost", sans-serif;
}
.contactSection .right form .form-flex > div input:focus,
.contactSection .right form .form-flex > div textarea:focus {
  background-color: #f4e3d3;
  color: #23343b;
}
.contactSection .right form .form-flex > div.textarea {
  width: 100%;
}
.contactSection .right form .form-flex > div.textarea textarea {
  height: 120px;
}
.contactSection .right form .submit {
  margin-top: 35px;
  width: 100%;
}
.contactSection .right form .submit button {
  cursor: pointer;
  outline: none;
  width: 100%;
  border: none;
}

#contactPage {
  background-color: #fefdfb;
}
#contactPage .container-fullImg {
  margin: 0 auto;
  height: 900px;
  background-size: cover;
}
#contactPage .container-fullImg .box {
  bottom: 0;
  left: 0;
}

footer {
  padding-top: 10px;
  padding-bottom: 10px;
}
footer .width-10 {
  text-align: center;
}
footer .width-10 p,
footer .width-10 a {
  font-size: 14px;
  color: #23343b;
}
footer .width-10 a {
  text-decoration: underline;
}

/*** PLANS & PRIX ***/
#appartements .container-fullImg {
  height: 900px;
}
#appartements .container-fullImg .box {
  bottom: 0;
  left: 0;
    padding: 40px 20px 20px 40px;
}

#appartements .container-fullImg p {
  max-width: 100ch;
    font-size: 16px;
}

#appartements .container-fullImg ul {
  /* margin-left: 20px; */
  margin-bottom: 20px;
  list-style: none;
}

#appartements .container-fullImg ul li {
  margin-bottom: 10px;
    font-size: 16px;
}


#appartements .container-fullImg .data {
font-size: 13px;
    margin-bottom: 0px;
}

#appartements .title-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 100px auto;
}

#appartements  .title-container .title-app {
  text-align: center;
  font-weight: 200;
  max-width: 50ch;
  text-align: left;
}
#appartements .status-container {
  padding-top: 32px;
  padding-bottom: 32px;
}
#appartements .status-container p {
  font-weight: 400;
  font-size: 15px;
  line-height: 17.5px;
  letter-spacing: 0px;
  margin-bottom: 12px;
  color: #23343b;
}
#appartements .status-container .container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 32px;
}
#appartements .status-container .container > div {
  width: 30%;
  max-width: 90px;
}
#appartements .status-container .container > div span {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  margin: 0 auto;
  display: block;
}
#appartements .status-container .container > div span.disp {
  background-color: #80bb9f;
}
#appartements .status-container .container > div span.res {
  background-color: #ffdfa0;
}
#appartements .status-container .container > div span.loue {
  background-color: #eb7b81;
}
#appartements .status-container .container > div p {
  text-align: center;
  margin-top: 4px;
  font-weight: 400;
  font-size: 12px;
  line-height: 15px;
  letter-spacing: 0px;
  color: #23343b;
  margin-bottom: 0;
}
#appartements .facade-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
#appartements .facade-container .facade {
  width: 63%;
  z-index: 1;
  margin-top: -150px;
}
#appartements .facade-container .prix {
  width: 35%;
}
#appartements .facade-container .tabs {
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  height: auto;
  gap: 12px;
}
#appartements .facade-container .tabs .tab {
  cursor: pointer;
  padding: 10px;
  background-color: white;
  white-space: nowrap;
  transition: all 0.3s linear;
  color: #23343b;
  border: 1px solid #c7ad90;
  margin-bottom: 12px;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
}

#appartements .facade-container .tabs-bottom {
  align-items: center;
  justify-content: flex-end;
}

#appartements .facade-container .tabs-bottom .tab {
  width: 200px;
}

#appartements .facade-container .tabs .tab.active,
#appartements .facade-container .tabs .tab:hover {
  top: 0px;
  color: #faf3eb;
  background-color: #c7ad90;
  border: 1px solid #c7ad90;
}
#appartements .facade-container .prix .tables {
  position: relative;
}
#appartements .facade-container .prix .facade-table {
  display: none;
}
#appartements .facade-container .prix .facade-table.active {
  display: block;
}
#appartements
  .facade-container
  .prix
  .facade-table.table-location
  .lot-detail
  .lot-info
  div {
  width: 20%;
}
#appartements .facade-container .prix .facade-table .lot-detail {
  padding-right: 20px;
  margin-top: 30px;
  list-style: none;
}
#appartements .facade-container .prix .facade-table .lot-detail li {
  border: 1px solid transparent;
  transition: all 0.5s linear;
}
#appartements .facade-container .prix .facade-table .lot-detail li.active {
  border: 1px solid #c7ad90;
  transform: scale(1.1);
  position: relative;
  z-index: 44;
  background-color: white;
}
#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: #23343b;
}
#appartements .facade-container .prix .facade-table .lot-detail li .price {
  font-family: "Jost", sans-serif;
  font-size: 14px;
}

#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  li
  .price
  sup::before {
  display: none !important;
}

#appartements .facade-container .prix .facade-table .lot-detail li .price p {
  color: black;
  font-weight: 300;
  font-size: 14px;
}

#appartements .facade-container .prix .facade-table .lot-detail .statut-txt p {
  color: transparent !important;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-header {
  display: flex;
  padding: 10px 10px 10px 0;
  align-items: center;
  justify-content: space-between;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s ease-in-out;
  position: relative;
  background-color: #faf3eb;
}

#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-info
  div:last-child {
  width: 1px;
  padding: 0px;
  margin-top: 20px;
}

#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  > div.statut-txt {
  border-right: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-header.active {
  background-color: #f4e3d3;
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-header.active
  * {
  color: #23343b;
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-header
  .showMore {
  position: absolute;
  top: 35%;
  right: 5px;
  background-color: #c7ad90;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  border: none;
  transition: all 0.4s ease-in-out;
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-header
  .showMore.active {
  transform: rotate(180deg);
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-header
  .showMore.r {
  background-color: #ffdfa0;
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-header
  .showMore.d {
  background-color: #80bb9f;
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-header
  .showMore.v {
  background-color: #eb7b81;
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-header
  .showMore
  img {
  width: 15px;
  height: 15px;
  -o-object-fit: contain;
  object-fit: contain;
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-header:hover {
  background: #f4e3d3;
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-header
  > div {
  width: 25%;
  border-right: 1px solid #c7ad90;
  display: flex;
  align-items: center;
  justify-content: center;
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-header
  > div:nth-child(4) {
  border-right: none;
  min-width: 120px;
}
#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: 13px;
  font-weight: 300;
  line-height: 16px;
  letter-spacing: 2%;
  text-align: center;
  text-transform: uppercase;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-info {
  align-items: flex-start;
  justify-content: space-between;
  text-align: center;
  display: flex;
  width: 92%;
  margin: 0 auto;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-info sup,
#appartements .facade-container .prix .facade-table .lot-detail .lot-info p {
  color: #23343b;
  font-weight: 400;
}
#appartements .facade-container .prix .facade-table .lot-detail .lot-info p {
  font-size: 14px;
}
#appartements .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;
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-info
  div
  img {
  width: 25px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  margin-top: 10px;
  transition: all 0.7s linear;
  transform: rotate(90deg);
  filter: invert(1);
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-info
  div
  img:hover {
  filter: invert(0.3);
}
#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-info
  div
  p {
  margin: 0 5px;
}

.pieces sup {
  display: block;
  margin-top: 2px;
}

#appartements
  .facade-container
  .prix
  .facade-table
  .lot-detail
  .lot-header
  > div.pieces {
  flex-wrap: wrap;
}

#appartements .pieces .extra-txt {
  width: 100%;
  display: block !important;
  font-size: 11px !important;
  font-weight: 500 !important;
  margin-top: 5px !important;
}

#appartements .facade-container .plan-big {
  top: 0;
  width: 60vw;
  right: -100%;
  position: fixed;
  z-index: 9999;
  background-color: #ffffff;
  border: 1px solid #faf3eb;
  padding: 40px;
  transition-duration: 0.6s;
  opacity: 0;
  text-align: center;
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
#appartements .facade-container .plan-big.active {
  right: 0;
  opacity: 1;
}
#appartements .facade-container .plan-big img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

#appartements .facade-container .plan-big .swiper-plans {
  width: 100%;
  height: auto;
}

#appartements .facade-container .plan-big .swiper-plans::part(container) {
  overflow: visible;
}

#appartements .facade-container .plan-big .swiper-plans::part(button-prev),
#appartements .facade-container .plan-big .swiper-plans::part(button-next) {
  width: 45px;
  height: 45px;
  bottom: -50px;
  top: auto;
  background: #c7ad90;
  padding: 0px 8px;
}

#appartements .facade-container .plan-big .swiper-plans::part(button-prev) {
  left: calc(50% - 50px);
  background: url("imgs/icons/arrow.svg") no-repeat center;
  transform: rotate(180deg);
}

#appartements .facade-container .plan-big .swiper-plans::part(button-next) {
  left: 50%;
  background: url("imgs/icons/arrow.svg") no-repeat center center;
}

#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;
}
#appartements .facade-container .r.hover *,
#appartements .facade-container .r:hover * {
  fill: #f2eba6 !important;
}
#appartements .facade-container .d.hover *,
#appartements .facade-container .d:hover * {
  fill: #9ee18e !important;
}
#appartements .facade-container .grass {
  fill: #cfdfd1 !important;
  stroke: none !important;
  cursor: default !important;
}
#appartements .facade-container .grey {
  fill: #cccccc;
}
#appartements .facade-container sup {
  font-size: 10px;
}
#appartements .tooltip {
  position: fixed;
  z-index: 99;
  visibility: hidden;
  background-color: #c7ad90;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  top: 40%;
  left: 38%;
  text-align: center; /* Center text horizontally */
  line-height: 100px; /* Center text vertically */
}
#appartements .tooltip > div {
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition-duration: 0.2s;
  width: 80px;
  height: 80px;
  text-align: center;
}
#appartements .tooltip > div * {
  color: white;
}
#appartements .tooltip > div h5 {
  font-family: "Jost", sans-serif;
  font-size: 16px;
  line-height: initial;
  margin-bottom: initial;
}
#appartements .tooltip > div p {
  font-size: 12px;
  line-height: 110%;
  text-align: center;
}
#appartements .tooltip.visible {
  visibility: visible;
}
#appartements .tooltip.visible > div {
  opacity: 1;
}
#appartements .lot {
  cursor: pointer;
}
#appartements .floor {
  transition: all 0.4s linear;
}
#appartements .floor.move {
  transform: translateX(50px) translateY(-100px);
}
#appartements .contactSection {
  padding-top: 150px;
}

#appartements #fullImg3 {
  width: 100%;
  padding: 0;
  margin-top: 90px;
}
#appartements #fullImg3 .container-fullImg {
  height: 900px;
}
#appartements #fullImg3 .container-fullImg .box {
  top: 0;
  right: 0;
  left: auto;
  bottom: auto;
}

.telechargement-section {
  position: relative;
  margin-top: 90px;
  background-color: #faf3eb;
  z-index: 3;
  padding: 70px 50px;
}
.telechargement-section .titleSection {
  padding: 30px;
}
.telechargement-section .titleSection .subtitle {
  color: #23343b;
  text-align: center;
  font-weight: 300;
}
.telechargement-section .width-5 {
  margin-top: 60px;
}
.telechargement-section .width-5 ul {
  display: flex;
  align-items: center;
  justify-content: space-between;
  list-style: none;
  text-align: center;
}
.telechargement-section .width-5 ul li a {
  display: block;
  color: #23343b;
}
.telechargement-section .width-5 ul li {
  text-align: center;
  transition: all 0.3s linear;
}
.telechargement-section .width-5 ul li:hover img {
  transform: scale(1.2);
  opacity: 1;
}
.telechargement-section .width-5 ul li img {
  width: 50px;
  margin: 0 auto;
  transition: all 0.3s linear;
  opacity: 0.6;
}
.telechargement-section .width-5 ul li p {
  margin-top: 30px;
}

.bat {
  opacity: 0.4;
  /* pointer-events: none; */
}

/* price modal */

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
  z-index: 9999;
}

.modal-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.modal-content {
  width: 70%;
  max-width: 800px;
  background: #fff;
  padding: 80px 50px;

  transform: translateY(40px);
  opacity: 0;
  transition: all 0.35s ease;
}

.modal-content h2 {
  text-align: center;
  font-weight: 300;
  margin-bottom: 60px;
}

.modal-overlay.active .modal-content {
  transform: translateY(0);
  opacity: 1;
}

.modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  border: none;
  background: none;
  font-size: 28px;
  cursor: pointer;
}

/* form */
#priceModal .form-top {
  display: flex;
  gap: 5px;
  align-items: center;
  margin-bottom: 10px;
  justify-content: space-between;
}

#priceModal .form-top label {
  font-weight: 300;
  font-size: 15px;
  width: calc(50% - 5px);
  padding: 16px 8px;
}

#priceModal .form-top select {
  padding: 16px 8px;
  width: calc(50% - 5px);
  background-color: rgb(250, 243, 235);
  border: none;
  color: black;
  font-family: "Jost", sans-serif;
  font-weight: 300px;
  font-size: 15px;
}

#priceModal .form-top select option {
  width: auto;
  font-family: "Jost", sans-serif;
  font-weight: 300px;
  font-size: 14px;
}

#priceModal form .form-flex {
  align-items: flex-start;
  justify-content: space-between;
  gap: 5px;
  flex-wrap: wrap;
  display: flex;
}

#priceModal form .form-flex > div {
  width: calc(50% - 5px);
  margin-bottom: 5px;
}

#priceModal form .form-flex > div input,
#priceModal form .form-flex > div textarea {
  width: 100%;
  background-color: #faf3eb;
  border: none;
  outline: none;
  padding: 16px 8px;
  font-family: "Jost", sans-serif;
  color: black;
}
#priceModal form .form-flex > div input::-moz-placeholder,
#priceModal form .form-flex > div textarea::-moz-placeholder {
  color: black;
  font-family: "Jost", sans-serif;
}
#priceModal form .form-flex > div input::placeholder,
#priceModal form .form-flex > div textarea::placeholder {
  color: black;
  font-family: "Jost", sans-serif;
  font-weight: 300px;
  font-size: 15px;
}
#priceModal form .form-flex > div input:focus,
#priceModal form .form-flex > div textarea:focus {
  background-color: #f4e3d3;
  color: #23343b;
}
#priceModal form .form-flex > div.textarea {
  width: 100%;
}
#priceModal form .form-flex > div.textarea textarea {
  height: 120px;
}
#priceModal form .submit {
  margin-top: 35px;
  width: 100%;
}
#priceModal form .submit button {
  cursor: pointer;
  outline: none;
  width: 100%;
  border: none;
}

.toast {
  position: fixed;
  bottom: 30px;
  right: 30px;
  background: #111;
  color: #fff;
  padding: 15px 25px;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(20px);
  transition: 0.4s ease;
  z-index: 99999;
  pointer-events: none;
}

.toast.show {
  opacity: 1;
  transform: translateY(0);
}

/*** SUCCES ***/
#succes {
  padding-bottom: 110px;
  min-height: 90vh;

  display: flex;
  align-items: center;
}
#succes section {
  margin-bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
#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: 1640px) {
  #situationPage #situation .container-fullImg {
    height: 90vh;
  }
  #galerie .images {
    padding-bottom: 50px;
    padding-top: 100px;
  }
  #galerie .images a {
    height: 350px;
  }
}
@media only screen and (max-width: 1440px) {
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 20px;
    line-height: 120%;
  }
  .width-5 {
    padding-left: 3%;
    padding-right: 3%;
  }
  #accueilPage #accueil > div .txt {
    margin-bottom: 30px;
    margin-left: 5%;
  }
  #accueilPage #projet .container .right {
    width: 65%;
  }
  #accueilPage #projet .container .right .box p {
    max-width: 30ch;
    text-transform: uppercase;
  }
  #appartements .container-fullImg {
    height: 650px;
  }
  #appartements .facade-container .prix {
    width: 40%;
  }
  #appartements .facade-container .facade {
    width: 58%;
  }
  .container-fullImg .box {
    padding: 30px;
  }
  .contactSection .left {
    width: 30%;
  }
}
@media only screen and (max-width: 1070px) {
  h2 {
    font-size: 28px;
  }
  p,
  li {
    font-size: 16px;
    line-height: 130%;
  }
  header .width-5 nav ul {
    gap: 35px;
  }
  .btn {
    letter-spacing: 3px;
    padding: 12px 30px;
  }
  #accueilPage #accueil > div .txt {
    align-items: flex-start;
    justify-content: space-between;
    flex-direction: column;
    background: rgba(0, 0, 0, 0.5);
    padding-top: 30px;
  }
  #accueilPage #accueil > div .txt .btn {
    margin-top: 40px;
  }
  #accueilPage #projet .container .left {
    width: 38%;
  }
  #accueilPage #projet .container .right {
    flex-direction: column;
    width: 52%;
  }
  #accueilPage #projet .container .right .box {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    margin: 20px 0;
  }
  #accueilPage #projet .container .right .box img {
    height: auto;
    width: 50px;
    -o-object-fit: contain;
    object-fit: contain;
    margin-bottom: 0px;
  }
  #accueilPage #projet .container .right .box p {
    max-width: initial;
    margin-left: 20px;
  }
  #accueilPage #fullImg .container-fullImg,
  #accueilPage #fullImg2 .container-fullImg {
    height: 600px;
  }
  #accueilPage #projet2 .container > div.img,
  #accueilPage #projet1 .container > div.img {
    height: 350px;
  }
  #accueilPage #projet2 .container > div.txt,
  #accueilPage #projet1 .container > div.txt {
    padding-left: 20px;
    padding-right: 20px;
  }
  #accueilPage #projet2 .container > div.txt h2,
  #accueilPage #projet1 .container > div.txt h2 {
    max-width: 30ch;
  }

  #appartements #fullImg3 .container-fullImg {
    height: 600px;
  }

  #situationPage #situation .container-fullImg {
    height: 650px;
  }
  #situationPage #situation2 .container > div {
    width: 55%;
  }
  #situationPage #situation2 .distances table td,
  #situationPage #situation2 .distances table th {
    padding: 25px 15px;
    font-size: 14px;
  }
  #galerie .container {
    height: 650px;
    margin-bottom: 80px;
  }
  #galerie .container .box {
    padding: 40px 20px;
    bottom: -110px;
    border: 1px solid #c7ad90;
  }
  #galerie .container .box p {
    margin-bottom: 0px;
  }
  #galerie .images {
    padding-top: 80px;
  }
  #galerie .images a {
    height: 250px;
  }
  #contactPage .container-fullImg {
    height: 650px;
  }
  .contactSection {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #acteurs .width-5 .box {
    width: 45%;
  }
  #appartements .facade-container .facade {
    width: 50%;
  }
  #appartements .facade-container .prix {
    width: 50%;
  }
  #appartements .facade-container .prix .facade-table .lot-detail .lot-info {
    width: 100%;
    margin: 0 auto;
  }
  #appartements .facade-container .plan-big {
    top: 0;
    width: 100vw;
  }

  #appartements .title-container {
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }

  .telechargement-section {
    margin-top: 50px;
    padding: 50px 30px;
  }
}
@media only screen and (max-width: 951px) {
  #loading > div {
    width: 250px;
  }
  header {
    padding: 10px 0;
  }
  header .width-5 nav.active {
    top: 0;
    left: 0;
    transition: all 0.6s linear;
  }
  header .width-5 .logo {
    width: 150px;
  }
  header .width-5 nav {
    transition: all 0.6s linear;
    position: fixed;
    top: -100%;
    left: 0;
    background-color: #fefdfb;
    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%;
  }
  header .width-5 nav ul li {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  header .width-5 nav ul li a {
    font-size: 18px;
  }
  header .width-5.active #menu-btn {
    top: 24px;
  }
  header .width-5.active #menu-btn span,
  header .width-5.active #menu-btn span::before,
  header .width-5.active #menu-btn span::after {
    background-color: #23343b;
  }
  header .width-5.active #menu-btn.active span {
    background-color: transparent;
  }
  header .width-5.active #menu-btn.active span::before,
  header .width-5.active #menu-btn.active span::after {
    background-color: #23343b;
  }
  header .width-5.active #lang * {
    color: #23343b;
  }
  header .width-5.active nav ul li a {
    color: #23343b;
  }
  .width-5 {
    padding-left: 5%;
    padding-right: 5%;
  }
  h1 {
    font-size: 22px;
    letter-spacing: 1px;
  }
  h2 {
    font-size: 22px;
  }
  #menu-btn {
    display: block;
  }
  #accueilPage {
    margin-top: 80px;
  }
  #accueilPage #accueil {
    height: 450px;
    margin-top: 100px;
  }
  #accueilPage #accueil > div .pdf {
    transform: initial;
    top: 0;
    left: 0;
    width: 100%;
  }
  #accueilPage #accueil > div .txt {
    margin-left: 0;
    margin-bottom: -20px;
  }
  #accueilPage #accueil > div .txt .right {
    width: 100%;
  }
  #accueilPage #accueil > div .txt .right .btn {
    margin-top: 20px;
  }
  #accueilPage #projet {
    padding-top: 60px;
    padding-bottom: 40px;
  }
  #accueilPage #projet .container {
    flex-direction: column;
  }
  #accueilPage #projet .container .left {
    width: 100%;
  }
  #accueilPage #projet .container .right {
    width: 100%;
    margin-top: 20px;
  }
  #accueilPage #projet .container .right .box {
    margin-left: 5%;
  }
  #accueilPage #projet .container .right .box p {
    margin-left: 30px;
    max-width: 40ch;
  }
  #accueilPage #fullImg,
  #accueilPage #fullImg2 {
    margin-top: 100px;
  }
  #accueilPage #fullImg .container-fullImg,
  #accueilPage #fullImg2 .container-fullImg {
    height: 500px;
  }
  #accueilPage #fullImg .container-fullImg .box,
  #accueilPage #fullImg2 .container-fullImg .box {
    border: 1px solid #c7ad90;
    top: -100px;
    right: initial;
    left: 5%;
  }
  #accueilPage #projet2,
  #accueilPage #projet1 {
    padding-top: 0;
    padding-bottom: 0;
  }

  #accueilPage #projet2 .container,
  #accueilPage #projet1 .container {
    padding-top: 0px;
    padding-bottom: 40px;
    align-items: center;
    justify-content: space-between;
    flex-direction: column;
  }
  #accueilPage #projet2 .container .txt,
  #accueilPage #projet1 .container .txt {
    width: 100%;
    order: -1;
    padding-bottom: 40px;
    padding-top: 40px;
  }
  #accueilPage #projet2 .container .img,
  #accueilPage #projet1 .container .img {
    width: 100%;
    height: auto;
  }

  #appartements #fullImg3 {
    margin-top: 150px;
  }

  #appartements #fullImg3 .container-fullImg {
    height: 500px;
  }

  #appartements #fullImg3 .container-fullImg .box {
    border: 1px solid #c7ad90;
    top: -100px;
    right: initial;
    left: 5%;
  }

  .contactSection {
    padding-top: 60px;
    padding-bottom: 60px;
    flex-direction: column;
  }
  .contactSection .left {
    width: 100%;
    margin-bottom: 50px;
  }
  .contactSection .right {
    width: 100%;
  }
  #acteurs {
    padding-top: 80px;
    padding-bottom: 20px;
  }
  #acteurs .width-5 {
    flex-direction: column;
  }
  #acteurs .width-5 .box {
    width: 100%;
    margin-bottom: 30px;
  }
  #situationPage #situation2 .container {
    padding-top: 60px;
    padding-bottom: 60px;
    flex-direction: column;
  }
  #situationPage #situation2 .container > div.img {
    width: 100%;
  }
  #situationPage #situation2 .container > div.txt {
    width: 100%;
    order: -1;
    margin-bottom: 30px;
  }
  #situationPage #situation2 .container > div.txt p {
    max-width: initial;
  }
  #situationPage #situation2 .distances table {
    display: block;
    width: 100%;
  }
  #situationPage #situation2 .distances table tr {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 1em;
    padding: 0.5em;
    border-top: 10px solid #f4e3d3;
  }
  #situationPage #situation2 .distances table th {
    flex: 1 1 100%;
    font-weight: bold;
    padding: 0.5em;
    font-size: 22px;
    border-bottom: 1px solid #f4e3d3;
  }
  #situationPage #situation2 .distances table th,
  #situationPage #situation2 .distances table td {
    box-sizing: border-box;
    padding: 20px;
  }
  #situationPage #situation2 .distances table th {
    flex: 1 1 100%; /* Pierwsze <td> po <th> */
  }
  #situationPage #situation2 .distances table td {
    flex: 1 1 50%; /* Reszta po 50% */
    border-bottom: none !important;
  }
  #contactPage .container-fullImg {
    margin-bottom: 100px;
    height: 550px;
  }
  #contactPage .container-fullImg .box {
    bottom: -130px;
    padding: 20px;
    left: 0;
    border: 1px solid #c7ad90;
  }
  #contactPage .container-fullImg .box p {
    margin-bottom: 0px;
  }
  #appartements .facade-container {
    flex-direction: column;
  }
  #appartements .facade-container .facade {
    width: 100%;
    order: -1;
    margin-top: -100px;
  }
  #appartements .facade-container .prix {
    width: 100%;
  }
  #appartements .facade-container .plan-big {
    padding: 10px;
  }
  #appartements .container-fullImg {
    background-position: left;
  }
  #appartements .tooltip {
    display: none;
  }

  #appartements .container-fullImg .box {
    bottom: 0;
    left: 0;
    padding: 40px 20px 20px 20px;
}

  #appartements .facade-container .tabs-bottom {
    display: none;
  }
  .telechargement-section {
    padding: 0px 20px 40px 20px;
  }
  .telechargement-section .width-5 {
    margin-top: 20px;
    padding-left: 0;
    padding-right: 0;
  }
  .telechargement-section .width-5 ul li p {
    margin-top: 10px;
    font-size: 14px;
  }
  .telechargement-section .width-5 ul li img {
    width: 40px;
  }

  .modal-overlay {
    overflow-y: scroll;
    align-items: flex-start;
  }

  .modal-content {
    width: 90%;
    max-width: 800px;
  }
}

@media only screen and (max-width: 580px) {
  #appartements .container-fullImg .box {
    bottom: -230px;
    left: 0;
    border: 1px solid grey;
  }

  #appartements .title-app {
    margin: 200px auto 50px auto;
  }

  #priceModal .form-top {
    flex-wrap: wrap;
  }

  #priceModal .form-top label,
  #priceModal .form-top select {
    width: 100%;
  }

  #priceModal .form-top select option {
    font-size: 13px;
  }

  #priceModal form .form-flex {
    flex-wrap: wrap;
  }

  #priceModal form .form-flex > div {
    width: 100%;
  }
}

@media only screen and (max-width: 480px) {
  .modal-content {
    padding: 60px 30px;
  }

  h1 {
    font-size: 22px;
    letter-spacing: 1px;
  }
  h2 {
    font-size: 22px;
    line-height: 110%;
  }
  h4 {
    line-height: 26.88px;
    letter-spacing: 2px;
  }
  header .width-5 .logo {
    width: 120px;
  }
  header .width-5 nav ul li a {
    font-size: 16px;
  }
  header .width-5 .contact a img {
    display: none;
  }
  .btn {
    letter-spacing: initial;
    padding: 12px 25px;
  }
  #accueilPage #accueil {
    margin-top: 80px;
  }
  #accueilPage #accueil > div .pdf a span {
    line-height: 19.2px;
    letter-spacing: initial;
  }
  #accueilPage #accueil > div .txt .left p {
    font-size: 18px;
  }
  #accueilPage #projet .container .right .box {
    margin: 15px 0;
    margin-left: 0;
  }
  #accueilPage #projet .container .right .box p {
    margin-left: 15px;
  }
  #accueilPage #fullImg,
  #accueilPage #fullImg2 {
    margin-top: 250px;
  }
  #accueilPage #fullImg .container-fullImg,
  #accueilPage #fullImg2 .container-fullImg {
    height: 350px;
  }
  #accueilPage #fullImg .container-fullImg .box,
  #accueilPage #fullImg2 .container-fullImg .box {
    top: -250px;
    left: 0%;
  }
  #accueilPage #projet2,
  #accueilPage #projet1 {
    padding-bottom: 50px;
  }
  #accueilPage #projet2 .container,
  #accueilPage #projet1 .container {
    padding-bottom: 0;
  }
  #accueilPage #projet2 .container > div.img,
  #accueilPage #projet1 .container > div.img {
    height: auto;
  }
  #situationPage #situation .container-fullImg {
    margin-bottom: 150px;
    height: 450px;
  }
  #situationPage #situation .container-fullImg .box {
    border: 1px solid #c7ad90;
    bottom: -150px;
  }
  #situationPage #situation2 .distances table th,
  #situationPage #situation2 .distances table td {
    padding: 20px 10px;
  }
  #appartements .container-fullImg {
    height: 800px;
    margin-bottom: 150px;
    background-position: left;
  }
  #appartements .container-fullImg .box {
    bottom: -150px;
    border: 1px solid #c7ad90;
  }
  #appartements .title-app {
    margin: 50px auto 20px auto;
  }
  #appartements .facade-container .facade {
    width: 100%;
    order: -1;
    margin-top: -50px;
  }
  #appartements .facade-container .prix .facade-table .lot-detail {
    padding-right: 0px;
  }
  #appartements .facade-container .prix .facade-table .lot-detail li p {
    font-size: 13px;
    font-weight: 300;
  }
  #appartements
    .facade-container
    .prix
    .facade-table
    .lot-detail
    .lot-header
    > div {
    width: 33%;
  }
  #appartements
    .facade-container
    .prix
    .facade-table
    .lot-detail
    .lot-header
    > div:nth-child(2) {
    border: 2px solid red;
    display: none;
  }
  #appartements
    .facade-container
    .prix
    .facade-table
    .lot-detail
    .lot-header
    > div:nth-child(4) {
    border-right: none;
    min-width: auto;
  }
  #appartements
    .facade-container
    .prix
    .facade-table
    .lot-detail
    .lot-info
    > div {
    width: 33%;
  }
  #appartements
    .facade-container
    .prix
    .facade-table
    .lot-detail
    .lot-info
    > div:nth-child(3) {
    border: 2px solid red;
    display: none;
  }
  #galerie .container {
    height: 400px;
  }
  #galerie .container .box {
    padding: 30px 20px;
  }
  #galerie .images {
    padding-top: 60px;
  }
  #galerie .images a {
    height: 200px;
    border: 2px solid #fefdfb;
  }
  .telechargement-section {
    padding: 0px 10px 20px 10px;
  }
  .telechargement-section .width-5 ul {
    flex-wrap: wrap;
    justify-content: center;
  }
  .telechargement-section .width-5 ul li {
    width: 33%;
    margin-bottom: 40px;
  }
  .container-fullImg .box {
    padding: 15px;
  }
} /*# sourceMappingURL=style.css.map */
