/*
|--------------------------------------------------------------------------
| MKFX Global Styles
|--------------------------------------------------------------------------
*/

:root{

    --primary:#0d6efd;
    --success:#198754;
    --danger:#dc3545;
    --warning:#ffc107;

    --dark:#111827;
    --dark-2:#1f2937;

    --light:#f8fafc;

    --text:#e5e7eb;

    --border:#2d3748;

    --radius:12px;

}

/* -------------------------------------------------- */

body{

    background:#f8fafc;

    font-family:Inter,Arial,sans-serif;

    color:#212529;

}

/* -------------------------------------------------- */

a{

    text-decoration:none;

}

/* -------------------------------------------------- */

.section{

    padding:80px 0;

}

/* -------------------------------------------------- */

.card{

    border:none;

    border-radius:var(--radius);

}

/* -------------------------------------------------- */

.btn{

    border-radius:10px;

}