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

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

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

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

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

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

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

#loading {
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100%;
  background-color: black;
  z-index: 100;
  display: flex;
  justify-content: center;
  align-items: center;
}

#succes {
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  transition-duration: 0.6s;
}
#succes > div {
  text-align: center;
  font-size: 24px;
  z-index: 1;
  color: #303030;
  background-color: #303030;
  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: #303030;
  cursor: pointer;
}

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

h2 {
  font-family: "DM Sans", sans-serif;
  font-size: 40px;
  font-weight: 500;
  line-height: 52px;
  letter-spacing: 0em;
  text-align: left;
  margin-bottom: 42px;
}

h3 {
  font-family: "DM Sans", sans-serif;
  font-size: 36px;
  font-weight: 500;
  line-height: 47px;
  letter-spacing: 0em;
  text-align: left;
}

a {
  text-decoration: none;
}

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

span {
  display: inline-block;
}

p,
li {
  font-size: 19px;
  font-weight: 400;
  line-height: 30px;
  letter-spacing: 0em;
  text-align: center;
}

.btn {
  padding: 16px 24px;
  border-radius: 32px;
  border: 1px solid #303030;
  transition: all 0.3s linear;
  font-family: "DM Sans", sans-serif;
  font-size: 20px;
  font-weight: 500;
  line-height: 26px;
  letter-spacing: 0em;
  text-align: center;
}

.btn-black {
  color: #FCFBFB;
  background-color: #303030;
}
.btn-black:hover {
  background-color: transparent;
  color: #303030;
}

.btn-white {
  background-color: transparent;
  color: #303030;
}
.btn-white:hover {
  background-color: #303030;
  color: #FCFBFB;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  max-width: 1920px;
  margin: 0 auto;
  width: 100%;
  padding: 52px 0;
  height: 150px;
  z-index: 99;
  transition: all 0.3s linear;
}
header.active {
  padding: 10px 0;
  height: auto;
  background-color: #FCFBFB;
}
header .width {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
header .width .logo {
  width: 192px;
}
header .width .logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
header .width nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
header .width nav ul li {
  margin-left: 20px;
}

#accueil {
  padding-top: 150px;
  padding-bottom: 100px;
}

#documents .width h2 {
  text-align: center;
}
#documents .width .docs-form {
  display: flex;
  margin: 10px;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
  margin-bottom: 50px;
}
#documents .width .docs-form .btn-docs {
  padding: 10px 30px;
  border-radius: 32px;
  border: 1px solid #303030;
  background-color: transparent;;
  transition: all 0.3s linear;
  font-family: "DM Sans", sans-serif;
  font-weight: 500;
  line-height: 12px;
  letter-spacing: 0em;
  text-align: center;
  cursor: pointer;
}

#documents .width .docs-form .btn-docs:hover { 
  background-color: #303030;
  color: white;
}

#documents .width .docs-form input {
  font-size: 16px;
  padding: 2px 20px;
  border-radius: 32px;
  border: 1px solid #303030;
}
#documents .width .links {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
#documents .width .links .btn {
  display: inline-block;
}
#documents .width .btn.active {
  background-color: #95C11F;
  bordeR: 1px solid #95C11F;
}
#documents .width .btn.active:hover {
  color: #FCFBFB;
}
#documents button {
  cursor: pointer;
}
#documents .pdf-file {
  margin-top: 50px;
  transition: all 0.8s linear;
  position: relative;
}
#documents .pdf-file iframe {
  height: 0px;
  visibility: hidden;
}
#documents .pdf-file iframe.active {
  height: 800px;
  visibility: visible;
}
#documents .pdf-file iframe img {
  display: none;
}

#staff {
  padding-top: 150px;
  padding-bottom: 100px;
}
#staff .width .txt {
  width: 30%;
}
#staff .width .txt h2 {
  max-width: 10ch;
}
#staff .width .img {
  width: 65%;
}

.flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#galerie {
  padding-top: 100px;
}
#galerie .width .title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
#galerie .width .title h2 {
  margin-bottom: initial;
}
#galerie .width .title h2 span {
  text-decoration: underline;
  cursor: pointer;
}
#galerie .width .title h2 span.active {
  color: #7AAC39;
}
#galerie .width .showImgs, #galerie .width .showVideos {
  display: none;
}
#galerie .width .showImgs.active, #galerie .width .showVideos.active {
  display: block;
}
#galerie .width .galery-container {
  position: relative;
  margin-bottom: 50px;
  width: 100%;
  height: 710px;
  /* width */
  /* Track */
  /* Handle */
  /* Handle on hover */
}
#galerie .width .galery-container .main-img {
  width: 100%;
  height: 710px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  overflow-x: scroll;
  counter-reset: item;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  cursor: pointer;
}
#galerie .width .galery-container .main-img .carousel__snapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#galerie .width .galery-container .main-img img, #galerie .width .galery-container .main-img video, #galerie .width .galery-container .main-img object {
  width: 100%;
  height: 100%;
  object-fit: contain;
  position: relative;
  margin-right: 20px;
  background-color: #D9D9D9;
}
#galerie .width .galery-container ::-webkit-scrollbar {
  overflow: hidden;
  height: 30px;
}
#galerie .width .galery-container ::-webkit-scrollbar-track {
  background: #d9d9d9;
  border: 1px solid rgb(151, 151, 151);
}
#galerie .width .galery-container ::-webkit-scrollbar-thumb {
  background: #74a839;
  border: 1px solid #365217;
  transition: all 0.6s linear;
}
#galerie .width .galery-container ::-webkit-scrollbar-thumb:hover {
  background: #365217;
  cursor: pointer;
}
#galerie .width .small-imgs {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: all 0.4s linear;
  margin-bottom: 50px;
}
#galerie .width .small-imgs.active {
  height: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.4s linear;
}
#galerie .width .small-imgs .img {
  width: 100px;
  margin: 1px;
  height: 100px;
  cursor: pointer;
  transition: all 1s linear;
}
#galerie .width .small-imgs .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#galerie .seeMore {
  cursor: pointer;
  display: inline-block;
  width: 200px;
}
#galerie .seeMore img {
  margin-left: 15px;
  transition: all 0.3s linear;
  transform: rotate(90deg);
}
#galerie .seeMore:hover img {
  filter: invert(1);
}
#galerie .seeMore.active img {
  transform: rotate(-90deg);
}
#galerie .more {
  padding-top: 250px;
  padding-bottom: 250px;
  text-align: center;
}
#galerie .more h2 {
  text-align: center;
}
#galerie .more p {
  margin-bottom: 42px;
}
#galerie .more .btn {
  padding: 16px 72px;
}
#galerie .more .btn span {
  margin-left: 10px;
  width: 14px;
  height: 14px;
}
#galerie .more .btn span img {
  transition: all 0.3s linear;
}
#galerie .more .btn:hover span img {
  filter: invert(1);
}

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

#galeriePage {
  padding-top: 300px;
  padding-bottom: 150px;
}
#galeriePage .width .filter-img {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}
#galeriePage .width .filter-img > div {
  width: 50%;
}
#galeriePage .width .filter-img > div.by-date h2 {
  margin-bottom: 80px;
}
#galeriePage .width .filter-img > div.by-date .select {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  border-bottom: 1px solid #303030;
  width: 50%;
}
#galeriePage .width .filter-img > div.by-date .select select {
  border: none;
  outline: none;
  font-size: 22px;
  background-color: transparent;
  font-family: "DM Sans", sans-serif;
  margin-left: 20px;
  cursor: pointer;
}
#galeriePage .width .filter-img > div.by-date .select select option {
  margin-top: 20px;
  font-size: 20px;
  background-color: transparent;
  font-family: "DM Sans", sans-serif;
  margin-left: 20px;
  cursor: pointer;
}
#galeriePage .width .filter-img > div.by-category .btn {
  margin-right: 58px;
  cursor: pointer;
  padding: 10px 30px;
}
#galeriePage .width .filter-img > div.by-category .btn:hover, #galeriePage .width .filter-img > div.by-category .btn.active {
  background-color: #303030;
  color: #FCFBFB;
}
#galeriePage .width .galerie-container {
  margin-top: 100px;
}
#galeriePage .width .galerie-container .date {
  text-align: left;
  margin-bottom: 20px;
  font-size: 22px;
  font-weight: bold;
}
#galeriePage .width .galerie-container .imgs {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#galeriePage .width .galerie-container .imgs .galerie-flex-container .galerie-imgs {
  display: flex;
  gap: 20px;
}
#galeriePage .width .galerie-container .imgs .small-grid-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 350px 200px 300px;
  width: 49%;
  gap: 20px;
}
#galeriePage .width .galerie-container .imgs .small-grid-container * {
  display: grid;
}
#galeriePage .width .galerie-container .imgs .small-grid-container img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  object-position: center;
}
#galeriePage .width .galerie-container .imgs .small-grid-container .grid-item-1 {
  grid-column: 1/3;
  grid-row: 1/1;
}
#galeriePage .width .galerie-container .imgs .small-grid-container .grid-item-2 {
  grid-column: 1/2;
  grid-row: 2/2;
}
#galeriePage .width .galerie-container .imgs .small-grid-container .grid-item-3 {
  grid-column: 1/2;
  grid-row: 3/3;
}
#galeriePage .width .galerie-container .imgs .small-grid-container .grid-item-4 {
  grid-column: 2/3;
  grid-row: 2/4;
}
#galeriePage .width .galerie-container .imgs .small-grid-container-5 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 350px 200px 300px;
  width: 49%;
  gap: 20px;
  cursor: pointer;
}
#galeriePage .width .galerie-container .imgs .small-grid-container-5 * {
  display: grid;
}
#galeriePage .width .galerie-container .imgs .small-grid-container-5 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}
#galeriePage .width .galerie-container .imgs .small-grid-container-5 .grid-item-1, #galeriePage .width .galerie-container .imgs .small-grid-container-5 .grid-item-5 {
  grid-column: 1/2;
  grid-row: 1/1;
}
#galeriePage .width .galerie-container .imgs .small-grid-container-5 .grid-item-2, #galeriePage .width .galerie-container .imgs .small-grid-container-5 .grid-item-6 {
  grid-column: 2/4;
  grid-row: 1/1;
}
#galeriePage .width .galerie-container .imgs .small-grid-container-5 .grid-item-3, #galeriePage .width .galerie-container .imgs .small-grid-container-5 .grid-item-7 {
  grid-column: 1/4;
  grid-row: 2/3;
}
#galeriePage .width .galerie-container .imgs .small-grid-container-5 .grid-item-8 {
  grid-column: 1/2;
  grid-row: 3/4;
}
#galeriePage .width .galerie-container .imgs .small-grid-container-5 .grid-item-9 {
  grid-column: 2/4;
  grid-row: 3/3;
}
#galeriePage .width .galerie-container .imgs .galerie-nav-container {
  width: 100%;
  height: auto;
  margin: 30px 0;
  display: flex;
  flex-basis: 100%;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
}
#galeriePage .width .galerie-container .imgs .galerie-nav-container .galerie-nav {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background-color: #959595;
  cursor: pointer;
  margin: 8px;
}
#galeriePage .width .galerie-container .imgs .galerie-flex-container {
  width: 100%;
}
#galeriePage .full-img-container {
  position: fixed;
  top: 0;
  width: 100%;
  margin: auto;
  height: 100vh;
  display: none;
  background-color: #FCFBFB;
  z-index: 100;
}
#galeriePage .full-img-container #full-img-galerie {
  height: 100%;
  margin: auto;
  object-fit: contain;
}
#galeriePage .full-img-container .prev-galerie-img, #galeriePage .full-img-container .next-galerie-img {
  position: absolute;
  top: 50%;
  cursor: pointer;
}
#galeriePage .full-img-container .prev-galerie-img img, #galeriePage .full-img-container .next-galerie-img img {
  width: 100%;
  height: 100%;
  filter: brightness(0);
}
#galeriePage .full-img-container .prev-galerie-img {
  left: 2%;
}
#galeriePage .full-img-container .next-galerie-img {
  right: 2%;
}
#galeriePage .full-img-container .close-full-img {
  position: absolute;
  right: 2%;
  top: 2%;
  cursor: pointer;
}
#galeriePage .full-img-container .close-full-img img {
  width: 100%;
  height: 100%;
  filter: brightness(0);
}

footer {
  padding-top: 140px;
  padding-bottom: 50px;
  background-color: #303030;
}
footer * {
  color: #FCFBFB;
}
footer .width .details {
  margin-top: 100px;
}
footer .width .details > div {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 90px;
}
footer .width .details > div .title {
  display: flex;
  align-items: center;
  width: 30%;
}
footer .width .details > div .title img {
  width: 32px;
  height: 32px;
}
footer .width .details > div .title h3 {
  margin-left: 32px;
}
footer .width .details > div .title p {
  font-size: 32px;
  font-weight: 400;
}
footer .width .details > div .data {
  width: 60%;
  text-align: left;
}
footer .width .details > div .data p, footer .width .details > div .data a {
  text-align: left;
  font-size: 32px;
  font-weight: 400;
  line-height: 42px;
  transition: all 0.3s linear;
}
footer .width .details > div .data a:hover {
  color: #85B238;
}
footer .width .details > div .data.data-numbers > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #FCFBFB;
  padding: 16px;
}

/******************************/
@media only screen and (max-width: 1600px) {
  #documents .width .links {
    flex-wrap: wrap;
  }
  #documents .width .links .btn {
    margin-bottom: 20px;
    width: 30%;
  }
  #galerie .more {
    padding-top: 150px;
    padding-bottom: 150px;
  }
  h3 {
    font-size: 28px;
    line-height: 32px;
  }
  footer .width .details > div .data p, footer .width .details > div .data a {
    font-size: 28px;
    line-height: 32px;
  }
  #galeriePage {
    padding-top: 200px;
    padding-bottom: 150px;
  }
  #galeriePage .width .filter-img > div.by-date h2 {
    white-space: nowrap;
  }
  #galeriePage .width .filter-img > div.by-category {
    text-align: right;
  }
  #galeriePage .width .filter-img > div.by-category .btn {
    margin-right: 20px;
  }
}
@media only screen and (max-width: 1200px) {
  .width {
    padding: 0 8%;
  }
  .btn {
    font-size: 16px;
  }
  #staff {
    padding-top: 100px;
  }
  #galerie {
    padding-top: 50px;
  }
}
@media only screen and (max-width: 1064px) {
  footer .width .details > div .data p, footer .width .details > div .data a {
    font-size: 22px;
    line-height: 28px;
  }
  h3 {
    font-size: 22px;
    line-height: 28px;
  }
  #staff {
    padding-top: 50px;
  }
  #staff .width {
    flex-direction: column;
  }
  #staff .width .txt {
    width: 100%;
    text-align: center;
    margin-bottom: 40px;
  }
  #staff .width .txt h2 {
    text-align: center;
    max-width: initial;
  }
  #staff .width .img {
    width: 100%;
  }
  #galeriePage .width .filter-img {
    flex-wrap: wrap;
  }
  #galeriePage .width .filter-img > div {
    width: 100%;
  }
  #galeriePage .width .filter-img > div.by-category {
    margin-top: 50px;
  }
}
@media only screen and (max-width: 800px) {
  header {
    padding: 20px 0;
  }
  #accueil {
    padding-bottom: 50px;
  }
  .btn {
    padding: 10px 25px;
  }
  .camera-domicile {
    display: none;
  }
  h2 {
    font-size: 32px;
    line-height: 42px;
  }
  #documents .width .links .btn {
    margin-bottom: 20px;
    width: 45%;
  }
  #documents .pdf-file iframe.active {
    height: 300px;
    margin-bottom: 50px;
  }
  #galerie .width .title h2 {
    margin-bottom: initial;
    max-width: 10ch;
  }
  footer .width .details > div {
    flex-direction: column;
  }
  footer .width .details > div .title {
    width: 100%;
    margin-bottom: 40px;
  }
  footer .width .details > div .data {
    width: 100%;
  }
  footer .width .details > div .data.data-numbers {
    width: 100%;
  }
}
@media only screen and (max-width: 600px) {
  header {
    height: 100px;
  }
  header .width .logo {
    width: 150px;
  }
  #accueil {
    padding-top: 100px;
  }
  #staff {
    padding-bottom: 0px;
    padding-top: 0px;
  }
  #galerie .width .small-imgs .img {
    width: 70px;
    margin: 1px;
    height: 70px;
    cursor: pointer;
    transition: all 1s linear;
  }
  #galerie .width .galery-container {
    height: 500px;
  }
  #galerie .width .galery-container .main-img {
    width: 100%;
    height: 500px;
  }
  #galerie .width .galery-container .main-img video {
    width: 100%;
    height: 100%;
  }
  #galerie .more {
    padding-top: 100px;
    padding-bottom: 100px;
  }
  #galeriePage .width .filter-img > div.by-date h2 {
    white-space: initial;
  }
  #galeriePage .width .filter-img > div.by-date .select {
    width: 100%;
  }
  #galeriePage .width .filter-img > div.by-category {
    text-align: center;
  }
  #galeriePage .width .galerie-container .imgs .small-grid-container, #galeriePage .width .galerie-container .imgs .small-grid-container-5 {
    grid-template-rows: 250px 100px 200px;
  }
  footer {
    padding-top: 100px;
    padding-bottom: 20px;
  }
  footer .width .details {
    margin-top: 80px;
  }
  footer .width .details > div .data.data-numbers > div {
    padding: 16px 5px;
  }
  footer .width .details > div .data a, footer .width .details > div .data p {
    font-size: 18px;
    line-height: 24px;
  }
}/*# sourceMappingURL=style.css.map */