@charset "UTF-8";

/*!
 * Version - 1.1.1
 * Copyright (c) 2023 Astrolab <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.

*/

/* IMPORTS */
@import url('https://fonts.googleapis.com/css2?family=Encode+Sans+Condensed:wght@100;200;300;400;500;600;700;800;900&display=swap');
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.4.0/css/all.min.css');
@import url('../vendor/bootstrap/css/bootstrap.min.css');
@import url('typography.css');
@import url('color.css');

/*  ==========================================
*   ================= GENERAL ================
*/
* {
    font-family: var(--ff-source);
    color: var(--dark);
    /* letter-spacing: 1.1px !important; */
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

p,
li {
    /* letter-spacing: 0.5px !important; */
}

p {
    font-size: 1.2rem !important;
    font-weight: 400 !important;
}


/*  =========================================
*   ================= END GENERAL ================
*/

/*  ============================================
*   ================== HEADER ==================
*/

.topbar:hover {
    background-color: var(--yellow) !important;
}

.topbar:hover span {
    color: var(--dark) !important;
}

/*  ============================================
*   ================== END HEADER ==================
*/


/*  =========================================
*   ================== NAV ==================
*/

.nav .nav-link,
.nav .nav-link.active {
    font-size: 16px !important;
}

.nav .nav-link {
    color: var(--dark);
    font-weight: 500 !important;
    font-size: 16px !important;
}

.nav .nav-link.active {
    border-bottom: 1px solid var(--primary) !important;
    color: var(--primary) !important;
}

#nav .nav-button {
    position: relative;
}

#nav .nav-button::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;
}

#nav .nav-button:hover {
    color: var(--primary) !important;
}

#nav .nav-button:not(.active):hover::after {
    color: var(--primary) !important;
    transform: translateX(-50%) scaleX(1);
}


/*  =========================================
*   ================== END NAV ==================
*/

/*  =========================================
*   ================== FOOTER ==================
*/
footer {
    background-color: var(--secondary) !important;
    color: #000 !important;
    font-size: 14px;
    letter-spacing: 0.2px;
}

footer h5 {
    font-size: 21px !important;
    color: #000;
    font-weight: 700;
}

footer .menu-ul li {
    margin: 3.5px 0;
}

footer a {
    text-decoration: none !important;
    color: #202730 !important;
    font-weight: 400;
    font-size: 15px;
    line-height: 1.1;
    display: inline-block;
}

#copyright {
    font-size: 13px !important;
}

#copyright li a:hover {
    color: var(--primary) !important;
}

#copyright li:after {
    content: '';
    border: 0px solid var(--primary);
    border-left-width: 1px;
    margin: 0 5px;
    font-weight: bold;
}

#copyright li:last-child:after {
    content: '';
    border-left-width: 0px;
}

/*  ===============================================
*   ================== END FOOTER ==================
*/

/*  ===============================================
*   ============== 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(--primary) !important;
}

::selection {
    background-color: var(--secondary);
    color: var(--light);
}

:root {
    --primary: #00BAFF;
    --secondary: #074498;
    --yellow: #FFBD00;
    --red: #FF4949;
    --dark: #000000;
    --light: #ffffff;
    --gray: #f0f0f0;
    --light-blue: #DFF7FF;
    --green: #61BB14;

    --ff-source: 'Encode Sans Condensed', sans-serif;

}