@charset "UTF-8";
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-family: "ltc-bodoni-175", serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  scroll-padding-top: 150px;
}

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

h1,
h2,
h3 {
  font-family: "ltc-bodoni-175", serif;
  color: #436138;
  text-align: left;
}

h1 {
  font-weight: 400;
  font-size: 64px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 34px;
}

h2 {
  font-weight: 400;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  position: relative;
}
h2:after {
  content: "";
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  top: -30px;
  left: -30px;
  width: 42px;
  height: 64px;
  opacity: 0.3;
  background-image: url(imgs/logos/logo-accent.svg);
}

h3 {
  font-weight: 400;
  font-size: 23.44px;
  line-height: 28.8px;
  letter-spacing: 0%;
  vertical-align: middle;
}

p,
li,
a {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 125%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #798e75;
}

a,
span {
  display: inline-block;
}

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

.subtitle {
  font-size: 32px;
  font-weight: 400;
  line-height: 33.92px;
  text-align: left;
  margin-bottom: 30px;
  color: white;
}

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

::-webkit-scrollbar {
  width: 3px;
  overflow: hidden;
}

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

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

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

/* loading */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #f4f1f0;
  z-index: 99999;
  transition-duration: 0.5s;
  transition-delay: 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading > div {
  width: 270px;
  height: auto;
  transition-duration: 0.5s;
}
#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.5);
}

.error404 section {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  width: 100%;
  height: 80vh;
  padding: 40px;
}
.error404 section h3 {
  margin: 1em 0;
  font-size: 32px;
}
.error404 section #e404 {
  font-size: 3em;
  color: #3c3c3c;
}

#politique {
  padding-top: 180px;
  padding-bottom: 100px;
}
#politique > div {
  margin: 50px 0;
}
#politique > div h2 {
  margin-bottom: 30px;
  color: #c5803c;
  font-size: 32px;
}
#politique > div p {
  margin-bottom: 20px;
}
#politique > div ul {
  margin-left: 20px;
}
#politique a {
  text-decoration: underline;
  color: #3c3c3c;
  transition: all 0.3s linear;
}
#politique a:hover {
  color: #c5803c;
}
#politique a h1 {
  font-size: 46px;
  margin-bottom: 50px;
  color: #c5803c;
}
#politique a nav ol {
  list-style: none;
}
#politique a nav ol li ol {
  margin-left: 20px;
}

header {
  z-index: 1100;
  width: 100%;
  padding: 10px 0;
  position: fixed;
  left: 0;
  right: 0;
  transition: all 0.3s linear;
  background-color: #f4f1f0;
  border-bottom: 0.5px solid #798e75;
}
header.active {
  padding: 0px 0;
}
header .width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .width .logo a {
  display: block;
  width: 200px;
  position: relative;
  z-index: 45;
  transition: all 0.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}
header .width .logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
header .width .menu {
  padding: 15px 0px;
  width: 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
}
header .width .menu li {
  margin-left: 65px;
  position: relative;
  z-index: 2;
}
header .width .menu li::after {
  content: "";
  z-index: 1;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 80px;
  height: 80px;
  transform: translate(-50%, -50%) rotate(120deg);
  background-image: url("imgs/logos/logo-accent.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  pointer-events: none;
}
header .width .menu li:hover::after {
  opacity: 0.4;
}
header .width .menu li a {
  transition: all 0.3s linear;
  text-align: center;
  color: #436138;
  position: relative;
  text-align: center;
  font-family: "ltc-bodoni-175", serif;
  font-size: 20px;
  font-weight: 200;
}

#menu-btn {
  position: absolute;
  width: 50px;
  right: 5%;
  top: 36px;
  border: none;
  background-color: transparent;
  text-align: center;
  cursor: pointer;
  display: none;
}
#menu-btn span {
  margin: 0 10px;
}
#menu-btn span:before, #menu-btn span:after {
  content: "";
  position: absolute;
}
#menu-btn span,
#menu-btn span::before,
#menu-btn span::after {
  display: block;
  width: 50px;
  height: 1px;
  background-color: #798e75;
}
#menu-btn span::before {
  top: -10px;
  transition: all 0.5s linear;
  background-color: #798e75;
}
#menu-btn span::after {
  top: 10px;
  transition: all 0.5s linear;
  background-color: #798e75;
}
#menu-btn.active span {
  background-color: transparent;
}
#menu-btn.active span::before {
  top: 0;
  transition: all 0.5s linear;
  transform: rotate(45deg);
}
#menu-btn.active span::after {
  top: 0;
  transition: all 0.5s linear;
  transform: rotate(-45deg);
}

/***************************************************************/
/*** BUTTONS ***************************************************/
/***************************************************************/
.btn {
  display: flex;
  align-items: center;
  justify-content: center;
}
.btn:hover span:last-child {
  transform: rotate(90deg);
}
.btn span:first-child {
  font-family: "Raleway", sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
  letter-spacing: 5%;
  text-transform: uppercase;
  color: #436138;
  background-color: #f4f1f0;
  padding: 10px;
  position: relative;
  z-index: 3;
}
.btn span:last-child {
  border: 1px solid #436138;
  width: 78px;
  height: 78px;
  border-radius: 50%;
  margin-left: -20px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.5s linear;
}
.btn span:last-child img {
  width: 30px;
  height: 8px;
  -o-object-fit: contain;
     object-fit: contain;
}

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

.showImg {
  cursor: pointer;
}

.section1 {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  height: 930px;
}
.section1 .left {
  width: 45%;
  height: 100%;
}
.section1 .right {
  width: 50%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column;
  height: 100%;
}
.section1 .right .txt {
  text-align: left;
  margin-bottom: 40px;
}
.section1 .right .txt h2 {
  margin-bottom: 40px;
  max-width: 20ch;
}
.section1 .right .txt p {
  margin-bottom: 24px;
  max-width: 60ch;
}
.section1 .right .txt .btn {
  margin-left: 0;
  justify-content: flex-end;
}
.section1 .right .img {
  height: 420px;
  margin-left: auto;
}

.icons {
  background-color: #eeeae7;
  padding: 170px 5%;
  margin: 150px 5%;
}

.icons .container-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 80px;
}

.icons .container-flex .left {
  width: 40%;
}

.icons .container-flex .right {
  width: 50%;
}

.icons .container-flex .right img{
  width: 100%;
  height: 100%;
}

.icons p {
  text-align: left;
}
.icons h2 {
  margin-bottom: 38px;
  text-align: center;
}
.icons h2:after {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 64px;
  opacity: 0.8;
}
.icons p {
  max-width: 40ch;
  margin: 0 auto;
}
.icons .container {
  margin-top: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 30px;
  margin-left: 100px;
}
.icons .container .icon {
  width: 20%;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
}
.icons .container .icon img {
  width: 45px;
  -o-object-fit: contain;
     object-fit: contain;
}
.icons .container .icon p {
  margin: initial;
  max-width: 15ch;
  margin-left: 20px;
  text-align: left;
}

.galerie-slider h2 {
  margin-left: 6%;
}
.galerie-slider .slider-container {
  position: relative;
  overflow: hidden;
  width: 100%;
  max-width: 100vw;
  margin: 40px auto;
}
.galerie-slider .slider-track {
  display: flex;
  transition: transform 0.5s ease;
  height: 400px;
}
.galerie-slider .slide {
  flex: 0 0 calc((100% - 48px) / 2.5); /* 2 pełne i 50% trzeciego */
  margin-right: 24px;
  cursor: pointer;
}
.galerie-slider .slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.galerie-slider .arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: #f4f1f0;
  color: #436138;
  border: none;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.galerie-slider .arrow img {
  width: 25px;
  -o-object-fit: contain;
     object-fit: contain;
}
.galerie-slider .fullscreen-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #3c3c3c;
  justify-content: center;
  align-items: center;
  z-index: 999;
  transition-duration: 0.6s;
  opacity: 0;
  visibility: hidden;
  display: flex;
}
.galerie-slider .fullscreen-modal img {
  max-width: 90%;
  max-height: 90%;
}
.galerie-slider .fullscreen-modal.show {
  opacity: 1;
  visibility: visible;
}
.galerie-slider .fullscreen-modal::after {
  content: "×";
  position: absolute;
  top: 10px;
  right: 20px;
  font-size: 42px;
  color: white;
  cursor: pointer;
  transition: all 0.6s linear;
}
.galerie-slider .fullscreen-modal::after:hover {
  transform: scale(1.2);
}
.galerie-slider .fs-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: #f4f1f0;
  color: #436138;
  border: none;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
}
.galerie-slider .fs-arrow img {
  width: 40px;
  -o-object-fit: contain;
     object-fit: contain;
}
.galerie-slider .fs-arrow.left {
  left: 30px;
}
.galerie-slider .fs-arrow.right {
  right: 30px;
}

.contact-section {
  padding-top: 150px;
  padding-bottom: 150px;
}
.contact-section h2 {
  margin-bottom: 38px;
  text-align: center;
}
.contact-section h2:after {
  content: "";
  position: absolute;
  top: -80px;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 64px;
  opacity: 0.8;
}
.contact-section p {
  text-align: center;
  max-width: 40ch;
  margin: 0 auto;
}
.contact-section .form {
  margin-top: 100px;
  width: 100%;
}
.contact-section .form form {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}
.contact-section .form form > div {
  width: 45%;
  margin-bottom: 32px;
}
.contact-section .form form > div input,
.contact-section .form form > div textarea {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #436138;
  color: #436138;
  padding-bottom: 5px;
  font-family: "Raleway", sans-serif;
  font-size: 16px;
}
.contact-section .form form > div p {
  font-weight: 400;
  font-size: 14px;
  line-height: 40.8px;
  letter-spacing: 0%;
  margin: initial;
  vertical-align: middle;
  text-align: left;
}
.contact-section .form form > div.textarea {
  width: 100%;
}
.contact-section .form form button {
  border: none;
  cursor: pointer;
  text-align: center;
  background-color: #f4f1f0;
  margin: 50px auto;
}
.contact-section .form form button:hover {
  background-color: none;
}

.accueil {
  margin-top: 150px;
  margin-bottom: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  width: 100%;
  flex-wrap: wrap;
}
.accueil .left {
  width: 40%;
  margin-top: 250px;
}
.accueil .left h1 {
  position: relative;
}
.accueil .left h1:after {
  position: absolute;
  content: "";
  background-image: url(imgs/logos/logo-accent.svg);
  width: 100px;
  height: 180px;
  top: -80px;
  left: -60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.3;
}
.accueil .right {
  width: 55%;
}
.accueil .right img {
  height: 540px;
}
.accueil .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px;
  width: 100%;
  height: 314px;
  margin-left: 350px;
}
.accueil .bottom .img {
  height: 354px;
  width: 608px;
}
.accueil .bottom .btn {
  margin-left: 67px;
}

/***************************************************************/
/*** ACCUEIL / HOME PAGE ***************************************/
/***************************************************************/
#accueilPage .fullscreenImg {
  height: 937px;
  margin-left: 5%;
  margin-right: 5%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#accueilPage .fullscreenImg .container {
  padding: 180px 90px 90px 90px;
  width: 100%;
  height: 937px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
#accueilPage .fullscreenImg .container h2 {
  max-width: 20ch;
}
#accueilPage .fullscreenImg .container p {
  color: #f4f1f0;
  max-width: 60ch;
}
#accueilPage .extra-txt {
  max-width: 65%;
  background-color: #798e75;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 50px 100px;
  margin: -40px auto 150px auto;
}
#accueilPage .extra-txt > div {
  width: 20%;
}
#accueilPage .extra-txt > div * {
  color: #f4f1f0;
}
#accueilPage .extra-txt > div h3 {
  margin-bottom: 16px;
}

/***************************************************************/
/*** SITUATION *************************************************/
/***************************************************************/
#situation .accueil .left {
  margin-top: 150px;
}
#situation .accueil .left p {
  max-width: 55ch;
  margin-bottom: 10px;
}
#situation .accueil .right {
  width: 55%;
}
#situation .accueil .right img {
  height: 540px;
}
#situation .accueil .bottom {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -60px;
  width: 100%;
  height: 314px;
  margin-left: 450px;
}
#situation .accueil .bottom .img {
  height: 354px;
  width: 608px;
}
#situation .accueil .bottom .btn {
  margin-left: 40px;
  margin-bottom: 40px;
}
#situation .icons p {
  max-width: 82ch;
}
#situation .icons .container {
  margin-top: 150px;
  margin-left: 0px;
  text-align: center;
}
#situation .icons .container .icon {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  text-align: center;
}
#situation .icons .container .icon img {
  width: auto;
  height: 50px;
  margin-bottom: 30px;
}
#situation .icons .container .icon p {
  max-width: 20ch;
  margin-left: 0px;
  text-align: center;
}
#situation .section1 .right .img {
  height: 520px;
  margin-left: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
#situation .section1 .right .txt .btn {
  margin-bottom: 40px;
}

/***************************************************************/
/*** GALERIE ***************************************************/
/***************************************************************/
#galerie {
  padding-top: 200px;
}
#galerie h2 {
  margin-left: 10px;
}
#galerie .galerie-container {
  padding-top: 50px;
  padding-bottom: 100px;
}
#galerie .galerie-container .galerie-imgs {
  display: flex;
  justify-content: space-between;
  gap: 22px;
  flex-wrap: wrap;
}
#galerie .galerie-container .galerie-imgs > div {
  width: 49%;
  overflow: hidden;
  cursor: pointer;
  transition: all 0.3s linear;
}
#galerie .galerie-container .galerie-imgs > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  -o-object-position: 30% 90%;
  object-position: 30% 90%;
  object-fit: cover;
  transition: all 1s ease-in;
  height: 450px;
}
#galerie .galerie-container .galerie-imgs > div:nth-child(3) {
  width: 100%;
  height: auto;
}
/* #galerie .galerie-container .galerie-imgs > div:nth-child(12),
#galerie .galerie-container .galerie-imgs > div:nth-child(13),
#galerie .galerie-container .galerie-imgs > div:nth-child(14),
#galerie .galerie-container .galerie-imgs > div:nth-child(15) {
  width: 23%;
  height: 300px;
} */
#galerie .galerie-container .galerie-imgs > div img:hover {
  opacity: 0.8;
  transform: scale(1.1);
  -o-object-position: 30% 70%;
  object-position: 30% 70%;
}

#fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1000;
  background-color: #3c3c3c;
  transition-duration: 1s;
  opacity: 0;
  visibility: hidden;
  z-index: 99999;
}
#fullscreen * {
  width: 100%;
  height: 100%;
  padding: 10px;
}
#fullscreen > div > div {
  opacity: 0;
  visibility: hidden;
}
#fullscreen .full-img-wrap {
  position: relative;
}
#fullscreen #full-img {
  background-position: center;
  background-size: cover;
  transform: scale(0.7);
}
#fullscreen #full-img img {
  -o-object-fit: contain;
  object-fit: contain;
}
#fullscreen .closeX {
  position: absolute;
  top: 0px;
  right: 0;
  z-index: 9999999;
  background: none;
  border: none;
  width: auto;
  height: auto;
  padding: 0 10px;
  font-size: 3em;
  color: #fffefa;
  font-weight: lighter;
  display: none;
  cursor: pointer;
}
#fullscreen .closeX img {
  -o-object-fit: contain;
  object-fit: contain;
  display: none;
}
#fullscreen .closeX img.active {
  display: block;
}
#fullscreen.active {
  opacity: 1;
  visibility: visible;
}
#fullscreen.active > div > div {
  opacity: 1;
  visibility: visible;
  transition-duration: 1s;
  transition-delay: 1s;
}
#fullscreen.active #full-img {
  transform: scale(1);
}
#fullscreen.active .full-border {
  transform: scale(1);
}
#fullscreen .full-border {
  transform: scale(1.2);
  position: absolute;
  padding: 0;
  left: 0;
  top: 0;
}
#fullscreen .nav-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  font-size: 32px;
  color: #fffefa;
  background: #3c3c3c;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#fullscreen .next {
  right: 0px;
}
#fullscreen .prev {
  left: 0px;
}

/***************************************************************/
/*** PLANS ET PRIX *********************************************/
/***************************************************************/
.title-appartmenets {
  margin-top: 150px;
  text-align: center;
}
.title-appartmenets h2 {
  text-align: center;
  display: block;
  width: auto;
}
.title-appartmenets h2:after {
  left: initial;
}
.title-appartmenets #filters {
  width: 800px;
  margin: 80px auto 0px auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  z-index: 55;
}
.title-appartmenets #filters * {
  font-family: "Raleway", sans-serif;
}
.title-appartmenets #filters label {
  font-size: 13px !important;
  text-transform: uppercase;
  font-weight: bold;
}
.title-appartmenets #filters select {
  cursor: pointer;
  margin-left: 10px;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #436138;
}
.title-appartmenets #filters select option {
  color: #436138;
  background-color: #f4f1f0;
  font-family: "Raleway", sans-serif;
}
.title-appartmenets #filters #reset-filters {
  background: #436138;
  color: #f4f1f0;
  padding: 5px 10px;
  outline: none;
  border: 1px solid #436138;
  transition: all 0.3s linear;
  font-family: "Raleway", sans-serif;
  cursor: pointer;
  font-size: 14px;
  text-transform: uppercase;
}
.title-appartmenets #filters #reset-filters:hover {
  background-color: transparent;
  color: #436138;
}

#plans {
  padding-top: 50px;
  padding-bottom: 150px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#plans .column-2 {
  display: none !important;
}
#plans .table-btns {
  margin-top: 60px;
}
#plans .table-btns .btn {
  margin-left: 0;
  justify-content: flex-start;
}
#plans .v.hover *,
#plans .v:hover * {
  fill: #e08e92;
  background-color: #e08e92;
  cursor: not-allowed;
}
#plans .d.hover *,
#plans .d:hover * {
  fill: #a8cab1;
  background-color: #a8cab1;
}
#plans .r.hover *,
#plans .r:hover * {
  fill: #ffeb91;
  background-color: #ffeb91;
  cursor: not-allowed;
}
#plans #lot-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  width: 50%;
}
#plans #lot-data td {
  color: #3c3c3c;
}
#plans #lot-data .avp-table {
  text-align: left !important;
  margin: 1.5em 0;
}
#plans #lot-data .avp-table th {
  color: #3c3c3c;
  text-align: left !important;
  font-size: 14px;
  padding-right: 50px;
}
#plans #lot-data .avp-table th,
#plans #lot-data .avp-table td {
  padding: 10px;
  width: 50%;
}
#plans #lot-data table {
  width: 70%;
  margin: 0 auto;
}
#plans #facade {
  width: 55%;
  margin-top: -100px;
  position: relative;
  z-index: 22;
}
#plans #facade svg {
  width: 100%;
  height: 100%;
}
#plans #facade .lot {
  cursor: pointer;
  transition: all 1s linear;
}
#plans #facade .floor {
  transition-duration: 0.5s;
}
#plans #facade .floor.move {
  transform: translateY(-200px);
}
#plans #facade #jardin.jardin-opacity {
  opacity: 0.4;
  transition: opacity 0.3s ease;
}
#plans #facade .window {
  fill: rgb(223, 220, 220);
}
#plans #facade .grey {
  fill: rgb(202, 201, 201);
  stroke: #000000;
  stroke-width: 0.25;
  stroke-miterlimit: 10;
}
#plans #facade .grey polygon {
  fill: rgb(202, 201, 201);
  stroke: #000000;
  stroke-width: 0.25;
  stroke-miterlimit: 10;
}
#plans #facade-table {
  width: 43%;
  margin-top: 50px;
}
#plans #facade-table .table {
  max-height: 650px; /* lub inna wartość */
  overflow-y: auto; /* ważne! */
  position: relative; /* nie wymagane, ale często pomaga */
  scroll-behavior: smooth; /* jeśli chcesz mieć płynny efekt */
}
#plans #facade-table .avp-table.avp-prix {
  position: relative;
  clear: both;
  width: 100%;
  border-spacing: 0 0px;
}
#plans #facade-table .avp-table.avp-prix * {
  font-family: "Raleway", sans-serif;
}
#plans #facade-table .avp-table.avp-prix tbody tr:hover {
  background-color: #798e75;
}
#plans #facade-table .avp-table.avp-prix tr {
  transition: all 0.3s linear;
  border-bottom: 1px solid #436138;
}
#plans #facade-table .avp-table.avp-prix tr.v td {
  opacity: 0.3;
  padding: 5px 5px;
}
#plans #facade-table .avp-table.avp-prix tr.r td {
  opacity: 0.3;
  padding: 5px 5px;
}
#plans #facade-table .avp-table.avp-prix th,
#plans #facade-table .avp-table.avp-prix td {
  font-size: 13px;
  color: #436138;
  text-align: center;
  padding: 15px 5px;
}
#plans #facade-table .avp-table.avp-prix th {
  font-weight: bold;
  position: sticky;
  top: 0;
  z-index: 1;
  text-transform: uppercase;
  background-color: #f4f1f0;
}
#plans #facade-table .avp-table.avp-prix td {
  font-weight: 500;
}
#plans #lot-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  transition-duration: 0.6s;
  transition-delay: 0.6s;
  visibility: hidden;
  opacity: 0;
  z-index: 9999;
  background-color: rgba(0, 0, 0, 0.7);
  display: flex;
  align-items: center;
  justify-content: center;
}
#plans #lot-container .row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow-y: scroll;
  width: calc(100vw - 100px);
  height: calc(100vh - 100px);
  z-index: 1001;
  padding: 50px;
  max-width: 140vh;
  position: relative;
}
#plans #lot-container .row:after {
  content: "";
  background-image: url(imgs/logos/logo-accent.svg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  opacity: 0.1;
  background-position: center;
  background-size: contain;
  z-index: -1;
}
#plans #lot-container .row .lot-plans {
  width: 45%;
}
#plans #lot-container .row .lot-plans .lot-png img {
  width: 100%;
  height: 100%;
}
#plans #lot-container .row #lot-data {
  width: 50%;
  padding-top: 20px;
}
#plans #lot-container .row #lot-data .avp-table {
  pointer-events: none;
}
#plans #lot-container .row #lot-data .avp-table * {
  font-size: 13px;
  font-family: "Raleway", sans-serif;
}
#plans #lot-container .row #lot-data .avp-table td {
  border-bottom: 1px solid #3c3c3c;
  border-top: 1px solid #3c3c3c;
}
#plans #lot-container .row #lot-data .avp-table th {
  text-align: center !important;
  background-color: transparent;
  border-bottom: 1px solid #3c3c3c;
  border-top: 1px solid #3c3c3c;
  position: initial !important;
  text-transform: uppercase;
}
#plans #lot-container .row #lot-data .avp-table tr:hover,
#plans #lot-container .row #lot-data .avp-table td:hover {
  background: transparent !important;
  cursor: initial !important;
}
#plans #lot-container .row #lot-data .btn {
  margin-top: 50px;
}
#plans #lot-container .row #lot-data .lot-data-logo {
  width: 230px;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 10px auto;
}

#plans #lot-container .closePlan {
  position: absolute;
  top: 20px;
  right: 20px;
  font-size: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
#plans #lot-container.active-lot {
  transition-delay: 0s;
  visibility: visible;
  opacity: 1;
}
#plans #lot-container.active-lot > div {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s;
}
#plans #lot-container > div {
  width: 100%;
  height: 100%;
  padding: 50px;
  background-color: #f4f1f0;
  transform: scale(0.8);
  transition-duration: 0.6s;
  transition-delay: 0s;
  opacity: 0;
}

#tooltip {
  position: absolute;
  z-index: 9999;
  visibility: hidden;
  background-color: #fffefa;
  padding: 10px;
  width: 220px;
  border: 1px solid #436138;
  opacity: 0;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}
#tooltip > div {
  position: relative;
}
#tooltip > div:after {
  content: "";
  background-image: url(imgs/logos/logo-accent.svg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-repeat: no-repeat;
  opacity: 0.1;
  background-position: center;
  background-size: contain;
  transform: rotate(30deg);
}
#tooltip * {
  color: #436138;
  font-family: "Raleway", sans-serif;
}
#tooltip th,
#tooltip td {
  font-size: 13px !important;
  color: #436138;
  background-color: #fffefa !important;
}
#tooltip th {
  text-align: left;
  font-weight: 500;
  width: 100%;
  border-bottom: 1px solid #798e75;
}
#tooltip td {
  padding: 5px 0;
  width: 100%;
  text-align: right;
  white-space: nowrap;
  border-bottom: 1px solid #798e75;
}
#tooltip .column-1 {
  font-size: 17px !important;
  text-transform: uppercase !important;
  margin-bottom: 15px !important;
  padding-bottom: 15px !important;
  border-bottom: 2px solid #798e75 !important;
}
#tooltip .column-3 {
  padding-top: 15px !important;
}
#tooltip .column-9,
#tooltip .column-2,
#tooltip .column-11,
#tooltip .column-21 {
  display: none;
}
#tooltip.visible {
  opacity: 1;
  visibility: visible;
}

/***************************************************************/
/*** CONTACT ****************************************************/
/***************************************************************/
#contact {
  margin-top: 100px;
}

.succes {
  padding: 50px;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.succes h2 {
  font-size: 36px;
}
.succes .icon-sent {
  margin-bottom: 40px;
}
.succes .icon-sent img {
  background-color: #c5803c;
  color: #fffefa;
  border-radius: 50%;
  width: 50px;
  height: 50px;
}

/***************************************************************/
/*** FOOTER ****************************************************/
/***************************************************************/
footer {
  background-color: #eeeae7;
  padding-top: 39px;
  padding-bottom: 20px;
}
footer .container {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 50px;
}
footer .container > div {
  width: 30%;
  text-align: center;
}
footer .container > div p.title {
  font-weight: 400;
  font-size: 17.44px;
  line-height: 26px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-transform: uppercase;
  font-family: "Raleway", sans-serif;
  margin-bottom: 20px;
}
footer .container > div a {
  transition: all 0.6s linear;
}
footer .container > div a:hover {
  color: #436138;
}
footer .container > div a img {
  height: 55px;
  -o-object-fit: contain;
     object-fit: contain;
}
footer .avp {
  text-align: center;
  font-size: 13px;
}
footer .avp a {
  font-size: 13px;
  text-decoration: underline;
}

/***************************************************************/
/*** ANIMATIONS *****************************************/
/***************************************************************/
.animate {
  opacity: 0;
}

@keyframes arrowMove {
  from {
    left: 0;
  }
  to {
    left: 20px;
  }
}
@keyframes animTitle {
  from {
    transform: translateX(-10px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes animBottom {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes animContent {
  from {
    transform: translateY(100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes animGallery {
  from {
    transform: translateY(-100px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes animImage {
  0% {
    transform: scale3d(0, 0, 0);
  }
  100% {
    transform: scale3d(1, 1, 1);
    opacity: 1;
  }
}
/*****************media**********************************************/
/*** RESPONSIVE ************************************************/
/***************************************************************/
@media only screen and (max-width: 1650px) {
  .icons {
    padding: 170px 3%;
  }
  .icons .container {
    margin-left: 50px;
  }
  .icons .container > div {
    width: 22%;
  }
  #accueilPage .extra-txt {
    max-width: 85%;
    padding: 50px 80px;
    margin: -40px auto 150px auto;
  }
  #accueilPage .fullscreenImg {
    background-position: left;
  }
  #situation .accueil {
    margin-bottom: 50px;
  }
  #situation .accueil .left p {
    max-width: 45ch;
  }
  #situation .accueil .bottom {
    margin-top: -160px;
  }
  #situation .section1 .right .img {
    height: 480px;
  }
  .section1 {
    height: 810px;
  }
}
@media only screen and (max-width: 1440px) {
  h1 {
    font-size: 58px;
  }
  h2 {
    font-size: 38px;
  }
  header .width .menu li a {
    font-size: 18px;
  }

  .icons .container-flex .left {
      width: 45%;
  }

  .icons .container .icon {
    align-items: center;
    justify-content: flex-start;
    flex-direction: column;
  }
  .icons .container .icon:nth-child(2) img {
    height: 30px;
  }
  .icons .container .icon:nth-child(2) p {
    margin-top: 20px;
  }
  .icons .container .icon img {
    width: auto;
    height: 50px;
    margin-bottom: 20px;
  }
  .icons .container .icon p {
    text-align: center;
    margin-left: 0px;
  }
  .galerie-slider .slider-track {
    height: 300px;
  }
  .contact-section {
    padding-top: 150px;
    padding-bottom: 100px;
  }
  .accueil .left {
    margin-top: 150px;
  }
  .accueil .left p {
    margin-right: 20px;
  }
  .accueil .bottom {
    margin-left: 0px;
  }
  .accueil .bottom .img {
    width: 650px;
    height: auto;
  }
  .accueil .bottom .btn {
    margin-left: 40px;
  }
  .accueil .right img {
    height: 550px;
  }
  #accueilPage .fullscreenImg .container {
    padding: 200px 60px 100px 100px;
  }
  #accueilPage .extra-txt {
    padding: 40px 10px 40px 100px;
  }
  #accueilPage .extra-txt > div {
    width: 25%;
  }
  #situation .accueil .left {
    margin-top: 50px;
    margin-bottom: 30px;
  }
  #situation .accueil .left p {
    max-width: 55ch;
  }
  #situation .accueil .bottom {
    margin-top: 20px;
    width: 100%;
    height: 314px;
    margin-left: 0px;
  }
  #situation .icons {
    padding: 140px 30px 80px 30px;
  }
  #situation .icons .container {
    flex-wrap: wrap;
    margin-top: 100px;
  }
  #situation .icons .container .icon {
    width: 40%;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
  #situation .section1 .right .img {
    height: 400px;
  }
  #galerie .galerie-container .galerie-imgs {
    gap: 10px;
    flex-wrap: wrap;
  }
  #plans #facade-table {
    width: 53%;
    margin-top: 50px;
  }
  #plans #facade-table .table {
    max-height: 450px;
  }
  #plans #facade {
    width: 45%;
    margin-top: 0;
  }
}

@media only screen and (max-width: 1300px) {
    .icons .container-flex  {
        flex-direction: column;
    }

    .icons .container-flex .left, 
    .icons .container-flex .right {
        width: 100%;
    }

    .icons .container-flex .right {
        margin-top: 80px;
    }
} 

@media only screen and (max-width: 1045px) {
  header .width .menu li {
    margin-left: 40px;
    position: relative;
    z-index: 2;
  }
  header .width .logo a {
    width: 150px;
  }
  h1 {
    font-size: 48px;
    margin-bottom: 34px;
  }
  .btn span:last-child {
    width: 67px;
    height: 67px;
  }
  .icons {
    margin: 100px 5%;
  }
  .icons .container {
    margin-left: 0px;
  }
  .icons .container .icon img {
    height: 40px;
    margin-bottom: 15px;
  }
  .icons .container .icon:nth-child(2) img {
    height: 25px;
  }
  .accueil {
    margin-bottom: 100px;
  }
  .accueil .left {
    margin-top: 100px;
  }
  #accueilPage .fullscreenImg {
    height: 850px;
  }
  #accueilPage .fullscreenImg .container {
    padding: 180px 90px 90px 90px;
    height: 850px;
  }
  #accueilPage .extra-txt {
    padding: 40px 10px 40px 30px;
    margin: -40px auto 100px auto;
  }
  #situation .accueil .left {
    margin-top: 100px;
  }
  #situation .accueil .bottom .btn {
    margin-left: 30px;
  }
  #situation .icons p {
    max-width: 62ch;
  }
  .contact-section {
    padding-top: 100px;
    padding-bottom: 50px;
  }
  #plans {
    flex-direction: column;
    padding-bottom: 50px;
  }
  #plans #facade {
    width: 60%;
    margin: -130px auto 0 auto;
  }
  #plans #facade-table {
    width: 100%;
  }
  #plans #facade-table .table {
    max-height: 250px;
  }
  #tooltip {
    display: none;
  }
  footer .container {
    align-items: flex-start;
  }
  footer .container > div a img {
    height: 40px;
  }
}
@media only screen and (max-width: 890px) {
  #loading > div {
    width: 150px;
  }
  #menu-btn {
    display: block;
  }
  header.active {
    padding: 10px 0;
  }
  header .width .menu {
    position: fixed;
    right: -400px;
    padding: 60px;
    background-color: #f4f1f0;
    top: 0;
    height: 100vh;
    width: 400px;
    transition-duration: 0.6s;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  header .width .menu ul {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  header .width .menu li {
    display: block;
    text-align: center;
    width: -moz-max-content;
    width: max-content;
  }
  header .width .menu li a {
    color: #436138;
    font-size: 18px;
    padding: 20px 0;
  }
  header .width .menu.show-menu {
    right: 0;
  }
  h1 {
    font-size: 42px;
    margin-bottom: 34px;
  }
  .accueil {
    margin-bottom: 80px;
  }
  .accueil .left p br {
    display: none;
  }
  .accueil .right img {
    height: 450px;
  }
  .accueil .bottom .btn {
    margin-left: 0px;
  }
  .accueil .bottom .img {
    width: 450px;
  }
  #accueilPage .fullscreenImg {
    height: 650px;
  }
  #accueilPage .fullscreenImg .container {
    height: 650px;
    padding: 120px 60px 60px 60px;
  }
  #accueilPage .extra-txt {
    flex-wrap: wrap;
    padding: 40px 10px 40px 40px;
  }
  #accueilPage .extra-txt > div {
    width: 45%;
    margin-bottom: 20px;
  }
  #accueilPage .extra-txt > div p {
    font-size: 15px;
  }
  #situation .accueil {
    flex-direction: column;
    margin-bottom: 0px;
  }
  #situation .accueil .left {
    width: 100%;
    order: -1;
    margin-top: 10px;
    margin-bottom: 40px;
  }
  #situation .accueil .left h1 {
    margin-left: 40px;
  }
  #situation .accueil .left h1:after {
    width: 100px;
    height: 120px;
    top: -60px;
    left: -60px;
  }
  #situation .accueil .left p {
    max-width: initial;
    margin-bottom: 10px;
  }
  #situation .accueil .right {
    width: 100%;
  }
  #situation .accueil .right img {
    height: 350px;
  }
  #situation .accueil .bottom {
    margin-top: -40px;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 2%;
  }
  #situation .accueil .bottom .btn {
    margin-left: auto;
    margin-right: 5%;
    margin-top: 30px;
  }
  #situation .accueil .bottom .img {
    width: 60%;
  }
  #situation .icons {
    margin: 80px 5%;
  }
  .section1 .right .img {
    height: 300px;
    margin-left: auto;
  }
  .galerie-slider .slider-track {
    height: 200px;
  }
  .galerie-slider .slide {
    flex: 0 0 calc((100% - 20px) / 2.5);
    margin-right: 10px;
  }
  .icons {
    padding: 140px 30px;
  }
  .icons .container {
    margin-top: 80px;
    flex-wrap: wrap;
  }
  .icons .container .icon {
    width: 40%;
  }
  #galerie {
    padding-top: 140px;
  }
  #galerie .galerie-container .galerie-imgs > div:nth-child(3){
    width: 100%;
    height: 400px;
  }
  .title-appartmenets #filters {
    width: auto;
    flex-wrap: wrap;
  }
  .title-appartmenets #filters label {
    width: 30%;
  }
  .title-appartmenets #filters #reset-filters {
    margin: 30px auto 0 auto;
  }
  #plans {
    padding-top: 30px;
  }
  #plans #facade {
    width: 70%;
    margin: -80px auto 0 auto;
  }
  #plans .table-btns {
    margin-top: 40px;
  }
  #plans #lot-container .row {
    width: calc(100vw - 50px);
    height: 100%;
    z-index: 1001;
    padding: 30px;
    max-width: auto;
    flex-direction: column;
  }
  #plans #lot-container .row .lot-plans {
    width: 100%;
    min-height: 400px;
  }
  #plans #lot-container .row #lot-data {
    order: -1;
    width: 100%;
  }
  #plans #lot-container .row #lot-data .lot-data-logo {
    width: 150px;
  }
  footer .container {
    flex-direction: column;
  }
  footer .container > div {
    width: 100%;
    margin-top: 25px;
  }
}
@media only screen and (max-width: 630px) {
  h2 {
    font-size: 32px;
  }
  h3 {
    font-size: 20px;
    line-height: 28.8px;
  }
  .accueil {
    flex-direction: column;
    margin-bottom: 0px;
  }
  .accueil .left {
    width: 100%;
    order: -1;
    margin-top: 10px;
    margin-bottom: 40px;
  }
  .accueil .left h1 {
    margin-left: 40px;
  }
  .accueil .left h1:after {
    width: 100px;
    height: 120px;
    top: -60px;
    left: -60px;
  }
  .accueil .right {
    width: 100%;
  }
  .accueil .right img {
    height: 350px;
  }
  .accueil .bottom {
    margin-top: -100px;
    flex-direction: column;
    align-items: flex-start;
    margin-left: 5%;
  }
  .accueil .bottom .btn {
    margin-left: auto;
    margin-right: 5%;
    margin-top: 30px;
  }
  .accueil .bottom .img {
    width: 300px;
  }
  #accueilPage .extra-txt {
    margin: -40px auto 50px auto;
  }
  #situation .accueil .left p {
    margin-right: 0px;
  }
  #situation .accueil .right img {
    height: auto;
  }
  #situation .accueil .bottom .img {
    width: 75%;
  }
  #situation .icons {
    margin: 0px 5% 80px 5%;
  }
  #situation .icons .container {
    gap: 40px;
    margin-top: 50px;
  }
  #situation .icons .container .icon {
    width: 100%;
  }
  #situation .icons .container .icon img {
    height: 45px;
    margin-bottom: 10px;
  }
  #situation .section1 .right .img {
    height: auto;
  }
  .section1 {
    height: auto;
    flex-direction: column;
  }
  .section1 .left {
    width: 100%;
  }
  .section1 .right {
    width: 100%;
    margin-top: 40px;
  }
  .section1 .right .txt h2 {
    margin-bottom: 40px;
    max-width: initial;
    text-align: center;
  }
  .section1 .right .txt h2:after {
    content: "";
    top: -30px;
    left: -10px;
  }
  .section1 .right .img {
    margin-top: 40px;
    margin-left: 0;
  }
  .icons {
    padding: 100px 30px 60px 30px;
    margin: 80px 5%;
  }

  .icons .container-flex .right {
    margin-top: 50px;
  }

  .galerie-slider h2 {
    text-align: center;
    width: 150px;
    margin: 0 auto;
  }
  .galerie-slider .slider-track {
    height: 150px;
  }
  .galerie-slider .fs-arrow {
    top: 90%;
    width: 60px;
    height: 60px;
  }
  #fullscreen .nav-btn {
    top: 90%;
    bottom: 0;
  }
  .contact-section {
    padding-top: 100px;
    padding-bottom: 0px;
  }
  #plans #facade {
    width: 70%;
    margin: -10px auto 0 auto;
  }
  #plans #facade-table {
    margin-top: 0;
  }
  #plans #facade-table .table {
    max-height: 100%;
  }
  #plans #facade-table .avp-table.avp-prix th,
  #plans #facade-table .avp-table.avp-prix td {
    font-size: 11px;
    padding: 12px 5px;
    white-space: nowrap;
  }
  #plans #lot-container #lot-data table {
    width: 100%;
    margin: 30px auto;
  }
  .avp-prix td span {
    left: -30px;
    right: -30px;
    margin: auto;
    width: auto;
  }
  .title-appartmenets #filters {
    margin: 50px auto 0px auto;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .title-appartmenets #filters label {
    text-align: left;
    font-weight: 300;
    width: 100%;
    margin-bottom: 10px;
  }
  .title-appartmenets #filters label select {
    width: 100%;
    margin-left: 0px;
  }
  #galerie h2 {
    text-align: center;
    width: 200px;
    margin: 0 auto;
  }
  #galerie .galerie-container {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  #galerie .galerie-container .galerie-imgs > div {
    width: 48%;
  }

#galerie .galerie-container .galerie-imgs > div img {
    height: 250px;
}

  #galerie .galerie-container .galerie-imgs > div:nth-child(3){
    height: 200px;
  }
}
@media only screen and (max-width: 400px) {
  h1 {
    font-size: 36px;
    margin-bottom: 25px;
  }
  h2 {
    font-size: 26px;
  }
  #menu-btn {
    position: absolute;
    right: 10%;
  }
  #accueilPage .extra-txt {
    margin: -30px auto 50px auto;
    padding: 40px 10px 20px 40px;
  }
  #accueilPage .extra-txt > div {
    width: 100%;
    margin-bottom: 20px;
  }
  #accueilPage .fullscreenImg .container {
    position: relative;
    padding: 110px 20px 60px 30px;
  }
  #accueilPage .fullscreenImg .container:after {
    content: "";
    top: 0;
    position: absolute;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(67, 97, 56, 0.4);
  }
  #accueilPage .fullscreenImg .container h2,
  #accueilPage .fullscreenImg .container p {
    color: #f4f1f0;
    position: relative;
    z-index: 44;
  }
  .section1 .right .img {
    height: auto;
  }
  .icons {
    padding: 100px 30px 60px 30px;
    margin: 40px 5% 80px 5%;
  }
  .icons .container .icon p {
    margin-left: 0px;
    font-size: 14px;
    line-height: 120%;
  }
  .contact-section .form {
    margin-top: 50px;
  }
  .contact-section .form form > div {
    width: 100%;
    margin-bottom: 32px;
  }
}/*# sourceMappingURL=style.css.map */