﻿/*Mixin Valigner*/
/*Mixin Valigner*/
body {
    padding: 0;
    margin: 0;
    background-color: #F7F7F7;
    min-height: 100vh;
    font-family: "Open Sans", Arial, sans-serif;
}

* {
    position: relative;
    box-sizing: border-box;
}

    *:before, *:after {
        box-sizing: border-box;
    }

    *:not(.skitter, .skitter *) {
        -webkit-transition: all ease-in-out 0.25s;
        -moz-transition: all ease-in-out 0.25s;
        -ms-transition: all ease-in-out 0.25s;
        -o-transition: all ease-in-out 0.25s;
        transition: all ease-in-out 0.25s;
    }

p, a, h1, h2, h3, h4, h5, h6, div, br, li, td, article {
    -o-user-select: text;
    -moz-user-select: text;
    -webkit-user-select: text;
    -ms-user-select: text;
    user-select: text;
}

a {
    font-family: inherit;
    font-size: inherit;
    font-weight: inherit;
    color: inherit;
    text-align: inherit;
    line-height: inherit;
    text-decoration: none;
}

    a:hover {
        color: #1C3A5C;
    }

.hide {
    display: none !important;
}

.cleared::after {
    content: "";
    height: 0;
    display: block;
    clear: both;
}

:focus {
    outline: 0;
}

.clickable, a {
    cursor: pointer;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

.text-left {
    text-align: left !important;
}

.fl {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.fl-i {
    display: -webkit-inline-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-inline-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-inline-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-inline-flex;
    /* NEW - Chrome */
    display: inline-flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
}

.jc-e {
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: flex-end;
}

.jc-s {
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: flex-start;
}

.jc-c {
    -webkit-box-pack: justify;
    -webkit-justify-content: center;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: center;
}

.jc-b {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: space-between;
}

.jc-a {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-around;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: space-around;
}

.ai-e {
    -webkit-box-align: flex-end;
    -webkit-align-items: flex-end;
    -moz-box-align: flex-end;
    -ms-flex-align: flex-end;
    align-items: flex-end;
}

.ai-s {
    -webkit-box-align: flex-start;
    -webkit-align-items: flex-start;
    -moz-box-align: flex-start;
    -ms-flex-align: flex-start;
    align-items: flex-start;
}

.ai-c {
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.ai-st {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
    -moz-box-align: stretch;
    -ms-flex-align: stretch;
    align-items: stretch;
}

.as-e {
    -ms-flex-item-align: end;
    align-self: flex-end;
}

.as-s {
    -ms-flex-item-align: start;
    align-self: flex-start;
}

.as-c {
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
}

.as-st {
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
}

.fw-w {
    -moz-box-wrap: wrap;
    -webkit-box-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flexbox-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.fw-nw {
    -moz-box-wrap: nowrap;
    -webkit-box-wrap: nowrap;
    -webkit-flex-wrap: nowrap;
    -ms-flexbox-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
}

.fd-c {
    -moz-box-direction: column;
    -webkit-box-direction: column;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flexbox-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

.fd-r {
    -moz-box-direction: row;
    -webkit-box-direction: row;
    -webkit-box-orient: horizontal;
    -webkit-flex-direction: row;
    -ms-flexbox-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

.np {
    padding: 0 !important;
}

.np-r {
    padding-right: 0 !important;
}

.np-l {
    padding-left: 0 !important;
}

.np-t {
    padding-top: 0 !important;
}

.np-b {
    padding-bottom: 0 !important;
}

.np-h {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.np-v {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.nm {
    margin: 0 !important;
}

.nm-r {
    margin-right: 0 !important;
}

.nm-l {
    margin-left: 0 !important;
}

.nm-t {
    margin-top: 0 !important;
}

.nm-b {
    margin-bottom: 0 !important;
}

.nm-h {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

.nm-v {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.ns {
    margin: 0 !important;
    padding: 0 !important;
}

.ns-r {
    margin-right: 0 !important;
    padding-right: 0 !important;
}

.ns-l {
    margin-left: 0 !important;
    padding-left: 0 !important;
}

.ns-t {
    margin-top: 0 !important;
    padding-top: 0 !important;
}

.ns-b {
    margin-bottom: 0 !important;
    padding-bottom: 0 !important;
}

.ns-h {
    margin-right: 0 !important;
    margin-left: 0 !important;
    padding-right: 0 !important;
    padding-left: 0 !important;
}

.ns-v {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.videoWrapper {
    padding-bottom: 56.25%;
    /* 16:9 */
    padding-top: 25px;
    height: 0;
}

    .videoWrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

@media only screen and (max-width: 500px) {
    .np-xxs {
        padding: 0 !important;
    }

    .np-r-xxs {
        padding-right: 0 !important;
    }

    .np-l-xxs {
        padding-left: 0 !important;
    }

    .np-t-xxs {
        padding-top: 0 !important;
    }

    .np-b-xxs {
        padding-bottom: 0 !important;
    }

    .np-h-xxs {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .np-v-xxs {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .nm-xxs {
        margin: 0 !important;
    }

    .nm-r-xxs {
        margin-right: 0 !important;
    }

    .nm-l-xxs {
        margin-left: 0 !important;
    }

    .nm-t-xxs {
        margin-top: 0 !important;
    }

    .nm-b-xxs {
        margin-bottom: 0 !important;
    }

    .nm-h-xxs {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .nm-v-xxs {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .ns-xxs {
        margin: 0 !important;
        padding: 0 !important;
    }

    .ns-r-xxs {
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    .ns-l-xxs {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .ns-t-xxs {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .ns-b-xxs {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .ns-h-xxs {
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .ns-v-xxs {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .jc-e-xxs {
        -webkit-box-pack: justify;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: flex-end;
    }

    .jc-s-xxs {
        -webkit-box-pack: justify;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: flex-start;
    }

    .jc-c-xxs {
        -webkit-box-pack: justify;
        -webkit-justify-content: center;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: center;
    }

    .jc-b-xxs {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: space-between;
    }

    .jc-a-xxs {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-around;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: space-around;
    }

    .hidden-xxs {
        display: none !important;
    }

    .show-sm {
        display: none !important;
    }

    .show-md {
        display: none !important;
    }

    .show-lg {
        display: none !important;
    }
}

@media only screen and (max-width: 767px) {
    .np-xs {
        padding: 0 !important;
    }

    .np-r-xs {
        padding-right: 0 !important;
    }

    .np-l-xs {
        padding-left: 0 !important;
    }

    .np-t-xs {
        padding-top: 0 !important;
    }

    .np-b-xs {
        padding-bottom: 0 !important;
    }

    .np-h-xs {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .np-v-xs {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .nm-xs {
        margin: 0 !important;
    }

    .nm-r-xs {
        margin-right: 0 !important;
    }

    .nm-l-xs {
        margin-left: 0 !important;
    }

    .nm-t-xs {
        margin-top: 0 !important;
    }

    .nm-b-xs {
        margin-bottom: 0 !important;
    }

    .nm-h-xs {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .nm-v-xs {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .ns-xs {
        margin: 0 !important;
        padding: 0 !important;
    }

    .ns-r-xs {
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    .ns-l-xs {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .ns-t-xs {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .ns-b-xs {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .ns-h-xs {
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .ns-v-xs {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hidden-xs {
        display: none !important;
    }

    .jc-e-xs {
        -webkit-box-pack: justify;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: flex-end;
    }

    .jc-s-xs {
        -webkit-box-pack: justify;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: flex-start;
    }

    .jc-c-xs {
        -webkit-box-pack: justify;
        -webkit-justify-content: center;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: center;
    }

    .jc-b-xs {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: space-between;
    }

    .jc-a-xs {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-around;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: space-around;
    }

    .ai-e-xs {
        -webkit-box-align: flex-end;
        -webkit-align-items: flex-end;
        -moz-box-align: flex-end;
        -ms-flex-align: flex-end;
        align-items: flex-end;
    }

    .ai-s-xs {
        -webkit-box-align: flex-start;
        -webkit-align-items: flex-start;
        -moz-box-align: flex-start;
        -ms-flex-align: flex-start;
        align-items: flex-start;
    }

    .ai-c-xs {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .ai-st-xs {
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -moz-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .as-e-xs {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .as-s-xs {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .as-c-xs {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .as-st-xs {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    }

    .fw-w-xs {
        -moz-box-wrap: wrap;
        -webkit-box-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flexbox-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .fw-nw-xs {
        -moz-box-wrap: nowrap;
        -webkit-box-wrap: nowrap;
        -webkit-flex-wrap: nowrap;
        -ms-flexbox-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .fd-c-xs {
        -moz-box-direction: column;
        -webkit-box-direction: column;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -ms-flexbox-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .fd-r-xs {
        -moz-box-direction: row;
        -webkit-box-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-flex-direction: row;
        -ms-flexbox-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .show-xxs {
        display: none !important;
    }

    .show-sm {
        display: none !important;
    }

    .show-md {
        display: none !important;
    }

    .show-lg {
        display: none !important;
    }
}

@media only screen and (min-width: 768px) and (max-width: 991px) {
    .np-sm {
        padding: 0 !important;
    }

    .np-r-sm {
        padding-right: 0 !important;
    }

    .np-l-sm {
        padding-left: 0 !important;
    }

    .np-t-sm {
        padding-top: 0 !important;
    }

    .np-b-sm {
        padding-bottom: 0 !important;
    }

    .np-h-sm {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .np-v-sm {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .nm-sm {
        margin: 0 !important;
    }

    .nm-r-sm {
        margin-right: 0 !important;
    }

    .nm-l-sm {
        margin-left: 0 !important;
    }

    .nm-t-sm {
        margin-top: 0 !important;
    }

    .nm-b-sm {
        margin-bottom: 0 !important;
    }

    .nm-h-sm {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .nm-v-sm {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .ns-sm {
        margin: 0 !important;
        padding: 0 !important;
    }

    .ns-r-sm {
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    .ns-l-sm {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .ns-t-sm {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .ns-b-sm {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .ns-h-sm {
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .ns-v-sm {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .jc-e-sm {
        -webkit-box-pack: justify;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: flex-end;
    }

    .jc-s-sm {
        -webkit-box-pack: justify;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: flex-start;
    }

    .jc-c-sm {
        -webkit-box-pack: justify;
        -webkit-justify-content: center;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: center;
    }

    .jc-b-sm {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: space-between;
    }

    .jc-a-sm {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-around;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: space-around;
    }

    .ai-e-sm {
        -webkit-box-align: flex-end;
        -webkit-align-items: flex-end;
        -moz-box-align: flex-end;
        -ms-flex-align: flex-end;
        align-items: flex-end;
    }

    .ai-s-sm {
        -webkit-box-align: flex-start;
        -webkit-align-items: flex-start;
        -moz-box-align: flex-start;
        -ms-flex-align: flex-start;
        align-items: flex-start;
    }

    .ai-c-sm {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .ai-st-sm {
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -moz-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .as-e-sm {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .as-s-sm {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .as-c-sm {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .as-st-sm {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    }

    .fw-w-sm {
        -moz-box-wrap: wrap;
        -webkit-box-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flexbox-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .fw-nw-sm {
        -moz-box-wrap: nowrap;
        -webkit-box-wrap: nowrap;
        -webkit-flex-wrap: nowrap;
        -ms-flexbox-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .fd-c-sm {
        -moz-box-direction: column;
        -webkit-box-direction: column;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -ms-flexbox-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .fd-r-sm {
        -moz-box-direction: row;
        -webkit-box-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-flex-direction: row;
        -ms-flexbox-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .hidden-sm {
        display: none !important;
    }

    .show-xxs {
        display: none !important;
    }

    .show-xs {
        display: none !important;
    }

    .show-md {
        display: none !important;
    }

    .show-lg {
        display: none !important;
    }
}

@media only screen and (min-width: 992px) and (max-width: 1199px) {
    .np-md {
        padding: 0 !important;
    }

    .np-r-md {
        padding-right: 0 !important;
    }

    .np-l-md {
        padding-left: 0 !important;
    }

    .np-t-md {
        padding-top: 0 !important;
    }

    .np-b-md {
        padding-bottom: 0 !important;
    }

    .np-h-md {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .np-v-md {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .nm-md {
        margin: 0 !important;
    }

    .nm-r-md {
        margin-right: 0 !important;
    }

    .nm-l-md {
        margin-left: 0 !important;
    }

    .nm-t-md {
        margin-top: 0 !important;
    }

    .nm-b-md {
        margin-bottom: 0 !important;
    }

    .nm-h-md {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .nm-v-md {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .ns-md {
        margin: 0 !important;
        padding: 0 !important;
    }

    .ns-r-md {
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    .ns-l-md {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .ns-t-md {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .ns-b-md {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .ns-h-md {
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .ns-v-md {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .jc-e-md {
        -webkit-box-pack: justify;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: flex-end;
    }

    .jc-s-md {
        -webkit-box-pack: justify;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: flex-start;
    }

    .jc-c-md {
        -webkit-box-pack: justify;
        -webkit-justify-content: center;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: center;
    }

    .jc-b-md {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: space-between;
    }

    .jc-a-md {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-around;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: space-around;
    }

    .ai-e-md {
        -webkit-box-align: flex-end;
        -webkit-align-items: flex-end;
        -moz-box-align: flex-end;
        -ms-flex-align: flex-end;
        align-items: flex-end;
    }

    .ai-s-md {
        -webkit-box-align: flex-start;
        -webkit-align-items: flex-start;
        -moz-box-align: flex-start;
        -ms-flex-align: flex-start;
        align-items: flex-start;
    }

    .ai-c-md {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .ai-st-md {
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -moz-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .as-e-md {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .as-s-md {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .as-c-md {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .as-st-md {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    }

    .fw-w-md {
        -moz-box-wrap: wrap;
        -webkit-box-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flexbox-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .fw-nw-md {
        -moz-box-wrap: nowrap;
        -webkit-box-wrap: nowrap;
        -webkit-flex-wrap: nowrap;
        -ms-flexbox-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .fd-c-md {
        -moz-box-direction: column;
        -webkit-box-direction: column;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -ms-flexbox-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .fd-r-md {
        -moz-box-direction: row;
        -webkit-box-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-flex-direction: row;
        -ms-flexbox-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .hidden-md {
        display: none !important;
    }

    .show-xxs {
        display: none !important;
    }

    .show-xs {
        display: none !important;
    }

    .show-sm {
        display: none !important;
    }

    .show-lg {
        display: none !important;
    }
}

@media only screen and (min-width: 1200px) {
    .np-lg {
        padding: 0 !important;
    }

    .np-r-lg {
        padding-right: 0 !important;
    }

    .np-l-lg {
        padding-left: 0 !important;
    }

    .np-t-lg {
        padding-top: 0 !important;
    }

    .np-b-lg {
        padding-bottom: 0 !important;
    }

    .np-h-lg {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .np-v-lg {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .nm-lg {
        margin: 0 !important;
    }

    .nm-r-lg {
        margin-right: 0 !important;
    }

    .nm-l-lg {
        margin-left: 0 !important;
    }

    .nm-t-lg {
        margin-top: 0 !important;
    }

    .nm-b-lg {
        margin-bottom: 0 !important;
    }

    .nm-h-lg {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .nm-v-lg {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .ns-lg {
        margin: 0 !important;
        padding: 0 !important;
    }

    .ns-r-lg {
        margin-right: 0 !important;
        padding-right: 0 !important;
    }

    .ns-l-lg {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }

    .ns-t-lg {
        margin-top: 0 !important;
        padding-top: 0 !important;
    }

    .ns-b-lg {
        margin-bottom: 0 !important;
        padding-bottom: 0 !important;
    }

    .ns-h-lg {
        margin-right: 0 !important;
        margin-left: 0 !important;
        padding-right: 0 !important;
        padding-left: 0 !important;
    }

    .ns-v-lg {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .jc-e-lg {
        -webkit-box-pack: justify;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: flex-end;
    }

    .jc-s-lg {
        -webkit-box-pack: justify;
        -webkit-justify-content: flex-start;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: flex-start;
    }

    .jc-c-lg {
        -webkit-box-pack: justify;
        -webkit-justify-content: center;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: center;
    }

    .jc-b-lg {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: space-between;
    }

    .jc-a-lg {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-around;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: space-around;
    }

    .ai-e-lg {
        -webkit-box-align: flex-end;
        -webkit-align-items: flex-end;
        -moz-box-align: flex-end;
        -ms-flex-align: flex-end;
        align-items: flex-end;
    }

    .ai-s-lg {
        -webkit-box-align: flex-start;
        -webkit-align-items: flex-start;
        -moz-box-align: flex-start;
        -ms-flex-align: flex-start;
        align-items: flex-start;
    }

    .ai-c-lg {
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .ai-st-lg {
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
        -moz-box-align: stretch;
        -ms-flex-align: stretch;
        align-items: stretch;
    }

    .as-e-lg {
        -ms-flex-item-align: end;
        align-self: flex-end;
    }

    .as-s-lg {
        -ms-flex-item-align: start;
        align-self: flex-start;
    }

    .as-c-lg {
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
    }

    .as-st-lg {
        -ms-flex-item-align: stretch;
        -ms-grid-row-align: stretch;
        align-self: stretch;
    }

    .fw-w-lg {
        -moz-box-wrap: wrap;
        -webkit-box-wrap: wrap;
        -webkit-flex-wrap: wrap;
        -ms-flexbox-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .fw-nw-lg {
        -moz-box-wrap: nowrap;
        -webkit-box-wrap: nowrap;
        -webkit-flex-wrap: nowrap;
        -ms-flexbox-wrap: nowrap;
        -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    }

    .fd-c-lg {
        -moz-box-direction: column;
        -webkit-box-direction: column;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -ms-flexbox-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
    }

    .fd-r-lg {
        -moz-box-direction: row;
        -webkit-box-direction: row;
        -webkit-box-orient: horizontal;
        -webkit-flex-direction: row;
        -ms-flexbox-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
    }

    .hidden-lg {
        display: none !important;
    }

    .show-xxs {
        display: none !important;
    }

    .show-xs {
        display: none !important;
    }

    .show-sm {
        display: none !important;
    }

    .show-md {
        display: none !important;
    }
}

html {
    color: #222;
    font-size: 16px;
    line-height: 1.4;
}

::-moz-selection {
    background: #b3d4fc;
    text-shadow: none;
}

::selection {
    background: #b3d4fc;
    text-shadow: none;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid #ccc;
    margin: 1em 0;
    padding: 0;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    border: 0;
    margin: 0;
    padding: 0;
}

textarea {
    resize: vertical;
}

input, textarea, select {
    -moz-border-radius: 0;
    border-radius: 0;
    border: 0;
    border-bottom: 2px solid #5C7A9C;
    margin-bottom: 15px;
    padding-left: 10px;
    outline: none;
    width: 100%;
    font-size: 14px;
}

    input:focus, textarea:focus, select:focus {
        border-bottom: 2px solid #1C3A5C;
        outline: none;
    }

input, select {
    height: 30px;
}

button, a.button {
    -moz-border-radius: 5px;
    border-radius: 5px;
    display: -webkit-inline-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-inline-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-inline-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-inline-flex;
    /* NEW - Chrome */
    display: inline-flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-pack: justify;
    -webkit-justify-content: center;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    -webkit-transition: all ease-in-out 0.25s;
    -moz-transition: all ease-in-out 0.25s;
    -ms-transition: all ease-in-out 0.25s;
    -o-transition: all ease-in-out 0.25s;
    transition: all ease-in-out 0.25s;
    margin-top: 10px;
    border: 0;
    padding: 5px 15px;
    background-color: #1C3A5C;
    color: #FFF;
}

    button:hover, a.button:hover {
        background-color: #5C7A9C;
        color: #1C3A5C;
    }

.comment {
    margin: -10px 0 10px;
    font-size: 12px;
    width: 100%;
}

label, .title {
    font-weight: bold;
    margin-bottom: 0;
    font-size: 12px;
    color: #1C3A5C;
    width: 100%;
}

.information {
    border-bottom: 2px solid #5C7A9C;
    margin-bottom: 15px;
    padding-left: 10px;
    width: 100%;
    font-size: 14px;
}

.browserupgrade {
    margin: 0.2em 0;
    background: #ccc;
    color: #000;
    padding: 0.2em 0;
}

body {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -moz-box-direction: column;
    -webkit-box-direction: column;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flexbox-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align-content: stretch;
    -webkit-align-content: stretch;
    -ms-flex-align-content: stretch;
    align-content: stretch;
}

header, footer {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -ms-flex-item-align: stretch;
    -ms-grid-row-align: stretch;
    align-self: stretch;
    -webkit-flex-grow: 1;
    -ms-flex-grow: 1;
    flex-grow: 1;
}

header {
    background-color: #1C3A5C;
    border-bottom: 6px solid #5C7A9C;
    -webkit-box-flex: 1 0 70px;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1 0 70px;
    /* OLD - Firefox 19- */
    -webkit-flex: 1 0 70px;
    /* Chrome */
    -ms-flex: 1 0 70px;
    /* IE 10 */
    flex: 1 0 70px;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    max-height: 70px;
    z-index: 99999;
}

    header .logo {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-box-pack: justify;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: flex-end;
        -webkit-box-flex: 1 0 15%;
        /* OLD - iOS 6-, Safari 3.1-6 */
        -moz-box-flex: 1 0 15%;
        /* OLD - Firefox 19- */
        width: 15%;
        /* For old syntax, otherwise collapses. */
        -webkit-flex: 1 0 15%;
        /* Chrome */
        -ms-flex: 1 0 15%;
        /* IE 10 */
        flex: 1 0 15%;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        min-width: 120px;
    }

        header .logo img {
            max-width: unset;
            max-height: unset;
            position: absolute;
            right: 0;
            height: 100px;
        }

    header .navbar {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-box-pack: justify;
        -webkit-justify-content: flex-end;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: flex-end;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-flex: 1 0 85%;
        /* OLD - iOS 6-, Safari 3.1-6 */
        -moz-box-flex: 1 0 85%;
        /* OLD - Firefox 19- */
        width: 85%;
        /* For old syntax, otherwise collapses. */
        -webkit-flex: 1 0 85%;
        /* Chrome */
        -ms-flex: 1 0 85%;
        /* IE 10 */
        flex: 1 0 85%;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
    }

        header .navbar a {
            text-align: center;
            padding: 10px;
            color: #FFF;
        }

            header .navbar a:last-child {
                padding-right: 20px;
            }

            header .navbar a:hover {
                color: #5C7A9C;
            }

    header #mobileMenu {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -moz-box-direction: column;
        -webkit-box-direction: column;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -ms-flexbox-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-align: flex-end;
        -webkit-align-items: flex-end;
        -moz-box-align: flex-end;
        -ms-flex-align: flex-end;
        align-items: flex-end;
        position: absolute;
        top: 64px;
        right: 0;
        overflow: hidden;
        height: 0;
        width: 160px;
        background: #1C3A5C;
        color: #fff;
    }

        header #mobileMenu a {
            text-align: center;
            padding: 5px 10px;
            color: #FFF;
        }

        header #mobileMenu.visible {
            height: 288px;
        }

.main-container {
    -webkit-box-flex: 2 0 auto;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 2 0 auto;
    /* OLD - Firefox 19- */
    -webkit-flex: 2 0 auto;
    /* Chrome */
    -ms-flex: 2 0 auto;
    /* IE 10 */
    flex: 2 0 auto;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -moz-box-direction: column;
    -webkit-box-direction: column;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flexbox-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

    .main-container .content-container {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -webkit-box-flex: 1 0 100%;
        /* OLD - iOS 6-, Safari 3.1-6 */
        -moz-box-flex: 1 0 100%;
        /* OLD - Firefox 19- */
        width: 100%;
        /* For old syntax, otherwise collapses. */
        -webkit-flex: 1 0 100%;
        /* Chrome */
        -ms-flex: 1 0 0;
        /* IE 10 */
        flex: 1 0 0;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -ms-flex-item-align: center;
        -ms-grid-row-align: center;
        align-self: center;
        -webkit-box-pack: justify;
        -webkit-justify-content: center;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .main-container .holder {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -moz-box-direction: column;
        -webkit-box-direction: column;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -ms-flexbox-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -webkit-justify-content: center;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-shadow: 0 0 25px -8px #808080;
        -moz-box-shadow: 0 0 25px -8px #808080;
        box-shadow: 0 0 25px -8px #808080;
        -moz-border-radius: 5px;
        border-radius: 5px;
        background-color: white;
        padding: 20px;
        margin: 20px;
        width: 1000px;
        max-width: 100%;
    }

        .main-container .holder label {
            -ms-flex-item-align: start;
            align-self: flex-start;
        }

        .main-container .holder h3:first-child {
            margin-top: 0;
        }

        .main-container .holder h3 {
            text-align: left;
            color: #1C3A5C;
        }

        .main-container .holder h4 {
            text-align: left;
            color: #1C3A5C;
        }

        .main-container .holder a {
            font-size: 13px;
            color: #5C7A9C;
            margin-top: 5px;
        }

        .main-container .holder .info {
            font-size: 12px;
            font-weight: bold;
            width: 100%;
            margin-top: 5px;
            text-align: justify;
            margin-bottom: 10px;
            color: gray;
            background-color: #FFF8E8;
            border: 1px dashed #FFAE00;
            padding: 10px;
        }

        .main-container .holder .infoForm {
            font-size: 14px;
            font-weight: bold;
            width: 100%;
            margin-top: 5px;
            text-align: justify;
            margin-bottom: 10px;
            color: white;
            background-color: gray;
            border: 1px dashed #1C3A5C;
            padding: 10px;
        }

        .main-container .holder .infofoot {
            font-size: 12px;
            font-weight: bold;
            width: 100%;
            margin-top: 5px;
            text-align: justify;
            margin-bottom: 10px;
            color: gray;
            padding: 10px;
        }

    .main-container .login {
        width: 400px;
    }

    .main-container .precios {
        margin-top: 5px;
        text-align: left;
    }

    .main-container .holderContact {
        display: -webkit-box;
        /* OLD - iOS 6-, Safari 3.1-6 */
        display: -moz-box;
        /* OLD - Firefox 19- (buggy but mostly works) */
        display: -ms-flexbox;
        /* TWEENER - IE 10 */
        display: -webkit-flex;
        /* NEW - Chrome */
        display: flex;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        -moz-box-direction: column;
        -webkit-box-direction: column;
        -webkit-box-orient: vertical;
        -webkit-flex-direction: column;
        -ms-flexbox-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        -webkit-box-pack: justify;
        -webkit-justify-content: center;
        -ms-flex-pack: justify;
        -moz-box-pack: justify;
        justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-shadow: 0 0 25px -8px #808080;
        -moz-box-shadow: 0 0 25px -8px #808080;
        box-shadow: 0 0 25px -8px #808080;
        -moz-border-radius: 5px;
        border-radius: 5px;
        background-color: white;
        padding: 20px;
        margin: 20px;
        width: 700px;
        max-width: 100%;
    }

        .main-container .holderContact h4, .main-container .holderContact h3 {
            text-align: center;
            color: #1C3A5C;
        }

        .main-container .holderContact .info {
            font-size: 12px;
            font-weight: bold;
            width: 100%;
            margin-top: 5px;
            text-align: justify;
            margin-bottom: 10px;
            color: gray;
            background-color: #FFF8E8;
            border: 1px dashed #FFAE00;
            padding: 10px;
        }

        .main-container .holderContact .infofoot {
            font-size: 12px;
            font-weight: bold;
            width: 100%;
            margin-top: 5px;
            text-align: justify;
            margin-bottom: 10px;
            color: gray;
            padding: 10px;
        }

.car-item .banner {
    width: 100%;
}

.highlight-message {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -moz-box-wrap: wrap;
    -webkit-box-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flexbox-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: space-between;
    z-index: 1;
    color: #FFF;
    font-size: 30px;
    width: 100%;
    padding: 20px;
    background: #3765ff;
}

    .highlight-message a {
        margin: 0;
        font-size: 20px;
    }

.menu {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-pack: justify;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: flex-end;
}

    .menu a {
        padding: 10px;
        color: #1C3A5C;
    }

        .menu a:last-child {
            padding-right: 20px;
        }

        .menu a:hover {
            background-color: #1C3A5C;
            color: #FFF;
        }

.steps {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -webkit-box-pack: justify;
    -webkit-justify-content: center;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: center;
    -moz-box-wrap: wrap;
    -webkit-box-wrap: wrap;
    -webkit-flex-wrap: wrap;
    -ms-flexbox-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 20px 0;
    margin-bottom: 10px;
}

    .steps > div {
        -webkit-box-shadow: 0 0 25px -8px #808080;
        -moz-box-shadow: 0 0 25px -8px #808080;
        box-shadow: 0 0 25px -8px #808080;
        -moz-border-radius: 5px;
        border-radius: 5px;
        -webkit-box-flex: 0 0 20%;
        /* OLD - iOS 6-, Safari 3.1-6 */
        -moz-box-flex: 0 0 20%;
        /* OLD - Firefox 19- */
        width: 20%;
        /* For old syntax, otherwise collapses. */
        -webkit-flex: 0 0 20%;
        /* Chrome */
        -ms-flex: 0 0 20%;
        /* IE 10 */
        flex: 0 0 20%;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
        min-width: 280px;
        background-color: white;
        padding: 20px;
        margin: 10px 5px;
    }

        .steps > div .step-head {
            display: -webkit-box;
            /* OLD - iOS 6-, Safari 3.1-6 */
            display: -moz-box;
            /* OLD - Firefox 19- (buggy but mostly works) */
            display: -ms-flexbox;
            /* TWEENER - IE 10 */
            display: -webkit-flex;
            /* NEW - Chrome */
            display: flex;
            /* NEW, Spec - Opera 12.1, Firefox 20+ */
            -webkit-box-pack: justify;
            -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
            -moz-box-pack: justify;
            justify-content: space-between;
            font-size: 26px;
            font-weight: bold;
            line-height: 1;
            color: #666666;
            margin-bottom: 5px;
        }

            .steps > div .step-head span {
                color: #3765ff;
            }

            .steps > div .step-head i {
                color: #3765ff;
                font-size: 70px;
            }

        .steps > div .step-body {
            color: #4b4b4b;
        }

footer {
    -webkit-box-flex: 1 0 63px;
    /* OLD - iOS 6-, Safari 3.1-6 */
    -moz-box-flex: 1 0 63px;
    /* OLD - Firefox 19- */
    -webkit-flex: 1 0 63px;
    /* Chrome */
    -ms-flex: 1 0 63px;
    /* IE 10 */
    flex: 1 0 63px;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    -moz-box-direction: column;
    -webkit-box-direction: column;
    -webkit-box-orient: vertical;
    -webkit-flex-direction: column;
    -ms-flexbox-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -webkit-justify-content: center;
    -ms-flex-pack: justify;
    -moz-box-pack: justify;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    max-height: 63px;
    font-size: 12px;
    color: #FFF;
    background-color: #1C3A5C;
}

    footer > div {
        width: 100%;
        text-align: center;
        padding: 7px;
    }

    footer .contact-info {
        font-size: 14px;
        background-color: #5C7A9C;
    }

        footer .contact-info i {
            margin-right: 5px;
            margin-left: 10px;
        }

    footer a:hover {
        color: #5C7A9C;
    }

/* ==========================================================================
   Helper classes
   ========================================================================== */
/*
 * Hide visually and from screen readers
 */
.hidden {
    display: none !important;
}

/*
 * Hide only visually, but have it available for screen readers:
 * http://snook.ca/archives/html_and_css/hiding-content-for-accessibility
 */
.visuallyhidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

    /*
 * Extends the .visuallyhidden class to allow the element
 * to be focusable when navigated to via the keyboard:
 * https://www.drupal.org/node/897638
 */
    .visuallyhidden.focusable:active,
    .visuallyhidden.focusable:focus {
        clip: auto;
        height: auto;
        margin: 0;
        overflow: visible;
        position: static;
        width: auto;
    }

/*
 * Hide visually and from screen readers, but maintain layout
 */
.invisible {
    visibility: hidden;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */
.clearfix:before,
.clearfix:after {
    content: " ";
    /* 1 */
    display: table;
    /* 2 */
}

.clearfix:after {
    clear: both;
}

@media only screen and (max-width: 500px) {
    header .logo {
        -webkit-box-flex: 1 0 120px;
        /* OLD - iOS 6-, Safari 3.1-6 */
        -moz-box-flex: 1 0 120px;
        /* OLD - Firefox 19- */
        width: 120px;
        /* For old syntax, otherwise collapses. */
        -webkit-flex: 1 0 120px;
        /* Chrome */
        -ms-flex: 1 0 120px;
        /* IE 10 */
        flex: 1 0 120px;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
    }

    header .navbar {
        -webkit-box-flex: 10 0 auto;
        /* OLD - iOS 6-, Safari 3.1-6 */
        -moz-box-flex: 10 0 auto;
        /* OLD - Firefox 19- */
        width: auto;
        /* For old syntax, otherwise collapses. */
        -webkit-flex: 10 0 auto;
        /* Chrome */
        -ms-flex: 10 0 auto;
        /* IE 10 */
        flex: 10 0 auto;
        /* NEW, Spec - Opera 12.1, Firefox 20+ */
    }
}

@media print {
    *,
    *:before,
    *:after,
    *:first-letter,
    *:first-line {
        background: transparent !important;
        color: #000 !important;
        box-shadow: none !important;
        text-shadow: none !important;
    }

    a,
    a:visited {
        text-decoration: underline;
    }

        a[href]:after {
            content: " (" attr(href) ")";
        }

    abbr[title]:after {
        content: " (" attr(title) ")";
    }

    a[href^="#"]:after,
    a[href^="javascript:"]:after {
        content: "";
    }

    pre,
    blockquote {
        border: 1px solid #999;
        page-break-inside: avoid;
    }

    thead {
        display: table-header-group;
    }

    tr,
    img {
        page-break-inside: avoid;
    }

    img {
        max-width: 100% !important;
    }

    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }

    h2,
    h3 {
        page-break-after: avoid;
    }
}


.no-bullets {
    list-style-type: none;
}

.lcontent-container {
    margin: auto;
    clear: both;
    align-items: center;
    display: block;
}

.validationMessage {
    color: darkgrey;
    font-size: small;
}

.titleh3 {
    color: #3399CC;
    font-weight: bold;
    margin-bottom: 5px;
}

.text-danger {
    color: #a94442;
    font-size: 12px;
}
/*# sourceMappingURL=main.css.map */

.rTable {
    display: table;
    width: 100%;
}

.rTableRow {
    display: table-row;
}

.rTableHeading {
    display: table-header-group;
    background-color: #ddd;
}

.rTableCell, .rTableHead {
    display: table-cell;
    padding: 3px 10px;
    border: 1px solid #999999;
}

.rTableHeading {
    display: table-header-group;
    background-color: #ddd;
    font-weight: bold;
}

.rTableFoot {
    display: table-footer-group;
    font-weight: bold;
    background-color: #ddd;
}

.rTableBody {
    display: table-row-group;
}

