@charset "UTF-8";

/*!
 * Version - 1.1.1
 * Copyright (c) 2025 Webstudio <info@astrolab.com>
 * 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/bootstrap/css/bootstrap.min.css');
@import url('../vendor/scrollcue/css/scrollCue.css');
@import url('color.css');
@import url('typography.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);
}

.form-control {
    border-color: #222222;
}

.form-floating>label {
    color: #222222 !important;
}

.form-check-input {
    width: 1.2em;
    height: 1.2em;
    margin-top: .25em;
    border-color: #000000;
}

.form-check-input:checked {
    background-color: var(--secondary);
    border-color: var(--secondary);
}

.text-dark {
    color: var(--dark) !important;
}

#header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    transition: background-color 0.3s ease;
    z-index: 1000;
}

#header.light {
    background-color: var(--primary);
    color: var(--primary);
    box-shadow: rgba(100, 100, 111, 0.2) 0px 7px 29px 0px;
    border-bottom: 0px;
}

#main-nav .nav-link {
    color: var(--light);
    font-weight: 400;
    font-size: 14px;
    padding: 0.75rem 1.5rem;
    border-radius: 5px;
}

#main-nav .nav-link.active {
    background-color: #fdf9ff40;
    width: auto;
}

#main-nav .nav-item {
    padding-left: 0.75rem;
    padding-right: 0.75rem;
    transition: background .3s;
}

#main-nav .nav-item:hover .nav-link:not(.active) {
    background-color: #fdf9ff40;
    width: auto;
}

/*  =========================================
*   ================== FOOTER ==================
*/
footer {
    background: #222222 !important;
    color: var(--light) !important;
    font-size: 14px;
    letter-spacing: 0.2px;
}

footer #copyright {
    border-top: 0.5px solid var(--secondary);
}


/*  =========================================
*   ================== END FOOTER ==================
*/

/*  =========================================
*   ================== EFFECT ==================
*/
@-webkit-keyframes zoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes AmsZoomIn {
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

.ams-zoomIn {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-name: AmsZoomIn;
    animation-name: AmsZoomIn;
}

/*  =========================================
*   ================== END EFFECT ==================
*/

/*  ===============================================
*   ============== Variables Global ===============
*/

/*  ===============================================
*   ============== 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: #4F2271;
    --secondary: #5FA4AC;
    --dark: #000000;
    --light: #ffffff;
    --gray: #f0f0f0;
    --light-blue: #DFF7FF;

    --ff-source: "Inter", sans-serif;
}