/*-----------------------------------------------------------------------------------
 *
 * Theme Name: Flyweb Child Theme
 * Theme URI: https://flywebwp.websitelayout.net/
 * Author: Website Layout
 * Author URI: https://www.websitelayout.net/
 * Description: This is a child theme of flyweb
 * Version: 1.3
 * Template: flyweb
 * Text Domain: flyweb-child
 *
 * ----------------------------------------------------------------------------------- */
.video-height { min-height: 350px; height: 100%; }
.header-style1 .navbar-default.border-bottom.border-color-light-white { border-color: transparent !important; }
.map-down { position: relative; top:112px;}

/* Enlever affichage recaptcha */
.grecaptcha-badge {
    display: none;
}

/* Style pour le fond du popup */
.popup-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1000;
    justify-content: center;
    align-items: center;
}

/* Contenu du popup */
.popup-content {
    background: white;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    width: 90%;
    text-align: center;
    position: relative;
}

/* Bouton pour fermer le popup */
.close-popup {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    font-weight: bold;
    color: #333;
    cursor: pointer;
}

/* Animation d'apparition */
.popup-content {
    animation: fadeIn 0.3s ease-in-out;
}

@keyframes fadeIn {
    from {
        transform: scale(0.9);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Animation et style article */

    @keyframes fadeInUp {
        0% {
            opacity: 0; /* L'élément est invisible au début */
            transform: translateY(20px); /* Décalé vers le bas */
        }
        100% {
            opacity: 1; /* L'élément devient visible */
            transform: translateY(0); /* Revient à sa position normale */
        }
    }

    .custom-highlight {
        background-color: #00bfff; /* Fond bleu clair */
        color: #ffffff; /* Texte blanc */
        font-weight: bold; /* Texte en gras */
        padding: 12px 20px; /* Espacement intérieur confortable */
        border-radius: 8px; /* Coins arrondis */
        display: inline-block; /* Maintient une belle mise en forme */
        font-size: 1rem; /* Taille du texte adaptée */
        text-align: center; /* Centrer le texte */
        text-decoration: none; /* Supprime le soulignement du lien */
        box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1); /* Ombre initiale */
        animation: fadeInUp 1s ease-out; /* Animation à l'apparition */
        transition: background-color 0.3s ease, transform 0.3s ease, box-shadow 0.3s ease; /* Transition douce au survol */
    }

    .custom-highlight:hover {
        background-color: #2c3e50; /* Couleur personnalisée pour le hover */
        box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2); /* Accentuation de l'ombre */
        transform: scale(1.03); /* Agrandissement léger */
        color: #ffffff; /* Le texte reste blanc et lisible */
    }


/* H1 Blog */
.page-title-section h1 {
    font-size: 50px;
}
.page-title-section ul li:last-child {
    text-transform: none;
}




body, html {
    overflow-x: hidden !important;
}
