@font-face {
    font-family: 'Neo Sans Std Light';
    src: url('./fonts/Neo-Sans-Std-Light.otf') format('opentype');
}

@font-face {
    font-family: 'Neo Sans Std Bold';
    src: url('./fonts/Neo-Sans-Std-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'Neo Sans Std Black';
    src: url('./fonts/Neo-Sans-Std-Black.otf') format('opentype');
}

@font-face {
    font-family: 'Neo Sans Std Medium';
    src: url('./fonts/Neo-Sans-Std-Medium.otf') format('opentype');
}
@font-face {
    font-family: 'Neo Sans Std Regular';
    src: url('./fonts/Neo-Sans-Std-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Calibri Bold';
    src: url('./fonts/Calibri-Bold.ttf') format('truetype');
}

@font-face {
    font-family: 'Calibri Regular';
    src: url('./fonts/Calibri-Regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Calibri Light';
    src: url('./fonts/Calibri-Light.ttf') format('truetype');
}

/*Chinese Fonts*/

@font-face {
    font-family: 'Han Sans Bold';
    src: url('./fonts/SourceHanSansCN-Bold.otf') format('opentype');
}

@font-face {
    font-family: 'Han Sans Medium';
    src: url('./fonts/SourceHanSansCN-Medium.otf') format('opentype');
}

@font-face {
    font-family: 'Han Sans Regular';
    src: url('./fonts/SourceHanSansCN-Regular.otf') format('opentype');
}

@font-face {
    font-family: 'Han Sans Normal';
    src: url('./fonts/SourceHanSansCN-Normal.otf') format('opentype');
}

@font-face {
    font-family: 'Han Sans Light';
    src: url('./fonts/SourceHanSansCN-Light.otf') format('opentype');
}
/**
    * Scoped to the root of the document and all its descendant elements.
   */
   :root {

    --black-primary:#130C0E;
    --black-secondary: #080707;
    --grey-primary:#474E54;
    --grey-dark:#A19E9F;
    --grey-light:#BFBFBF;
    --grey-snow-light:#C6C6C6;
    --yellow-primary:#FFC700;
    --blue-link:#0058AA;
    --blue-darker-light:#01A3C7;
    --blue-light:#21B6D7;
    --blue-snow-light:#C7EDF5;
    /* --grey-light:#E7E7E7; */
    --red-primary:#C33838;
    --green-primary:#47AF2C;
    --black-labels: #282828;

    --neo-sans-bold: "Neo Sans Std Bold";
    --neo-sans-black: "Neo Sans Std Black";
    --neo-sans-light: "Neo Sans Std Light";
    --neo-sans-medium: "Neo Sans Std Medium";
    --neo-sans-regular: "Neo Sans Std Regular";

    --calibri-bold: "Calibri Bold";
    --calibri-regular: "Calibri Regular";
    --calibri-light: "Calibri Light";

    --han-sans-bold: "Han Sans Bold";
    --han-sans-medium: "Han Sans Medium";
    --han-sans-regular: "Han Sans Regular";
    --han-sans-normal: "Han Sans Normal";
    --han-sans-light: "Han Sans Light";
}

   