@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=Mulish:ital,wght@0,200..1000;1,200..1000&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');
@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);
}

/*  =========================================
*   ================== NAV ==================
*/

.nav .nav-link,
.nav .nav-link.active {
    font-size: 13.5px !important;
}

.nav .nav-link {
    color: var(--dark);
    font-weight: 450 !important;
    text-transform: uppercase;
    font-size: 13.5px !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);
}

#lang .dropdown:hover>.dropdown-menu {
    display: block;
}

#lang .dropdown>.dropdown-toggle:active {
    pointer-events: none;
}

/*  =========================================
*   ================== END NAV ==================
*/

/*  =========================================
*   ================== PAGINATION ==================
*/

.active>.page-link,
.page-link.active {
    color: var(--secondary);
    background-color: var(--primary);
    border-color: var(--primary);
}

/*  =========================================
*   ================== FOOTER ==================
*/
footer {
    background-color: #1A242D !important;
    color: var(--light) !important;
    font-size: 14px;
    letter-spacing: 0.2px;
}


/*  =========================================
*   ================== 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(--dark) !important;
}

::selection {
    background-color: var(--secondary);
    color: var(--dark);
}

:root {
    --primary: #73071E;
    --secondary: #F8CB78;
    --blue: #170F49;
    --dark: #000000;
    --light: #ffffff;
    --gray: #f0f0f0;
    --light-blue: #DFF7FF;
    --green: #61BB14;

    --ff-source: "Mulish", serif;
    --ff-title: "Wondra", sans-serif;
}