@charset "UTF-8";
html {
  scroll-behavior: smooth;
  scroll-padding-top: 10px;
}

body {
  max-width: 1920px;
  margin: auto;
  padding: 0;
  overflow-x: hidden !important;
  width: 100%;
  height: 100%;
  font-family: "gopher", sans-serif;
  color: #112226;
}

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

main {
  max-width: 1920px;
  width: 100%;
  margin: auto;
  overflow: hidden;
  position: relative;
}

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

#succes.active {
  display: flex;
}

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

.close {
  position: absolute;
  top: 0;
  right: 0;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: #FEFCF8;
  z-index: 101;
}

p, a, li {
  font-size: 16px;
  font-weight: 400;
}

ul li {
  line-height: 1.5em;
  margin-left: 1em;
}

p {
  line-height: 1.5em;
  margin-bottom: 1.5em;
}

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

.btn {
  display: inline-block;
  background-color: #227AC4;
  color: #FEFCF8;
  padding: 0.8em 3em;
  font-weight: bold;
  border-radius: 20px;
  bordeR: 1px solid #227AC4;
  transition: all 0.3s linear;
}
.btn:hover {
  background-color: transparent;
  color: #227AC4;
}

span {
  display: inline-block;
  text-transform: uppercase;
  font-size: 20px;
  margin-bottom: 1em;
}

h1 {
  font-size: 52px;
  margin-bottom: 0.5em;
  line-height: 99%;
  font-weight: 300;
  font-family: "fino-sans", sans-serif;
  max-width: 30ch;
}

h2 {
  font-size: 42px;
  margin-bottom: 0.9em;
  line-height: 99%;
  font-family: "fino-sans", sans-serif;
  letter-spacing: 1.5px;
  color: #227AC4;
  font-weight: 300;
  border-bottom: 1px solid #227AC4;
}

h3 {
  font-size: 26px;
  margin-bottom: 0.9em;
  line-height: 99%;
  font-family: "fino-sans", sans-serif;
  letter-spacing: 1.5px;
  font-weight: 800;
}

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

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

/* Handle */
::-webkit-scrollbar-thumb {
  background: #FEFCF8;
  border-radius: 7.5px;
  border: 1px solid black;
}

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

/* HEADER ***********************************/
header {
  width: 100%;
  max-width: 1920px;
  position: fixed;
  margin: auto;
  padding: 30px 200px 30px 200px;
  z-index: 444;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .logo a {
  font-family: "fino-sans", sans-serif;
  color: #227AC4;
  font-size: 32px;
}

#menu-btn {
  display: none;
  background-color: transparent;
  position: fixed;
  cursor: pointer;
  z-index: 9999;
  height: 50px;
  border: none;
  width: 50px;
  right: 80px;
  top: 30px;
}

#menu-btn span, #menu-btn span::before, #menu-btn span::after {
  content: "";
  width: 30px;
  height: 1px;
  display: block;
  position: absolute;
  background-color: #112226;
}

#menu-btn span::before {
  top: 7px;
  transition: all 0.4s linear;
}

#menu-btn span::after {
  bottom: 7px;
  transition: all 0.4s linear;
}

.menu ul {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.menu ul li {
  list-style: none;
  position: relative;
  cursor: pointer;
  margin: 0.3em 1em;
  padding: 0.2em 0.5em;
}
.menu ul li a {
  color: #112226;
  transition: all 0.7s linear;
  font-family: "gopher", sans-serif;
  font-weight: 300;
  letter-spacing: 1px;
  font-size: 15px;
}
.menu ul li:last-child {
  margin: 0 0 0 20px;
  padding: 0;
}
.menu ul .btn {
  border-radius: 20px;
  padding: 0.4em 2.5em;
  color: #FEFCF8;
  box-shadow: none;
}
.menu ul .btn:hover {
  color: #227AC4;
}

.menu li:before {
  content: "";
  position: absolute;
  display: block;
  border: 0px solid transparent;
  width: 0%;
  height: 0%;
  transition: all 0.5s ease;
  z-index: -44;
}

.menu li:last-child:before {
  display: none;
}

.menu li:before {
  width: 0%;
  height: 0%;
  bottom: 0;
  left: 0;
  border-bottom: 1px solid transparent;
}

.menu li:hover::before {
  width: 100%;
  height: 100%;
  border-color: #112226;
}

.headerActive {
  transition: all 1s linear;
  background-color: rgb(255, 255, 255);
  padding-top: 10px !important;
  padding-bottom: 10px;
}

/* ACCUEIL **********************************/
#accueil {
  background-image: url("imgs/vis/22.jpg");
  width: 100%;
  height: 100vh;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center bottom;
  position: relative;
}
#accueil div {
  position: absolute;
  bottom: 0%;
  padding: 60px 100px 10px 200px;
  background-color: rgba(238, 246, 251, 0.9);
}
#accueil div h1, #accueil div span {
  color: #227AC4;
}

/* SECTIONS ***********************************/
.section-centre {
  background-color: #EEF6FB;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 150px 200px;
}
.section-centre p {
  max-width: 65ch;
  line-height: 1.6em;
  color: #112226;
}
.section-centre ul li {
  color: #112226;
  max-width: 65ch;
  margin-bottom: 5px;
}
.section-centre h3 {
  color: #227AC4;
}
.section-centre .btn {
  margin-top: 2em;
  padding: 0.5em 3em;
  font-weight: bold;
}
.section-centre > div {
  text-align: left;
}
.section-centre .img-container {
  padding-top: 30px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.section-centre .img-container img {
  width: 33%;
}

.section-flex {
  padding: 150px 200px 0 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.section-flex .txt {
  width: 35%;
  text-align: left;
}
.section-flex h3 {
  color: #227AC4;
}
.section-flex .img {
  width: 55%;
  height: 600px;
  background-size: cover;
  background-position: center left;
}
.section-flex .img p {
  background-color: #EEF6FB;
  text-align: center;
  width: 100%;
  padding: 0.3em;
  margin: 0 auto;
}

.section-flex2 {
  padding: 150px 200px 0 200px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.section-flex2 h3 {
  color: #227AC4;
}
.section-flex2 .txt {
  width: 35%;
  text-align: left;
}
.section-flex2 .img {
  width: 50%;
  height: 500px;
  background-size: cover;
  background-position: center left;
}
.section-flex2 .img p {
  text-align: center;
  width: 100%;
  padding: 0.3em;
  margin: 0 auto;
  background-color: #EEF6FB;
  font-size: 15px;
}

.padding-bottom {
  padding-bottom: 200px;
}

#img2-container.section-flex {
  padding-top: 100px;
  padding-bottom: 0;
}
#img2-container.section-flex > div {
  width: 48%;
  text-align: center;
}
#img2-container.section-flex > div p {
  background-color: #EEF6FB;
  text-align: center;
  width: 100%;
  padding: 0.3em;
  margin: 0 auto;
  font-size: 15px;
}
#img2-container.section-flex .img {
  height: 450px;
}

#img3-container.section-flex {
  padding-top: 100px;
  padding-bottom: 100px;
  flex-wrap: wrap;
  justify-content: center;
}
#img3-container.section-flex .img {
  width: 45%;
  margin: 30px;
  text-align: center;
}
#img3-container.section-flex .img p {
  background-color: #EEF6FB;
  text-align: center;
  width: 100%;
  padding: 0.3em;
  margin: 0 auto;
  font-size: 15px;
}
#img3-container.section-flex .img {
  height: 400px;
}

.masterplan {
  width: 100vw;
  height: 100vh;
  position: relative;
  overflow: hidden;
}
.masterplan img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -10;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.masterplan2 img {
  -o-object-position: left top;
  object-position: center;
}

.masterplan3 img {
  -o-object-position: bottom;
  object-position: bottom;
}

.croppedImg img {
  -o-object-position: top;
  object-position: top;
}
@keyframes FadeInOut {
  0% {
    opacity: 1;
  }
  45% {
    opacity: 0.6;
  }
  55% {
    opacity: 0.4;
  }
  100% {
    opacity: 0;
  }
}
#caracteristiques.section-centre {
  background-color: #EEF6FB;
}
#caracteristiques.section-centre h2 {
  margin-bottom: 50px;
}
#caracteristiques.section-centre table {
  border-collapse: collapse;
}
#caracteristiques.section-centre table tr td:first-child {
  text-align: left;
  padding-right: 50px;
}
#caracteristiques.section-centre table tr td:last-child {
  text-align: right;
  padding-left: 50px;
}
#caracteristiques.section-centre table tr td {
  font-size: 18px;
  padding: 0.5em 0.2em 0.2em 0.2em;
  border-bottom: 1px solid #112226;
}

/* téléchargements **********************************/
#téléchargements.section-flex .img {
  width: 60%;
}
#téléchargements.section-flex div {
  text-align: center !important;
}
#téléchargements.section-flex div span {
  margin-bottom: 50px;
  text-transform: initial;
  font-size: 40px;
  color: #227AC4;
  font-family: "fino-sans", sans-serif;
}
#téléchargements.section-flex > div .btn {
  width: 70%;
  padding: 0.6em 0.7em;
}
#téléchargements.section-flex > div .btn:hover {
  border: 1px solid #227AC4;
}

/* GALERIE **********************************/
#galerie {
  background-color: white;
  padding: 150px 0;
  overflow-x: hidden;
}
#galerie .galerie--title {
  padding-left: 200px;
  display: flex;
  align-items: center;
  transition: all 0.4s linear;
}
#galerie .galerie--title h2 {
  max-width: 12ch;
}
#galerie .galerie--title span {
  cursor: pointer;
  display: inline-block;
  font-size: 3em;
  margin-left: 2em;
  position: relative;
  animation: arrowMove 1s linear infinite alternate-reverse;
}
@keyframes arrowMove {
  from {
    left: 0;
  }
  to {
    left: 0.3em;
  }
}
#galerie #roller {
  height: 100%;
  display: flex;
  align-items: center;
  flex-direction: row;
  position: relative;
  transition-duration: 0.6s;
  left: 0%;
  margin: 5em 150px 0em 150px;
}
#galerie #roller img {
  width: 45%;
  height: 450px;
  margin-right: 1em;
  transition-duration: 0.6s;
  box-shadow: 1px 1px 4px #c2c1c1;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
}
#galerie #roller img:hover {
  transform: scale(1.1);
}
#galerie #roller .active {
  transform: scale(1);
  transition-delay: 0.6s;
  z-index: 44;
}

.fullMap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: rgb(255, 255, 255);
  transition-duration: 0.5s;
  opacity: 0;
  visibility: hidden;
  padding: 10px;
}
.fullMap .full-img {
  position: relative;
}
.fullMap .full-img .close-btn {
  position: absolute;
  top: 0em;
  right: 0em;
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  font-size: 30px;
  color: #112226 !important;
  z-index: 9999;
  cursor: pointer;
  font-weight: bold;
}

.fullMap.active {
  opacity: 1;
  visibility: visible;
}

.fullMap * {
  width: 100%;
  height: 100%;
}
.fullMap * img {
  -o-object-fit: contain;
  object-fit: contain;
}

.fullMap img {
  display: none;
}

.fullMap img.active {
  display: block;
}

/* CONTACT **********************************/
#contact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#contact .details {
  padding: 0 200px;
  width: 45%;
}
#contact .details form {
  width: 100%;
  margin: 3em 0;
}
#contact .details form input:not([type=submit]), #contact .details form textarea {
  width: 100%;
  background-color: #EEF6FB;
  padding: 8px 20px;
  border-radius: 20px;
  border: none;
  margin-bottom: 25px;
  font-family: "gopher", sans-serif;
}
#contact .details form textarea {
  height: 150px;
}
#contact .details form .btn {
  border: none;
  width: 200px;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  padding: 0.5em 3em;
}
#contact .img {
  width: 50%;
  height: 100vh;
  background-size: cover;
  background-position: center;
}

/* FOOTER ***********************************/
footer {
  min-height: 20vh;
  background-color: #EEF6FB;
  padding: 10px 200px 2px 200px;
}
footer .container {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  padding: 50px 0;
  position: relative;
}
footer .container:after {
  content: "";
  position: absolute;
  left: 50%;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: #112226;
}
footer .container div {
  width: 45%;
}
footer .container div nav ul {
  display: flex;
  justify-content: space-between;
  list-style: none;
}
footer .container div nav ul li a {
  color: #112226;
  font-size: 14px;
}
footer .container div a {
  color: #112226;
  transition: all 0.3s linear;
  max-width: 350px;
  display: inline-block;
}
footer .container div a:hover {
  color: #227AC4;
}
footer .footer-details p, footer .footer-details a {
  text-align: center;
  font-size: 15px;
  color: #8C8C8C;
  transition: all 0.3s linear;
}
footer .footer-details a:hover {
  color: #227AC4;
}

/******************************/
@media only screen and (max-width: 1600px) {
  header {
    padding: 10px 120px;
    background-color: #FEFCF8;
  }
  header .menu {
    width: auto;
  }
  .menu ul li {
    margin: 0.3em 1em;
    padding: 0.2em 0em;
  }
  .menu ul li a {
    font-size: 14px;
  }
  .section-flex {
    padding-left: 120px;
    padding-right: 120px;
  }
  .section-flex .img {
    height: 500px;
  }
  .masterplan {
    height: 100vh;
  }
  #img2-container.section-flex {
    padding-top: 80px;
  }
  #téléchargements.section-flex > div .btn {
    width: 80%;
    font-size: 16px;
  }
  #img3-container.section-flex .img {
    width: 40%;
  }
  #galerie .galerie--title {
    padding-left: 130px;
  }
  #galerie #roller {
    margin: 4em 120px 3em 120px;
  }
  #contact .details {
    padding: 0 120px;
  }
  footer {
    padding: 0px 120px 10px 120px;
  }
}
@media only screen and (max-width: 1300px) {
  h2 {
    font-size: 32px;
  }
  h1 {
    font-size: 48px;
  }
  p, a, li {
    font-size: 15px;
  }
  header {
    padding: 10px 100px 10px 100px;
  }
  header .menu ul li {
    margin: 0.3em 0.7em;
  }
  #accueil div {
    padding-left: 100px;
  }
  .section-flex, .section-flex2 {
    padding-left: 100px;
    padding-right: 100px;
    padding-top: 100px;
  }
  .section-flex .img, .section-flex2 .img {
    height: 400px;
  }
  .padding-bottom {
    padding-bottom: 100px;
  }
  .section-centre {
    padding: 100px;
  }
  .section-centre .img-container {
    padding: 30px 0px 0 0px;
  }
  #téléchargements.section-flex .img {
    width: 55%;
  }
  #description.section-flex .img {
    height: 450px;
  }
  #caracteristiques.section-centre table tr td {
    font-size: 16px;
  }
  #galerie {
    padding: 100px 0;
  }
  #galerie .galerie--title {
    padding-left: 100px;
  }
  #galerie #roller {
    margin: 4em 100px 0em 100px;
  }
  #galerie #roller img {
    width: 39%;
    height: 300px;
    margin-right: 1em;
  }
  .masterplan {
    height: 100vh;
  }
  #contact .details {
    padding: 0 100px;
  }
  footer {
    padding: 0 40px 10px 40px;
  }
  footer .footer-details p, footer .footer-details a {
    font-size: 13px;
  }
}
@media only screen and (max-width: 1180px) {
  p, a, li {
    font-size: 15px;
  }
  span {
    font-size: 18px;
  }
  header {
    padding: 10px 100px;
  }
  header .menu.active {
    right: 0;
    transition: all 0.6s linear;
  }
  header .logo a {
    max-width: 150px;
  }
  header .menu {
    position: fixed;
    top: 55px;
    background: rgb(255, 255, 255);
    padding: 15px 0px;
    width: 100%;
    flex-direction: column;
    align-items: center;
    height: 100vh;
    right: -100%;
    transition-duration: 0.6s;
  }
  header .menu ul {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 90%;
  }
  header .menu ul li {
    margin: 30px;
  }
  header .menu ul li a {
    font-size: 16px;
  }
  header .menu ul li:last-child {
    margin-left: initial;
    margin-top: 30px;
  }
  #menu-btn {
    display: block;
  }
  #menu-btn.active span {
    width: 0;
  }
  #menu-btn.active span::before {
    left: -5px;
    top: 0px;
    transform: rotate(45deg);
  }
  #menu-btn.active span::after {
    left: -5px;
    top: 0px;
    transform: rotate(-45deg);
  }
  #accueil div {
    padding: 20px 100px 0px 100px;
  }
  .section-flex {
    flex-direction: column;
    padding: 100px 100px 0 100px;
  }
  .section-flex .txt {
    width: 100%;
  }
  .section-flex .txt p {
    max-width: initial;
  }
  .section-flex .txt .btn {
    margin: 0.5em;
  }
  .section-flex .img {
    width: 100%;
    padding: 0 !important;
    height: 400px;
    order: 1;
    margin-top: 10px;
  }
  .section-centre .img-container {
    justify-content: center;
  }
  .section-centre .img-container img {
    width: 45%;
    margin: 10px;
  }
  #img2-container.section-flex,
  #img3-container.section-flex {
    flex-direction: row;
  }
  #img2-container.section-flex .img,
  #img3-container.section-flex .img {
    height: 350px;
    margin-top: 0px;
  }
  #téléchargements.section-flex {
    flex-direction: row;
    padding-bottom: 100px !important;
  }
  #téléchargements.section-flex .img {
    order: -1;
    width: 60%;
  }
  #téléchargements.section-flex .txt {
    width: 35%;
  }
  #sous-sol.section-flex {
    flex-direction: row;
  }
  #description {
    padding-bottom: 100px !important;
  }
  .masterplan {
    height: 70vh;
  }
  #galerie .galerie--title {
    padding-left: 100px;
  }
  #galerie #roller {
    margin: 2em 100px 0em 100px;
  }
  #contact .details {
    padding: 0 50px 0 100px;
  }
  footer .container div nav ul {
    justify-content: center;
    flex-wrap: wrap;
  }
}
@media only screen and (max-width: 900px) {
  h1 {
    font-size: 36px;
  }
  h2 {
    font-size: 32px;
  }
  .section-centre {
    padding: 100px;
  }
  #description.section-flex .txt {
    width: 100%;
    order: 1;
  }
  #description.section-flex .img {
    order: 2;
    margin-bottom: 80px;
    height: 450px;
    width: 100%;
  }
  #img2-container.section-flex {
    padding-top: 50px;
  }
  #img2-container.section-flex > div {
    width: 100%;
  }
  #téléchargements.section-flex .img {
    height: 300px;
    width: 60%;
    margin-bottom: 0px;
    background-position: right;
  }
  #téléchargements.section-flex .txt {
    width: 30%;
  }
  #téléchargements.section-flex div span {
    margin-bottom: 20px;
    font-size: 32px;
  }
  #description {
    padding-bottom: 0px !important;
  }
  .section-flex2, #sous-sol.section-flex {
    flex-direction: column;
  }
  .section-flex2 .img, .section-flex2 .txt, #sous-sol.section-flex .img, #sous-sol.section-flex .txt {
    width: 100%;
  }
  .section-flex2 .txt, #sous-sol.section-flex .txt {
    order: -1;
    margin-bottom: 50px;
  }
  #img3-container.section-flex .img {
    width: 100%;
  }
  .section-centre .img-container img {
    width: 45%;
    margin: 10px;
  }
  #caracteristiques.section-centre table tr td {
    font-size: 15px;
  }
  #img2-container.section-flex, #img3-container.section-flex {
    flex-wrap: wrap;
  }
  #img2-container.section-flex .img, #img3-container.section-flex .img {
    margin-bottom: 20px;
  }
  #galerie {
    padding: 100px 0;
  }
  #galerie .galerie--title {
    padding-left: 60px;
  }
  #galerie #roller {
    margin: 1em 50px 0em 50px;
  }
  #galerie #roller img {
    margin-right: 1em;
    height: 200px;
  }
  .fullMap .gallery-nav-next,
  .fullMap .gallery-nav-prev {
    top: initial !important;
    bottom: 0px !important;
  }
  #contact {
    flex-direction: column;
  }
  #contact .details {
    width: 100%;
    padding: 0px 100px 50px 100px;
  }
  #contact .img {
    width: 100%;
    height: 50vh;
  }
}
@media only screen and (max-width: 650px) {
  h1 {
    font-size: 34px;
  }
  h2 {
    font-size: 28px;
  }
  header {
    padding: 10px 50px;
  }
  header .menu {
    padding: 40px 0px;
  }
  #menu-btn {
    right: 20px;
  }
  #accueil div {
    padding: 30px 40px 0 40px;
    width: 100%;
  }
  .section-flex {
    padding: 80px 50px 0 50px;
  }
  .section-flex .img {
    background-position: center center;
    height: 250px;
  }
  .section-centre {
    padding: 80px 50px;
  }
  .section-centre .btn {
    display: block;
  }
  #description.section-flex .img {
    height: 500px;
  }
  #caracteristiques.section-centre table tr td {
    font-size: 14px;
  }
  #caracteristiques.section-centre table tr td:last-child {
    padding-left: 0px;
  }
  .section-flex, .section-flex2 {
    padding-left: 50px;
    padding-right: 50px;
    padding-top: 50px;
  }
  #img3-container.section-flex {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #img3-container.section-flex .img {
    margin: 0;
    margin-bottom: 10px;
  }
  .masterplan {
    height: 400px;
  }
  #description.section-flex .img {
    height: 300px;
  }
  #img2-container.section-flex {
    padding-top: 0px;
  }
  .section-centre .img-container img {
    width: 100%;
    margin: 10px;
  }
  #téléchargements.section-flex {
    flex-direction: column;
  }
  #téléchargements.section-flex .txt, #téléchargements.section-flex .img {
    width: 100%;
    order: 1;
  }
  #téléchargements.section-flex .txt {
    order: -1 !important;
  }
  #galerie {
    padding: 50px 0 50px 0;
  }
  #galerie #roller img {
    height: 200px;
  }
  #galerie .galerie--title {
    padding-left: 30px;
  }
  #galerie .galerie--title span {
    margin-left: 0.5em;
  }
  #galerie #roller {
    margin: 0.1em 30px 0 30px !important;
  }
  #contact .details {
    width: 100%;
    padding: 0px 50px 30px 50px;
  }
  footer {
    padding: 0 30px 5px 30px;
  }
  footer .container {
    padding: 100px 0 50px 0;
  }
  footer .container:after {
    left: 2%;
  }
  footer .container div:first-child {
    width: 0%;
  }
  footer .container div {
    width: 88%;
  }
  footer nav {
    display: none;
  }
  .footer-details p, .footer-details a {
    font-size: 12px !important;
  }
  .footer-details a {
    display: block;
  }
}
@media only screen and (max-width: 400px) {
  header {
    padding: 10px 30px;
  }
  h2 {
    font-size: 28px;
  }
  h3 {
    font-size: 22px;
  }
  #accueil div {
    padding: 20px 20px 0 20px;
  }
  .section-centre {
    padding: 80px 30px;
  }
  .section-flex {
    padding: 80px 30px 0 30px;
  }
  .section-flex .img {
    height: 200px;
  }
  #plans {
    padding: 50px 20px;
  }
  section#galerie {
    min-height: auto;
  }
  .masterplan {
    height: 200px;
  }
  #description.section-flex .img {
    height: 200px;
  }
  .section-centre .img-container img {
    width: 100%;
  }
  #galerie {
    padding: 50px 0 100px 0;
  }
  #galerie #roller {
    margin: 2em 30px 0 30px;
  }
  #contact .details {
    padding: 50px 30px 30px 30px;
  }
  footer .container span {
    font-size: 16px;
  }
  footer .container p, footer .container a {
    font-size: 14px;
  }
}
@media only screen and (max-width: 805px) and (orientation: landscape) {
  #accueil div {
    padding: 30px 50px 30px 100px;
  }
}/*# sourceMappingURL=style.css.map */