/*----------------------------------------------------------
    VARIABLES
----------------------------------------------------------*/
:root {
    --font-size: 16px;
    
    --color-grey-light: #EFEFEF;
    --color-grey: #c9c9c9;
    --color-grey-medium: #525252;
    --color-grey-dark: #1a1a1a;
    
    --color-blue-light: #d6f3f6;
    --color-blue: #32bfd1;
    --color-blue-medium: #0091a3;
    --color-blue-dark: #00545f;

    --color-red-light: #f8ccd4;
    --color-red: #db0028;
    --color-red-medium: #ac001f;
    --color-red-dark: #600011;

    --color-green-light: #ccf2e3;
    --color-green: #00be75;
    --color-green-medium: #009a5f;
    --color-green-dark: #005735;

    --color-yellow-light: #f9eecc;
    --color-yellow: #deab00;
    --color-yellow-medium: #bf8c00;
    --color-yellow-dark: #795900;

    --border-radius-inputs: .5em;
    --border-radius-btn: .75em;
}

@media (max-width: 991px) {

    :root {
        --font-size: 15px;
    }

}

@media (max-width: 768px) {

    :root {
        --font-size: 14px;
    }

}

/*----------------------------------------------------------
    GENERAL
----------------------------------------------------------*/
html {
    font-size: var(--font-size);
}

body {
    margin: 0;
    background: #fff;
    color: #000;
    font-family: "Roboto",-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    line-height: 1.4;
}

* {
    box-sizing: border-box;
}

[aria-hidden="true"],
.hidden {
    display: none;
}

.red-text {
    color: var(--color-red);
}

/*----------------------------------------------------------
    SCROLLBAR
----------------------------------------------------------*/
::-webkit-scrollbar {
    width: 4px;
}

::-webkit-scrollbar-track {
    background: var(--color-grey-light);
}

::-webkit-scrollbar-thumb {
    background: var(--color-grey-dark);
}

/*----------------------------------------------------------
    HEADLINE
----------------------------------------------------------*/

h1, .headline-h1, 
h2, .headline-h2, 
h3, .headline-h3, 
h4, .headline-h4 {
    font-family: 'Heldane Display';
    line-height: 1.2;
    font-weight: 500;
}

h1, .headline-h1 {
    font-size: 2.75em;
    line-height: 1;
}

h2, .headline-h2 {
    font-size: 1.875em;
    line-height: 1.2;
    margin: 1.333em 0 .65em;
}

h3, .headline-h3 {
    font-size: 1.5em;
    margin-top: 2em;
    margin-bottom: .5em;
}
