@charset "UTF-8";
@import "plugins/bootstrap5.min.css";
@import "plugins/slick.min.css";
@import "fonts/fonts.css";
/*----------------------*/
/* -------------------- */
/* Animations */
/* -------------------- */
/*----------------------*/
/* -------------------- */
/* Animation bouton */
/* -------------------- */
/*https://ianlunn.github.io/Hover/*/
/* -------------------- */
/* Scroll fire */
/* -------------------- */
@media (min-width: 991.98px) {
  .fadeScroll, .fadeScrollRight, .fadeScrollLeft {
    opacity: 1;
    -webkit-transition: transform 0.4s, opacity 0.4s;
    -moz-transition: transform 0.4s, opacity 0.4s;
    -ms-transition: transform 0.4s, opacity 0.4s;
    -o-transition: transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
  }
  .fadeScroll.not-visible, .fadeScrollRight.not-visible, .fadeScrollLeft.not-visible {
    opacity: 0;
  }

  .fadeScrollRight, .fadeScrollLeft {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }

  .fadeScrollRight.not-visible {
    -webkit-transform: translateX(40px);
    -moz-transform: translateX(40px);
    -ms-transform: translateX(40px);
    -o-transform: translateX(40px);
    transform: translateX(40px);
  }

  .fadeScrollLeft.not-visible {
    -webkit-transform: translateX(-40px);
    -moz-transform: translateX(-40px);
    -ms-transform: translateX(-40px);
    -o-transform: translateX(-40px);
    transform: translateX(-40px);
  }

  .fadeScroll {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    -ms-transform: translateY(0);
    -o-transform: translateY(0);
    transform: translateY(0);
  }
  .fadeScroll.not-visible {
    -webkit-transform: translateY(50px);
    -moz-transform: translateY(50px);
    -ms-transform: translateY(50px);
    -o-transform: translateY(50px);
    transform: translateY(50px);
  }
}
.slick-dots li button:before {
  font-size: 15px !important;
  color: #f3f1f0 !important;
}

/* Général */
body {
  background-color: #f3f1f0;
  color: #443d2d;
  font-family: "Manrope", sans-serif;
}
body:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  position: fixed;
  background-image: url(../medias/beige-bg.jpg);
  opacity: 0.5;
  z-index: -1;
}

.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
  font-family: "Fino Sans", sans-serif;
  font-weight: bold;
}

/* Scroll bar */
::-webkit-scrollbar {
  width: 4px;
}

::-webkit-scrollbar-track {
  box-shadow: transparent;
}

::-webkit-scrollbar-thumb {
  background-color: #d7b35f;
}

/* Header */
.nav-top {
  position: absolute;
  top: 18px;
  right: 0;
  left: 0;
  text-align: right;
  z-index: 1030;
}
.nav-top a {
  height: 75px;
  width: 75px;
  display: block;
  color: #d7b35f;
  background: #443d2d;
  text-align: center;
  border-radius: 100%;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  margin-right: 30px;
}
.nav-top svg {
  position: relative;
  left: 5px;
  top: 18px;
}

/* Langue */
.langues a {
  margin: auto;
  font-size: 3rem;
  height: 100%;
  width: 100%;
  line-height: 170px;
  min-height: 170px;
  border-radius: 0;
  font-family: "Fino Sans", sans-serif;
  display: block;
  color: #443d2d;
  border: 2px solid #d7b35f;
  text-align: center;
  margin-right: 30px;
}
.langues a:hover, .langues a:focus, .langues a:active {
  color: #443d2d;
}

/* Contenu */
figure {
  position: relative;
}

.img-list {
  background-color: #d7b35f;
  margin-top: 150px;
}
.img-list .content-text {
  text-align: center;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
  break-inside: avoid;
}
.img-list .content-text article {
  border: 1px solid #f3f1f0;
  padding: 2rem;
  position: relative;
}
.img-list p {
  margin-bottom: 0;
}

.sons-list {
  background-color: #d7b35f;
  margin-top: 150px;
  text-align: center;
}
.sons-list .line {
  width: 500px;
  margin: auto;
  fill: #f3f1f0;
  display: none;
}
.sons-list article {
  position: relative;
}
.sons-list svg {
  color: #443d2d;
}
.sons-list .date {
  border-top: 1px solid #f3f1f0;
  padding-top: 1rem;
}
.sons-list .date h2 {
  margin-bottom: 0;
  display: inline-block;
}
.sons-list .row div:last-of-type .line {
  display: none;
}

.megaphone {
  fill: #443d2d;
  animation: 3s linear infinite alternate rotate;
}
.megaphone .barre:nth-child(odd) {
  animation: 750ms linear infinite alternate lum-odd;
}
.megaphone .barre:nth-child(even) {
  animation: 750ms linear infinite alternate lum-even;
}

@-webkit-keyframes lum-even {
  from {
    fill: #443d2d;
  }
  to {
    fill: rgba(68, 61, 45, 0.2);
  }
}
@-webkit-keyframes lum-odd {
  from {
    fill: rgba(68, 61, 45, 0.2);
  }
  to {
    fill: #443d2d;
  }
}
@-webkit-keyframes rotate {
  from {
    -webkit-transform: rotate(-1deg);
    -moz-transform: rotate(-1deg);
    -o-transform: rotate(-1deg);
    transform: rotate(-1deg);
  }
  to {
    -webkit-transform: rotate(2deg);
    -moz-transform: rotate(2deg);
    -o-transform: rotate(2deg);
    transform: rotate(2deg);
  }
}
main:not(.detail-son) .article h1 {
  border-bottom: 1px solid #d7b35f;
  margin-bottom: 1.5rem;
}

.article aside {
  text-align: right;
}
.article .close-article {
  background: #f3f1f0;
  color: #443d2d;
  height: 75px;
  width: 75px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  position: relative;
  top: 39px;
  right: 120px;
  z-index: 2000;
}
.article svg {
  position: relative;
  top: 14px;
}
.article .row:not(.nav-article, .content-text) {
  padding: 2rem;
  background: #625331;
  max-height: 700px;
  min-height: 500px;
}
.article .content-text {
  color: #f3f1f0;
  overflow: scroll;
  max-height: 300px;
  padding-right: 2rem;
}
.article .content-text em {
  font-style: normal;
  color: #d7b35f;
  font-size: 0.95rem;
}
.article h1 {
  color: #d7b35f;
  font-size: 2.6rem;
  padding-bottom: 1rem;
}
.article figure {
  margin-bottom: 0;
  max-height: 550px;
  overflow: hidden;
  padding-left: 4rem !important;
  padding-right: 4rem !important;
}

.detail .content-text {
  overflow: scroll;
  height: 550px;
  padding-right: 2rem;
}

.detail-son article {
  padding-top: 3rem;
  padding-bottom: 3rem;
  position: relative;
}
.detail-son h1 {
  text-align: center;
}
.detail-son .line {
  width: 250px;
  margin: auto;
  fill: #f3f1f0;
  margin-bottom: 2rem;
  display: block;
}
.detail-son .cont {
  min-height: 700px;
  position: relative;
}
.detail-son .megaphone {
  animation: none !important;
  fill: #443d2d;
  position: absolute;
  width: 70%;
  top: 0;
  left: 0;
  right: 0;
  margin: auto;
  bottom: 0;
  opacity: 0.4;
}
.detail-son h1, .detail-son .content-text, .detail-son .line, .detail-son .son-cont {
  z-index: 2;
  position: relative;
}

.son-cont {
  text-align: center;
}
.son-cont button {
  background: #f3f1f0;
  height: 75px;
  width: 75px;
  text-align: center;
  border-radius: 100%;
  display: inline-block;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  outline: 0;
  border: 0;
  margin: 0 3px;
}
.son-cont button:hover, .son-cont button:focus, .son-cont button:active {
  background-color: #d7b35f;
}
.son-cont button svg {
  fill: #443d2d;
  width: 45px;
  height: 45px;
  top: 0px;
}

#reset {
  position: absolute;
  right: 0;
  background-color: #443d2d;
}
#reset svg {
  fill: #f3f1f0;
}

.nav-article {
  padding-top: 0.5rem;
}
.nav-article ul {
  list-style: none;
  padding: 0;
  margin: 0;
}
.nav-article a {
  height: 75px;
  width: 75px;
  background: #d7b35f;
  border-radius: 100%;
  text-align: center;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important;
  position: relative;
  display: block;
}
.nav-article a svg {
  color: #443d2d;
  width: 40px;
  margin: auto;
  position: relative;
  top: 19px;
}

.btn-cat, span.cat {
  display: inline-block;
  margin: 1rem;
  padding: 1rem 2rem;
  font-family: "Fino Sans", sans-serif;
  font-size: 2rem;
}

.btn-cat {
  background: transparent;
  font-family: "Fino Sans", sans-serif;
  text-decoration: none;
  font-size: 2rem;
  border: 1px solid #443d2d;
  color: #443d2d;
}
.btn-cat:hover, .btn-cat:focus, .btn-cat:active {
  text-decoration: none;
  color: #443d2d;
}

span.cat {
  background: transparent;
  color: #443d2d;
}

/*# sourceMappingURL=style.css.map */
