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

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

* {
  -webkit-box-sizing: border-box;
          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: 5px;
  overflow: hidden;
}

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

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

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

#succes {
  z-index: 9999;
  display: none;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: fixed;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.7);
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
}

#succes > div {
  text-align: center;
  font-size: 24px;
  z-index: 1;
  color: #F7F9F5;
  padding: 60px;
  line-height: 1.5;
  position: relative;
}

#succes.active {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

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

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

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

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

h1, h2, h3 {
  font-family: "Jost", sans-serif;
}

h2 {
  font-style: normal;
  font-weight: 400;
  font-size: 54px;
  line-height: 100%;
  text-transform: uppercase;
  color: #88988C;
  margin-bottom: 50px;
}

a {
  text-decoration: none;
}

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

span {
  display: inline-block;
}

.subtitle {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 14px;
  line-height: 200%;
  letter-spacing: 0.405em;
  color: #1B4733;
  text-transform: uppercase;
  margin-bottom: 23px;
}

p {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 300;
  font-size: 16px;
  line-height: 150%;
}

.btn {
  font-family: "Jost", sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 16px;
  background-color: #D2E0C9;
  border: 1px solid #D2E0C9;
  color: #1B4733;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 10px;
  margin-top: 50px;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  cursor: pointer;
  width: 300px;
}

.btn span {
  display: inline-block;
  margin-left: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.btn:hover {
  background-color: transparent;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  z-index: 99;
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
  background-color: rgba(255, 255, 255, 0.1);
}

header .width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

header .width .logo a {
  height: 50px;
  position: relative;
  z-index: 9999;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

header .width .logo a img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
  -webkit-filter: brightness(0) invert(1);
          filter: brightness(0) invert(1);
}

header .width .logo a p {
  color: #F7F9F5;
  margin-bottom: initial;
  line-height: initial;
}

header .width nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
}

header .width nav ul li {
  margin: 30px 0 30px 60px;
}

header .width nav ul li a {
  color: #F7F9F5;
  font-weight: 300;
  font-size: 18px;
  line-height: 25px;
  border-bottom: 1px solid transparent;
  -webkit-transition: all .6s linear;
  transition: all .6s linear;
}

header .width nav ul li a:hover {
  border-bottom: 1px solid #F7F9F5;
}

header.active {
  background-color: rgba(255, 255, 255, 0.9);
}

header.active .width .logo img {
  -webkit-filter: initial;
          filter: initial;
}

header.active .width nav ul li a {
  color: #1B4733;
}

header.active .width nav ul li a:hover {
  border-bottom: 1px solid #1B4733;
}

#menu-btn {
  display: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 9999;
  height: 50px;
  border: none;
  width: 50px;
  padding: 0 5px;
}

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

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

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

.fullMap {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #D2E0C9;
  -webkit-transition-duration: .5s;
          transition-duration: .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: #1B4733;
  z-index: 9999;
  cursor: pointer;
  font-weight: bold;
}

.fullMap .full-img .gallery-nav-prev, .fullMap .full-img .gallery-nav-next {
  color: #1B4733;
  position: absolute;
  top: 50%;
  font-size: 2.5em;
  height: auto;
  width: 100%;
  cursor: pointer;
}

.fullMap .full-img .gallery-nav-next {
  left: 99%;
}

.fullMap.active {
  opacity: 1;
  visibility: visible;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.fullMap * {
  width: 100%;
  height: 100%;
}

.fullMap * img {
  -o-object-fit: contain;
  object-fit: contain;
}

.fullMap img {
  display: none;
  -webkit-transition: all 0.4s linear;
  transition: all 0.4s linear;
}

.fullMap img.active {
  display: block;
}

/******************************/
#accueil {
  height: 100vh;
  background-position: center;
  background-attachment: fixed;
  position: relative;
}

#accueil::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
}

#accueil div {
  position: absolute;
  width: 400px;
  top: 55%;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  z-index: 3;
}

#accueil div img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: cover;
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1);
}

/******************************/
#numbers {
  background-color: #D2E0C9;
  padding: 100px 0;
}

#numbers .width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

#numbers .width > div {
  text-align: center;
  width: 33%;
  margin: 10px 0;
}

#numbers .width > div span {
  width: 50px;
  margin-bottom: 10px;
}

#numbers .width > div span img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#numbers .width > div p {
  font-weight: 600;
  font-size: 18px;
  position: relative;
  color: #1B4733;
  padding-top: 20px;
}

#numbers .width > div p:after {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  height: 1px;
  width: 40px;
  background-color: #1B4733;
}

/******************************/
#projet {
  padding-top: 150px;
}

#projet .txt {
  width: 35%;
}

#projet .txt ul {
  margin-left: 20px;
}

#projet .img {
  height: 550px;
  width: 60%;
}

/******************************/
#chardonne {
  padding-top: 150px;
  padding-bottom: 150px;
}

#chardonne .txt {
  width: 30%;
}

#chardonne .txt ul {
  margin-left: 20px;
}

#chardonne .txt ul li {
  margin-bottom: 10px;
}

#chardonne .img {
  width: 60%;
  height: 500px;
}

/******************************/
.fullImg {
  height: 800px;
  background-position: bottom;
}

/******************************/
#situation, #commune {
  background-color: #F9F9FB;
}

#situation {
  padding-top: 150px;
  padding-right: 15%;
}

#situation .txt {
  width: 30%;
}

#situation .img {
  width: 65%;
  height: 650px;
}

#situation .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#commune {
  padding-top: 150px;
  padding-bottom: 150px;
  padding-left: 15%;
}

#commune .txt {
  width: 30%;
}

#commune .txt ul li {
  margin-bottom: 10px;
}

#commune .img {
  width: 65%;
}

.showImg {
  cursor: -webkit-zoom-in;
  cursor: zoom-in;
}

/* fullscreen ***********************************/
#fullscreen-showImg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background-color: #F9F9FB;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  opacity: 0;
  visibility: hidden;
}

#fullscreen-showImg * {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

#fullscreen-showImg > div > div {
  opacity: 0;
  visibility: hidden;
}

#fullscreen-showImg .full-img-wrap {
  position: relative;
  padding: 10px;
}

#fullscreen-showImg #full-img {
  background-position: center;
  background-size: cover;
  -webkit-transform: scale(0.7);
          transform: scale(0.7);
}

#fullscreen-showImg .close-map {
  position: absolute;
  top: 2%;
  right: 1%;
  background: none;
  border: none;
  width: 50px;
  height: 50px;
  padding: 0 10px;
  font-size: 2em;
  color: #D2E0C9;
  display: none;
  cursor: pointer;
  font-weight: lighter;
}

#fullscreen-showImg.active {
  opacity: 1;
  visibility: visible;
}

#fullscreen-showImg.active > div > div {
  opacity: 1;
  visibility: visible;
  -webkit-transition-duration: 1s;
          transition-duration: 1s;
  -webkit-transition-delay: 1s;
          transition-delay: 1s;
}

#fullscreen-showImg.active #full-img {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#fullscreen-showImg.active .full-border {
  -webkit-transform: scale(1);
          transform: scale(1);
}

#fullscreen-showImg .full-border {
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  position: absolute;
  padding: 0;
  left: 0;
  top: 0;
}

#fullscreen-showImg .nav-btn {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  width: 60px;
  height: 60px;
  font-size: 32px;
  color: #D2E0C9;
  text-shadow: 0 0 2px #000000;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  cursor: pointer;
}

#fullscreen-showImg .next {
  right: 0;
}

#fullscreen-showImg .prev {
  left: 0;
}

/******************************/
#plans {
  padding-top: 150px;
  padding-bottom: 150px;
}

#plans h2 {
  text-align: center;
  margin-bottom: 100px;
}

#plans .subtitle {
  text-align: center;
  width: 100%;
}

#plans .width .table {
  width: 100%;
}

#plans .width .table table {
  width: 100%;
  color: #7EAF70;
  text-align: center;
  border-collapse: collapse;
}

#plans .width .table table tr:first-child {
  background-color: #7EAF70;
}

#plans .width .table table th {
  background-color: #D2E0C9;
  border-bottom: 2px solid #F7F9F5;
  color: #1B4733;
}

#plans .width .table table th, #plans .width .table table td {
  padding: .5em 0.2em;
  font-size: 15px;
  font-family: "Jost", sans-serif;
}

#plans .width .table table td {
  border-bottom: 2px solid #D2E0C9;
}

#plans .width .table table .table-data {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

#plans .width .table table .table-data:hover {
  background-color: #D2E0C9;
  cursor: pointer;
  color: #F7F9F5;
}

#plans .width .table table .vendre {
  background-color: rgba(0, 128, 0, 0.5);
  color: #F7F9F5;
}

#plans .width .table table .reserve {
  background-color: rgba(255, 165, 0, 0.5);
  color: #F7F9F5;
}

#plans .width .table table .vendu {
  background-color: rgba(255, 0, 0, 0.5);
  color: #F7F9F5;
}

#plans .width .table .legende {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 30px;
}

#plans .width .table .legende > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}

#plans .width .table .legende > div span {
  width: 20px;
  height: 15px;
}

#plans .width .table .legende > div span.vendre {
  background-color: green;
}

#plans .width .table .legende > div span.reserve {
  background-color: orange;
}

#plans .width .table .legende > div span.vendu {
  background-color: red;
}

#plans .width .table .legende > div p {
  padding: 10px;
}

#plans .width .table .btn-container {
  margin-bottom: 50px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

#plans .width .img {
  width: 100%;
  margin-top: 50px;
}

/******************************/
#galerie {
  padding: 160px 0 160px 13%;
  background-color: #D2E0C9;
}

#galerie * {
  color: #1B4733;
}

#galerie #roller {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  position: relative;
  -webkit-transition-duration: .6s;
          transition-duration: .6s;
  left: 0%;
}

#galerie #roller img {
  width: 35%;
  height: 350px;
  margin-right: 3em;
  -webkit-transition-duration: .2s;
          transition-duration: .2s;
  -webkit-box-shadow: 1px 1px 4px #c2c1c1;
          box-shadow: 1px 1px 4px #c2c1c1;
  -o-object-fit: cover;
  object-fit: cover;
  cursor: pointer;
}

#galerie #roller img:hover {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

#galerie #roller .active {
  -webkit-transform: scale(1);
          transform: scale(1);
  -webkit-transition-delay: .6s;
          transition-delay: .6s;
  z-index: 44;
}

#galerie .gallery-nav {
  margin-top: 40px;
}

#galerie .gallery-nav span {
  width: 35px;
  font-size: 32px;
  color: #1B4733;
  margin-right: 55px;
  cursor: pointer;
}

/******************************/
#acteurs {
  padding-top: 150px;
  padding-bottom: 150px;
}

#acteurs h2 {
  text-align: center;
  text-transform: initial;
  margin-bottom: 80px;
}

#acteurs .width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

#acteurs .width .acteur {
  width: 33%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
}

#acteurs .width .acteur .data h3 {
  font-style: normal;
  font-weight: 700;
  font-size: 28px;
  line-height: 165%;
  margin-bottom: 40px;
}

#acteurs .width .acteur .data .img {
  height: 70px;
  margin-bottom: 40px;
}

#acteurs .width .acteur .data .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

#acteurs .width .acteur .data p, #acteurs .width .acteur .data a {
  font-weight: 400;
  font-size: 18px;
  line-height: 165%;
  color: #1B4733;
  text-align: center;
}

#acteurs .width .acteur .data a {
  -webkit-transition: all 0.2s linear;
  transition: all 0.2s linear;
}

#acteurs .width .acteur .data a:hover {
  color: #88988C;
}

/******************************/
#contact {
  text-align: center;
  padding-top: 150px;
  padding-bottom: 150px;
  position: relative;
}

#contact:after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-image: url(imgs/vis/7.jpg);
  opacity: 0.9;
  z-index: -1;
}

#contact h2 {
  margin-bottom: 28px;
  color: #1B4733;
}

#contact form {
  position: relative;
  width: 650px;
  margin: 80px auto 0 auto;
  padding: 40px;
  text-align: left;
  background-color: rgba(255, 255, 255, 0.9);
}

#contact form .form-group {
  position: relative;
}

#contact form .form-group .form-input {
  position: relative;
  padding: 10px 5px;
  width: 100%;
  outline: 0;
  border: 0;
  -webkit-transition: -webkit-box-shadow 150ms ease-out;
  transition: -webkit-box-shadow 150ms ease-out;
  transition: box-shadow 150ms ease-out;
  transition: box-shadow 150ms ease-out, -webkit-box-shadow 150ms ease-out;
  background-color: transparent;
  border: none;
  outline: none;
  border-bottom: 1px solid #1B4733;
  color: #1B4733;
  padding: 10px 5px;
  font-size: 16px;
  font-family: "Jost", sans-serif;
  font-style: italic;
  font-weight: 300;
  width: 100%;
  margin-bottom: 55px;
  position: relative;
}

#contact form .form-group .form-input:hover {
  cursor: pointer;
}

#contact form .form-group .form-input:focus {
  -webkit-box-shadow: 0 1px 0 0 #D2E0C9;
          box-shadow: 0 1px 0 0 #D2E0C9;
}

#contact form .form-group .form-input.filled {
  -webkit-box-shadow: 0 1px 0 0 #88988C;
          box-shadow: 0 1px 0 0 #88988C;
}

#contact form .form-group .form-label {
  position: absolute;
  left: 0;
  top: 10px;
  color: #1B4733;
  background-color: #FFFFFF;
  z-index: 10;
  width: 100%;
  font-family: "Jost", sans-serif;
  -webkit-transition: font-size 150ms ease-out, -webkit-transform 150ms ease-out;
  transition: font-size 150ms ease-out, -webkit-transform 150ms ease-out;
  transition: transform 150ms ease-out, font-size 150ms ease-out;
  transition: transform 150ms ease-out, font-size 150ms ease-out, -webkit-transform 150ms ease-out;
  cursor: pointer;
}

#contact form .focused .form-label {
  -webkit-transform: translateY(-135%);
          transform: translateY(-135%);
  font-size: .85em;
}

#contact form .btn {
  background-color: #D2E0C9;
  border: 1px solid #D2E0C9;
  margin: 40px auto 20px auto;
}

#contact form .btn:hover {
  background-color: transparent;
  border: 1px solid #1B4733;
}

#contact .message {
  padding-top: 40px;
}

#contact .message .form-input {
  height: 100px;
}

#contact .message ::-webkit-input-placeholder {
  color: transparent;
}

#contact .message :-ms-input-placeholder {
  color: transparent;
}

#contact .message ::-ms-input-placeholder {
  color: transparent;
}

#contact .message ::placeholder {
  color: transparent;
}

/******************************/
footer {
  background: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 10px;
}

footer .width {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

footer .width * {
  color: #1B4733;
}

footer .width > div {
  width: 33%;
  text-align: center;
}

footer .width > div a {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

footer .width > div a:hover {
  color: #7EAF70;
}

footer .width > div.logo img {
  width: 250px;
  height: 100%;
}

footer .avp {
  text-align: center;
}

footer .avp a, footer .avp p {
  color: #1B4733;
  font-size: 15px;
  margin-top: 20px;
}

footer .avp a {
  -webkit-transition: all 0.3s linear;
  transition: all 0.3s linear;
}

footer .avp a:hover {
  color: #7EAF70;
}

/******************************/
@media only screen and (max-width: 1600px) {
  .width {
    padding: 0 10%;
  }
  #situation {
    padding-right: 10%;
  }
  #commune {
    padding-left: 10%;
  }
  #numbers .width > div {
    width: 30%;
  }
  #numbers .width > div span {
    font-size: 60px;
  }
  #galerie {
    padding: 160px 0 100px 10%;
  }
  footer .width > div.logo {
    width: 200px;
  }
}

@media only screen and (max-width: 1300px) {
  header .width nav ul li a {
    font-size: 18px;
  }
  h2 {
    font-size: 36px;
    margin-bottom: 40px;
  }
  #accueil div {
    width: 300px;
  }
  #numbers .width {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  #numbers .width > div {
    width: 30%;
    text-align: center;
    margin: 10px 0;
  }
  #numbers .width > div span {
    font-size: 50px;
    margin-bottom: 0;
  }
  #numbers .width > div p:after {
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
  }
  #plans {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #plans h2 {
    margin-bottom: 60px;
  }
  #acteurs .width .acteur .data a, #acteurs .width .acteur .data p {
    font-weight: 400;
    font-size: 16px;
  }
  #acteurs .width .acteur .data h3 {
    font-size: 22px;
  }
}

@media only screen and (max-width: 1025px) {
  #menu-btn {
    display: block;
  }
  #menu-btn.active span {
    width: 0;
    background-color: #1B4733;
  }
  #menu-btn.active span::before {
    left: -5px;
    top: 0px;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    background-color: #1B4733;
  }
  #menu-btn.active span::after {
    left: -5px;
    top: 0px;
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg);
    background-color: #1B4733;
  }
  header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  header .width {
    width: 100%;
  }
  header .width nav.active {
    right: 0;
    -webkit-transition: all 0.6s linear;
    transition: all 0.6s linear;
  }
  header .width nav {
    position: fixed;
    top: 0px;
    background: #D2E0C9;
    padding: 90px 0px 0 0;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 100vh;
    right: -100%;
    -webkit-transition-duration: .6s;
            transition-duration: .6s;
    z-index: 999;
  }
  header .width nav ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -ms-flex-pack: distribute;
        justify-content: space-around;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    height: 90%;
  }
  header .width nav ul li {
    margin: 20px 0;
  }
  header .width nav ul li a {
    color: #1B4733;
    font-size: 18px;
  }
  #numbers .width > div p {
    font-weight: 400;
    font-size: 16px;
  }
  .flex {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  .flex .txt, .flex .img {
    width: 100%;
  }
  .flex .txt {
    margin-bottom: 50px;
  }
  #projet, #situation, #chardonne, #commune {
    padding-top: 100px;
    padding-bottom: 0px;
  }
  #projet .txt, #projet .img, #situation .txt, #situation .img, #chardonne .txt, #chardonne .img, #commune .txt, #commune .img {
    width: 100%;
  }
  #situation, #commune {
    padding-left: 10%;
    padding-right: 10%;
  }
  #situation .txt, #commune .txt {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  #chardonne, #commune {
    padding-bottom: 100px;
  }
  #chardonne .txt, #commune .txt {
    -webkit-box-ordinal-group: 0;
        -ms-flex-order: -1;
            order: -1;
  }
  #chardonne .img, #commune .img {
    height: 450px;
  }
  #plans .width .table table th, #plans .width .table table td {
    font-size: 13px;
  }
  #plans .width .table table th:nth-child(3), #plans .width .table table td:nth-child(3) {
    display: none;
  }
  #galerie {
    padding: 100px 0 60px 10%;
  }
  #galerie #roller img {
    width: 40%;
    height: 250px;
    margin-right: 1em;
  }
  .fullMap .full-img .gallery-nav-prev, .fullMap .full-img .gallery-nav-next {
    top: initial;
    bottom: 20px;
  }
  .fullMap .full-img .gallery-nav-next {
    left: 95%;
  }
  #acteurs {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #acteurs .width {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  #acteurs .width .acteur {
    width: 100%;
  }
  #acteurs .width .acteur:first-child {
    margin-bottom: 10%;
  }
  #acteurs .width .acteur:last-child {
    margin-top: 10%;
  }
  #acteurs .width .acteur .data h3 {
    font-size: 24px;
  }
  #contact {
    padding: 100px 10%;
  }
  #contact .message .form-input {
    height: 100px;
  }
  #contact form {
    width: 80%;
    margin-top: 50px;
  }
  #contact form .btn {
    margin: 50px auto 0 auto;
  }
  #contact form .form-group .form-input {
    margin-bottom: 32px;
  }
}

@media only screen and (max-width: 800px) {
  h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  .btn {
    margin-top: 50px;
  }
  #numbers .width > div p {
    font-size: 16px;
    height: 90px;
  }
  #numbers .width > div span {
    font-size: 50px;
  }
  #plans .width .table table th:nth-child(8), #plans .width .table table th:nth-child(7), #plans .width .table table th:nth-child(6), #plans .width .table table td:nth-child(8), #plans .width .table table td:nth-child(7), #plans .width .table table td:nth-child(6) {
    display: none;
  }
  footer .width {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .width .logo {
    width: 300px;
    margin-bottom: 20px;
  }
  footer .width > div.data {
    margin-bottom: 10px;
  }
}

@media only screen and (max-width: 500px) {
  #accueil div {
    width: 220px;
    top: 75%;
  }
  h2 {
    font-size: 36px;
    margin-bottom: 30px;
  }
  header .width nav ul {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  header .width nav ul li a {
    font-size: 16px;
  }
  #numbers {
    padding: 60px 0 60px 0;
  }
  #numbers .width > div {
    width: 100%;
    margin: 20px;
  }
  #numbers .width > div span {
    font-size: 40px;
  }
  #numbers .width > div p {
    height: initial;
  }
  h2 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  #projet, #situation, #chardonne, #commune {
    padding-top: 60px;
  }
  #chardonne, #commune {
    padding-bottom: 60px;
  }
  #chardonne .img, #commune .img {
    height: 300px;
  }
  .fullImg {
    height: 400px;
    background-position: center;
  }
  #projet .img, #chardonne .img {
    height: 350px;
  }
  #plans {
    padding-top: 60px;
    padding-bottom: 60px;
  }
  #plans h2 {
    margin-bottom: 40px;
  }
  #plans .width {
    padding: 0 5%;
  }
  #plans .width .table table th, #plans .width .table table td {
    padding: 0.5em 0.1em;
    font-size: 13px;
  }
  #plans .width .table .legende {
    margin: 30px 0;
  }
  #galerie {
    padding: 50px 0 50px 10%;
  }
  #acteurs {
    padding-top: 80px;
    padding-bottom: 80px;
  }
  #acteurs h2 {
    margin-bottom: 50px;
  }
  #acteurs .width .acteur .data .img {
    height: 80px;
    margin-bottom: 10px;
  }
  #contact form {
    width: 100%;
  }
  footer .width {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
  footer .width > div {
    width: 100%;
    margin-bottom: 20px;
  }
}
/*# sourceMappingURL=style.css.map */