@charset "UTF-8";
@font-face {
  font-family: "Cinzel";
  src: url(/assets/fonts/Cinzel-VariableFont_wght.ttf);
}
@font-face {
  font-family: montserrat;
  src: url(/assets/fonts/Montserrat-VariableFont_wght.ttf);
}
/* DECLARATION DES MAPS */
/* MIXINS FOR MEDIA QUERIES */
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

body {
  margin: 0;
  background-color: #000;
}

.no-scroll {
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
  color: #fff;
}

a:hover, .button:hover {
  cursor: pointer;
}

body {
  color: #fff;
  font-family: montserrat;
  font-size: 1em;
}

h1 {
  font-size: 4em;
  font-family: Cinzel;
  text-transform: uppercase;
  text-align: center;
}

h2 {
  font-size: 1.5em;
  font-family: Cinzel;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 50px;
  text-align: center;
}

h3 {
  font-size: 1.4em;
  font-family: Cinzel;
  font-weight: 100;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.burger {
  width: 25px;
  height: 10px;
  position: relative;
  display: block;
  margin: -5px auto 0;
  top: 40%;
  transform: rotate(0);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.burger .bar {
  height: 1px;
  display: block;
  position: relative;
  background: #fff;
}
.burger .bar--top {
  transform: translateY(0) rotate(0);
  width: 40px;
}
.burger .bar--mdl {
  transform: translateY(10px) rotate(0);
  width: 30px;
}
.burger .bar--btm {
  transform: translateY(20px) rotate(0);
  width: 20px;
}
.burger--cross {
  transform: rotate(90deg);
  transition: all 0.3s cubic-bezier(0.4, 0.01, 0.165, 0.99);
}
.burger--cross .bar {
  transition: transform 0.4s cubic-bezier(0.4, 0.01, 0.165, 0.99);
  transition-delay: 0.2s;
}
.burger--cross .bar--top {
  transform: translateY(8px) rotate(45deg);
  width: 40px;
}
.burger--cross .bar--mdl {
  transform: translateY(8px) rotate(-45deg);
  width: 40px;
}
.burger--cross .bar--btm {
  opacity: 0;
}

.btn {
  background-color: rgba(255, 255, 255, 0);
  border: 0.1px solid rgba(255, 255, 255, 0.8);
  display: inline-block;
  padding: 12px 27px;
  color: #fff;
  text-transform: uppercase;
  transition: all 200ms ease-out;
  font-size: 0.7em;
}
.btn:hover {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}
.btn--bis {
  background-color: rgba(255, 255, 255, 0.8);
  color: #000;
}
.btn--bis:hover {
  background-color: rgba(0, 0, 0, 0.33);
  color: #fff;
}
.btn--ter {
  background-color: rgba(0, 0, 0, 0);
  border: 1px solid rgba(0, 0, 0, 0.2);
  color: #000;
  font-size: 1.5em;
  font-weight: 300;
}
.btn--ter:hover {
  background-color: rgba(0, 0, 0, 0.2);
  border-color: rgba(0, 0, 0, 0);
  color: #fff;
}
.btn--quad {
  background-color: white;
  border: 1px solid rgba(163, 139, 96, 0);
  color: rgba(0, 0, 0, 0.5);
}
.btn--quad:hover {
  background-color: white;
  border-color: #a38b60;
  color: #a38b60;
  cursor: pointer;
}

.carousel {
  position: relative;
  width: 100%;
  overflow: hidden;
  max-width: 100%;
  max-height: calc(100vh - 80px);
}
@media (min-width: 768px) and (max-width: 990px) {
  .carousel {
    height: calc(50vh - 80px);
  }
}
@media (max-width: 767px) {
  .carousel {
    height: calc(100vh - 80px);
  }
}
.carousel .carousel__inner {
  display: flex;
  width: 100%;
  transition: transform 0.5s ease-in-out;
}
@media (min-width: 768px) and (max-width: 990px) {
  .carousel .carousel__inner {
    height: 100%;
  }
}
@media (max-width: 767px) {
  .carousel .carousel__inner {
    height: 100%;
  }
}
.carousel .carousel__item {
  flex: 1;
  min-width: 100%;
}
.carousel .carousel__item img {
  width: 100%;
  height: auto;
  display: block;
  opacity: 0.6;
}
@media (min-width: 768px) and (max-width: 990px) {
  .carousel .carousel__item img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}
@media (max-width: 767px) {
  .carousel .carousel__item img {
    height: 100%;
    width: 100%;
    opacity: 1;
    object-fit: cover;
    object-position: center;
  }
}
.carousel .carousel__caption {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
  color: #fff;
}
.carousel .carousel__caption > p {
  margin: 10px;
}
@media (max-width: 767px) {
  .carousel .carousel__caption {
    width: 90vw;
  }
}
.carousel .carousel__dots {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  justify-content: center;
  gap: 5px;
}
.carousel .carousel__dots .dot {
  width: 8px;
  height: 8px;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  transition: all 0.3s ease;
}
.carousel .carousel__dots .dot__active {
  width: 25px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
}

header {
  position: relative;
  width: 100vw;
  height: 80px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  padding: 0 20px;
}
header .burger-ctn {
  z-index: 99;
  position: fixed;
  left: 20px;
  top: 0;
  width: 80px;
  height: 80px;
  display: inline-block;
  cursor: pointer;
}
header .header-logo {
  z-index: 99;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
header .header-logo img {
  width: 100px;
}
@media (max-width: 767px) {
  header .header-link > a {
    font-size: 0.4em;
    padding: 12px;
  }
}

nav {
  z-index: 98;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 10%;
  background-color: #000;
  display: none;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  transition: all 250ms ease-out;
}
nav .nav-menu {
  width: 80%;
  height: 70%;
  margin: 10vh 0 0 10vw;
}
nav .nav-menu .menu-links li {
  width: 100%;
  height: 10vh;
  transform: translateX(-10vw);
  opacity: 0;
}
nav .nav-menu .menu-links li a {
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.8);
  font-size: 2em;
}
nav .nav-menu .menu-links li a:hover {
  color: white;
}
@media (max-width: 767px) {
  nav .nav-menu .menu-links li a {
    font-size: 1.5em;
  }
}
nav .nav-menu .socials-links {
  position: absolute;
  right: 10vw;
  bottom: 10vh;
  height: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 990px) {
  nav .nav-menu .socials-links {
    height: 15vh;
  }
}
@media (max-width: 767px) {
  nav .nav-menu .socials-links {
    height: 15vh;
  }
}
nav .nav-menu .socials-links .fab {
  font-size: 2em;
  color: rgba(255, 255, 255, 0.8);
}
nav .nav-menu .socials-links .fab:hover {
  color: white;
}

.nav-open {
  display: flex;
  height: 100%;
  transition: all 250ms ease-out;
}
.nav-open .nav-menu .menu-links li {
  transform: translateX(0);
  opacity: 1;
}
.nav-open .a {
  transition: all 250ms ease-out;
  transition-delay: 1250ms;
}
.nav-open .b {
  transition: all 250ms ease-out;
  transition-delay: 1400ms;
}
.nav-open .c {
  transition: all 250ms ease-out;
  transition-delay: 1550ms;
}
.nav-open .d {
  transition: all 250ms ease-out;
  transition-delay: 1700ms;
}

footer {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
footer .newsletter {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 5vh;
  padding: 10vh 5vw 10vh 5vw;
  background-color: #000;
}
footer .newsletter > p, footer .newsletter h2 {
  color: #fff;
  text-align: center;
}
footer .newsletter p {
  margin: 0 auto 20px;
}
footer .newsletter form {
  display: flex;
  justify-content: center;
}
footer .newsletter form .input-email {
  border: 0.1px solid white;
  text-transform: uppercase;
  padding: 7px 20px;
  margin-right: 1vw;
  width: 20vw;
}
@media (min-width: 768px) and (max-width: 990px) {
  footer .newsletter form .input-email {
    width: 35vw;
  }
}
@media (max-width: 767px) {
  footer .newsletter form .input-email {
    width: 50vw;
  }
}
footer .newsletter form .input-submit {
  background-color: rgba(255, 255, 255, 0);
  border: 0.1px solid white;
  display: inline-block;
  padding: 12px 27px;
  color: #fff;
  text-transform: uppercase;
  transition: all 200ms ease-out;
  font-size: 0.7em;
}
footer .newsletter form .input-submit:hover {
  background-color: white;
  color: #000;
  cursor: pointer;
}
footer .divider {
  border: 0.1px solid rgba(255, 255, 255, 0.1);
  width: 90%;
  margin: 10px auto 5px;
}
footer .legals {
  width: 90%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  font-size: 0.7em;
}
@media (min-width: 768px) and (max-width: 990px) {
  footer .legals {
    flex-direction: column;
    align-items: center;
  }
  footer .legals > p {
    margin-top: 50px;
  }
}
@media (max-width: 767px) {
  footer .legals {
    flex-direction: column;
    align-items: center;
  }
  footer .legals > p {
    margin-top: 50px;
  }
}
footer .legals ul {
  display: flex;
  flex-direction: row;
}
footer .legals ul a {
  text-decoration: underline;
  margin: 0 12px;
}
footer .legals > p a {
  text-decoration: underline;
}
footer figure {
  height: 110px;
  padding: 5vh auto 1vh;
}
footer figure img {
  height: 100%;
}

.gallery {
  display: flex;
  flex-direction: row;
  justify-content: center;
  width: 90%;
  box-sizing: border-box;
  flex-wrap: wrap;
}
.gallery a {
  position: relative;
  font-size: 1.2em;
  color: #fff;
  vertical-align: top;
  box-sizing: border-box;
  margin: 10px 5px;
  text-align: center;
  width: 30%;
}
@media (min-width: 768px) and (max-width: 990px) {
  .gallery a {
    width: 40%;
  }
}
@media (max-width: 767px) {
  .gallery a {
    width: 85%;
  }
}
.gallery a:hover .img::after {
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(0, 0, 0);
}
.gallery .img {
  position: relative;
  overflow: hidden;
  display: block;
  width: 100%;
  padding-top: 56.25%; /* Définit un ratio 16:9 */
  background: #000;
}
.gallery .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover; /* Assure que l'image remplisse le conteneur sans distorsion */
  margin: 0;
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  opacity: 0.4;
}
.gallery .img::after {
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  transform: translate3d(-100%, 0, 0);
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.gallery .title {
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
}
.gallery .title strong {
  display: block;
  position: relative;
  font-weight: 300;
}
.gallery .title span {
  font-size: 0.5em;
  margin: 12px 30px;
}
.gallery--bis {
  width: 70%;
}
.gallery--bis a {
  width: auto;
}
.gallery--bis .img {
  width: 20vw;
  height: 35vh;
  overflow: hidden;
}
.gallery--bis .img img {
  width: 130%;
}

.gallery__bis {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px;
  padding: 50px;
}
@media (min-width: 768px) and (max-width: 990px) {
  .gallery__bis {
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  }
}
@media (max-width: 767px) {
  .gallery__bis {
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
  }
}
.gallery__bis .gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1/1; /* Cela garde les images carrées */
  display: flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s ease;
}
.gallery__bis .gallery-item a {
  display: block;
  width: 100%; /* Assure que le lien prend toute la largeur */
  height: 100%; /* Assure que le lien prend toute la hauteur */
  position: relative; /* Nécessaire pour placer l'icône et le texte */
  text-decoration: none; /* Supprime la décoration des liens */
  color: inherit; /* Garde la couleur du texte */
}
.gallery__bis .gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover; /* Remplit l'image sans la déformer */
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.gallery__bis .gallery-item figcaption, .gallery__bis .gallery-item i {
  position: absolute;
  color: white;
  opacity: 0;
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.gallery__bis .gallery-item figcaption {
  bottom: 20px; /* Place la légende en bas de l'image */
  left: 50%;
  transform: translateX(-50%);
  font-size: 16px;
  font-weight: bold;
  text-align: center;
}
.gallery__bis .gallery-item i {
  top: 50%;
  left: 50%;
  font-size: 30px;
  transform: translate(-50%, -50%);
}
.gallery__bis .gallery-item:hover img {
  transform: scale(1.05); /* Zoom léger sur hover */
  opacity: 0.3; /* Rendre l'image plus sombre */
}
.gallery__bis .gallery-item:hover figcaption, .gallery__bis .gallery-item:hover i {
  opacity: 1; /* Rendre visible la légende et l'icône */
}

.gallery__ter {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
}
.gallery__ter .gallery-item {
  width: 20vw;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 990px) {
  .gallery__ter .gallery-item {
    width: 30vw;
  }
}
@media (max-width: 767px) {
  .gallery__ter .gallery-item {
    width: 40vw;
  }
}
.gallery__ter .gallery-item img {
  width: 100%;
  cursor: pointer;
  transition: 0.3s;
}
.gallery__ter .gallery-item img:hover {
  opacity: 0.8;
}

.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  padding-top: 100px;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.9);
  overflow: auto;
}

.modal-content {
  margin: auto;
  display: block;
  max-width: 80%;
  max-height: 95%;
}

.close {
  position: absolute;
  top: 50px;
  right: 50px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
}

.pg-home .citation {
  width: 100%;
  margin-top: 20vh;
  padding-bottom: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pg-home .citation > p {
  width: 60%;
  text-align: center;
  font-size: 2em;
  font-family: Cinzel;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .pg-home .citation > p {
    font-size: 1.5em;
  }
}
.pg-home .produits {
  width: 100%;
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pg-home .divider-mountain {
  margin-top: 20vh;
  width: 100%;
}
.pg-home .divider-mountain .img {
  background: url("/assets/_img/mountain-pic.jpg") no-repeat;
  background-size: 1600px;
  background-position: 50% 80%;
  background-attachment: fixed;
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
}
@media (min-width: 768px) and (max-width: 990px) {
  .pg-home .divider-mountain .img {
    height: 50vh;
  }
}
.pg-home .divider-mountain .img .socials-links {
  width: 10vw;
  margin: 5vh auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 990px) {
  .pg-home .divider-mountain .img .socials-links {
    width: 20vw;
  }
}
@media (max-width: 767px) {
  .pg-home .divider-mountain .img .socials-links {
    width: 40vw;
  }
}
.pg-home .divider-mountain .img .socials-links .fab {
  font-size: 2em;
  color: rgba(0, 0, 0, 0.7);
}
.pg-home .divider-mountain .img .socials-links .fab:hover {
  color: black;
}
@media (max-width: 767px) {
  .pg-home .divider-mountain .btn--ter {
    font-size: 1em;
  }
}

.video-banner {
  position: relative;
  width: 100%;
  height: calc(100vh - 80px);
  overflow: hidden;
}
@media (min-width: 768px) and (max-width: 990px) {
  .video-banner {
    height: calc(50vh - 80px);
  }
}
.video-banner video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  z-index: 1;
  transform: translate(-50%, -50%);
  object-fit: cover;
}

.pg-societe {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  padding: auto 2vw;
}
.pg-societe .citation {
  width: 100%;
  padding: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 768px) and (max-width: 990px) {
  .pg-societe .citation {
    padding: 20vh 0;
  }
}
@media (max-width: 767px) {
  .pg-societe .citation {
    padding: 20vh 0;
  }
}
.pg-societe .citation > p {
  width: 60%;
  text-align: center;
  font-size: 1.6em;
  font-family: Cinzel;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .pg-societe .citation > p {
    width: 85%;
    font-size: 1em;
  }
}
.pg-societe .societe-item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 90vw;
  margin: 5vh auto;
}
@media (max-width: 767px) {
  .pg-societe .societe-item {
    flex-direction: column;
    width: 100vw;
  }
  .pg-societe .societe-item:nth-of-type(3) {
    flex-direction: column-reverse;
  }
}
.pg-societe .societe-item figure {
  position: relative;
  width: 45vw;
  height: 500px;
  overflow: hidden;
}
@media (max-width: 767px) {
  .pg-societe .societe-item figure {
    width: 100vw;
    height: 300px;
    margin-bottom: 10vh;
  }
}
.pg-societe .societe-item figure img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateX(-50%);
  min-width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease-out;
  will-change: transform;
}
.pg-societe .societe-item figure img.parallax {
  transform: translate(-50%, calc(-50% + 10px));
}
.pg-societe .societe-item > div {
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 45%;
}
@media (max-width: 767px) {
  .pg-societe .societe-item > div {
    width: 85%;
  }
}
.pg-societe .societe-item > div > p {
  line-height: 1.5em;
  font-size: 1.3em;
}
@media (max-width: 767px) {
  .pg-societe .societe-item > div > p {
    font-size: 0.8em;
  }
}

.valeurs-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  width: 90%;
  margin: 10vh auto auto;
}
@media (min-width: 768px) and (max-width: 990px) {
  .valeurs-grid {
    flex-direction: column;
    align-items: center;
  }
}
.valeurs-grid > div {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 20vw;
  margin-right: 5vw;
  margin-bottom: 10vh;
  padding: 15px;
  text-align: center;
}
@media (min-width: 768px) and (max-width: 990px) {
  .valeurs-grid > div {
    width: 40vw;
    margin: 5vh auto;
  }
}
@media (max-width: 767px) {
  .valeurs-grid > div {
    width: 60vw;
  }
}
.valeurs-grid > div > h3 {
  margin: 10px auto;
  font-weight: 500;
  z-index: 2;
}
.valeurs-grid > div > p {
  line-height: 1.65em;
  z-index: 2;
}
.valeurs-grid > div .bg {
  position: absolute;
  left: -10%;
  top: -30%;
  z-index: 1;
  font-family: Cinzel;
  font-size: 12em;
  font-weight: 500;
  color: #a38b60;
  opacity: 0, 2;
}
@media (min-width: 768px) and (max-width: 990px) {
  .valeurs-grid > div .bg {
    left: -5%;
    top: -15%;
    font-size: 6em;
  }
}
@media (max-width: 767px) {
  .valeurs-grid > div .bg {
    left: -5%;
    top: -15%;
    font-size: 6em;
  }
}

.pg-contact > h2 {
  margin: auto;
  margin-top: 10vh;
  text-align: center;
}

.pg-contact .ctn-contact-form {
  max-width: 720px;
  margin: 10vh auto;
}
@media (max-width: 767px) {
  .pg-contact .ctn-contact-form {
    max-width: 350px;
  }
}
.pg-contact .ctn-contact-form .contact-form {
  width: 100%;
}
.pg-contact .ctn-contact-form .contact-form .dbl-field {
  width: 100%;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
@media (max-width: 767px) {
  .pg-contact .ctn-contact-form .contact-form .dbl-field {
    flex-direction: column;
    margin-bottom: 0;
  }
}
.pg-contact .ctn-contact-form .contact-form .dbl-field .field {
  position: relative;
  height: 50px;
  width: calc(50% - 13px);
}
@media (max-width: 767px) {
  .pg-contact .ctn-contact-form .contact-form .dbl-field .field {
    width: 100%;
    margin-bottom: 15px;
  }
}
.pg-contact .ctn-contact-form .contact-form .field input,
.pg-contact .ctn-contact-form .contact-form .message textarea {
  height: 100%;
  width: 100%;
  outline: none;
  padding: 0 18px 0 48px;
  font-family: montserrat;
  font-size: 0.9em;
  color: #000;
  border: none;
}
.pg-contact .ctn-contact-form .contact-form .field input::placeholder,
.pg-contact .ctn-contact-form .contact-form .message textarea::placeholder {
  color: rgba(0, 0, 0, 0.5);
}
.pg-contact .ctn-contact-form .contact-form .field input:focus,
.pg-contact .ctn-contact-form .contact-form .message textarea:focus {
  border: 1px solid #a38b60;
}
.pg-contact .ctn-contact-form .contact-form i {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 0.9em;
  pointer-events: none;
  color: rgba(0, 0, 0, 0.5);
}
.pg-contact .ctn-contact-form .contact-form .field input:focus ~ i,
.pg-contact .ctn-contact-form .contact-form .message textarea:focus ~ i {
  color: #a38b60;
}
.pg-contact .ctn-contact-form .contact-form .message {
  position: relative;
}
.pg-contact .ctn-contact-form .contact-form .message i {
  top: 25px;
  font-size: 1em;
}
.pg-contact .ctn-contact-form .contact-form .message textarea {
  min-width: 100%;
  max-width: 100%;
  min-height: 25vh;
  max-height: 40vh;
  padding: 15px 20px 0 48px;
}
.pg-contact .ctn-contact-form .contact-form .button-area {
  margin: 25px 0;
}
.pg-contact .ctn-contact-form .contact-form .button-area span {
  margin-left: 30px;
  color: #a38b60;
  display: none;
}

.pg-contact .divider-mountain {
  margin-top: 20vh;
  width: 100%;
}
.pg-contact .divider-mountain .img {
  background: url("/assets/_img/mountain-pic.jpg") no-repeat;
  background-size: 1600px;
  background-position: 50% 80%;
  background-attachment: fixed;
  width: 100%;
  height: 90vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #000;
}
@media (min-width: 768px) and (max-width: 990px) {
  .pg-contact .divider-mountain .img {
    height: 50vh;
  }
}
.pg-contact .divider-mountain .img .socials-links {
  width: 10vw;
  margin: 5vh auto;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
}
@media (min-width: 768px) and (max-width: 990px) {
  .pg-contact .divider-mountain .img .socials-links {
    width: 20vw;
  }
}
@media (max-width: 767px) {
  .pg-contact .divider-mountain .img .socials-links {
    width: 40vw;
  }
}
.pg-contact .divider-mountain .img .socials-links .fab {
  font-size: 2em;
  color: rgba(0, 0, 0, 0.7);
}
.pg-contact .divider-mountain .img .socials-links .fab:hover {
  color: black;
}
@media (max-width: 767px) {
  .pg-contact .divider-mountain .btn--ter {
    font-size: 1em;
  }
}

.pg-produits .banner {
  position: relative;
  width: 100vw;
  height: calc(100vh - 80px);
}
.pg-produits .banner > div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 25vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.pg-produits .banner > figure {
  width: 100%;
  max-height: 100%;
  overflow: hidden;
}
.pg-produits .banner > figure img {
  max-width: 100%;
  max-height: 100%;
  opacity: 0.4;
}
.pg-produits .produits {
  width: 100%;
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pg-sus-products {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 10vh;
}
.pg-sus-products .show-product {
  width: 80%;
}
@media (max-width: 767px) {
  .pg-sus-products .show-product {
    width: 100%;
  }
}
.pg-sus-products .citation {
  width: 100%;
  margin-top: 20vh;
  padding-bottom: 20vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.pg-sus-products .citation > p {
  width: 60%;
  text-align: center;
  font-size: 1.7em;
  font-family: Cinzel;
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .pg-sus-products .citation > p {
    font-size: 1em;
  }
}
.pg-sus-products .citation > a {
  margin-bottom: 10px;
}
@media (max-width: 767px) {
  .pg-sus-products .citation > a {
    margin: 20px;
    text-align: center;
  }
}

.pg-catalogues .banner {
  position: relative;
  width: 100vw;
  height: calc(100vh - 80px);
}
.pg-catalogues .banner > div {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 50vw;
  height: 25vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.pg-catalogues .banner > figure {
  width: 100%;
  max-height: 100%;
  overflow: hidden;
}
.pg-catalogues .banner > figure img {
  max-width: 100%;
  max-height: 100%;
  opacity: 0.4;
}
.pg-catalogues .catalogues {
  width: 100%;
  margin-top: 10vh;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.pg-mentions-legales {
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  color: #000;
  padding-top: 10vh;
}
@media (max-width: 767px) {
  .pg-mentions-legales > h2 {
    text-align: center;
  }
}
.pg-mentions-legales section {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 60vw;
  margin: 5vh auto 5vh;
  text-align: justify;
  text-align-last: center;
  line-height: 1.5em;
}
@media (max-width: 767px) {
  .pg-mentions-legales section {
    width: 80vw;
    text-align: center;
  }
  .pg-mentions-legales section > h3 {
    font-size: 1em;
  }
  .pg-mentions-legales section > p {
    font-size: 0.8em;
  }
}

.pg-404 {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50vh;
}
.pg-404 > h1 {
  font-size: 2em;
}

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