@font-face {
  font-family: "Careny";
  src: url(fonts/Careny.otf);
}
/***************************************************************/
/*** MAIN ******************************************************/
/***************************************************************/
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

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

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

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

h1, h2, h3 {
  font-family: "Careny";
  text-align: left;
}

h1 {
  color: #FFFDFA;
  font-size: 120px;
  font-weight: 400;
  text-align: center;
  text-transform: uppercase;
}

h2 {
  font-size: 56px;
  font-weight: 500;
  line-height: 82px;
  color: #282828;
  text-transform: uppercase;
}

h3 {
  font-size: 42px;
  font-weight: 500;
  line-height: 62px;
  color: #282828;
  text-transform: uppercase;
}

p, a, li {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
}

.subtitle {
  font-family: "Inter", sans-serif;
  display: inline-block;
  font-size: 20px;
  font-weight: 400;
  line-height: 32px;
  letter-spacing: 0em;
  text-align: left;
  color: #282828;
  margin-bottom: 16px;
}

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

.close {
  position: absolute;
  top: 2%;
  right: 2%;
  background: none;
  border: none;
  width: 60px;
  height: 60px;
  font-size: 40px;
  color: #969E91;
  z-index: 9999;
  cursor: pointer;
}

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

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

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

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

.cookies-policy {
  background-color: #282828;
  width: 100%;
  padding: 1.5rem;
  text-align: center;
  position: fixed;
  bottom: 0;
  left: 0;
  color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 9998;
  display: inline-block;
}
.cookies-policy div {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookies-policy div p {
  margin-bottom: initial;
  line-height: initial;
  font-size: 14px;
  max-width: 90ch;
  color: #FFFFFF;
}
.cookies-policy div span {
  position: absolute;
  top: -15px;
  right: 15px;
  cursor: pointer;
  font-size: 30px;
}

/* loading */
#loading {
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #FFFDFA;
  z-index: 99999;
  transition-duration: 0.5s;
  transition-delay: 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
#loading > div {
  width: 370px;
  height: auto;
  transition-duration: 1.5s;
  transform: scale(0.5);
}
#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);
}

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

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

.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: #969E91;
}
.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);
}

#myPopup {
  position: fixed;
  right: -50%;
  opacity: 0.8;
  height: auto;
  top: 35%;
  min-width: 40%;
  background-color: #282828;
  border-left: 10px solid #969E91;
  padding: 20px 20px 50px 50px;
  z-index: 9;
  transition: all 0.7s linear;
}
#myPopup.activePop {
  right: 0%;
  opacity: 1;
}
#myPopup .closePopup {
  text-align: right;
  font-size: 32px;
  color: #969E91;
  cursor: pointer;
}
#myPopup span {
  color: #969E91;
  font-size: 22px;
  font-family: "Inter", sans-serif;
  margin-bottom: 16px;
}
#myPopup p {
  color: #FFFDFA;
  font-size: 26px;
  padding: 20px 0 40px 0;
  max-width: 30ch;
}
#myPopup .btn {
  padding: 10px 40px;
}

/***************************************************************/
/*** HEADER ***************************************************/
/***************************************************************/
header {
  position: fixed;
  max-width: 1920px;
  margin: 0 auto !important;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 25px 0;
  z-index: 400;
  transition: all 0.3s linear;
}
header.active {
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.9);
}
header.active .width .logos .logo {
  width: 80px;
  height: auto;
  transition: all 0.3s linear;
}
header.active .width .logos .logo a {
  line-height: initial;
}
header.active .width .logos .logo a img {
  filter: none;
}
header.active .width .logos .logo-myhome {
  width: auto;
  height: 60px;
  transition: all 0.3s linear;
}
header.active .width .logos .logo-myhome a img {
  filter: none;
}
header.active .width .nav a {
  font-size: 16px;
  padding: 5px 35px;
}
header.active #menu-btn {
  top: 0;
}
header.active #menu-btn span, header.active #menu-btn span::after, header.active #menu-btn span::before {
  height: 1px;
  background-color: #969E91;
}
header.active #menu-btn.active span {
  transition: all 0.1 linear;
  background-color: transparent;
}
header .width {
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: all 0.3s linear;
  width: 100%;
}
header .width .logos {
  display: flex;
  align-items: center;
  justify-content: center;
}
header .width .logos .logo {
  width: 100px;
  position: relative;
  z-index: 100;
  margin-right: 60px;
}
header .width .logos .logo.active {
  margin-top: 10px;
}
header .width .logos .logo.active img {
  filter: none;
}
header .width .logos .logo img {
  transition: all 0.3s linear;
  filter: brightness(0) invert(1);
}
header .width .logos .logo-myhome {
  width: auto;
  height: 70px;
  transition: all 0.3s linear;
  position: relative;
  z-index: 77;
}
header .width .logos .logo-myhome.active {
  margin-top: 10px;
}
header .width .logos .logo-myhome.active img {
  filter: none !important;
}
header .width .logos .logo-myhome a {
  line-height: initial;
}
header .width .logos .logo-myhome a img {
  height: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
header .width .nav {
  display: flex;
  align-items: center;
  margin-left: 5%;
}
header .width .nav a {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 400;
  text-align: center;
  color: #FFFDFA;
  background-color: #969E91;
  border: 1px solid #969E91;
  padding: 15px 45px;
  margin-left: 90px;
  transition: all 0.3s linear;
}
header .width .nav a:hover {
  background-color: transparent;
  color: #969E91;
}
header .width nav {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFDFA;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s ease-in, visibility 0.5s ease-in;
}
header .width nav ul {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  list-style-type: none;
  text-align: center;
}
header .width nav ul li {
  margin: 1em;
  transition: all 0.3s linear;
}
header .width nav ul li:hover {
  transform: scale(1.2);
}
header .width nav ul li a {
  color: #282828;
  font-family: "Careny";
  text-transform: uppercase;
  font-size: 28px;
  font-weight: bold;
}
header .width nav.active {
  opacity: 1;
  visibility: visible;
  background-color: #FFFDFA;
}

#menu-btn {
  background-color: transparent;
  cursor: pointer;
  border: none;
  width: 75px;
  height: 30px;
  position: relative;
  z-index: 100;
  cursor: pointer;
}
#menu-btn:hover span::after, #menu-btn:hover span {
  width: 75px;
}
#menu-btn.active {
  left: 0%;
}
#menu-btn.active span {
  transition: all 0.1 linear;
  background-color: transparent;
}
#menu-btn.active span::after {
  transition: all 0.3s linear;
  transform: translateY(-35px) rotate(45deg);
  transform-origin: top left;
  width: 60px;
  background-color: #969E91;
}
#menu-btn.active span::before {
  transition: all 0.3s linear;
  transform: translateY(22px) rotate(-45deg);
  transform-origin: bottom left;
  width: 60px;
  background-color: #969E91;
}
#menu-btn span, #menu-btn span::before, #menu-btn span::after {
  content: "";
  top: 0;
  width: 60px;
  height: 2px;
  display: block;
  position: absolute;
  background-color: #FFFDFA;
  transition: all 0.3s linear;
}
#menu-btn span::before {
  width: 75px;
  top: 15px;
  transition: all 0.3s linear;
}
#menu-btn span::after {
  top: 30px;
  transition: all 0.3s linear;
}

/***************************************************************/
/*** BUTTONS ***************************************************/
/***************************************************************/
.btn {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  text-align: center;
  padding: 15px 50px;
  border: 1px solid #969E91;
  background-color: #969E91;
  color: #FFFDFA;
  transition: all 0.3s linear;
  cursor: pointer;
}
.btn:hover {
  border: 1px solid #969E91;
  color: #969E91;
  background-color: transparent;
}

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

.main-section {
  min-height: 100vh;
  background-position: center;
  background-size: cover;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.main-section:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 2;
}
.main-section h1 {
  color: white;
  font-size: 74px;
  text-align: center;
  line-height: 84px;
  position: relative;
  z-index: 3;
  max-width: 40ch;
}

.img-navigation {
  width: 100%;
  border-top: 0.1em solid #969E91;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 70px;
}
.img-navigation * {
  color: #969E91;
}
.img-navigation > div {
  margin-top: 20px;
}
.img-navigation > div img {
  width: 31px;
  height: 18px;
  object-fit: contain;
  cursor: pointer;
  transition: all 0.3s linear;
}
.img-navigation > div.prev img, .img-navigation > div.prevStock img, .img-navigation > div.prevProjetImg img {
  margin-left: 5px;
}
.img-navigation > div.prev img:hover, .img-navigation > div.prevStock img:hover, .img-navigation > div.prevProjetImg img:hover {
  margin-left: -5px;
}
.img-navigation > div.next img, .img-navigation > div.nextStock img, .img-navigation > div.nextProjetImg img {
  margin-left: 30px;
}
.img-navigation > div.next img:hover, .img-navigation > div.nextStock img:hover, .img-navigation > div.nextProjetImg img:hover {
  margin-left: 40px;
}
.img-navigation > div p {
  font-family: "Careny";
  margin-top: 10px !important;
  font-size: 16px;
  font-weight: 800;
  line-height: 20px;
  text-transform: uppercase;
}

.two-column-section {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  padding: 65px 0;
}
.two-column-section p {
  width: 45%;
  text-align: left;
}

.showImg {
  cursor: zoom-in;
}

.fullImg {
  width: 100%;
  position: relative;
}
.fullImg img {
  height: 800px;
  height: 100%;
  object-fit: cover;
}
.fullImg:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background-color: #282828;
  z-index: -1;
}

/***************************************************************/
/*** CONTACT SECTION*************************************************/
/***************************************************************/
#contactSection {
  padding-top: 200px;
  padding-bottom: 200px;
  position: relative;
}
#contactSection:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60vw;
  background-image: url(imgs/logos/logo-accent.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 60vw;
  z-index: -1;
  opacity: 0.1;
}
#contactSection h2 {
  text-align: center;
}
#contactSection .form {
  width: 45%;
  margin: 100px auto 0 auto;
}
#contactSection .form form {
  width: 100%;
}
#contactSection .form form > div {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
#contactSection .form form > div:not(.textarea) {
  border-bottom: 1px solid #969E91;
}
#contactSection .form form > div label, #contactSection .form form > div input, #contactSection .form form > div textarea {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 300;
  line-height: 32px;
  text-align: left;
}
#contactSection .form form > div label {
  color: #969E91;
}
#contactSection .form form > div input, #contactSection .form form > div textarea {
  border: none;
  outline: none;
  background-color: transparent;
}
#contactSection .form form > div textarea {
  margin-top: 32px;
  padding: 10px;
  height: 254px;
  border: 1px solid #282828;
}
#contactSection .form form .btn {
  margin-top: 50px;
}

/***************************************************************/
/*** HOME PAGE / PROJET ***************************************/
/***************************************************************/
#indexPage #accueil {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  min-height: 100vh;
}
#indexPage #accueil:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.2);
}
#indexPage #accueil .width {
  text-align: center;
  position: relative;
  z-index: 1;
}
#indexPage #accueil .width img {
  width: 350px;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
#indexPage #accueil .width span {
  display: block;
  font-family: "Inter", sans-serif;
  font-size: 42px;
  font-weight: 300;
  color: #FFFDFA;
}
#indexPage #accueil .width span b {
  line-height: 62px;
  font-size: 52px;
  font-family: "Careny";
}
#indexPage #accueil .width span i {
  font-style: normal;
  white-space: nowrap;
}
#indexPage #accueil .arrow-down {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  border: 2px solid #FFFDFA;
  padding: 100px;
  border-radius: 50%;
  opacity: 0.9;
  transition: all 0.3s linear;
}
#indexPage #accueil .arrow-down > div {
  margin-top: -65px;
  animation: arrowDown 3s linear infinite alternate-reverse;
}
#indexPage #accueil .arrow-down > div img {
  display: inline-block;
  transform: rotate(-90deg);
}
#indexPage #accueil2 {
  padding-top: 175px;
  padding-bottom: 175px;
}
#indexPage #accueil2 .width p b {
  white-space: nowrap;
}
#indexPage #accueil2 .img .img-container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
#indexPage #accueil2 .img .img-container .small, #indexPage #accueil2 .img .img-container .big {
  position: relative;
  overflow: hidden;
}
#indexPage #accueil2 .img .img-container .small img, #indexPage #accueil2 .img .img-container .big img {
  position: absolute;
  transition: all 1s linear;
  cursor: zoom-in;
}
#indexPage #accueil2 .img .img-container .small img:hover, #indexPage #accueil2 .img .img-container .big img:hover {
  transform: scale(1.1);
}
#indexPage #accueil2 .img .img-container .small {
  width: 25%;
  height: 355px;
}
#indexPage #accueil2 .img .img-container .small img {
  right: 100%;
}
#indexPage #accueil2 .img .img-container .small img.showSmall {
  right: 0;
}
#indexPage #accueil2 .img .img-container .big {
  width: 70%;
  height: 640px;
}
#indexPage #accueil2 .img .img-container .big img {
  top: -100%;
}
#indexPage #accueil2 .img .img-container .big img.show {
  top: 0;
}
#indexPage #accueil2 .img-navigation img {
  filter: invert(1);
}
#indexPage .projetPage {
  padding-top: 0px;
  padding-bottom: 150px;
}
#indexPage .projetPage .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 0px;
}
#indexPage .projetPage .flex .img {
  height: 550px;
  width: 50%;
  overflow: hidden;
  position: relative;
}
#indexPage .projetPage .flex .img img {
  transition: all 0.3s linear;
}
#indexPage .projetPage .flex .img img:hover {
  transform: scale(1.1);
}
#indexPage .projetPage .flex .txt {
  width: 42%;
  height: 100%;
  display: flex;
  flex-direction: column;
  margin: auto;
  margin-bottom: 0;
}
#indexPage .projetPage .flex .txt h2 {
  margin-bottom: 55px;
}
#indexPage .projetPage .flex * {
  color: #282828;
}
#indexPage .projetPage .flex .btndiv {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
#indexPage #accueil3 {
  padding-bottom: 90px;
  padding-top: 0px;
}
#indexPage #accueil3 .txt-details h2 {
  margin-bottom: 70px;
  max-width: 30ch;
}
#indexPage #accueil3 .txt {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}
#indexPage #accueil3 .txt p {
  width: 50%;
}
#indexPage #icons {
  background-color: #969E91;
  padding-top: 150px;
  padding-bottom: 150px;
}
#indexPage #icons .icon-container {
  padding: 100px 0;
}
#indexPage #icons .icon-container > div {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
#indexPage #icons .icon-container > div .horizontal-line {
  width: 100%;
  height: 1px;
  background-color: #FFFDFA;
  margin: 100px 0;
}
#indexPage #icons .icon-container > div .icon {
  width: 33%;
}
#indexPage #icons .icon-container > div .icon img {
  height: 80px;
  width: 100%;
  object-fit: contain;
  filter: brightness(0) invert(1);
}
#indexPage #icons .icon-container > div .icon p {
  font-size: 24px;
  font-weight: 200;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: center;
  margin-top: 42px;
  color: #FFFDFA;
}

/***************************************************************/
/*** SITUATION *************************************************/
/***************************************************************/
#situation .situation3 {
  padding-top: 150px;
  padding-bottom: 60px;
}
#situation .situation3 a {
  max-width: initial;
  margin-top: 24px;
}
#situation .situation3 .subtitle {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
#situation .situation3 .subtitle:hover img {
  margin-left: 20px;
}
#situation .situation3 .subtitle img {
  transition: all 0.3s linear;
  margin-left: 10px;
  width: 31px;
  filter: brightness(0) invert(0);
}
#situation .environnement {
  padding-bottom: 150px;
  background-color: #969E91;
  position: relative;
  margin-top: 300px;
}
#situation .environnement * {
  color: #FFFDFA;
}
#situation .environnement:after {
  content: "";
  position: absolute;
  top: 0px;
  height: 30%;
  width: 100%;
  left: 0;
  background-color: #FFFDFA;
}
#situation .environnement .stock-container .stock {
  height: 810px;
  position: relative;
  z-index: 2;
  overflow: hidden;
  margin-top: -300px;
}
#situation .environnement .stock-container .stock img {
  position: absolute;
  left: 100%;
  transition: all 1s linear;
}
#situation .environnement .stock-container .stock img.showStock {
  left: 0;
}
#situation .environnement .subtitle {
  margin-top: 90px;
}

/***************************************************************/
/*** DESCRIPTIF *************************************************/
/***************************************************************/
#projetPage .projetPage {
  padding-top: 150px;
  padding-bottom: 85px;
}
#projetPage .projetPage .flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 150px;
}
#projetPage .projetPage .flex .img {
  height: 550px;
  width: 50%;
  overflow: hidden;
  position: relative;
}
#projetPage .projetPage .flex .img img {
  transition: all 0.3s linear;
}
#projetPage .projetPage .flex .img img:hover {
  transform: scale(1.1);
}
#projetPage .projetPage .flex .txt {
  width: 40%;
}
#projetPage .projetPage .flex .txt h2 {
  margin-bottom: 55px;
}
#projetPage .projetPage .flex * {
  color: #969E91;
}
#projetPage .projetPage .flex2 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#projetPage .projetPage .flex2 .img {
  width: 55%;
  height: 850px;
  overflow: hidden;
  position: relative;
}
#projetPage .projetPage .flex2 .img img {
  transition: all 0.3s linear;
}
#projetPage .projetPage .flex2 .img img:hover {
  transform: scale(1.1);
}
#projetPage .projetPage .flex2 .txt {
  width: 40%;
}
#projetPage .projetPage .flex2 .txt h2 {
  margin-bottom: 55px;
  color: #969E91;
}
#projetPage .projetPage .flex2 .txt p {
  max-width: 40ch;
  color: #969E91;
}
#projetPage .projetPage .flex3 {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 150px;
}
#projetPage .projetPage .flex3 .img {
  height: 550px;
  width: 50%;
  overflow: hidden;
  position: relative;
}
#projetPage .projetPage .flex3 .img img {
  transition: all 0.3s linear;
}
#projetPage .projetPage .flex3 .img img:hover {
  transform: scale(1.1);
}
#projetPage .projetPage .flex3 .txt {
  margin-bottom: 0;
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  width: 40%;
  margin-left: auto;
}
#projetPage .projetPage .flex3 * {
  color: #969E91;
}
#projetPage .projetImg-container {
  background-color: #969E91;
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
}
#projetPage .projetImg-container:before {
  content: "";
  position: absolute;
  background-color: #969E91;
  width: 100%;
  height: 50%;
  top: 0;
  left: 0;
}
#projetPage .projetImg-container .projetImg {
  height: 810px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
#projetPage .projetImg-container .projetImg img {
  position: absolute;
  left: 100%;
  transition: all 1s linear;
}
#projetPage .projetImg-container .projetImg img.showProjetImg {
  left: 0;
}
#projetPage .projetImg-container .img-navigation p {
  color: #FFFDFA;
}
#projetPage .img-navigation {
  border-top: 0.1em solid #FFFDFA;
}

/***************************************************************/
/*** GALERIE ***************************************************/
/***************************************************************/
#galerie .width {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 150px;
  padding-bottom: 150px;
}
#galerie .width > div {
  height: 460px;
  margin-bottom: 2%;
  overflow: hidden;
  cursor: zoom-in;
  position: relative;
}
#galerie .width > div:nth-child(1), #galerie .width > div:nth-child(4) {
  width: 60%;
}
#galerie .width > div:nth-child(2), #galerie .width > div:nth-child(3) {
  width: 38%;
}
#galerie .width > div:nth-child(5), #galerie .width > div:nth-child(6), #galerie .width > div:nth-child(7) {
  width: 32%;
}
#galerie .width > div img {
  transition: all 0.3s linear;
}
#galerie .width > div img:hover {
  transform: scale(1.1);
}

/* fullscreen ***********************************/
#fullscreen,
#fullscreen-showImg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #969E91;
  transition-duration: 1s;
  opacity: 0;
  visibility: hidden;
}
#fullscreen:after,
#fullscreen-showImg:after {
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: absolute;
  background-image: url(imgs/logos/logo-accent.svg);
  background-color: white;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  opacity: 0.1;
  z-index: -1;
}
#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 .closeGallery,
#fullscreen-showImg .close,
#fullscreen-showImg .closeGallery {
  position: absolute;
  top: 0px;
  right: 2%;
  background: none;
  border: none;
  width: 50px;
  height: 50px;
  padding: 0 10px;
  font-size: 42px;
  color: #FFFDFA;
  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: #FFFDFA;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
#fullscreen .next,
#fullscreen-showImg .next {
  right: 1%;
}
#fullscreen .prev,
#fullscreen-showImg .prev {
  left: 1%;
}

/***************************************************************/
/*** BROCHURE PDF *************************************************/
/***************************************************************/
#plan-telecharger,
#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(88, 173, 178, 0.75);
  opacity: 0;
  visibility: hidden;
}
#plan-telecharger.active,
#brochure-telecharger.active {
  visibility: visible;
  opacity: 1;
}
#plan-telecharger form,
#brochure-telecharger form {
  padding: 60px;
  background-color: #FFFDFA;
}
#plan-telecharger form #brochure-form > div,
#brochure-telecharger form #brochure-form > 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,
#brochure-telecharger form #brochure-form > div label,
#brochure-telecharger form #brochure-form > div input,
#brochure-telecharger form #brochure-form > div textarea {
  font-family: "Inter", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 32px;
  text-align: left;
}
#plan-telecharger form #brochure-form > div label,
#brochure-telecharger form #brochure-form > div label {
  color: rgba(57, 57, 57, 0.3);
}
#plan-telecharger form #brochure-form > div input,
#brochure-telecharger form #brochure-form > div input {
  border: none;
  outline: none;
  background-color: transparent;
  border-bottom: 1px solid rgba(57, 57, 57, 0.3);
}
#plan-telecharger form #brochure-form button,
#brochure-telecharger form #brochure-form button {
  font-family: "Inter", 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,
#brochure-telecharger form #brochure-form 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,
#brochure-telecharger form #brochure-form button.annuler:hover {
  border: 1px solid #969E91;
  color: #969E91;
}
#plan-telecharger form #brochure-form button.btn-telecharger,
#brochure-telecharger form #brochure-form button.btn-telecharger {
  color: #FFFDFA;
  border: 1px solid #969E91;
  background-color: #969E91;
  cursor: pointer;
}
#plan-telecharger form #brochure-form button.btn-telecharger:hover,
#brochure-telecharger form #brochure-form button.btn-telecharger:hover {
  border: 1px solid #969E91;
  background-color: #969E91;
}

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

/***************************************************************/
/*** PLANS ET PRIX *********************************************/
#plans h2 {
  text-align: left;
  max-width: initial;
  color: #282828;
  font-weight: bold;
}
#plans .facade-conatiner {
  background-color: #FFFDFA;
  padding-top: 150px;
  padding-bottom: 150px;
}
#plans #masterplan {
  position: relative;
  margin: 50px 0;
  visibility: visible;
}
#plans #masterplan:after {
  content: "";
  position: absolute;
  top: -40%;
  left: 60%;
  opacity: 0.05;
  height: 500px;
  width: 100%;
  background-image: url(imgs/logos/logo-accent.svg);
  background-repeat: no-repeat;
}
#plans #masterplan .compass {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 1%;
  right: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}
#plans #masterplan .compass img {
  width: 80px;
  height: 80px;
  padding-right: 5px;
  transform: rotate(-75deg);
}
#plans #masterplan .bat-select {
  width: 45%;
  transition: all 0.3s linear;
}
#plans #masterplan .bat-select svg {
  width: 100%;
  height: 100%;
}
#plans #masterplan .bat-select .bat {
  cursor: pointer;
  transition: all 0.3s linear;
  fill: #525551;
}
#plans #masterplan .bat-select .bat:hover path {
  fill: #858884 !important;
}
#plans #masterplan .bat-select .bat:hover .name {
  fill: white !important;
}
#plans .txt2024 {
  opacity: 0;
  transition: all 0.3s linear;
}
#plans .txt2024.active {
  opacity: 1;
  transition: all 0.3s linear;
}
#plans #facadeSection {
  align-items: flex-start;
  justify-content: space-between;
  position: relative;
  margin-top: 100px;
  transition: all 0.3s linear;
  height: auto;
  display: flex;
}
#plans #facadeSection .bat-show {
  width: 35%;
}
#plans #facadeSection .bat-show P {
  text-align: center;
  font-family: "Careny";
  font-size: 20px;
  font-weight: bold;
}
#plans #facadeSection .bat-show .floor {
  transition-duration: 0.3s;
}
#plans #facadeSection .bat-show .floor.move {
  transform: translateY(-150px);
}
#plans #facadeSection .bat-show .grey {
  fill: #F0F0F1 !important;
  stroke: #000000;
  stroke-width: 0.5;
  stroke-miterlimit: 10;
}
#plans #facadeSection .bat-show .lot {
  cursor: pointer;
  transform: all 1s linear;
}
#plans #facadeSection .bat-show .lot polygon, #plans #facadeSection .bat-show .lot path {
  fill: white;
  stroke: #000000;
  stroke-width: 0.5;
  opacity: 1;
  stroke-miterlimit: 10;
}
#plans #facadeSection .bat-show .lot.active {
  fill: rgb(224, 76, 76);
  background-color: rgb(224, 76, 76);
}
#plans #facadeSection .bat-show .lot.active-v * {
  fill: rgb(224, 76, 76);
  background-color: rgb(224, 76, 76);
  cursor: not-allowed;
}
#plans #facadeSection .bat-show .lot.active-d * {
  fill: rgb(60, 179, 113);
  background-color: rgb(60, 179, 113);
}
#plans #facadeSection .bat-show .lot.active-r * {
  fill: rgb(255, 165, 0);
  cursor: not-allowed;
  background-color: rgb(255, 165, 0);
}
#plans #facadeSection .bat-show .lot.v:hover * {
  fill: rgb(224, 76, 76);
  background-color: rgb(224, 76, 76);
  cursor: not-allowed;
}
#plans #facadeSection .bat-show .lot.d:hover * {
  fill: rgb(60, 179, 113);
  background-color: rgb(60, 179, 113);
}
#plans #facadeSection .bat-show .lot.r:hover * {
  fill: rgb(255, 165, 0);
  cursor: not-allowed;
  background-color: rgb(255, 165, 0);
}
#plans #facadeSection .bat-show .d.hover * {
  fill: rgb(60, 179, 113);
  background-color: rgb(60, 179, 113);
}
#plans #facadeSection .bat-show .r.hover * {
  fill: rgb(255, 165, 0);
  cursor: not-allowed;
  background-color: rgb(255, 165, 0);
}
#plans #facadeSection .bat-show .v.hover * {
  fill: rgb(224, 76, 76);
  cursor: not-allowed;
  background-color: rgb(224, 76, 76);
}
#plans #facadeSection .bat-show > div {
  display: none;
}
#plans #facadeSection .bat-show > div.active {
  display: block;
}
#plans #facadeSection #facade-table {
  width: 65%;
}
#plans #facadeSection #facade-table .table {
  max-height: 700px;
  overflow-y: scroll;
}
#plans #facadeSection #facade-table .parking {
  margin-top: 50px;
  max-width: 68ch;
  font-size: 15px;
}
#plans #facadeSection #facade-table .charges {
  margin-top: 50px;
  font-size: 15px;
}
#plans #facadeSection #facade-table .avp-table {
  width: 100%;
  position: relative;
  z-index: 44;
  height: 100%;
}
#plans #facadeSection #facade-table .avp-table thead {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 999;
  border-bottom: 1px solid #282828;
}
#plans #facadeSection #facade-table .avp-table tbody {
  background-color: #FFFDFA;
}
#plans #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;
}
#plans #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);
}
#plans #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);
}
#plans #facadeSection #facade-table .avp-table tbody tr:hover {
  background: rgba(119, 116, 112, 0.5);
}
#plans #facadeSection #facade-table .avp-table tbody tr:hover td, #plans #facadeSection #facade-table .avp-table tbody tr:hover th {
  color: white;
}
#plans #facadeSection #facade-table .avp-table tr.bat-C1, #plans #facadeSection #facade-table .avp-table tr.bat-C2 {
  display: none;
}
#plans #facadeSection #facade-table .avp-table tr.bat-A1.row-4,
#plans #facadeSection #facade-table .avp-table tr.bat-A1.row-8,
#plans #facadeSection #facade-table .avp-table tr.bat-C1.row-21,
#plans #facadeSection #facade-table .avp-table tr.bat-C1.row-32,
#plans #facadeSection #facade-table .avp-table tr.bat-C1.row-43,
#plans #facadeSection #facade-table .avp-table tr.bat-C2.row-57,
#plans #facadeSection #facade-table .avp-table tr.bat-C2.row-61,
#plans #facadeSection #facade-table .avp-table tr.bat-C2.row-65 {
  border-bottom: 2px solid #282828;
}
#plans #facadeSection #facade-table .avp-table th {
  font-weight: 600;
  font-size: 12px;
  color: #282828;
  padding: 10px 5px;
  text-align: center;
  font-family: "Inter", sans-serif;
  background-color: #F0F0F1;
  border-bottom: 1px solid #F0F0F1;
  cursor: pointer;
}
#plans #facadeSection #facade-table .avp-table td {
  font-weight: 300;
  font-size: 12px;
  text-align: center;
  font-family: "Inter", sans-serif;
  padding: 10px 5px;
  border-bottom: none;
  border-bottom: 1px solid #F0F0F1;
}
#plans #facadeSection #facade-table .avp-table td.column-4 {
  max-width: 8ch;
}
#plans #facadeSection #facade-table .btn-container {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#plans #facadeSection #facade-table .btn-container .btn {
  margin-right: 40px;
  padding: 5px 50px;
  font-size: 15px;
  border: 1px solid #969E91;
  display: none;
}
#plans #facadeSection #facade-table .btn-container .btn.active {
  display: block;
}
#plans #facadeSection #facade-table .btn-container .btn:after {
  background-color: #969E91;
}
#plans #tooltip {
  position: absolute;
  z-index: 99;
  visibility: hidden;
  background-color: #FFFDFA;
  width: 200px;
  border: 1px solid #282828;
}
#plans #tooltip th, #plans #tooltip td {
  font-size: 12px;
  text-align: left;
  color: #969E91;
  font-size: "Inter", sans-serif;
  padding: 5px 10px !important;
  font-family: "Inter", sans-serif;
}
#plans #tooltip th.column-2, #plans #tooltip td.column-2 {
  font-size: 14px;
  text-transform: uppercase;
}
#plans #tooltip td {
  width: 45%;
}
#plans #tooltip th {
  font-weight: bold;
  width: 45%;
  border-right: 1px solid #777470;
}
#plans #tooltip .column-0,
#plans #tooltip .column-1,
#plans #tooltip .column-4,
#plans #tooltip .column-9,
#plans #tooltip .column-21,
#plans #tooltip .column-19,
#plans #tooltip .column-18 {
  display: none;
}
#plans #tooltip .column-2 {
  background-color: #777470;
  color: #FFFDFA;
}
#plans #tooltip .column-2 th {
  border-right: 1px solid #FFFDFA;
}
#plans #tooltip > div {
  opacity: 0;
  transition-duration: 0.2s;
}
#plans #tooltip.visible {
  visibility: visible;
}
#plans #tooltip.visible > div {
  opacity: 1;
}
#plans #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);
}
#plans #lot-container * {
  font-family: "Inter", sans-serif;
}
#plans #lot-container > div {
  background-color: white;
  transform: scale(0.8);
  transition-duration: 0.6s;
  transition-delay: 0s;
  opacity: 0;
}
#plans #lot-container.active-lot {
  top: 0%;
  transition-delay: 0s;
  visibility: visible;
  opacity: 1;
  overflow-y: scroll;
  height: 100%;
}
#plans #lot-container.active-lot > div {
  opacity: 1;
  transform: scale(1);
  transition-delay: 0.6s;
}
#plans #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;
}
#plans #lot-container .row .lot-data-logo {
  height: 80px;
  margin-bottom: 100px;
  object-fit: contain;
}
#plans #lot-container .row-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  padding-left: 10%;
  padding-right: 10%;
}
#plans #lot-container .row-container #lot-data {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: left;
  width: 40%;
}
#plans #lot-container .row-container #lot-data .avp-table {
  text-align: left !important;
  width: 100%;
}
#plans #lot-container .row-container #lot-data .avp-table th {
  color: #282828;
  text-align: left !important;
  font-size: 14px;
  padding-right: 50px;
}
#plans #lot-container .row-container #lot-data .avp-table .column-0 {
  display: none;
}
#plans #lot-container .row-container #lot-data .avp-table .column-2 {
  font-size: 16px !important;
  background-color: #969E91;
  color: #FFFDFA;
}
#plans #lot-container .row-container #lot-data .avp-table .column-2 th {
  border-right: 1px solid #FFFDFA;
}
#plans #lot-container .row-container #lot-data th {
  border-right: 1px solid #777470;
}
#plans #lot-container .row-container #lot-data td {
  color: #282828;
}
#plans #lot-container .row-container #lot-data th, #plans #lot-container .row-container #lot-data td {
  padding: 10px;
  width: 50%;
  font-size: 15px !important;
  pointer-events: none;
}
#plans #lot-container .row-container .plans {
  width: 55%;
}
#plans #lot-container .row-container .plans .lot-png {
  height: 550px;
}
#plans #lot-container .row-container .plans .lot-png img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
#plans #lot-container .btn-container {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin: 50px 10px 0 0;
  width: 100%;
}
#plans #lot-container .btn-container .btn {
  margin-right: 50px;
  padding: 10px 30px;
  text-align: center;
  font-size: 16px;
}
#plans #lot-container .closeFacade {
  position: absolute;
  top: 3%;
  right: 3%;
  font-size: 20px;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
#plans .h,
#plans .h.hidden-in .h {
  transition-duration: 1s;
  visibility: visible;
  opacity: 1;
}
#plans .h.hidden,
#plans .h.hidden.hidden-in .h {
  visibility: hidden;
  opacity: 0;
}
#plans .avp-table tr.hidden {
  display: none;
}

/***************************************************************/
/*** CONTACT ****************************************************/
/***************************************************************/
#contact .title {
  background-color: #FFFDFA;
  padding-top: 150px;
  padding-bottom: 150px;
  width: 100%;
}
#contact .title h2 {
  color: #282828;
  font-weight: bold;
  text-align: center;
  max-width: initial;
}
#contact .contact {
  padding-bottom: 200px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #FFFDFA;
}
#contact .contact .txt {
  width: 40%;
}
#contact .contact .txt .details {
  text-align: left;
}
#contact .contact .txt .details .logo {
  width: 300px;
  margin-bottom: 30px;
  margin-right: auto;
}
#contact .contact .txt .details .logo img {
  object-fit: contain;
}
#contact .contact .txt .details .data {
  margin-top: 50px;
}
#contact .contact .txt .details .data p {
  max-width: initial;
  text-align: left;
  margin-bottom: 20px;
}
#contact .contact .txt .details .data p b {
  font-size: 20px;
}
#contact .contact .txt .details .data p, #contact .contact .txt .details .data a {
  font-size: 18px;
  color: #282828;
}
#contact .contact .txt .details .data a {
  transition: all 0.3s linear;
}
#contact .contact .txt .details .data a:hover {
  color: #969E91;
}
#contact .contact .txt .details .txt2 {
  margin-top: 50px;
}
#contact .contact .txt .details .txt2 p {
  font-size: 15px;
}
#contact .contact .form {
  width: 45%;
  position: relative;
}
#contact .contact .form:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 40vw;
  background-image: url(imgs/logos/logo-accent.svg);
  background-repeat: no-repeat;
  background-size: contain;
  height: 40vw;
  z-index: 1;
  opacity: 0.04;
}
#contact .contact .form form {
  position: relative;
  z-index: 2;
  width: 100%;
}
#contact .contact .form form > div {
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
#contact .contact .form form > div:not(.textarea) {
  border-bottom: 1px solid #282828;
}
#contact .contact .form form > div label, #contact .contact .form form > div input, #contact .contact .form form > div textarea {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  font-weight: 300;
  line-height: 32px;
  text-align: left;
}
#contact .contact .form form > div label {
  color: rgba(57, 57, 57, 0.5);
}
#contact .contact .form form > div input, #contact .contact .form form > div textarea {
  border: none;
  outline: none;
  background-color: transparent;
}
#contact .contact .form form > div textarea {
  margin-top: 32px;
  padding: 10px;
  height: 144px;
  border: 1px solid #282828;
}
#contact .contact .form form .btn {
  margin-top: 40px;
}
#contact .acteurs {
  background-color: #969E91;
  padding-top: 170px;
  padding-bottom: 170px;
  text-align: center;
}
#contact .acteurs h2 {
  margin: 0 auto 100px auto;
  text-align: center;
  width: 100%;
  color: #FFFDFA;
}
#contact .acteurs .container {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-left: 12%;
  padding-right: 12%;
}
#contact .acteurs .container .details {
  width: 33%;
  text-align: center;
}
#contact .acteurs .container .details:first-child {
  border-left: none;
}
#contact .acteurs .container .details .logo {
  width: 200px;
  margin: 0px auto 20px auto;
  height: 100px;
}
#contact .acteurs .container .details .logo img {
  object-fit: contain;
  filter: brightness(0) invert(1);
}
#contact .acteurs .container .details .data p {
  max-width: initial;
  text-align: center;
  margin-bottom: 20px;
  color: #FFFDFA;
}
#contact .acteurs .container .details .data p b {
  color: #282828;
}
#contact .acteurs .container .details .data p span {
  font-size: 14px;
  text-decoration: underline;
}
#contact .acteurs .container .details .data p b {
  font-size: 20px;
}
#contact .acteurs .container .details .data p, #contact .acteurs .container .details .data a {
  font-size: 18px;
}
#contact .acteurs .container .details .data a {
  transition: all 0.3s linear;
  color: #FFFDFA;
}
#contact .acteurs .container .details .data a:hover {
  color: #282828;
}

/***************************************************************/
/*** FOOTER ****************************************************/
/***************************************************************/
footer {
  background-color: #969E91;
  padding-top: 40px;
  padding-bottom: 20px;
  text-align: center;
}
footer * {
  color: #FFFDFA;
}
footer .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  position: relative;
}
footer .width img {
  width: 100px;
  filter: brightness(0) invert(1);
  margin: 0 auto;
}
footer .width .logo-bigger {
  width: 160px;
}
footer .width .menu {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
}
footer .width .menu ul {
  display: flex;
  align-items: center;
  justify-content: center;
  list-style: none;
}
footer .width .menu ul li {
  margin: 20px;
}
footer .width .menu ul li a {
  font-size: 14px;
  transition: all 0.3s linear;
}
footer .width .menu ul li a:hover {
  color: #282828;
}
footer .avp p, footer .avp a {
  font-size: 13px;
  text-align: center;
}
footer .avp a {
  color: #FFFDFA;
  transition: all 0.3s linear;
}
footer .avp a:hover {
  color: #282828;
}

/**************************************************************/
/*** RESPONSIVE ************************************************/
/***************************************************************/
@media only screen and (max-width: 1600px) {
  h1 {
    font-size: 86px;
    line-height: 96px;
  }
  h2 {
    font-size: 36px;
    line-height: 47px;
  }
  .main-section h1 {
    font-size: 64px;
    line-height: 74px;
  }
  #situation .situation2 {
    padding-bottom: 100px;
  }
  #situation .situation2 .img {
    height: 1000px;
  }
  #situation .situation2 .txt-section {
    width: 70%;
  }
  #situation .environnement {
    margin-top: 300px;
    padding-bottom: 130px;
  }
  #situation .environnement .stock-container .stock {
    height: 700px;
  }
  #contact .title {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #contact .contact {
    padding-bottom: 150px;
  }
  #contact .contact .txt .details .logo {
    width: 200px;
  }
  #contact .acteurs .container {
    padding-left: 6%;
    padding-right: 6%;
  }
  #plans .facade-conatiner {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #plans .facade-conatiner.width {
    padding-left: 5%;
    padding-right: 5%;
  }
  #plans #lot-container .row .lot-data-logo {
    margin-bottom: 50px;
  }
  #plans #lot-container .row-container {
    padding-left: 5%;
    padding-right: 5%;
  }
}
@media only screen and (max-width: 1260px) {
  #myPopup {
    min-width: 60%;
    right: -100%;
  }
  header {
    padding: 25px 0;
  }
  header .width .nav a {
    font-size: 16px;
    padding: 10px 40px;
    margin-left: 40px;
  }
  #menu-btn span {
    height: 1px;
  }
  #menu-btn span:before, #menu-btn span:after {
    height: 1px;
  }
  h1 {
    font-size: 62px;
    line-height: 72px;
  }
  h3 {
    font-size: 28px;
  }
  .main-section h1 {
    font-size: 62px;
    line-height: 72px;
  }
  #indexPage #accueil .width span {
    font-size: 34px;
  }
  #indexPage #accueil .width img {
    width: 280px;
  }
  #indexPage #accueil2 {
    padding-top: 130px;
    padding-bottom: 130px;
  }
  #indexPage #accueil2 .img .img-container .big {
    height: 540px;
  }
  #indexPage #accueil2 .img .img-container .small {
    height: 280px;
  }
  #indexPage #accueil3 .txt-details h2 {
    margin-bottom: 40px;
  }
  #indexPage #icons {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #indexPage #icons .icon-container {
    padding: 50px 0;
  }
  #indexPage #icons .icon-container > div .icon img {
    height: 60px;
  }
  #indexPage #icons .icon-container > div .icon p {
    font-size: 18px;
    line-height: 25px;
    margin-top: 40px;
  }
  #contactSection {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #contactSection .form {
    margin: 50px auto 0 auto;
    width: 60%;
  }
  #situation .situation3 {
    padding-top: 100px;
    padding-bottom: 60px;
  }
  #situation .environnement {
    padding-bottom: 100px;
  }
  #situation .environnement .stock-container .stock {
    height: 550px;
  }
  #contact .contact {
    padding-bottom: 0px;
    flex-direction: column;
  }
  #contact .contact > div {
    width: 100%;
  }
  #contact .contact > div.txt {
    margin-bottom: 100px;
    width: 100%;
  }
  #contact .contact > div.txt h2, #contact .contact > div.txt p {
    max-width: initial;
    text-align: center;
  }
  #contact .contact > div.txt .details {
    text-align: center;
    margin-top: 60px;
  }
  #contact .contact > div.txt .details .logo {
    margin: 30px auto;
  }
  #contact .contact > div.txt .details .data p {
    text-align: center;
  }
  #contact .contact > div.form {
    width: 80%;
    margin: 0 auto;
    order: -1;
  }
  #contact .contact > div.form div label, #contact .contact > div.form div input, #contact .contact > div.form div textarea {
    font-size: 16px;
    line-height: 16px;
  }
  #contact .acteurs {
    padding-top: 150px;
    padding-bottom: 80px;
  }
  #contact .acteurs h2 {
    margin: 0 auto 40px auto;
  }
  #contact .acteurs .container {
    flex-direction: column;
  }
  #contact .acteurs .container .details {
    width: 100%;
    border-bottom: 1px solid #FFFDFA;
    border-left: none;
    padding-bottom: 50px;
    padding-top: 50px;
    height: auto;
  }
  #contact .acteurs .container .details:last-child {
    border-bottom: none;
  }
  .fullImg:after {
    height: 40%;
  }
  .fullImg .width {
    height: 600px;
  }
  #projetPage .projetPage {
    padding-top: 100px;
    padding-bottom: 85px;
  }
  #projetPage .projetPage .flex {
    padding-top: 150px;
  }
  #projetPage .projetPage .flex .img {
    width: 45%;
    height: 650;
  }
  #projetPage .projetPage .flex .txt {
    width: 50%;
  }
  #projetPage .projetImg-container {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #projetPage .projetImg-container .projetImg {
    height: 650px;
  }
  #plans #tooltip {
    display: none;
  }
  #plans #facadeSection {
    margin-top: 50px;
  }
  #plans #facadeSection #facade-table .table {
    max-height: 500px;
  }
  #plans #facadeSection #facade-table .avp-table td, #plans #facadeSection #facade-table .avp-table th {
    font-size: 10px;
  }
  #plans #lot-container .btn-container {
    flex-wrap: wrap;
    margin: 20px auto 10px auto;
  }
  #plans #lot-container .btn-container .btn {
    width: 100%;
    margin: 10px;
  }
  #plans #lot-container .row-container #lot-data th, #plans #lot-container .row-container #lot-data td {
    padding: 10px;
    width: 50%;
    font-size: 13px !important;
  }
  #plans #lot-container .row-container .plans {
    width: 50%;
  }
  #plans #lot-container .row-container .plans .lot-png {
    height: 450px;
  }
  footer .width {
    padding-left: 8%;
    padding-right: 8%;
  }
  footer .avp p, footer .avp a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1000px) {
  .width {
    padding-left: 10%;
    padding-right: 10%;
  }
  h2 {
    font-size: 38px;
    line-height: 42px;
  }
  p, a, li {
    font-size: 15px;
    line-height: 26px;
  }
  .subtitle {
    font-size: 18px;
    line-height: 32px;
    margin-bottom: 16px;
  }
  #indexPage #accueil2 {
    padding-bottom: 100px;
  }
  #indexPage #accueil3 {
    padding-bottom: 100px;
  }
  #indexPage #accueil3 .txt-details {
    margin-bottom: 65px;
  }
  #indexPage #accueil3 .txt p {
    width: 75%;
  }
  #indexPage #icons .txt-container {
    margin: 10px 0 80px 0;
  }
  #indexPage #icons .txt-container .txt-box h2 {
    margin-top: 0px;
  }
  .fullImg .width {
    height: 500px;
  }
  #contactSection .form {
    width: 80%;
  }
  #situation .environnement {
    padding-bottom: 110px;
  }
  #situation .environnement .stock-container .stock {
    height: 450px;
  }
  #situation .environnement .distances-section .distance .header h2 {
    font-size: 18px;
    margin-bottom: -10px;
  }
  #situation .environnement .distances-section .distance .data p {
    font-size: 22px;
  }
  #situation .environnement .distances-section .distance .data p.place {
    margin-top: 10px;
    font-size: 16px;
  }
  #projetPage .projetPage .flex {
    padding-top: 80px;
    flex-direction: column;
  }
  #projetPage .projetPage .flex .img, #projetPage .projetPage .flex .txt {
    width: 100%;
  }
  #projetPage .projetPage .flex .txt {
    margin-top: 60px;
  }
  #projetPage .projetPage .flex .txt h2 {
    margin-bottom: 30px;
  }
  #projetPage .projetPage .flex .img {
    height: 500px;
    order: -1;
  }
  #projetPage .projetPage .flex3 {
    padding-top: 100px;
  }
  #projetPage .projetPage .flex3 .img {
    height: 400px;
  }
  #projetPage .projetImg-container {
    padding-top: 50px;
  }
  #projetPage .projetImg-container:before {
    height: 40%;
  }
  #projetPage .projetImg-container .projetImg {
    height: 450px;
  }
  #contact .contact {
    flex-direction: column;
  }
  #contact .contact > div {
    width: 100%;
  }
  #contact .contact > div.txt {
    margin-bottom: 100px;
  }
  #contact .contact > div.txt h2, #contact .contact > div.txt p {
    max-width: initial;
    text-align: center;
  }
  #contact .contact > div.txt .details {
    text-align: center;
    margin-top: 60px;
  }
  #contact .contact > div.txt .details .logo {
    margin: 30px auto;
  }
  #contact .contact > div.txt .details .data p {
    text-align: center;
  }
  #contact .contact > div.form {
    width: 80%;
    margin: 0 auto;
  }
  #contact .acteurs {
    padding-top: 100px;
  }
  #fullscreen .nav-btn, #fullscreen-showImg .nav-btn {
    top: auto;
    bottom: 5%;
  }
  #galerie .width {
    padding-bottom: 100px;
  }
  #galerie .width > div {
    width: 48%;
    height: 350px;
  }
  #plans #facadeSection #facade-table .avp-table th, #plans #facadeSection #facade-table .avp-table td {
    padding: 8px 5px;
  }
  #plans #facadeSection #facade-table .avp-table tr .column-9 {
    border: 1px solid red;
    display: none;
  }
  footer .width img {
    width: 90px;
  }
  footer .width .logo-bigger {
    width: 120px;
  }
  footer .width .menu ul li {
    margin: 10px;
  }
  footer .width .menu ul li a {
    font-size: 12px;
  }
}
@media only screen and (max-width: 850px) {
  h1 {
    position: relative;
    z-index: 3;
  }
  .main-section h1 {
    font-size: 54px;
    line-height: 62px;
  }
  .btn {
    font-size: 16px;
    padding: 20px;
    min-width: 200px;
    display: inline-block;
  }
  header .width .nav a {
    display: none;
  }
  #menu-btn.active {
    top: 10px;
  }
  #menu-btn.active span::before {
    -webkit-transform: translateY(16px) rotate(-45deg);
    transform: translateY(16px) rotate(-45deg);
    width: 50px;
  }
  #menu-btn.active span::after {
    width: 50px;
  }
  .width {
    padding-left: 8%;
    padding-right: 8%;
  }
  #indexPage .projetPage {
    padding-bottom: 80px;
  }
  #indexPage #accueil {
    position: relative;
  }
  #indexPage #accueil .img {
    width: 100%;
    position: relative;
  }
  #indexPage #accueil .img:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
  }
  #indexPage #accueil .txt {
    width: 100%;
    padding-right: 8%;
    position: absolute;
    z-index: 2;
    padding-left: 8%;
  }
  #indexPage #accueil .txt h1 {
    color: #FFFDFA;
  }
  #indexPage #accueil2 .img .img-container .small {
    width: 35%;
    height: 255px;
  }
  #indexPage #accueil2 .img .img-container .big {
    width: 60%;
    height: 550px;
  }
  #indexPage #icons .txt-container .txt-box h2 {
    hyphens: auto;
    overflow-wrap: break-word;
  }
  #contactSection {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  #situation .situation3 {
    padding-top: 100px;
    padding-bottom: 40px;
  }
  #situation .situation3 .stock-container .stock {
    height: 400px;
  }
  #projetPage .projetPage .flex {
    padding-top: 60px;
  }
  #projetPage .projetPage .flex .img {
    height: 400px;
  }
  #projetPage .projetPage .flex2 {
    flex-wrap: wrap;
  }
  #projetPage .projetPage .flex2 .img, #projetPage .projetPage .flex2 .txt {
    width: 100%;
  }
  #projetPage .projetPage .flex2 .txt {
    margin-bottom: 50px;
  }
  #projetPage .projetPage .flex2 .txt p {
    max-width: initial;
  }
  #projetPage .projetPage .flex2 .img {
    height: 500px;
  }
  #projetPage .projetPage .flex3 {
    padding-top: 50px;
  }
  #plans #masterplan .bat-select {
    width: 70%;
  }
  #plans #masterplan .compass {
    right: 20%;
    top: -5%;
  }
  #plans #facadeSection {
    flex-wrap: wrap;
  }
  #plans #facadeSection .bat-show {
    width: 60%;
    order: -1;
    display: none;
  }
  #plans #facadeSection #facade-table {
    width: 100%;
  }
  #plans #masterplan:after {
    z-index: -1;
  }
  footer .width {
    justify-content: center;
    margin-bottom: 40px;
  }
  footer .width > div {
    margin: 0 50px;
  }
  footer .width .logo-bigger {
    width: 150px;
  }
  footer nav {
    display: none;
  }
}
@media only screen and (max-width: 653px) {
  header {
    margin-top: 40px;
    padding: 10px 0;
  }
  header.active .width .logos .logo {
    width: 60px;
    margin-top: 0;
  }
  header.active .width .logos .logo-myhome {
    height: 40px;
    margin-top: -10px;
  }
  header .width .logos .logo {
    margin-top: 0;
    width: 60px;
    margin-right: 40px;
  }
  header .width .logos .logo-myhome {
    height: 40px;
    margin-top: -10px;
  }
  header .width .nav {
    margin-left: 10%;
  }
  header .width nav ul li a {
    font-size: 22px;
  }
  header.active {
    padding: 10px 0;
  }
  header .width .logos .logo.active {
    margin-top: 0px;
  }
  header .width .logos .logo-myhome.active {
    margin-top: -10px;
  }
  #myPopup {
    top: 30%;
  }
  #myPopup p {
    font-size: 22px;
    line-height: 28px;
    padding: 20px 0 40px 0;
  }
  #menu-btn {
    width: 45px;
    margin-top: 5px;
  }
  #menu-btn.active span::after {
    transform: translateY(-26px) rotate(45deg);
  }
  #menu-btn span {
    width: 45px;
  }
  #menu-btn span:before, #menu-btn span:after {
    width: 45px;
  }
  #menu-btn span:before {
    top: 10px;
  }
  #menu-btn span:after {
    top: 20px;
  }
  #menu-btn:hover span::after, #menu-btn:hover span {
    width: 45px;
  }
  h1 {
    font-size: 52px;
    line-height: 62px;
    color: #FFFDFA;
    max-width: initial;
  }
  h2 {
    font-size: 28px;
    line-height: 36px;
  }
  h3 {
    font-size: 22px;
    line-height: 32px;
  }
  .main-section h1 {
    font-size: 32px;
    line-height: 42px;
  }
  p, a, li {
    font-size: 14px;
    line-height: 22px;
  }
  .subtitle {
    font-size: 18px;
  }
  .btn {
    font-size: 16px;
  }
  #indexPage .projetPage .flex {
    flex-direction: column;
  }
  #indexPage .projetPage .flex .txt, #indexPage .projetPage .flex .img {
    width: 100%;
  }
  #indexPage .projetPage .flex .img {
    height: 350px;
    margin-bottom: 40px;
  }
  #indexPage #accueil {
    height: 100dvh;
  }
  #indexPage #accueil2 {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #indexPage #accueil2 .img .img-container .big {
    height: 450px;
  }
  #indexPage #accueil3 {
    padding-bottom: 80px;
  }
  #indexPage #accueil3 .txt {
    flex-direction: column;
  }
  #indexPage #accueil3 .txt p {
    width: 100%;
    margin-bottom: 30px;
  }
  #indexPage #accueil3 .txt p:last-child {
    width: 100%;
  }
  #indexPage #accueil3 .txt-details h2 {
    font-size: 26px;
  }
  #indexPage #accueil3 .txt-details h2:nth-child(2) {
    max-width: 20ch;
  }
  #indexPage #icons {
    padding-top: 100px;
  }
  #indexPage #icons .icon-container {
    padding: 20px 0 0 0;
  }
  #indexPage #icons .icon-container > div .horizontal-line {
    display: none;
  }
  #indexPage #icons .icon-container > div .icon {
    width: 45%;
    margin: 50px 0;
  }
  #indexPage #icons .icon-container > div .icon p {
    font-size: 16px;
  }
  .fullImg .width {
    height: 400px;
  }
  #contactSection {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #contactSection .form form .btn {
    margin-top: 30px;
  }
  .img-navigation > div p {
    font-size: 14px;
  }
  #situation .situation3 {
    padding-top: 80px;
    padding-bottom: 40px;
  }
  #situation .environnement {
    margin-top: 300px;
    padding-bottom: 80px;
  }
  #situation .environnement:after {
    height: 10%;
  }
  #situation .environnement .subtitle {
    margin-top: 40px;
  }
  #situation .environnement .stock-container .stock {
    height: 300px;
  }
  #projetPage .projetPage {
    padding-bottom: 20px;
  }
  #projetPage .projetPage .flex2 .txt h2 {
    margin-bottom: 30px;
  }
  #projetPage .projetPage .flex {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #projetPage .projetPage .flex .img {
    height: 350px;
  }
  #projetPage .projetPage .flex .txt {
    margin-top: 50px;
  }
  #projetPage .projetPage .flex .txt h2 {
    margin-bottom: 30px;
  }
  #projetPage .projetImg-container .projetImg {
    height: 300px;
  }
  #galerie .width {
    padding-top: 100px;
  }
  #galerie .width > div {
    height: 250px;
  }
  #contact .contact > div.txt .details {
    padding-top: 20px;
  }
  #contact .contact > div.txt .details .data p, #contact .contact > div.txt .details .data a {
    font-size: 16px;
  }
  #contact .contact > div.txt .details .logo {
    width: 200px;
  }
  #contact .contact .form:after {
    height: 80vw;
    width: 80vw;
  }
  #contact .acteurs {
    padding-top: 80px;
    padding-bottom: 60px;
    padding-left: 8%;
    padding-right: 8%;
  }
  #contact .acteurs h2 {
    margin: 0 auto 20px auto;
  }
  #contact .acteurs .container .details .logo {
    width: 150px;
  }
  #contact .acteurs .container .details .data p, #contact .acteurs .container .details .data a {
    line-height: 26px;
    font-size: 16px;
  }
  #contact .acteurs .container .details .data p b {
    font-size: 16px;
  }
  #plans .facade-conatiner {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #plans #masterplan .bat-select {
    width: 90%;
  }
  #plans #masterplan .compass {
    right: 5%;
    top: -10%;
  }
  #plans #masterplan .compass img {
    width: 60px;
    height: 60px;
    padding-right: 0px;
  }
  #plans #masterplan .bat-select svg {
    width: 100%;
  }
  #plans #lot-container .btn-container {
    justify-content: center;
  }
  #plans #lot-container .row-container {
    flex-wrap: wrap;
  }
  #plans #lot-container .row-container #lot-data, #plans #lot-container .row-container .plans {
    width: 100%;
  }
  #plans #lot-container .row-container .plans {
    order: -1;
    margin-bottom: 40px;
    border-bottom: 1px solid #969E91;
    border-top: 1px solid #969E91;
  }
  #plans #lot-container .row-container .btn-container .btn {
    width: 320px;
  }
  footer .width {
    justify-content: center;
    margin-bottom: 20px;
  }
  footer .width > div {
    margin: 0 20px;
  }
  footer .width .logo-bigger {
    width: 150px;
  }
  footer .avp a {
    display: block;
  }
  #fullscreen .nav-btn, #fullscreen-showImg .nav-btn {
    width: 40px;
    height: 40px;
  }
}
@media only screen and (max-width: 435px) {
  #myPopup {
    padding: 20px 20px 50px 30px;
  }
  h2 {
    font-size: 26px;
    line-height: 32px;
  }
  #indexPage #accueil .img img {
    object-position: 40% 50%;
  }
  #indexPage #accueil .arrow-down {
    bottom: -120px;
    left: 50%;
    padding: 40px;
    width: 200px;
    height: 200px;
  }
  #indexPage #accueil .arrow-down > div {
    width: 30px;
    height: auto;
    margin: -60px auto 0 auto;
  }
  #indexPage #accueil .arrow-down > div img {
    margin-top: 60px;
  }
  #indexPage #accueil .width span {
    font-size: 25px;
  }
  #indexPage #accueil .width img {
    width: 200px;
  }
  #indexPage #accueil3 {
    padding-bottom: 20px;
  }
  #indexPage #accueil3 .txt-details h2 {
    margin-bottom: 20px;
  }
  #indexPage #accueil2 {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #indexPage #accueil2 .img .img-container .big {
    height: 300px;
  }
  #indexPage #accueil2 .img .img-container .small {
    height: 150px;
  }
  #indexPage #icons {
    padding-top: 40px;
    padding-bottom: 50px;
  }
  #indexPage #icons .icon-container > div .icon {
    width: 100%;
    margin: 30px 0;
  }
  #indexPage #icons .icon-container > div .icon p {
    margin-top: 20px;
    font-size: 15px;
  }
  .two-column-section {
    padding: 50px 0 20px 0;
    flex-wrap: wrap;
  }
  .two-column-section p {
    width: 100%;
    margin-bottom: 30px;
  }
  .fullImg .width {
    height: 300px;
  }
  #contactSection {
    padding: 100px 10%;
  }
  #contactSection .form {
    width: 100%;
    margin-top: 50px;
  }
  #contactSection .form form > div label, #contactSection .form form > div input, #contactSection .form form > div textarea {
    font-size: 14px;
  }
  #contactSection .form form > div textarea {
    height: 150px;
  }
  #contactSection .form form .btn {
    margin-top: 10px;
    padding: 10px 20px;
  }
  #situation .situation .map-container .map {
    height: 250px;
  }
  #situation .environnement {
    margin-top: 200px;
  }
  #situation .environnement:after {
    height: 5%;
  }
  #situation .environnement .stock-container .stock {
    height: 250px;
    margin-top: -200px;
  }
  #situation .environnement .distances-section .distance .data > div {
    width: 100%;
    padding: 15px 0;
  }
  #situation .environnement .distances-section .distance .data p {
    font-size: 15px;
  }
  #projetPage .projetPage {
    padding-top: 80px;
  }
  #projetPage .projetPage .flex {
    padding-bottom: 50px;
  }
  #projetPage .projetPage .flex2 .img {
    height: 400px;
  }
  #projetPage .projetPage .flex3 .img {
    height: 600px;
  }
  #contact .contact .txt .details .logo {
    width: 250px;
  }
  #contact .contact .txt .details h3 {
    font-size: 30px;
  }
}/*# sourceMappingURL=style.css.map */