
/* CUSTOM FONTS LOCATION */
/* _page_common/design/fonts/myfontItalic.woff */

/* RELATIVE PATH to CUSTOM FONTS */
/* AS we are launching it by a CALL FROM css INSIDE .folder struct. (_page_common >> design)   */
/* IT LOOKS for relative url from this folder onwards */ 
/* i.e. (_page_common >> design>>) fonts >> fontname woff file  */





@font-face 
{
  font-family: "SvetlanaNotoSans";
  src: url("fonts/NotoSans_Style_Normal_Weight_100_to_900.woff2") format("woff2");

  font-style: normal;
  font-weight: 100 900;
  font-stretch: 100%;

  font-display: swap;

}

@font-face 
{
  font-family: "SvetlanaNotoSans";
  src: url("fonts/NotoSans_Style_Italic_Weight_100_to_900.woff2") format("woff2");

  font-style: italic;
  font-weight: 100 900;
  font-stretch: 100%;

  font-display: swap;

}


/* =========================================  */
/* DEFAULT BODY font-family is DEFINED in Maa */
/* font-family: 'Roboto', Arial, sans-serif;  */
/* =========================================  */



/* H1 */
.font-header-H1
{
    font-family: 'SvetlanaNotoSans';
    font-size: 32px;
    font-weight: bold;
    line-height: 40px;
    margin-top: 20px;
    margin-bottom: 20px;
}

/* H2 */
.font-header-H2
{
    font-family: 'SvetlanaNotoSans';
    font-size: 28px;
    font-weight: bold;
    line-height: 36px;
    margin-top: 18px;
    margin-bottom: 18px;
}

/* H3 */
.font-header-H3
{
    font-family: 'SvetlanaNotoSans';
    font-size: 24px;
    font-weight: bold;
    line-height: 32px;
    margin-top: 16px;
    margin-bottom: 16px;
}

/* H4 */
.font-header-H4
{
    font-family: 'SvetlanaNotoSans';
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    margin-top: 14px;
    margin-bottom: 14px;
}


/* H4 - Golden Font */
.font-header-H4-gold
{
    font-family: 'SvetlanaNotoSans';
    font-size: 20px;
    font-weight: bold;
    line-height: 28px;
    margin-top: 14px;
    margin-bottom: 14px;
    color: rgb(255,192,0); /* golden font */
}


/* H5 */
.font-header-H5
{
    font-family: 'SvetlanaNotoSans';
    font-size: 16px;
    font-weight: bold;
    line-height: 24px;
    margin-top: 12px;
    margin-bottom: 12px;
}

/* H6 */
.font-header-H6
{
    font-family: 'SvetlanaNotoSans';
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
}

/* H6 */
.font-header-H6-white
{
    font-family: 'SvetlanaNotoSans';
    font-size: 14px;
    font-weight: bold;
    line-height: 20px;
    margin-top: 10px;
    margin-bottom: 10px;
    color: rgb(255,255,255); /* white font */

}

