@charset "UTF-8";

/*!
 * Version - 1.1.1
 * Copyright (c) 2023 Fondation AKOU <contact@fondationakou.org> and 2A Consulting

 * 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 */
/* Open Sans Condensed */
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300;0,400;0,500;0,600;0,700;0,800;1,300;1,400;1,500;1,600;1,700;1,800&display=swap');
/* @import url('https://fonts.googleapis.com/css2?family=Inter: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('../vendor/animate/animate.min.css');
@import url('typography.css');
@import url('color.css');

/*  ==========================================
*   ================= GENERAL ================
*/
* {
    font-family: var(--ff-primary);
    color: var(--dark);
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

a {
    text-decoration: none !important;
}

p,
li {
    letter-spacing: 0.5px !important;
}

p {
    font-size: 1rem !important;
}


/*  =========================================
*   ================= END GENERAL ================
*/


/*  =========================================
*   ================== NAV ==================
*/

#nav.nav .nav-link,
#nav.nav .nav-link.active {
    font-size: 14px !important;
}

#nav.nav .nav-link {
    color: var(--dark);
    font-weight: 500 !important;
    font-size: 14px !important;
}

#nav.nav .nav-link.active {
    background: var(--tertiary) !important;
    color: var(--primary) !important;
}

#nav .nav-button {
    position: relative;
}

#nav .nav-button::after,
#nav .nav-button::before {
    content: "";
    position: absolute;
    display: block;
    border: 0px solid transparent;
    width: 0%;
    height: 0%;
    transition: all 0.5s ease;
}

#nav .nav-button::after {
    width: 0%;
    height: 0%;
    top: 0;
    left: 0;
    border-top: 2px solid transparent;
    border-left: 2px solid transparent;
}

#nav .nav-button::before {
    width: 0%;
    height: 0%;
    right: 0;
    bottom: 0;
    border-bottom: 2px solid transparent;
    border-right: 2px solid transparent;
}

#nav .nav-button:not(.active):hover::before,
#nav .nav-button:not(.active):hover::after {
    width: 100%;
    height: 100%;
    border-color: var(--primary);
    color: var(--primary) !important;
}

/*  =========================================
*   ================== END NAV ==================
*/

/*  =========================================
*   ================== FOOTER ==================
*/

footer #newsletter input {
    border: 1px solid black;
    outline: none !important;
}

footer #newsletter input:focus {
    outline: none !important;
}

footer {
    /* background-color: #f1f4f6 !important; */
    color: #868686 !important;
    font-size: 14px;
}

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: #000 !important;
    font-weight: 400;
    font-size: 13px !important;
    line-height: 1.1;
    display: inline-block;
}

footer #copyright a {
    font-size: 13px !important;
    color: #fff !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(--tertiary);
}

:root {
    --primary: #0E3D59;
    --secondary: #001A2B;
    --tertiary: #F0C648;
    --marron: #FFD2A4;
    --red: #ac0000;
    --green: #31C65B;
    --dark: #000000;
    --light: #ffffff;
    --gray: #f0f0f0;
    --light-blue: #DFF7FF;

    /* --ff-primary: 'Inter', sans-serif; */
    --ff-primary: 'Nexa', sans-serif;


}