﻿:root {
    --kelloggs-red: #BE0F34;
    --kelloggs-red-200: #C10019;
    --kelloggs-red-100: #DF1F1A;
    --kelloggs-blue: #227BAA;
    --kelloggs-orange-200: #E69B04;
    --kelloggs-orange-100: #F6A400;
    --kelloggs-blue-300: #1D91D1;
    --kelloggs-blue-200: #50A1D7;
    --kelloggs-blue-100: #BCE4EE;
    --kelloggs-green-300: #008431;
    --kelloggs-green-200: #259E2D;
    --kelloggs-green-100: #59BC2C;
    --kelloggs-yellow-200: #FCCD3F;
    --kelloggs-yellow-100: #FBD200;
    --kelloggs-purple-300: #552136;
    --kelloggs-purple-200: #5972C4;
    --kelloggs-purple-100: #837FBC;
    --kelloggs-black: #000000;
    --kelloggs-gray: #747474;
    --kelloggs-ash: #A4A4A4;
    --kelloggs-silver: #EFEFEF;
    --kelloggs-white: #fff;
    --dsv-blue: #272458;
}

body {
    font-family: 'Montserrat', sans-serif;
    line-height: 24px;
    font-size: 16px;
    font-weight: 400;
    color: var(--kelloggs-black);
}

h1 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 32px;
    line-height: 32px;
    color: var(--kelloggs-red);
    font-weight: 800;
    margin-bottom: 20px;
}

h2 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 26px;
    line-height: 26px;
    font-weight: 900;
    margin-bottom: 20px;
}

h3 {
    font-family: 'Barlow Condensed', sans-serif;
    font-size: 18px;
    line-height: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.inline_block{
    display:inline-block !important;
}

.element_padding_left {
    padding-left: 10px;
}

.padding_left_50{
    padding-left:50px;
}

.margin_top_10{
    margin-top:10px;
}

.hidden{
    display:none !important;
}

.hidden_soft {
    display: none;
}

.margin_left_10 {
    margin-left: 10px;
}

.margin_right_10 {
    margin-right: 10px;
}


.flex_row {
    display: flex;
    flex-direction: row;
    align-items: center;
}

.float_right {
    float: right;
}

.float_left
{
    float:left;
}

.display_none
{
    display:none;
}

.align_right {
    text-align:right;
}

.align_center{
    text-align:center;
}

.valign_top{
    vertical-align:top;
}

.cursor_pointer {
    cursor: pointer;
}

.font_light{
    font-weight:100;
}

.font_bold {
    font-weight: 700;
}

.corporate {
    font-family: 'Montserrat', sans-serif;
}

.no_underline{
    text-decoration:none;
}

.nowrap
{
    white-space:nowrap;
}

p 
{
    margin-bottom:20px;
}

a {
    color: #000;
}



@media(max-width:1200px) {
    body {
        line-height: 20px;
        font-size: 14px;
        font-weight: 400;
        color: var(--black);
    }

    h1 {
        font-size: 26px;
        line-height: 36px;
        margin-bottom: 20px;
    }

    h2 {
        font-size: 20px;
        line-height: 20px;
        margin-bottom: 20px;
    }

    h3 {
        font-size: 16px;
        line-height: 16px;
        margin-bottom: 10px;
    }
}



