/* -------------------------- GÉNÉRAL -------------------------- */
*,
a::after,
*::before {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --gold: #A48906;
}

a,
a:hover,
a:visited {
  text-decoration: none !important;
}

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

@media (min-width: 993px){
  .desktopDisplayNone{
    display: none !important;
  }
}

@media (max-width: 992px){
  .mobileDisplayNone{
    display: none !important;
  }
}

.grecaptcha-badge{
  display: none !important;
}

.displayNone{
  display: none;
}

/* ---------------- BODY ---------------- */

body {
  font-size: 16px;
  line-height: 30px;
  background-color: #fff;
  font-family: 'Poppins';
  font-weight: 400;
  position: relative;
  overflow-x: hidden;
}

body.menuOpen{
  overflow-y: hidden;  
}

/* ---------------- BOUTON ---------------- */

.btn{
  font-size: 16px;
  line-height: 25px;
  color: #000;
  padding: 10px 55px;
  border-radius: 22px;
  background-color: transparent;
  border: solid 1px #000;
  transition: 300ms ease;
  position: relative;
  z-index: 1;
}

@media (min-width: 993px){
  .btn::after{
    content: "";
    background-color: #000;
    border-radius: 20px;
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translateY(-50%);
    height: 100%;
    width: 0%;
    transition: 300ms ease;
    z-index: -1;
    opacity: 0;
    height: calc(100% + 2px);
  }
  .btn:hover{
    color: #fff;
    transition: 300ms ease;
  }
  .btn:hover::after{
    width: 100%;
    transition: 300ms ease;
    opacity: 1;
  }
}

/* ---------------- TITRE ---------------- */

.goldenTitle,
.goldenTitle p,
.goldenTitle a{
  font-size: 76px;
  line-height: 75px;
  font-weight: 100;
  color: #000;
  text-transform: uppercase;
  /* word-break: break-all; */
}

.goldenTitle strong,
.goldenTitle strong > a{
  color: var(--gold) !important;
  font-weight: 700 !important;
  /* word-break: break-all; */
}

@media (max-width: 1500px){
  .goldenTitle,
  .goldenTitle p{
    font-size: 60px;
    line-height: 60px;
  }
}

@media (max-width: 992px){
  .goldenTitle,
  .goldenTitle p{
    font-size: 46px;
    line-height: 46px;
  }
}

/* ---------------- PARAGRAPHE ---------------- */

.paragraphe{
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.paragraphe,
.paragraphe p{
  font-size: 16px;
  line-height: 30px;
}

@media (max-width: 992px){
  .paragraphe,
  .paragraphe p{
    line-height: 26px;
  }
}

.paragraphe a{
  color: var(--gold);
  font-weight: 500;
}

/* ---------------- IMAGE MASK ---------------- */

.image__container{
  position: relative;
}

.image__container > img{
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center center;
  -webkit-mask-size: contain;
  mask-repeat: no-repeat;
  mask-position: center center;
  mask-size: contain;
  object-fit: cover;
  aspect-ratio: 1;
}

.image__container > svg{
  position: absolute;
  z-index: -1;
  height: auto;
  max-height: 100%;
  width: 75%;
}