@charset "UTF-8";

/*!
 * Version - 1.1.1
 * Copyright (c) 2023 Webstudio <info@astrolab.com> and another company

 * L’autorisation est accordée à toute personne qui en obtient une copie de ce style.
 * Il est strictement interdit de publier(vendre) sans l'autorisation préalable des auteurs.
 * Des spécialistes sont à l'origine des documents fournis.

*/
@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.7.2/css/all.min.css');
@import url('../vendor/scrollcue/css/scrollCue.css');
@import url('../vendor/bootstrap/css/bootstrap.min.css');
@import url('typography.css?_v');
@import url('color.css?');
@import url('../font/font.css');

/*  ==========================================
*   ================= GENERAL ================
*/
* {
    font-family: var(--ff-source);
    font-weight: 300;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

main {
    color: var(--dark);
}

/* header */
#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 1000;
    border-bottom: 1px solid #00000054;
}

#header.light {
    background-color: var(--light);
    color: var(--primary);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-bottom: 0px;
}

.yh-nav .yh-nav-link.active {
    border-bottom: 1px solid var(--primary) !important;
    color: var(--primary) !important;
}

.yh-nav .yh-nav-link {
    position: relative;
    padding: 5px 0px;
}

.yh-nav .yh-nav-link::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%) scaleX(0);
    transform-origin: 50% 50%;
    width: 90%;
    height: 1px;
    background-color: var(--primary);
    transition: transform 250ms;
}

.yh-nav .yh-nav-link:hover {
    color: var(--primary) !important;
}

.yh-nav .yh-nav-link:not(.active):hover::after {
    color: var(--primary) !important;
    transform: translateX(-50%) scaleX(1);
}

/*  =========================================
*   ================== FOOTER ==================
*/
footer {
    /* background: url(../images/pattern.png), var(--dark-blue-green) !important; */
    background-color: var(--primary) !important;
    color: var(--light) !important;
    font-size: 14px;
    letter-spacing: 0.2px;
}

footer #copyright {
    border-top: 0.5px solid #ffffff;
}

footer .yh-border-logo-footer {
    border-left: 1px solid rgba(255, 255, 255, .4);
    border-right: 1px solid rgba(255, 255, 255, .4);
}


/*  =========================================
*   ================== END FOOTER ==================
*/

/*  ====================================================
*   ================== Mobile devices ==================
*/
@media only screen and (max-width: 600px) {
    footer .yh-border-logo-footer {
        border: none !important;
    }
}

/*  ========================================================
*   ================== End Mobile devices ==================
*/

/*  ===============================================
*   ============== Variables Global ===============
*/

*::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 6px var(--light);
    background-color: var(--light);
}

*::-webkit-scrollbar {
    width: 10px;
    background-color: var(--light);
}

*::-webkit-scrollbar-thumb {
    background-color: var(--secondary) !important;
}

::selection {
    background-color: var(--secondary);
    color: var(--dark);
}

:root {
    --primary: #1C331C;
    --secondary: #AE9761;
    --primary-light: #C7CD9D;
    --dark: #000000;
    --light: #ffffff;
    --gray: #f0f0f0;
    --light-blue: #DFF7FF;
    --green: #61BB14;

    --ff-source: "Inter", sans-serif;
    --ff-title: "Badge", sans-serif;
}