@font-face {
    font-family: 'Avenir Next';
    src:url('./fonts/AvenirNext-Regular.ttf') format("truetype");
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir Next';
    src:url('./fonts/AvenirNext-Medium.ttf') format("truetype");
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir Next';
    src:url('./fonts/AvenirNext-Bold.ttf') format("truetype");
    font-weight: 700;
    font-style: normal;
}

@font-face {
    font-family: 'Avenir Next';
    src:url('./fonts/AvenirNext-RegularItalic.ttf') format("truetype");
    font-weight: 400;
    font-style: italic;
}

@font-face {
    font-family: 'Avenir Next';
    src:url('./fonts/AvenirNext-MediumItalic.ttf') format("truetype");
    font-weight: 500;
    font-style: italic;
}

@font-face {
    font-family: 'Avenir Next';
    src:url('./fonts/AvenirNext-BoldItalic.ttf') format("truetype");
    font-weight: 700;
    font-style: italic;
}

:root {
    /* primary palette */
    --k-primary: #FA4616;
    --k-primary-light: #fa4616bf;
    --k-primary-dark: #d83105;
    --k-primary-600: #002554;

    --k-primary-text: white;

    /* success palette */
    --k-success: green;
    --k-success-color: #FFFFFF;

    /* accent palette */
    --k-accent: #FA4616;
    --k-accent-color: #FFFFFF;

    /* input styling */
    --k-input-focus-box-shadow: 0 0 0 0.25rem rgba(238, 238, 238,.1);
    --k-input-focus-border-color: var(--k-primary);

    /* button styling */
    --k-button-focus-box-shadow: 0 0 0 0.25rem rgba(238, 238, 238,.1);

    /* page/content styling */
    --k-content-max-width: 1440px;
    --k-content-width: 100%;
    --k-page-padding: 48px 24px;
    --k-content-horizontal-spacing: 24px;
    --k-content-padding: 48px 24px;

    /* typography */
    --k-font-family: 'Avenir Next', Arial, Helvetica, sans-serif;

    --k-h1-font-family: 'Avenir Next', Helvetica, sans-serif;
    --k-h1-font-size: 35px;
    --k-h1-line-height: 35px;
    --k-h1-font-weight: 500;
    --k-h1-letter-spacing: normal;
    --k-h1-margin: 0 0 24px 0;

    --k-h2-font-family: 'Avenir Next',Helvetica, sans-serif;
    --k-h2-font-size: 30px;
    --k-h2-line-height: normal;
    --k-h2-font-weight: 700;
    --k-h2-letter-spacing: normal;
    --k-h2-margin: 0 0 24px 0;

    --k-h3-font-family: 'Avenir Next',Helvetica, sans-serif;
    --k-h3-font-size: 24px;
    --k-h3-font-weight: 700;
    --k-h3-line-height: normal;
    --k-h2-letter-spacing: normal;
    --k-h3-margin: 0 0 24px 0;

    --k-h4-font-family: 'Avenir Next',Helvetica, sans-serif;
    --k-h4-font-size: 22px;
    --k-h4-font-weight: 700;
    --k-h4-line-height: normal;
    --k-h2-letter-spacing: normal;
    --k-h4-margin: 0 0 24px 0;

    --k-h5-font-family: 'Avenir Next', Helvetica, sans-serif;
    --k-h5-font-size: 18px;
    --k-h5-font-weight: 700;
    --k-h5-line-height: 1.5;
    --k-h2-letter-spacing: normal;
    --k-h5-margin: 0 0 24px 0;

    --k-h6-font-family: 'Avenir Next', Helvetica, sans-serif;
    --k-h6-font-size: 16px;
    --k-h6-font-weight: 700;
    --k-h6-line-height: normal;
    --k-h2-letter-spacing: normal;
    --k-h6-margin: 0 0 24px 0;

    --k-text-font-family: 'Avenir Next', Arial, Helvetica, sans-serif;
    --k-text-font-size: 16px;
    --k-text-line-height: 1.5;
    --k-text-font-weight: 400;
    --k-text-letter-spacing: normal;
    --k-text-color: #292929;
    /* --k-text-color: #212529; */
    /* --k-text-color: #292929; */
    --k-text-margin: 0 0 24px 0;

}