@font-face {
  font-family: "Mangro";
  src: url("fonts/Mangro.woff") format("woff"), url("fonts/Mangro.ttf") format("truetype"), url("fonts/Mangro.otf") format("opentype");
  font-weight: normal;
  font-style: normal;
}
/***************************************************************/
/*** MAIN ******************************************************/
/***************************************************************/
* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

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

section {
  scroll-margin: 50px;
}

a,
span {
  display: inline-block;
  font-family: "Lato", sans-serif;
}

a {
  text-decoration: none;
  cursor: pointer;
  color: #8d99ae;
}

li {
  list-style-type: none;
  margin-bottom: 6px;
}

li,
p,
a {
  font-family: "Lato", sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 140%;
}

.txt {
  text-align: justify;
  max-width: 55ch;
}

p {
  text-align: justify;
}

h1,
h2,
h3,
h4 {
  font-family: "Mangro", sans-serif;
  letter-spacing: 1px;
}

h1 {
  font-size: 46px;
  max-width: 36ch;
  margin-bottom: 30px;
  line-height: 110%;
  color: #1c2541;
  font-weight: 300;
}

h2 {
  font-weight: 300;
  font-size: 32px;
  margin-bottom: 50px;
  line-height: 110%;
  color: #254463;
  text-transform: uppercase;
  position: relative;
}
h2:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 60%;
  border-bottom: 2px solid #254463;
  -o-border-image: linear-gradient(to left, #edf2f4, #8d99ae, #254463) 1;
     border-image: linear-gradient(to left, #edf2f4, #8d99ae, #254463) 1;
}

h3 {
  font-size: 24px;
  margin-bottom: 30px;
  line-height: 110%;
  max-width: 55ch;
  font-weight: 300;
}

h4 {
  font-size: 20px;
  line-height: 110%;
  max-width: 55ch;
  font-weight: 300;
}

img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  display: block;
  max-height: 85vh;
}
img.zoom {
  cursor: zoom-in;
}

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

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

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

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

#loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: #edf2f4;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading img {
  height: 30vh;
  -o-object-fit: contain;
     object-fit: contain;
}

#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.5);
  transition-duration: 0.6s;
}
#succes > div {
  text-align: center;
  font-size: 16px;
  z-index: 1;
  color: #8d99ae;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 60px;
  line-height: 1.2;
  position: relative;
}
#succes.active {
  display: flex;
}
#succes.hidden {
  visibility: hidden !important;
  opacity: 0 !important;
}

.width {
  padding: 0 10%;
  margin: 0 auto;
  display: flex;
}

.close {
  position: absolute;
  cursor: pointer;
  top: 0;
  right: 0;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 32px;
  color: #8d99ae;
  z-index: 9999;
}

.close-small-form {
  position: absolute;
  cursor: pointer;
  top: 4%;
  right: 10%;
  background: none;
  border: none;
  width: 30px;
  height: 30px;
  font-size: 32px;
  color: #fff;
  z-index: 9999;
  line-height: 1;
}

.imgShow {
  cursor: pointer;
}

/***************************************************************/
/*** BUTTONS ***************************************************/
/***************************************************************/
.btn {
  font-family: "Mangro", sans-serif;
  letter-spacing: 1px;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 1;
  display: inline-block;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 16px 32px;
  transition: all 0.6s linear;
  cursor: pointer;
  text-transform: uppercase;
  position: relative;
  width: -moz-max-content;
  width: max-content;
  border: 1px solid #254463;
  color: #254463;
  margin-top: 50px;
  position: relative;
  z-index: 3;
}

.btn-anim:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  z-index: -2;
}
.btn-anim:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #254463;
  transition: all 0.5s;
  z-index: -1;
}
.btn-anim:hover {
  color: #edf2f4;
}
.btn-anim:hover:before {
  width: 100%;
}

/***************************************************************/
/*** HEADER ***************************************************/
/***************************************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 10px 0;
  z-index: 99;
  transition: all 0.6s linear;
}
header .width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .width > div {
  width: 33%;
}
header .width > div.menu nav {
  transition: all 0.8s linear;
  position: fixed;
  top: 0%;
  left: -100%;
  background-color: #1c2541;
  padding: 50px;
  width: 40%;
  flex-direction: column;
  align-items: center;
  height: 100dvh;
}
header .width > div.menu nav ul {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
}
header .width > div.menu nav ul li {
  margin-bottom: 30px;
  width: 100%;
  text-align: center;
}
header .width > div.menu nav ul li a {
  font-size: 22px;
  color: #fff;
  font-weight: bold;
}
header .width > div.menu nav ul li a:hover:after {
  width: 100%;
}
header .width > div.menu nav ul li a:after {
  content: "";
  display: block;
  width: 0;
  border-bottom: 1px solid #8d99ae;
  transition: width 0.5s;
}
header .width > div.menu nav.active {
  display: flex;
  transition: all 0.8s linear;
  top: 0;
  left: 0;
}
header .width > div.menu .burger {
  display: flex;
  align-items: center;
  position: relative;
  z-index: 88;
  justify-content: flex-start;
}
header .width > div.menu .burger p {
  margin-left: 10px;
  font-size: 22px;
  color: #1c2541;
  transition: all 0.6s linear;
  display: block;
  opacity: 1;
  line-height: initial;
}
header .width > div.menu .burger p.active {
  opacity: 0;
}
header .width > div.menu .burger #menu-btn {
  cursor: pointer;
  border: none;
  transition: all 0.3s linear;
  background-color: transparent;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #1c2541;
  border-radius: 50%;
}
header .width > div.menu .burger #menu-btn.active {
  transition: all 2s linear;
}
header .width > div.menu .burger #menu-btn.active span {
  background-color: transparent;
  width: 30px;
}
header .width > div.menu .burger #menu-btn.active span::before {
  transform: translateY(-8px) rotate(-45deg);
  background-color: #fff;
  width: 30px;
}
header .width > div.menu .burger #menu-btn.active span::after {
  transform: translateY(8px) rotate(45deg);
  background-color: #fff;
  width: 30px;
}
header .width > div.menu .burger #menu-btn span,
header .width > div.menu .burger #menu-btn span::before,
header .width > div.menu .burger #menu-btn span::after {
  content: "";
  width: 30px;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #fff;
}
header .width > div.menu .burger #menu-btn span::before {
  top: 8px;
  transition: all 0.3s linear;
}
header .width > div.menu .burger #menu-btn span::after {
  bottom: 8px;
  transition: all 0.3s linear;
}
header .width > div.logo {
  width: 180px;
  z-index: 999;
  height: 100%;
  margin-right: 50px;
}
header .width > div.logo a {
  width: 100%;
  height: 100%;
}
header .width > div.logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: all 0.6s linear;
}
header .width > div.contact {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 34%;
}
header .width > div.contact a.tel {
  font-size: 18px;
  display: block;
  cursor: pointer;
  transition: all 0.6s linear;
  position: relative;
  z-index: 88;
  color: #254463;
}
header .width > div.contact a.tel:hover:after {
  width: 100%;
  border-color: #1c2541;
}
header .width > div.contact a.tel:after {
  content: "";
  display: block;
  width: 0;
  border-bottom: 1px solid #8d99ae;
  transition: width 0.5s;
}
header .width > div.contact .mail {
  margin-left: 30px;
  position: relative;
  z-index: 88;
}
header .width > div.contact .mail .icons {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .width > div.contact .mail .icons button,
header .width > div.contact .mail .icons a {
  background: transparent;
  border: none;
  margin-right: 10px;
  cursor: pointer;
  background-color: #254463;
  border-radius: 50%;
  padding: 10px;
}
header .width > div.contact .mail .icons button img,
header .width > div.contact .mail .icons a img {
  transition: all 0.6s linear;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .width > div.contact .mail .icons a {
  background-color: #fff;
}
header .width > div.contact .mail .icons img {
  transition: all 0.6s linear;
  width: 20px;
  height: 20px;
  -o-object-fit: contain;
     object-fit: contain;
}
header .width > div.contact .mail .icons img:hover {
  transform: scale(1.1);
}
header .width > div.small-form {
  position: fixed;
  right: -200%;
  top: 0;
  width: 40%;
  background-color: #1c2541;
  height: 100vh;
  z-index: 33;
  transition: all 1.3s linear;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 5%;
}
header .width > div.small-form h2 {
  color: #fff;
}
header .width > div.small-form h2::after {
  -o-border-image: linear-gradient(to right, #edf2f4, #8d99ae, #254463) 1;
     border-image: linear-gradient(to right, #edf2f4, #8d99ae, #254463) 1;
}
header .width > div.small-form p {
  font-size: 20px;
  color: #fff;
  font-weight: 300;
  max-width: 40ch;
}
header .width > div.small-form form {
  margin-top: 50px;
}
header .width > div.small-form form > div {
  margin: 10px 0;
}
header .width > div.small-form form > div input {
  background-color: transparent;
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #8d99ae;
  color: #fff;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
header .width > div.small-form form > div input::-moz-placeholder {
  color: #fff;
}
header .width > div.small-form form > div input::placeholder {
  color: #fff;
}
header .width > div.small-form.active {
  right: 0;
  transition: all 1.3s linear;
}
header.active {
  padding: 5px 0;
  background-color: #edf2f4;
}
header.active .width > div.contact .mail .icons button img {
  width: 20px !important;
  height: 20px !important;
}
header.active .whatsapp img {
  width: 20px !important;
  height: 20px !important;
}

/***************************************************************/
/*** ACCUEIL ***************************************************/
/***************************************************************/
#accueil {
  height: 58.1977326163vw;
  max-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
#accueil:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
}
#accueil .width {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  height: auto;
  width: -moz-max-content;
  width: max-content;
  margin-left: 0;
  flex-direction: column;
  width: 100%;
  padding: 20px 10% 100px 10%;
  background-color: rgba(0, 0, 0, 0.5);
  margin-top: auto;
}
#accueil .width h1 {
  color: #fff;
}
#accueil .width p {
  font-size: 22px;
  color: #fff;
  max-width: 55ch;
}

/***************************************************************/
/*** ICONS SECTION ***************************************************/
/***************************************************************/
#icons {
  background-color: #254463;
  padding-top: 100px;
  padding-bottom: 100px;
}
#icons .width {
  padding-left: 5%;
  padding-right: 5%;
  display: flex;
  align-items: flex-start;
  justify-content: space-around;
}
#icons .width > div {
  width: -moz-max-content;
  width: max-content;
  text-align: center;
}
#icons .width > div img {
  width: 60px;
  margin: 0 0 40px 0;
}
#icons .width > div p,
#icons .width > div a {
  color: #fff;
  font-size: 16px;
}
#icons .width > div p span,
#icons .width > div a span {
  color: #fff;
  font-size: 22px;
  text-transform: uppercase;
  display: block;
  margin-bottom: 10px;
}

#projet {
  background-color: #edf2f4;
  padding-top: 150px;
  padding-bottom: 150px;
}
#projet .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#projet .width .txt {
  width: 35%;
}
#projet .width .txt h2 {
  color: #254463;
  text-transform: uppercase;
  position: relative;
}
#projet .width .txt h2:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 60%;
  border-bottom: 1px solid #254463;
}
#projet .width .txt p {
  color: #1c2541;
  margin-bottom: 10px;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 16px;
}
#projet .width .imgShow {
  width: 60%;
  height: 850px;
}
#projet .width .imgShow img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

#situation {
  background-color: #fff;
  padding-top: 150px;
  padding-bottom: 150px;
}
#situation .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#situation .width .txt {
  width: 35%;
}
#situation .width .txt .cta {
  width: 300px;
}
#situation .width .txt h2 {
  color: #254463;
  text-transform: uppercase;
  position: relative;
}
#situation .width .txt h2:after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 60%;
  border-bottom: 1px solid #254463;
}
#situation .width .txt p {
  color: #1c2541;
  margin-bottom: 10px;
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 16px;
}
#situation .width .img {
  width: 60%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
#situation .width .img > div {
  width: 100%;
  margin: 1%;
  height: 100%;
  transition: all 0.6s linear;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
#situation .width .img > div:after {
  content: "";
  background-color: rgba(255, 255, 255, 0.2);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.6s linear;
  background-image: url(imgs/icons/full-screen.png);
  background-size: 50px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  background-repeat: no-repeat;
}
#situation .width .img > div img {
  transition: all 0.6s linear;
}
#situation .width .img > div:hover:after {
  opacity: 1;
}
#situation .width .img > div:hover img {
  transform: scale(1.1);
}
#situation .table-wrapper {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 50px;
  padding-top: 100px;
  position: relative;
}
#situation .table-wrapper .item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
#situation .table-wrapper .item .icon {
  width: 40px;
  height: 40px;
  margin-bottom: 24px;
}
#situation .table-wrapper .item .info {
  font-weight: bold;
}
#situation .table-wrapper::after {
  content: "";
  position: absolute;
  top: 240px;
  left: 0;
  display: block;
  height: 1px;
  width: 100%;
  background-color: #8d99ae;
}
#situation .table-wrapper::before {
  content: "";
  position: absolute;
  top: 240px;
  left: 0;
  display: none;
  height: 1px;
  width: 100%;
  background-color: #8d99ae;
}
#situation .table-wrapper .line {
  position: absolute;
  top: 548px;
  left: 0;
  display: none;
  height: 1px;
  width: 100%;
  background-color: #8d99ae;
}

#fullMap {
  background-color: #edf2f4;
  padding-bottom: 150px;
  padding-top: 150px;
}
#fullMap .width {
  position: relative;
}
#fullMap .width .main {
  width: 100%;
  height: 850px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#fullMap .width .main img {
  width: auto;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#fullMap .width .extras {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 5%;
}
#fullMap .width .extras > div {
  width: 200px;
  margin: 30px 0;
  height: 200px;
  border-radius: 50%;
  cursor: pointer;
  transition: all 0.8s linear;
}
#fullMap .width .extras > div img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#fullMap .width .extras > div:hover {
  transform: scale(1.2);
}

#environnement {
  background-color: white;
  padding-top: 150px;
  padding-bottom: 150px;
}
#environnement .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#environnement .width .txt {
  width: 35%;
}
#environnement .width .txt p {
  font-family: "Lato", sans-serif;
  font-weight: 300;
  font-size: 16px;
  margin-bottom: 12px;
}
#environnement .width .img {
  width: 55%;
  height: auto;
}
#environnement .width .img > div {
  height: 100%;
  width: 100%;
}
#environnement .width .img > div img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}

#appartements {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #edf2f4;
}
#appartements .width {
  flex-direction: column;
}
#appartements .width .title {
  width: 100%;
}
#appartements .width .title .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#appartements .width .title .container .left {
  width: 100%;
}
#appartements .width .title .container .right {
  width: 50%;
}
#appartements .width .title p {
  max-width: 95ch;
  margin-bottom: 12px;
  font-size: 16px;
}
#appartements .width .title .prix-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 100px 0;
}
#appartements .width .title .prix-container > div {
  width: 25%;
  border-left: 10px solid #254463;
  -o-border-image: linear-gradient(to bottom, #edf2f4, #8d99ae, #254463) 1;
     border-image: linear-gradient(to bottom, #edf2f4, #8d99ae, #254463) 1;
}
#appartements .width .title .prix-container > div h3 {
  margin-bottom: 10px;
  margin-left: 40px;
}
#appartements .width .title .prix-container > div h4 {
  margin-left: 40px;
}
#appartements .width .table-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#appartements .width .table-section .img {
  width: 44%;
}
#appartements .width .table-section .table {
  width: 50%;
}
#appartements .width .table-section .table .selection {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  margin-bottom: 30px;
}
#appartements .width .table-section .table .selection p {
  font-family: "Lato", sans-serif;
  color: #254463;
  font-size: 16px;
  border-bottom: 2px solid #254463;
  transition: all 0.6s linear;
  cursor: pointer;
  padding: 5px 10px;
  font-weight: 400;
}
#appartements .width .table-section .table .selection p.active {
  background-color: #254463;
  color: #edf2f4;
}
#appartements .width .table-section .table .selection p:hover {
  background-color: #254463;
  color: #edf2f4;
}
#appartements .width .table-section .table table {
  width: 100%;
  display: none;
}
#appartements .width .table-section .table table.active {
  display: inline-table;
  width: 100%;
}
#appartements .width .table-section .table table#table-0.active ~ div.legend .commerces {
  display: block;
}
#appartements .width .table-section .table table tr.border {
  position: relative;
}
#appartements .width .table-section .table table tr.border::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  display: block;
  background-color: #1c2541;
}
#appartements .width .table-section .table table tr th,
#appartements .width .table-section .table table tr td {
  font-family: "Lato", sans-serif;
  text-align: left;
  padding: 10px;
  font-size: 14px;
}
#appartements .width .table-section .table table tr td a {
  color: #1c2541;
  font-family: "Lato", sans-serif;
  font-weight: 500;
  font-size: 14px;
  text-decoration: underline;
  transition: all 0.6s linear;
}
#appartements .width .table-section .table table tr td a:hover {
  color: #254463;
}
#appartements .width .table-section .table table tr td span {
  width: 50%;
  height: 10px;
}
#appartements .width .table-section .table table tr td span.d {
  background-color: green;
}
#appartements .width .table-section .table table tr td span.v {
  background-color: red;
}
#appartements .width .table-section .table table tr td span.r {
  background-color: orange;
}
#appartements .width .table-section .table .parking-table {
  width: 100%;
  display: grid;
  grid-template-columns: 200px 200px 200px;
  margin-top: 50px;
}
#appartements .width .table-section .table .parking-table .table-header .cell span {
  font-family: "ofelia-display", sans-serif;
  text-align: left;
  padding: 10px;
  font-size: 14px;
  font-weight: bold;
}
#appartements .width .table-section .table .parking-table .table-row .cell {
  font-family: "ofelia-display", sans-serif;
  text-align: left;
  padding: 10px;
  font-size: 14px;
}
#appartements .width .table-section .table .legend {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 30px;
  flex-direction: column;
  display: flex;
}
#appartements .width .table-section .table .legend > div {
  width: 100%;
  display: flex;
}
#appartements .width .table-section .table .legend > div div {
  width: 20%;
  margin: 10px;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  display: flex;
}
#appartements .width .table-section .table .legend > div div.d {
  border-bottom: 4px solid green;
}
#appartements .width .table-section .table .legend > div div.r {
  border-bottom: 4px solid orange;
}
#appartements .width .table-section .table .legend > div div.v {
  border-bottom: 4px solid red;
}
#appartements .width .table-section .table .legend p.commerces {
  display: none;
  align-self: flex-start;
  padding-left: 10px;
  padding-bottom: 10px;
}
#appartements .btn {
  margin-right: auto;
  margin-left: 51%;
}

.telecharger {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: white;
}
.telecharger .width {
  flex-direction: column;
}
.telecharger .width > div {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
.telecharger .width > div .txt {
  width: 35%;
  margin-top: 20px;
}
.telecharger .width > div .txt p {
  font-size: 16px;
  margin-bottom: 12px;
}
.telecharger .width > div .txt .cta {
  width: 350px;
}
.telecharger .width > div .img {
  width: 60%;
  height: auto;
}
.telecharger .width > div.right {
  margin-top: 100px;
}
.telecharger .width:last-of-type {
  margin-top: 150px;
}

/***************************************************************/
/*** GALERIE ***************************************************/
/***************************************************************/
#galerie {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: #8d99ae;
}
#galerie .width {
  flex-direction: column;
}
#galerie .width h2 {
  color: #fff;
}
#galerie .width h2:after {
  -o-border-image: linear-gradient(to left, #8d99ae, #edf2f4) 1;
     border-image: linear-gradient(to left, #8d99ae, #edf2f4) 1;
}
#galerie .width p {
  color: #1c2541;
  font-size: 16px;
  font-family: "Lato", sans-serif;
  max-width: 70ch;
  font-weight: 400;
}
#galerie .galerie-container #roller-galerie {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 50px;
}
#galerie .galerie-container #roller-galerie img {
  width: 32%;
  height: 400px;
  transition: all 1s linear;
  margin-bottom: 30px;
}
#galerie .galerie-container #roller-galerie img:last-child, #galerie .galerie-container #roller-galerie img:nth-child(7) {
  width: 49%;
}
#galerie .galerie-container #roller-galerie img:hover {
  filter: saturate(50%);
  transform: scale(1.1);
  z-index: 1;
}

/***************************************************************/
/*** FULL GALLERY ****************************************************/
/***************************************************************/
.fullGallery,
.fullScreenImg {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #edf2f4;
  transition-duration: 0.5s;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
  transition: all 0.6s linear;
}
.fullGallery .full-img,
.fullScreenImg .full-img {
  position: relative;
}
.fullGallery .full-img .close-btn,
.fullScreenImg .full-img .close-btn {
  position: absolute;
  top: 0em;
  right: 2%;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: #8d99ae;
  z-index: 9999;
  cursor: pointer;
  font-weight: bold;
  background-color: #1c2541;
  border-radius: 50%;
  line-height: 1;
  transition: all 0.6s linear;
}
.fullGallery .full-img .close-btn:hover,
.fullScreenImg .full-img .close-btn:hover {
  background-color: #1c2541;
}
.fullGallery .full-img .gallery-nav-prev,
.fullGallery .full-img .gallery-nav-next,
.fullScreenImg .full-img .gallery-nav-prev,
.fullScreenImg .full-img .gallery-nav-next {
  position: absolute;
  top: 55%;
  width: 55px;
  height: 55px;
  cursor: pointer;
  z-index: 99;
  background-color: #1c2541;
  padding: 10px;
  border-radius: 50%;
  transition: all 0.6s linear;
}
.fullGallery .full-img .gallery-nav-prev:hover,
.fullGallery .full-img .gallery-nav-next:hover,
.fullScreenImg .full-img .gallery-nav-prev:hover,
.fullScreenImg .full-img .gallery-nav-next:hover {
  background-color: #1c2541;
}
.fullGallery .full-img .gallery-nav-next,
.fullScreenImg .full-img .gallery-nav-next {
  right: 3%;
}
.fullGallery .full-img .gallery-nav-prev,
.fullScreenImg .full-img .gallery-nav-prev {
  left: 3%;
}
.fullGallery.active,
.fullScreenImg.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s linear;
  background-size: cover;
}
.fullGallery *,
.fullScreenImg * {
  width: 100%;
  height: 100%;
}
.fullGallery * img,
.fullScreenImg * img {
  -o-object-fit: contain;
  object-fit: contain;
}
.fullGallery img,
.fullScreenImg img {
  transition: all 0.4s linear;
}
.fullGallery img.active,
.fullScreenImg img.active {
  display: block;
}

#acteurs {
  padding-top: 150px;
  padding-bottom: 150px;
}
#acteurs .width {
  width: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}
@keyframes movegradient {
  0% {
    background-position: 0% 0%; /* initial gradient position */
  }
  100% {
    background-position: 0% 200%; /* final gradient position */
  }
}
#acteurs .width > div {
  width: 33%;
  padding: 0 20px;
}
#acteurs .width > div:nth-of-type(2), #acteurs .width > div:nth-of-type(3) {
  margin-top: 21px;
}
#acteurs .width > div h2 {
  margin-bottom: 50px;
  text-align: center;
  font-size: 20px;
}
#acteurs .width > div h2:after {
  width: 100%;
  bottom: -12px;
}
#acteurs .width > div p:not(:first-of-type) {
  text-align: justify;
  font-size: 13px;
}
#acteurs .width > div p.address {
  margin-bottom: 24px;
}
#acteurs .width > div p.address a {
  display: flex;
  text-align: left;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 12px;
  width: -moz-max-content;
  width: max-content;
  font-size: 13px;
}
#acteurs .width > div p.address a:nth-of-type(2) {
  margin-left: 34px;
  position: relative;
  top: -8px;
}
#acteurs .width > div p.address a img {
  width: 20px;
  height: 20px;
  margin-bottom: 0;
  margin-top: 8px;
}
#acteurs .width > div p,
#acteurs .width > div a {
  font-family: "Lato", sans-serif;
  font-size: 16px;
  font-weight: 400;
  color: #1c2541;
  text-align: center;
}
#acteurs .width > div a {
  display: block;
}
#acteurs .width > div a:hover {
  color: #254463;
}
#acteurs .width > div p {
  margin: 10px 20px;
}
#acteurs .width > div:nth-of-type(2) img {
  height: 70px;
  margin-top: 80px;
  margin-bottom: 50px;
}
#acteurs .width > div img {
  height: 100px;
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  display: block;
  text-align: center;
  margin-bottom: 50px;
}
#acteurs .width > div img.smaller {
  height: 80px;
  width: 70%;
  margin: 0 auto;
}

#contact {
  background-color: #edf2f4;
}
#contact .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#contact .container > div {
  width: 50%;
  height: 850px;
}
#contact .container > div.img img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
}
#contact .container > div.form {
  height: 100%;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  padding-left: 10%;
  padding-right: 10%;
}
#contact .container > div.form h2 {
  width: 100%;
}
#contact .container > div.form form {
  margin-top: 100px;
  width: 100%;
}
#contact .container > div.form form > div {
  margin: 10px 0;
}
#contact .container > div.form form > div .btn {
  background-color: #edf2f4;
}
#contact .container > div.form form > div input,
#contact .container > div.form form > div textarea {
  font-family: "Lato", sans-serif;
  background-color: transparent;
  width: 100%;
  outline: none;
  border: none;
  border-bottom: 1px solid #254463;
  color: #254463;
  padding-bottom: 5px;
  margin-bottom: 20px;
}
#contact .container > div.form form > div input::-moz-placeholder, #contact .container > div.form form > div textarea::-moz-placeholder {
  color: #254463;
}
#contact .container > div.form form > div input::placeholder,
#contact .container > div.form form > div textarea::placeholder {
  color: #254463;
}
#contact .container > div.form form > div textarea {
  height: 100px;
}

footer {
  background-color: #1c2541;
  padding: 15px 0;
}
footer .width {
  width: 100%;
  text-align: center;
}
footer .width p.avp,
footer .width p.avp a {
  color: #edf2f4;
  font-family: "Lato", sans-serif;
  font-size: 14px;
  font-weight: 300;
  text-align: center;
  margin: 0 auto;
}
footer .width p.avp a {
  transition: all 0.6s linear;
}
footer .width p.avp a:hover {
  color: #d1865f;
}

/***************************************************************/
/*** MEDIA ***************************************************/
/***************************************************************/
@media only screen and (max-width: 1500px) {
  .width {
    padding: 0 6%;
  }
  .close-small-form {
    top: 4%;
    right: 5%;
  }
  #contact .container > div.form {
    padding-left: 6%;
    padding-right: 6%;
  }
  #icons .width {
    padding-left: 6%;
    padding-right: 6%;
  }
  #icons .width > div p {
    font-size: 16px;
  }
  #icons .width > div p span {
    font-size: 22px;
  }
  #icons .width > div img {
    width: 60px;
  }
  #galerie .galerie-container #roller-galerie {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 1320px) {
  #accueil .width {
    padding: 20px 6% 20px 6%;
  }
  #situation .width .img {
    height: 650px;
  }
  #icons .width > div {
    width: 33%;
  }
  #environnement .width .img {
    height: 650px;
  }
  #appartements {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #appartements .width .title .container .right {
    width: 53%;
    height: 400px;
  }
  #appartements .width .title .prix-container > div h3,
  #appartements .width .title .prix-container > div h4 {
    margin-left: 20px;
  }
  .telecharger {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  #galerie {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #galerie .galerie-container #roller-galerie img {
    height: 220px;
  }
}
@media only screen and (max-width: 1100px) {
  p,
  .txt {
    max-width: initial;
  }
  .close-small-form {
    top: 25px;
    right: 4%;
  }
  header .width > div.logo {
    width: 150px;
    margin-right: 0;
  }
  header .width > div.contact {
    flex-wrap: wrap;
  }
  header .width > div.contact a.tel {
    width: -moz-max-content;
    width: max-content;
    margin-right: 20px;
    text-align: right;
    margin-bottom: 10px;
    font-size: 15px;
  }
  header .width > div.contact .mail {
    margin-left: 0px;
    position: relative;
    margin-bottom: 10px;
    z-index: 88;
  }
  h1 {
    font-size: 32px;
  }
  h3 {
    font-size: 20px;
  }
  header .width > div.menu nav ul li a {
    font-size: 18px;
  }
  #accueil {
    align-items: center;
    min-height: auto;
  }
  #accueil .width {
    background-position: center;
    width: 100%;
  }
  #accueil .width h1 {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #accueil .width p {
    font-size: 18px;
    max-width: 55ch;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #icons {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #icons .width {
    flex-wrap: wrap;
  }
  #icons .width > div {
    width: 45%;
    margin: 20px;
  }
  #icons .width > div img {
    margin: 0 auto 40px auto;
  }
  #icons .width > div p {
    text-align: center;
  }
  #projet {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  #projet .width {
    flex-wrap: wrap;
  }
  #projet .width .img,
  #projet .width .txt {
    width: 100%;
  }
  #projet .width .imgShow {
    margin-top: 50px;
    width: 100%;
    height: 550px;
  }
  #projet2 {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  #projet2 .width .img img {
    width: 200px;
  }
  #situation {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  #situation .width {
    flex-wrap: wrap;
  }
  #situation .width .img {
    width: 100%;
    height: auto;
    margin-top: 40px;
  }
  #situation .width .txt {
    width: 100%;
    order: -1;
  }
  #situation .table-wrapper {
    padding-top: 80px;
    grid-template-columns: repeat(3, 1fr);
  }
  #situation .table-wrapper::after {
    top: 222px;
  }
  #situation .table-wrapper::before {
    display: block;
    top: 386px;
  }
  #fullMap {
    padding-bottom: 100px;
    padding-top: 100px;
  }
  #fullMap .width .extras {
    flex-direction: row;
    align-items: center;
    justify-content: center;
    width: 100%;
    top: -150px;
    transform: translateY(0%);
    right: initial;
    left: 0;
  }
  #fullMap .width .extras > div {
    width: 150px;
    margin: 30px;
    height: 150px;
  }
  #fullMap .width .main {
    width: 100%;
    height: auto;
    margin-top: 50px;
  }
  #fullMap .width .main img {
    max-width: 90vw;
  }
  #environnement {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #environnement .width {
    flex-wrap: wrap;
  }
  #environnement .width .txt,
  #environnement .width .img {
    width: 100%;
  }
  #environnement .width .img {
    margin-top: 40px;
    height: auto;
  }
  #appartements .cta {
    margin-left: initial;
  }
  #appartements .width .title .container {
    flex-wrap: wrap;
  }
  #appartements .width .title .container .left {
    width: 100%;
    margin-bottom: 40px;
  }
  #appartements .width .title .container .right {
    width: 100%;
    height: auto;
  }
  #appartements .width .title .prix-container {
    margin-top: 70px;
    margin-bottom: 70px;
  }
  #appartements .width .title .prix-container > div h3,
  #appartements .width .title .prix-container > div h4 {
    font-size: 18px;
  }
  #appartements .width .table-section {
    flex-wrap: wrap;
  }
  #appartements .width .table-section .img,
  #appartements .width .table-section .table {
    width: 100%;
  }
  #appartements .width .table-section .img {
    width: 100%;
  }
  #appartements .btn {
    margin-left: 1%;
  }
  .telecharger {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .telecharger .width > div {
    flex-wrap: wrap;
  }
  .telecharger .width > div .img {
    width: 100%;
    height: auto;
  }
  .telecharger .width > div .txt {
    width: 100%;
    order: -1;
    margin-bottom: 50px;
  }
  .telecharger .width:last-of-type {
    margin-top: 50px;
  }
  #galerie .galerie-container #roller-galerie {
    margin-top: 10px;
  }
  #galerie .galerie-container #roller-galerie img {
    height: 320px;
    margin-bottom: 10px;
  }
  .fullGallery .full-img .gallery-nav-prev,
  .fullGallery .full-img .gallery-nav-next,
  .fullScreenImg .full-img .gallery-nav-prev,
  .fullScreenImg .full-img .gallery-nav-next {
    top: 85%;
  }
  #acteurs {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #acteurs .width {
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  #acteurs .width > div {
    width: 100%;
    padding: 0 20px;
    margin: 40px 0;
  }
  #acteurs .width > div p.address {
    max-width: 200px;
    margin-left: auto;
    margin-right: auto;
  }
  #acteurs .width > div h2 {
    margin-bottom: 50px;
    height: auto;
    font-size: 26px;
  }
  #acteurs .width > div img {
    margin: 0 auto !important;
  }
  #acteurs .width > div img.smaller {
    height: 60px;
    margin: 0 auto;
  }
  #contact .container > div {
    height: 700px;
  }
  #contact .container > div.form form {
    margin-top: 30px;
  }
}
@media only screen and (max-width: 800px) {
  .close-small-form {
    top: 90px;
    right: 8%;
  }
  header .width > div.menu .burger p {
    display: none;
  }
  header .width > div.menu nav {
    width: 100%;
  }
  header .width > div.menu nav ul {
    padding-top: 50px;
  }
  header .width > div.menu nav ul li a {
    font-size: 20px;
  }
  header .width > div.small-form {
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
  }
  header .width > div.contact a.tel {
    white-space: nowrap;
    font-size: 13px;
  }
  h1 {
    font-size: 30px;
    line-height: 100%;
  }
  h2 {
    margin-bottom: 50px;
  }
  h2:after {
    width: 100%;
  }
  #loading img {
    height: auto;
    width: 200px;
    -o-object-fit: contain;
    object-fit: contain;
  }
  #icons {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #icons .width > div {
    width: 100%;
    margin: 20px;
  }
  #icons .width > div p {
    margin-left: auto;
    margin-right: auto;
  }
  #icons .width > div img {
    width: 60px;
    margin: 0 auto 20px auto;
  }
  #accueil {
    background-position: center top;
    align-items: flex-end;
    height: calc(58.1977326163vw + 200px);
    background-size: contain;
  }
  #accueil .width {
    padding-bottom: 0px;
    background-color: white;
    padding: 40px 5%;
  }
  #accueil .width h1,
  #accueil .width p {
    color: #1c2541;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
  }
  #projet {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  #projet .width .img > div {
    height: 150px;
    width: 48%;
  }
  #projet2 {
    padding-bottom: 40px;
    padding-top: 60px;
  }
  #projet2 .width {
    flex-wrap: wrap;
  }
  #projet2 .width .txt {
    width: 100%;
  }
  #projet2 .width .img {
    width: auto;
    margin: 0 auto 60px auto;
  }
  #situation {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  #environnement {
    padding-bottom: 80px;
    padding-top: 80px;
  }
  #fullMap .width .extras {
    top: -83px;
  }
  #fullMap .width .extras > div {
    width: 100px;
    margin: 10px;
    height: 100px;
  }
  #appartements {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  #appartements .width .title .prix-container {
    flex-wrap: wrap;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  #appartements .width .title .prix-container > div {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
  }
  #appartements .width .title .prix-container > div h3,
  #appartements .width .title .prix-container > div h4 {
    width: 45%;
  }
  #appartements .width .table-section .img {
    width: 100%;
  }
  #appartements .width .table-section .table {
    overflow-x: auto;
  }
  #appartements .width .table-section .table table tr th,
  #appartements .width .table-section .table table tr td,
  #appartements .width .table-section .table table tr td a {
    font-size: 11px;
  }
  #appartements .width .table-section .table .selection p {
    font-size: 14px;
  }
  .cta {
    font-size: 18px;
  }
  .telecharger {
    padding-bottom: 60px;
    padding-top: 60px;
  }
  .telecharger .width > div {
    width: 100%;
    flex-direction: column;
  }
  .telecharger .width > div.right {
    margin-top: 50px;
  }
  .telecharger .width > div .img {
    width: 100%;
  }
  .telecharger .width > div .txt {
    order: -1;
    padding-bottom: 0px;
    width: 100%;
  }
  #galerie {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #galerie .width p {
    font-size: 16px;
  }
  #galerie .galerie-container #roller-galerie {
    margin-top: 0;
  }
  #galerie .galerie-container #roller-galerie img {
    width: 49% !important;
    height: 250px;
    transition: all 0.6s linear;
  }
  #galerie .galerie-container #roller-galerie img:last-child {
    width: 100%;
  }
  #contact .container {
    flex-wrap: wrap;
  }
  #contact .container .form {
    width: 100%;
    padding: 80px 5%;
  }
  #contact .container .img {
    width: 100%;
    height: auto;
  }
}
@media only screen and (max-width: 640px) {
  .close-small-form {
    top: 43px;
    right: 3%;
  }
  header .width > div.contact {
    flex-direction: column;
  }
  header .width > div.contact a.tel {
    margin-right: 0;
  }
  #situation .table-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  #situation .table-wrapper .line {
    display: block;
  }
  #situation .table-wrapper .info {
    text-align: center;
  }
}
@media only screen and (max-width: 520px) {
  .close-small-form {
    top: 43px;
    right: 1%;
  }
  #accueil {
    height: calc(58.1977326163vw + 260px);
  }
}
@media only screen and (max-width: 400px) {
  .close-small-form {
    top: 90px;
    right: 8%;
  }
  h1 {
    font-size: 22px;
    line-height: 100%;
  }
  h2 {
    font-size: 22px;
  }
  header .width > div.logo {
    width: 120px;
    margin-left: auto;
  }
  header .width > div.contact {
    position: absolute;
    bottom: -75vh;
    right: 6px;
    background-color: #edf2f4;
    width: -moz-max-content;
    width: max-content;
    border-radius: 50%;
  }
  header .width > div.contact .mail {
    margin-bottom: 0;
  }
  header .width > div.contact .mail .icons button {
    display: none;
  }
  header .width > div.contact .mail .icons a {
    margin-right: 0;
  }
  header .width > div.contact .mail .icons img {
    width: 30px !important;
    height: 30px !important;
  }
  header .width > div.contact a.tel {
    display: none;
  }
  header .width > div.contact .small-form {
    padding-top: 100px;
    overflow-y: scroll;
  }
  header .width > div.contact .small-form p {
    font-size: 16px;
  }
  header .width > div.menu .burger #menu-btn {
    width: 35px;
    height: 35px;
  }
  header .width > div.menu .burger #menu-btn span,
  header .width > div.menu .burger #menu-btn span::after,
  header .width > div.menu .burger #menu-btn span::before {
    width: 20px;
  }
  header .width > div.menu nav {
    padding: 100px 5% 50px 5%;
  }
  header .width > div.menu nav ul li a {
    font-size: 18px;
  }
  #accueil {
    height: calc(58.1977326163vw + 190px);
  }
  #icons .width > div {
    margin: 20px;
  }
  #projet .width .txt .cta,
  #situation .width .txt .cta {
    width: 260px;
  }
  #projet2 .width .img img {
    width: 130px;
  }
  #fullMap .width .extras > div {
    width: 100px;
    margin: 1px;
    height: 100px;
  }
  #environnement .width .txt .distances > div {
    margin: 20px 0;
  }
  #environnement .width .txt .distances > div span {
    margin-right: 20px;
  }
  #appartements .cta {
    width: 280px;
    margin-left: auto;
  }
  #appartements .width .title .prix-container > div h3,
  #appartements .width .title .prix-container > div h4 {
    font-size: 15px;
    width: 45%;
  }
  #galerie .galerie-container #roller-galerie img {
    width: 50%;
    height: 200px;
    transition: all 0.6s linear;
  }
  #acteurs {
    padding-top: 40px;
    padding-bottom: 40px;
  }
  #acteurs .width > div {
    padding: 0;
  }
  #acteurs .width > div img.smaller {
    width: 80%;
  }
}/*# sourceMappingURL=style.css.map */