@font-face {
  font-family: sciFly;
  src: url(fonts/SciFly-Sans.ttf);
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}
body {
  max-width: 1920px;
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
* {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  font-family: "Poppins", sans-serif;
}
.close {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 40px;
  color: #fff;
  z-index: 9999;
}
p,
a,
li {
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
}
a {
  text-decoration: none;
  cursor: pointer;
}
.btn {
  display: inline-block;
  background-color: rgba(0, 0, 0, 0);
  color: #252525;
  padding: 10px 50px;
  font-weight: 600;
  font-size: 16px;
  background-color: #5d8400;
  border: 1px solid #5d8400;
  color: #fff;
  transition: all 0.3s linear;
  cursor: pointer;
}
.btn:hover {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid #252525;
  color: #252525;
}
h1 {
  font-family: "Poppins", sans-serif;
}
h2 {
  font-style: normal;
  font-weight: 800;
  font-size: 32px;
  line-height: 42px;
  margin-bottom: 50px;
  font-family: "Poppins", sans-serif;
  color: #5d8400;
}
span {
  display: inline-block;
}
img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
::-webkit-scrollbar {
  width: 5px;
  overflow: hidden;
}
::-webkit-scrollbar-track {
  background: #f5f5f5;
}
::-webkit-scrollbar-thumb {
  background: #5d8400;
}
::-webkit-scrollbar-thumb:hover {
  background: #252525;
}
.subtitle {
  display: inline-block;
  font-style: normal;
  font-weight: 400;
  font-size: 18px;
  line-height: 27px;
  text-transform: uppercase;
  color: #565656;
  margin-bottom: 40px;
}
.cookies-policy {
  background-color: #585150;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9998;
  display: inline-block;
}
.cookies-policy div {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookies-policy div p {
  margin-bottom: initial;
  line-height: initial;
  font-size: 14px;
  max-width: 90ch;
}
.cookies-policy div span {
  position: absolute;
  top: -15px;
  right: 15px;
  cursor: pointer;
  font-size: 30px;
}
header {
  width: 100%;
  position: fixed;
  z-index: 444;
  padding: 20px 0;
  padding: 20px 0;
  left: 0;
  right: 0;
  transition: all 0.3s linear;
}
header .width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .width .logo {
  height: 50px;
}
header .width .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
header .width .menu ul {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
header .width .menu ul li {
  list-style: none;
  cursor: pointer;
  margin-right: 30px;
}
header .width .menu ul li a {
  color: #fff;
  padding: 5px;
  transition: all 0.1s linear;
}
header .width .menu ul li a:hover {
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
header.active {
  background-color: #f5f5f5;
  padding: 10px 0;
}
header.active .width .logo img {
  filter: initial;
}
header.active .width .menu ul li {
  list-style: none;
  cursor: pointer;
}
header.active .width .menu ul li a {
  color: #252525;
}
header.active .width .menu ul li a:hover {
  color: #5d8400;
  border-top: 1px solid #5d8400;
  border-bottom: 1px solid #5d8400;
}
#menu-btn {
  display: none;
  background-color: rgba(0, 0, 0, 0);
  position: fixed;
  cursor: pointer;
  z-index: 999;
  height: 50px;
  border: none;
  width: 50px;
  right: 80px;
  top: 10px;
  padding: 0 5px;
}
#menu-btn.active span,
#menu-btn.active span::before,
#menu-btn.active span::after {
  background-color: #252525;
}
#menu-btn span,
#menu-btn span::before,
#menu-btn span::after {
  content: "";
  width: 40px;
  height: 1px;
  display: block;
  position: absolute;
  background-color: #fff;
}
#menu-btn span::before {
  top: 10px;
  transition: all 0.3s linear;
}
#menu-btn span::after {
  bottom: 10px;
  transition: all 0.3s linear;
}
.width {
  max-width: 1260px;
  margin: 0 auto;
}
.section {
  padding: 180px 0;
}
.accueil {
  width: 100%;
  height: 100vh;
  background-position: center;
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
}
.accueil > div {
  width: 100%;
  text-align: center;
  margin-top: 40px;
  background-color: rgba(0, 0, 0, 0.3);
  padding: 50px;
}
.accueil > div svg {
  overflow: visible;
  width: 180px;
}
.accueil > div h1 {
  margin: 40px auto;
  font-size: 48px;
  line-height: 54px;
  color: #fff;
  text-align: center;
  max-width: 40ch;
  font-weight: bold;
}
#main .columns-3 {
  display: flex;
  justify-content: flex;
  justify-content: space-between;
  align-items: flex-start;
  text-align: left;
}
#main .columns-3 p {
  width: 35%;
}
#main .columns-3 p:first-child {
  position: relative;
  width: 15%;
}
#main .columns-3 p:first-child:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #252525;
}
.roller-section {
  position: relative;
}
.roller-section #roller {
  height: auto;
  display: flex;
  align-items: center;
  flex-direction: row;
  position: relative;
  transition-duration: 0.6s;
  left: 0%;
}
.roller-section #roller img {
  height: 400px;
  width: 35vw;
  margin-right: 1em;
  transition-duration: 0.6s;
  -o-object-fit: cover;
  object-fit: cover;
}
.roller-section .next,
.roller-section .prev {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 99;
  cursor: pointer;
}
.roller-section .next img,
.roller-section .prev img {
  width: 40px;
  height: 40px;
  -o-object-fit: contain;
  object-fit: contain;
}
.roller-section .next {
  right: 0px;
  padding: 10px 20px;
  background-color: rgba(153, 195, 57, 0.8);
}
.flex {
  display: flex;
  align-items: center;
  position: relative;
}
.flex .txt {
  width: 40%;
  background-color: #f5f5f5;
  color: #fff;
  padding: 90px;
  position: absolute;
  z-index: 2;
  color: #252525;
}
.flex .txt ul {
  list-style-type: "â";
}
.flex .txt ul li {
  padding-left: 10px;
}
.flex .txt .title {
  display: flex;
}
.flex .txt .title img {
  width: 40px;
  margin-right: 20px;
  margin-top: 15px;
}
.flex .txt .btn {
  margin-top: 60px;
}
.flex .txt p {
  text-align: justify;
}
.flex .img {
  width: 55%;
  height: 550px;
  cursor: pointer;
  transition: all 0.3s linear;
}
.flex .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.flex .masterplan {
  width: 40%;
  height: 100% !important;
}
.imgActive {
  transition: all 0.3s linear;
  width: 65% !important;
  height: 650px !important;
}
.flex2 {
  display: flex;
  align-items: center;
}
.flex2 .txt {
  width: 50%;
  background-color: #f5f5f5;
  padding: 150px 100px;
  position: relative;
}
.flex2 .txt:before {
  content: "";
  position: absolute;
  width: 20%;
  height: 100%;
  background-color: #f5f5f5;
  left: -20%;
  top: 0;
  z-index: -1;
}
.flex2 .txt * {
  color: #252525;
}
.flex2 .txt ul {
  list-style-type: "â";
}
.flex2 .txt ul li {
  padding-left: 10px;
}
.flex2 .txt .title {
  display: flex;
}
.flex2 .txt .title img {
  width: 40px;
  margin-right: 20px;
  margin-top: 30px;
  margin-left: -10px;
}
.flex2 .txt .btn {
  margin-top: 60px;
}
.flex2 .txt p {
  text-align: justify;
  max-width: 35ch;
}
.flex2 .img {
  width: 65%;
  height: 600px;
  position: relative;
  z-index: 44;
}
.flex2 .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.img-left {
  padding-bottom: 0 !important;
}
.img-left .img {
  margin-left: auto;
}
.img-right .txt {
  right: 0;
}
.title-section {
  min-height: 100vh;
  width: 100%;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
.title-section:after {
  content: "";
  position: absolute;
  width: 50%;
  min-height: 200px;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 1;
}
.title-section.no-txt:after {
  display: none;
}
.title-section h2 {
  width: 100%;
  font-size: 76px;
  line-height: 113px;
  color: #5d8400;
  position: relative;
  z-index: 44;
  text-transform: uppercase;
}
.title-section .plans {
  position: absolute;
  z-index: 44;
  left: 25%;
}
.title-section .plans h3 {
  font-weight: 500;
  font-size: 48px;
  line-height: 99%;
  color: #252525;
  margin-bottom: 40px;
  position: relative;
}
.title-section .plans h3:after {
  content: "";
  position: absolute;
  left: -80px;
  top: 20px;
  width: 40px;
  height: 2px;
  background-color: #252525;
}
.title-section .plans .line {
  width: 40px;
  height: 2px;
  margin-top: 20px;
}
#situation2 {
  position: relative;
}
#situation2 h2 {
  color: #5d8400;
}
#situation2 .txt {
  padding: 80px 0px 80px 60px;
}
.situation-map {
  margin-bottom: 100px;
}
#fullImg {
  padding-top: 0;
  cursor: pointer;
}
.appartement {
  padding-top: 150px;
  padding-bottom: 150px;
}
.appartement .content .facade__header {
  font-size: 42px;
  margin-bottom: 40px;
}
.appartement .btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 70px;
}
.appartement .btn-container .btn {
  margin: 0 30px;
  background-color: rgba(0, 0, 0, 0);
  color: #5d8400;
}
.appartement .btn-container .btn:hover {
  background-color: #5d8400;
  color: #fff;
}
#galerie {
  position: relative;
}
#galerie .accent-logo {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: scale(1.2);
  z-index: 99;
  opacity: 0.4;
}
#galerie .accent-logo2 {
  position: absolute;
  bottom: 1%;
  right: 10px;
  transform: scale(0.8) rotate(60deg);
  z-index: 99;
  opacity: 0.4;
}
#galerie .img-container .gallery-flex {
  display: flex;
  justify-content: space-between;
  gap: 2em;
}
#galerie .img-container .gallery-flex:first-child,
#galerie .img-container .gallery-flex:nth-child(2) {
  margin-bottom: 2em;
}
#galerie .img-container .gallery-flex > div {
  overflow: hidden;
}
#galerie .img-container .gallery-flex > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.5s linear;
}
#galerie .img-container .gallery-flex > div img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
#galerie .img-container .gallery-flex .gallery-flex-1 {
  width: 55%;
  height: 680px;
}
#galerie .img-container .gallery-flex .gallery-flex-1 img {
  width: 100%;
  height: 100%;
}
#galerie .img-container .gallery-flex .gallery-flex-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 45%;
  gap: 2em;
}
#galerie .img-container .gallery-flex .gallery-flex-2 > div {
  width: 100%;
  overflow: hidden;
  height: 320px;
}
#galerie .img-container .gallery-flex .gallery-flex-3 {
  width: 100%;
  height: 600px;
  gap: 2em;
}
#galerie .img-container .gallery-flex .gallery-flex-3 > div {
  width: 100%;
  overflow: hidden;
  height: 320px;
}
#fullscreen {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #252525;
  transition-duration: 1s;
  opacity: 0;
  visibility: hidden;
}
#fullscreen * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#fullscreen > div > div {
  opacity: 0;
  visibility: hidden;
}
#fullscreen .full-img-wrap {
  position: relative;
  padding: 10px;
}
#fullscreen #full-img {
  background-position: center;
  background-size: cover;
  transform: scale(0.7);
}
#fullscreen .close {
  position: absolute;
  top: 0px;
  right: 5%;
  background: none;
  border: none;
  width: 50px;
  height: 50px;
  padding: 0 10px;
  font-size: 3em;
  color: #fff;
  text-shadow: 0 0 2px #000;
  display: none;
  cursor: pointer;
}
#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: #fff;
  text-shadow: 0 0 2px #000;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#fullscreen .next {
  right: 0;
}
#fullscreen .prev {
  left: 0;
}
#contact {
  background-color: #f5f5f5;
  padding: 150px;
  text-align: center;
  position: relative;
}
#contact .accent-logo {
  position: absolute;
  bottom: 5%;
  right: 60px;
  opacity: 0.6;
  transform: scale(1.1);
}
#contact .subtitle {
  font-size: 22px;
  font-weight: bold;
}
#contact h2 {
  max-width: 24ch;
  margin-left: auto;
  margin-right: auto;
}
#contact .line {
  width: 200px;
  height: 2px;
  -o-object-fit: contain;
  object-fit: cover;
  margin-bottom: 60px;
}
#contact form > div input:not([type="submit"]),
#contact form > div textarea {
  background-color: rgba(0, 0, 0, 0);
  outline: none;
  border: none;
  width: 630px;
  font-family: "Poppins", sans-serif;
  font-size: 16px;
  line-height: 150%;
  text-align: center;
  color: #8e8e8e;
  padding: 12px;
  margin-bottom: 30px;
}
#contact form > div input:not([type="submit"]) {
  border-bottom: 1px solid #000;
}
#contact form > div textarea {
  border: 1px solid #000;
  min-height: 200px;
}
#contact form > div p {
  color: #8e8e8e;
  font-size: 16px;
  line-height: 150%;
  padding: 12px;
}
footer {
  background-color: #2c2c2c;
  padding: 70px 0 20px 0;
}
footer p,
footer a,
footer li {
  color: #fff;
}
footer .width nav {
  padding-bottom: 30px;
  border-bottom: 1px solid #fff;
}
footer .width nav ul {
  display: flex;
  list-style: none;
  justify-content: space-between;
  align-items: center;
}
footer .width nav ul li {
  margin: 0 40px;
  padding-top: 5px;
  transition: all 0.3s linear;
  border-top: 1px solid #2c2c2c;
}
footer .width nav ul li a {
  font-size: 15px;
}
footer .width nav ul li:hover {
  border-top: 1px solid #fff;
}
footer .width .contact-courtage {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
footer .width .contact-courtage .courtage-row {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
footer .width .contact-courtage .courtage-row h3 {
  color: #fff;
  font-size: 26px;
}
footer .width .contact-courtage .contact-content {
  display: flex;
  justify-content: space-around;
  width: 100%;
  margin-bottom: 20px;
  text-align: center;
}
footer .width .contact-courtage .contact-content .coname {
  height: 110px;
}
footer .width .contact-courtage .contact-content .coname p {
  font-size: 18px;
}
footer .width .avp {
  text-align: center;
  margin-top: 50px;
}
footer .width .avp p,
footer .width .avp a {
  font-size: 13px;
}
footer .width .avp a:hover {
  color: #5d8400;
}
@media only screen and (max-width: 1600px) {
  .accueil > div svg {
    width: 150px;
  }
}
@media only screen and (max-width: 1450px) {
  .width {
    max-width: 1050px;
  }
  .section {
    padding: 130px 0;
  }
  .accueil > div h1 {
    font-size: 42px;
    line-height: 48px;
  }
  h2 {
    font-size: 26px;
    line-height: 34px;
  }
  .flex .txt {
    padding: 90px 60px;
  }
  #galerie .accent-logo {
    transform: scale(1);
  }
  .roller-section #roller img {
    height: 300px;
  }
}
@media only screen and (max-width: 1200px) {
  .btn {
    padding: 10px 20px;
    text-align: center;
  }
  .width {
    max-width: initial;
    padding-left: 10%;
    padding-right: 10%;
  }
  .accueil > div {
    margin-top: 15%;
  }
  .accueil > div h1 {
    margin: 30px auto;
    font-size: 38px;
    line-height: 44px;
  }
  .subtitle {
    margin-bottom: 40px;
  }
  .roller-section #roller img {
    height: 215px;
  }
  .flex .txt {
    width: 35%;
  }
  .flex .txt p {
    font-size: 15px;
  }
  .flex .img {
    height: 450px;
  }
  .flex.img-right .txt {
    right: 10%;
  }
  .flex2 .txt {
    padding: 100px 60px;
  }
  .imgActive {
    transition: all 1s linear;
    width: 65% !important;
    height: 550px !important;
  }
  #situation2.flex2 .img {
    width: 65%;
    height: 450px;
  }
  .appartement {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .appartement .content .facade__header {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .title-section h2 {
    width: 100%;
    font-size: 56px;
  }
  #contact {
    padding: 120px 100px;
  }
  footer .width .contact-courtage .contact-content {
    justify-content: space-between;
  }
  footer .width .contact-courtage .contact-content .coname p {
    font-size: 16px;
  }
}
@media only screen and (max-width: 1050px) {
  header {
    padding: 10px 0;
  }
  header .width .menu.active {
    right: 0;
    transition: all 0.6s linear;
  }
  header .width .menu {
    position: fixed;
    top: 0px;
    background: #f5f5f5;
    padding: 100px 0px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    right: -100%;
    transition-duration: 0.6s;
    overflow-y: scroll;
  }
  header .width .menu ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
    height: 100%;
  }
  header .width .menu ul li a {
    color: #252525;
  }
  header .width .logo {
    position: relative;
    z-index: 999;
  }
  header .width .logo img.active {
    filter: initial;
  }
  #menu-btn {
    display: block;
  }
  .section {
    padding: 110px 0%;
  }
  .width {
    max-width: initial;
    padding-left: 10%;
    padding-right: 10%;
  }
  h2 {
    font-size: 32px;
    line-height: 44px;
    margin-bottom: 40px;
  }
  .accueil > div img {
    width: 200px;
  }
  .accueil > div h1 {
    margin-top: 20px;
    font-size: 38px;
    line-height: 48px;
  }
  .subtitle {
    margin-bottom: 20px;
  }
  .title h2 br {
    display: none;
  }
  .roller-section #roller img {
    height: 200px;
  }
  .flex {
    flex-direction: column;
  }
  .flex .txt {
    width: 90%;
    padding: 80px;
    position: initial;
  }
  .flex .txt .title img {
    margin-left: 0px;
  }
  .flex .img {
    height: 450px;
    width: 100%;
    margin-top: -50px;
  }
  .imgActive {
    transition: all 1s linear;
    height: 450px !important;
    width: 100% !important;
  }
  .flex.img-right .txt {
    order: -1;
  }
  .flex2 {
    flex-direction: column;
  }
  .flex2 .txt {
    width: 90%;
    padding: 80px;
    position: initial;
  }
  .flex2 .txt .title img {
    margin-left: 0px;
  }
  .flex2 .txt:before {
    width: 100%;
    height: 50px;
    top: initial;
    bottom: -50px;
    left: 0;
  }
  .flex2 .img {
    width: 100%;
    position: initial;
    height: 450px;
    z-index: -1;
  }
  .flex2.img-right .img {
    order: 1;
  }
  .title-section {
    min-height: 70vh;
  }
  #situation2.flex2 .img {
    width: 100%;
    position: relative;
    z-index: 1;
  }
  .roller-section .next img {
    width: 30px;
    height: 30px;
  }
  #galerie .accent-logo {
    transform: scale(0.5);
    left: -8%;
  }
  #galerie .accent-logo2 {
    transform: scale(0.6) rotate(60deg);
    bottom: -3%;
    right: -5%;
  }
  #galerie .img-container .gallery-flex {
    gap: 1em;
  }
  #galerie .img-container .gallery-flex:first-child,
  #galerie .img-container .gallery-flex:nth-child(2) {
    margin-bottom: 1em;
  }
  #galerie .img-container .gallery-flex .gallery-flex-2 {
    gap: 1em;
  }
  #galerie .img-container .gallery-flex .gallery-flex-2 > div {
    height: 150px;
  }
  #galerie .img-container .gallery-flex .gallery-flex-1 {
    width: 55%;
    height: 320px;
  }
  #galerie .img-container .gallery-flex .gallery-flex-3 {
    height: 400px;
  }
  #fullscreen .close {
    left: initial;
    right: 10px;
  }
  .title-section:after {
    min-height: 150px;
  }
  .title-section h2 {
    font-size: 48px;
  }
  footer .width nav ul li a {
    font-size: 14px;
  }
  footer .width .contact-courtage .contact-content {
    justify-content: space-between;
    flex-direction: column;
  }
  footer .width .contact-courtage .contact-content .coname {
    height: initial;
  }
  footer .width .contact-courtage .contact-content .client {
    padding: 40px 0;
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    text-align: left;
    flex-wrap: wrap;
    border-bottom: 1px solid #fff;
  }
  footer .width .contact-courtage .contact-content .client .margin-auto {
    margin: 20px 0 0 auto;
  }
  footer .width .contact-courtage .contact-content .client a {
    display: block;
  }
  footer .width .contact-courtage .contact-content .client br {
    display: none;
  }
  footer .width .contact-courtage .contact-content .client > div {
    width: 45%;
  }
  footer .width .avp a,
  footer .width .avp p {
    font-size: 12px;
  }
  .cookies-policy {
    padding: 3rem 0 1rem 0rem;
  }
  .cookies-policy div p {
    font-size: 12px;
    max-width: 45ch;
  }
  .cookies-policy div span {
    top: initial;
    bottom: 100%;
    right: 50%;
    transform: translateX(50%);
  }
  #contact .accent-logo {
    bottom: 0;
    right: 0px;
    transform: scale(0.8);
  }
}
@media only screen and (max-width: 800px) {
  .accueil > div h1 {
    font-size: 32px;
    line-height: 40px;
  }
  .btn {
    padding: 10px 20px;
  }
  .flex .txt {
    padding: 80px 60px;
  }
  .flex2 .txt {
    padding: 80px 60px;
  }
  h2 {
    font-size: 26px;
    line-height: 34px;
  }
  #situation2 .txt {
    padding: 80px 40px 80px 60px;
  }
  .title-section:after {
    width: 80%;
  }
  .table-section .width {
    padding-left: 60px;
    padding-right: 60px;
  }
  .table-section table th,
  .table-section table td {
    padding: 0.5em 0.1em;
  }
  .table-section table th:first-child,
  .table-section table td:first-child {
    display: none;
  }
  .table-section .parking {
    padding-left: 0px;
  }
  .table-section .parking p {
    font-size: 15px;
  }
  #fullscreen .nev-btn {
    top: initial;
  }
  footer .width nav ul {
    justify-content: space-between;
  }
  footer .width nav ul li {
    margin: 0 0px;
  }
}
@media only screen and (max-width: 680px) {
  header .width .logo {
    height: 40px;
  }
  #menu-btn {
    right: 10%;
    top: 6px;
  }
  .accueil > div svg {
    width: 100px;
  }
  .subtitle {
    margin-bottom: 20px;
  }
  h2 {
    margin-bottom: 40px;
  }
  .roller-section #roller img {
    height: 200px;
  }
  .roller-section .next img {
    width: 20px;
    height: 20px;
  }
  .flex .txt {
    width: 95%;
    padding: 80px 50px;
  }
  .flex .img {
    height: 350px;
    margin-top: -30px;
  }
  .flex2 .txt {
    width: 95%;
    padding: 80px 50px;
  }
  .flex2 .img {
    height: 400px;
  }
  .imgActive {
    transition: all 1s linear;
    height: 400px !important;
    width: 100% !important;
  }
  .title-section:after {
    width: 60%;
    min-height: 100px;
  }
  .title-section h2 {
    font-size: 36px;
  }
  .table-section table th,
  .table-section table td {
    font-size: 14px;
  }
  #galerie .accent-logo {
    left: -11%;
  }
  #fullscreen .nav-btn {
    top: initial;
  }
  #contact {
    padding: 100px 80px;
  }
  #contact .accent-logo {
    right: initial;
    left: -10%;
  }
  footer .width nav {
    display: none;
  }
  footer .width .contact-courtage .contact-content .coname p {
    font-size: 15px;
  }
  footer .width .contact-courtage .contact-content a,
  footer .width .contact-courtage .contact-content p {
    font-size: 15px;
  }
  footer .width .contact-courtage .courtage-row {
    padding: 0 0 40px 0;
  }
}
@media only screen and (max-width: 550px) {
  p,
  a,
  li {
    font-size: 15px;
  }
  .section {
    padding: 60px 0;
  }
  .width {
    padding-left: 40px;
    padding-right: 40px;
  }
  .btn {
    font-size: 15px;
  }
  .appartement {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  .appartement .content .facade__header {
    font-size: 24px;
    margin-bottom: 30px;
  }
  .appartement .btn-container {
    flex-direction: column;
  }
  .appartement .btn-container .btn {
    width: 80%;
    margin: 10px auto;
  }
  #menu-btn {
    right: 40px;
  }
  .accueil > div h1 {
    margin-top: 20px;
    font-size: 26px;
    line-height: 32px;
  }
  .subtitle {
    font-size: 16px;
  }
  h2 {
    font-size: 24px;
    line-height: 32px;
  }
  #situation2.flex .txt {
    padding: 80px 30px 40px 30px;
  }
  #situation2.flex .txt h2 {
    font-size: 28px;
    line-height: 32px !important;
  }
  #environnement.flex2 .txt {
    padding: 80px 50px 40px 50px;
  }
  .flex .txt {
    width: 95%;
    padding: 50px 30px;
  }
  .flex .txt .title img {
    margin-right: 10px;
    width: 30px;
  }
  .flex .img {
    height: 300px;
    margin-top: -30px;
  }
  .flex2 .txt {
    width: 95%;
    padding: 50px 30px;
  }
  .flex2 .txt:before {
    bottom: -20px;
  }
  .flex2 .txt .title img {
    margin-right: 10px;
    width: 30px;
  }
  .flex2 .img {
    height: 300px;
    margin-top: -30px;
  }
  .imgActive {
    height: 350px !important;
  }
  .title-section h2 {
    font-size: 36px;
  }
  .title-section:after {
    width: 100%;
  }
  .table-section {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  .table-section h2 {
    margin-bottom: 40px;
  }
  .table-section .width {
    padding-left: 30px;
    padding-right: 30px;
  }
  .table-section table tr th:nth-child(7),
  .table-section table tr td:nth-child(7),
  .table-section table tr th:nth-child(8),
  .table-section table tr td:nth-child(8) {
    display: none;
  }
  .table-section table tr th:nth-child(6),
  .table-section table tr td:nth-child(6) {
    display: table-cell;
  }
  .table-section table td,
  .table-section table th {
    font-size: 13px;
  }
  .table-section .legende {
    margin: 30px 10px;
  }
  .table-section .legende > div {
    margin-right: 10px;
  }
  .table-section .parking {
    padding-left: 0px;
  }
  .table-section .parking p {
    font-size: 14px;
  }
  #galerie .img-container .gallery-flex .gallery-flex-3 {
    height: 200px;
  }
  #galerie .img-container .gallery-flex:first-child,
  #galerie .img-container .gallery-flex:nth-child(2) {
    margin-bottom: 0.5em;
  }
  #galerie .accent-logo {
    left: -25%;
    transform: scale(0.3);
  }
  #galerie .accent-logo2 {
    transform: scale(0.5);
    bottom: -10%;
    right: -14%;
  }
  .title-section {
    min-height: 50vh;
  }
  #contact {
    padding: 80px 50px;
  }
  #contact form > div input:not([type="submit"]),
  #contact form > div textarea {
    font-size: 14px;
  }
  #acteurs {
    padding: 80px 20px;
  }
  #acteurs > div > div h3 {
    font-size: 20px;
  }
  footer .width .contact-courtage .contact-content .client {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  footer .width .contact-courtage .contact-content .client .coname {
    margin-bottom: 10px;
  }
  footer .width .contact-courtage .contact-content .client > div {
    width: 100%;
  }
}
@media only screen and (max-width: 420px) {
  .accueil > div {
    margin-top: 100px;
  }
  h2 {
    font-size: 22px;
    line-height: 28px;
  }
  .roller-section #roller img {
    height: 150px;
  }
  .flex .img {
    height: 200px;
    margin-top: -10px;
  }
  .imgActive {
    height: 250px !important;
  }
  #situation2.flex .txt {
    width: 100%;
    padding: 80px 20px 40px 20px;
  }
  #situation2.flex .txt h2 {
    font-size: 22px !important;
    line-height: 30px !important;
  }
  #environnement.flex2 .txt {
    padding: 80px 20px 40px 20px;
  }
  #situation2 .txt {
    padding: 40px 20px 60px 20px;
  }
  .table-section {
    padding-left: 0px;
    padding-right: 0px;
  }
  .table-section table th:nth-child(6),
  .table-section table td:nth-child(6) {
    display: none;
  }
  .table-section .legende > div p {
    padding: 5px;
    font-size: 13px;
  }
  #contact .accent-logo {
    right: initial;
    left: -20%;
    bottom: -7%;
  }
  footer {
    padding: 70px 0 20px 0;
  }
  footer .width .avp p,
  footer .width .avp a {
    font-size: 10px;
  }
}
@media only screen and (max-width: 805px) and (orientation: landscape) {
  .title-section .plans h3 {
    margin-bottom: 20px;
    font-size: 32px;
  }
  .title-section:after {
    height: 60vh;
  }
}
.pastile {
  position: absolute;
  top: 10%;
  left: 5%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background-color: #84a98c;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1%;
}
.pastile p {
  text-align: center;
  text-transform: uppercase;
  font-weight: bold;
}

.popup-info {
  position: absolute;
  z-index: 5;
  top: 10%;
  right: 1%;
  width: auto;
  height: auto;
  background-color: #95c123;
  padding: 50px;
  border-radius: 50px 5px 50px 5px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  justify-content: flex-start;
  transition: 0.8s;
}
.popup-info .close-pop-up {
  position: absolute;
  top: 3%;
  right: 3%;
  cursor: pointer;
  font-size: 32px;
}
/* .popup-info ul {
 padding: 0px 2% 0 10%;
} */
.popup-info ul li {
  list-style: initial;
  letter-spacing: unset;
  line-height: unset;
  font-size: 16px;
  margin-left: 40px;
}
.popup-info p {
  font-style: normal;
  letter-spacing: normal;
  font-weight: 400;
  font-size: 20px;
  line-height: 24px;
  margin-bottom: 20px;
  text-align: center;
  transition: color 0.3s linear;
}

.popup-info p.tel {
  font-style: normal;
  letter-spacing: normal;
  font-weight: 400;
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 0px;
  text-align: center;
  transition: color 0.3s linear;
  margin: 0 auto;
}

.popup-info a {
  font-weight: bold;
  transition: 0.5s;
  border-bottom: 1px solid transparent;
  color: #fff;
}

.popup-info a:hover {
  border-bottom: 1px solid white;
}

@media only screen and (max-width: 668px) {
  .pastile {
    width: 135px;
    height: 135px;
  }
  .pastile p {
    font-size: 10px;
  }
  .popup-info {
    /* width: 90%; */
    padding: 30px 20px;
    align-items: center;
    justify-content: center;
  }

  .popup-info p {
    font-size: 18px;
    line-height: 24px;
    margin-bottom: 10px;
  }
  .popup-info ul li {
    list-style: none;
    margin: 0 auto;
    text-align: center;
  }
}
