.message {
  min-height: 100vh;
}
.message section {
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 8%;
  text-align: center;
}
.message section * {
  color: #2f6141;
}
.message section h2 {
  margin-bottom: 40px;
}
.message section .icon-sent {
  width: 250px;
  margin: 30px auto;
}
.message section .icon-sent img {
  width: 100%;
  height: 100%;
  filter: brightness(0) invert(1);
}

.error404 {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100dvh;
  text-align: center;
}
.error404 * {
  font-family: 'dunbar-tall', sans-serif;
}
.error404 #e404 {
  font-size: 32px;
  margin-bottom: 30px;
}
.error404 h2 {
  font-size: 36px !important;
}
.error404 p {
  margin-top: 30px;
}

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

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

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

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

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

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

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

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

#succes {
  display: none;
}

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

h1,
h2 {
  font-family: 'dunbar-tall', sans-serif;
  color: #2f6141;
  text-align: left;
}

h1 {
  font-size: 62px;
  font-weight: 500;
  line-height: 111%;
  letter-spacing: 0em;
  margin-bottom: 30px;
  max-width: 40ch;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  font-size: 42px;
  font-weight: 100;
  line-height: 52px;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase;
  display: inline-flex;
  position: relative;
  width: auto;
}
h2:after {
  content: '';
  background-image: url('imgs/logos/logo-accent.png');
  background-size: contain;
  background-position: center;
  width: 100px;
  height: 100px;
  position: absolute;
  opacity: 0.5;
  right: -30%;
  transform: rotate(120deg);
  top: -50px;
  z-index: 9;
  background-repeat: no-repeat;
}

a {
  text-decoration: none;
}

a,
p,
li,
span {
  font-family: 'Jost', sans-serif;
  color: #1b261f;
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
}

span {
  display: inline-block;
}

.subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-align: left;
  text-transform: uppercase;
  color: #2f6141;
  display: block;
}

p {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  letter-spacing: 0em;
  text-align: left;
}

.telechargement {
  position: fixed;
  top: 150px;
  right: -80px;
  z-index: 99;
  background-color: #2f6141;
  padding: 10px 20px;
  cursor: pointer;
  transform: rotate(90deg);
  transition: all 0.3s linear;
}
.telechargement:hover {
  padding: 30px 20px 10px 20px;
}
.telechargement a {
  color: #fafafa;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.telechargement a img {
  width: 20px;
  margin-left: 20px;
}

.btn-effect {
  display: block;
  font-size: 16px;
  background-color: #5f6762;
  border: 1px solid #5f6762;
  color: #fafafa;
  transition: all 0.3s linear;
  padding: 10px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  text-transform: uppercase;
  transition: all 0.3s linear;
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.btn-effect img {
  transition: all 0.3s linear;
  width: 18px;
  margin-left: 30px;
  height: 22px;
  -o-object-fit: contain;
  object-fit: contain;
}
.btn-effect:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #5f6762;
  z-index: -2;
}
.btn-effect:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-color: #fafafa;
  transition: all 0.3s;
  z-index: -1;
}
.btn-effect:hover {
  color: #2f6141;
}
.btn-effect:hover:before {
  width: 100%;
}
.btn-effect:hover img {
  filter: invert(1);
  opacity: 0.7;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 20px 0;
  z-index: 99;
  transition: all 0.3s linear;
}
header .width {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .width .logo {
  height: 80px;
  position: relative;
  z-index: 9;
}
header .width .logo a img {
  transition: all 0.5s linear;
  height: 100%;
  width: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
header .width nav {
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.4s linear;
}
header .width nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  list-style-type: none;
}
header .width nav ul li {
  margin: 0 25px;
}
header .width nav ul li a {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  color: #2f6141;
  font-weight: 400;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: left;
  text-transform: uppercase;
  transition: all 0.5s;
  position: relative;
  transition: all 0.3s linear;
}
header .width nav ul li a:hover {
  color: #2f6141;
  border-bottom: 1px solid #2f6141;
}
header.active {
  padding: 10px 0;
  background-color: #fafafa;
}
header.active .logo {
  transition: all 0.3s linear;
  height: 50px;
}
header.active nav ul li a {
  font-size: 14px;
}

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

#accueilPage .mainSection {
  height: 100vh;
  background-position: center;
  background-size: cover;
  position: relative;
}
#accueilPage .mainSection:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  background-color: rgba(255, 255, 255, 0.3);
}
#accueilPage .mainSection .width {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100vh;
  width: 100%;
  position: relative;
  z-index: 2;
}
#accueilPage .mainSection .bottom-txt {
  background-color: #1b261f;
  position: absolute;
  bottom: 10px;
  width: 800px;
  right: 13%;
  padding: 25px 50px 25px 80px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#accueilPage .mainSection .bottom-txt * {
  color: #fafafa;
  font-family: 'Jost', sans-serif;
}
#accueilPage .mainSection .bottom-txt .title {
  width: 25%;
  border-right: 0.01em solid #fafafa;
}
#accueilPage .mainSection .bottom-txt .title span {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 20px;
}
#accueilPage .mainSection .bottom-txt .title h3 {
  font-family: 'dunbar-tall', sans-serif;
  font-size: 22px;
  font-weight: 400;
  line-height: 24px;
}
#accueilPage .mainSection .bottom-txt .detail {
  width: 28%;
  padding: 0 20px;
  margin-top: 10px;
}
#accueilPage .mainSection .bottom-txt .detail * {
  font-family: 'Jost', sans-serif;
}
#accueilPage .mainSection .bottom-txt .detail span {
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 10px;
  line-height: 20px;
}
#accueilPage .mainSection .bottom-txt .detail p {
  font-size: 14px;
  font-weight: 300;
  line-height: 18px;
  letter-spacing: 0em;
  text-align: left;
}
#accueilPage .appartements {
  padding-top: 150px;
}
#accueilPage .appartements .width {
  margin-bottom: 80px;
}
#accueilPage .appartements .container {
  padding-left: 13%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#accueilPage .appartements .container .img-btn {
  width: 40%;
}
#accueilPage .appartements .container .img-btn img {
  height: 600px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#accueilPage .appartements .container .img-btn .btn-effect {
  background-color: transparent !important;
  margin-top: 30px;
  width: 220px;
  border: 1px solid #5f6762;
  color: #5f6762;
}
#accueilPage .appartements .container .img-btn .btn-effect:after {
  background-color: transparent;
}
#accueilPage .appartements .container .img-btn .btn-effect:before {
  background-color: #5f6762;
}
#accueilPage .appartements .container .img-btn .btn-effect img {
  height: 100%;
  width: 18px;
}
#accueilPage .appartements .container .img-btn .btn-effect:hover {
  color: #fafafa;
}
#accueilPage .appartements .container .img-btn .btn-effect:hover img {
  filter: brightness(0) invert(1);
}
#accueilPage .appartements .container .txt-img {
  width: 55%;
}
#accueilPage .appartements .container .txt-img p {
  margin-right: 25%;
  margin-bottom: 70px;
}
#accueilPage .appartements .container .txt-img .btn-effect {
  margin-top: 40px;
  width: 340px;
}
#accueilPage .appartements .container .txt-img .btn-effect img {
  height: 100%;
  width: 20px;
}
#accueilPage .appartements .container .txt-img img {
  height: 700px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#accueilPage .icon-section {
  background-color: #f2f3f2;
  padding-top: 170px;
  padding-bottom: 170px;
  text-align: center;
  margin-top: -80px;
}
#accueilPage .icon-section * {
  color: #2f6141;
}
#accueilPage .icon-section .width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
#accueilPage .icon-section .width > div {
  text-align: center;
  width: 33%;
  margin: 20px 0;
}
#accueilPage .icon-section .width > div span {
  font-weight: 700;
  font-size: 80px;
  line-height: 109px;
  font-family: 'Jost', sans-serif;
  color: #2f6141;
  margin-bottom: 0px;
}
#accueilPage .icon-section .width > div p {
  font-weight: 600;
  font-size: 18px;
  position: relative;
  text-align: center;
  color: #2f6141;
  padding-top: 20px;
}
#accueilPage .icon-section .width > div p:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 1px;
  width: 40px;
  background-color: #2f6141;
}
#accueilPage .fullImg2 {
  height: 700px;
  width: 100%;
}
#accueilPage .fullImg2 img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.contactSection {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-right: 13%;
  height: 1000px;
}
.contactSection > div.img {
  width: 55%;
  height: 100%;
}
.contactSection > div.img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
.contactSection > div.form {
  width: 40%;
  padding-top: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.contactSection > div.form .title {
  margin-bottom: 40px;
  text-align: left;
}
.contactSection > div .form-container {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 100px;
}
.contactSection > div .form-container form {
  width: 100%;
}
.contactSection > div .form-container form > div input,
.contactSection > div .form-container form > div textarea {
  padding: 16px 0;
  color: #2f6141;
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: left;
  outline: none;
  border: none;
  border-bottom: 1px solid #2f6141;
  background-color: transparent;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.contactSection > div .form-container form > div textarea {
  min-height: 150px;
}
.contactSection > div .form-container form > div.submit {
  margin-top: 40px;
}

#client-section {
  padding-top: 80px;
  padding-bottom: 80px;
  background-color: #f2f3f2;
}
#client-section hr {
  height: 1px;
}
#client-section .client {
  width: 100%;
  margin: 50px 0;
}
#client-section .client p {
  color: #1b261f;
  margin: 10px 0;
  max-width: 100ch;
}
#client-section .client ul {
  margin: 40px 0;
}
#client-section .client ul li {
  margin-left: 20px;
}
#client-section .client .btn-effect {
  width: 320px;
  margin-top: 50px;
  margin-bottom: 50px;
}
#client-section .client .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#client-section .client .container > div {
  width: 25%;
  margin-top: 20px;
}
#client-section .client .container > div img {
  width: 75%;
  height: 100%;
  object-fit: contain;
}

#client-section .client .container > div p {
  margin-bottom: initial;
  line-height: initial;
}
#client-section .client .container > div a {
  transition: all 0.3s linear;
}
#client-section .client .container > div a:hover {
  text-decoration: underline;
}

/***************************************************************/
/*** BROCHURE PDF *************************************************/
/***************************************************************/
#plan-telecharger,
#plan-telecharger2,
#brochure-telecharger {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1005;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  visibility: hidden;
}
#plan-telecharger.active,
#plan-telecharger2.active,
#brochure-telecharger.active {
  visibility: visible;
  opacity: 1;
}
#plan-telecharger form,
#plan-telecharger2 form,
#brochure-telecharger form {
  padding: 60px;
  background-color: #fafafa;
}
#plan-telecharger form #brochure-form > div,
#plan-telecharger form #plan-form > div,
#plan-telecharger form #plan-form2 > div,
#plan-telecharger2 form #brochure-form > div,
#plan-telecharger2 form #plan-form > div,
#plan-telecharger2 form #plan-form2 > div,
#brochure-telecharger form #brochure-form > div,
#brochure-telecharger form #plan-form > div,
#brochure-telecharger form #plan-form2 > div {
  margin-bottom: 32px;
  display: flex;
  flex-direction: column;
}
#plan-telecharger form #brochure-form > div label,
#plan-telecharger form #brochure-form > div input,
#plan-telecharger form #brochure-form > div textarea,
#plan-telecharger form #plan-form > div label,
#plan-telecharger form #plan-form > div input,
#plan-telecharger form #plan-form > div textarea,
#plan-telecharger form #plan-form2 > div label,
#plan-telecharger form #plan-form2 > div input,
#plan-telecharger form #plan-form2 > div textarea,
#plan-telecharger2 form #brochure-form > div label,
#plan-telecharger2 form #brochure-form > div input,
#plan-telecharger2 form #brochure-form > div textarea,
#plan-telecharger2 form #plan-form > div label,
#plan-telecharger2 form #plan-form > div input,
#plan-telecharger2 form #plan-form > div textarea,
#plan-telecharger2 form #plan-form2 > div label,
#plan-telecharger2 form #plan-form2 > div input,
#plan-telecharger2 form #plan-form2 > div textarea,
#brochure-telecharger form #brochure-form > div label,
#brochure-telecharger form #brochure-form > div input,
#brochure-telecharger form #brochure-form > div textarea,
#brochure-telecharger form #plan-form > div label,
#brochure-telecharger form #plan-form > div input,
#brochure-telecharger form #plan-form > div textarea,
#brochure-telecharger form #plan-form2 > div label,
#brochure-telecharger form #plan-form2 > div input,
#brochure-telecharger form #plan-form2 > div textarea {
  font-family: 'Jost', sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-align: left;
}
#plan-telecharger form #brochure-form > div label,
#plan-telecharger form #plan-form > div label,
#plan-telecharger form #plan-form2 > div label,
#plan-telecharger2 form #brochure-form > div label,
#plan-telecharger2 form #plan-form > div label,
#plan-telecharger2 form #plan-form2 > div label,
#brochure-telecharger form #brochure-form > div label,
#brochure-telecharger form #plan-form > div label,
#brochure-telecharger form #plan-form2 > div label {
  color: rgba(57, 57, 57, 0.3);
}
#plan-telecharger form #brochure-form > div input,
#plan-telecharger form #plan-form > div input,
#plan-telecharger form #plan-form2 > div input,
#plan-telecharger2 form #brochure-form > div input,
#plan-telecharger2 form #plan-form > div input,
#plan-telecharger2 form #plan-form2 > div input,
#brochure-telecharger form #brochure-form > div input,
#brochure-telecharger form #plan-form > div input,
#brochure-telecharger form #plan-form2 > div input {
  border: none;
  color: #1b261f;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid rgba(57, 57, 57, 0.3);
}
#plan-telecharger form #brochure-form button,
#plan-telecharger form #plan-form button,
#plan-telecharger form #plan-form2 button,
#plan-telecharger2 form #brochure-form button,
#plan-telecharger2 form #plan-form button,
#plan-telecharger2 form #plan-form2 button,
#brochure-telecharger form #brochure-form button,
#brochure-telecharger form #plan-form button,
#brochure-telecharger form #plan-form2 button {
  font-family: 'Jost', sans-serif;
  font-size: 16px;
  font-weight: 600;
  transition: all 0.3s linear;
  border-radius: 100px;
  line-height: 24px;
  text-align: center;
  cursor: pointer;
  padding: 20px 42px;
}
#plan-telecharger form #brochure-form button.annuler,
#plan-telecharger form #plan-form button.annuler,
#plan-telecharger form #plan-form2 button.annuler,
#plan-telecharger2 form #brochure-form button.annuler,
#plan-telecharger2 form #plan-form button.annuler,
#plan-telecharger2 form #plan-form2 button.annuler,
#brochure-telecharger form #brochure-form button.annuler,
#brochure-telecharger form #plan-form button.annuler,
#brochure-telecharger form #plan-form2 button.annuler {
  color: rgba(57, 57, 57, 0.3);
  border: 1px solid rgba(57, 57, 57, 0.3);
}
#plan-telecharger form #brochure-form button.annuler:hover,
#plan-telecharger form #plan-form button.annuler:hover,
#plan-telecharger form #plan-form2 button.annuler:hover,
#plan-telecharger2 form #brochure-form button.annuler:hover,
#plan-telecharger2 form #plan-form button.annuler:hover,
#plan-telecharger2 form #plan-form2 button.annuler:hover,
#brochure-telecharger form #brochure-form button.annuler:hover,
#brochure-telecharger form #plan-form button.annuler:hover,
#brochure-telecharger form #plan-form2 button.annuler:hover {
  border: 1px solid #2f6141;
  color: #2f6141;
}
#plan-telecharger form #brochure-form button.btn-telecharger,
#plan-telecharger form #plan-form button.btn-telecharger,
#plan-telecharger form #plan-form2 button.btn-telecharger,
#plan-telecharger2 form #brochure-form button.btn-telecharger,
#plan-telecharger2 form #plan-form button.btn-telecharger,
#plan-telecharger2 form #plan-form2 button.btn-telecharger,
#brochure-telecharger form #brochure-form button.btn-telecharger,
#brochure-telecharger form #plan-form button.btn-telecharger,
#brochure-telecharger form #plan-form2 button.btn-telecharger {
  color: #fafafa;
  border: 1px solid #2f6141;
  background-color: #2f6141;
  cursor: pointer;
}
#plan-telecharger form #brochure-form button.btn-telecharger:hover,
#plan-telecharger form #plan-form button.btn-telecharger:hover,
#plan-telecharger form #plan-form2 button.btn-telecharger:hover,
#plan-telecharger2 form #brochure-form button.btn-telecharger:hover,
#plan-telecharger2 form #plan-form button.btn-telecharger:hover,
#plan-telecharger2 form #plan-form2 button.btn-telecharger:hover,
#brochure-telecharger form #brochure-form button.btn-telecharger:hover,
#brochure-telecharger form #plan-form button.btn-telecharger:hover,
#brochure-telecharger form #plan-form2 button.btn-telecharger:hover {
  border: 1px solid #1b261f;
  background-color: #1b261f;
}

#plan-downloaded,
#plan-downloaded2,
#brochure-downloaded {
  display: none;
}

#projetPage .mainSection {
  padding-top: 250px;
  padding-bottom: 250px;
}
#projetPage .mainSection .width .title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
#projetPage .mainSection .width .title > div:first-child {
  width: 70%;
}
#projetPage .mainSection .width .title > div:first-child h2 {
  margin-bottom: initial;
}
#projetPage .mainSection .width .title > div:first-child h2:after {
  right: -12%;
}
#projetPage .mainSection .img {
  position: relative;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
}
#projetPage .mainSection .img .boxes {
  position: absolute;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  width: 100%;
  padding: 0 13%;
}
#projetPage .mainSection .img .boxes .box {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  background-color: #fafafa;
  padding: 20px;
  margin: 16px 0;
  width: 250px;
  text-align: left;
}
#projetPage .mainSection .img .boxes .box img {
  margin-right: 40px;
}
#projetPage .mainSection .img .boxes .box p {
  font-size: 16px;
  font-weight: 600;
  line-height: 20px;
  max-width: 15ch;
  color: #2f6141;
}
#projetPage .mainSection .img .txt-bottom {
  position: absolute;
  bottom: -220px;
  left: 13%;
  background-color: #fafafa;
  padding: 46px 75px;
}
#projetPage .mainSection .img .txt-bottom p {
  max-width: 73ch;
}
#projetPage .mainSection .img .txt-bottom p span {
  white-space: nowrap;
}
#projetPage #benefits {
  padding-bottom: 150px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#projetPage #benefits .img {
  width: 50%;
  height: auto;
  overflow: hidden;
}
#projetPage #benefits .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  animation: scale 25s linear infinite alternate-reverse;
}
#projetPage #benefits .benefits {
  width: 45%;
}
#projetPage #benefits .benefits .container .box .visible {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 20px 0;
  transition: all 0.3s linear;
  padding-right: 20%;
}
#projetPage #benefits .benefits .container .box .visible .icon {
  margin-right: 40px;
  width: 60px;
  height: 60px;
  -o-object-fit: contain;
  object-fit: contain;
}
#projetPage #benefits .benefits .container .box .visible h3 {
  text-align: left;
  font-family: 'dunbar-tall', sans-serif;
  font-weight: 400;
  font-size: 32px;
  text-transform: capitalize;
  display: flex;
  align-items: center;
  justify-content: center;
}
#projetPage #benefits .benefits .container .box .visible h3 img {
  height: 40px;
  margin-left: 30px;
}
#projetPage .appartements {
  padding-top: 0px;
  padding-bottom: 150px;
}
#projetPage .appartements .width {
  margin-bottom: 10px;
}
#projetPage .appartements .container {
  padding-left: 13%;
  padding-right: 13%;
  margin-top: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#projetPage .appartements .container .img-btn {
  width: 55%;
}
#projetPage .appartements .container .img-btn img {
  height: 500px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#projetPage .appartements .container .txt-img {
  width: 40%;
}
#projetPage .appartements .container .txt-img .btn-effect {
  margin-top: 50px;
  border: 1px solid #5f6762;
  background-color: transparent;
  color: #5f6762;
  width: 220px;
}
#projetPage .appartements .container .txt-img .btn-effect:after {
  background-color: transparent;
}
#projetPage .appartements .container .txt-img .btn-effect:before {
  background-color: #5f6762;
}
#projetPage .appartements .container .txt-img .btn-effect:hover {
  color: #fafafa;
}
#projetPage .appartements .container .txt-img .btn-effect:hover:before {
  width: 100%;
}
#projetPage .appartements .container .txt-img .btn-effect:hover img {
  filter: brightness(0) invert(1);
  opacity: 0.7;
}

#situationPage .main-section {
  padding-top: 250px;
}
#situationPage .main-section .width .title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
#situationPage .main-section .width .title > div:first-child {
  width: 70%;
}
#situationPage .main-section .width .title > div:first-child h2 {
  margin-bottom: initial;
}
#situationPage .main-section .panorama-container {
  position: relative;
}
#situationPage .main-section .panorama-container .icon-360 {
  width: 85px;
  position: absolute;
  right: 5px;
  top: 5px;
  opacity: 50%;
}
#situationPage .main-section .img {
  position: relative;
  background-position: center;
  background-size: cover;
  width: 100%;
  height: 813px;
}
#situationPage .main-section .img .txt-bottom {
  position: absolute;
  bottom: -150px;
  left: 13%;
  background-color: #fafafa;
  padding: 46px 75px;
}
#situationPage .main-section .img .txt-bottom p {
  max-width: 73ch;
}
#situationPage .map-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 150px;
  padding-top: 150px;
  padding-right: 13%;
  background-color: #ffffff;
}
#situationPage .map-section .map {
  width: 70%;
}
#situationPage .map-section .map .map-btns {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 50px auto 0 auto;
}
#situationPage .map-section .map .map-btns button {
  width: 54px;
  height: 32px;
  background-color: transparent;
  border: 1px solid #2f6141;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s linear;
  margin: 0 20px;
}
#situationPage .map-section .map .map-btns button:hover {
  background-color: #2f6141;
}
#situationPage .map-section .map .map-btns button:hover img {
  filter: brightness(0) invert(1);
}
#situationPage .map-section .map .map-btns span {
  margin-right: 40%;
}
#situationPage .map-section .map .map-container img {
  display: none;
  height: 700px;
  -o-object-fit: contain;
  object-fit: contain;
  opacity: 0;
}
#situationPage .map-section .map .map-container img.active {
  display: block;
  opacity: 1;
}
#situationPage .map-section .txt {
  width: 40%;
  position: relative;
  z-index: 2;
  padding-left: 5%;
}
#situationPage .map-section .txt h2 {
  margin-bottom: 40px;
}
#situationPage .map-section .txt p {
  margin-bottom: 40px;
}
#situationPage .map-section .txt .btn-effect {
  width: 280px;
}
#situationPage .map-section .txt .btn-effect:hover img {
  filter: initial;
}
#situationPage .map-section .txt .btn-effect img {
  width: 22px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
#situationPage .containerStock {
  padding-top: 150px;
  padding-bottom: 150px;
  padding-left: 13%;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#situationPage .containerStock h2 {
  margin-bottom: 40px;
}
#situationPage .containerStock p {
  max-width: 60ch;
}
#situationPage .containerStock .img-btn {
  width: 40%;
}
#situationPage .containerStock .img-btn h2 {
  margin-top: 100px;
}
#situationPage .containerStock .img-btn img {
  height: 600px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#situationPage .containerStock .img-btn .btn-effect {
  background-color: transparent !important;
  margin-top: 40px;
  width: 220px;
  border: 1px solid #5f6762;
  color: #5f6762;
}
#situationPage .containerStock .img-btn .btn-effect:after {
  background-color: transparent;
}
#situationPage .containerStock .img-btn .btn-effect:before {
  background-color: #5f6762;
}
#situationPage .containerStock .img-btn .btn-effect img {
  height: 100%;
  width: 22px;
}
#situationPage .containerStock .img-btn .btn-effect:hover {
  color: #fafafa;
}
#situationPage .containerStock .img-btn .btn-effect:hover img {
  filter: brightness(0) invert(1);
}
#situationPage .containerStock .txt-img {
  width: 55%;
}
#situationPage .containerStock .txt-img p {
  margin-right: 25%;
  margin-bottom: 70px;
}
#situationPage .containerStock .txt-img img {
  height: 700px;
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
#situationPage .fullImage img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#situationPage .icons-section {
  padding-top: 150px;
  padding-bottom: 150px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
#situationPage .icons-section .title {
  width: 100%;
  text-align: center;
  margin: 0 auto 30px auto;
}
#situationPage .icons-section .icon {
  width: 33%;
  text-align: center;
  margin: 50px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
}
#situationPage .icons-section .icon .img {
  height: 50px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#situationPage .icons-section .icon .img img {
  width: 40px;
  -o-object-fit: contain;
  object-fit: contain;
  display: block;
}
#situationPage .icons-section .icon .img-bigger img {
  width: 50px;
}
#situationPage .icons-section .icon a {
  font-size: 20px;
  text-align: center;
  font-family: 'dunbar-tall', sans-serif;
  transition: all 0.3s linear;
}
#situationPage .icons-section .icon a:hover {
  color: #58d370;
}
#situationPage .distances-section {
  padding-top: 150px;
  padding-bottom: 150px;
  background-color: white;
}
#situationPage .distances-section .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#situationPage .distances-section .container .txt {
  width: 25%;
}
#situationPage .distances-section .container .txt h3 {
  font-family: 'dunbar-tall', sans-serif;
  color: #2f6141;
  font-size: 22px;
  margin-top: 20px;
  margin-bottom: 20px;
}
#situationPage .distances-section .container .txt a {
  display: block;
  transition: all 0.3s linear;
}
#situationPage .distances-section .container .txt a:hover {
  color: #2f6141;
}
#situationPage .distances-section .container table {
  width: 65%;
  text-align: center;
  margin-top: 50px;
}
#situationPage .distances-section .container table * {
  font-family: 'Jost', sans-serif;
}
#situationPage .distances-section .container table tr {
  padding: 20px;
  height: 60px;
}
#situationPage .distances-section .container table tr th {
  padding: 5px 10px;
  width: 30%;
  border-bottom: 10px solid #fafafa;
}
#situationPage .distances-section .container table tr td {
  padding: 5px;
  width: 20%;
  border-bottom: 10px solid #fafafa;
  background-color: #e5e5e5;
}
#situationPage .distances-section .container table tr td img {
  width: 30px;
}
#situationPage .distances-section .container table tr:nth-child(even) th {
  background-color: #2f6141;
  color: #fafafa;
}
#situationPage .distances-section .container table tr:nth-child(odd) th {
  background-color: #58d370;
  color: #1b261f;
}
#situationPage .distances-section .container table tr.thead th,
#situationPage .distances-section .container table tr.thead td {
  background-color: transparent;
}

#plansSection {
  position: relative;
}
#plansSection.width {
  padding: 0 10%;
}
#plansSection .main-section {
  padding-top: 180px;
  text-align: left;
}
#plansSection .box-section {
  width: 100%;
  margin-top: 50px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#plansSection .box-section * {
  text-align: center;
  color: #1b261f;
  font-family: 'Jost', sans-serif;
  font-size: 16px;
}
#plansSection .box-section > div {
  border: 1px solid #efeff0;
  width: 150px;
  cursor: pointer;
  position: relative;
  z-index: 1;
  padding: 10px 0;
  margin-right: 20px;
  transition: all 0.3s linear;
}
#plansSection .box-section > div:hover,
#plansSection .box-section > div.active {
  background-color: #1b261f;
  color: #efeff0;
}
#plansSection .box-section #revenir {
  font-family: 'Jost', sans-serif;
  display: block;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  visibility: hidden;
  opacity: 0;
  transition: all 0.4s linear;
}
#plansSection .box-section #revenir.active {
  opacity: 1;
  visibility: visible;
}
#plansSection .box-section #revenir p {
  color: white;
}
#plansSection .box-section #revenir:hover p {
  color: #2f6141;
}
#plansSection .box-section #revenir img {
  margin: 0 10px 0 0 !important;
  transform: rotate(90deg);
}
#plansSection .txt-extra {
  margin-top: 50px;
}
#plansSection #masterplan {
  position: relative;
  height: 100%;
  visibility: visible;
}
#plansSection #masterplan.active {
  transition: all 0.3s linear;
  opacity: 0;
  visibility: hidden;
  height: 0;
}
#plansSection #masterplan .compass {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 3%;
  left: 3%;
  background-color: #fafafa;
  border: 1px solid #1b261f;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
#plansSection #masterplan .compass img {
  width: 45px;
  height: 45px;
  padding-right: 5px;
  transform: rotate(-35deg);
}
#plansSection #masterplan .bat-select {
  margin: 50px auto;
  width: 100%;
  transition: all 0.3s linear;
  z-index: 44;
}
#plansSection #masterplan .bat-select .bat {
  cursor: pointer;
  transition: all 0.3s linear;
}
#plansSection #masterplan .bat-select .bat .st0 {
  opacity: 0.3;
  fill: #fafafa;
  stroke-width: 0.5;
  stroke-miterlimit: 10;
  transition: all 0.3s linear;
}
#plansSection #masterplan .bat-select .bat .st0:hover {
  opacity: 0.8;
}
#plansSection #facadeSection {
  align-items: flex-start;
  justify-content: space-between;
  opacity: 0;
  transition: all 0.3s linear;
  visibility: hidden;
  height: 0;
  display: none;
}
#plansSection #facadeSection.active {
  padding-bottom: 50px;
  padding-top: 150px;
  opacity: 1;
  height: auto;
  display: flex;
  visibility: visible;
}
#plansSection #facadeSection .bat-show {
  width: 38%;
}
#plansSection #facadeSection .bat-show .floor {
  transition-duration: 0.3s;
}
#plansSection #facadeSection .bat-show .floor.move {
  transform: translateY(-150px);
}
#plansSection #facadeSection .bat-show .grey {
  fill: #f0f0f1 !important;
  stroke: #000000;
  stroke-width: 0.5;
  stroke-miterlimit: 10;
}
#plansSection #facadeSection .bat-show .window {
  fill: #dff7ff !important;
  stroke: #000000;
  stroke-width: 0.5;
  stroke-miterlimit: 10;
}
#plansSection #facadeSection .bat-show .window polygon {
  fill: #dff7ff !important;
  stroke: #000000;
  stroke-width: 0.5;
  stroke-miterlimit: 10;
}
#plansSection #facadeSection .bat-show .lot {
  cursor: pointer;
  transform: all 1s linear;
}
#plansSection #facadeSection .bat-show .lot polygon {
  fill: white;
  stroke: #000000;
  stroke-width: 0.5;
  opacity: 1;
  stroke-miterlimit: 10;
}
#plansSection #facadeSection .bat-show .lot.active {
  fill: rgb(224, 76, 76);
  background-color: rgb(224, 76, 76);
}
#plansSection #facadeSection .bat-show .lot.active-v * {
  fill: rgb(224, 76, 76);
  background-color: rgb(224, 76, 76);
  cursor: not-allowed;
}
#plansSection #facadeSection .bat-show .lot.active-d * {
  fill: rgb(60, 179, 113);
  background-color: rgb(60, 179, 113);
}
#plansSection #facadeSection .bat-show .lot.active-r * {
  fill: rgb(255, 165, 0);
  cursor: not-allowed;
  background-color: rgb(255, 165, 0);
}
#plansSection #facadeSection .bat-show .lot.v:hover * {
  fill: rgb(224, 76, 76);
  background-color: rgb(224, 76, 76);
  cursor: not-allowed;
}
#plansSection #facadeSection .bat-show .lot.d:hover * {
  fill: rgb(60, 179, 113);
  background-color: rgb(60, 179, 113);
}
#plansSection #facadeSection .bat-show .lot.r:hover * {
  fill: rgb(255, 165, 0);
  cursor: not-allowed;
  background-color: rgb(255, 165, 0);
}
#plansSection #facadeSection .bat-show .d.hover * {
  fill: rgb(60, 179, 113);
  background-color: rgb(60, 179, 113);
}
#plansSection #facadeSection .bat-show .r.hover * {
  fill: rgb(255, 165, 0);
  cursor: not-allowed;
  background-color: rgb(255, 165, 0);
}
#plansSection #facadeSection .bat-show .v.hover * {
  fill: rgb(224, 76, 76);
  cursor: not-allowed;
  background-color: rgb(224, 76, 76);
}
#plansSection #facadeSection .bat-show > div {
  display: none;
}
#plansSection #facadeSection .bat-show > div.active {
  display: block;
}
#plansSection #facadeSection #facade-table {
  width: 60%;
}
#plansSection #facadeSection #facade-table .avp-table {
  width: 100%;
  position: relative;
  z-index: 44;
}
#plansSection #facadeSection #facade-table .avp-table tbody {
  background-color: #fafafa;
}
#plansSection #facadeSection #facade-table .avp-table tbody .d.hover {
  fill: rgba(35, 126, 76, 0.7);
  background-color: rgba(35, 126, 76, 0.7);
  color: white;
}
#plansSection #facadeSection #facade-table .avp-table tbody .r.hover {
  fill: rgba(255, 165, 0, 0.7);
  cursor: not-allowed;
  background-color: rgba(255, 165, 0, 0.7);
}
#plansSection #facadeSection #facade-table .avp-table tbody .v.hover {
  fill: rgba(255, 0, 0, 0.6);
  cursor: not-allowed;
  background-color: rgba(255, 0, 0, 0.6);
}
#plansSection #facadeSection #facade-table .avp-table tbody tr:hover {
  background: rgba(119, 116, 112, 0.5);
}
#plansSection #facadeSection #facade-table .avp-table tbody tr:hover td,
#plansSection #facadeSection #facade-table .avp-table tbody tr:hover th {
  color: white;
}
#plansSection #facadeSection #facade-table .avp-table .column-1 {
  display: none;
}
#plansSection #facadeSection #facade-table .avp-table tr.bat-B3,
#plansSection #facadeSection #facade-table .avp-table tr.bat-B4 {
  display: none;
}
#plansSection #facadeSection #facade-table .avp-table th {
  font-weight: 600;
  font-size: 12px;
  color: #1b261f;
  padding: 10px 5px;
  text-align: center;
  text-transform: capitalize;
  font-family: 'Jost', sans-serif;
  background-color: #f0f0f1;
  border-bottom: 1px solid #f0f0f1;
  cursor: pointer;
}
#plansSection #facadeSection #facade-table .avp-table td {
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  font-family: 'Jost', sans-serif;
  padding: 10px 5px;
  border-bottom: none;
  border-bottom: 1px solid #2f6141;
}
#plansSection #facadeSection #facade-table .avp-table td.column-4 {
  max-width: 8ch;
}
#plansSection #facadeSection #facade-table .btn-container {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
#plansSection #facadeSection #facade-table .btn-container .btn-effect {
  margin: 0 20px;
  border: 1px solid #2f6141;
}
#plansSection #facadeSection #facade-table .btn-container .btn-effect:after {
  background-color: #2f6141;
}
#plansSection #tooltip {
  position: absolute;
  z-index: 99;
  visibility: hidden;
  background-color: #fafafa;
  width: 200px;
  border: 1px solid #1b261f;
}
#plansSection #tooltip th,
#plansSection #tooltip td {
  font-size: 12px;
  text-align: left;
  color: #2f6141;
  font-size: 'Jost', sans-serif;
  padding: 5px 10px !important;
  font-family: 'Jost', sans-serif;
}
#plansSection #tooltip th.column-2,
#plansSection #tooltip td.column-2 {
  font-size: 14px;
  text-transform: uppercase;
}
#plansSection #tooltip th.column-1,
#plansSection #tooltip td.column-1 {
  display: none;
}
#plansSection #tooltip td {
  width: 45%;
}
#plansSection #tooltip th {
  font-weight: bold;
  width: 45%;
  border-right: 1px solid #777470;
}
#plansSection #tooltip .column-0,
#plansSection #tooltip .column-11,
#plansSection #tooltip .column-12,
#plansSection #tooltip .column-18,
#plansSection #tooltip .column-19,
#plansSection #tooltip .column-20 {
  display: none;
}
#plansSection #tooltip .column-2 {
  background-color: #777470;
  color: #fafafa;
}
#plansSection #tooltip .column-2 th {
  border-right: 1px solid #fafafa;
}
#plansSection #tooltip > div {
  opacity: 0;
  transition-duration: 0.2s;
}
#plansSection #tooltip.visible {
  visibility: visible;
}
#plansSection #tooltip.visible > div {
  opacity: 1;
}
#plansSection #lot-container {
  position: fixed;
  top: -100%;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  min-height: 100vh;
  transition-duration: 0.6s;
  transition-delay: 0.6s;
  visibility: hidden;
  overflow-y: scroll !important;
  opacity: 0;
  z-index: 1002;
  background-color: rgba(0, 0, 0, 0.6);
}
#plansSection #lot-container * {
  font-family: 'Jost', sans-serif;
}
#plansSection #lot-container > div {
  background-color: white;
  transform: scale(0.8);
  transition-duration: 0.6s;
  transition-delay: 0s;
  opacity: 0;
}
#plansSection #lot-container.active-lot {
  top: 0%;
  transition-delay: 0s;
  visibility: visible;
  opacity: 1;
  overflow-y: scroll;
  height: 100%;
}
#plansSection #lot-container.active-lot > div {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s;
}
#plansSection #lot-container .row {
  padding: 2% 3%;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: column;
  height: 100%;
  overflow-y: scroll;
}
#plansSection #lot-container .row .lot-data-logo {
  height: 80px;
  margin-bottom: 50px;
}
#plansSection #lot-container .row-container {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
}
#plansSection #lot-container .row-container #lot-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  width: 40%;
  margin: 0 50px;
}
#plansSection #lot-container .row-container #lot-data .avp-table {
  text-align: left !important;
}
#plansSection #lot-container .row-container #lot-data .avp-table .column-1 {
  display: none;
}
#plansSection #lot-container .row-container #lot-data .avp-table th {
  color: #1b261f;
  text-align: left !important;
  font-size: 15px;
  padding-right: 50px;
}
#plansSection #lot-container .row-container #lot-data .avp-table .column-0 {
  display: none;
}
#plansSection #lot-container .row-container #lot-data .avp-table .column-2 {
  font-size: 18px !important;
  background-color: #5f6762;
  color: #fafafa;
}
#plansSection #lot-container .row-container #lot-data .avp-table .column-2 th {
  border-right: 1px solid #fafafa;
}
#plansSection #lot-container .row-container #lot-data th {
  border-right: 1px solid #777470;
}
#plansSection #lot-container .row-container #lot-data td {
  color: #1b261f;
}
#plansSection #lot-container .row-container #lot-data th,
#plansSection #lot-container .row-container #lot-data td {
  padding: 10px;
  width: 50%;
  font-size: 15px !important;
  pointer-events: none;
}
#plansSection #lot-container .row-container .plans {
  width: 65%;
}
#plansSection #lot-container .row-container .plans .lot-png {
  height: 550px;
}
#plansSection #lot-container .row-container .plans .lot-png img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
#plansSection #lot-container .btn-container {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 20px auto;
  width: 100%;
}
#plansSection #lot-container .btn-container .btn-effect {
  margin: 10px;
  text-align: center;
}
#plansSection #lot-container .btn-container .btn360 {
  display: none;
}
#plansSection #lot-container .btn-container .btn360.active {
  display: block;
}
#plansSection #lot-container .btn-container .btn360 img {
  height: 30px;
}
#plansSection #lot-container .btn-container .btn360:hover img {
  filter: none;
}
#plansSection #lot-container .closeFacade {
  position: absolute;
  top: 3%;
  right: 3%;
  font-size: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
#plansSection .h,
#plansSection .h.hidden-in .h {
  transition-duration: 1s;
  visibility: visible;
  opacity: 1;
}
#plansSection .h.hidden,
#plansSection .h.hidden.hidden-in .h {
  visibility: hidden;
  opacity: 0;
}
#plansSection .avp-table tr.hidden {
  display: none;
}

#small-masterplan {
  margin: 40px auto 100px auto;
}
#small-masterplan .img {
  width: 80%;
  margin: 50px auto;
}
#small-masterplan .txt {
  border-top: 1px solid #bcbabb;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 30px;
}
#small-masterplan .txt > div {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#small-masterplan .txt > div .bat {
  border: 1px solid #1b261f;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px;
  margin-right: 20px;
}
#small-masterplan .txt > div .bat span {
  font-family: 'dunbar-tall', sans-serif;
  font-size: 22px;
}
#galeriePage {
  padding-top: 200px;
  padding-bottom: 150px;
}
#galeriePage .img-container {
  margin-top: 50px;
  margin-bottom: 100px;
}
#galeriePage .img-container .gallery-flex {
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
#galeriePage .img-container .gallery-flex:first-child,
#galeriePage .img-container .gallery-flex:nth-child(2),
#galeriePage .img-container .gallery-flex:nth-child(3),
#galeriePage .img-container .gallery-flex:nth-child(4),
#galeriePage .img-container .gallery-flex:nth-child(5),
#galeriePage .img-container .gallery-flex:nth-child(6) {
  margin-bottom: 1em;
}
#galeriePage .img-container .gallery-flex > div {
  overflow: hidden;
}
#galeriePage .img-container .gallery-flex > div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
  transition: all 0.5s linear;
}
#galeriePage .img-container .gallery-flex > div img:hover {
  transform: scale(1.1);
  opacity: 0.8;
}
#galeriePage .img-container .gallery-flex .gallery-flex-1 {
  width: 50%;
}
#galeriePage .img-container .gallery-flex .gallery-flex-2 {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 50%;
  gap: 1em;
}
#galeriePage .img-container .gallery-flex .gallery-flex-2 > div {
  width: 100%;
  overflow: hidden;
  height: 300px;
}

.btn-extra {
  width: 350px;
  margin: 0 auto;
}

#telechargement {
  padding-top: 200px;
  padding-bottom: 150px;
}
#telechargement .container {
  padding-top: 100px;
}
#telechargement .container p b {
  font-size: 22px;
  margin-bottom: 30px;
}
#telechargement .container p {
  max-width: 100ch;
  margin: 20px 0;
}
#telechargement .container p a {
  text-decoration: underline;
}
#telechargement .container .btn-effect {
  width: 300px;
}
#telechargement .container .btn-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

/* fullscreen ***********************************/
.showImg,
.showImg2 {
  cursor: pointer;
  position: relative;
}
.showImg:before,
.showImg2:before {
  content: url('imgs/icons/fullscreen-small.png');
  position: absolute;
  display: block;
  z-index: 1;
  opacity: 0;
  transition: all 0.3s linear;
}
.showImg:hover:before,
.showImg2:hover:before {
  opacity: 0.8;
}

.showImg:before {
  top: 2%;
  right: 2%;
  filter: invert(1);
  background-color: rgba(255, 255, 255, 0.6);
}

.showImg2:before {
  top: 2%;
  right: 2%;
}

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

.fullGallery {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  transition-duration: 0.5s;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
}
.fullGallery .full-img {
  position: relative;
}
.fullGallery .full-img .close-btn {
  position: absolute;
  top: 0em;
  right: 2%;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 20px;
  color: black;
  z-index: 9999;
  cursor: pointer;
  font-weight: bold;
}
.fullGallery .full-img .close-btn img {
  filter: invert(1);
}
.fullGallery .full-img .gallery-nav-prev,
.fullGallery .full-img .gallery-nav-next {
  position: absolute;
  top: 50%;
  width: 60px;
  height: 60px;
  cursor: pointer;
  z-index: 99;
}
.fullGallery .full-img .gallery-nav-next {
  right: 10%;
}
.fullGallery .full-img .gallery-nav-prev {
  left: 10%;
}
.fullGallery.active {
  opacity: 1;
  visibility: visible;
  transition: all 0.4s linear;
}
.fullGallery * {
  width: 100%;
  height: 100%;
}
.fullGallery * img {
  -o-object-fit: contain;
  object-fit: contain;
}
.fullGallery img {
  transition: all 0.4s linear;
}
.fullGallery img.active {
  display: block;
}

.fullImg {
  height: 100vh;
}
.fullImg div {
  background-position: center bottom;
  background-size: cover;
  height: 100%;
  width: 100%;
}

@keyframes scale {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
#contactPage .main-section {
  padding-top: 250px;
}
#contactPage .main-section .width .title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 40px;
}
#contactPage .main-section .width .title > div:first-child {
  width: 70%;
}
#contactPage .main-section .width .title > div:first-child h2 {
  margin-bottom: 20px;
}
#contactPage .main-section .img {
  position: relative;
  background-position: center;
  background-size: cover;
  width: 100%;
  min-height: 100vh;
}
#contactPage .main-section .img .txt-bottom {
  position: absolute;
  bottom: -100px;
  left: 13%;
  background-color: #fafafa;
  padding: 46px 75px;
}
#contactPage .main-section .img .txt-bottom p {
  max-width: 73ch;
}
#contactPage .contactSection {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-right: 13%;
  height: 1100px;
}
#contactPage .contactSection > div.img {
  width: 55%;
  height: 100%;
}
#contactPage .contactSection > div.img img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  height: 100%;
}
#contactPage .contactSection > div.form {
  width: 40%;
  padding-top: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
}
#contactPage .contactSection > div.form .title {
  margin-bottom: 40px;
  text-align: left;
}
#contactPage .contactSection > div.form .client .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#contactPage .contactSection > div.form .client .container > div {
  width: 40%;
  margin-top: 20px;
}
#contactPage .contactSection > div.form .client .container > div.logo {
  width: 200px;
}
#contactPage .contactSection > div.form .client .container > div p {
  margin-bottom: initial;
  line-height: initial;
}
#contactPage .contactSection > div.form .client .container > div a {
  transition: all 0.3s linear;
}
#contactPage .contactSection > div.form .client .container > div a:hover {
  text-decoration: underline;
}
#contactPage .contactSection > div .form-container {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 100px;
}
#contactPage .contactSection > div .form-container form {
  width: 100%;
}
#contactPage .contactSection > div .form-container form > div input,
#contactPage .contactSection > div .form-container form > div textarea {
  padding: 16px 0;
  color: #2f6141;
  width: 100%;
  font-family: 'Jost', sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 23px;
  letter-spacing: 0em;
  text-align: left;
  outline: none;
  border: none;
  border-bottom: 1px solid #2f6141;
  background-color: transparent;
  text-transform: uppercase;
  margin-bottom: 10px;
}
#contactPage .contactSection > div .form-container form > div textarea {
  min-height: 150px;
}
#contactPage .contactSection > div .form-container form > div.submit {
  margin-top: 40px;
}
#contactPage .acteurs {
  padding-top: 150px;
  padding-bottom: 50px;
  background-color: white;
}
#contactPage .acteurs .client {
  width: 100%;
  margin-bottom: 100px;
}
#contactPage .acteurs .client h2 {
  margin-bottom: 50px;
}
#contactPage .acteurs .client p {
  color: #1b261f;
  margin: 10px 0;
  max-width: 100ch;
}
#contactPage .acteurs .client ul {
  margin: 40px 0;
}
#contactPage .acteurs .client ul li {
  margin-left: 20px;
}
#contactPage .acteurs .client .btn-effect {
  width: 320px;
  margin-top: 50px;
  margin-bottom: 50px;
}
#contactPage .acteurs .client .container {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: space-between;
}
#contactPage .acteurs .client .container > div {
  width: 25%;
  margin-top: 20px;
}

#contactPage .acteurs .client .container > div img {
  width: 75%;
  height: 100%;
  object-fit: contain;
}

#contactPage .acteurs .client .container > div p {
  margin-bottom: initial;
  line-height: initial;
}
#contactPage .acteurs .client .container > div a {
  transition: all 0.3s linear;
}
#contactPage .acteurs .client .container > div a:hover {
  text-decoration: underline;
}

footer {
  background-color: #1b261f;
  padding-top: 30px;
  padding-bottom: 30px;
  width: 100%;
}
footer * {
  color: #fafafa;
  text-align: center;
}
footer .avp {
  transition: all 0.3s linear;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-left: 5%;
  padding-right: 5%;
}
footer .avp > div {
  width: 25%;
}
footer .avp > div img {
  width: 100px;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
footer .avp > div.avp-link * {
  font-size: 15px;
}
footer .avp > div.avp-link p {
  max-width: initial;
}
footer .avp > div.avp-link a {
  transition: all 0.3s linear;
  display: block;
}
footer .avp > div.avp-link a:hover {
  text-decoration: underline;
}
footer .avp > div.logos {
  width: 45%;
  display: flex;
  justify-content: space-between;
  align-self: flex-end;
}
footer .avp > div.logos img {
  width: 40%;
  margin: 0 30px;
}
footer .avp > div.logos img {
  width: 180px;
  filter: brightness(0) invert(1);
}
footer .avp > div.logos img.smaller {
  width: 120px;
}

/******************************/
@media only screen and (max-width: 1600px) {
  #loading > div {
    width: 170px;
  }
  .width {
    padding: 0 10%;
  }
  h1 {
    font-size: 58px;
    line-height: 64px;
    margin: 20px;
  }
  #accueilPage .appartements .container {
    padding-left: 10%;
  }
  #projetPage #benefits {
    padding-bottom: 100px;
  }
  #projetPage #benefits .img img {
    height: 600px;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #projetPage .mainSection {
    padding-top: 200px;
    padding-bottom: 200px;
  }
  #projetPage .mainSection .img .boxes {
    padding: 0 10%;
  }
  #projetPage .mainSection .img .txt-bottom {
    left: 10%;
    width: 60%;
    padding: 40px;
    bottom: -200px;
  }
  #projetPage .mainSection .img .txt-bottom p {
    max-width: initial;
  }
  #projetPage .appartements .container {
    padding-left: 10%;
    padding-right: 10%;
  }
  #plansSection.width {
    padding: 0 5%;
  }
  #situationPage .main-section {
    padding-top: 200px;
  }
  #situationPage .map-section {
    padding-right: 10%;
    padding-bottom: 100px;
    padding-top: 100px;
  }
  #situationPage .map-section .map .map-container img {
    -o-object-fit: cover;
    object-fit: cover;
  }
  #situationPage .containerStock {
    padding-left: 10%;
  }
  #galeriePage {
    padding-bottom: 100px;
  }
  .contactSection {
    padding-right: 10%;
  }
  #contactPage .acteurs .client h2 {
    margin-bottom: 50px;
    font-size: 36px;
  }
  #contactPage .acteurs .client .container .logo img {
    width: 200px;
  }
  #client-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #client-section .client p {
    margin: 0;
  }
  #client-section .client .container .logo {
    width: 150px;
    margin-right: 60px;
  }
  #client-section .client .container .logo img {
    width: 100%;
  }
  #plansSection #facadeSection.active {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 1300px) {
  header {
    padding: 25px 0;
  }
  header .width nav ul li {
    margin: 0 12px;
  }
  header .width nav ul li a {
    font-size: 14px;
  }
  h1 {
    font-size: 48px;
    line-height: 54px;
  }
  .btn-effect {
    padding: 10px 20px;
  }
  #accueilPage .mainSection .bottom-txt {
    width: 650px;
    padding: 25px 50px;
    right: 10%;
  }
  #accueilPage .appartements {
    padding-top: 120px;
  }
  #accueilPage .icon-section .width {
    align-items: flex-start;
  }
  #accueilPage .icon-section .width > div {
    width: 28%;
  }
  #projetPage .mainSection {
    padding-top: 150px;
    padding-bottom: 100px;
  }
  #projetPage .mainSection .img {
    min-height: 600px;
  }
  #projetPage .mainSection .img .txt-bottom {
    bottom: -280px;
  }
  #projetPage .mainSection .btn-effect {
    width: 280px;
  }
  #projetPage #benefits {
    margin-top: 200px;
  }
  #projetPage #benefits .benefits .container .box .visible {
    padding: 10px 20% 10px 0;
  }
  #projetPage #benefits .benefits .container .box .visible .icon {
    margin-right: 10px;
  }
  #projetPage #benefits .benefits .container .box .visible h3 {
    font-size: 24px;
  }
  #projetPage .appartements {
    padding-top: 0px;
    padding-bottom: 100px;
  }
  #situationPage .map-section .map .map-container img {
    height: 500px;
  }
  #situationPage .containerStock {
    padding-bottom: 100px;
  }
  #situationPage .distances-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #situationPage .distances-section .container table tr td,
  #situationPage .distances-section .container table tr th {
    font-size: 14px;
  }
  #situationPage .icons-section {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  .contactSection {
    height: 850px;
    padding-right: 5%;
  }
  #client-section .client .container {
    flex-wrap: wrap;
  }
  #client-section .client .container > div {
    width: 50%;
  }
  #client-section .client .container .logo {
    width: 200px;
    margin-right: 0px;
  }
  #galeriePage {
    padding-top: 200px;
    padding-bottom: 0px;
  }
  #galeriePage .img-container .gallery-flex .gallery-flex-2 > div {
    height: 200px;
  }
  #plansSection #facadeSection .bat-show {
    width: 40%;
  }
  #plansSection #facadeSection #facade-table {
    width: 60%;
  }
  #plansSection #facadeSection #facade-table .avp-table th {
    font-weight: 600;
    font-size: 12px;
  }
  #plansSection #facadeSection #facade-table .avp-table th.column-12,
  #plansSection #facadeSection #facade-table .avp-table th.column-11,
  #plansSection #facadeSection #facade-table .avp-table td.column-12,
  #plansSection #facadeSection #facade-table .avp-table td.column-11 {
    border: 2px solid red;
    display: none;
  }
  #plansSection #facadeSection #facade-table .btn-container .btn-effect {
    font-size: 15px;
    padding: 10px 15px;
    margin: 0 10px;
  }
  #plansSection #facadeSection #facade-table .btn-container .btn-effect img {
    margin-left: 10px;
  }
  #plansSection #lot-container .row-container #lot-data .avp-table .column-2 {
    font-size: 16px !important;
  }
  #plansSection #lot-container .row-container #lot-data th,
  #plansSection #lot-container .row-container #lot-data td {
    font-size: 13px !important;
  }
  #telechargement .container .btn-container .btn-effect {
    width: 250px;
  }
}
@media only screen and (max-width: 1050px) {
  header .width nav.active {
    top: 0;
    left: 0;
    transition: all 0.6s linear;
  }
  header .width nav {
    transition: all 0.6s linear;
    position: fixed;
    top: -100%;
    left: 0;
    background-color: #fafafa;
    padding: 50px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 100dvh;
    transition-duration: 0.6s;
  }
  header .width nav ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 100%;
  }
  header .width nav ul li {
    margin-bottom: 30px;
    width: 100%;
    text-align: center;
  }
  header .width nav ul li a {
    font-size: 18px;
  }
  header.active #menu-btn {
    top: 20px;
  }
  #menu-btn {
    display: block;
  }
  h2 {
    font-size: 38px;
    line-height: 42px;
  }
  #accueilPage .appartements .width {
    margin-bottom: 50px;
  }
  #accueilPage .appartements .container .txt-img p {
    margin-right: 20%;
    margin-bottom: 50px;
  }
  #accueilPage .icon-section {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  #accueilPage .icon-section .width > div p {
    font-size: 16px;
  }
  .contactSection {
    flex-direction: column;
    height: auto;
    padding-right: 0;
  }
  .contactSection > div.img {
    height: 600px;
    width: 100%;
  }
  .contactSection > div.form {
    padding-left: 10%;
    padding-right: 10%;
    width: 100%;
    padding-bottom: 0px;
    align-items: flex-start;
  }
  .contactSection > div.form .client .container > div.logo {
    width: 200px;
  }
  #projetPage .mainSection {
    margin-bottom: 200px;
  }
  #projetPage .mainSection .btn-effect {
    width: 310px;
  }
  #projetPage .mainSection .width .title {
    flex-wrap: wrap;
  }
  #projetPage .mainSection .width .title > div:first-child {
    width: 100%;
    margin-bottom: 50px;
  }
  #projetPage .mainSection .img .boxes .box p {
    font-size: 14px;
  }
  #projetPage .mainSection .img .boxes .box img {
    margin-right: 30px;
  }
  #projetPage .mainSection .img .txt-bottom {
    bottom: -280px;
    left: 5%;
    right: 0;
    width: 90%;
  }
  #projetPage #benefits {
    flex-direction: column;
    margin-bottom: 80px;
    padding-bottom: 0;
  }
  #projetPage #benefits .img {
    width: 100%;
  }
  #projetPage #benefits .img img {
    height: 400px;
  }
  #projetPage #benefits .benefits {
    width: 100%;
    margin-top: 40px;
    padding-left: 10%;
    padding-right: 10%;
  }
  #projetPage #benefits .benefits .container .box .visible {
    padding: 15px 0% 15px 0;
  }
  #projetPage .appartements .container {
    flex-direction: column;
  }
  #projetPage .appartements .container .img-btn,
  #projetPage .appartements .container .txt-img {
    width: 100%;
  }
  #projetPage .appartements .container .img-btn img {
    height: 450px;
    margin-bottom: 40px;
  }
  #situationPage .icons-section .icon {
    width: 30%;
  }
  #situationPage .icons-section .icon a {
    font-size: 16px;
  }
  #contactPage .contactSection {
    flex-direction: row;
  }
  #contactPage .contactSection > div.img {
    height: 1100px;
    width: 60%;
  }
  #contactPage .contactSection > div.form {
    padding-left: 5%;
    padding-right: 0%;
    width: 40%;
    padding-bottom: 20px;
  }
  #contactPage .acteurs {
    margin-bottom: 0px;
    padding-bottom: 100px;
  }
  #contactPage .acteurs .client:last-child {
    margin-bottom: 0px;
  }
  #contactPage .acteurs .client h2 {
    font-size: 28px;
  }
  #contactPage .acteurs .client .container {
    flex-direction: row;
  }
  #contactPage .acteurs .client .container > div {
    width: 40%;
  }
  #plansSection #facadeSection.active {
    padding-bottom: 50px;
  }
  #plansSection #facadeSection #facade-table {
    width: 65%;
  }
  #plansSection #facadeSection #facade-table .table {
    height: 400px;
    overflow-y: scroll;
  }
  #plansSection #facadeSection #facade-table .table thead tr:first-child th {
    position: sticky;
    top: 0;
    z-index: 2;
    background-color: #f0f0f1;
  }
  #plansSection #facadeSection #facade-table .btn-container {
    flex-wrap: wrap;
    margin-top: 50px;
    flex-direction: column;
  }
  #plansSection #facadeSection #facade-table .btn-container .btn-effect {
    font-size: 13px;
    width: 80%;
    margin: 10px auto;
  }
  #plansSection #facadeSection #facade-table .btn-container .btn-effect p {
    font-size: 14px;
  }
  #plansSection #facadeSection .bat-show {
    width: 35%;
  }
  #telechargement {
    padding-bottom: 100px;
  }
  #telechargement .container {
    padding-top: 50px;
  }
  #telechargement .container .btn-container {
    justify-content: flex-start;
  }
  #telechargement .container .btn-container .btn-effect {
    width: 300px;
    margin: 10px 30px 0px 0;
  }
  footer .avp {
    flex-wrap: wrap;
  }
  footer .avp > div {
    width: 100%;
  }
  footer .avp > div.avp-link {
    text-align: center;
  }
  footer .avp > div.logos {
    width: 80%;
    margin: 50px auto;
  }
}
@media only screen and (max-width: 850px) {
  .telechargement {
    right: -60px;
    top: 130px;
    padding: 5px 10px;
  }
  .telechargement a {
    font-size: 15px;
  }
  h2 {
    font-size: 32px;
    line-height: 38px;
  }
  #accueilPage .mainSection .bottom-txt {
    padding: 20px 5% 30px 10%;
    flex-wrap: wrap;
    width: auto;
    align-items: center;
    right: 0%;
    bottom: 0;
    left: 0;
  }
  #accueilPage .mainSection .bottom-txt .title {
    width: 25%;
  }
  #accueilPage .mainSection .bottom-txt .title span {
    font-size: 13px;
  }
  #accueilPage .mainSection .bottom-txt .title h3 {
    font-size: 16px;
  }
  #accueilPage .mainSection .bottom-txt .title h3 br {
    display: none;
  }
  #accueilPage .mainSection .bottom-txt .detail {
    width: 30%;
  }
  #accueilPage .mainSection .bottom-txt .detail span {
    font-size: 13px;
  }
  #accueilPage .appartements {
    padding-top: 100px;
  }
  #projetPage .mainSection .img .txt-bottom {
    bottom: -340px;
  }
  #projetPage #benefits {
    margin-top: 250px;
  }
  #situationPage .main-section {
    padding-top: 150px;
  }
  #situationPage .main-section .img {
    height: 500px;
  }
  #situationPage .map-section {
    flex-direction: column;
    padding-left: 10%;
    padding-bottom: 20px;
  }
  #situationPage .map-section .map {
    width: 100%;
  }
  #situationPage .map-section .map .map-container img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
  }
  #situationPage .map-section .txt {
    margin-top: 40px;
    width: 100%;
    padding-left: 0;
  }
  #situationPage .containerStock {
    flex-direction: column;
    padding-top: 100px;
  }
  #situationPage .containerStock p {
    max-width: initial;
  }
  #situationPage .containerStock .txt-img {
    width: 100%;
    order: -1;
  }
  #situationPage .containerStock .txt-img p {
    margin-right: 10%;
  }
  #situationPage .containerStock .txt-img img {
    height: 400px;
    padding-right: 10%;
  }
  #situationPage .containerStock .img-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-right: 10%;
  }
  #situationPage .containerStock .img-btn h2 {
    margin-top: 40px;
    margin-bottom: 20px;
  }
  #situationPage .containerStock .img-btn .showImg {
    order: 1;
    margin-top: 40px;
  }
  #situationPage .containerStock .img-btn img {
    height: 450px;
  }
  #situationPage .distances-section .container {
    flex-direction: column;
  }
  #situationPage .distances-section .container .txt {
    width: 100%;
    margin-top: 40px;
  }
  #situationPage .distances-section .container table {
    width: 100%;
  }
  #situationPage .icons-section {
    justify-content: center;
  }
  #situationPage .icons-section .icon {
    margin: 30px;
    width: 40%;
  }
  #situationPage .icons-section a {
    font-size: 13px;
  }
  #galeriePage {
    padding-top: 150px;
  }
  #galeriePage .img-container .gallery-flex .gallery-flex-2 > div {
    height: 120px;
  }
  #fullscreen .nav-btn,
  #fullscreen-showImg .nav-btn {
    top: initial;
    bottom: 5%;
  }
  #plansSection #tooltip {
    display: none;
  }
  #plansSection .txt-extra {
    margin-top: 50px;
    margin-bottom: 50px;
  }
  #plansSection #facadeSection #facade-table {
    width: 60%;
  }
  #plansSection #facadeSection #facade-table .avp-table th {
    max-width: 10ch;
  }
  #plansSection #facadeSection #facade-table .avp-table th,
  #plansSection #facadeSection #facade-table .avp-table td {
    font-size: 12px;
  }
  #plansSection #facadeSection #facade-table .table .column-19,
  #plansSection #facadeSection #facade-table .table .column-18 {
    border: 2px solid red;
    display: none;
  }
  #plansSection #facadeSection .bat-show {
    width: 40%;
  }
  #plansSection #lot-container .row-container {
    flex-direction: column;
  }
  #plansSection #lot-container .row-container #lot-data {
    width: 100%;
    margin-top: 50px;
  }
  #plansSection #lot-container .row-container .plans {
    width: 100%;
    order: -1;
  }
  #plansSection #lot-container .row-container .plans .lot-png {
    height: 250px;
  }
  #plansSection .box-section {
    flex-wrap: wrap;
  }
  #plansSection .box-section * {
    font-size: 13px !important;
  }
  #plansSection .box-section > div {
    width: 25%;
  }
  #plansSection .box-section > div:last-child {
    display: block;
    margin-top: 10px;
  }
  #plansSection .box-section > div:last-child p {
    font-size: 13px !important;
  }
  #plansSection #masterplan .bat-select {
    margin: 0 auto 50px auto;
  }
  #small-masterplan .txt {
    justify-content: space-between;
  }
  #small-masterplan .txt span,
  #small-masterplan .txt p {
    font-size: 14px;
    line-height: 16px;
  }
  #small-masterplan .txt > div .bat {
    padding: initial;
    width: 40px;
    height: 40px;
  }
  #small-masterplan .txt > div .bat span {
    font-size: 16px;
  }
  footer .avp img {
    width: 60px;
  }
  footer .avp p,
  footer .avp a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 660px) {
  header .width nav.active {
    padding-top: 100px;
  }
  header .width nav.active ul li {
    margin-bottom: 20px;
    width: 100%;
    text-align: center;
  }
  header .width nav.active ul li a {
    font-size: 15px;
  }
  h1 {
    margin-bottom: 10px;
  }
  .showImg:before {
    display: none;
  }
  #fullscreen .full-img-wrap,
  #fullscreen-showImg .full-img-wrap {
    padding: 10px;
  }
  h1 {
    font-size: 32px;
    line-height: 38px;
  }
  h1 span {
    font-size: 32px;
    line-height: 38px;
  }
  h2 {
    font-size: 28px;
    line-height: 32px;
  }
  p {
    font-size: 15px;
    line-height: 22px;
  }
  .subtitle {
    margin-bottom: 0px;
    font-size: 15px;
  }
  .btn-effect {
    font-size: 15px;
  }
  #accueilPage .mainSection .bottom-txt {
    padding: 20px 5% 30px 6%;
  }
  #accueilPage .mainSection .bottom-txt .detail {
    padding: 0 10px;
  }
  #accueilPage .appartements {
    padding-top: 80px;
  }
  #accueilPage .appartements .container {
    flex-direction: column;
  }
  #accueilPage .appartements .container .img-btn {
    width: 100%;
    padding-right: 10%;
    display: flex;
    flex-direction: column;
  }
  #accueilPage .appartements .container .img-btn img {
    margin-top: 50px;
    height: 300px;
  }
  #accueilPage .appartements .container .img-btn p {
    padding-top: 50px;
    padding-bottom: 20px;
    order: -2;
  }
  #accueilPage .appartements .container .img-btn .btn-effect {
    width: 270px;
    order: -1;
    padding-top: 10px;
    padding-bottom: 10px;
  }
  #accueilPage .appartements .container .img-btn .btn-effect img {
    margin-top: initial;
    height: initial;
  }
  #accueilPage .appartements .container .txt-img {
    order: -1;
    width: 100%;
  }
  #accueilPage .appartements .container .txt-img p {
    margin-right: 15%;
  }
  #accueilPage .appartements .container .txt-img img {
    height: 300px;
    width: 90%;
  }
  #accueilPage .icon-section {
    padding-top: 100px;
    padding-bottom: 100px;
    margin-top: -120px;
  }
  #accueilPage .icon-section .width > div {
    width: 42%;
  }
  #accueilPage .icon-section .width > div p {
    font-size: 14px;
  }
  #projetPage .mainSection {
    margin-bottom: 320px;
  }
  #projetPage .mainSection .img .txt-bottom {
    bottom: -420px;
    padding: 50px 20px;
    padding-right: 5%;
  }
  #projetPage .mainSection .img .txt-bottom p {
    max-width: initial;
  }
  #projetPage .appartements .container .img-btn img {
    height: 350px;
  }
  #situationPage .icons-section .icon {
    margin: 30px 20px;
    width: 40%;
  }
  #situationPage .icons-section .icon a {
    font-size: 15px;
  }
  #situationPage .distances-section .container table tr th,
  #situationPage .distances-section .container table tr td {
    font-size: 12px;
  }
  .contactSection > div.form .client .container > div.logo {
    width: 150px;
  }
  #client-section .client .container .logo {
    width: 150px;
    margin-right: 0px;
  }
  #contactPage .contactSection > div.img {
    height: 900px;
  }
  #contactPage .contactSection > div.form {
    padding-bottom: 0;
  }
  #contactPage .contactSection > div .form-container {
    margin-top: 0;
  }
  #contactPage .contactSection > div .form-container form > div input,
  #contactPage .contactSection > div .form-container form > div textarea {
    font-size: 12px;
  }
  #contactPage .contactSection .form {
    padding-top: 130px;
  }
  #contactPage .contactSection .form h2 {
    max-width: 5ch;
  }
  #contactPage .contactSection .form h2:after {
    right: -130%;
  }
  #contactPage .acteurs {
    flex-direction: column;
    padding-top: 50px;
  }
  #contactPage .acteurs .client {
    width: 100%;
    padding-top: 50px;
    margin-bottom: 0;
  }
  #contactPage .acteurs .client .container > div {
    width: 48%;
  }
  #contactPage .acteurs .client ul li {
    font-size: 15px;
  }
  #contactPage .acteurs .client h2 {
    margin-bottom: 20px;
  }
  #contactPage .acteurs .client-last .container .logo img {
    width: 150px;
  }
  #plansSection .box-section {
    justify-content: space-between;
    margin-bottom: 0px;
  }
  #plansSection .box-section > div {
    width: 33%;
    margin-right: 0;
  }
  #plansSection .box-section > div:last-child {
    width: 100%;
  }
  #plansSection #masterplan .bat-select {
    width: 100%;
  }
  #plansSection #masterplan .compass {
    width: 40px;
    height: 40px;
  }
  #plansSection #masterplan .compass img {
    width: 25px;
    height: 25px;
    padding-right: 5px;
  }
  #plansSection #facadeSection {
    flex-direction: column;
  }
  #plansSection #facadeSection.active {
    padding-top: 0;
  }
  #plansSection #facadeSection .bat-show {
    width: 80%;
    margin-top: 40px;
    margin-bottom: 20px;
  }
  #plansSection #facadeSection #facade-table {
    width: 100%;
  }
  #plansSection #facadeSection #facade-table .btn-container .btn-effect {
    width: 80%;
    margin: 5px auto;
  }
  #plansSection #lot-container .btn-container {
    flex-direction: column;
  }
  #plansSection #lot-container .btn-container .btn-effect {
    width: 80%;
    margin: 10px auto;
    font-size: 15px;
  }
  #telechargement {
    padding-top: 150px;
  }
  #telechargement .container .btn-container .btn-effect {
    width: 100%;
    margin: 10px 0px 0px 0;
  }
  #small-masterplan {
    margin: 40px auto 50px auto;
  }
  #small-masterplan .img {
    width: 100%;
  }
  #small-masterplan .txt {
    flex-wrap: wrap;
    width: 100%;
    justify-content: flex-start;
  }
  #small-masterplan .txt > div {
    margin: 10px;
    width: 100%;
    justify-content: flex-start;
  }
  footer .avp > div.logos {
    width: 100%;
    margin: 50px auto;
  }
}
@media only screen and (max-width: 450px) {
  header {
    padding: 10px 0;
  }
  h2 {
    font-size: 28px;
    line-height: 34px;
  }
  #accueilPage .mainSection {
    height: 100dvh;
  }
  #accueilPage .mainSection .bottom-txt {
    padding: 20px 5% 20px 5%;
    align-items: flex-start;
  }
  #accueilPage .mainSection .bottom-txt .title {
    width: 26%;
    margin-top: 10px;
    border: none;
  }
  #accueilPage .mainSection .bottom-txt .title span {
    font-size: 10px;
  }
  #accueilPage .mainSection .bottom-txt .title h3 {
    font-size: 13px;
  }
  #accueilPage .mainSection .bottom-txt .detail {
    width: 32%;
  }
  #accueilPage .mainSection .bottom-txt .detail span {
    font-size: 10px;
  }
  #accueilPage .mainSection .bottom-txt .detail p {
    font-size: 13px;
  }
  #accueilPage .appartements {
    padding-top: 60px;
  }
  #accueilPage .icon-section {
    padding-bottom: 60px;
    padding-top: 80px;
  }
  #projetPage .mainSection {
    margin-bottom: 460px;
    padding-bottom: 50px;
  }
  #projetPage .mainSection .img .txt-bottom {
    bottom: -500px;
  }
  #projetPage #benefits {
    margin-bottom: 40px;
  }
  #projetPage #benefits .img img {
    height: 250px;
  }
  #projetPage #benefits .benefits .container .box .visible h3 {
    font-size: 20px;
  }
  #projetPage .appartements {
    padding-bottom: 70px;
  }
  #projetPage .appartements h2 {
    max-width: 10ch;
  }
  #projetPage .appartements .container .img-btn img {
    height: 250px;
  }
  #situationPage .map-section {
    padding-top: 60px;
  }
  #situationPage .containerStock {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #situationPage .containerStock .txt-img p {
    margin-bottom: 40px;
  }
  #situationPage .containerStock .txt-img img {
    height: 200px;
  }
  #situationPage .containerStock .img-btn img {
    height: 350px;
  }
  #situationPage .distances-section {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #situationPage .distances-section .container table tr td img {
    width: 20px;
  }
  #situationPage .icons-section {
    padding-bottom: 60px;
  }
  #situationPage .icons-section .icon {
    margin: 20px;
    width: 100%;
  }
  #situationPage .icons-section .icon .img {
    margin-bottom: 10px;
  }
  #situationPage .icons-section .icon .img img {
    width: 30px;
  }
  .contactSection > div.form .client .container > div {
    width: 100%;
  }
  .contactSection > div.form .client .container > div.logo {
    width: 200px;
    margin-bottom: 30px;
  }
  #galeriePage .img-container .gallery-flex .gallery-flex-2 > div {
    height: 100px;
  }
  #contactPage .contactSection {
    flex-direction: column;
    padding-right: 0;
  }
  #contactPage .contactSection > div.img {
    width: 100%;
    height: 500px;
  }
  #contactPage .contactSection > div.form {
    padding-top: 80px;
    width: 100%;
    padding-left: 10%;
    padding-right: 10%;
  }
  #contactPage .contactSection > div .form-container {
    margin-bottom: 50px;
  }
  #contactPage .acteurs {
    padding-bottom: 50px;
  }
  #contactPage .acteurs .client .container > div {
    width: 100%;
  }
  #contactPage .acteurs .client h2 {
    font-size: 22px;
  }
  #small-masterplan {
    margin: 80px auto 50px auto;
  }
  #plansSection .main-section {
    padding-top: 130px;
  }
  #plansSection .main-section h2 {
    max-width: 10ch;
  }
  #plansSection .main-section h2:after {
    right: -50%;
  }
  #plansSection .box-section > div {
    padding: 10px;
    font-size: 14px;
  }
  #plansSection #masterplan {
    height: 200px;
  }
  #plansSection #facadeSection #facade-table .table .column-20,
  #plansSection #facadeSection #facade-table .table .column-6 {
    border: 2px solid red;
    display: none;
  }
  #plansSection #facadeSection #facade-table .btn-container .btn-effect {
    width: 100%;
  }
  #client-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }
  #client-section .client .container > div {
    width: 100%;
  }
  #client-section .client .container .logo {
    width: 200px;
  }
  footer .width a {
    display: block;
    font-size: 14px;
  }
  footer .avp > div.logos {
    flex-wrap: wrap;
    margin: 10px auto;
  }
  footer .avp > div.logos a {
    width: 100%;
    margin: 0px 0 30px 0;
  }

  footer .avp > div.logos img {
    width: 150px;
    margin: 20px auto 0px auto;
  }
}
@media only screen and (max-width: 365px) {
  #projetPage .mainSection {
    margin-bottom: 460px;
    padding-bottom: 50px;
  }
  #projetPage .mainSection .img .txt-bottom {
    bottom: -540px;
  }
  #projetPage #benefits {
    margin-bottom: 40px;
  }
} /*# sourceMappingURL=style.css.map */
