@font-face {
    font-family: 'Youth';
    src:url('../fonts/Youth.woff2') format('woff2'),
        url('../fonts/Youth.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

/*!
Project: meopta
Version: 0.0.1
*/
.s2022-cookie-bar {
    --padding: 35px;
    --cookie-background-color: #fff;
    --cookie-text-color: #000;
    --cookie-title-color: #fff;
    --cookie-button-color:  #000;
    --cookie-button-text-color: #fff;
    --cookie-switch-color:  #000;
    --cookie-button-outline-color:  #000;
    --cookie-border-color: rgb(204, 204, 204);
    --title-size: 20px;
    --text-size: 16px;
    --button-text-size: 16px;
    --title-fw: 700;
    --text-fw: 400;
    --anchor-fw: 500;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9000;
    width: 100%;
    height: fit-content;
    background-color: var(--cookie-background-color);
}

.s2022-cookie-bar, .s2022-cookie-bar div {
    box-sizing: border-box;
}

.s2022-cookie-bar h1,
.s2022-cookie-bar h2,
.s2022-cookie-bar h3,
.s2022-cookie-bar h4,
.s2022-cookie-bar h5,
.s2022-cookie-bar h6,
.s2022-cookie-bar p,
.s2022-cookie-bar a {
    margin-top: 0;
    color: var(--cookie-text-color);
    font-family: inherit;
    font-weight: var(--title-fw);
    margin-bottom: 20px;
}

.s2022-cookie-bar p {
    font-size: var(--text-size);
    font-weight: var(--text-fw);
}

.s2022-cookie-bar a {
    font-size: var(--text-size);
    font-weight: var(--anchor-fw);
}

.s2022-cookie-bar .cb-button {
    font-size: var(--button-text-size);
    margin-bottom: 0;
}

@media (max-width: 575.98px) {
    .s2022-cookie-bar {
        --title-size: 16px;
        --text-size: 14px;
        --button-text-size: 14px;
    }
}

.s2022-cookie-bar .cb-button {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0;
    min-height: 50px;
    padding: 0 25px;
    line-height: 1.5;
    cursor: pointer;
    text-decoration: none;
    -webkit-appearance: none;
    outline: none;
    box-shadow: none;
    font-family: inherit;
    overflow: hidden;
    font-weight: var(--text-fw);
    background-color: var(--cookie-button-color);
    color: var(--cookie-button-text-color);
}

.s2022-cookie-bar .cb-button:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 0%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.5);
    transition: none;
}

.s2022-cookie-bar .cb-button:hover:after {
    width: 120%;
    background-color: rgba(255, 255, 255, 0);
    transition: all 0.4s ease-out;
}

.s2022-cookie-bar .cb-button--outline {
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid var(--cookie-button-outline-color);
    color: var(--cookie-button-outline-color);
}

.s2022-cookie-bar .cb-button--outline:hover {
    background-color: var(--cookie-button-color);
    border: 1px solid var(--cookie-button-color);
    color: var(--cookie-button-text-color);
}

.s2022-cookie-bar .cb-button--outline:hover:after {
    display: none;
}

.s2022-cookie-bar__basic {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: fit-content;
    width: 100%;
    padding: calc(var(--padding) * 1.3) var(--padding);
}

.s2022-cookie-bar__advanced {
    position: fixed;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: +20;
    max-height: 90%;
    width: 30vw;
    background-color: var(--cookie-background-color);
    padding: var(--padding);
    box-shadow: 3px 3px 20px rgba(87, 87, 87, 0.5);
}

.s2022-cookie-bar__advanced p {
    margin-bottom: 0;
    max-width: 75%;
}

.s2022-cookie-bar__advanced .cb-button {
    margin: 20px 0;
}

.s2022-cookie-bar__title {
    font-size: var(--title-size);
    max-width: 75%;
}

.s2022-cookie-bar__option-wrapper {
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px;
}

.s2022-cookie-bar__option {
    position: relative;
    min-height: 30%;
    border-bottom: 1px solid var(--cookie-border-color);
    padding: 20px 0;
}

.s2022-cookie-bar__option:last-of-type {
    border-color: transparent;
}

.s2022-cookie-bar__info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 45%;
}

.s2022-cookie-bar__link {
    text-decoration: underline;
    transition: opacity 0.3s;
}

.s2022-cookie-bar__link:hover {
    opacity: 0.7;
}

.s2022-cookie-bar__subtitle {
    font-size: var(--title-size);
}

.s2022-cookie-bar__buttons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: fit-content;
}

.s2022-cookie-bar__buttons * {
    margin-bottom: 0;
    font-size: 18px;
}

.s2022-cookie-bar__buttons *:first-child {
    margin-bottom: 10px;
}

.s2022-cookie-bar__background {
    position: absolute;
    top: 0;
    background-color: #dddddd;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 38px;
}

.s2022-cookie-bar__switch {
    position: absolute;
    right: 0;
    top: 20px;
    width: 55px;
    height: 30px;
}

.s2022-cookie-bar__switch input {
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.s2022-cookie-bar__switch input[checked="true"] ~ .s2022-cookie-bar__slider {
    left: auto;
    right: 2px;
}

.s2022-cookie-bar__switch input[checked="true"] ~ .s2022-cookie-bar__slider:after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" xml:space="preserve"><path d="M202.624 478.016 0 291.36l70.512-76.56 121.456 111.856L431.44 33.984 512 99.904z"/></svg>');
    background-size: 12px;
}

.s2022-cookie-bar__switch input[checked="true"] ~ .s2022-cookie-bar__background {
    background-color: var(--cookie-switch-color);
}

.s2022-cookie-bar__slider {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background-color: var(--cookie-background-color);
    border-radius: 50%;
}

.s2022-cookie-bar__slider:after {
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" xml:space="preserve"><path d="M512 59.076 452.922 0 256 196.922 59.076 0 0 59.076 196.922 256 0 452.922 59.076 512 256 315.076 452.922 512 512 452.922 315.076 256z"/></svg>');
    width: 26px;
    height: 26px;
    display: block;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center;
}

.s2022-cookie-bar__veil {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8999;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: 0.3;
}

.disabled .s2022-cookie-bar__switch * {
    cursor: not-allowed;
}

.s2022-cookie-bar .hide {
    display: none;
}

@media (max-width: 991.98px) {
    .s2022-cookie-bar__basic {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .s2022-cookie-bar__info {
        width: 100%;
        margin-bottom: var(--padding);
    }
    .s2022-cookie-bar__advanced {
        width: 60vw;
    }
    .s2022-cookie-bar__buttons {
        width: 100%;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .s2022-cookie-bar__advanced .cb-button {
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .s2022-cookie-bar__basic {
        padding: var(--padding);
    }
    .s2022-cookie-bar__basic p {
        width: 100%;
        padding: 0;
    }
    .s2022-cookie-bar__info {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .s2022-cookie-bar__advanced {
        top: 0;
        left: 0;
        transform: translate(0, 0);
        height: 100%;
        max-height: 100%;
        width: 100%;
        z-index: +1;
    }
    .s2022-cookie-bar__advanced .cb-button {
        margin-top: auto;
    }
    .s2022-cookie-bar__option {
        min-height: 25%;
        width: 100%;
    }
    .s2022-cookie-bar__buttons {
        width: 100%;
    }
    .s2022-cookie-bar__buttons * {
        font-size: 16px;
    }
}

/*!
===============================================================
=                                                             =
=   DO NOT EDIT THIS FILE OR THE SKY WILL FALL ON YOUR HEAD   =
=                                                             =
=               !!! use custom.css instead !!!                =
=                                                             =
===============================================================
*/
/*
SCSS variables are information about icon's compiled state, stored under its original file name

.icon-home {
  width: $icon-home-width;
}

The large array-like variables contain all information about a single icon
$icon-home: x y offset_x offset_y width height total_width total_height image_path;

At the bottom of this section, we provide information about the spritesheet itself
$spritesheet: width height image $spritesheet-sprites;
*/
/*
These "retina group" variables are mappings for the naming and pairing of normal and retina sprites.

The list formatted variables are intended for mixins like `retina-sprite` and `retina-sprites`.
*/
/*
The provided mixins are intended to be used with the array-like variables

.icon-home {
  @include sprite-width($icon-home);
}

.icon-email {
  @include sprite($icon-email);
}
*/
/*
The `retina-sprite` mixin sets up rules and a media query for a sprite/retina sprite.
  It should be used with a "retina group" variable.

The media query is from CSS Tricks: https://css-tricks.com/snippets/css/retina-display-media-query/

$icon-home-group: ('icon-home', $icon-home, $icon-home-2x, );

.icon-home {
  @include retina-sprite($icon-home-group);
}
*/
/*
The `sprites` mixin generates identical output to the CSS template
  but can be overridden inside of SCSS

@include sprites($spritesheet-sprites);
*/
/*
The `retina-sprites` mixin generates a CSS rule and media query for retina groups
  This yields the same output as CSS retina template but can be overridden in SCSS

@include retina-sprites($retina-groups);
*/
/* Reset - http://meyerweb.com/eric/tools/css/reset/ v2.0 | 20110126 License: none (public domain) */
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;
}

/* BASE */
::-moz-selection {
    background: #1a4c8c;
    color: #fff;
}

::selection {
    background: #1a4c8c;
    color: #fff;
}

*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

html {
    height: 100%;
    font-size: 16px;
    overflow-x: hidden;
}

body {
    background-color: #fff;
    position: relative;
    width: 100%;
    color: #333;
    font-family: "Barlow", Helvetica, Arial, sans-serif;
    font-size: 100%;
    overflow: hidden;
    /*text-rendering: optimizeLegibility;*/
}

body:before {
    content: "1366";
    display: none;
}

@media only screen and (min-width: 1441px) {
    body:before {
        content: "1401";
    }
}

@media only screen and (max-width: 1279px) {
    body:before {
        content: "1024";
    }
}

@media only screen and (max-width: 940px) {
    body:before {
        content: "768";
    }
}

@media only screen and (max-width: 758px) {
    body:before {
        content: "600";
    }
}

@media only screen and (max-width: 560px) {
    body:before {
        content: "480";
    }
}

@media only screen and (max-width: 425px) {
    body:before {
        content: "320";
    }
}

/* Typography */
a {
    color: #333;
    text-decoration: none;
}

a:active,
a:focus {
    outline: none;
    -moz-outline-style: none;
}

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

img {
    max-width: 100%;
}

/* Helper classes */
.float:after, .lt-ie10 .container:after,
.lt-ie10 .row:after, .light-bg:after, .content-block:after, .steps:after, .category__secondary-nav:after, .button-nav:after, .cta-box:after, .gallery:after, .bnr:after, .history-section__text:after, .industrial-park:after, .color-box__inner:after {
    content: "";
    display: table;
    clear: both;
}

.steps a, .category__img:after, .slide--overlay:after, .img-box:after, .gallery-item:after, .news__img:after, .news--featured .news__img, .post__img:after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.wmg hr, .slide__caption h1 span:before,
.slide__caption h2 span:before, .slide__caption--left p:before {
    display: block;
    width: 15px;
    height: 15px;
    border: 3px solid rgba(255, 255, 255, 0.5);
}

.cover {
    position: relative;
    overflow: hidden;
}

.cover img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
}

.visually-hidden {
    border: 0;
    clip: rect(0 0 0 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
}

.visually-hidden:before {
    display: none !important;
}

.primary {
    color: #1a4c8c !important;
}

.secondary {
    color: #bea40d !important;
}

.white {
    color: #fff !important;
}

.gray, .gray a {
    color: rgba(102, 102, 102, 0.6) !important;
}

.center {
    text-align: center;
}

img.left {
    float: left;
    margin: 0 0.625em 0.625em 0;
}

img.right {
    float: right;
    margin: 0 0 0.625em 0.625em;
}

img.center {
    display: block;
    margin: 0 auto 0.625em;
}

.pt0 {
    padding-top: 0em !important;
}

.pt20 {
    padding-top: 1.25em !important;
}

.pt40 {
    padding-top: 2.5em !important;
}

.pt60 {
    padding-top: 3.75em !important;
}

.pt80 {
    padding-top: 5em !important;
}

.pt100 {
    padding-top: 6.25em !important;
}

.mb0 {
    margin-bottom: 0em !important;
}

.mb20 {
    margin-bottom: 1.25em !important;
}

.mb40 {
    margin-bottom: 2.5em !important;
}

.mb60 {
    margin-bottom: 3.75em !important;
}

.mb80 {
    margin-bottom: 5em !important;
}

.mb100 {
    margin-bottom: 6.25em !important;
}

.container {
    width: 100%;
    max-width: 77.5em;
    margin: 0 auto;
    position: relative;
    padding: 0 1.25em;
}

.container.full {
    max-width: 100%;
    padding: 0 0.625em;
}

.container .container {
    padding: 0;
}

.float {
    margin: 0 -0.625em;
}

.float [class*='col-'] {
    -webkit-box-flex: none;
    -webkit-flex: none;
    -ms-flex: none;
    flex: none;
    float: left;
}

.row {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex: 0 1 auto;
    -ms-flex: 0 1 auto;
    flex: 0 1 auto;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin: 0 -0.625em;
}

[class*='col-'] {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding: 0 0.625em;
    position: relative;
    width: 100%;
    min-height: 1px;
}

.no-gutters {
    margin: 0;
}

.no-gutters > [class*='col-'] {
    padding: 0;
}

.small-gutters {
    margin: 0 -0.3125em;
}

.small-gutters > [class*='col-'] {
    padding: 0 0.3125em;
}

.large-gutters {
    margin: 0 -1.25em;
}

.large-gutters > [class*='col-'] {
    padding: 0 1.25em;
}

.col-1 {
    width: 8.333%;
}

.col-2 {
    width: 16.667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.333%;
}

.col-5 {
    width: 41.667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.333%;
}

.col-8 {
    width: 66.667%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.333%;
}

.col-11 {
    width: 91.667%;
}

.col-12 {
    width: 100%;
}

/* .col-1-5 { width: 20%; }
.col-2-5 { width: 40%; }
.col-3-5 { width: 60%; }
.col-4-5 { width: 80%; } */
.align-center {
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.align-end {
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: flex-end;
}

.align-top {
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: flex-start;
}

.align-middle {
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.align-bottom {
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
}

.space-around {
    -webkit-justify-content: space-around;
    -ms-flex-pack: distribute;
    justify-content: space-around;
}

.space-between {
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.has-border {
    padding-right: 3.75em;
    border-right: 1px solid #DFDFDF;
}

.has-border + .has-border {
    padding-right: 0.625em;
    padding-left: 3.75em;
    border-right: none;
}

.show-lg,
.show-md,
.show-sm,
.show-xs {
    display: none;
}

@media only screen and (min-width: 1441px) {
    .col-xl-1 {
        width: 8.333%;
    }
    .col-xl-2 {
        width: 16.667%;
    }
    .col-xl-3 {
        width: 25%;
    }
    .col-xl-4 {
        width: 33.333%;
    }
    .col-xl-5 {
        width: 41.667%;
    }
    .col-xl-6 {
        width: 50%;
    }
    .col-xl-7 {
        width: 58.333%;
    }
    .col-xl-8 {
        width: 66.667%;
    }
    .col-xl-9 {
        width: 75%;
    }
    .col-xl-10 {
        width: 83.333%;
    }
    .col-xl-11 {
        width: 91.667%;
    }
    .col-xl-12 {
        width: 100%;
    }
}

@media only screen and (max-width: 1279px) {
    .col-lg-1 {
        width: 8.333%;
    }
    .col-lg-2 {
        width: 16.667%;
    }
    .col-lg-3 {
        width: 25%;
    }
    .col-lg-4 {
        width: 33.333%;
    }
    .col-lg-5 {
        width: 41.667%;
    }
    .col-lg-6 {
        width: 50%;
    }
    .col-lg-7 {
        width: 58.333%;
    }
    .col-lg-8 {
        width: 66.667%;
    }
    .col-lg-9 {
        width: 75%;
    }
    .col-lg-10 {
        width: 83.333%;
    }
    .col-lg-11 {
        width: 91.667%;
    }
    .col-lg-12 {
        width: 100%;
    }
    .first-lg {
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }
    .last-lg {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .hide-lg {
        display: none;
    }
    .show-lg {
        display: block;
    }
}

@media only screen and (max-width: 940px) {
    /* .has-border{
        padding: 0 $gutter !important;
        border: none !important;
    } */
    .col-md-1 {
        width: 8.333%;
    }
    .col-md-2 {
        width: 16.667%;
    }
    .col-md-3 {
        width: 25%;
    }
    .col-md-4 {
        width: 33.333%;
    }
    .col-md-5 {
        width: 41.667%;
    }
    .col-md-6 {
        width: 50%;
    }
    .col-md-7 {
        width: 58.333%;
    }
    .col-md-8 {
        width: 66.667%;
    }
    .col-md-9 {
        width: 75%;
    }
    .col-md-10 {
        width: 83.333%;
    }
    .col-md-11 {
        width: 91.667%;
    }
    .col-md-12 {
        width: 100%;
    }
    .first-md {
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }
    .last-md {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .hide-md {
        display: none;
    }
    .show-md {
        display: block;
    }
}

@media only screen and (max-width: 758px) {
    .col-sm-1 {
        width: 8.333%;
    }
    .col-sm-2 {
        width: 16.667%;
    }
    .col-sm-3 {
        width: 25%;
    }
    .col-sm-4 {
        width: 33.333%;
    }
    .col-sm-5 {
        width: 41.667%;
    }
    .col-sm-6 {
        width: 50%;
    }
    .col-sm-7 {
        width: 58.333%;
    }
    .col-sm-8 {
        width: 66.667%;
    }
    .col-sm-9 {
        width: 75%;
    }
    .col-sm-10 {
        width: 83.333%;
    }
    .col-sm-11 {
        width: 91.667%;
    }
    .col-sm-12 {
        width: 100%;
    }
    .first-sm {
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }
    .last-sm {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .hide-sm {
        display: none;
    }
    .show-sm {
        display: block;
    }
}

@media only screen and (max-width: 425px) {
    /* .col-1-5,
    .col-2-5,
    .col-3-5,
    .col-4-5, */
    .col-1,
    .col-2,
    .col-3,
    .col-4,
    .col-5,
    .col-6,
    .col-7,
    .col-8,
    .col-9,
    .col-10,
    .col-11,
    .col-12 {
        width: 100%;
    }
    .col-xs-1 {
        width: 8.333%;
    }
    .col-xs-2 {
        width: 16.667%;
    }
    .col-xs-3 {
        width: 25%;
    }
    .col-xs-4 {
        width: 33.333%;
    }
    .col-xs-5 {
        width: 41.667%;
    }
    .col-xs-6 {
        width: 50%;
    }
    .col-xs-7 {
        width: 58.333%;
    }
    .col-xs-8 {
        width: 66.667%;
    }
    .col-xs-9 {
        width: 75%;
    }
    .col-xs-10 {
        width: 83.333%;
    }
    .col-xs-11 {
        width: 91.667%;
    }
    .col-xs-12 {
        width: 100%;
    }
    .first-xs {
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }
    .last-xs {
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
    }
    .hide-xs {
        display: none;
    }
    .show-xs {
        display: block;
    }
}

.lt-ie10 [class*='col-'] {
    float: left;
}

@media only screen and (max-width: 425px) {
    .container {
        padding: 0 0.9375em;
    }
}

/* Animate.css (https://github.com/tgdev/animate-sass v0.6.4) */
body {
    -webkit-backface-visibility: hidden;
}

.animate {
    visibility: hidden;
}

.animated {
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-animation-fill-mode: both;
    -moz-animation-fill-mode: both;
    -o-animation-fill-mode: both;
    animation-fill-mode: both;
}

.animated.infinite {
    animation-iteration-count: infinite;
}

.animated.hinge {
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    -o-animation-duration: 2s;
    animation-duration: 2s;
}

.animated.bounceIn, .animated.bounceOut {
    -webkit-animation-duration: 0.75s;
    -moz-animation-duration: 0.75s;
    -o-animation-duration: 0.75s;
    animation-duration: 0.75s;
}

.animated.flipOutX, .animated.flipOutY {
    -webkit-animation-duration: 0.75s;
    -moz-animation-duration: 0.75s;
    -o-animation-duration: 0.75s;
    animation-duration: 0.75s;
}

@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-moz-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-o-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.fadeIn {
    -webkit-animation-name: fadeIn;
    -moz-animation-name: fadeIn;
    -o-animation-name: fadeIn;
    animation-name: fadeIn;
}

@-webkit-keyframes fadeInDown {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDown {
    0% {
        opacity: 0;
        -moz-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInDown {
    0% {
        opacity: 0;
        -o-transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDown {
    0% {
        opacity: 0;
        transform: translateY(-20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDown {
    -webkit-animation-name: fadeInDown;
    -moz-animation-name: fadeInDown;
    -o-animation-name: fadeInDown;
    animation-name: fadeInDown;
}

@-webkit-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -moz-transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInDownBig {
    0% {
        opacity: 0;
        -o-transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInDownBig {
    0% {
        opacity: 0;
        transform: translateY(-2000px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInDownBig {
    -webkit-animation-name: fadeInDownBig;
    -moz-animation-name: fadeInDownBig;
    -o-animation-name: fadeInDownBig;
    animation-name: fadeInDownBig;
}

@-webkit-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -moz-transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes fadeInLeft {
    0% {
        opacity: 0;
        -o-transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInLeft {
    0% {
        opacity: 0;
        transform: translateX(-20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeft {
    -webkit-animation-name: fadeInLeft;
    -moz-animation-name: fadeInLeft;
    -o-animation-name: fadeInLeft;
    animation-name: fadeInLeft;
}

@-webkit-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -moz-transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        -o-transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInLeftBig {
    0% {
        opacity: 0;
        transform: translateX(-2000px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInLeftBig {
    -webkit-animation-name: fadeInLeftBig;
    -moz-animation-name: fadeInLeftBig;
    -o-animation-name: fadeInLeftBig;
    animation-name: fadeInLeftBig;
}

@-webkit-keyframes fadeInRight {
    0% {
        opacity: 0;
        -webkit-transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes fadeInRight {
    0% {
        opacity: 0;
        -moz-transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes fadeInRight {
    0% {
        opacity: 0;
        -o-transform: translateX(20px);
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInRight {
    0% {
        opacity: 0;
        transform: translateX(20px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRight {
    -webkit-animation-name: fadeInRight;
    -moz-animation-name: fadeInRight;
    -o-animation-name: fadeInRight;
    animation-name: fadeInRight;
}

@-webkit-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -webkit-transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateX(0);
    }
}

@-moz-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -moz-transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateX(0);
    }
}

@-o-keyframes fadeInRightBig {
    0% {
        opacity: 0;
        -o-transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        -o-transform: translateX(0);
    }
}

@keyframes fadeInRightBig {
    0% {
        opacity: 0;
        transform: translateX(2000px);
    }
    100% {
        opacity: 1;
        transform: translateX(0);
    }
}

.fadeInRightBig {
    -webkit-animation-name: fadeInRightBig;
    -moz-animation-name: fadeInRightBig;
    -o-animation-name: fadeInRightBig;
    animation-name: fadeInRightBig;
}

@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUp {
    0% {
        opacity: 0;
        -moz-transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUp {
    0% {
        opacity: 0;
        -o-transform: translateY(20px);
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUp {
    -webkit-animation-name: fadeInUp;
    -moz-animation-name: fadeInUp;
    -o-animation-name: fadeInUp;
    animation-name: fadeInUp;
}

@-webkit-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -webkit-transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
    }
}

@-moz-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -moz-transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        -moz-transform: translateY(0);
    }
}

@-o-keyframes fadeInUpBig {
    0% {
        opacity: 0;
        -o-transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        -o-transform: translateY(0);
    }
}

@keyframes fadeInUpBig {
    0% {
        opacity: 0;
        transform: translateY(2000px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

.fadeInUpBig {
    -webkit-animation-name: fadeInUpBig;
    -moz-animation-name: fadeInUpBig;
    -o-animation-name: fadeInUpBig;
    animation-name: fadeInUpBig;
}

/* Core Owl Carousel CSS */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    -webkit-transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
    -webkit-transform-style: preserve-3d;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    cursor: hand;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    display: none;
}

.owl-carousel.owl-drag .owl-item {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: -webkit-grab;
    cursor: -o-grab;
    cursor: -ms-grab;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.no-js .owl-carousel {
    display: block;
}

.owl-height {
    transition: height 500ms ease-in-out;
}

.owl-carousel .animated {
    -webkit-animation-duration: 1000ms;
    animation-duration: 1000ms;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    -webkit-animation-name: fadeOut;
    animation-name: fadeOut;
}

@-webkit-keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #000;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -moz-zoom-out;
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: -moz-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #fff;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #fff;
}

.mfp-preloader a:hover {
    color: #fff;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
    box-shadow: none;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #fff;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #fff;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #fff;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #fff;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: transparent;
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after,
.mfp-arrow .mfp-b,
.mfp-arrow .mfp-a {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after,
.mfp-arrow .mfp-a {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before,
.mfp-arrow .mfp-b {
    border-top-width: 21px;
    border-bottom-width: 21px;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after,
.mfp-arrow-left .mfp-a {
    border-right: 17px solid #fff;
    margin-left: 31px;
}

.mfp-arrow-left:before,
.mfp-arrow-left .mfp-b {
    margin-left: 25px;
    border-right: 27px solid #fff;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after,
.mfp-arrow-right .mfp-a {
    border-left: 17px solid #fff;
    margin-left: 39px;
}

.mfp-arrow-right:before,
.mfp-arrow-right .mfp-b {
    border-left: 27px solid #fff;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: rgba(102, 102, 102, 0.6);
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #333;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
            * Remove all paddings around the image on small screen
            */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
        -moz-box-sizing: border-box;
        box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

/* perfect-scrollbar v0.6.10 */
.ps-container {
    -ms-touch-action: none;
    touch-action: none;
    overflow: hidden !important;
    -ms-overflow-style: none;
}

.ps-scrollbar-y-rail {
    margin: 0.625em 0;
}

@supports (-ms-overflow-style: none) {
    .ps-container {
        overflow: auto !important;
    }
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
    .ps-container {
        overflow: auto !important;
    }
}

.ps-container.ps-active-y > .ps-scrollbar-y-rail {
    display: block;
    background-color: transparent;
    z-index: 3;
}

.ps-container.ps-in-scrolling {
    pointer-events: none;
}

.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
    background-color: rgba(53, 53, 53, 0.2);
    opacity: 1;
}

.ps-container.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    background-color: #353535;
}

.ps-container > .ps-scrollbar-y-rail {
    display: none;
    position: absolute;
    /* please don't change 'position' */
    border-radius: 4px;
    opacity: 0;
    transition: background-color .2s linear, opacity .2s linear;
    right: 3px;
    /* there must be 'right' for ps-scrollbar-y-rail */
    width: 8px;
}

.ps-container > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    position: absolute;
    /* please don't change 'position' */
    background-color: #353535;
    border-radius: 4px;
    transition: background-color .2s linear;
    right: 0;
    /* there must be 'right' for ps-scrollbar-y */
    width: 8px;
}

.ps-container:hover.ps-in-scrolling {
    pointer-events: none;
}

.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail {
    background-color: rgba(53, 53, 53, 0.2);
    opacity: 1;
}

.ps-container:hover.ps-in-scrolling.ps-y > .ps-scrollbar-y-rail > .ps-scrollbar-y {
    background-color: #353535;
}

.ps-container:hover > .ps-scrollbar-y-rail {
    opacity: 0.6;
}

.ps-container:hover > .ps-scrollbar-y-rail:hover {
    background-color: rgba(53, 53, 53, 0.2);
    opacity: 1;
}

.ps-container:hover > .ps-scrollbar-y-rail:hover > .ps-scrollbar-y {
    background-color: #353535;
}

.title, h1, h2, h3, h4, h5, h6, .section-title {
    font-family: "Youth", serif;
    color: #666;
    line-height: 1.3;
    font-weight: 500;
    margin: 0 0 0.7em;
}

.title--large, h1 {
    font-size: 3.75em;
}

.title--medium, h2, h3 {
    font-size: 1.875em;
}

.title--small, h4, h5, h6 {
    font-size: 1.375em;
}

.section-title {
    font-size: 1.875em;
    font-weight: 400;
    margin-bottom: 1em;
}

@media only screen and (max-width: 940px) {
    .title--large, h1 {
        font-size: 3.375em;
    }
    .title--medium, h2, h3 {
        font-size: 1.6875em;
    }
    .title--small, h4, h5, h6 {
        font-size: 1.2375em;
    }
    .section-title {
        font-size: 1.6875em;
    }
}

@media only screen and (max-width: 425px) {
    .title--large, h1 {
        font-size: 2.25em;
    }
    .title--medium, h2, h3 {
        font-size: 1.5em;
    }
    .title--small, h4, h5, h6 {
        font-size: 1.1em;
    }
    .section-title {
        font-size: 1.5em;
    }
}

.paragraph, p, .perex, .note {
    line-height: 1.5;
    margin-bottom: 1.5em;
    font-weight: 300;
}

.paragraph--large {
    font-size: 1.375em;
}

.paragraph--small {
    font-size: 0.75em;
}

.perex {
    font-size: 1.375em;
}

.note {
    font-size: 0.75em;
}

@media only screen and (max-width: 425px) {
    .perex {
        font-size: 1.125em;
    }
}

.wmg ul:not(.button-nav) {
    margin-bottom: 1.5em;
}

.wmg ul:not(.button-nav) li {
    position: relative;
    padding-left: 1.25em;
    line-height: 1.5;
    margin-bottom: 0.3125em;
}

.wmg ul:not(.button-nav) li:before {
    content: '';
    position: absolute;
    width: 0.3125em;
    height: 0.3125em;
    left: 0;
    top: 0.65em;
    background-color: #333;
    border-radius: 50%;
}

.wmg ol:not(.breadcrumbs) {
    counter-reset: ol-counter;
    margin-bottom: 1.5em;
}

.wmg ol:not(.breadcrumbs) li {
    position: relative;
    counter-increment: ol-counter;
    padding-left: 1.25em;
    line-height: 1.5;
    margin-bottom: 0.3125em;
}

.wmg ol:not(.breadcrumbs) li:before {
    content: counter(ol-counter) ") ";
    position: absolute;
    top: 0;
    left: 0;
}

.search-form input, .application-form input, .search-results form input {
    outline: none;
    border: none;
    font-size: inherit;
    line-height: 1em;
    vertical-align: middle;
    padding: 0 0.9375em;
    background-color: transparent;
    font-family: inherit;
    width: 100%;
    border-radius: 0;
    -webkit-appearance: none;
}

.application-form textarea {
    outline: none;
    border: none;
    font-size: inherit;
    line-height: 1.5em;
    padding: 0.9375em;
    background-color: transparent;
    font-family: inherit;
    width: 100%;
    resize: none;
    border-radius: 0;
    -webkit-appearance: none;
}

.application-form .checkbox {
    display: inline-block;
}

.application-form .checkbox label {
    position: relative;
    display: inline-block;
    font-family: inherit;
    cursor: pointer;
    font-size: inherit;
    line-height: 1.25em;
    padding-left: 1.875em;
    margin-right: 1.25em;
    margin-bottom: 0.3125em;
}

.application-form .checkbox label:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 1.25em;
    height: 1.25em;
    background-color: transparent;
    border: 2px solid #DFDFDF;
    border-radius: 5px;
}

.application-form .checkbox input:checked + label:before {
    border-color: #1a4c8c;
    background-color: #1a4c8c;
    box-shadow: inset 0 0 0 0.125em #fff;
}

.application-form .checkbox input {
    display: none;
}

.search-form button, .upload-files__button, .search-results form button {
    display: table;
    background-color: #1a4c8c;
    border-radius: 0;
    color: #fff;
    font-weight: bold;
    font-size: inherit;
    padding: 0.7em 1.5em;
    vertical-align: middle;
    transition-duration: 0.3s;
    outline: none;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
    -webkit-appearance: none;
}

.search-form button:hover, .upload-files__button:hover, .search-results form button:hover {
    background-color: #123561;
}

::-webkit-input-placeholder {
    color: #A9A9A9;
    transition: opacity 0.35s ease-in-out;
    opacity: 1;
    line-height: 1.5em;
}

:-moz-placeholder {
    color: #A9A9A9;
    transition: opacity 0.35s ease-in-out;
    opacity: 1;
}

::-moz-placeholder {
    color: #A9A9A9;
    transition: opacity 0.35s ease-in-out;
    opacity: 1;
}

:-ms-input-placeholder {
    color: #A9A9A9;
    transition: opacity 0.35s ease-in-out;
    opacity: 1;
}

.button, .cta-box a, .sidebar-widget > a, .application-form button {
    position: relative;
    display: table;
    font-family: "Barlow", serif;
    font-size: 1em;
    font-weight: 400;
    border: 1px solid #f1f1f1;
    padding: 0.8em 2.7em 0.8em 1em;
    vertical-align: middle;
    transition-duration: 0.3s;
    cursor: pointer;
    -webkit-appearance: none;
    text-decoration: none;
    border-color: rgba(0, 0, 0, 0.2);
    background-color: transparent;
    color: rgba(0, 0, 0, 0.4);
	border-radius: 20px
}

.button:after, .cta-box a:after, .sidebar-widget > a:after, .application-form button:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: 1em;
    margin-left: 1.5em;
    background-image: url(../images/sprites/sprite.png);
    background-position: -141px -102px;
    width: 7px;
    height: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .button:after, .cta-box a:after, .sidebar-widget > a:after, .application-form button:after {
        background-image: url(../images/sprites/sprite@2x.png);
		transition-duration: 0.4s;
        background-size: 150px 143px;
		opacity: 0.3
    }
	
	
	  .button:hover:after, .cta-box a:hover:after, .sidebar-widget > a:hover:after, .application-form button:hover:after {
        background-image: url(../images/sprites/sprite@2x.png);
		  transition-duration: 0.4s;
        background-size: 150px 143px;
		opacity: 1
    }
}

.button:hover, .cta-box a:hover, .sidebar-widget > a:hover, .application-form button:hover {
    text-decoration: none;
    border-color: #000000;
    color: #000000;
}

.button:before, .cta-box a:before, .sidebar-widget > a:before, .application-form button:before {
    display: inline-block;
    font-size: 1.2em;
    font-family: "Font Awesome";
    vertical-align: middle;
    margin-right: 0.5em;
}

.button--fill, .button--header, .cta-box a, .load-more, .application-form button {
    border-color: #1a4c8c;
    background-color: #1a4c8c;
    color: #fff;
}

.button--fill:after, .button--header:after, .cta-box a:after, .load-more:after, .application-form button:after {
    background-image: url(../images/sprites/sprite.png);
    background-position: -53px -121px;
    width: 7px;
    height: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .button--fill:after, .button--header:after, .cta-box a:after, .load-more:after, .application-form button:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.button--fill:hover, .button--header:hover, .cta-box a:hover, .load-more:hover, .application-form button:hover {
    border-color: #123561;
    background-color: #123561;
    color: #fff;
}

.button--fullwidth {
    display: block;
    max-width: 20em;
}

.button--white, .slide--dark .slide__caption .button, .slide--dark .slide__caption .cta-box a, .cta-box .slide--dark .slide__caption a, .slide--dark .slide__caption .sidebar-widget > a, .slide--dark .slide__caption .application-form button, .application-form .slide--dark .slide__caption button, .img-box .button, .img-box .cta-box a, .cta-box .img-box a, .img-box .sidebar-widget > a, .img-box .application-form button, .application-form .img-box button, .expand-box__content .button, .expand-box__content .cta-box a, .cta-box .expand-box__content a, .expand-box__content .sidebar-widget > a, .expand-box__content .application-form button, .application-form .expand-box__content button, /*.hero-caption .button,*/ .hero-caption .cta-box a, .cta-box .hero-caption a, .hero-caption .sidebar-widget > a, .hero-caption .application-form button, .application-form .hero-caption button, .news--featured .button, .news--featured .cta-box a, .cta-box .news--featured a, .news--featured .sidebar-widget > a, .news--featured .application-form button, .application-form .news--featured button, .color-box .button, .color-box .cta-box a, .cta-box .color-box a, .color-box .sidebar-widget > a, .color-box .application-form button, .application-form .color-box button/*, .hero-caption .button */,
.slide__caption--left .button
{
    border-color: rgba(255, 255, 255, 0.2);
    color: #fff;
}

.button--white:after, .slide--dark .slide__caption .button:after, .slide--dark .slide__caption .cta-box a:after, .cta-box .slide--dark .slide__caption a:after, .slide--dark .slide__caption .sidebar-widget > a:after, .slide--dark .slide__caption .application-form button:after, .application-form .slide--dark .slide__caption button:after, .img-box .button:after, .img-box .cta-box a:after, .cta-box .img-box a:after, .img-box .sidebar-widget > a:after, .img-box .application-form button:after, .application-form .img-box button:after, .expand-box__content .button:after, .expand-box__content .cta-box a:after, .cta-box .expand-box__content a:after, .expand-box__content .sidebar-widget > a:after, .expand-box__content .application-form button:after, .application-form .expand-box__content button:after, /*.hero-caption .button:after,*/ .hero-caption .cta-box a:after, .cta-box .hero-caption a:after, .hero-caption .sidebar-widget > a:after, .hero-caption .application-form button:after, .application-form .hero-caption button:after, .news--featured .button:after, .news--featured .cta-box a:after, .cta-box .news--featured a:after, .news--featured .sidebar-widget > a:after, .news--featured .application-form button:after, .application-form .news--featured button:after, .color-box .button:after, .color-box .cta-box a:after, .cta-box .color-box a:after, .color-box .sidebar-widget > a:after, .color-box .application-form button:after, .application-form .color-box button:after, 
.slide__caption--left .button:after
{
    background-position: -53px -121px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .button--white:after, .slide--dark .slide__caption .button:after, .slide--dark .slide__caption .cta-box a:after, .cta-box .slide--dark .slide__caption a:after, .slide--dark .slide__caption .sidebar-widget > a:after, .slide--dark .slide__caption .application-form button:after, .application-form .slide--dark .slide__caption button:after, .img-box .button:after, .img-box .cta-box a:after, .cta-box .img-box a:after, .img-box .sidebar-widget > a:after, .img-box .application-form button:after, .application-form .img-box button:after, .expand-box__content .button:after, .expand-box__content .cta-box a:after, .cta-box .expand-box__content a:after, .expand-box__content .sidebar-widget > a:after, .expand-box__content .application-form button:after, .application-form .expand-box__content button:after,/* .hero-caption .button:after,*/ .hero-caption .cta-box a:after, .cta-box .hero-caption a:after, .hero-caption .sidebar-widget > a:after, .hero-caption .application-form button:after, .application-form .hero-caption button:after, .news--featured .button:after, .news--featured .cta-box a:after, .cta-box .news--featured a:after, .news--featured .sidebar-widget > a:after, .news--featured .application-form button:after, .application-form .news--featured button:after, .color-box .button:after, .color-box .cta-box a:after, .cta-box .color-box a:after, .color-box .sidebar-widget > a:after, .color-box .application-form button:after, .application-form .color-box button:after, .slide__caption--left .button:after {
        background-size: 150px 143px;
    }
}

.button--white:hover, .slide--dark .slide__caption .button:hover, .slide--dark .slide__caption .cta-box a:hover, .cta-box .slide--dark .slide__caption a:hover, .slide--dark .slide__caption .sidebar-widget > a:hover, .slide--dark .slide__caption .application-form button:hover, .application-form .slide--dark .slide__caption button:hover, .img-box .button:hover, .img-box .cta-box a:hover, .cta-box .img-box a:hover, .img-box .sidebar-widget > a:hover, .img-box .application-form button:hover, .application-form .img-box button:hover, .expand-box__content .button:hover, .expand-box__content .cta-box a:hover, .cta-box .expand-box__content a:hover, .expand-box__content .sidebar-widget > a:hover, .expand-box__content .application-form button:hover, .application-form .expand-box__content button:hover, /*.hero-caption .button:hover,*/ .hero-caption .cta-box a:hover, .cta-box .hero-caption a:hover, .hero-caption .sidebar-widget > a:hover, .hero-caption .application-form button:hover, .application-form .hero-caption button:hover, .news--featured .button:hover, .news--featured .cta-box a:hover, .cta-box .news--featured a:hover, .news--featured .sidebar-widget > a:hover, .news--featured .application-form button:hover, .application-form .news--featured button:hover, .color-box .button:hover, .color-box .cta-box a:hover, .cta-box .color-box a:hover, .color-box .sidebar-widget > a:hover, .color-box .application-form button:hover, .application-form .color-box button:hover, 
.slide__caption--left .button
{
    border-color: #fff;
    color: #fff;
}

.hero.c-transparent .button {
    border-color:  rgba(0, 0, 0, 0.2);
    color:  rgba(0, 0, 0, 0.4);
}

.hero.c-transparent .button:after, .color-box .button:after {
     background-position: -141px -102px
}
.color-box.color-box--grey .button{
  
    border-color: rgba(0, 0, 0, 0.2);
    background-color: transparent;
    color: rgba(0, 0, 0, 0.4);
}
.color-box.color-box--grey .button:hover, .hero.c-transparent .button:hover{
  

    color: rgba(0, 0, 0, 1);
}
.color-box.color-box--grey .button:after,{
background-position: -141px -102px;
}


.button--bw, .sidebar-widget > a {
    border-color: #DFDFDF;
    color: #666;
}

.button--bw:after, .sidebar-widget > a:after {
    background-position: -46px -121px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .button--bw:after, .sidebar-widget > a:after {
        background-size: 150px 143px;
    }
}

.button--bw:hover, .sidebar-widget > a:hover {
    border-color: #666;
    color: #666;
}

.button--center {
    margin: 0 auto;
}

.button--right {
    float: right;
}

.button--header {
    float: right;
    margin-top: -4.25em;
}

.buttons {
    padding-top: 1.5em;
}

.buttons .button, .buttons .cta-box a, .cta-box .buttons a, .buttons .sidebar-widget > a, .buttons .application-form button, .application-form .buttons button {
    display: inline-block;
    min-width: 15.625em;
    margin: 0 0.625em 0.625em 0 !important;
}

@media only screen and (max-width: 560px) {
    .button--header {
        float: none;
        margin-top: 0;
        margin-bottom: 0.625em;
        display: block;
    }
}

@media only screen and (max-width: 425px) {
    .buttons .button, .buttons .cta-box a, .cta-box .buttons a, .buttons .sidebar-widget > a, .buttons .application-form button, .application-form .buttons button {
        display: block;
        margin-right: 0;
    }
}

table {
    width: 100%;
    margin-bottom: 1.5em;
}

th {
    text-align: left;
    line-height: 1.5em;
    padding: 0.5em 1em;
    background-color: #f1f1f1;
    font-weight: bold;
}

tr {
    border-bottom: 1px solid #DFDFDF;
}

td {
    padding: 0.5em 1em;
    line-height: 1.5em;
}

td.label {
    display: none;
    text-transform: uppercase;
}

@media only screen and (max-width: 560px) {
    thead, th {
        display: none;
    }
    tr {
        display: block;
        border-bottom: none;
        padding: 0.625em;
    }
    tr:after {
        content: "";
        display: table;
        clear: both;
    }
    tr:nth-child(odd) {
        background-color: #f1f1f1;
    }
    td {
        float: left;
        width: 100%;
        padding: 0;
    }
    td:first-child {
        font-weight: bold;
    }
}

.wmg .title, .wmg h1, .wmg h2, .wmg h3, .wmg h4, .wmg h5, .wmg h6, .wmg .section-title {
    color: #333;
}

.wmg h2,
.wmg h3,
.wmg h4,
.wmg h5,
.wmg h6 {
    padding-top: 0.7em;
}

.wmg h1 + h2 {
    padding-top: 0;
}

.wmg .paragraph, .wmg p, .wmg .perex, .wmg .note {
    line-height: 1.7;
}

.wmg .perex {
    line-height: 1.5;
}

.wmg a:not(.button):not(.cta-box a):not(.sidebar-widget > a):not(.application-form button) {
    text-decoration: underline;
}

.wmg a:not(.button):not(.cta-box a):not(.sidebar-widget > a):not(.application-form button):hover {
    text-decoration: none;
}

.wmg .button, .wmg .cta-box a, .cta-box .wmg a, .wmg .sidebar-widget > a, .wmg .application-form button, .application-form .wmg button {
    margin-bottom: 20px;
}

.wmg img {
    margin-bottom: 1em;
}

.wmg + .content-block {
    padding-top: 2.5em;
    margin-top: 3.125em;
    border-top: 1px solid #DFDFDF;
}

.section {
    padding: 3.125em 0 1.875em;
    background: #fff no-repeat center center/cover;
    /* &--bordered{
        padding: 0 !important;
        border-top: 1px solid $border-color;
        border-bottom: 1px solid $border-color;

        & + &{
            border-top: none;
        }

        .row [class*='col-']{
            border-right: 1px solid $border-color;
            padding: em($section-padding-top) $gutter em($section-padding-bottom);

            &:last-child{
                border-right: none;
            }
        }
    } */
    /* &--negative{
        background-color: $primary-color;
        color: #fff;

        .section-title{
            color: #fff;
            margin-bottom: 0;

            &:after{
                content: "";
                display: block;
                margin: em(20,30) 0;
                @include retina-sprite($pink-divider-group);
            }
        }

        p{
            font-size: em(20);
            opacity: 0.6;
        }

        .perex{
            opacity: 1;
        }

        .button{
            @extend .button--white;
            margin-top: em(60);
            margin-bottom: em(20);
        }
    } */
}

.section.nopad {
    padding: 0 !important;
}

.section.c-light-gray {
    background-color: #f1f1f1;
}

.section.c-gray {
    background-color: #9FA2A6;
}

.section.c-gray .section-title {
    color: #fff;
}

.section.c-primary {
    background-color: #1a4c8c;
    color: #fff;
}

.section.c-secondary {
    background-color: #bea40d;
    color: #fff;
}

.section.c-primary .section-title, .section.c-secondary .section-title {
    color: #fff;
}

.section:not([class*='c-']) + .section:not([class*='c-']) {
    padding-top: 0 !important;
}

.light-bg {
    background-color: #fff;
    padding: 0 0 2.5em;
}

.light-bg__header {
    background-color: #fff;
    margin-bottom: 1.25em;
}

.light-bg__header .section-title {
    padding: 1.33333em 0 0.66667em;
}

.light-bg.c-primary, .content-wrapper--primary .light-bg.c-color {
    background-color: #f1f1f1;
}

.light-bg.c-secondary, .content-wrapper--secondary .light-bg.c-color {
    background-color: rgba(241, 241, 241, 0.1);
}

.light-bg.c-gray, .content-wrapper--gray .light-bg.c-color {
    background-color: #f1f1f1;
}

[class*='c-'] .light-bg__header {
    margin-bottom: 2.5em;
}

.section:not([class*='c-']) + .light-bg .light-bg__header .section-title {
    padding-top: 0;
}

.content-block {
    margin-bottom: 3.125em;
}

.content-block:last-of-type {
    margin-bottom: 0;
}

.container .section {
    padding: 0 !important;
}

@media only screen and (max-width: 1279px) {
    .light-bg {
        margin-top: -2px;
    }
    .light-bg__header .row {
        background-color: #fff;
    }
    .light-bg__header .row .section-title {
        display: none;
    }
}

@media only screen and (max-width: 940px) {
    .section {
        padding: 2.5em 0 1.5em;
        /* &--bordered{
            .row [class*='col-']{
                border: none;
                padding: em($section-padding-top) $gutter em($section-padding-bottom);

                & + [class*='col-']{
                    padding-top: 0 !important;
                }
            }
        } */
    }
}

@media only screen and (max-width: 560px) {
    .section {
        padding: 1.875em 0 1.125em;
    }
}

.owl-controls {
    position: absolute;
    bottom: 40px;
    left: 0;
    width: 100%;
    height: 14;
}

.owl-dots {
    position: relative;
    display: block;
    width: 100%;
    max-width: 77.5em;
    padding: 0 1.25em;
    margin: 0 auto;
    text-align: right;
}

.owl-dot {
    position: relative;
    width: 0.875em;
    height: 0.875em;
    display: inline-block;
    margin: 0 0 0 0.4375em;
    transition-duration: 0.2s;
}

.owl-dot span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: 2px solid #fff;
    border-radius: 50%;
    transition-duration: 0.2s;
}

.owl-dot.active span {
    background-color: #fff;
}

@media only screen and (max-width: 940px) {
    .owl-controls {
        bottom: 20px;
    }
    .owl-dots {
        padding: 0 0.9375em;
    }
}

.accordion {
    margin-bottom: 3.125em;
}

.accordion .tab {
    width: 100%;
    border: 1px solid #DFDFDF;
    margin-bottom: 0.625em;
    overflow: hidden;
}

.accordion .tab__header {
    position: relative;
    padding: 0.9375em 4.0625em 0.9375em 1.25em;
    cursor: pointer;
}

.accordion .tab__header:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -7px;
    right: 1.25em;
    transition-duration: 0.3s;
    background-image: url(../images/sprites/sprite.png);
    background-position: -33px -76px;
    width: 23px;
    height: 15px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .accordion .tab__header:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.accordion .tab__header:hover {
    opacity: 0.7;
}

.accordion .tab__title {
    font-size: 1.25em;
    margin-bottom: 0;
}

.accordion .tab__content {
    display: none;
    padding: 1.25em;
}

.accordion .tab--expanded .tab__header:after {
    transform: rotate(-180deg);
}

@media only screen and (max-width: 425px) {
    .accordion .tab__header {
        font-size: .8em;
    }
}

.breadcrumbs {
    margin-bottom: 1.25em;
}

.breadcrumbs li {
    display: inline-block;
    font-size: 0.875em;
    line-height: 1.5;
    color: #999;
}

.breadcrumbs li:before {
    display: none;
}

.breadcrumbs li:after {
    content: " >";
    padding: 0 0.35714em;
}

.breadcrumbs li:last-child:after {
    display: none;
}

.breadcrumbs a {
    color: #999 !important;
    text-decoration: none  !important;
}

.breadcrumbs a:hover {
    text-decoration: underline  !important;
}

.pagination {
    border-top: 1px solid #DFDFDF;
    text-align: center;
    padding-top: 1.875em;
    margin: 3.125em 0 3.125em;
}

.pagination li {
    display: inline-block;
    vertical-align: middle;
}

.pagination a {
    display: block;
    padding: 0.625em 0.9375em;
    font-family: "Barlow", serif;
    font-weight: 300;
    color: #9FA2A6;
}

.pagination a:hover {
    color: #1a4c8c;
}

.pagination .active {
    color: #1a4c8c;
    font-weight: bold;
}

.pagination .prev span,
.pagination .next span {
    display: inline-block;
    background-image: url(../images/sprites/sprite.png);
    background-position: -119px -102px;
    width: 11px;
    height: 16px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .pagination .prev span,
    .pagination .next span {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.pagination .next span {
    background-position: -108px -102px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .pagination .next span {
        background-size: 150px 143px;
    }
}

.pagination .disabled {
    pointer-events: none;
    opacity: .5;
}

.steps {
    border: 1px solid #DFDFDF;
    border-radius: 12.5em;
    margin-bottom: 1.25em;
    padding: 0 1.875em;
}

.steps li {
    position: relative;
    float: left;
    width: 12.5em;
    height: 12.5em;
    border: 2px solid #CE7DDE;
    border-radius: 50%;
    margin: 1.875em 0.625em;
}

.steps li:before, .steps li:after {
    content: '';
    display: block;
    position: absolute;
    top: -2.9375em;
    left: 50%;
    margin-left: -0.9375em;
    width: 1.875em;
    height: 1.875em;
    background: #fff url("../images/steps-arrow.png") no-repeat center center;
}

.steps li:after {
    top: auto;
    bottom: -2.9375em;
    transform: rotate(180deg);
}

.steps span {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: block;
    width: 90%;
    text-align: center;
    font-family: "Barlow", serif;
    font-size: 1.25em;
    line-height: 1.3;
    color: #000;
}

.steps a {
    display: block;
    border-radius: 50%;
    transition-duration: 0.3s;
}

.steps a:hover {
    background-color: #353535;
}

.steps a:hover span {
    color: #fff;
}

@media only screen and (max-width: 1279px) {
    .steps {
        font-size: 0.75em;
    }
}

@media only screen and (max-width: 940px) {
    .steps {
        font-size: 1em;
        border: none;
    }
    .steps .space-between {
        -ms-flex-pack: center;
        justify-content: center;
    }
    .steps li {
        margin: 0 0.9375em 0.9375em;
    }
    .steps li:before, .steps li:after {
        display: none;
    }
}

.info-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #cecece;
    z-index: 9000;
    transform: translate3d(0, 0, 0);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 10px 0 0;
    text-align: center;
    color: #333;
    font-size: 14px;
}

.info-bar p {
    display: inline-block;
    margin-bottom: 10px;
}

.info-bar p + p {
    margin-left: 20px;
}

.info-bar a {
    display: inline-block;
    padding: 10px 20px;
    transition-duration: 0.3s;
    border: 1px solid #333;
    margin-bottom: 10px;
}

.info-bar a:hover {
    border-color: #000;
    background-color: #000;
    color: #fff;
}

.info-bar a + a {
    margin-left: 5px;
}

.info-bar .ok {
    background-color: #333;
    color: #fff;
    font-weight: bold;
}

.cookie-bar {
    display: none;
    background-color: #f1f1f1;
    color: #333;
}

.cookie-bar a {
    border-color: #333;
}

.cookie-bar a:hover {
    border-color: #333;
    background-color: #333;
}

.cookie-bar .ok:hover {
    border-color: #1a4c8c;
    background-color: #1a4c8c;
}

.unsupported-browser {
    z-index: 9999;
    background-color: red;
    color: #fff;
}

.unsupported-browser a {
    color: #fff;
    border-color: #fff;
}

.unsupported-browser .ok {
    color: red;
    background-color: #fff;
}

.sticky-menu, .secondary-menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 3.75em;
    background-color: #fff;
    z-index: 1000;
    transform: translate3d(0, 0, 0);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    transition: transform 0.3s;
}

.sticky-menu__logo {
    float: left;
    height: 3.75em;
    margin-top: 0.75em;
    background-image: url(../images/sprites/sprite.png);
    background-position: 0px 0px;
    width: 122px;
    height: 36px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .sticky-menu__logo {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.sticky-menu__nav, .secondary-menu__nav {
    float: right;
    height: auto;
}

.sticky-menu__nav li, .secondary-menu__nav li {
    position: relative;
    display: inline-block;
}

.sticky-menu__nav li.lang, .secondary-menu__nav li.lang {
    position: relative;
    border-left: 1px solid #DFDFDF;
    border-right: 1px solid #DFDFDF;
    margin-left: 2.5em;
}

.sticky-menu__nav li.lang span, .secondary-menu__nav li.lang span {
    cursor: pointer;
    padding: 0 0.9375em;
    margin: 0;
}

.sticky-menu__nav li.lang span:before, .secondary-menu__nav li.lang span:before {
    content: '';
    display: inline-block;
    vertical-align: -3px;
    margin-right: 10px;
    background-image: url(../images/sprites/sprite.png);
    background-position: -72px -102px;
    width: 18px;
    height: 18px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .sticky-menu__nav li.lang span:before, .secondary-menu__nav li.lang span:before {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.sticky-menu__nav li.lang span:after, .secondary-menu__nav li.lang span:after {
    content: '';
    display: inline-block;
    vertical-align: 0px;
    margin-left: 20px;
    background-image: url(../images/sprites/sprite.png);
    background-position: -33px -91px;
    width: 15px;
    height: 10px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .sticky-menu__nav li.lang span:after, .secondary-menu__nav li.lang span:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.sticky-menu__nav li.lang ul, .secondary-menu__nav li.lang ul {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s linear 0.2s, opacity 0.2s linear;
    position: absolute;
    top: 3.75em;
    left: 0;
    background-color: #fff;
    border: 1px solid rgba(223, 223, 223, 0.5);
}

.sticky-menu__nav li.lang li, .secondary-menu__nav li.lang li {
    min-width: 9.0625em;
    display: block;
    padding-left: 0;
}

.sticky-menu__nav li.lang li + li, .secondary-menu__nav li.lang li + li {
    border-top: 1px solid rgba(223, 223, 223, 0.5);
}

.sticky-menu__nav li.lang a, .secondary-menu__nav li.lang a {
    margin-left: 0;
    padding: 0 0.9375em;
    line-height: 2.5em;
}

.sticky-menu__nav li.lang:hover span, .secondary-menu__nav li.lang:hover span {
    color: #999;
}

.sticky-menu__nav li.lang:hover ul, .secondary-menu__nav li.lang:hover ul {
    visibility: visible;
    opacity: 1;
    transition: visibility 0s linear 0s, opacity 0.2s linear 0.3s;
}

.sticky-menu__nav li.search a, .secondary-menu__nav li.search a {
    display: inline-block;
    margin: 0;
}

.sticky-menu__nav li.search a:before, .secondary-menu__nav li.search a:before {
    content: '';
    display: inline-block;
    vertical-align: -3px;
    margin: 0 10px;
    background-image: url(../images/sprites/sprite.png);
    background-position: 0px -102px;
    width: 18px;
    height: 19px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .sticky-menu__nav li.search a:before, .secondary-menu__nav li.search a:before {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.sticky-menu__nav li.search a:hover:before, .secondary-menu__nav li.search a:hover:before {
    background-position: -36px -102px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .sticky-menu__nav li.search a:hover:before, .secondary-menu__nav li.search a:hover:before {
        background-size: 150px 143px;
    }
}

.sticky-menu__nav li a, .secondary-menu__nav li a,
.sticky-menu__nav li span, .secondary-menu__nav li span {
    display: block;
    font-family: "Barlow", serif;
    font-size: 1em;
    font-weight: 300;
    line-height: 3.75em;
    color: #666;
    margin-left: 2.5em;
}

.sticky-menu__nav li a:hover, .secondary-menu__nav li a:hover,
.sticky-menu__nav li span:hover, .secondary-menu__nav li span:hover {
    color: #000;
    text-decoration: none;
}

.sticky-menu__nav li a.active, .secondary-menu__nav li a.active,
.sticky-menu__nav li span.active, .secondary-menu__nav li span.active {
    color: #000;
}

.sticky-menu__nav li:first-child a, .secondary-menu__nav li:first-child a {
    margin-left: 0;
}

.sticky-menu__expander {
    display: none;
    position: absolute;
    top: 0;
    right: 0;
    height: 3.75em;
    width: 3.75em;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    z-index: 1001;
    transition-duration: 0.3s;
}

.sticky-menu__expander .hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -0.9375em;
    margin-top: -0.59375em;
    width: 30px;
    height: 1.1875em;
}

.sticky-menu__expander .hamburger span,
.sticky-menu__expander .hamburger span:before,
.sticky-menu__expander .hamburger span:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 0.1875em;
    background: #000;
    top: 0.5em;
    border-radius: 0em;
}

.sticky-menu__expander .hamburger span:before,
.sticky-menu__expander .hamburger span:after {
    transform-origin: 50% 50%;
    transition: top .3s .6s ease, transform .3s ease;
}

.sticky-menu__expander .hamburger span:before {
    content: "";
    height: 100%;
    top: -0.5em;
}

.sticky-menu__expander .hamburger span:after {
    content: "";
    height: 100%;
    top: 0.5em;
}

.sticky-menu__expander .hamburger.active span, .sticky-menu--expanded .sticky-menu__expander .hamburger span {
    transition: background .3s 0s ease;
    background: transparent !important;
}

.sticky-menu__expander .hamburger.active span:before, .sticky-menu--expanded .sticky-menu__expander .hamburger span:before,
.sticky-menu__expander .hamburger.active span:after, .sticky-menu--expanded .sticky-menu__expander .hamburger span:after {
    transition: top .3s ease, transform .3s .5s ease;
    top: 0;
    width: 1.875em;
}

.sticky-menu__expander .hamburger.active span:before, .sticky-menu--expanded .sticky-menu__expander .hamburger span:before {
    transform: rotate3d(0, 0, 1, 45deg);
}

.sticky-menu__expander .hamburger.active span:after, .sticky-menu--expanded .sticky-menu__expander .hamburger span:after {
    transform: rotate3d(0, 0, 1, -45deg);
}

.sticky-menu__expander:hover {
    opacity: 0.8;
}

.sticky-menu--scrolled {
    transform: translateY(-60px);
}

.sticky-menu + .content-wrapper, .secondary-menu + .content-wrapper {
    padding-top: 3.75em;
}

@media only screen and (max-width: 1279px) {
    .sticky-menu__nav, .secondary-menu__nav {
        margin-right: 2.5em;
    }
    .sticky-menu__nav li, .secondary-menu__nav li {
        display: none;
    }
    .sticky-menu__nav li.search, .secondary-menu__nav li.search {
        display: inline-block;
    }
    .sticky-menu__nav li.search a, .secondary-menu__nav li.search a {
        font-size: 0;
        line-height: 60px;
    }
    .sticky-menu__nav li.search a:before, .secondary-menu__nav li.search a:before {
        vertical-align: middle;
        background-position: -54px -102px;
    }
}

@media only screen and (max-width: 1279px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 1279px) and (min-resolution: 192dpi) {
    .sticky-menu__nav li.search a:before, .secondary-menu__nav li.search a:before {
        background-size: 150px 143px;
    }
}

@media only screen and (max-width: 1279px) {
    .sticky-menu__nav li.lang, .secondary-menu__nav li.lang {
        display: inline-block;
        border: none;
    }
    .sticky-menu__nav li.lang span, .secondary-menu__nav li.lang span {
        font-size: 0;
        line-height: 60px;
    }
    .sticky-menu__nav li.lang span:before, .secondary-menu__nav li.lang span:before {
        vertical-align: middle;
        background-position: -90px -102px;
    }
}

@media only screen and (max-width: 1279px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 1279px) and (min-resolution: 192dpi) {
    .sticky-menu__nav li.lang span:before, .secondary-menu__nav li.lang span:before {
        background-size: 150px 143px;
    }
}

@media only screen and (max-width: 1279px) {
    .sticky-menu__nav li.lang span:after, .secondary-menu__nav li.lang span:after {
        display: none;
    }
    .sticky-menu__nav li.lang ul, .secondary-menu__nav li.lang ul {
        display: none;
        left: auto;
        right: 0;
        visibility: visible;
        opacity: 1;
    }
    .sticky-menu__nav li.lang ul.is-expanded, .secondary-menu__nav li.lang ul.is-expanded {
        display: block;
    }
    .sticky-menu__expander {
        display: block;
    }
}

.mobile-menu {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    width: 100%;
    z-index: 1000;
    background-color: #fff;
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    max-height: calc(100vh - 60px);
}

.mobile-menu li.expandable {
    border-top: none !important;
}

.mobile-menu li.expandable > ul {
    display: none;
}

.mobile-menu li.expandable a {
    padding-left: 1.875em;
}

.mobile-menu li.expandable > a {
    padding-left: 1.25em;
}

.mobile-menu li.expandable > a:after {
    display: none;
}

.mobile-menu li {
    position: relative;
    border-top: 1px solid #DFDFDF;
}

.mobile-menu a {
    position: relative;
    display: block;
    line-height: 1.5em;
    padding: 0.75em 3.125em 0.75em 1.25em;
    color: #999;
}

.mobile-menu a:after {
    content: '';
    position: absolute;
    right: 1.25em;
    top: 50%;
    margin-top: -0.3125em;
    opacity: .5;
    transition: transform 0.3s;
    background-image: url(../images/sprites/sprite.png);
    background-position: -46px -121px;
    width: 7px;
    height: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .mobile-menu a:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.mobile-menu a:hover {
    color: #1a4c8c;
}

.mobile-menu a:hover:after {
    opacity: 1;
    background-position: -39px -121px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .mobile-menu a:hover:after {
        background-size: 150px 143px;
    }
}

.mobile-menu .expander {
    position: absolute;
    z-index: 2;
    right: 0.9375em;
    top: 0.5em;
    width: 2em;
    height: 2em;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 50%;
    cursor: pointer;
}

.mobile-menu .expander:after {
    content: '';
    position: absolute;
    right: 1.25em;
    top: 50%;
    left: 50%;
    transform: rotate(90deg);
    margin-left: -0.1875em;
    margin-top: -0.3125em;
    transition: transform 0.3s;
    background-image: url(../images/sprites/sprite.png);
    background-position: -53px -121px;
    width: 7px;
    height: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .mobile-menu .expander:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.mobile-menu .expander:hover {
    background-color: rgba(0, 0, 0, 0.3);
}

.mobile-menu .expander.expanded:after {
    transform: rotate(-90deg) !important;
}

.mobile-menu__primary li, .mobile-menu__secondary li, .mobile-menu__gray li {
    border-color: rgba(0, 0, 0, 0.1);
}

.mobile-menu__primary a, .mobile-menu__secondary a, .mobile-menu__gray a {
    color: #fff;
}

.mobile-menu__primary a:after, .mobile-menu__secondary a:after, .mobile-menu__gray a:after {
    background-position: -53px -121px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .mobile-menu__primary a:after, .mobile-menu__secondary a:after, .mobile-menu__gray a:after {
        background-size: 150px 143px;
    }
}

.mobile-menu__primary a:hover, .mobile-menu__secondary a:hover, .mobile-menu__gray a:hover {
    color: #fff;
}

.mobile-menu__primary a:hover:after, .mobile-menu__secondary a:hover:after, .mobile-menu__gray a:hover:after {
    opacity: 1;
    background-position: -53px -121px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .mobile-menu__primary a:hover:after, .mobile-menu__secondary a:hover:after, .mobile-menu__gray a:hover:after {
        background-size: 150px 143px;
    }
}

.mobile-menu__primary > a, .mobile-menu__secondary > a, .mobile-menu__gray > a {
    font-family: "Barlow", serif;
}

.mobile-menu__primary > a:after, .mobile-menu__secondary > a:after, .mobile-menu__gray > a:after {
    display: none;
}

.mobile-menu__primary {
    background-color: #9C4600;
}

.mobile-menu__primary:hover {
    background-color: #893d00;
}

.mobile-menu__primary li {
    background-color: #893d00;
}

.mobile-menu__primary li:hover {
    background-color: #9C4600;
}

.mobile-menu__secondary {
    background-color: #676A22;
}

.mobile-menu__secondary:hover {
    background-color: #575a1d;
}

.mobile-menu__secondary li {
    background-color: #575a1d;
}

.mobile-menu__secondary li:hover {
    background-color: #676A22;
}

.mobile-menu__gray {
    background-color: #41C0F0;
}

.mobile-menu__gray:hover {
    background-color: #3cb3e0;
}

.mobile-menu__gray li {
    background-color: #3cb3e0;
}

.mobile-menu__gray li:hover {
    background-color: #41C0F0;
}

.search-form {
    position: fixed;
    top: -3.75em;
    left: 0;
    width: 100%;
    height: 3.75em;
    background-color: #fff;
    z-index: 999;
    transform: translate3d(0, 0, 0);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 0.625em 0;
    visibility: hidden;
    transition: visibility 0s linear 0.3s, linear, top 0.3s linear;
}

.search-form form {
    position: relative;
}

.search-form input {
    padding: 0;
    float: left;
    width: calc(100% - 190px);
    font-size: 1.25em;
    height: 2em;
    border-bottom: 1px solid #DFDFDF;
}

.search-form button {
    position: absolute;
    right: 3.125em;
    top: 0;
    width: 120px;
    height: 40px;
    padding: 0.625em;
    font-family: "Barlow", serif;
    font-weight: normal;
}

.search-form button:before {
    content: '';
    display: inline-block;
    vertical-align: -3px;
    margin-right: 0.9375em;
    background-image: url(../images/sprites/sprite.png);
    background-position: -18px -102px;
    width: 18px;
    height: 19px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .search-form button:before {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.search-form__close-btn {
    position: absolute;
    right: 0;
    top: 0;
    background-image: url(../images/sprites/sprite.png);
    background-position: 0px -36px;
    width: 40px;
    height: 40px;
    cursor: pointer;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .search-form__close-btn {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.search-form + .content-wrapper {
    padding-top: 3.75em;
}

.search-form--active {
    visibility: visible;
    top: 3.75em;
    transition-delay: 0s;
}

@media only screen and (max-width: 425px) {
    .search-form input {
        width: calc(100% - 60px);
    }
    .search-form button {
        width: 40px;
        height: 40px;
        font-size: 0;
    }
    .search-form button:before {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }
    .search-form__close-btn {
        display: none;
    }
}

.secondary-menu {
    top: 3.75em;
    z-index: 998;
    position: fixed;
    transition: transform 0.3s;
    /* &__category{
        height: em(60);
        width: 100%;
        background: transparent no-repeat 0 0;

        a{
            display: block;
            font-size: em(20);
            padding-left: em(200,20);
            line-height: em(60,20);
            color: rgba(#fff,.5);
            font-family: $heading-font;
            transition-duration: 0.3s;

            &:hover{
                color: #fff;
            }
        }
    } */
}

.secondary-menu__title {
    float: right;
    display: table;
    height: 3.75em;
    padding-right: 1.5625em;
    margin-left: -5em;
    min-width: 17.5em;
}

.secondary-menu__title a {
    display: table-cell;
    vertical-align: middle;
    padding-left: 12.1875em;
    font-family: "Youth", serif;
    line-height: 1.3;
    color: #666;
    transition-duration: 0.3s;
}

.secondary-menu__title a:hover {
    color: #000;
}

.secondary-menu__expander {
    position: absolute;
	right: 0px;
    width: 2.125em;
    height: 2.125em;
    margin-top: 0.8125em;
    border-radius: 50%;
    background-color: rgba(0, 0, 0, 0.3);
    cursor: pointer;
    transition-duration: 0.3s;
}

.secondary-menu__expander:after {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -5px;
    margin-left: -7px;
    transition-duration: .5s;
    background-image: url(../images/sprites/sprite.png);
    background-position: -100px -76px;
    width: 15px;
    height: 10px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .secondary-menu__expander:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.secondary-menu__expander:hover {
    background-color: rgba(0, 0, 0, 0.4);
}

.secondary-menu__expander.active:after {
    transform: rotate(-180deg);
}

.secondary-menu__nav li a {
    color: #666;
}

.secondary-menu__nav li a:hover {
    color: rgba(0, 0, 0, 1);
}

.secondary-menu__nav li a.c-primary {
    color: #666;
}

.secondary-menu__nav li a.c-secondary {
    color: #666;
}

.secondary-menu__nav li a.c-gray {
    color: #666;
}

.secondary-menu__nav li a.c-gray.active {
    color: #333 !important;
}
.secondary-menu__nav li a.c-gray:hover {
    color: rgba(0, 0, 0, 1);
}
.secondary-menu .active {
    color: #000 !important;
    font-weight: bold;
}

.secondary-menu--primary {
    background-color: #f1f1f1;
}

.secondary-menu--secondary {
    background-color: #f1f1f1;
}

.secondary-menu--gray {
    background-color: #f1f1f1;
}

.secondary-menu--dark-gray {
    background-color: #f1f1f1;
}

.secondary-menu--global {
    background-color: #f1f1f1;
}

.secondary-menu--global .secondary-menu__title {
    margin-left: 0;
    min-width: 0;
}

.secondary-menu--global .secondary-menu__title a {
    /*padding-left: 0;*/
    color: #9FA2A6;
}

.secondary-menu--global .secondary-menu__expander {
    background-color: transparent;
    border: 1px solid #DFDFDF;
}

.secondary-menu--global .secondary-menu__expander:after {
    background-position: -33px -91px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .secondary-menu--global .secondary-menu__expander:after {
        background-size: 150px 143px;
    }
}

.secondary-menu--global .secondary-menu__expander:hover {
    background-color: rgba(0, 0, 0, 0.05);
}

.secondary-menu--scrolled {
    transform: translateY(-60px);
}

.secondary-menu + .content-wrapper {
    padding-top: 3.75em;
}

.secondary-menu ~ .content-wrapper {
    padding-top: 7.5em;
}

.secondary-picture--primary {
   
    background-color: #f1f1f1;
	position: relative
}
.secondary-picture--primary:after {


    content: "";
    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: 40%;
    width: 50px;
    height: 50px;
    /*background-image: url(../images/sprites/menu_icon.png);*/
    background-size: 150px;
    background-position: 100px -50px;

}

.secondary-picture--secondary {
   
    background-color: #f1f1f1;
	position: relative
}
.secondary-picture--secondary:after {


    content: "";
    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: 40%;
    width: 50px;
    height: 50px;
    /*background-image: url(../images/sprites/menu_icon.png);*/
    background-size: 150px;
    background-position: 50px -50px;

}

.secondary-picture--gray {
    background-color: #f1f1f1;
	position: relative
}

.secondary-picture--gray:after {


    content: "";
    position: absolute;
    top: 50%;
    margin-top: -25px;
    left: 40%;
    width: 50px;
    height: 50px;
    /*background-image: url(../images/sprites/menu_icon.png);*/
    background-size: 150px;
    background-position: 0px -50px;

}



.secondary-picture--dark-gray {
   /*  background-image: url("../images/secondary-menu/history.png");*/
}

@media only screen and (max-width: 1279px) {
    .secondary-menu {
        display: none;
    }
    .secondary-menu ~ .content-wrapper {
        padding-top: 3.75em;
    }
}

.megamenu {
    position: fixed;
    top: 7.5em;
    transform: translateY(-200px);
    left: 0;
    width: 100%;
    height: calc(100vh - 120px);
    overflow: auto;
    z-index: 900;
    background-color: #000;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s ease 0.5s, opacity 0.5s ease, transform 0.5s ease;
    /* &__close-btn{
		display: block;
		position: absolute;
		z-index: 9999;
		top: em(40);
		right: em(40);
		cursor: pointer;
		transition-duration: 0.3s;
		@include retina-sprite($close-btn-group);

		&:hover{
			opacity: 0.6;
		}
	} */
}

.megamenu.active {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
}

.megamenu .category {
    min-height: calc(100vh - 120px);
}

.secondary-menu--scrolled + .megamenu {
    top: 3.75em;
    height: calc(100vh - 60px);
}

.secondary-menu--scrolled + .megamenu .category {
    min-height: calc(100vh - 60px);
}

.category {
    position: relative;
    padding: 0;
    background-color: #ffffff;
    color: #fff;
	border-right: solid 1px rgba(0,0,0,.1);
}

@media only screen and (max-width: 940px) {
	.category {

	border-bottom: solid 1px rgba(0,0,0,.1);
	border-right: none;

}	
}


.category a {
    color: #666;
}

.category a:hover {
   /* opacity: 0.7;*/
    text-decoration: none;
}

.category__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: transparent no-repeat center center / cover;
}

.category__img:before {
    content: "";
    display: block;
    padding-top: 45%;
}

/*.category__img:after {
    content: "";
    background-color: rgba(26, 76, 140, 0.2);
    background-image: -moz-linear-gradient(top, rgba(26, 76, 140, 0.2) 0%, #1a4c8c 100%);
    background-image: -webkit-linear-gradient(top, rgba(26, 76, 140, 0.2) 0%, #1a4c8c 100%);
    background: linear-gradient(to bottom, rgba(26, 76, 140, 0.2) 0%, #1a4c8c 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=0 );
}*/

.category__inner {
    position: relative;
    z-index: 2;
    padding: 1.875em 1.5625em 3.125em;
}

.category__title {
    position: relative;
    display: block;
    width: 100%;
    font-size: 2.5em;
    font-weight: 300;
    line-height: 1.1;
    color: #666;
    margin-bottom: 2em;
}

.category__title a {
    transition-duration: 0.3s;
}
/*
.category__title a:before {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -11px;
    right: 17px;
    background-image: url(../images/sprites/sprite.png);
    background-position: 0px -121px;
    width: 14px;
    height: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .category__title a:before {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.category__title a:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -26px;
    right: 0;
    width: 52px;
    height: 52px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
}
*/

.category--gray .category__title a:after {
	transition-duration: 0.4s;
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -46px;
    right: 0;
    width: 100px;
    height: 100px;
          background-image: url(../images/sprites/menu_icon.png);
        background-size: 301px;
	background-position: 0px 0px
}

.category--gray:hover .category__title a:after {
	transition-duration: 0.4s;
	background-position: 0px -100px
}
.category--gray, .category--primary, .category--secondary {
	transition-duration: 0.4s;

}
.category--gray:hover {
transition-duration: 0.4s;
	background-color: #ccc
}

.category--primary .category__title a:after {
	transition-duration: 0.4s;
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -46px;
    right: 0;
    width: 100px;
    height: 100px;
          background-image: url(../images/sprites/menu_icon.png);
        background-size: 301px;
	background-position: -100px 0px
}
.category--primary:hover .category__title a:after {
	transition-duration: 0.4s;
	background-position: -100px -100px
}
.category--primary:hover {
transition-duration: 0.4s;
	background-color: #ccc
}

.category--secondary .category__title a:after {
	transition-duration: 0.4s;
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -46px;
    right: 0;
    width: 100px;
    height: 100px;
          background-image: url(../images/sprites/menu_icon.png);
        background-size: 301px;
	background-position: -200px 0px
}
.category--secondary:hover .category__title a:after {
	transition-duration: 0.4s;
	background-position: -200px -100px
}
.category--secondary:hover {
transition-duration: 0.4s;
	background-color: #ccc
}

.category--gray:hover .category__title a,
.category--primary:hover .category__title a,
.category--secondary:hover .category__title a,
.category:hover .category__primary-nav li a
{
	transition-duration: 0.4s;
	color: #ffffff

}
.category--gray:hover .category__title a:hover,
.category--primary:hover .category__title a:hover,
.category--secondary:hover .category__title a:hover,
.category:hover .category__primary-nav li a:hover
{
	transition-duration: 0.4s;
	color: #fff;
	text-shadow: 0px 0px 70px rgba(0,0,0,0.6);


}

.category__primary-nav {
    min-height: 12.2em;
    min-height: calc(12em + 4px);
}

.category__primary-nav li {
    font-family: "Barlow", serif;
    font-weight: 300;
    line-height: 1em;
  /*  border-bottom: 1px solid rgba(0, 0, 0, 0.1);*/
}

.category__primary-nav a,
.category__primary-nav span {
    display: block;
    padding: 1em 0;
}

.category__secondary-nav {
    margin-top: 1.875em;
}

.category__secondary-nav li {
    float: left;
    width: 50%;
    font-style: 1em;
    font-weight: 300;
    line-height: 1.8;
}

.category__secondary-nav li:before {
    content: "- ";
}
/*
.category--gray {
    background-color: #9FA2A6;
}

.category--gray .category__img:after {
    background-color: rgba(159, 162, 166, 0.2);
    background-image: -moz-linear-gradient(top, rgba(159, 162, 166, 0.2) 0%, #9FA2A6 100%);
    background-image: -webkit-linear-gradient(top, rgba(159, 162, 166, 0.2) 0%, #9FA2A6 100%);
    background: linear-gradient(to bottom, rgba(159, 162, 166, 0.2) 0%, #9FA2A6 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=0 );
}

.category--secondary {
    background-color: #bea40d;
}

.category--secondary .category__img:after {
    background-color: rgba(190, 164, 13, 0.2);
    background-image: -moz-linear-gradient(top, rgba(190, 164, 13, 0.2) 0%, #bea40d 100%);
    background-image: -webkit-linear-gradient(top, rgba(190, 164, 13, 0.2) 0%, #bea40d 100%);
    background: linear-gradient(to bottom, rgba(190, 164, 13, 0.2) 0%, #bea40d 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=0 );
}
*/
@media only screen and (min-width: 1441px) {
    .category__inner {
        padding: 1.875em 2.5em 3.125em;
    }
}

@media only screen and (max-width: 1279px) {
    .category__inner {
        font-size: .9em;
        padding: 1.875em 1.25em 1.875em;
    }
}

.intro {
    position: relative;
    width: 100%;
}

.intro--homepage .slide {
    /* max-height: none; */
    height: calc(100vh - 210px);
}

.intro-slider {
    position: relative;
    background-color: #353535;
}

.slide {
    position: relative;
    display: table;
    height: 46.875em;
    height: calc(100vh - 120px);
    min-height: 25em;
    max-height: 40.625em;
    width: 100%;
    background: no-repeat center center / cover;
}

.slide__caption {
    display: table-cell;
    width: 100%;
    vertical-align: middle;
    padding-top: 60px;
    text-align: center;
}

.slide__caption h1,
.slide__caption h2 {
    font-size: 2.9375em;
    line-height: 1.2;
    font-weight: 500;
    text-transform: normal;
    margin-bottom: 0;
}

.slide__caption h1 span,
.slide__caption h2 span {
    display: block;
    font-size: 0.53191em;
    margin-bottom: 0.2em;
    text-transform: none;
}

.slide__caption h1 span:before,
.slide__caption h2 span:before {
 /*   content: "";
    margin: 0.6em auto;
    border-color: rgba(51, 51, 51, 0.0);*/
}

.slide__caption p {
    font-size: 1.25em;
    margin-bottom: 0;
    font-family: "Barlow", serif;
    font-weight: 300;
    color: rgba(0, 0, 0, 0.7);
}

.slide__caption img {
    display: inline !important;
    width: auto !important;
}

.slide__caption .button, .slide__caption .cta-box a, .cta-box .slide__caption a, .slide__caption .sidebar-widget > a, .slide__caption .application-form button, .application-form .slide__caption button {
    margin: 2.5em auto 0;
}

.slide__caption--left {
    display: block;
    position: absolute;
    bottom: 100px;
    left: 0;
    text-align: left;
}

.slide__caption--left h1, .slide__caption--left h2 {
    font-size: 3.75em;
    font-weight: 500;
    line-height: 1.1;
    text-transform: none;
	color: rgba(255,255,255,1.00)
}

.slide__caption--left h1 span, .slide__caption--left h2 span {
    font-size: 0.43333em;
    font-weight: 300;
    /* color: rgba(#fff,0.7); */
    margin-bottom: 1.15385em;
}

.slide__caption--left h1 span:before, .slide__caption--left h2 span:before {
    margin: 0.57692em 0 0.76923em;
    border-color: rgba(51, 51, 51, 0.3);
}

.slide__caption--left p {
    width: 40%;
    font-family: "Youth", Helvetica, Arial, sans-serif;
    font-size: 1.375em;
	color: rgba(255,255,255,1.00)
}

.slide__caption--left p:before {
   /* content: "";
    border-color: rgba(51, 51, 51, 0.3);
    margin: 0.68182em 0 0.90909em;*/
}

.slide__caption--left .button, .slide__caption--left .cta-box a, .cta-box .slide__caption--left a, .slide__caption--left .sidebar-widget > a, .slide__caption--left .application-form button, .application-form .slide__caption--left button {
    margin: 2.5em 0 0;
}

.slide--overlay:after {
    content: "";
    background: rgba(0, 0, 0, 0.5);
}

.slide--dark .slide__caption {
    color: #fff;
}

.slide--dark .slide__caption h1, .slide--dark .slide__caption h2 {
    color: #fff;
}

.slide--dark .slide__caption h1 span, .slide--dark .slide__caption h2 span {
    color: rgba(255, 255, 255, 1);
}

.slide--dark .slide__caption h1 span:before, .slide--dark .slide__caption h2 span:before {
    border-color: rgba(255, 255, 255, 0.0);
}

.slide--dark .slide__caption p {
    color: rgba(255, 255, 255, 0.7);
}

.slide--dark .slide__caption p:before {
    border-color: rgba(255, 255, 255, 0.5);
}

.scroll-down {
    position: absolute;
    display: block;
    left: 50%;
    margin-left: -16px;
    bottom: 40px;
    width: 32px;
    height: 32px;
    border: 4px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer;
    z-index: 100;
    transition-duration: 0.3s;
}

.scroll-down:after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-image: url(../images/sprites/sprite.png);
    background-position: -62px -91px;
    width: 14px;
    height: 9px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .scroll-down:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.scroll-down:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

@media only screen and (max-width: 1279px) {
    .slide__caption--left p {
        width: 50%;
    }
}

@media only screen and (max-width: 940px) {
    .slide {
        max-height: 31.25em;
    }
    .slide__caption--left p {
        width: 70%;
    }
}

@media only screen and (max-width: 758px) {
    .slide {
        max-height: 40em;
    }
    .slide__caption {
        font-size: .8em;
    }
    .slide__caption--left p {
        width: 100%;
    }
}

@media only screen and (max-width: 425px) {
    .slide__caption {
        font-size: .8em;
    }
}

.button-nav {
    margin: 0 -0.625em 0.625em;
}

.button-nav li {
    float: left;
    width: 50%;
    padding: 0 0.625em;
    margin-bottom: 0.625em;
}

.button-nav a {
    position: relative;
    display: block;
    width: 100%;
    border: 1px solid #DFDFDF;
    font-family: "Barlow", serif;
    font-size: 1.1875em;
    line-height: 1.5;
    padding: 0.52632em 0.78947em;
    text-decoration: none !important;
}

.button-nav a:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -9px;
    right: 0.625em;
    opacity: .5;
    background-image: url(../images/sprites/sprite.png);
    background-position: -109px -36px;
    width: 12px;
    height: 18px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .button-nav a:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.button-nav a:hover {
    color: rgba(51, 51, 51, 0.6);
}

.button-nav a:hover:after {
    opacity: .4;
}

.bullet-nav {
    position: relative;
    display: block;
    width: 100%;
    min-height: 16.875em;
    margin-bottom: 1.25em;
    background: #f1f1f1 no-repeat center center/cover;
}

.bullet-nav__img {
    position: absolute;
    width: 50%;
    height: 100%;
    padding: 1.875em;
    background: no-repeat center center / cover;
}

.bullet-nav__img:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: rgba(0, 0, 0, 0.5);
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.5) 0%, transparent 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=0 );
}

.bullet-nav__img h3 {
    position: relative;
    z-index: 2;
    font-size: 2.1875em;
    color: #fff;
}

.bullet-nav__img a {
    color: #fff;
}

.bullet-nav__nav {
    padding-left: 50%;
}

.bullet-nav__nav ul {
    padding: 1.875em;
}

.bullet-nav__nav li {
    border-bottom: 1px solid #DFDFDF;
}

.bullet-nav__nav a {
    position: relative;
    display: block;
    line-height: 1.5;
    padding: 0.3125em;
    color: #1a4c8c;
    transition-duration: 0.3s;
}

.bullet-nav__nav a:after {
    content: '';
    position: absolute;
    top: 50%;
    margin-top: -5px;
    right: 0;
    opacity: .5;
    background-image: url(../images/sprites/sprite.png);
    background-position: -46px -121px;
    width: 7px;
    height: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .bullet-nav__nav a:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.bullet-nav__nav a:hover {
    opacity: .7;
}

.goto {
    position: relative;
    display: block;
    width: 100%;
    background-color: #f1f1f1;
    margin-bottom: 1.25em;
    transition-duration: 0.3s;
}

.goto__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 9.6875em;
    height: 100%;
    background: transparent no-repeat center center / cover;
    transition-duration: 0.3s;
}

.goto__img + .goto__inner {
    margin-left: 9.6875em;
}

.goto__inner {
    min-height: 7.1875em;
    padding: 0.9375em 2.1875em 0.9375em 0.9375em;
}

.goto__title {
    font-size: 1.3125em;
    color: #333;
    margin-bottom: 0;
}

a.goto:hover {
    text-decoration: none;
    background-color: #d8d8d8;
}

a.goto:hover .goto__img {
    opacity: 0.8;
}

a.goto .goto__inner:after {
    content: '';
    position: absolute;
    bottom: 0.9375em;
    right: 0.9375em;
    background-image: url(../images/sprites/sprite.png);
    background-position: -109px -36px;
    width: 12px;
    height: 18px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    a.goto .goto__inner:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.section--gray .goto {
    background-color: #b1b6bb;
}

.section--gray .goto:hover {
    background-color: #a3a9af;
}

.section--gray .goto__title {
    color: #fff;
}

.nav-box {
    position: relative;
    display: block;
    width: 100%;
    background-color: #fff;
    margin-bottom: 1.25em;
}

.nav-box__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 9.375em;
    height: 100%;
    background: transparent no-repeat center left / contain;
    transition-duration: 0.3s;
}

.nav-box__inner {
    position: relative;
    z-index: 2;
    display: table;
    min-height: 7.1875em;
    margin-left: 8.125em;
    padding: 0.9375em;
}

.nav-box__title {
    display: table-cell;
    vertical-align: middle;
    width: 40%;
    font-family: "Youth", Helvetica, Arial, sans-serif;
    font-size: 0.8125em;
    font-weight: 700;
    text-transform: uppercase;
}

.nav-box__title a {
    color: #000;
}

.nav-box__links {
    display: table-cell;
    vertical-align: middle;
}

.nav-box__links li {
    font-size: 0.9375em;
    color: rgba(102, 102, 102, 0.6);
    padding: 0.33333em;
}

.nav-box__links li:before {
    content: '- ';
}

.nav-box__links a {
    color: rgba(102, 102, 102, 0.6);
}

.img-box {
    position: relative;
    display: block;
    width: 100%;
    max-height: 18.75em;
    margin-bottom: 1.25em;
    background: #f1f1f1 no-repeat center center/cover;
    overflow: hidden;
}

.img-box:before {
    content: "";
    display: block;
    padding-top: 65%;
}

.img-box:after {
    content: '';
    background: rgba(204, 204, 204, 0.8);
    opacity: 0;
    transition-duration: 0.3s;
}
.content-wrapper--primary .img-box:after {
    content: '';
    background: rgba(204, 204, 204, 0.8);
    opacity: 0;
    transition-duration: 0.3s;
}



.img-box:hover:after {
    opacity: 1;
}

.img-box__inner {
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 6.25em 1.25em 1.25em;
    color: #fff;
}

.img-box__inner:before {
    content: '';
    position: absolute;
    z-index: -1;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: transparent;
    background-image: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    background-image: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=0 );
}

.img-box__title {
    font-size: 1.5625em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0;
}

.img-box .button, .img-box .cta-box a, .cta-box .img-box a, .img-box .sidebar-widget > a, .img-box .application-form button, .application-form .img-box button {
    font-size: 0.8125em;
    margin-top: 1.53846em;
}

.img-box + .expand-box {
    margin-top: -1.25em;
}

.expand-box {
    background-color: #1a4c8c;
    color: #fff;
}

.expand-box:last-child {
    margin-bottom: 1.25em;
}

.expand-box__header {
    position: relative;
    height: 4.375em;
    cursor: pointer;
}

.expand-box__header:after {
    content: '';
    position: absolute;
    right: 1.25em;
    top: 50%;
    margin-top: -0.3125em;
    transition-duration: 0.3s;
    background-image: url(../images/sprites/sprite.png);
    background-position: -100px -76px;
    width: 15px;
    height: 10px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .expand-box__header:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.expand-box__header h4 {
    font-size: 1em;
    position: absolute;
    left: 1.25em;
    top: 50%;
    transform: translateY(-50%);
    color: #fff;
    padding-right: 3.125em;
}

.expand-box__content {
    display: none;
    padding: 0 1.25em 1px;
}

.expand-box__content .button, .expand-box__content .cta-box a, .cta-box .expand-box__content a, .expand-box__content .sidebar-widget > a, .expand-box__content .application-form button, .application-form .expand-box__content button {
    font-size: 0.8125em;
    margin-bottom: 1.53846em;
}

.expand-box + .expand-box {
    border-top: 1px solid #fff;
}

.expand-box--expanded .expand-box__header:after {
    transform: rotate(-180deg);
}

.cta-box {
    position: relative;
    border: 1px solid #DFDFDF;
    padding: 0.625em;
    margin-bottom: 1.25em;
}

.cta-box p {
    display: inline-block;
    margin-bottom: 0;
    padding: 0.5em 0;
}

.cta-box strong {
    display: inline-block;
    font-family: "Barlow", serif;
    font-size: 1.25em;
    color: #1a4c8c;
    padding: 0.5em 0;
}

.cta-box a {
    float: right;
    margin-bottom: 0 !important;
    margin-left: 0.3125em;
    text-decoration: none !important;
    color: #fff !important;
}

.cta-box--secondary strong {
    color: #bea40d;
}

.cta-box--secondary a {
    border-color: #bea40d;
    background-color: #bea40d;
}

.cta-box--secondary a:hover {
    border-color: #8e7b0a;
    background-color: #8e7b0a;
}

@media only screen and (max-width: 1279px) {
    .page-content .button-nav li {
        width: 100%;
    }
}

@media only screen and (max-width: 940px) {
    .button-nav li {
        width: 100%;
    }
}

@media only screen and (max-width: 758px) {
    .cta-box .button, .cta-box a, .cta-box .sidebar-widget > a, .cta-box .application-form button, .application-form .cta-box button {
        float: left;
        width: 100%;
        margin-left: 0;
        margin-top: 0.3125em;
    }
}

@media only screen and (max-width: 560px) {
    .bullet-nav__img {
        position: relative;
        width: 100%;
        height: 12.5em;
    }
    .bullet-nav__nav {
        padding-left: 0;
    }
}

@media only screen and (max-width: 425px) {
    .goto {
        font-size: 0.75em;
    }
    .nav-box__title {
        width: 100%;
    }
    .nav-box__links {
        display: none;
    }
    .bullet-nav__img {
        padding: 0.9375em;
    }
    .bullet-nav__img h3,
    .bullet-nav__img h3 a {
        color: #fff;
    }
    .bullet-nav__nav ul {
        padding: 0.9375em 0.9375em 1.5625em;
    }
    .button-nav li {
        font-size: .8em;
    }
}

.header-slider {
    width: 100%;
    background-color: #353535;
}

.header-slider__slide {
    background: transparent no-repeat center center / cover;
}

.header-slider__slide:before {
    content: "";
    display: block;
    padding-top: 35%;
}

.header-slider--narrow .header-slider__slide:before {
    content: "";
    display: block;
    padding-top: 30%;
}

.header-slider + .page--move-up {
    padding-top: 0;
    margin-top: -140px;
}

.header-slider + .page--move-up .page-content {
    padding-top: 1.875em;
}

.header-slider + .page--move-up .sidebar {
    margin-top: 140px;
}

.header-bg {
    width: 100%;
    background: #353535 no-repeat center center/cover;
    min-height: 6.25em;
}

.header-bg:before {
    content: "";
    display: block;
    padding-top: 15%;
}

.header-bg + .page--move-up {
    padding-top: 0;
    margin-top: -140px;
}

.header-bg + .page--move-up .page-content {
    padding-top: 1.875em;
}

.header-bg + .page--move-up .sidebar {
    margin-top: 140px;
}

@media only screen and (max-width: 940px) {
    .header-slider + .page {
        margin-top: 0;
    }
    .header-slider + .page .sidebar {
        margin-top: 0;
    }
}

.content-wrapper {
    /* &--transparent{
		.tree_disp.c-color{
			background-color: transparent;
		}
	} */
}

.content-wrapper--primary {
    /* .tree_disp.c-color{
			background-color: #dfedff;
		} */
}

.content-wrapper--primary .section-title {
    color: #666;
}

.content-wrapper--primary .bnr--gray .bnr__title {
    color: #666;
}

.content-wrapper--secondary {
    /* .tree_disp.c-color{
			background-color: $secondary-color;
		} */
}

.content-wrapper--secondary .section-title {
    color: #666;
}

.content-wrapper--secondary .img-box:after,
.content-wrapper--secondary .news__img:after {
    background-color: rgba(204, 204, 204, 0.5);
}

.content-wrapper--secondary .event__date {
    color: #666;
}

.content-wrapper--secondary .bnr--gray .bnr__title {
    color: #666;
}

.content-wrapper--secondary .button--fill, .content-wrapper--secondary .button--header, .content-wrapper--secondary .cta-box a, .cta-box .content-wrapper--secondary a, .content-wrapper--secondary .load-more, .content-wrapper--secondary .application-form button, .application-form .content-wrapper--secondary button {
    background-color: #666;
    border-color: #666;
}

.content-wrapper--secondary .button--fill:hover, .content-wrapper--secondary .button--header:hover, .content-wrapper--secondary .cta-box a:hover, .cta-box .content-wrapper--secondary a:hover, .content-wrapper--secondary .load-more:hover, .content-wrapper--secondary .application-form button:hover, .application-form .content-wrapper--secondary button:hover {
    background-color: #000;
    border-color: #000;
}

.content-wrapper--gray {
    /* .tree_disp.c-color{
			background-color: $light-gray;
		} */
}

.content-wrapper--gray .section-title {
    color: #333;
}

.content-wrapper--gray .img-box:after {
    background-color: rgba(204, 204, 204, 0.5);
}

.content-wrapper--gray .button--fill, .content-wrapper--gray .button--header, .content-wrapper--gray .cta-box a, .cta-box .content-wrapper--gray a, .content-wrapper--gray .load-more, .content-wrapper--gray .application-form button, .application-form .content-wrapper--gray button {
    background-color: #9FA2A6;
    border-color: #9FA2A6;
}

.content-wrapper--gray .button--fill:hover, .content-wrapper--gray .button--header:hover, .content-wrapper--gray .cta-box a:hover, .cta-box .content-wrapper--gray a:hover, .content-wrapper--gray .load-more:hover, .content-wrapper--gray .application-form button:hover, .application-form .content-wrapper--gray button:hover {
    background-color: #85888d;
    border-color: #85888d;
}

.page {
    position: relative;
    padding: 1.875em 0 0;
}

.page h1 {
    font-weight: 100;
    line-height: 1.1;
    color: #333;
    margin-bottom: 0;
}

.page h1:after {
    content: '';
    display: block;
    margin: 0.28571em 0 0.42857em;
    /*background-image: url(../images/sprites/sprite.png);*/
    background-position: -28px -121px;
    width: 11px;
    height: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .page h1:after {
        /*background-image: url(../images/sprites/sprite@2x.png);*/
        background-size: 150px 143px;
    }
}

.page-content {
    position: relative;
    z-index: 2;
    padding: 3.75em 2.5em 2.5em 0.625em;
    background-color: #fff;
}

.page-content:before {
    content: '';
    position: absolute;
    top: 0;
    left: -9999px;
    width: 9999px;
    height: 100%;
    background-color: #fff;
}

.page-content footer {
    padding-top: 1.25em;
}

.page-content .hero-caption {
    padding-left: 1.25em;
}

.page-content .hero-caption:before, .page-content .hero-caption--center:after {
    display: none;
}

.share-buttons span {
    display: inline-block;
    font-family: "Barlow", serif;
    font-size: 1.125em;
    line-height: 1;
    color: #1a4c8c;
    margin-right: 1.11111em;
}

@media only screen and (max-width: 940px) {
    .page-content {
        padding: 3.75em 0.625em 2.5em 0.625em;
    }
    .page-content:before {
        display: none;
    }
}

.sidebar {
    padding: 1.25em 0.625em 0 0;
    background-color: #f1f1f1;
}

.sidebar:after {
    content: '';
    position: absolute;
    top: 0;
    right: -9999px;
    width: 9999px;
    height: 100%;
    background-color: #f1f1f1;
}

.sidebar-widget {
    padding-top: 2.5em;
    padding-left: 2.5em;
    margin-bottom: 2.5em;
}

.sidebar-widget__title, .sidebar-news__title {
    font-size: 1.125em;
    font-weight: 400;
    color: #000;
    padding-bottom: 0.83333em;
    border-bottom: 1px solid #DFDFDF;
    margin-bottom: 1.66667em;
}

.sidebar-widget__subtitle {
    font-size: 1em;
    font-weight: 400;
    color: #000;
    margin-bottom: 0.9375em;
}

.sidebar-widget__perex {
    font-size: 1.125em;
    color: #000;
    margin-bottom: 1em;
}

.sidebar-widget p {
    line-height: 1.7;
}

.sidebar-widget p a {
    color: #1a4c8c;
    text-decoration: underline;
}

.sidebar-widget p a:hover {
    text-decoration: none;
}

.sidebar-widget > a {
    display: block;
    max-width: 20em;
    margin-bottom: 1.25em;
}

.contact-info {
    margin-bottom: 2.5em;
}

.contact-info li {
    position: relative;
    padding-left: 1.5625em;
    margin-bottom: 1em;
}

.contact-info li:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -6px;
    left: 0;
}

.contact-info li.phone:before {
    background-image: url(../images/sprites/sprite.png);
    background-position: -56px -76px;
    width: 14px;
    height: 14px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .contact-info li.phone:before {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.contact-info li.email:before {
    background-image: url(../images/sprites/sprite.png);
    background-position: -84px -76px;
    width: 16px;
    height: 12px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .contact-info li.email:before {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.contact-info a {
    color: #333;
    text-decoration: none;
}

.contact-info a:hover {
    text-decoration: underline;
}

.sidebar-menu {
    margin-bottom: 2.5em;
}

.sidebar-menu li {
    font-family: "Barlow", serif;
    font-size: 1.0625em;
    font-weight: 300;
    line-height: 1.5em;
    border-bottom: 1px solid #DFDFDF;
}

.sidebar-menu a {
    position: relative;
    display: block;
    color: #333;
    padding: 0.70588em 0 0.70588em 2.35294em;
}

.sidebar-menu a.active {
    font-weight: 400;
}

.sidebar-menu a.active:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: -10px;
    content: '';
    display: block;
    position: absolute;
    height: 0;
    width: 0;
    border-top: 10px solid transparent;
    border-bottom: 10px solid transparent;
    border-left: 10px solid #fff;
}

.sidebar-menu a:hover {
    background-color: #ececec;
    text-decoration: none;
}

.sidebar-news {
    padding-top: 2.5em;
    margin-bottom: 2.5em;
}

.sidebar-news__title {
    border-bottom: none;
    padding: 0 0 0 2.22222em;
    margin-bottom: 0.83333em;
}

.sidebar-news section {
    margin-bottom: 2.5em;
}

.sidebar-news section img {
    width: 100%;
    margin-bottom: 0.625em;
}

.sidebar-news section h3 {
    font-family: "Youth", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 1em;
    padding-left: 2.5em;
    margin-bottom: 0.9375em;
    transition-duration: 0.3s;
}

.sidebar-news section h3 a {
    color: #333;
}

.sidebar-news section h3 a:hover {
    text-decoration: none;
    color: #1a4c8c;
}

.sidebar-news section .button, .sidebar-news section .cta-box a, .cta-box .sidebar-news section a, .sidebar-news section .sidebar-widget > a, .sidebar-news section .application-form button, .application-form .sidebar-news section button {
    font-size: 0.8125em;
    margin-left: 3.07692em;
}

@media only screen and (max-width: 940px) {
    .sidebar {
        padding: 0 0.625em;
    }
    .sidebar:before {
        content: '';
        position: absolute;
        top: 0;
        left: -9999px;
        width: 9999px;
        height: 100%;
        background-color: #f1f1f1;
    }
    .sidebar-widget {
        padding-left: 0;
    }
    .sidebar-news__title {
        padding-left: 0;
    }
    .sidebar-news section {
        max-width: 20em;
    }
    .sidebar-news section h3 {
        padding-left: 0;
    }
    .sidebar-news section .button, .sidebar-news section .cta-box a, .cta-box .sidebar-news section a, .sidebar-news section .sidebar-widget > a, .sidebar-news section .application-form button, .application-form .sidebar-news section button {
        margin-left: 0;
    }
    .sidebar-menu li {
        font-size: 0.9375em;
    }
    .sidebar-menu a.active:before {
        border: none;
        margin-top: -5px;
        opacity: .5;
        left: 0.9375em;
        background-image: url(../images/sprites/sprite.png);
        background-position: -46px -121px;
        width: 7px;
        height: 11px;
    }
}

@media only screen and (max-width: 940px) and (-webkit-min-device-pixel-ratio: 2), only screen and (max-width: 940px) and (min-resolution: 192dpi) {
    .sidebar-menu a.active:before {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.hero {
    background: #f1f1f1 no-repeat center center/cover;
}

.hero.c-transparent {
    background-color: #000;
	background-color:#f1f1f1;
}

.hero.c-transparent .hero-caption {
    background-color: transparent;
    padding-right: 0;
}

.hero.c-transparent .hero-caption:before, .hero.c-transparent .hero-caption--center:after, .hero.c-transparent .hero-caption:after {
    display: none;
}

.hero.c-transparent .hero-caption h2 {
    padding: 0;
    border: none;
	color: #666;
    font-size: 1.875em;
    margin-bottom: 1em;
}
/*
.hero.c-transparent .hero-caption h2:after {
    content: "";
    display: block;
    margin: 0.66667em 0;
    background-image: url(../images/sprites/sprite.png);
    background-position: -28px -121px;
    width: 11px;
    height: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .hero.c-transparent .hero-caption h2:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}
*/
.hero.c-transparent .hero-caption .perex {
    color: #666;
}

.content-wrapper--secondary .hero.c-color,
.hero.c-secondary {
    background-color: #f1f1f1;
}

.content-wrapper--secondary .hero.c-color .hero-caption,
.hero.c-secondary .hero-caption {
    background-color: rgba(241, 241, 241, 0.8);
}

.content-wrapper--secondary .hero.c-color .hero-caption:before, .content-wrapper--secondary .hero.c-color .hero-caption--center:after, .content-wrapper--secondary .hero.c-color .hero-caption:after,
.hero.c-secondary .hero-caption:before,
.hero.c-secondary .hero-caption--center:after,
.hero.c-secondary .hero-caption:after {
 background-color: rgba(241, 241, 241, 0.8);
}

.content-wrapper--secondary .hero.c-color .hero-caption h2,
.hero.c-secondary .hero-caption h2 {
    border-color: #666;
}

.content-wrapper--gray .hero.c-color,
.hero.c-gray {
    background-color: #f1f1f1;
}

.content-wrapper--gray .hero.c-color .hero-caption,
.hero.c-gray .hero-caption {
    background-color: rgba(241, 241, 241, 0.8);
}

.content-wrapper--gray .hero.c-color .hero-caption:before, .content-wrapper--gray .hero.c-color .hero-caption--center:after, .content-wrapper--gray .hero.c-color .hero-caption:after,
.hero.c-gray .hero-caption:before,
.hero.c-gray .hero-caption--center:after,
.hero.c-gray .hero-caption:after {
    background-color: rgba(241, 241, 241, 0.8);
}

.content-wrapper--gray .hero.c-color .hero-caption h2,
.hero.c-gray .hero-caption h2 {
    border-color: rgba(102, 102, 102, 0.6);
}

.hero-caption {
    position: relative;
    padding: 3.125em 5em 1.875em 0;
    background-color: rgba(241, 241, 241, 0.8);
    color: #666;
    /* &--right{
		text-align: left;
		padding: em(40) 0 em(40) em(20);

		&:before{
			display: none;
		}

		&:after{
			@extend .hero-caption:before;
			left: auto;
			right: -9999px;
		}
	} */
}

.hero-caption:before, .hero-caption--center:after {
    content: '';
    position: absolute;
    top: 0;
    left: -9999px;
    width: 9999px;
    height: 100%;
    background-color: rgba(241, 241, 241, 0.8);
}

.hero-caption--center {
    padding-right: 0;
    text-align: center;
    min-height: 0;
}

.hero-caption--center:after {
    left: auto;
    right: -9999px;
}

.hero-caption--center .hero-caption__title {
    width: 100%;
    padding: 0;
    border: none;
    margin-bottom: 1.5em;
}

.hero-caption--center .button, .hero-caption--center .cta-box a, .cta-box .hero-caption--center a, .hero-caption--center .sidebar-widget > a, .hero-caption--center .application-form button, .application-form .hero-caption--center button {
    margin: 0 auto;
}

.hero-caption h2 {
    width: 90%;
    font-size: 1.375em;
    color: #666;
    /*text-transform: uppercase;*/
    padding-left: 0.68182em;
    border-left: 3px solid #666;
    margin-bottom: 4.54545em;
}

.hero.c-secondary .hero-caption h2 {
color: #666
}

.hero-caption h3 {
    font-size: 1.75em;
    font-weight: 100;
    color: #666;
    margin-bottom: 0;
}
.c-transparent .hero-caption p {
   color: rgba(0, 0, 0, 1);
}
.hero-caption p {
 /*   color: rgba(0, 0, 0, 1);*/
}

.hero-caption .perex {
    font-size: 1.25em;
}

.hero-caption .button, .hero-caption .cta-box a, .cta-box .hero-caption a, .hero-caption .sidebar-widget > a, .hero-caption .application-form button, .application-form .hero-caption button {
    margin-bottom: 1.25em;
}

.play-btn {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 5.625em;
    height: 5.625em;
    border: 10px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition-duration: 0.3s;
}

.play-btn:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -15px;
    margin-left: -11px;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 15px 0 15px 30px;
    border-color: transparent transparent transparent #ffffff;
}

.play-btn:hover {
    border-color: rgba(255, 255, 255, 0.9);
}

@media only screen and (max-width: 425px) {
    .hero-caption {
        padding: 1.875em 1.25em 1.875em 0;
    }
    .hero-caption p {
        font-size: 1em;
    }
}

.gallery {
    margin: 0 -2px;
}

.gallery--orange .gallery-item:after {
    background-color: rgba(159, 92, 54, 0.9);
}

.gallery-item {
    float: left;
    width: 33.33%;
    margin: 0;
    background-color: #f1f1f1;
    border: 2px solid #fff;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1);
}

.gallery-item:before {
    content: "";
    display: block;
    padding-top: 100%;
}

.gallery-item img {
    max-width: none;
}

.gallery-item:after {
    content: '';
    background: rgba(70, 128, 139, 0.9);
    transition-duration: 0.3s;
    opacity: 0;
}

.gallery-item span {
    display: block;
    position: absolute;
    width: 100%;
    left: 0;
    top: 50%;
    z-index: 2;
    font-family: "Barlow", serif;
    font-size: 1.5em;
    font-weight: 500;
    text-align: center;
    color: #fff;
    transform: translateY(0);
    transition-duration: 0.3s;
    margin-bottom: 0;
    opacity: 0;
}

.gallery-item span:after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background-color: #fff;
    margin: 15px auto 0;
}

.gallery-item:hover:after {
    opacity: 1;
}

.gallery-item:hover span {
    opacity: 1;
    transform: translateY(-50%);
}

@media only screen and (min-width: 1441px) {
    .gallery-item {
        width: 25%;
    }
}

.simple-gallery {
    position: relative;
}

.simple-gallery:before, .simple-gallery:after {
    content: '';
    position: absolute;
    z-index: 2;
    top: 0;
    height: 100%;
    width: 400px;
    background-color: rgba(26, 76, 140, 0.8);
    pointer-events: none;
}

.simple-gallery:before {
    left: 0;
}

.simple-gallery:after {
    right: 0;
}

.simple-gallery .owl-item {
    transition-duration: 0.3s;
    filter: grayscale(100%);
    -webkit-filter: grayscale(100%);
    filter: gray;
    filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
}

.simple-gallery .owl-item.center {
    -webkit-filter: grayscale(0);
    -webkit-filter: grayscale(0%);
    filter: none;
}

.simple-gallery__slides img {
    max-width: none;
}

.simple-gallery__slides .cover {
    display: block;
}

.simple-gallery__slides .cover:before {
    content: "";
    display: block;
    padding-top: 70%;
}

.simple-gallery__nav .prev,
.simple-gallery__nav .next {
    position: absolute;
    top: 0;
    width: 7.5em;
    height: 100%;
    z-index: 10;
    cursor: pointer;
    transition-duration: 0.3s;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.simple-gallery__nav .prev:before,
.simple-gallery__nav .next:before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -0.6875em;
    margin-left: -0.4375em;
    background-image: url(../images/sprites/sprite.png);
    background-position: -136px -52px;
    width: 14px;
    height: 22px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .simple-gallery__nav .prev:before,
    .simple-gallery__nav .next:before {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.simple-gallery__nav .prev:after,
.simple-gallery__nav .next:after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 3.75em;
    height: 3.75em;
    margin-top: -1.875em;
    margin-left: -1.875em;
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    transition-duration: 0.3s;
}

.simple-gallery__nav .prev:hover:after,
.simple-gallery__nav .next:hover:after {
    border-color: #fff;
}

.simple-gallery__nav .prev {
    left: 0;
}

.simple-gallery__nav .next {
    right: 0;
}

.simple-gallery__nav .next:before {
    background-position: -14px -121px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .simple-gallery__nav .next:before {
        background-size: 150px 143px;
    }
}

@media only screen and (min-width: 1441px) {
    .simple-gallery:before, .simple-gallery:after {
        width: 600px;
    }
}

@media only screen and (max-width: 1279px) {
    .simple-gallery:before, .simple-gallery:after {
        width: 250px;
    }
}

@media only screen and (max-width: 940px) {
    .simple-gallery:before, .simple-gallery:after {
        width: 200px;
    }
}

@media only screen and (max-width: 758px) {
    .simple-gallery:before, .simple-gallery:after {
        width: 80px;
    }
    .simple-gallery__nav .prev,
    .simple-gallery__nav .next {
        width: 3.125em;
        transform: scale(0.5);
    }
}

@media only screen and (max-width: 560px) {
    .gallery-item {
        width: 50%;
    }
}

.news {
    position: relative;
    display: block;
    margin-bottom: 1.25em;
}

.news__img {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    transition-duration: 0.3s;
    background: no-repeat center center / cover;
}

.news__img:after {
    content: '';
    background: rgba(204, 204, 204, 0.5);
    opacity: 0;
    transition-duration: 0.3s;
}

.news__img:hover:after {
    opacity: 1;
}

.news__inner {
    position: relative;
    background-color: #f1f1f1;
    margin-left: 50%;
    width: 50%;
    padding: 1.25em 1.25em 3.4375em;
    height: 14.375em;
}

.news__date {
    font-family: "Barlow", serif;
    font-size: 0.875em;
    color: #999;
}

.news__date:after {
    content: '';
    display: block;
    width: 1.78571em;
    height: 0.14286em;
    background-color: #666;
    margin: 1.07143em 0;
}

.news__title {
    font-size: 1.25em;
    color: #000;
    margin-bottom: 0.5em;
    transition-duration: 0.3s;
}

.news__title a {
    color: #666;
}

.news__title a:hover {
    color: #000;
    text-decoration: none;
}

.news__perex {
    font-size: 1.0625em;
    color: rgba(102, 102, 102, 0.6);
    margin-bottom: 1.17647em;
}

.news .button, .news .cta-box a, .cta-box .news a, .news .sidebar-widget > a, .news .application-form button, .application-form .news button {
    position: absolute;
    bottom: 1.53846em;
    left: 1.53846em;
    font-size: 0.8125em;
}

.news--reversed .news__img {
    left: auto;
    right: 0;
}

.news--reversed .news__inner {
    margin-left: 0;
}

.news--featured {
    height: 30em;
}

.news--featured .news__img:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background-color: transparent;
    background-image: -moz-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    background-image: -webkit-linear-gradient(top, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='$from', endColorstr='$to',GradientType=0 );
}

.news--featured .news__inner {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    margin: 0;
    height: auto;
    pointer-events: none;
}

.news--featured .news__date {
    color: #fff;
}

.news--featured .news__title {
    font-size: 1.875em;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 0.33333em;
}

.news--featured .news__title a {
    color: #fff;
}

.news--featured .news__perex {
    font-size: 1.5em;
    line-height: 1.3;
    font-weight: 300;
    margin-bottom: 1.04167em;
    color: #fff;
}

@media only screen and (max-width: 1279px) {
    .news--featured {
        height: 25em;
    }
}

@media only screen and (max-width: 560px) {
    .news--featured {
        height: 18.75em;
    }
    .news--featured .news__title {
        font-size: 1.25em;
    }
    .news--featured .news__perex {
        font-size: 1.0625em;
    }
    .news__img {
        position: relative;
        width: 100%;
        height: auto;
    }
    .news__img:before {
        content: "";
        display: block;
        padding-top: 60%;
    }
    .news__inner {
        margin-left: 0;
        width: 100%;
        height: auto;
    }
}

.post {
    position: relative;
    display: block;
    width: 100%;
    margin-bottom: 1.25em;
    background-color: #f1f1f1;
}

.post__img {
    position: relative;
    display: block;
    width: 100%;
    background: transparent no-repeat center center / cover;
}

.post__img:before {
    content: "";
    display: block;
    padding-top: 60%;
}

.post__img:after {
    content: '';
    opacity: 0;
    transition-duration: 0.3s;
    background: rgba(26, 76, 140, 0.5);
}

.post__img:hover:after {
    opacity: 1;
}

.post__inner {
    position: relative;
    padding: 1.5625em 1.25em 3.4375em;
    min-height: 20.3125em;
}

.post__date {
    font-family: "Barlow", serif;
    font-size: 0.875em;
    color: #999;
}

.post__date:after {
    content: '';
    display: block;
    width: 1.78571em;
    height: 0.14286em;
    background-color: #1a4c8c;
    margin: 1.07143em 0;
}

.post__title {
    font-size: 1.25em;
    color: #000;
    margin-bottom: 0.75em;
    transition-duration: 0.3s;
}

.post__title a {
    color: #000;
}

.post__title a:hover {
    color: #1a4c8c;
    text-decoration: none;
}

.post p {
    font-size: 1.0625em;
    color: rgba(102, 102, 102, 0.6);
    margin-bottom: 1.76471em;
}

.post .button, .post .cta-box a, .cta-box .post a, .post .sidebar-widget > a, .post .application-form button, .application-form .post button {
    position: absolute;
    left: 1.53846em;
    bottom: 1.53846em;
    font-size: 0.8125em;
}

.load-more {
    margin: 0.625em auto 3.125em;
}

.load-more:after {
    transform: rotate(90deg);
}

@media only screen and (min-width: 941px) {
    .post--featured {
        min-height: 18.75em;
        margin-bottom: 1.875em;
    }
    .post--featured .post__img {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 66.66%;
        width: calc(66.66% - 5px);
        height: 100%;
        background: transparent no-repeat center center / cover;
    }
    .post--featured .post__inner {
        margin-left: 66.66%;
        margin-left: calc(66.66% - 5px);
        padding: 1.5625em 1.25em;
        min-height: 31.25em;
    }
    .post--featured .button, .post--featured .cta-box a, .cta-box .post--featured a, .post--featured .sidebar-widget > a, .post--featured .application-form button, .application-form .post--featured button {
        position: relative;
        left: auto;
        bottom: auto;
        font-size: 1em;
    }
}

@media only screen and (max-width: 758px) {
    .post__inner {
        padding: 1.5625em 1.25em 1.25em;
        min-height: 0;
    }
    .post .button, .post .cta-box a, .cta-box .post a, .post .sidebar-widget > a, .post .application-form button, .application-form .post button {
        position: relative;
        left: auto;
        bottom: auto;
    }
}

@media only screen and (max-width: 425px) {
    .load-more {
        font-size: 0.8125em;
    }
}

.product {
    position: relative;
    padding-bottom: 1.875em;
    margin-bottom: 1.25em;
}

.product__badges {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0.625em;
}

.product__badges span {
    display: inline-block;
    margin-left: 0.15385em;
    width: 2.69231em;
    height: 2.69231em;
    border-radius: 50%;
    background-color: #9FA2A6;
    font-family: "Barlow", serif;
    font-size: 0.8125em;
    font-weight: 700;
    line-height: 2.69231em;
    text-align: center;
    color: #fff !important;
}

.product__badges .primary {
    background-color: #1a4c8c;
}

.product__badges .secondary {
    background-color: #bea40d;
}

.product__badges .gray {
    background-color: #353535;
}

.product__img {
    position: relative;
    display: block;
    width: 100%;
    height: 13.75em;
    margin-bottom: 1.25em;
}

.product__img img {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    max-width: 90%;
    max-height: 100%;
}

.product__title {
    font-size: 1.0625em;
    font-weight: 400;
    line-height: 1.29412em;
    margin-bottom: 0.5em;
    color: #000;
}

.product__title span {
    display: block;
    font-size: 0.82353em;
    font-weight: 300;
}

.product__desc {
    font-size: 0.9375em;
    margin-bottom: 1.33333em;
    padding-right: 1.33333em;
    color: #666;
}

.product .button, .product .cta-box a, .cta-box .product a, .product .sidebar-widget > a, .product .application-form button, .application-form .product button {
    position: absolute;
    bottom: 0;
    left: 0.625em;
    font-size: 0.8125em;
}

.bnr {
    position: relative;
    display: table;
    width: 100%;
    border-color: #353535;
    transition-duration: 0.3s;
    margin-bottom: 1.25em;
}

.bnr:hover {
    opacity: 0.8;
}

.bnr__img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: no-repeat center left / cover;
}

.bnr__img + .bnr__info {
    width: 50%;
}

.bnr__info {
    position: relative;
    z-index: 2;
    float: right;
    width: 100%;
    text-align: center;
    padding: 1.25em 2.5em;
    min-height: 7.5em;
}

.bnr__title {
    font-size: 1.5625em;
    line-height: 1.2;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 0;
}

.bnr__text {
    font-size: 1.0625em;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0;
}

.bnr--primary {
    background-color: #1a4c8c;
}

.bnr--secondary {
    background-color: #bea40d;
}

.bnr--gray {
    background-color: #f1f1f1;
}

.bnr--gray .bnr__title {
    color: #000;
}

.bnr--gray .bnr__text {
    color: #666;
}

@media only screen and (max-width: 560px) {
    .bnr {
        display: none;
    }
}

.quote-box {
    display: block;
    margin-bottom: 1.25em;
}

.quote-box__text {
    position: relative;
    background-color: #f1f1f1;
    font-size: 1.0625em;
    line-height: 1.8;
    color: rgba(102, 102, 102, 0.6);
    padding: 1.875em 1.875em 2.5em;
    margin-bottom: 3.125em;
}

.quote-box__text:after {
    content: '';
    position: absolute;
    bottom: -35px;
    left: 1.875em;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 35px 35px 0 0;
    border-color: #f1f1f1 transparent transparent transparent;
}

.quote-box__text p:first-child:before {
    content: '';
    display: inline-block;
    margin-right: 0.625em;
    background-image: url(../images/sprites/sprite.png);
    background-position: -122px -27px;
    width: 25px;
    height: 25px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .quote-box__text p:first-child:before {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.quote-box__author {
    font-family: "Barlow", serif;
    font-size: 1.25em;
    line-height: 1.5;
    color: #000;
    padding-left: 1.5625em;
}

.quote-box__author span {
    font-family: "Youth", Helvetica, Arial, sans-serif;
    font-size: 0.85em;
    color: #666;
    display: block;
}

.scroll-nav {
    position: absolute;
    z-index: 800;
    top: 4.375em;
    right: 1.25em;
    padding: 0.625em 1.25em 0.625em 0;
    text-align: right;
    transform: translate3d(0, 0, 0);
    max-height: calc( 100vh - 120px);
    overflow: auto;
}

.scroll-nav li {
    font-family: "Barlow", serif;
    font-size: 1.125em;
    font-weight: 300;
    line-height: 2;
}

.scroll-nav a {
    color: #A2A2A2;
    transition-duration: 0.3s;
}

.scroll-nav a:after {
    content: '';
    display: inline-block;
    vertical-align: -0.11111em;
    margin-left: 1.11111em;
    width: 0.88889em;
    height: 0.88889em;
    border: 1px solid #A2A2A2;
    border-radius: 50%;
    background-color: #fff;
    box-shadow: inset 0 0 0 3px #fff;
    transition-duration: 0.3s;
}

.scroll-nav a.active {
    color: #000;
}

.scroll-nav a.active:after {
    border-color: #000;
    background-color: #000;
}

.scroll-nav a:hover {
    color: #000;
}

.scroll-nav a:hover:after {
    border-color: #000;
}

.scroll-nav--sticky {
    position: fixed;
    top: 8.125em;
}

@media only screen and (max-width: 1279px) {
    .scroll-nav--sticky {
        top: 4.375em;
    }
}

@media only screen and (max-width: 758px) {
    .scroll-nav {
        display: none;
    }
}

.history-section {
    position: relative;
    padding: 6.25em 0;
}

.history-section .container {
    padding-right: 12.5em;
}

.history-section .container:before {
    content: '';
    position: absolute;
    z-index: -1;
    width: 60px;
    height: 60px;
    border: 1px solid #E8E8E8;
    border-radius: 50%;
    top: -30px;
    left: 80%;
}

.history-section .container:after {
    content: '';
    position: absolute;
    z-index: -1;
    top: 11.5625em;
    left: 0;
    background-image: url(../images/sprites/sprite.png);
    background-position: -122px -82px;
    width: 20px;
    height: 20px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .history-section .container:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.history-section__title {
    font-size: 5.625em;
    font-weight: 300;
    line-height: 1;
    color: #000;
    margin-bottom: 1.11111em;
}

.history-section__title span {
    display: inline-block;
    margin-left: 0.66667em;
    font-size: 0.33333em;
}

.history-section__text {
    font-size: 1.25em;
    font-weight: 300;
    color: #000;
}

.history-section__text p {
    width: 100%;
    max-width: 24.5em;
    margin: 0 auto 1em;
}

.history-section__text p:last-child:after {
    content: '';
    display: block;
    width: 20px;
    height: 2px;
    background-color: #000;
    margin: 0.7em 0 0;
}

.history-section__text + .gallery {
    margin-top: 3.125em;
}

.history-section__img {
    display: table;
    max-width: 100%;
    margin: 3.125em auto 0;
}

.history-section__img img {
    display: block;
    margin: 0 auto;
    width: 100%;
}

.history-section__img p {
    display: block;
    line-height: 1.5;
    margin: 0.625em 0 0;
}

.history-section__hero {
    margin-top: 4.375em;
}

.history-section__hero p {
    font-size: 1em;
    font-weight: 300;
    line-height: 1.625em;
    margin-top: 0.625em;
}

.history-section__hero .container:before, .history-section__hero .container:after {
    display: none;
}

.history-section--center .history-section__title {
    margin-left: 20%;
}

.history-section--center .container:before {
    top: 9.375em;
    left: 30px;
}

.history-section--center .container:after {
    top: 13.75em;
    left: 90%;
}

.history-section--right .history-section__title {
    padding-left: 50%;
}

.history-section--right .container:before {
    width: 40px;
    height: 40px;
    top: 7.5em;
    left: 15%;
}

.history-section--right .container:after {
    top: 13.75em;
    left: 75%;
}

.history-section--gallery {
    padding: 5em 0;
}

.history-section--gallery .container:before {
    top: -80px;
    left: 80%;
}

.history-section--gallery .container:after {
    top: -30px;
    left: 40px;
}

.history-section--gallery:nth-child(odd) .container:before {
    top: -100px;
    left: 25%;
}

.history-section--gallery:nth-child(odd) .container:after {
    top: -30px;
    left: 75%;
}

.history-section--gallery .history-section__title {
    font-size: 3.125em;
    padding-left: 2em;
    margin-bottom: 0.6em;
}

.history-section--gallery .history-section__text {
    font-size: 1em;
    margin-bottom: 2.8125em;
}

.history-section--gallery .history-section__text p {
    max-width: 35em;
    padding-left: 6.25em;
    margin: 0 0 1em;
}

.history-section--gallery .history-section__text p:after {
    display: none;
}

.history-section--gallery .history-section__text p:last-child {
    margin-bottom: 0;
}

@media only screen and (min-width: 1441px) {
    .history-section .container {
        padding-right: 1.25em;
    }
}

@media only screen and (max-width: 1279px) {
    .history-section {
        padding: 4.375em 0;
    }
}

@media only screen and (max-width: 940px) {
    .history-section {
        padding: 3.125em 0;
    }
    .history-section__title {
        font-size: 4.375em;
    }
    .history-section--center .history-section__title {
        margin-left: 0;
    }
    .history-section--right .history-section__title {
        padding-left: 0;
    }
    .history-section--gallery {
        padding: 3.125em 0;
    }
    .history-section--gallery .history-section__title {
        padding-left: 0;
    }
    .history-section--gallery .history-section__text p {
        padding-left: 0;
    }
}

@media only screen and (max-width: 758px) {
    .history-section .container {
        padding-right: 1.25em;
    }
    .history-section__text p {
        margin: 0 0 1em;
    }
}

@media only screen and (max-width: 560px) {
    .history-section__title {
        font-size: 3.75em;
    }
    .history-section__text {
        font-size: 1em;
    }
    .history-section--gallery .history-section__title {
        font-size: 2.5em;
    }
}

@media only screen and (max-width: 425px) {
    .history-section .container {
        padding-right: 0.9375em;
    }
    .history-section__title {
        font-size: 3.125em;
    }
    .history-section__title span {
        display: block;
        margin-left: 0;
        margin-top: 0.33333em;
    }
    .history-section--gallery .history-section__title {
        font-size: 1.875em;
    }
}

.person__title {
    font-size: 3.125em;
    font-weight: 300;
    line-height: 1;
    color: #000;
    margin-bottom: 1.2em;
    padding-left: 20%;
}

.person__img {
    padding: 5em 1.875em 0 0;
    margin-bottom: 1.875em;
}

.person__img p {
    line-height: 1.5;
    margin-top: 0.625em;
}

.person__text {
    max-width: 46.875em;
}

.person__text p {
    font-weight: 300;
}

.person__text .perex {
    font-size: 1.375em;
    font-family: "Barlow", serif;
    font-weight: 500;
    color: #000;
}

@media only screen and (max-width: 940px) {
    .person__title {
        padding-left: 0;
    }
    .person__img {
        padding: 0 0.625em;
    }
    .person__img img {
        max-width: 18.75em;
    }
}

@media only screen and (max-width: 560px) {
    .person__title {
        font-size: 2.5em;
    }
}

@media only screen and (max-width: 425px) {
    .person__title {
        font-size: 1.875em;
    }
    .person__img img {
        max-width: 100%;
    }
}

.application-form {
    width: 100%;
    max-width: 28.125em;
}

.application-form label {
    display: block;
    color: #1a4c8c;
    font-family: "Barlow", serif;
    margin-bottom: 0.625em;
}

.application-form label span {
    font-weight: 300;
}

.application-form input {
    border: 1px solid #DFDFDF;
    height: 3.125em;
    margin-bottom: 1.25em;
}

.application-form textarea {
    border: 1px solid #DFDFDF;
    margin-bottom: 1.25em;
}

.application-form .note {
    margin-bottom: 3.33333em;
}

.application-form .checkbox {
    margin-bottom: 1.25em;
}

.application-form .checkbox label {
    font-size: 0.875em;
    font-family: "Barlow", serif;
}

.application-form .checkbox a {
    color: #1a4c8c;
}

.application-form button {
    width: 18.75em;
    text-align: left;
}

.upload-files {
    width: 100%;
    background-color: #dfedff;
    padding: 0.625em;
    margin-bottom: 1.25em;
}

.upload-files__inner {
    padding: 0 0.9375em;
    border: 2px dashed rgba(26, 76, 140, 0.5);
    transition-duration: 0.3s;
}

.upload-files__uploaded {
    font-size: 0.875em;
    text-align: center;
    margin: 1.07143em 0 0 !important;
}

.upload-files__uploaded li {
    padding-left: 0 !important;
}

.upload-files__uploaded li:before {
    display: none;
}

.upload-files__remove {
    position: relative;
    display: inline-block;
    vertical-align: -0.125em;
    margin-left: 0.5em;
    opacity: .5;
    transition-duration: 0.3s;
    background-image: url(../images/sprites/sprite.png);
    background-position: -70px -76px;
    width: 14px;
    height: 14px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .upload-files__remove {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.upload-files__remove:hover {
    opacity: 1;
}

.upload-files__button {
    font-family: "Barlow", serif;
    text-decoration: none !important;
    margin: 1.07143em auto;
    font-size: 0.875em;
}

.upload-files__button:before {
    content: '+ ';
    font-size: 1em;
}

.upload-files:hover .upload-files__inner {
    border-color: #1a4c8c;
}

.ok {
    color: #2263b7;
    font-weight: bold;
    margin-bottom: 1em;
}

.err {
    color: #2263b7;
    font-weight: bold;
    margin-bottom: 1em;
}

.grey--bg {
    background-color: #dfdfdf;
}

@media only screen and (max-width: 425px) {
    .application-form label span {
        display: block;
        margin-top: 0.3125em;
    }
}

.search-results form {
    position: relative;
    display: inline-block;
    margin-bottom: 1.875em;
    border: 1px solid #DFDFDF;
    width: 100%;
    max-width: 26.25em;
}

.search-results form input {
    font-size: 1.25em;
    height: 2.5em;
    padding-right: 8em;
}

.search-results form button {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
}

.search-results form button:before {
    content: '';
    display: inline-block;
    vertical-align: -3px;
    margin-right: 0.9375em;
    background-image: url(../images/sprites/sprite.png);
    background-position: -18px -102px;
    width: 18px;
    height: 19px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .search-results form button:before {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.search-results .title, .search-results h1, .search-results h2, .search-results h3, .search-results h4, .search-results h5, .search-results h6, .search-results .section-title {
    margin-top: 0.625em;
}

.search-results h2 {
    margin-bottom: 1.33333em;
}

.search-results ul {
    margin-bottom: 3.125em;
}

.search-results ul.info {
    margin-top: 0.625em;
}

.search-results ul.info li {
    position: relative;
    padding-left: 1.5625em;
    margin-bottom: 1em;
}

.search-results ul.info li:before {
    content: '';
    display: block;
    position: absolute;
    top: 50%;
    margin-top: -5px;
    left: 0;
    background-image: url(../images/sprites/sprite.png);
    background-position: -39px -121px;
    width: 7px;
    height: 11px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .search-results ul.info li:before {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.search-results li {
    margin-bottom: 1.25em;
}

.search-results h3 {
    font-size: 1.25em;
    margin-bottom: 0;
    color: #000;
}

.search-results h3 a {
    text-decoration: none;
    color: #000;
}

.search-results p {
    margin-bottom: 0.625em;
}

.search-results a {
    color: #9FA2A6;
    line-height: 1.5;
    text-decoration: underline;
}

.search-results a:hover {
    text-decoration: none;
}

.industrial-park {
    background-color: #f1f1f1;
    margin-bottom: 1.25em;
}

.industrial-park__info {
    float: left;
    width: 50%;
    position: relative;
    z-index: 2;
    padding: 1.875em 25% 1.875em 0.625em;
    padding: 1.875em calc(25% + 15px) 1.875em 0.625em;
    min-height: 30em;
}

.industrial-park__info h3 {
    position: relative;
    font-size: 1.5em;
    text-transform: uppercase;
    line-height: 1.2em;
    margin-bottom: 1.11111em;
}

.industrial-park__info h3 span {
    display: block;
    font-size: 0.94444em;
    width: 1.88235em;
    height: 1.88235em;
    line-height: 1.88235em;
    text-align: center;
    color: #fff;
    background-color: #1a4c8c;
    border-radius: 50%;
    margin-bottom: 0.58824em;
}

.industrial-park__info p {
    font-size: 0.9375em;
    color: rgba(102, 102, 102, 0.6);
    margin-bottom: 2em;
}

.industrial-park__info .button, .industrial-park__info .cta-box a, .cta-box .industrial-park__info a, .industrial-park__info .sidebar-widget > a, .industrial-park__info .application-form button, .application-form .industrial-park__info button {
    font-size: 0.875em;
    margin-bottom: 1.42857em;
}

.industrial-park__bg {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 50%;
    background: no-repeat center center / cover;
}

.industrial-park__img {
    float: left;
    width: 50%;
    padding: 1.875em 3.75em 1.875em 2.5em;
    position: relative;
}

.industrial-park__img img {
    width: 100%;
}

.industrial-park__img li {
    position: absolute;
}

.industrial-park__img a {
    display: block;
    width: 2em;
    height: 2em;
    background-color: #6D6D6D;
    border-radius: 50%;
    text-align: center;
    line-height: 2em;
    font-family: "Barlow", serif;
    color: #fff;
}

.industrial-park__img a:hover, .industrial-park__img a.active {
    background-color: #1a4c8c;
}

.industrial-park__img li:nth-child(1) {
    top: 30%;
    left: 46%;
}

.industrial-park__img li:nth-child(2) {
    top: 32%;
    left: 79%;
}

.industrial-park__img li:nth-child(3) {
    top: 63%;
    left: 44%;
}

.industrial-park__img li:nth-child(4) {
    top: 50%;
    left: 27%;
}

.industrial-park__img li:nth-child(5) {
    top: 5%;
    left: 26%;
}

.industrial-park__section {
    display: none;
}

.industrial-park__section.active {
    display: block;
}

.color-box {
    position: relative;
    background-color: #1a4c8c;
    color: #fff;
    padding: 1.25em 1.25em 3.75em 1.25em;
    margin-bottom: 1.25em;
}

.color-box__inner {
    position: relative;
    z-index: 2;
}

.color-box h1, .color-box h2, .color-box h3, .color-box h4, .color-box h5, .color-box h6 {
    color: #fff;
    font-family: "Youth", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1.125em;
}

.color-box.color-box--grey h1, .color-box.color-box--grey  h2, .color-box.color-box--grey h3, .color-box.color-box--grey  h4, .color-box.color-box--grey h5, .color-box.color-box--grey  h6 {
    color: #000;
    font-family: "Youth", Helvetica, Arial, sans-serif;
    font-weight: bold;
    font-size: 1.125em;
}

.color-box h2 {
    font-size: 1.375em;
}

.color-box p {
    float: left;
    width: 50%;
    padding-right: 5%;
}

.color-box img {
    float: left;
    width: 45%;
}

.color-box .button, .color-box .cta-box a, .cta-box .color-box a, .color-box .sidebar-widget > a, .color-box .application-form button, .application-form .color-box button {
    position: absolute;
    bottom: 1.25em;
    left: 1.25em;
    display: block;
    z-index: 2;
}

.color-box--secondary {
    background-color: #bea40d;
}

.color-box--purple {
    background-color: rgba(87, 24, 97, 0.8);
}

.color-box--grey {
    background-color: #f1f1f1;
	color: #000000
}
.color-box--career:after {
    content: '';
    position: absolute;
    z-index: 1;
    top: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    background: transparent url("../images/career-bg.png") no-repeat center right/contain;
}

.event {
    margin-bottom: 2.5em;
}

.event__date {
    font-family: "Barlow", serif;
    font-size: 0.9375em;
    font-weight: 300;
    color: #666;
    margin-bottom: 0.46667em;
}

.event__title {
    font-size: 1.25em;
    margin-bottom: 0.75em;
    font-weight: 500;
}

.event__title a {
    color: #353535;
}

.event__title a:hover {
    text-decoration: none;
    color: #000;
}

.event p {
    margin-bottom: 0;
    padding-right: 0.625em;
}

@media only screen and (max-width: 1279px) {
    .industrial-park__img {
        padding: 1.875em 2.5em 1.875em 1.25em;
    }
}

@media only screen and (max-width: 940px) {
    .industrial-park__img {
        width: 100%;
        padding: 1.25em;
    }
    .industrial-park__info {
        width: 100%;
        min-height: 0;
        padding: 1.25em;
    }
    .industrial-park__bg {
        display: none;
    }
}

@media only screen and (max-width: 758px) {
    .industrial-park__info, .industrial-park__img {
        -webkit-flex-basis: 100%;
        -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
        max-width: 100%;
    }
    .industrial-park__img {
        -webkit-order: -1;
        -ms-flex-order: -1;
        order: -1;
    }
}

@media only screen and (max-width: 560px) {
    .color-box p,
    .color-box img {
        width: 100%;
        margin-bottom: 1.5em;
    }
    .color-box--career:after {
        display: none;
    }
}

.download {
    position: relative;
    display: block;
    font-family: "Barlow", serif;
    font-size: 1.0625em;
    line-height: 1.3;
    font-weight: 100;
    margin-bottom: 1em;
    padding-left: 45px;
}

.download:before {
    content: '';
    position: absolute;
    top: -5px;
    left: 0;
    width: 30px;
    height: 30px;
    border: 4px solid rgba(26, 76, 140, 0.5);
    border-radius: 50%;
    transition-duration: 0.3s;
}

.download:after {
    content: '';
    position: absolute;
    top: 7px;
    left: 8px;
    background-image: url(../images/sprites/sprite.png);
    background-position: -48px -91px;
    width: 14px;
    height: 9px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .download:after {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.download:hover {
    text-decoration: underline;
}

.download:hover:before {
    border-color: #1a4c8c;
}

.download-img {
    margin-bottom: 2.5em;
}

.download-img img {
    transition: opacity 0.3s;
    -webkit-backface-visibility: hidden;
    -webkit-transform: translateZ(0) scale(1, 1);
}

.download-img img:hover {
    opacity: 0.8;
}

.download-img figcaption {
    font-size: 0.8125em;
    color: rgba(102, 102, 102, 0.6);
    padding-top: 0.76923em;
}

.download-img figcaption a {
    color: rgba(102, 102, 102, 0.6);
    text-decoration: underline;
}

.download-img figcaption a:hover {
    text-decoration: none;
}

@media only screen and (max-width: 425px) {
    .download {
        font-size: .8em;
        min-height: 30px;
    }
}

.contact-column {
    position: relative;
    padding-bottom: 6.25em;
}

.contact-column span,
.contact-column em {
    position: absolute;
    left: 5.625em;
}

.contact-column .cta-box {
    position: absolute;
    bottom: 0;
    width: calc(100% - 20px);
}

.contact-person {
    padding: 0 1.25em;
}

.contact-person__name {
    font-family: "Barlow", serif;
    font-size: 1.25em;
    line-height: 1.3;
    color: #000;
}

.contact-person__name + .contact-person__email {
    margin-top: 0.625em;
}

.contact-person__position {
    font-size: 1.0625em;
    line-height: 1.5;
    color: rgba(102, 102, 102, 0.6);
    margin-bottom: 0.58824em;
}

.contact-person__email {
    display: block;
    font-family: "Barlow", serif;
    font-size: 1em;
    color: #1a4c8c;
    margin-bottom: 1.25em;
}

.contact-person__email:hover {
    text-decoration: underline;
}

.contact-person__email + .contact-person__email {
    margin-top: -1.25em;
}

.map {
    margin-top: 1.875em;
    width: 100%;
    height: 33.75em;
}

.pin-map, .pin-map .location, .pin-map .type, .map-center, .hide-item {
    display: none;
}

@media only screen and (max-width: 940px) {
    .map {
        height: 21.25em;
    }
}

@media only screen and (max-width: 758px) {
    .contact-column {
        padding-bottom: 0;
    }
    .contact-column .cta-box {
        position: relative;
        bottom: auto;
        width: 100%;
    }
}

@media only screen and (max-width: 425px) {
    .contact-column {
        color: #9FA2A6;
    }
    .contact-column span,
    .contact-column em {
        display: block;
        position: relative;
        left: auto;
        margin-bottom: 0.3125em;
        color: #333;
    }
    .contact-column br {
        display: none;
    }
}

.footer {
    padding: 3.125em 0 0;
    border-top: 1px solid #f1f1f1;
}

.footer__social {
    margin-bottom: 1.875em;
}

.footer__social a {
    display: inline-block;
    vertical-align: bottom;
    transition-duration: 0.3s;
    margin-right: 1.25em;
}

.footer__social a:hover {
    text-decoration: none;
    opacity: 0.5;
}

.footer__social a.facebook {
    background-image: url(../images/sprites/sprite.png);
    background-position: -122px -52px;
    width: 14px;
    height: 30px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .footer__social a.facebook {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.footer__social a.twitter {
    background-image: url(../images/sprites/sprite.png);
    background-position: 0px -76px;
    width: 33px;
    height: 26px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .footer__social a.twitter {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.footer__social a.youtube {
    background-image: url(../images/sprites/sprite.png);
    background-position: -72px -36px;
    width: 37px;
    height: 25px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .footer__social a.youtube {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.footer__social a.linkedin {
    background-image: url(../images/sprites/sprite.png);
    background-position: -122px 0px;
    width: 28px;
    height: 27px;
}

@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .footer__social a.linkedin {
        background-image: url(../images/sprites/sprite@2x.png);
        background-size: 150px 143px;
    }
}

.footer__copyright {
    font-size: 0.875em;
    line-height: 1.5;
    color: rgba(102, 102, 102, 0.6);
}

.footer__copyright a {
    color: rgba(102, 102, 102, 0.6);
}

.footer-widget:after {
	content: "";
	position: 	absolute; 
	background: #f1f1f1;
	height: 100%;
	width: 1px;
	right: 0px;
	top:0px ;
}
.footer-widget {
	position: relative;
    
	    padding: 0 1em;
	padding-top: 2em;
    padding-bottom: 2em;

}
.footer-widget:nth-of-type(5):after
 {
	 display: none
}
@media only screen and (max-width: 940px) {
.footer-widget:before {
 content: "";
	position: 	absolute; 
	background: #f1f1f1;
	height: 1px;
	width: 100%;
	left: 0px;
	bottom:0px ;  
}
	
	.footer-widget:nth-of-type(2):after,
.footer-widget:nth-of-type(4):after,
.footer-widget:nth-of-type(5):after
 {
	 display: none
}
}
@media only screen and (max-width: 425px) {
.footer-widget:before {
 content: "";
	position: 	absolute; 
	background: #f1f1f1;
	height: 1px;
	width: 100%;
	left: 0px;
	bottom:0px ;  
}
	
	.footer-widget:after
 {
	 display: none
}
}





.footer-widget__title {
    font-size: 1em;
    color: #353535;
    margin-bottom: 0;
	min-height: 70px;
	position: relative
}



.footer-widget__title--gray:after {


    content: "";
    position: absolute;
    top: 50%;
    margin-top: -42px;
    right: 0;
    width: 50px;
    height: 50px;
    background-image: url(../images/sprites/menu_icon.png);
    background-size: 150px;
    background-position: 0px 0px;

}
.footer-widget__title--primary:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -42px;
    right: 0;
    width: 50px;
    height: 50px;
    background-image: url(../images/sprites/menu_icon.png);
    background-size: 150px;
    background-position: -50px 0px;

}
.footer-widget__title--secondary:after {
    content: "";
    position: absolute;
    top: 50%;
    margin-top: -42px;
    right: 0;
    width: 50px;
    height: 50px;
    background-image: url(../images/sprites/menu_icon.png);
    background-size: 150px;
    background-position: -100px 0px;

}

.footer-widget__title--black:after {
    background-color: #353535;
}

.footer-widget__title--transparent:after {
    background-color: transparent;
}

.footer-widget__links {
    color: rgba(102, 102, 102, 0.6);
}

.footer-widget__links li {
    font-size: 0.875em;
    margin-bottom: 1em;
}

.footer-widget__links a {
    color: rgba(102, 102, 102, 0.6);
}

.footer-widget__links a:hover {
    color: #333;
}

/* .tree_disp{

    &.c-gray{
        background-color: $light-gray;
    }

    &.c-primary{
        background-color: #dfedff;
    }

    &.c-secondary{
        background-color: $secondary-color;
    }
} */
/*# sourceMappingURL=style.css.map */

/*# sourceMappingURL=style.css.map */
