/*
========================
======================== RESET
========================
*/

*{
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
}

:root{
    --lightBlue: #1168ad;
    --darkBlue: #074e87;

    --lightYellow: #ffdd00;
    --darkYellow: #f7c221;

    --lightGrey: #f3f6f8;
    --darkGrey: #d7dde2;

    --lightBlack: #313338;
    --darkBlack: #000000;

    --lightWhite: #FFFFFF;
    --darkWhite: #fcfbfb;
}

object,
embed,
video,
iframe,
iframe['style']{
    max-width: 100%;
    height: auto;
}

.embed-container {
    position: relative;
    padding-bottom: 56.25%;
    height: 0; overflow: hidden;
    max-width: 100%;
}

.embed-container iframe,
.embed-container object,
.embed-container embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

img{
    max-width: 100%;
    vertical-align: middle;
}

a img,
fieldset{
    border: none;
}

b,
strong {
    font-weight: bold;
}

a {
    text-decoration: none;
    cursor: pointer;

    transition: all 0.3s ease;
    -webkit-transition: all 0.3s ease;
    -moz-transition: all 0.3s ease;
}

a:hover,
a:active,
a:focus {
    outline: 0;
    text-decoration: none;
}

ul{
    list-style: none;
}

/*ICONS NORMALIZE*/
[class^="icon-"]:before,
[class*=" icon-"]:before {
    position: relative !important;
    top: .125em !Important;
    margin-right: .4em !Important;
}

.icon-notext:before {
    top: 0;
    margin-right: 0 !important;;
}