@import url('https://fonts.googleapis.com/css2?family=Inter:wght@100..900&display=swap');

* {
    margin: 0;
    padding: 0;
    text-decoration: none;
    box-sizing: border-box;
    font-family: "Inter", sans-serif;
}

body {
    background-color: #f5f8ff;
}

.titre {
    position: relative;
    justify-content: center;
    align-items: center;
    margin-top: 180px;
    text-decoration: underline #dfb246;
}

.titre h1 {
    font-weight: 800;
    font-size: 3.4em;
    text-align: center;
    color: #dfb246;
    margin-bottom: 70px;
}

.Texte {
    margin: 40px 100px 0 100px;
}

.Texte h2 {
    font-weight: 700;
    color: #dfb246;
}

.Texte p {
    margin-top: 15px;
    font-weight: 400;
}

.Texte ul li {
    margin-top: 10px;
    font-weight: 500;
}

.custom-list {
    list-style-type: none;
    /* Supprime les puces par défaut */
    padding: 0;
    margin: 0;
}

.custom-list li {
    position: relative;
    /* Nécessaire pour positionner le pseudo-élément */
    padding-left: 20px;
    /* Espace pour les points */
    margin-bottom: 5px;
    /* Espacement entre les éléments */
}

.custom-list li::before {
    content: '•';
    /* Utilise un point comme contenu */
    position: absolute;
    /* Positionne le point par rapport à l'élément de liste */
    left: 0;
    /* Aligne le point à gauche */
    color: #dfb246;
    /* Couleur or */
    font-size: 1.5em;
    /* Taille du point */
    line-height: 1;
    /* Assure que le point est centré verticalement */
}

.Texte a {
    font-weight: 800;
    color: #dfb246;
    cursor: pointer;
}

.Texte a:hover {
    text-decoration: underline;
}

.liOr {
    color: #dfb246;
    cursor: pointer;
}

.liOr p {
    font-weight: 800;
}

.liOr:hover {
    text-decoration: underline;
}

#popup-overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10100;
    display: none;
}

#popup-overlay.open {
    display: block !important;
}

.popup-exit {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 15000;
}

.popup-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 20000;
}

.footerCtnerCol ul li a[href="../mention/mention.php"] {
    color: #dfb246;
}