:root {
    --orange:#FF4500;
    --bleu: #50E6E6;
}

/* All */
@media screen {

    * {
        font-family: "Belleza", sans-serif;
    }

    /* body {
        background: #f9f9f9;
    } */

    /* Pour l'animation (apariation de bas en haut). */
        /* .reveal { opacity: 0; transform: translateY(200px); }
        .revealVisible { opacity: 1; transform: translateY(0); transition: all 1s; } */
    /*  */


    section .intro {
        text-align: center;
    }

    section .intro p {
        color: #000;
        max-width: 650px;
        margin: 0 auto 0;
    }

    #breadcrumb {
    margin-top: 90px;
    height: 150px;
    position: relative;
}

#breadcrumb::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000b3;
}


#breadcrumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

#breadcrumb p {
   position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #0000000d;
    backdrop-filter: blur(24px);
    padding: .5rem 1rem;
    border-radius: 8px;
    width: 100%;
}

@media (min-width:576px) { #breadcrumb p { width: 500px; } }
@media (min-width:768px) { #breadcrumb p { width: 550px; } }


}

/* Style pour le menu mobile */
@media screen {
    
    .divMenuMobile {
        height: 100%;
        display: flex;
        flex-direction: column;
        justify-content: space-between;
        align-items: flex-start;
        /* padding: 0 32px; */
    }

    .divMenuMobile .logo {
        margin: 24px 64px 0;
    }


    .divMenuMobile ul {
        padding: 0;
        list-style-type: none;
    }

    .divMenuMobile ul li a {
        border-radius: 0px 16px 16px 0;
        display: flex;
        justify-content: flex-start;
        color: #8080800a;
        font-size: 1.15rem;
        text-decoration: none;
        color: rgb(55 65 81 / var(--tw-text-opacity, 1));
        padding: 12px 12px 12px 64px;
        gap: 16px;
        position: relative;
    }

    .divMenuMobile ul li a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }


    .divMenuMobile ul li.actif a {
        background: var(--bleu);
        color: #000;
    }

    .divMenuMobile ul li a svg {
        width: 20px;
    }

    .divMenuMobile button {
        width: 100%;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: var(--rouge);
        border: unset;
        gap: 8px;
    }

    .divMenuMobile button svg {
        width: 20px;
        color: #fff;
    }

    .divMenuMobile button span {
        color: #fff;
        font-size: 1.15rem;
    }
}


/* navbar */
@media screen {

    nav {
        height: 90px;
        background: #fff;
        box-shadow: 0 4px 5px 0 rgba(0,0,0,.14),0 1px 10px 0 rgba(0,0,0,.12),0 2px 4px -1px rgba(0,0,0,.2);
    }

    nav button {
        width: 45px;
        height: 45px;
        background: #000;
        display: flex;
        justify-content: center;
        align-items: center;
        border: unset;
        border-radius: 5px;
        position: relative;
    }

    nav button::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }


    nav button svg {
        width: 30px;
        color: #fff;
    }



    nav .icone img {
        max-width: 70px;
    }

    nav ul {
        margin-bottom: 0;
        gap: 1.5rem;
        list-style-type: none;
    }

    nav ul li {
        position: relative;
    }

    nav ul li.actif a {
        color: var(--orange);
    }


    nav ul li a {
        color: #000;
        text-decoration: none;
        font-size: 1.25rem;
        font-weight: 400;
        transition: all .1s ease-in-out;
    }

    nav ul li a:hover {
        color: var(--orange);
    }


    nav ul li.actif::before {
        width: 12px;
    }

    nav ul li::before {
        content: "";
        position: absolute;
        left: 50%;
        bottom: -12px;
        transform: translate(-50%);
        background: var(--orange);
        width: 0%;
        height: 12px;
        border-radius: 16px;
        transition: width .3s ease;
    }

    .btn-consultation {
        background: var(--bleu);
        text-decoration: none;
        padding: .5rem 1.5rem;
        border-radius: 50px;
        font-size: 1.20rem;
        font-weight: 500;
        transition: all .3s ease-out;
        color: #000;
    }   

    .btn-consultation:hover {
        background: var(--orange);
        color: #fff;
        box-shadow: 0 3px 0 #000;
    }

}








/* Footer */
@media screen {
    
    footer {
        background: #111827;
    }

    footer .logo img {
        max-width: 250px;
    }

    footer .logo span {
        font-size: 1.5rem;
        font-weight: 900;
    }

    footer h6.titreSectionFooter {
        color: #fff;
        font-size: 1.5rem;
        margin-bottom: 1rem;
        position: relative;
        padding-bottom: .3rem;
    }

    footer h6.titreSectionFooter::before {
        content: "";
        position: absolute;
        left: 0;
        bottom: -.3rem;
        background: var(--bleu);
        width: 48px;
        height: 3px;
        border-radius: 16px;
    }

    footer div.contact button {
        color: #fff;
        background: unset;
        border: unset;
        margin-bottom: 1rem;
        display: flex;
        align-items: center;
        gap: .8rem;
        width: fit-content;
        position: relative;
        padding: .3rem .8rem;
        transition: all .2s ease-in-out;
        border-radius: 8px;
    }

    footer div.contact button svg {
        width: 24px;
        color: #9097a3;
    }

    footer div.contact button span {
        font-size: 1.15rem;
        color: #9097a3;
    }

    /*  */
    footer div.contact button::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    footer div.contact button:hover {
        background: var(--bleu);
    }

    footer div.contact button:hover span,
    footer div.contact button:hover svg {
        color: #031119;
    }


    footer div.contact .socialMedia {
        padding-left: .8rem;
        max-width: 350px;
    }

    footer div.contact .socialMedia a {
        height: 48px;
        width: 48px;
        display: flex;
        justify-content: center;
        align-items: center;
        background: #9097a3;
        position: relative;
        border-radius: 40px;
        transition: all .1s ease-in-out;
    }

    footer div.contact .socialMedia a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    footer div.contact .socialMedia a:hover {
        background: var(--orange);
        transform: translateY(-2px);
    }

    footer div.contact .socialMedia a:hover span,
    footer div.contact .socialMedia a:hover svg {
        color: #fff;
    }


    footer div.contact .socialMedia a svg {
        width: 24px;
        color: #fff;
    }















    /*  */

    footer div.liens ul {
        padding: 0;
    }

    footer div.liens ul li {
        list-style-type: none;
    }

    footer div.liens ul li a {
        /* color: #676e7b; */
        text-decoration: none;
        display: flex;
        /* justify-content: center; */
        align-items: center;
        gap: .5rem;
        margin-bottom: .5rem;
        width: fit-content;
        position: relative;
        padding: .2rem 1rem .2rem .5rem;
        transition: all .2s ease-in-out;
        border-radius: 8px;
    }

    footer div.liens ul li a::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
    }

    footer div.liens ul li a:hover {
        background: var(--bleu);
    }

    footer div.liens ul li a:hover span,
    footer div.liens ul li a:hover svg {
        color: #031119;
    }

    footer div.liens ul li a svg {
        width: 16px;
        color: #9097a3;
    }
    
    footer div.liens ul li a span {
        color: #9097a3;
        font-size: 1.15rem;
    }
}