:root {
  --padding-80: 80px;
}

@font-face {
  font-family: "Calgary";
  src: url("fonts/Calgary.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "CormorantGaramond";
  src: url("fonts/CormorantGaramond.ttf") format("truetype");
  font-weight: normal;
  font-style: normal;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  max-width: 1920px;
  margin: auto;
  padding: 0;
  overflow-x: hidden;
  width: 100%;
  height: 100%;
  background-color: #f3f0e9;
}

* {
  box-sizing: border-box;
  max-width: 100%;
  margin: 0;
  padding: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

#btnUp {
  display: block;
  position: fixed;
  bottom: 10px;
  left: 10px;
  width: 30px;
  height: 30px;
  z-index: 999;
  transform: rotate(-90deg);
}

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

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

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

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

#succes {
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition-duration: 0.6s;
}
#succes > div {
  text-align: center;
  font-size: 24px;
  z-index: 1;
  color: #393939;
  background-color: #f3f0e9;
  padding: 60px;
  line-height: 1.5;
  position: relative;
}

#succes.active {
  display: flex;
}

#succes.hidden {
  visibility: hidden !important;
  opacity: 0 !important;
}

.close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: #393939;
  cursor: pointer;
}

.width {
  padding: 0 13%;
  margin: 0 auto;
}

h2 {
  font-family: "Calgary", serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 0em;
  text-align: left;
  color: #e3e7e8;
  text-transform: uppercase;
  margin-bottom: 30px;
}

h1.title,
h2.title {
  font-family: "CormorantGaramond", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: 0em;
  text-align: center;
  color: #40648f;
  margin: 0 auto;
  padding-left: 10%;
  padding-right: 10%;
  text-transform: none;
  font-style: italic;
}

a {
  text-decoration: none;
}

a,
p,
li,
span {
  font-family: "CormorantGaramond", sans-serif;
}

span {
  display: inline-block;
}

.subtitle {
  font-family: "CormorantGaramond", sans-serif;
  font-size: 46px;
  font-weight: 300;
  line-height: 120%;
  letter-spacing: 0em;
  text-align: left;
  color: #6e7b8b;
  text-transform: uppercase;
  margin-bottom: 32px;
}

p,
li {
  font-size: 20px;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0em;
  text-align: left;
  color: #393939;
}
p:not(:last-of-type),
li:not(:last-of-type) {
  margin-bottom: 30px;
}

nav ul li:not(:last-of-type) {
  margin-bottom: 0px;
}

.btn {
  font-family: "CormorantGaramond", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 24px;
  line-height: 152.19%;
  display: inline-block;
  width: 260px;
  color: #6e7b8b;
  background-color: #e3e7e8;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding: 5px 15px;
  border: 2px solid #e3e7e8;
  margin-top: 50px;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  margin-left: 50px;
  transition: all 0.3s linear;
}
.btn:after {
  content: "";
  background: url("imgs/icons/arrows.svg");
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  top: 20%;
  z-index: 3;
  right: -25px;
  width: 52px;
  height: 52px;
  transition: all 0.3s linear;
  text-align: center;
  justify-content: center;
}
.btn:hover {
  background-color: transparent;
  color: #6e7b8b;
  border: 2px solid #6e7b8b;
}
.btn:hover:after {
  right: -60px;
}

[data-fancybox] {
  transition: all 0.3s linear;
  position: relative;
  height: 100%;
  display: block;
}
[data-fancybox]::before {
  content: "";
  display: block;
  opacity: 0;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.3);
  transition: all 0.3s linear;
  z-index: 2;
}
[data-fancybox] a {
  display: block;
}
[data-fancybox] img {
  display: block;
}
[data-fancybox]:focus-visible {
  outline: none;
}
[data-fancybox]:hover::after {
  opacity: 1;
}
[data-fancybox]:hover::before {
  opacity: 1;
}

.fancybox-inner * {
  font-family: "Jost", sans-serif !important;
}

.fancybox-infobar * {
  color: #f3f0e9 !important;
  font-family: "Jost", sans-serif !important;
}

.fancybox-toolbar svg path,
.fancybox-navigation svg path {
  fill: #f3f0e9 !important;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 55px 0;
  z-index: 99;
  transition: all 0.3s linear;
}
header.active {
  padding: 5px 0;
  background-color: #f3f0e9;
  transition: all 0.3s linear;
  border-bottom: 1px solid #f3f0e9;
}
header.active > div .logo {
  opacity: 1;
}
header.active > div .nav .contact-nav {
  color: #6e7b8b;
}
header > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header > div .logo {
  height: auto;
  position: relative;
  z-index: 100;
  opacity: 0;
  transition: all 0.3s linear;
}
header > div .logo a {
  height: 100%;
  font-family: "Calgary", serif;
  font-size: 28px;
  color: #e3e7e8;
  display: inline-block;
}
header > div .logo img {
  transition: all 10s linear;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
header > div .nav {
  display: flex;
  align-items: center;
  order: -1;
}
header > div .nav .contact-nav {
  color: #f3f0e9;
  transition: all 0.3s linear;
  font-weight: 500;
  font-size: 26px;
  font-family: "CormorantGaramond", sans-serif;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
header > div .nav .contact-nav:hover {
  border-bottom: 1px solid #e3e7e8;
}
header > div nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e3e7e8;
  position: absolute;
  left: -100%;
  top: 0;
  width: 50%;
  height: 100vh;
  transition: all 0.5s linear;
}
header > div nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  list-style-type: none;
}
header > div nav ul li {
  transition: all 0.3s linear;
  border-bottom: 1px solid transparent;
}
header > div nav ul li:hover {
  border-bottom: 1px solid #e3e7e8;
}
header > div nav ul li a {
  color: #6e7b8b;
  font-size: 22px;
  transition: all 0.1s linear;
  text-align: left;
  font-family: "CormorantGaramond", sans-serif;
  text-transform: uppercase;
  transition: all 0.3s linear;
}
header > div nav ul li a:hover {
  color: #40648f;
}
header > div nav.active {
  left: 0;
}

#menu-btn {
  background-color: transparent;
  cursor: pointer;
  border: none;
  width: 45px;
  height: 80px;
  position: relative;
  z-index: 100;
  order: -1;
  margin-right: 24px;
}
#menu-btn.activeColor span,
#menu-btn.activeColor span::before,
#menu-btn.activeColor span::after {
  content: "";
  width: 45px;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #6e7b8b;
}
#menu-btn.active span {
  background-color: transparent;
}
#menu-btn.active span::before {
  transform: translateY(-10px) rotate(135deg);
  background-color: #6e7b8b;
}
#menu-btn.active span::after {
  transform: translateY(10px) rotate(-135deg);
  background-color: #6e7b8b;
}
#menu-btn span,
#menu-btn span::before,
#menu-btn span::after {
  content: "";
  width: 45px;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #f3f0e9;
}
#menu-btn span::before {
  top: 10px;
  transition: all 0.5s linear;
}
#menu-btn span::after {
  bottom: 10px;
  transition: all 0.5s linear;
}

#accueil {
  height: 110vh;
  max-height: 1000px;
  background-size: cover;
  background-position: right;
  position: relative;
}
#accueil:after {
  content: "";
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
#accueil .logo {
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  z-index: 8;
  top: 2%;
  right: 3%;
  width: 41%;
  height: auto;
  min-width: 300px;
}
#accueil .logo h1 {
  margin: 0% auto 0 13%;
  font-family: "Calgary", serif;
  font-size: 65px;
  color: #f3f0e9;
}
#accueil .logo img {
  width: 100%;
  height: auto;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0) invert(1);
  display: block;
}

#pastille {
  position: absolute;
  top: 70px;
  right: 12%;
  background-color: #102c57;
  border-radius: 50%;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 140px;
  height: 140px;
  margin: 30px auto 0 auto;
  transition: all 0.3s linear;
  border: 1px solid #102c57;
}
#pastille p {
  padding: 5px;
  font-size: 20px;
  line-height: initial;
  margin: initial;
  text-align: center;
  text-transform: uppercase;
  color: white;
}

.flex {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-top: var(--padding-80);
  padding-bottom: var(--padding-80);
  position: relative;
}
.flex > div.txt {
  width: 32%;
}
.flex > div.txt p {
  text-align: justify;
}
.flex > div.txt ul {
  margin-left: 10px;
  list-style: symbols(">");
}
.flex > div.txt ul li:not(:last-of-type) {
  margin-bottom: 10px;
}
.flex > div.img {
  width: 57%;
  height: 500px;
  cursor: zoom-in;
}
.flex > div.img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.no-padding {
  padding-top: 0px;
}

.no-padding-bottom {
  padding-bottom: 0px;
}
.no-padding-bottom .txt {
  background-image: none !important;
}

.fullImgSection {
  width: 100%;
  height: 100vh;
  max-height: 900px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.fullImgSection2 {
  width: 100%;
  height: 100vh;
  max-height: 900px;
  margin: 0 auto;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

#projet {
  transition: all 0.3s linear;
  padding-top: var(--padding-80);
}
#projet .flex {
  align-items: flex-start;
}
#projet .flex .img {
  height: 460px;
}
#projet .fullImg {
  min-height: 100vh;
  padding-top: var(--padding-80);
  padding-bottom: var(--padding-80);
}
#projet .fullImg img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

#projet2 {
  background-color: #f3f0e9;
}
#projet2 .flex {
  align-items: center;
}
#projet2 .flex .txt {
  width: 47%;
}
#projet2 .flex .img {
  width: 47%;
  height: 360px;
}
#projet2 h2 {
  text-align: center;
  padding-top: var(--padding-80);
}
#projet2 .width .txt ul {
  list-style: none;
  margin-left: -10px;
  margin-bottom: 32px;
  padding-left: 32px;
}
#projet2 .width .txt ul li {
  display: inline-block;
  align-items: center;
  justify-content: flex-start;
  color: #6e7b8b;
}
#projet2 .width .txt ul li span:first-of-type {
  line-height: initial;
  font-weight: bold;
  color: #6e7b8b;
  align-items: center;
  display: inline;
  position: relative;
}
#projet2 .width .txt ul li span:first-of-type::before {
  content: url("imgs/icons/leave.svg?v.01");
  width: 40px;
  height: 40px;
  display: inline-block;
  margin-right: 12px;
  position: absolute;
  left: -40px;
}
#projet2 .width .txt ul li span:nth-of-type(2) {
  display: inline;
}

#le-points-forts {
  margin-top: var(--padding-80);
  margin-bottom: var(--padding-80);
  padding-top: var(--padding-80);
  background-color: #e3e7e8;
  padding-bottom: 50px;
}
#le-points-forts h2 {
  text-align: center;
  font-weight: 300;
  color: #6e7b8b;
  font-family: "CormorantGaramond", sans-serif;
}
#le-points-forts .container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: wrap;
}
#le-points-forts .container .icon {
  width: 33%;
  margin: 50px 0;
}
#le-points-forts .container .icon .img {
  height: 80px;
  margin: 0 auto 20px auto;
  width: auto;
}
#le-points-forts .container .icon .img.smaller {
  height: 70px;
  margin-bottom: 30px;
}
#le-points-forts .container .icon .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#le-points-forts .container .icon .txt p {
  text-align: center;
  color: #6e7b8b;
  font-weight: 500;
  line-height: 22px;
  max-width: 35ch;
  margin: 0 auto;
}

#icons-section {
  background-color: #e3e7e8;
  padding-top: var(--padding-80);
  padding-bottom: var(--padding-80);
}
#icons-section .container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #e3e7e8;
  padding-left: 25%;
  padding-right: 25%;
  grid-gap: 0 32px;
}
#icons-section .container .icon {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin: 45px 0;
  width: 400px;
}
#icons-section .container .icon .img {
  width: 70px;
  height: 70px;
  margin-right: 45px;
}
#icons-section .container .icon .img.bigger {
  width: 80px;
  height: 80px;
  margin-right: 35px;
}
#icons-section .container .icon .img img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
#icons-section .container .icon .txt span,
#icons-section .container .icon .txt h4 {
  text-align: left;
  line-height: 1.2 !important;
}
#icons-section .container .icon .txt span {
  font-size: 26px;
  font-weight: 300;
  line-height: 110%;
  text-transform: uppercase;
  color: #6e7b8b;
  font-family: "CormorantGaramond", sans-serif;
}
#icons-section .container .icon .txt h4 {
  font-family: "CormorantGaramond", sans-serif;
  font-size: 26px;
  font-weight: bold;
  line-height: 46px;
  color: #393939;
}

#situation {
  scroll-margin: 150px;
}
#situation h2 {
  text-align: center;
}
#situation .flex {
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding-top: 0;
}
#situation .flex .txt {
  width: 100%;
  text-align: center;
  margin-bottom: 50px;
  max-width: 975px;
}
#situation .flex .txt p {
  text-align: center;
  max-width: 118ch;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.5;
}
#situation .flex .txt h2 {
  text-align: left;
  font-size: 32px;
}
#situation .flex .img {
  width: 55%;
  display: flex;
  align-items: center;
  justify-content: center;
  -o-object-fit: cover;
  object-fit: cover;
}

#environement {
  padding-bottom: var(--padding-80);
}
#environement .distances h2 {
  text-align: center;
  font-family: "CormorantGaramond", sans-serif;
}
#environement .distances .container {
  width: 100%;
}
#environement .distances .container > div {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#environement .distances .container > div.header {
  padding: var(--padding-80) 13% 20px 13%;
  background-color: #e3e7e8;
  color: #6e7b8b;
}
#environement .distances .container > div.header .title,
#environement .distances .container > div.header .distance {
  font-family: "CormorantGaramond", sans-serif;
  font-size: 24px;
  font-weight: 300;
  line-height: 46px;
  letter-spacing: 0em;
  text-transform: uppercase;
  text-align: left;
  color: #6e7b8b;
  position: relative;
}
#environement .distances .container > div.header .title::after,
#environement .distances .container > div.header .distance::after {
  content: "";
  position: absolute;
  background-color: #f3f0e9;
  width: 1px;
  height: 200px;
  top: -110px;
  right: 0;
}
#environement .distances .container > div.header img {
  width: auto;
  -o-object-fit: contain;
  object-fit: contain;
}
#environement .distances .container > div.header .bus,
#environement .distances .container > div.header .car {
  position: relative;
}
#environement .distances .container > div.header .bus img,
#environement .distances .container > div.header .car img {
  height: 50px;
}
#environement .distances .container > div.header .bus::after,
#environement .distances .container > div.header .car::after {
  content: "";
  position: absolute;
  background-color: #f3f0e9;
  width: 1px;
  height: 200px;
  top: -110px;
  right: 0;
  filter: none;
}
#environement .distances .container > div.header .car.time::after {
  display: none;
}
#environement .distances .container > div.header .walk,
#environement .distances .container > div.header .bike {
  position: relative;
}
#environement .distances .container > div.header .walk img,
#environement .distances .container > div.header .bike img {
  height: 30px;
}
#environement .distances .container > div.header .walk::after,
#environement .distances .container > div.header .bike::after {
  content: "";
  position: absolute;
  background-color: #f3f0e9;
  width: 1px;
  height: 200px;
  top: -110px;
  right: 0;
  filter: none;
}
#environement .distances .container > div.data {
  padding: 0px 13% 20px 13%;
  background-color: #e3e7e8;
  color: #6e7b8b;
  overflow: hidden;
}
#environement .distances .container > div.data:last-of-type {
  padding-bottom: var(--padding-80);
}
#environement .distances .container > div.data .title {
  word-wrap: break-word;
}
#environement .distances .container > div.data .title,
#environement .distances .container > div.data .distance,
#environement .distances .container > div.data .time {
  font-family: "CormorantGaramond", sans-serif;
  font-size: 20px;
  font-weight: 400;
  line-height: 38px;
  letter-spacing: 0em;
  position: relative;
}
#environement .distances .container > div.data .title::after,
#environement .distances .container > div.data .distance::after,
#environement .distances .container > div.data .time::after {
  content: "";
  position: absolute;
  background-color: #f3f0e9;
  width: 1px;
  height: 400px;
  top: -110px;
  right: 0;
}
#environement .distances .container > div.data .time:last-of-type::after {
  display: none;
}
#environement .distances .container > div .title {
  width: 30%;
  text-align: left;
  padding-right: 10px;
}
#environement .distances .container > div .distance {
  width: 15%;
}
#environement .distances .container > div .time {
  width: 20%;
  text-align: center;
}
#environement .distances .container > div .full {
  width: 70%;
  text-align: center;
}

#villas {
  padding-bottom: var(--padding-80);
  padding-top: var(--padding-80);
}
#villas .subtitle {
  text-align: center;
}
#villas .table {
  overflow-x: auto;
  margin-top: 75px;
  width: 100%;
  display: flex;
  flex-direction: column;
  text-align: center;
}
#villas .table * {
  transition: height 1s ease-in-out 0.2s, visibility 0.1s linear 0.1s;
  font-family: "CormorantGaramond", sans-serif;
}
#villas .table .villa-info {
  transition: all 0.3s linear;
}
#villas .table .villa-info:not(:first-of-type):hover {
  cursor: pointer;
  background-color: rgba(110, 123, 139, 0.7);
}
#villas .table .villa-info .table-row {
  min-width: 990px;
  width: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  border: 1px solid #d8ddd0;
  transition: all 0.3s linear;
}
#villas .table .villa-info .table-row > div:not(:last-child) {
  border-right: 1px solid #d8ddd0;
}
#villas .table .villa-info .table-row .th {
  font-size: 18px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px 4px;
  width: 14%;
  min-width: 110px;
}
#villas .table .villa-info .table-row .td,
#villas .table .villa-info .table-row .dropdown {
  font-size: 18px;
  padding: 10px 4px;
  width: 14%;
  font-family: "CormorantGaramond", sans-serif;
  min-width: 110px;
}
#villas .table .villa-info .table-row .td img,
#villas .table .villa-info .table-row .dropdown img {
  cursor: pointer;
  width: 30px;
  height: 30px;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.3s linear;
}
#villas .table .villa-info .table-row .td img:hover,
#villas .table .villa-info .table-row .dropdown img:hover {
  transform: rotate(90deg);
}
#villas P {
  font-size: 16px;
  margin-top: 40px;
}
#villas .facade {
  text-align: center;
  margin: 0 auto;
}
#villas .facade .compass {
  position: absolute;
  right: 10%;
  width: 8%;
  bottom: 10px;
  height: 80px;
  margin: 10px;
}
#villas #facade {
  width: 60%;
  margin: 0 auto;
  height: 100%;
}
#villas #facade .text {
  position: relative;
  z-index: 2;
  pointer-events: none;
}
#villas #facade .st0,
#villas #facade .st1 {
  transition: all 0.3s linear;
  cursor: pointer;
}
#villas #facade .st0 .cls-2,
#villas #facade .st1 .cls-2 {
  transition: all 0.3s linear;
}
#villas #facade .st0:hover .cls-2,
#villas #facade .st1:hover .cls-2 {
  fill: rgba(110, 123, 139, 0.7);
}
#villas .tooltip {
  width: 350px;
  border: 1px solid #6e7b8b;
  display: none;
  background-color: white;
}
#villas .tooltip .data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #6e7b8b;
}
#villas .tooltip .data p {
  width: 45%;
  margin-bottom: initial;
  padding: 5px;
  font-size: 15px;
  margin-top: initial;
}
#villas .tooltip .data p:first-child {
  font-weight: bold;
}
#villas .tooltip .data:first-child {
  background-color: #6e7b8b;
}
#villas .tooltip .data:first-child p {
  color: #f3f0e9;
}
#villas .activeTooltip {
  display: block;
  position: fixed;
  overflow: hidden;
  z-index: 99999;
}

#bienvenue {
  padding-top: var(--padding-80);
  padding-bottom: 50px;
}
#bienvenue h1 {
  padding-left: 0;
  padding-right: 0;
}
#bienvenue .title {
  margin-bottom: 50px;
}
#bienvenue .subtitle {
  text-align: center;
  width: 100%;
  margin-bottom: 32px;
}
#bienvenue p {
  text-align: center;
  margin-bottom: 32px;
  padding-left: 8%;
  padding-right: 8%;
}
#bienvenue .imgs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
#bienvenue .imgs a {
  width: 33%;
  height: 300px;
  margin: 0 auto;
}
#bienvenue .imgs img {
  width: 33%;
  height: 300px;
  margin: 0 auto;
}

#finitions {
  scroll-margin: 150px;
}
#finitions .flex {
  align-items: center;
}
#finitions .flex .txt {
  width: 35%;
}
#finitions .flex .txt p {
  line-height: 1.5;
}
#finitions .flex .img {
  width: 57%;
  height: auto;
}
#finitions h2 {
  text-align: center;
  margin-bottom: 50px;
}
#finitions .flex h2 {
  text-align: left;
  margin-bottom: 30px;
}

#galerie {
  background-color: #f3f0e9;
  position: relative;
  scroll-margin: 150px;
  padding-bottom: 200px;
}
#galerie .subtitle {
  display: block;
  text-align: center;
}
#galerie .swiper-container-galerie swiper-slide {
  height: 450px;
  max-height: 80vh;
  transition: all 0.3s linear;
}
#galerie .swiper-container-galerie swiper-slide a {
  position: relative;
  display: block;
}
#galerie .swiper-container-galerie swiper-slide a img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  position: relative;
}
#galerie .swiper-container-galerie swiper-slide a img::after {
  content: "";
  position: absolute;
  display: block;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 0;
  transition: all 0.3s linear;
  z-index: 5;
}
#galerie .swiper-container-galerie swiper-slide a p {
  opacity: 0;
  transition: all 0.3s linear;
  position: absolute;
  bottom: 20px;
  font-size: 26px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  color: #f3f0e9;
  text-transform: uppercase;
  width: 100%;
  text-align: center;
}
#galerie .swiper-container-galerie swiper-slide:hover p {
  opacity: 1;
}
#galerie .swiper-container-galerie swiper-slide:hover img::after {
  opacity: 1;
}
#galerie .swiper-container-galerie::part(container) {
  overflow: visible;
}
#galerie .swiper-container-galerie::part(button-prev),
#galerie .swiper-container-galerie::part(button-next) {
  width: 100px;
  height: 100px;
  background: url("imgs/icons/arrows.svg") no-repeat center center;
  bottom: -120px;
  top: auto;
  left: 50px;
}
#galerie .swiper-container-galerie::part(button-prev) {
  transform: rotate(180deg);
}
#galerie .swiper-container-galerie::part(button-next) {
  background: url("imgs/icons/arrows.svg") no-repeat center center;
  right: 50px;
  left: auto;
}

#partenaires {
  background-color: #e3e7e8;
  padding-top: var(--padding-80);
  padding-bottom: var(--padding-80);
  margin-bottom: var(--padding-80);
  scroll-margin: 150px;
}
#partenaires .width {
  padding-left: 5%;
  padding-right: 5%;
}
#partenaires * {
  color: #6e7b8b;
  text-align: center;
}
#partenaires .container {
  display: flex;
  justify-content: center;
  align-items: flex-end;
  flex-wrap: wrap;
  text-align: center;
}
#partenaires .container > div {
  width: 400px;
  margin: 40px 0;
}
#partenaires .container > div h3 {
  text-align: center;
  font-family: "CormorantGaramond", sans-serif;
  font-size: 26px;
  font-style: italic;
  font-weight: normal;
  margin-bottom: 32px;
  color: #6e7b8b;
}
#partenaires .container > div img {
  height: 80px;
  -o-object-fit: contain;
  object-fit: contain;
}

#processus-de-vente {
  margin-top: var(--padding-80);
  margin-bottom: var(--padding-80);
}
#processus-de-vente .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#processus-de-vente .container > div:not(:last-child) {
  border-right: 2px dashed #102c57;
}

#telechargements {
  padding-bottom: 32px;
  padding-left: 10%;
  padding-right: 10%;
  width: 100%;
  margin: 0 auto var(--padding-80) auto;
  color: #393939;
  scroll-margin: 150px;
}
#telechargements h2 {
  color: #6e7b8b;
}
#telechargements .download {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 0;
  border-bottom: 1px solid #393939;
}
#telechargements .download:last-of-type {
  border-bottom: none;
}
#telechargements .download span {
  font-family: "CormorantGaramond", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 38px;
  letter-spacing: 0em;
  text-align: left;
  color: #393939;
}
#telechargements .download a {
  display: flex;
  font-family: "CormorantGaramond", sans-serif;
  justify-content: center;
  align-items: center;
  color: #393939;
  font-size: 20px;
  transition: all 0.3s linear;
  text-transform: uppercase;
  border-bottom: 1px solid transparent;
}
#telechargements .download a:hover {
  border-bottom: 1px solid #6e7b8b;
}
#telechargements .download a:hover img {
  transform: rotate(-90deg);
}
#telechargements .download a img {
  transition: all 0.3s linear;
  width: 31px;
  height: 31px;
  -o-object-fit: contain;
  object-fit: contain;
  margin: 0 30px 0 60px;
}

#contact {
  padding-top: var(--padding-80);
  padding-bottom: var(--padding-80);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
#contact .subtitle {
  margin-bottom: 50px;
}
#contact .left {
  width: 43%;
}
#contact .left form .form-flex {
  display: flex;
  text-align: left;
  justify-content: space-between;
  flex-wrap: wrap;
}
#contact .left form .form-flex > div {
  width: 40%;
  margin-bottom: 10px;
}
#contact .left form .form-flex > div:last-of-type {
  width: 100%;
}
#contact .left form .form-flex label {
  font-size: 18px;
  color: #6e7b8b;
  font-weight: 400;
  font-family: "CormorantGaramond", sans-serif;
  margin-bottom: 20px;
}
#contact .left form .form-flex input:not([type="submit"]),
#contact .left form .form-flex textarea {
  background: #f3f0e9;
  outline: none;
  border: 2px solid #f3f0e9;
  font-family: "CormorantGaramond", sans-serif;
  font-size: 18px;
  text-align: left;
  color: #6e7b8b;
  padding: 10px 20px;
  margin-bottom: 30px;
  width: 100%;
  margin-top: 10px;
  background-color: #e3e7e8;
}
#contact .left form .btn {
  color: #f3f0e9;
  background-color: #6e7b8b;
  border-color: #e3e7e8;
  color: #e3e7e8;
  justify-content: center;
}
#contact .left form .btn::after {
  background-image: url("imgs/icons/arrows-light.svg");
}
#contact .left form .btn:hover {
  color: #e3e7e8;
  background-color: transparent;
  border-color: #6e7b8b;
  color: #6e7b8b;
}
#contact .left form .btn:hover::after {
  background-image: url("imgs/icons/arrows.svg");
}
#contact .left form .accept-container {
  display: flex;
  align-items: center;
}
#contact .left form .accept-container input[type="checkbox"] {
  width: 16px;
  height: 16px;
  margin-right: 10px;
  padding: initial;
  margin-bottom: initial;
  accent-color: #f3f0e9;
  border: 1px solid #f3f0e9;
  background-color: #6e7b8b;
  cursor: pointer;
  vertical-align: middle;
  margin-left: 10px;
  outline: none;
}
#contact .left form .accept-container p {
  margin-bottom: 5px;
  line-height: initial;
  font-size: 14px;
  text-transform: uppercase;
  display: inline;
  vertical-align: middle;
}
#contact .right {
  width: 45%;
  height: 610px;
}
#contact .right img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

footer {
  background-color: #102c57;
  padding-top: var(--padding-80);
  padding-bottom: 50px;
}
footer * {
  color: white;
}
footer a {
  transition: all 0.3s linear;
  border: 1px solid transparent;
}
footer a:hover {
  border-bottom: 1px solid #f3f0e9;
}
footer p {
  margin-bottom: initial;
  line-height: initial;
}
footer .acteur {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 50px;
}
footer .acteur > div {
  margin: 0 40px;
}
footer .acteur h3 {
  text-transform: uppercase;
}
footer .acteur .img {
  width: 250px;
  height: 250px;
  border-radius: 50%;
  overflow: hidden;
}
footer .acteur .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
footer hr {
  height: 2px;
}
footer .footer-data {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 50px;
}
footer .footer-data .logo {
  width: 240px;
}
footer .footer-data .logo a:hover {
  border-bottom: 1px solid transparent;
}
footer .footer-data .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
footer .footer-data .social-media {
  margin-top: 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
}
footer .footer-data .social-media a img {
  width: 24px;
  height: 24px;
  filter: invert(1) brightness(1);
}

/******************************/
@media only screen and (max-width: 1600px) {
  .width {
    padding-left: 10%;
    padding-right: 10%;
  }
  #contact .right {
    width: 45%;
  }
  header {
    padding: 35px 0;
  }
}
@media only screen and (max-width: 1300px) {
  .width {
    padding-left: 8%;
    padding-right: 8%;
  }
  .flex {
    padding-top: var(--padding-80);
    padding-bottom: var(--padding-80);
  }
  .no-padding-bottom {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  .no-padding {
    padding-top: 0px;
  }
  #environement .distances .container > div.header .title,
  #environement .distances .container > div.header .distance {
    font-size: 16px;
    line-height: 36px;
  }
  #environement .distances .container > div.data .title,
  #environement .distances .container > div.data .time,
  #environement .distances .container > div.data .distance {
    font-size: 18px;
  }
  #processus-de-vente {
    margin-top: var(--padding-80);
    margin-bottom: var(--padding-80);
  }
  #processus-de-vente .container {
    flex-wrap: wrap;
    justify-content: center;
    align-items: flex-start;
  }
  #processus-de-vente .container > div {
    width: 33%;
    height: 700px;
    margin-bottom: 20px;
  }
  #processus-de-vente .container > div:nth-child(3) {
    border-right: none;
  }
  #processus-de-vente .container > div img {
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
  }
  #telechargements {
    padding-bottom: var(--padding-80);
  }
  #partenaires {
    padding-top: var(--padding-80);
    padding-bottom: var(--padding-80);
  }
  #icons-section .container {
    padding-left: 15%;
    padding-right: 15%;
  }
  #contact {
    padding-top: 50px;
    padding-bottom: var(--padding-80);
  }
  #contact .left form .form-flex > div {
    width: 45%;
    margin-bottom: 10px;
  }
  #contact .btn {
    margin: 50px auto 0 auto;
  }
  footer .acteur .img {
    width: 200px;
    height: 200px;
  }
  footer .footer-data .logo {
    width: 200px;
  }
}
@media only screen and (max-width: 1050px) {
  :root {
    --padding-80: 80px;
  }
  header {
    padding: 30px 0;
  }
  .flex {
    flex-direction: column;
    padding-top: var(--padding-80);
    padding-bottom: var(--padding-80);
  }
  .flex > div.txt,
  .flex > div.img {
    width: 100%;
  }
  .flex > div.txt {
    margin-bottom: 50px;
    order: -1;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  #projet {
    padding-top: var(--padding-80);
  }
  #projet2 .flex .img,
  #projet2 .flex .txt {
    width: 100%;
  }
  #projet2 .flex .img ul,
  #projet2 .flex .txt ul {
    display: flex;
    flex-direction: column;
  }
  #projet2 .flex .img .subtitle,
  #projet2 .flex .txt .subtitle {
    display: block;
    text-align: center;
  }
  #bienvenue .imgs {
    gap: 16px;
  }
  #accueil .logo h1 {
    margin: 0% auto 0 8%;
    font-size: 45px;
  }
  #le-points-forts {
    padding-top: var(--padding-80);
    padding-bottom: 50px;
  }
  #wrap-up {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #icons-section .container {
    padding-left: 10%;
    padding-right: 10%;
  }
  #environement .distances .container > div.data {
    padding: 10px 13% 10px 13%;
  }
  #environement .distances .container > div.header .bus img,
  #environement .distances .container > div.header .car img {
    height: 45px;
  }
  #environement .distances .container > div.header .walk img,
  #environement .distances .container > div.header .bike img {
    height: 25px;
  }
  #processus-de-vente .container > div {
    width: 45%;
    height: 700px;
    margin-bottom: 20px;
  }
  #processus-de-vente .container > div:nth-child(1),
  #processus-de-vente .container > div:nth-child(3),
  #processus-de-vente .container > div:nth-child(5) {
    border-left: 2px dashed #102c57;
  }
  #processus-de-vente .container > div:nth-child(3),
  #processus-de-vente .container > div:nth-child(6) {
    border-right: 2px dashed #102c57;
  }
  #partenaires .container > div img {
    height: 60px;
  }
  #villas .tooltip {
    width: 200px;
  }
  #villas .tooltip .data p {
    font-size: 13px;
  }
  #villas #facade {
    width: 100%;
  }
  #villas .table .villa-info .table-row .th,
  #villas .table .villa-info .table-row .td {
    font-size: 16px;
    padding: 10px 5px;
    width: 16%;
  }
  #visite-virtuelle {
    padding-bottom: 50px;
  }
  #situation .flex .img {
    width: 100%;
  }
  #finitions .flex {
    padding-top: 0;
  }
  #finitions .flex .txt {
    width: 100%;
  }
  #finitions .flex .img {
    width: 100%;
  }
  #contact {
    padding-top: var(--padding-80);
    padding-bottom: var(--padding-80);
    flex-direction: column;
  }
  #contact .left,
  #contact .right {
    width: 100%;
  }
  #contact .right {
    height: auto;
    margin-top: 50px;
  }
}
@media only screen and (max-width: 800px) {
  :root {
    --padding-80: 60px;
  }
  h2 {
    font-size: 28px;
    margin-bottom: 30px;
  }
  .btn {
    font-size: 20px;
  }
  .subtitle,
  h1.title,
  h2.title {
    font-size: 22px;
    line-height: 120%;
    padding-left: 5%;
    padding-right: 5%;
  }
  .btn:after {
    top: 20%;
    right: -45px;
  }
  #accueil .logo h1 {
    margin: 0% auto 0 5%;
    font-size: 40px;
  }
  header {
    padding: 20px 0;
  }
  header > div .nav .contact-nav {
    font-size: 22px;
  }
  header > div nav ul li a {
    font-size: 22px;
  }
  .flex {
    padding-bottom: 40px;
  }
  .flex > div.img {
    height: auto;
  }
  .no-padding-bottom {
    padding-bottom: 0px;
  }
  #icons-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #icons-section .container .icon {
    margin: 20px 0;
  }
  #icons-section .container .icon .img {
    width: 40px;
    height: 40px;
  }
  #icons-section .container .icon .img.bigger {
    width: 50px;
    height: 50px;
  }
  #bienvenue {
    padding-left: 0;
    padding-right: 0;
  }
  #bienvenue h1,
  #bienvenue span {
    padding-left: 8%;
    padding-right: 8%;
  }
  #le-points-forts .container {
    justify-content: space-between;
  }
  #le-points-forts .container .icon {
    width: 45%;
    margin: 30px 0;
  }
  #visite-virtuelle .container .btn {
    font-size: 22px;
  }
  #situation .flex .img {
    height: 450px;
  }
  #galerie .swiper-container-galerie swiper-slide {
    height: 500px;
    max-height: 75vh;
  }
  #galerie .swiper-container-galerie swiper-slide a p {
    font-size: 20px;
  }
  #environement .distances .container > div.header {
    padding: 50px 5% 20px 5%;
  }
  #environement .distances .container > div.header .title,
  #environement .distances .container > div.header .distance {
    line-height: 22px;
    padding: 10px;
    width: 100px;
  }
  #environement .distances .container > div.header .title:first-of-type {
    width: 170px;
    flex-shrink: 0;
  }
  #environement .distances .container > div.data {
    padding: 10px 5% 10px 5%;
  }
  #environement .distances .container > div.data .title,
  #environement .distances .container > div.data .time,
  #environement .distances .container > div.data .distance {
    line-height: 22px;
    padding: 10px;
    width: 170px;
  }
  #environement .distances .container > div.data .title {
    width: 170px;
    flex-shrink: 0;
  }
  #environement .distances .container > div.data .distance {
    display: none;
  }
  #environement .distances .container > div.data:last-of-type {
    padding-bottom: 50px;
  }
  .fullImgSection {
    min-height: initial;
    height: 350px;
  }
  .fullImgSection2 {
    height: 400px;
  }
  #villas {
    padding-bottom: 50px;
  }
  #villas .activeTooltip {
    display: none !important;
  }
  #villas #facade {
    width: 100%;
  }
  #villas .table .villa-info .table-row {
    min-width: 900px;
  }
  #villas .table .villa-info .table-row .th,
  #villas .table .villa-info .table-row .td {
    min-width: 100px;
  }
  #contact form {
    margin-top: 50px;
  }
  #partenaires {
    padding-bottom: 0;
  }
  #partenaires .container > div {
    width: 100%;
    margin: 30px 0;
  }
  #processus-de-vente .container > div {
    width: 45%;
    height: 600px;
  }
  footer .acteur > div {
    margin: 0 20px;
  }
  footer .acteur > div * {
    text-align: center;
  }
  footer .footer-data {
    flex-direction: column;
  }
  footer .footer-data .social-media {
    justify-content: center;
    margin-top: 10px;
  }
  footer .footer-data > div,
  footer .footer-data .logo {
    width: 100%;
    text-align: center;
    margin-bottom: 20px;
  }
  footer .footer-data > div p,
  footer .footer-data .logo p {
    text-align: center;
  }
  footer .footer-data > div img,
  footer .footer-data .logo img {
    width: 200px;
  }
}
@media only screen and (max-width: 620px) {
  :root {
    --padding-80: 50px;
  }
  .width {
    padding-left: 8%;
    padding-right: 8%;
  }
  header {
    padding: 10px 0;
  }
  header > div nav {
    width: 100%;
  }
  header > div .nav .contact-nav {
    display: none;
  }
  h1 {
    font-size: 42px;
    line-height: 52px;
  }
  .subtitle,
  h1.title,
  h2.title {
    font-size: 22px;
  }
  h3 {
    font-size: 22px;
    line-height: initial;
  }
  .btn {
    margin-left: 0;
    width: 240px;
  }
  #pastille {
    width: 120px;
    height: 120px;
  }
  #pastille p {
    font-size: 16px;
  }
  #accueil {
    background-position: center;
  }
  #accueil .logo h1 {
    margin: 0% auto 0 5%;
    font-size: 35px;
  }
  .flex {
    padding-top: var(--padding-80);
    padding-bottom: var(--padding-80);
  }
  .no-padding {
    padding-top: 0;
  }
  .no-padding-bottom {
    padding-top: 0;
    padding-bottom: 0;
  }
  h2 {
    font-size: 26px;
  }
  #le-points-forts .container .icon .img {
    height: 60px;
    margin: 0 auto 20px auto;
    width: auto;
  }
  #icons-section .container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    padding-top: 30px;
    padding-bottom: 30px;
  }
  #icons-section .container .icon .txt span {
    font-size: 20px;
  }
  #finitions {
    padding-top: 0px;
  }
  .fullImgSection,
  .fullImgSection2 {
    min-height: initial;
  }
  #galerie {
    padding-bottom: 150px;
  }
  #galerie .swiper-container-galerie::part(button-prev),
  #galerie .swiper-container-galerie::part(button-next) {
    width: 70px;
    height: 70px;
    left: 16px;
    bottom: -90px;
  }
  #galerie .swiper-container-galerie::part(button-next) {
    right: 16px;
    left: auto;
  }
  #visite-virtuelle .container:before {
    right: -6%;
    width: 80px;
    height: 20px;
  }
  #visite-virtuelle .container:after {
    left: -6%;
    width: 80px;
    height: 20px;
  }
  #environement .distances .container > div.data .title,
  #environement .distances .container > div.data .time,
  #environement .distances .container > div.data .distance {
    width: 100px;
  }
  #environement .distances .container > div .time {
    width: 100px;
  }
  #environement .distances .container > div.header .title:first-of-type {
    width: 100px;
    word-wrap: break-word;
  }
  #environement .distances .container > div.data .title {
    width: 100px;
    flex-shrink: 0;
  }
  #villas {
    padding-top: var(--padding-80);
    padding-bottom: var(--padding-80);
  }
  #telechargements .download span {
    width: 50%;
  }
  #processus-de-vente {
    margin-top: var(--padding-80);
    margin-bottom: var(--padding-80);
  }
  #processus-de-vente .container > div {
    height: 400px;
  }
  #bienvenue .imgs img {
    height: 250px;
  }
  #partenaires .container > div img {
    height: 60px;
  }
  #telechargements {
    padding-bottom: var(--padding-80);
  }
  #visite-virtuelle .container .btn {
    font-size: 20px;
    padding: 5px;
    width: 200px;
  }
  #contact {
    padding-top: var(--padding-80);
    padding-bottom: var(--padding-80);
  }
  #contact h2 {
    text-align: center;
  }
  #contact .left form .form-flex {
    flex-wrap: wrap;
  }
  #contact .left form .form-flex > div {
    width: 100%;
    margin-bottom: 0px;
  }
  #contact .accept-container p {
    font-size: 14px;
    margin-bottom: 10px;
  }
  footer {
    padding-top: 50px;
    padding-bottom: 10px;
  }
  footer .acteur {
    flex-direction: column;
  }
  footer .acteur .img {
    order: 1;
    margin-top: 30px;
  }
}
@media only screen and (max-width: 450px) {
  #accueil .logo {
    top: 50px;
  }
}
@media only screen and (max-width: 380px) {
  h2 {
    font-size: 22px;
  }
  header {
    padding: 0px 0;
  }
  header.active {
    padding: 0;
  }
  #accueil .logo h1 {
    margin: 0% auto 0 5%;
    font-size: 28px;
  }
  #projet {
    padding-top: var(--padding-80);
  }
  #projet2 h2 {
    padding-top: var(--padding-80);
  }
  #icons-section .container .icon .img {
    margin-right: 22px;
  }
  #le-points-forts {
    padding-top: var(--padding-80);
    padding-bottom: 50px;
  }
  #le-points-forts .container .icon {
    width: 100%;
    margin: 20px 0;
  }
  #situation .flex .img {
    height: 350px;
  }
  #environement .distances h2 {
    padding-bottom: 10px;
  }
  #icons-section .container {
    margin-left: 0;
  }
  #processus-de-vente .container > div {
    width: 100%;
    height: 600px;
    border-left: 2px dashed #102c57;
    border-right: 2px dashed #102c57;
  }
  #telechargements .download span,
  #telechargements .download a {
    font-size: 18px;
    line-height: 22px;
  }
  #contact form .form-flex .left > div {
    width: 100%;
    margin-bottom: 5px;
  }
}
@media only screen and (max-width: 805px) and (orientation: landscape) {
  header > div nav.active {
    right: 0;
    overflow-y: scroll;
  }
  header > div nav ul li {
    margin: 5px;
  }
  header > div nav ul li a {
    font-size: 20px;
  }
  h1 {
    font-size: 26px;
    line-height: 44px;
  }
} /*# sourceMappingURL=style.css.map */
