*,
*::before,
*::after {
    box-sizing: border-box;
}
body{
    overflow-x: hidden;
}
html,
body,
div,
span,
h1,
h2,
h3,
h4,
h5,
h6,
p,
a,
em,
img,
strong,
ol,
ul,
li,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    color: inherit;
    font-family: 'Montserrat';
}

ol,
ul {
    list-style: none;
}

a {
    text-decoration: none;
    color: inherit;
}

img,
picture {
    max-width: 100%;
    display: block;
}

input,
button,
textarea,
select {
    outline: none;
    font: inherit;
}

@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
}

:root {
    --color-primary-light: #B3E4F9;
    --color-primary: #37A9FD;
    --color-primary-dark: #1D6295;
    --color-f: #ffffff;
    --color-2: #222222;

    --font-size-xs: 0.75rem;
    /* 0.75rem 12px */
    --font-size-sm: 0.875rem;
    /* 0.875rem 14px */
    --font-size-base: 1rem;
    /* 1rem 16px */
    --font-size-md: 1.125rem;
    /* 1.125rem 18px */
    --font-size-lg: 1.25rem;
    /* 1.25rem 20px */
    --font-size-xl: 1.5rem;
    /* 1.5rem 24px */
    --font-size-xxl: 2rem;
    /* 2rem 32px */
    --font-size-header: 3rem;
    /* 3rem 48px */
}

body {
    font-family: var(--font-family-base);
    font-size: var(--font-size-base);
    line-height: var(--line-height-base);
    color: var(--color-dark);
    background-color: var(--color-light);
}

h1 {
    font-size: var(--font-size-header);
    /* 3rem 48px */
}


h2 {
    font-size: var(--font-size-header);
    /* 3rem 48px */
}


h3 {
    font-size: var(--font-size-xxl);
    /* 2rem 32px */
}


h4 {
    font-size: var(--font-size-xl);
    /* 1.5rem 24px */
}


h5 {
    font-size: var(--font-size-lg);
    /* 1.25rem 20px */
}


h6 {
    font-size: var(--font-size-md);
    /* 1.125rem 18px */
}


html {
    color: var(--color-2);
    /* scroll-behavior: smooth; */
}
