/* ==========================================
   CSS VARIABLES
========================================== */

:root {

    /* Colors */
    --color-primary: #005BAC;
    --color-primary-dark: #004a8c;
    --color-secondary: #00A3E0;

    --color-white: #ffffff;
    --color-black: #222222;
    --color-text: #555555;
    --color-border: #e8e8e8;
    --color-bg: #f8f9fb;

    /* Layout */
    --container-width: 1280px;
    --header-height: 90px;
    --radius: 8px;

    /* Transition */
    --transition: all .3s ease;

    --section-space:120px;

    --section-space-small:80px;

    --section-space-large:160px;


    --h1:clamp(3rem,6vw,4.5rem);

    --h2:clamp(2.25rem,4vw,3.25rem);

    --h3:1.5rem;

    --body:1rem;

    --small:.9rem;
}

/* ==========================================
   RESET
========================================== */

*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {

    font-family: "Inter", sans-serif;
    color: var(--color-black);
    background: var(--color-white);
    line-height: 1.6;

}

img {
    max-width: 100%;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}