/* ==========================================
   BUILDXCON 2027
   Global Variables
========================================== */

:root{

    /* Brand Colors */

    --primary:#0E3B78;
    --secondary:#00A651;
    --accent:#F7941D;
    --danger:#ED1C24;

    --dark:#081B33;
    --text:#344054;
    --light:#667085;

    --white:#ffffff;
    --background:#F8FAFC;
    --section:#F2F5F9;

    /* Gradients */

    --gradient-blue:linear-gradient(135deg,#0E3B78 0%,#2054A6 100%);
    --gradient-color:linear-gradient(135deg,#0E3B78,#00A651,#F7941D,#ED1C24);

    /* Typography */

    --font:'Manrope',sans-serif;

    --h1:72px;
    --h2:54px;
    --h3:42px;
    --h4:30px;
    --h5:22px;
    --h6:18px;

    --body:17px;

    /* Radius */

    --radius-xs:8px;
    --radius-sm:12px;
    --radius-md:18px;
    --radius-lg:24px;
    --radius-xl:40px;

    /* Shadow */

    --shadow-sm:0 10px 25px rgba(0,0,0,.05);

    --shadow-md:0 15px 40px rgba(0,0,0,.08);

    --shadow-lg:0 25px 70px rgba(0,0,0,.12);

    /* Transition */

    --transition:.35s ease;

    /* Container */

    --container:1320px;

    /* Section */

    --section-padding:120px;

}