/* Reset */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section { display: block; }
body { line-height: 1; }
ol, ul { list-style: none; }
blockquote, q { quotes: none; }
blockquote:before,
blockquote:after,
q:before, q:after {
    content: "";
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

strong,
b {
    font-weight: 500;
}

body, .container, html { height: 100%; }

body {
    color: #222222;
    font-family: "Roboto", Arial, Verdana, sans-serif;
    font-variant-ligatures: none;
    font-weight: 400;
    margin: 0;
    padding: 0;
    -webkit-text-size-adjust: 100%;
}

.container {
    margin: 0 auto;
    max-width: 1536px;
}

.bg-gray { background: #f7f7f7; }
.bg-white { background-color: #ffffff; }

/* Buttons */
.button {
    background: #1356d9;
    border: 1px solid #1356d9;
    border-radius: 4px;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.25);
    box-sizing: border-box;
    color: #ffffff;
    cursor: pointer;
    display: inline-block;
    font-family: "Roboto", Arial, Verdana, sans-serif;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 0.3px;
    line-height: 46px;
    outline: none;
    overflow: hidden;
    padding: 0 19px;
    position: relative;
    text-decoration: none;
    transition-duration: 0.3s;
    transition-property: color, background-color, border-color;
    user-select: none;
    vertical-align: middle;
    -webkit-touch-callout: none;
    white-space: nowrap;
}

.button:hover {
    background-color: #092259;
    border-color: #092259;
    color: #ffffff;
}

.button:focus { outline: none; }

.button:hover,
.button:focus,
.button:active {
    color: @color_white;
    text-decoration: none;
}

.button .svg-icon svg {
    display: inline-block;
    height: inherit;
    vertical-align: middle;
    width: inherit;
}

.button .svg-icon + span {
    padding-left: 10px;
}

.button .btn-text {
    display: inline-block;
    text-align: center;
    text-shadow: none;
}

/* Links */
a {
    color: inherit;
    cursor: pointer;
    outline: none;
    text-decoration: underline;
}

a:hover,
a:active {
    text-decoration: underline;
    color: #1356d9;
}

/* Lists */
ul {
    list-style-type: disc;
    text-align: left;
}

/* Dashes */
.list-style-dash {
    list-style: none;
    padding-left: 0;
}

.list-style-dash li {
    padding-left: 12px;
}

.list-style-dash li::before {
    content: '-';
    display: inline-block;
    margin-left: -12px;
    width: 12px;
}

/* Grid */
.grid-row {
    -flex-align: flex-start;
    align-items: flex-start;
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    -ms-flex-direction: row;
    flex-direction: row;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.col {
    box-sizing: border-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
}

.col-box {
    box-sizing: border-box;
    height: 100%;
    width: 100%;
}

/* Gradient */
.bg-gradient,
.box-content { position: relative; }

.bg-gradient::before {
    background: rgba(153,153,153,.2);
    background: linear-gradient(to bottom,rgba(153,153,153,.2) 0,rgba(51,51,51,.4) 100%);
    bottom: 0;
    content: "";
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
}

/* Shadow */
.block-shadow-ambient {
    border: 1px solid rgba(0,0,0,.08);
    box-shadow: 0 1px 2px rgba(0,0,0,.08);
}

/* Text */
.text-white {
    color: #ffffff;
}

.text-white a:hover {
    color: #ffffff;
}
.text-white h1 {
    text-shadow: 0 2px 0 rgba(0,0,0,.3), 0 3px 10px rgba(0,0,0,.4), 0 5px 50px #333333;
}
.text-white p,
.text-white ul {
    text-shadow: 0 1px 2px rgba(0,0,0,.3), 0 3px 12px rgba(0,0,0,.4), 0 5px 50px #333333;
}

.text-xsmall,
.text-small {
    font-size: 14px;
    line-height: 20px;
}

/* Mobile */
@media (max-width: 532px) {
    body {
        font-size: 14px;
        line-height: 20px;
    }
    p:not(:last-child),
    ul:not(:last-child) {
        margin-bottom: 23px;
    }
    ul {
        padding-left: 16px;
    }
    li:not(:last-child) {
        margin-bottom: 8px;
    }
    .text-small ul {
        padding-left: 14px;
    }
    .h-size-18 {
        font-size: 14px;
        line-height: 20px;
        margin-bottom: 6px;
    }
    .h-size-30 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 7px;
    }
    .gutter-padding {
        padding: 10px;
    }
    .gutter-padding.mob-padding-large {
        padding: 20px;
    }
    .gutter-padding-top {
        padding-top: 10px;
    }
    .gutter-padding-top.mob-padding-large {
        padding-top: 20px;
    }
    .grid-row {
        padding: 0 5px;
    }
    .col {
        padding: 0 5px 10px;
    }
    .button {
        width: 100%;
    }
}

/* Tablet */
@media (min-width: 533px) and (max-width: 1024px) {
    body {
        font-size: 16px;
        line-height: 22px;
    }
    p:not(:last-child),
    ul:not(:last-child) {
        margin-bottom: 25px;
    }
    ul {
        padding-left: 18px;
    }
    li:not(:last-child) {
        margin-bottom: 10px;
    }
    .text-small ul {
        padding-left: 16px;
    }
    .text-small li:not(:last-child) {
        margin-bottom: 8px;
    }
    .h-size-18 {
        font-size: 16px;
        line-height: 22px;
        margin-bottom: 6px;
    }
    .h-size-30 {
        font-size: 24px;
        line-height: 34px;
        margin-bottom: 10px;
    }
    .gutter-padding {
        padding: 24px;
    }
    .gutter-padding-top {
        padding-top: 24px;
    }
    .grid-row {
        padding: 0 12px;
    }
    .col {
        padding: 0 12px 24px;
    }
}

/* Desktop */
@media (min-width: 1025px) {
    body {
        font-size: 18px;
        line-height: 25px;
    }
    p:not(:last-child),
    ul:not(:last-child) {
        margin-bottom: 26px;
    }
    ul {
        padding-left: 20px;
    }
    li:not(:last-child) {
        margin-bottom: 11px;
    }
    .text-small ul {
        padding-left: 18px;
    }
    .text-small li:not(:last-child) {
        margin-bottom: 10px;
    }
    .h-size-18 {
        font-size: 18px;
        line-height: 25px;
        margin-bottom: 7px;
    }
    .h-size-30 {
        font-size: 30px;
        line-height: 39px;
        margin-bottom: 9px;
    }
    .text-small {
        font-size: 16px;
        line-height: 22px;
    }
}

/* Desktop small */
@media (min-width: 1025px) and (max-width: 1279px) {
    .gutter-padding {
        padding: 32px;
    }
    .gutter-padding-top {
        padding-top: 32px;
    }
    .grid-row {
        padding: 0 16px;
    }
    .col {
        padding: 0 16px 32px;
    }
}

/* Desktop large */
@media (min-width: 1280px) {
    .gutter-padding {
        padding: 44px;
    }
    .gutter-padding-top {
        padding-top: 44px;
    }
    .grid-row {
        padding: 0 22px;
    }
    .col {
        padding: 0 22px 44px;
    }
}
