/**
 * CONTENTS
 *
 * BASE
 * Box-sizing............Better default `box-sizing`.
 * Media.................WP specific img aligns and iframe styling.
 * Typography............@fontfaces, base text and vertical rhythem setup.
 *
 * COMPONENTS
 * Wrappers..............Wrapping and constraining elements.
 * Grid System...........Bootstrap based grid.
 * Clearfix..............Properly clear floats.
 *
 * Objects
 * Icons.................Icon Elements.
 * Buttons...............Button elements.
 * Tables................Table Styles.
 * Forms.................Form Elements.
 * Breadcrumbs...........Breadcrumbs.
 * Pagination............Pagination.
 * Sliders/Carousels.....Sliders/Carousels.
 * Posts.................Post content for loop on blog homepage, search page, archives, etc.
 * Tabs..................Tabbed content.
 * Social Share..........Social share buttons
 *
 * UI
 * Page head.............The main page header.
 * Navigation............Navigation elements + Ubermenu.
 * Masthead..............Page title/image/slideshow header block.
 * Sidebar...............Sidebar elements.
 * Page footer...........The main page footer.
 *
 * TRUMPS
 * Images................Round, Circle, Square Images.
 * Visiblity.............Make items visible.
 * Hiding................Make items invisible/hidden.
 * Screen Readers........Display for screen readers.
 * Print.................Display for printing.
 * Clears................Clearing floats.
 * Text alignment........Align text.
 * Font weights..........Adjust font weights.
 * Borders...............Add borders.
 * Add/remove margins....Remove margins.
 * Add/remove paddings...Remove padding.
 * Positioning...........float, center, and stick items.
 */
/*------------------------------------*\
    BASE
\*------------------------------------*/
/**
 * Box-sizing
 */
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

/**
 * Media
 *
 * These selectors are hard cast because they are only used
 * by wordpress wyswyg when adding images to content
 */
.wp-caption.alignright,
.wp-caption.alignleft,
.wp-caption.alignnone,
.wp-caption.aligncenter {
    margin: 0;
    width: auto !important;
    /* to overwrite inline widths */
}

img.alignright,
.wp-caption.alignright img,
img.alignleft,
.wp-caption.alignleft img {
    height: auto;
    max-width: 50%;
}

img.alignnone,
.wp-caption.alignnone img,
img.aligncenter,
.wp-caption.aligncenter img {
    height: auto;
    max-width: 100%;
}

img.alignnone,
.wp-caption.alignnone,
img.aligncenter,
.wp-caption.aligncenter {
    margin: 0 0 22px 0;
}

img.alignright,
.wp-caption.alignright {
    float: right;
    margin: 0 0 22px 30px;
}

img.alignleft,
.wp-caption.alignleft {
    float: left;
    margin: 0 30px 22px 0;
}

img.aligncenter,
.wp-caption.aligncenter img {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

iframe {
    max-width: 100%;
}

input:focus {
    outline: none !important;
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

/**
 * Typography
 */
@font-face {
    font-family: 'mcl-icon';
    src:  url("/source/1c8c1b17c413bbc134fc064ab920718e/mcl-icon.eot");
    src:  url("/source/92358bd3bab70c932424efe2ca5836ab/mcl-icon.eot") format('embedded-opentype'),
      url("/source/c297484ae3799ee480794429c91b35f0/mcl-icon.ttf") format('truetype'),
      url("/source/138fe5b48a5e4478ab4278a4bc1e4100/mcl-icon.woff") format('woff'),
      url("/source/a5c84e91b5a734e6321dad87cd718073/mcl-icon.svg") format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}
/*
  - Please set up line-heights in ems
  - Set up typography styling based on styles found in .xd file under Assets > Character Styles
  */
html {
    scroll-behavior: smooth;
}

body {
    overflow-anchor: none;
    scroll-behavior: smooth;
    font-family: 'Roboto', sans-serif;
    font-size: 16px;
    line-height: 1.5em;
    padding-bottom: 50px;
    color: #0A1F34;
}

b,
strong {
    font-weight: 500;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
.subheading {
    font-family: 'Oswald', sans-serif;
    margin: 0;
    padding: 0;
    line-height: 1em;
}

h1,
.h1 {
    font-size: 24px;
    line-height: 1.25em;
    font-weight: 500;
    text-transform: uppercase;
}

h2,
.h2 {
    font-size: 24px;
    line-height: 1.16em;
    font-weight: 400;
    text-transform: uppercase;
    padding-bottom: 20px;
}

h3,
.h3 {
    font-size: 24px;
    line-height: 1.416em;
    font-weight: 400;
    padding-bottom: 15px;
}

p {
    font-size: 16px;
    line-height: 1.5em;
    margin: 0;
    padding: 0 0 15px 0;
}

.subheading {
    font-size: 20px;
    text-transform: uppercase;
    color: #7D8BA1;
    padding-bottom: 5px;
    font-weight: normal;
}

blockquote {
    font-family: 'Oswald', sans-serif;
    color: #154396;
    border-top: 1px solid #C7D0E0;
    border-bottom: 1px solid #C7D0E0;
    position: relative;
    margin: 32px 0;
    padding: 32px 32px;
}

blockquote p {
    font-size: 20px;
}

blockquote:before,
blockquote:after {
    content: '';
    width: 80px;
    height: 3px;
    background: #154396;
    display: block;
    position: absolute;
    z-index: 2;
}

blockquote:before {
    top: -1.5px;
    left: 0;
}

blockquote:after {
    right: 0;
    bottom: -1.5px;
}

@media (min-width: 768px) {
    body {
        padding-bottom: 0;
    }

    h1,
    .h1 {
        font-size: 36px;
        line-height: 1.1em;
    }

    h2,
    .h2 {
        font-size: 32px;
        line-height: 1.09em;
    }

    h3,
    .h3 {
        font-size: 26px;
        line-height: 1.076em;
    }
}

@media(min-width:1025px) {
    blockquote {
        padding: 32px 48px;
    }
}

@media (min-width: 1200px) {

    h1,
    .h1 {
        font-size: 50px;
    }

    h2,
    .h2 {
        font-size: 40px;
        line-height: 1.125em;
    }

    h3,
    .h3 {
        font-size: 34px;
        line-height: 1.1764705882352942em;
    }

    p,
    body {
        font-size: 17px;
        line-height: 1.58em;
    }
}

ul,
ol {
    list-style: none;
    margin: 0;
    padding: 0 0 0 5px;
}

ul li {
    position: relative;
    list-style: none;
    font-size: 16px;
    line-height: 1.5em;
    margin: 0;
    padding: 0 0 15px 24px;
}

ul li span {
    font-family: 'Oswald', sans-serif;
}

ul li:before {
    position: absolute;
    content: "\e908";
    font-family: 'icomoon' !important;
    top: 0;
    left: 0;
    color: #F88A13;
    font-size: 11px;
}

@media (min-width: 1200px) {

    ul,
    ol {
        padding: 0 0 0 48px;
    }

    ul li {
        font-size: 17px;
        line-height: 1.58em;
    }
}

a {
    color: #FF9300;
    font-weight: 700;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
}

/*------------------------------------*\
    COMPONENTS
\*------------------------------------*/
/**
 * Wrappers
 */
.container,
.container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 20px;
    padding-right: 20px;
}

.container {
    max-width: 1356px;
}

@media (min-width: 768px) {

    .container,
    .container-fluid {
        padding-left: 16px;
        padding-right: 16px;
    }
}

/**
 * Grid System
 *
 * Bootstrap v3.3.1 (http://getbootstrap.com)
 * Copyright 2011-2014 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 * --------------------------------------------------------------------------
 * Base setup 20px gutters
 *
 * Phones         - xxs - <  600px    ** Default **
 * Small Tablets  - xs - >=  600px
 * Tablets        - sm - >= 768px
 * Desktop        - md - >= 1025px
 * Large Desktop  - lg - >= 1200px
 * --------------------------------------------------------------------------
 * Learn more here: http://getbootstrap.com/css/#grid
 * -------------------------------------------------------------------------- */
.row {
    margin-left: -16px;
    margin-right: -16px;
}

[class*="col-"] {
    position: relative;
    min-height: 1px;
    padding-left: 16px;
    padding-right: 16px;
}

/* Extra Extra small devices (devices, less than 600px) */
[class*="col-xxs-"] {
    float: left;
}

.col-xxs-12 {
    width: 100%;
}

.col-xxs-11 {
    width: 91.66666667%;
}

.col-xxs-10 {
    width: 83.33333333%;
}

.col-xxs-9 {
    width: 75%;
}

.col-xxs-8 {
    width: 66.66666667%;
}

.col-xxs-7 {
    width: 58.33333333%;
}

.col-xxs-6 {
    width: 50%;
}

.col-xxs-5 {
    width: 41.66666667%;
}

.col-xxs-4 {
    width: 33.33333333%;
}

.col-xxs-3 {
    width: 25%;
}

.col-xxs-2 {
    width: 16.66666667%;
}

.col-xxs-1 {
    width: 8.33333333%;
}

.col-xxs-pull-12 {
    right: 100%;
}

.col-xxs-pull-11 {
    right: 91.66666667%;
}

.col-xxs-pull-10 {
    right: 83.33333333%;
}

.col-xxs-pull-9 {
    right: 75%;
}

.col-xxs-pull-8 {
    right: 66.66666667%;
}

.col-xxs-pull-7 {
    right: 58.33333333%;
}

.col-xxs-pull-6 {
    right: 50%;
}

.col-xxs-pull-5 {
    right: 41.66666667%;
}

.col-xxs-pull-4 {
    right: 33.33333333%;
}

.col-xxs-pull-3 {
    right: 25%;
}

.col-xxs-pull-2 {
    right: 16.66666667%;
}

.col-xxs-pull-1 {
    right: 8.33333333%;
}

.col-xxs-pull-0 {
    right: auto;
}

.col-xxs-push-12 {
    left: 100%;
}

.col-xxs-push-11 {
    left: 91.66666667%;
}

.col-xxs-push-10 {
    left: 83.33333333%;
}

.col-xxs-push-9 {
    left: 75%;
}

.col-xxs-push-8 {
    left: 66.66666667%;
}

.col-xxs-push-7 {
    left: 58.33333333%;
}

.col-xxs-push-6 {
    left: 50%;
}

.col-xxs-push-5 {
    left: 41.66666667%;
}

.col-xxs-push-4 {
    left: 33.33333333%;
}

.col-xxs-push-3 {
    left: 25%;
}

.col-xxs-push-2 {
    left: 16.66666667%;
}

.col-xxs-push-1 {
    left: 8.33333333%;
}

.col-xxs-push-0 {
    left: auto;
}

.col-xxs-offset-12 {
    margin-left: 100%;
}

.col-xxs-offset-11 {
    margin-left: 91.66666667%;
}

.col-xxs-offset-10 {
    margin-left: 83.33333333%;
}

.col-xxs-offset-9 {
    margin-left: 75%;
}

.col-xxs-offset-8 {
    margin-left: 66.66666667%;
}

.col-xxs-offset-7 {
    margin-left: 58.33333333%;
}

.col-xxs-offset-6 {
    margin-left: 50%;
}

.col-xxs-offset-5 {
    margin-left: 41.66666667%;
}

.col-xxs-offset-4 {
    margin-left: 33.33333333%;
}

.col-xxs-offset-3 {
    margin-left: 25%;
}

.col-xxs-offset-2 {
    margin-left: 16.66666667%;
}

.col-xxs-offset-1 {
    margin-left: 8.33333333%;
}

.col-xxs-offset-0 {
    margin-left: 0;
}

/* Extra small devices (phones, 600px and up) */
@media (min-width: 600px) {
    [class*="col-xs-"] {
        float: left;
    }

    .col-xs-12 {
        width: 100%;
    }

    .col-xs-11 {
        width: 91.66666667%;
    }

    .col-xs-10 {
        width: 83.33333333%;
    }

    .col-xs-9 {
        width: 75%;
    }

    .col-xs-8 {
        width: 66.66666667%;
    }

    .col-xs-7 {
        width: 58.33333333%;
    }

    .col-xs-6 {
        width: 50%;
    }

    .col-xs-5 {
        width: 41.66666667%;
    }

    .col-xs-4 {
        width: 33.33333333%;
    }

    .col-xs-3 {
        width: 25%;
    }

    .col-xs-2 {
        width: 16.66666667%;
    }

    .col-xs-1 {
        width: 8.33333333%;
    }

    .col-xs-pull-12 {
        right: 100%;
    }

    .col-xs-pull-11 {
        right: 91.66666667%;
    }

    .col-xs-pull-10 {
        right: 83.33333333%;
    }

    .col-xs-pull-9 {
        right: 75%;
    }

    .col-xs-pull-8 {
        right: 66.66666667%;
    }

    .col-xs-pull-7 {
        right: 58.33333333%;
    }

    .col-xs-pull-6 {
        right: 50%;
    }

    .col-xs-pull-5 {
        right: 41.66666667%;
    }

    .col-xs-pull-4 {
        right: 33.33333333%;
    }

    .col-xs-pull-3 {
        right: 25%;
    }

    .col-xs-pull-2 {
        right: 16.66666667%;
    }

    .col-xs-pull-1 {
        right: 8.33333333%;
    }

    .col-xs-pull-0 {
        right: auto;
    }

    .col-xs-push-12 {
        left: 100%;
    }

    .col-xs-push-11 {
        left: 91.66666667%;
    }

    .col-xs-push-10 {
        left: 83.33333333%;
    }

    .col-xs-push-9 {
        left: 75%;
    }

    .col-xs-push-8 {
        left: 66.66666667%;
    }

    .col-xs-push-7 {
        left: 58.33333333%;
    }

    .col-xs-push-6 {
        left: 50%;
    }

    .col-xs-push-5 {
        left: 41.66666667%;
    }

    .col-xs-push-4 {
        left: 33.33333333%;
    }

    .col-xs-push-3 {
        left: 25%;
    }

    .col-xs-push-2 {
        left: 16.66666667%;
    }

    .col-xs-push-1 {
        left: 8.33333333%;
    }

    .col-xs-push-0 {
        left: auto;
    }

    .col-xs-offset-12 {
        margin-left: 100%;
    }

    .col-xs-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-xs-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-xs-offset-9 {
        margin-left: 75%;
    }

    .col-xs-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-xs-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-xs-offset-6 {
        margin-left: 50%;
    }

    .col-xs-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-xs-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-xs-offset-3 {
        margin-left: 25%;
    }

    .col-xs-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-xs-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-xs-offset-0 {
        margin-left: 0;
    }
}

/* Small devices (tablets, 768px and up) */
@media (min-width: 768px) {
    [class*="col-sm-"] {
        float: left;
    }

    .col-sm-12 {
        width: 100%;
    }

    .col-sm-11 {
        width: 91.66666667%;
    }

    .col-sm-10 {
        width: 83.33333333%;
    }

    .col-sm-9 {
        width: 75%;
    }

    .col-sm-8 {
        width: 66.66666667%;
    }

    .col-sm-7 {
        width: 58.33333333%;
    }

    .col-sm-6 {
        width: 50%;
    }

    .col-sm-5 {
        width: 41.66666667%;
    }

    .col-sm-4 {
        width: 33.33333333%;
    }

    .col-sm-3 {
        width: 25%;
    }

    .col-sm-2 {
        width: 16.66666667%;
    }

    .col-sm-1 {
        width: 8.33333333%;
    }

    .col-sm-pull-12 {
        right: 100%;
    }

    .col-sm-pull-11 {
        right: 91.66666667%;
    }

    .col-sm-pull-10 {
        right: 83.33333333%;
    }

    .col-sm-pull-9 {
        right: 75%;
    }

    .col-sm-pull-8 {
        right: 66.66666667%;
    }

    .col-sm-pull-7 {
        right: 58.33333333%;
    }

    .col-sm-pull-6 {
        right: 50%;
    }

    .col-sm-pull-5 {
        right: 41.66666667%;
    }

    .col-sm-pull-4 {
        right: 33.33333333%;
    }

    .col-sm-pull-3 {
        right: 25%;
    }

    .col-sm-pull-2 {
        right: 16.66666667%;
    }

    .col-sm-pull-1 {
        right: 8.33333333%;
    }

    .col-sm-pull-0 {
        right: auto;
    }

    .col-sm-push-12 {
        left: 100%;
    }

    .col-sm-push-11 {
        left: 91.66666667%;
    }

    .col-sm-push-10 {
        left: 83.33333333%;
    }

    .col-sm-push-9 {
        left: 75%;
    }

    .col-sm-push-8 {
        left: 66.66666667%;
    }

    .col-sm-push-7 {
        left: 58.33333333%;
    }

    .col-sm-push-6 {
        left: 50%;
    }

    .col-sm-push-5 {
        left: 41.66666667%;
    }

    .col-sm-push-4 {
        left: 33.33333333%;
    }

    .col-sm-push-3 {
        left: 25%;
    }

    .col-sm-push-2 {
        left: 16.66666667%;
    }

    .col-sm-push-1 {
        left: 8.33333333%;
    }

    .col-sm-push-0 {
        left: auto;
    }

    .col-sm-offset-12 {
        margin-left: 100%;
    }

    .col-sm-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-sm-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-sm-offset-9 {
        margin-left: 75%;
    }

    .col-sm-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-sm-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-sm-offset-6 {
        margin-left: 50%;
    }

    .col-sm-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-sm-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-sm-offset-3 {
        margin-left: 25%;
    }

    .col-sm-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-sm-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-sm-offset-0 {
        margin-left: 0;
    }
}

/* Medium devices (desktops, 1025px and up) */
@media (min-width: 1025px) {
    [class*="col-md-"] {
        float: left;
    }

    .col-md-12 {
        width: 100%;
    }

    .col-md-11 {
        width: 91.66666667%;
    }

    .col-md-10 {
        width: 83.33333333%;
    }

    .col-md-9 {
        width: 75%;
    }

    .col-md-8 {
        width: 66.66666667%;
    }

    .col-md-7 {
        width: 58.33333333%;
    }

    .col-md-6 {
        width: 50%;
    }

    .col-md-5 {
        width: 41.66666667%;
    }

    .col-md-4 {
        width: 33.33333333%;
    }

    .col-md-3 {
        width: 25%;
    }

    .col-md-2 {
        width: 16.66666667%;
    }

    .col-md-1 {
        width: 8.33333333%;
    }

    .col-md-pull-12 {
        right: 100%;
    }

    .col-md-pull-11 {
        right: 91.66666667%;
    }

    .col-md-pull-10 {
        right: 83.33333333%;
    }

    .col-md-pull-9 {
        right: 75%;
    }

    .col-md-pull-8 {
        right: 66.66666667%;
    }

    .col-md-pull-7 {
        right: 58.33333333%;
    }

    .col-md-pull-6 {
        right: 50%;
    }

    .col-md-pull-5 {
        right: 41.66666667%;
    }

    .col-md-pull-4 {
        right: 33.33333333%;
    }

    .col-md-pull-3 {
        right: 25%;
    }

    .col-md-pull-2 {
        right: 16.66666667%;
    }

    .col-md-pull-1 {
        right: 8.33333333%;
    }

    .col-md-pull-0 {
        right: auto;
    }

    .col-md-push-12 {
        left: 100%;
    }

    .col-md-push-11 {
        left: 91.66666667%;
    }

    .col-md-push-10 {
        left: 83.33333333%;
    }

    .col-md-push-9 {
        left: 75%;
    }

    .col-md-push-8 {
        left: 66.66666667%;
    }

    .col-md-push-7 {
        left: 58.33333333%;
    }

    .col-md-push-6 {
        left: 50%;
    }

    .col-md-push-5 {
        left: 41.66666667%;
    }

    .col-md-push-4 {
        left: 33.33333333%;
    }

    .col-md-push-3 {
        left: 25%;
    }

    .col-md-push-2 {
        left: 16.66666667%;
    }

    .col-md-push-1 {
        left: 8.33333333%;
    }

    .col-md-push-0 {
        left: auto;
    }

    .col-md-offset-12 {
        margin-left: 100%;
    }

    .col-md-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-md-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-md-offset-9 {
        margin-left: 75%;
    }

    .col-md-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-md-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-md-offset-6 {
        margin-left: 50%;
    }

    .col-md-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-md-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-md-offset-3 {
        margin-left: 25%;
    }

    .col-md-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-md-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-md-offset-0 {
        margin-left: 0;
    }
}

/* Large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    [class*="col-lg-"] {
        float: left;
    }

    .col-lg-12 {
        width: 100%;
    }

    .col-lg-11 {
        width: 91.66666667%;
    }

    .col-lg-10 {
        width: 83.33333333%;
    }

    .col-lg-9 {
        width: 75%;
    }

    .col-lg-8 {
        width: 66.66666667%;
    }

    .col-lg-7 {
        width: 58.33333333%;
    }

    .col-lg-6 {
        width: 50%;
    }

    .col-lg-5 {
        width: 41.66666667%;
    }

    .col-lg-4 {
        width: 33.33333333%;
    }

    .col-lg-3 {
        width: 25%;
    }

    .col-lg-2 {
        width: 16.66666667%;
    }

    .col-lg-1 {
        width: 8.33333333%;
    }

    .col-lg-pull-12 {
        right: 100%;
    }

    .col-lg-pull-11 {
        right: 91.66666667%;
    }

    .col-lg-pull-10 {
        right: 83.33333333%;
    }

    .col-lg-pull-9 {
        right: 75%;
    }

    .col-lg-pull-8 {
        right: 66.66666667%;
    }

    .col-lg-pull-7 {
        right: 58.33333333%;
    }

    .col-lg-pull-6 {
        right: 50%;
    }

    .col-lg-pull-5 {
        right: 41.66666667%;
    }

    .col-lg-pull-4 {
        right: 33.33333333%;
    }

    .col-lg-pull-3 {
        right: 25%;
    }

    .col-lg-pull-2 {
        right: 16.66666667%;
    }

    .col-lg-pull-1 {
        right: 8.33333333%;
    }

    .col-lg-pull-0 {
        right: auto;
    }

    .col-lg-push-12 {
        left: 100%;
    }

    .col-lg-push-11 {
        left: 91.66666667%;
    }

    .col-lg-push-10 {
        left: 83.33333333%;
    }

    .col-lg-push-9 {
        left: 75%;
    }

    .col-lg-push-8 {
        left: 66.66666667%;
    }

    .col-lg-push-7 {
        left: 58.33333333%;
    }

    .col-lg-push-6 {
        left: 50%;
    }

    .col-lg-push-5 {
        left: 41.66666667%;
    }

    .col-lg-push-4 {
        left: 33.33333333%;
    }

    .col-lg-push-3 {
        left: 25%;
    }

    .col-lg-push-2 {
        left: 16.66666667%;
    }

    .col-lg-push-1 {
        left: 8.33333333%;
    }

    .col-lg-push-0 {
        left: auto;
    }

    .col-lg-offset-12 {
        margin-left: 100%;
    }

    .col-lg-offset-11 {
        margin-left: 91.66666667%;
    }

    .col-lg-offset-10 {
        margin-left: 83.33333333%;
    }

    .col-lg-offset-9 {
        margin-left: 75%;
    }

    .col-lg-offset-8 {
        margin-left: 66.66666667%;
    }

    .col-lg-offset-7 {
        margin-left: 58.33333333%;
    }

    .col-lg-offset-6 {
        margin-left: 50%;
    }

    .col-lg-offset-5 {
        margin-left: 41.66666667%;
    }

    .col-lg-offset-4 {
        margin-left: 33.33333333%;
    }

    .col-lg-offset-3 {
        margin-left: 25%;
    }

    .col-lg-offset-2 {
        margin-left: 16.66666667%;
    }

    .col-lg-offset-1 {
        margin-left: 8.33333333%;
    }

    .col-lg-offset-0 {
        margin-left: 0;
    }
}

/**
 * Clearfix
 * Apply clearing without adding additional markup
 */
.clearfix:before,
.clearfix:after,
.container:before,
.container:after,
.container-fluid:before,
.container-fluid:after,
.row:before,
.row:after {
    content: " ";
    display: table;
}

.clearfix:after,
.container:after,
.container-fluid:after,
.row:after {
    clear: both;
}

/*--------------------------------------------------------------*\
    OBJECTS
    Objects are independent generic stylibf classes or UI peices.
    All styles for objects should be self contained.
    e.g. an object shouldn't rely on trump helpers to apply padding etc.
\*--------------------------------------------------------------*/
/**
 * Buttons
 */
.btn {
    font-family: 'Oswald', sans-serif;
    font-size: 15px;
    line-height: 1em;
    font-weight: 400;
    color: #fff;
    background-color: #154396;
    text-decoration: none;
    display: inline-block;
    padding: 20px 25px;
    text-transform: uppercase;
    position: relative;
    border: 2px solid #1A59A0;
    border-radius: 100px;
}

.btn-primary {
    background-color: #154396;
    border-color: #1A59A0;
}

.btn:hover,
.btn-primary:hover {
    background-color: #0A1F34;
    border-color: #0A1F34;
    text-decoration: none;
}

.btn-secondary {
    background-color: #FEC20E;
    color: #0A1F34;
    border-color: #FEC20E;
}

.btn-secondary:hover {
    background-color: #FF9300;
    border-color: #FF9300;
}

.btn-tertiary {
    font-weight: 600;
    color: #154396;
    background-color: transparent;
    padding: 0 24px 0 0;
    border: none;
    border-radius: none;
}

.btn-tertiary:after {
    content: "\e902";
    top: 0;
    right: 0;
    font-family: "icomoon";
    font-weight: normal;
    position: absolute;
}

.btn-tertiary:hover {
    color: #FF9300;
    background-color: transparent;
    padding: 0 36px 0 0;
}

.btn-quaternary {
    font-weight: 600;
    color: #fec20e;
    background-color: transparent;
    padding: 0 50px 0 0;
    border: none;
    border-radius: none;
}

.btn-quaternary:hover {
    color: #fec20e;
    background-color: transparent;
    padding: 0 122px 0 0;
}

.btn-quaternary span {
    background-color: #fff;
    position: relative;
    padding-right: 5px;
}

.btn-quaternary:before {
    position: absolute;
    content: "";
    left: 0;
    top: 50%;
    margin-top: -1px;
    width: calc(100% - 5px);
    background-color: #fec20e;
    height: 2px;
}

.btn-quaternary:after {
    position: absolute;
    top: 50%;
    content: "";
    right: 3px;
    font-weight: normal;
    font-size: 11px;
    width: 4px;
    height: 4px;
    margin-top: -4px;
    border: 2px solid #fec20e;
    border-radius: 50%;
    background-color: #fff;
}

.btn-quaternary:hover::before {
    background-color: #FF9300;
}

.btn-quaternary:hover::after {
    border: 2px solid #FF9300;
}

.btn-block {
    display: block;
    width: 100%;
}

.btn+.btn {
    margin-top: 5px;
    /* Add margin-top when 2 buttons are next to each other */
}

@media (min-width: 768px) {
    .btn {
        font-size: 17px;
    }

    .btn+.btn {
        margin-top: 0;
        margin-left: 5px;
    }
}

/**
 * Icons
 */
/* add icon code here */
@font-face {
    font-family: 'icomoon';
    src: url("/source/3bb0a01083dee863d54def8604682ed4/icomoon.eot");
    src: url("/source/2f8e2dec0efb72cbea4b6b028a8491c8/icomoon.eot") format('embedded-opentype'),
        url("/source/0fb7ef3eab2c993ef39e4733b4760e96/icomoon.ttf") format('truetype'),
        url("/source/487f5a78b142183be506f33429b8047a/icomoon.woff") format('woff'),
        url("/source/99bba29b562493b73551594aa5a6e1ad/icomoon.svg") format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-arrow-circle-down:before {
    content: "\e900";
}

.icon-arrow-circle-left:before {
    content: "\e901";
}

.icon-arrow-circle-right:before {
    content: "\e902";
}

.icon-arrow-circle-up:before {
    content: "\e903";
}

.icon-arrow-down:before {
    content: "\e904";
}

.icon-arrow-left:before {
    content: "\e905";
}

.icon-arrow-right:before {
    content: "\e906";
}

.icon-arrow-up:before {
    content: "\e907";
}

.icon-bullet:before {
    content: "\e908";
}

.icon-check:before {
    content: "\e909";
}

.icon-double-arrow-down:before {
    content: "\e90a";
}

.icon-double-arrow-left:before {
    content: "\e90b";
}

.icon-double-arrow-right:before {
    content: "\e90c";
}

.icon-double-arrow-up:before {
    content: "\e90d";
}

.icon-email:before {
    content: "\e90e";
}

.icon-facebook:before {
    content: "\e90f";
}

.icon-instagram:before {
    content: "\e910";
}

.icon-linkedin:before {
    content: "\e911";
}

.icon-location:before {
    content: "\e912";
}

.icon-login:before {
    content: "\e913";
}

.icon-map-pin:before {
    content: "\e914";
}

.icon-menu:before {
    content: "\e915";
}

.icon-phone:before {
    content: "\e916";
}

.icon-quote:before {
    content: "\e917";
}

.icon-search:before {
    content: "\e918";
}

.icon-twitter:before {
    content: "\e919";
}

.icon-breadcrumb1:before {
    content: "\e91a";
}

@font-face {
    font-family: "Flaticon";
    src: url("/source/5f489447935d87fb8008ad9de307b6ad/Flaticon.eot");
    src: url("/source/10e781ab2cc464dda7bc7cccad299c22/Flaticon.eot") format("embedded-opentype"),
        url("/source/0fbf5019141c5c7c3d61d06551bc9c36") format("woff2"),
        url("/source/fd72553dd69b0ecf1e12484f868b8b7d/Flaticon.woff") format("woff"),
        url("/source/a57a0fa3b004856283e164c3d60c554d/Flaticon.ttf") format("truetype"),
        url("/source/c32283d7e54eb6e09d916f8aac8fd1ff/Flaticon.svg") format("svg");
    font-weight: normal;
    font-style: normal;
}

@media screen and (-webkit-min-device-pixel-ratio:0) {
    @font-face {
        font-family: "Flaticon";
        src: url("/source/c32283d7e54eb6e09d916f8aac8fd1ff/Flaticon.svg") format("svg");
    }
}

[class^="flaticon-"]:before,
[class*=" flaticon-"]:before,
[class^="flaticon-"]:after,
[class*=" flaticon-"]:after {
    font-family: Flaticon;
    font-style: normal;
}

.flaticon-cancel:before {
    content: "\f100";
}

/**
  * Tables
  */
.responsive-table {
    max-width: 872px;
    margin: 0 auto;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-top: 15px;
}

td {
    border: 1px solid #EDEDED;
    padding: 10px;
    font-size: 12px;
    width: 50%;
    line-height: 1.3em;
}

td:nth-child(odd) {
    background-color: #F8F8F8;
}

th {
    padding: 10px;
    font-weight: 400;
}

thead {
    background-color: #154396;
    color: #fff;
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    border: 1px solid #154396;
}

/* Responsive Tables */
.table-wrap-inner {
    padding-bottom: 20px;
}

@media (min-width: 600px) {
    .table-wrap-outer:after {
        display: none;
    }

    .table-wrap-inner {
        overflow: visible !important;
    }

    td {
        font-size: 17px;
        padding: 15px;
    }

    th {
        padding: 15px;
    }
}

/* Ninja Tables (responsive tables)*/
/*Default Table*/
h3.table_title {
    text-align: center;
    color: #00276E;
    border-bottom: 6px solid #154396
}

.table2 h3.table_title {
    background: #154396;
    border: none;
    color: #fff;
    padding: 10px;
}

a.nt_edit_link {
    display: none !important;
}

.foo-table {
    font-size: 17px !important;
    border: 1px solid #EDEDED !important;
    border-radius: 0 !important;
    margin: 0px !important;
    border-top: none !important;
}

.foo-table .footable-first-visible {
    font-family: 'Oswald', sans-serif !important;
}

.table2 .footable-first-visible {
    font-family: 'Roboto', sans-serif !important;
    background: #F8F8F8 !important;
}

.semantic_ui .ui.celled.table tr td:first-child,
.semantic_ui .ui.celled.table tr th:first-child {
    border-left: none !important;
}

.foo-table thead tr:first-child>th:first-child,
.foo-table thead tr:first-child>th:last-child {
    border-radius: 0 !important
}

.foo-table tbody tr td {
    border-left: none !important;
}

.semantic_ui .ui.table tr td {
    border-top: 1px solid #EDEDED !important;
}

.foo-table tbody tr:first-child td {
    border-top: none !important
}

.semantic_ui .ui.striped.table>tr:nth-child(2n),
.semantic_ui .ui.striped.table tbody tr:nth-child(2n) {
    background-color: #F8F8F8 !important;
}

.table2 .semantic_ui .ui.striped.table>tr:nth-child(2n),
.table2 .semantic_ui .ui.striped.table tbody tr:nth-child(2n) {
    background-color: #fff !important;
}

.foo-table thead tr hr {
    border-left: 0 !important;
}

.semantic_ui .ui.table td {
    padding: 12px 26px !important;
}

.foo-table.footable.table>thead>tr>th {
    padding: 14px 26px !important;
}

.foo-table thead th {
    background: #E8E8E8 !important;
    color: #3C3C3C !important;
    font-size: 20px;
    border-color: #C2C2C2 !important;
    border-bottom: none !important;
    padding: 24px 26px !important;
}
.dataTables_wrapper{overflow-x:scroll}

.dataTables_wrapper table {max-width: 100%; overflow-x:scroll}

.tablepress thead {
    color:#0A1F34!important;
border:1px solid #EDEDED!important
}

.tablepress tfoot th:nth-child(odd),
.tablepress thead th:nth-child(odd) {
background-color:#F8F8F8!important;
    border:1px solid #EDEDED!important
}
.tablepress tfoot th:nth-child(even),
.tablepress thead th:nth-child(even) {
background-color:#fff!important;
    border:1px solid #EDEDED!important
}
.tablepress thead {background-color:transparent!important;}
td h4 {padding-bottom:0px!important;}

/* Start adding custom Scroll */
.footable_parent:root {
    scrollbar-face-color: #767676;
    /* Firefox 63 compatibility */
    scrollbar-track-color: #c9c9c9;
    /* Firefox 63 compatibility */
    scrollbar-color: #767676 #c9c9c9;
    scrollbar-width: thin;
}

.footable_parent::-webkit-scrollbar {
    width: 10px;
}

.footable_parent::-webkit-scrollbar-track {
    background: #c9c9c9;
    border-radius: 10px;
}

.footable_parent::-webkit-scrollbar-thumb {
    background: #767676;
    border-radius: 10px;
}

.footable_parent {
    margin: 30px 0px;
}

@media(min-width:768px) {
    h3.table_title {
        font-size: 30px;
    }
}

/* End adding custom Scroll */
/* Custom CSS */
/**
 * Forms
 */
.form-contact {
    position: relative;
    margin: 33px 16px 0 0;
}

.form-submit-center {
    max-width: 194px;
    margin: 0 auto;
}

label {
    background-color: #fff;
    position: absolute;
    top: -12px;
    color: #0A1F34;
    font-size: 15px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    left: 15px;
    padding: 0 5px;
    z-index: 9;
}

.more-index {
    position: relative;
    z-index: 99
}

::-webkit-input-placeholder {
    color: inherit;
    opacity: 1;
}

::-moz-placeholder {
    color: inherit;
    opacity: 1;
}

:-ms-input-placeholder {
    color: inherit;
    opacity: 1;
}

:-moz-placeholder {
    color: inherit;
    opacity: 1;
}

/* Removes default webkit form styling */
input:not([type="radio"]):not([type="checkbox"]),
button,
textarea {
    -webkit-appearance: none;
}

/* default text input style */
[type="text"],
[type="date"],
[type="datetime"],
[type="datetime-local"],
[type="email"],
[type="month"],
[type="number"],
[type="password"],
[type="search"],
[type="tel"],
[type="url"],
[type="week"],
[type="date"] {
    width: 100%;
    padding: 0 20px;
    height: 52px;
    line-height: 52px;
    border: 1px solid #748C97;
    background-color: #fff;
    font-size: 15px;
    color: #748C97;
    font-family: 'Roboto', sans-serif;
}

textarea {
    width: 100%;
    padding: 20px 20px;
    height: 118px;
    line-height: 1em;
    border: 1px solid #748C97;
    background-color: #fff;
    font-size: 15px;
    color: #748C97;
    font-family: 'Roboto', sans-serif;
    resize: none;
}

[type="text"]:focus,
[type="date"]:focus,
[type="datetime"]:focus,
[type="datetime-local"]:focus,
[type="email"]:focus,
[type="month"]:focus,
[type="number"]:focus,
[type="password"]:focus,
[type="search"]:focus,
[type="tel"]:focus,
[type="url"]:focus,
[type="week"]:focus,
[type="date"]:focus,
textarea:focus {
    border-left: 5px solid #154396;
    outline: none;
}

/* Removes inconsistent padding from Firefox buttons */
button::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border: none;
    padding: 0;
}

[type="submit"] {
    cursor: pointer;
    background-color: #FEC20E;
    color: #0A1F34;
    border: none;
    height: 52px;
    width: 100%;
    color: #0A1F34;
    text-transform: uppercase;
    font-size: 17px;
    font-family: 'Oswald', sans-serif;
}

[type="submit"]:hover {
    background-color: #0A1F34;
    color: #FEC20E;
}

/* Hide reCaptcha badge */
.grecaptcha-badge {
    visibility: hidden;
}

/* Default Radio/Checkbox Style (if using CF7) */
.wpcf7-radio .wpcf7-list-item,
.wpcf7-checkbox .wpcf7-list-item {
    display: inline-block;
    margin-right: 15px;
    margin-bottom: 10px;
    /* incase items go to 2 lines */
}

.wpcf7-radio .wpcf7-list-item-label,
.wpcf7-checkbox .wpcf7-list-item-label {
    margin-left: 5px;
}

/* Choices - Select field styling */
.choices {
    position: relative;
    overflow: hidden;
    margin-bottom: 24px;
    font-size: 16px;
}

.choices:focus {
    outline: none;
}

.choices:last-child {
    margin-bottom: 0;
}

.choices.is-open {
    overflow: initial;
}

.choices.is-disabled .choices__inner,
.choices.is-disabled .choices__input {
    background-color: #eaeaea;
    cursor: not-allowed;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
}

.choices.is-disabled .choices__item {
    cursor: not-allowed;
}

.choices [hidden] {
    display: none !important;
}

.choices[data-type*='select-one'] {
    cursor: pointer;
}

.choices[data-type*='select-one'] .choices__inner {
    padding-bottom: 7.5px;
}

.choices[data-type*='select-one'] .choices__input {
    display: none;
    width: 100%;
    padding: 10px;
    border-bottom: 1px solid #dddddd;
    background-color: #ffffff;
    margin: 0;
}

.choices[data-type*='select-one'] .choices__button {
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjMDAwIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    padding: 0;
    background-size: 8px;
    position: absolute;
    top: 50%;
    right: 0;
    margin-top: -10px;
    margin-right: 25px;
    height: 20px;
    width: 20px;
    border-radius: 10em;
    opacity: 0.25;
}

.choices[data-type*='select-one'] .choices__button:hover,
.choices[data-type*='select-one'] .choices__button:focus {
    opacity: 1;
}

.choices[data-type*='select-one'] .choices__button:focus {
    -webkit-box-shadow: 0px 0px 0px 2px #00bcd4;
    box-shadow: 0px 0px 0px 2px #00bcd4;
}

.choices[data-type*='select-one'] .choices__item[data-value=''] .choices__button {
    display: none;
}

.choices[data-type*='select-one']:after {
    content: '\e904';
    position: absolute;
    right: 0;
    top: 0;
    margin-top: 0;
    pointer-events: none;
    font-family: icomoon;
    color: #154396;
    font-size: 15px;
    border-left: 1px solid #748C97;
    width: 50px;
    height: 52px;
    text-align: center;
    line-height: 52px;
}

.choices[data-type*='select-one'].is-open:after {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.choices[data-type*='select-one'][dir='rtl']:after {
    left: 11.5px;
    right: auto;
}

.choices[data-type*='select-one'][dir='rtl'] .choices__button {
    right: auto;
    left: 0;
    margin-left: 25px;
    margin-right: 0;
}

.choices[data-type*='select-multiple'] .choices__inner,
.choices[data-type*='text'] .choices__inner {
    cursor: text;
}

.choices[data-type*='select-multiple'] .choices__button,
.choices[data-type*='text'] .choices__button {
    position: relative;
    display: inline-block;
    margin-top: 0;
    margin-right: -4px;
    margin-bottom: 0;
    margin-left: 8px;
    padding-left: 16px;
    border-left: 1px solid #008fa1;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMjEiIGhlaWdodD0iMjEiIHZpZXdCb3g9IjAgMCAyMSAyMSIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZyBmaWxsPSIjRkZGIiBmaWxsLXJ1bGU9ImV2ZW5vZGQiPjxwYXRoIGQ9Ik0yLjU5Mi4wNDRsMTguMzY0IDE4LjM2NC0yLjU0OCAyLjU0OEwuMDQ0IDIuNTkyeiIvPjxwYXRoIGQ9Ik0wIDE4LjM2NEwxOC4zNjQgMGwyLjU0OCAyLjU0OEwyLjU0OCAyMC45MTJ6Ii8+PC9nPjwvc3ZnPg==);
    background-size: 8px;
    width: 8px;
    line-height: 1;
    opacity: 0.75;
    border-radius: 0;
}

.choices[data-type*='select-multiple'] .choices__button:hover,
.choices[data-type*='select-multiple'] .choices__button:focus,
.choices[data-type*='text'] .choices__button:hover,
.choices[data-type*='text'] .choices__button:focus {
    opacity: 1;
}

.choices__inner {
    display: inline-block;
    vertical-align: top;
    width: 100%;
    background-color: #fff;
    padding: 7.5px 15px 3.75px;
    border: 1px solid #748C97;
    font-size: 15px;
    min-height: 50px;
    overflow: hidden;
    font-family: 'Roboto', sans-serif;
}

.is-focused .choices__inner,
.is-open .choices__inner {
    border-color: #b7b7b7;
}

.is-open .choices__inner {
    border-radius: 2.5px 2.5px 0 0;
}

.is-flipped.is-open .choices__inner {
    border-radius: 0 0 2.5px 2.5px;
}

.choices__list {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.choices__list--single {
    display: inline-block;
    padding: 4px 16px 4px 4px;
    width: 100%;
}

[dir='rtl'] .choices__list--single {
    padding-right: 4px;
    padding-left: 16px;
}

.choices__list--single .choices__item {
    width: 100%;
}

.choices__list--multiple {
    display: inline;
}

.choices__list--multiple .choices__item {
    display: inline-block;
    vertical-align: middle;
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 12px;
    font-weight: 500;
    margin-right: 3.75px;
    margin-bottom: 3.75px;
    background-color: #00bcd4;
    border: 1px solid #00a5bb;
    color: #ffffff;
    word-break: break-all;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.choices__list--multiple .choices__item[data-deletable] {
    padding-right: 5px;
}

[dir='rtl'] .choices__list--multiple .choices__item {
    margin-right: 0;
    margin-left: 3.75px;
}

.choices__list--multiple .choices__item.is-highlighted {
    background-color: #00a5bb;
    border: 1px solid #008fa1;
}

.is-disabled .choices__list--multiple .choices__item {
    background-color: #aaaaaa;
    border: 1px solid #919191;
}

.choices__list--dropdown {
    visibility: hidden;
    z-index: 1;
    position: absolute;
    width: 100%;
    background-color: #ffffff;
    border: 1px solid #dddddd;
    top: 100%;
    margin-top: -1px;
    border-bottom-left-radius: 2.5px;
    border-bottom-right-radius: 2.5px;
    overflow: hidden;
    word-break: break-all;
    will-change: visibility;
}

.choices__list--dropdown.is-active {
    visibility: visible;
}

.is-open .choices__list--dropdown {
    border-color: #b7b7b7;
}

.is-flipped .choices__list--dropdown {
    top: auto;
    bottom: 100%;
    margin-top: 0;
    margin-bottom: -1px;
    border-radius: 0.25rem 0.25rem 0 0;
}

.choices__list--dropdown .choices__list {
    position: relative;
    max-height: 300px;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    will-change: scroll-position;
}

.choices__list--dropdown .choices__item {
    position: relative;
    padding: 10px;
    font-size: 14px;
}

[dir='rtl'] .choices__list--dropdown .choices__item {
    text-align: right;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted {
    background-color: #f2f2f2;
}

.choices__list--dropdown .choices__item--selectable.is-highlighted:after {
    opacity: 0.5;
}

.choices__item {
    cursor: default;
}

.choices__item--selectable {
    cursor: pointer;
}

.choices__item--disabled {
    cursor: not-allowed;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
    user-select: none;
    opacity: 0.5;
}

.choices__heading {
    font-weight: 600;
    font-size: 12px;
    padding: 10px;
    border-bottom: 1px solid #f7f7f7;
    color: gray;
}

.choices__button {
    text-indent: -9999px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: 0;
    background-color: transparent;
    background-repeat: no-repeat;
    background-position: center;
    cursor: pointer;
}

.choices__button:focus {
    outline: none;
}

.choices__input {
    display: inline-block;
    vertical-align: baseline;
    background-color: #f9f9f9;
    font-size: 14px;
    margin-bottom: 5px;
    border: 0;
    border-radius: 0;
    max-width: 100%;
    padding: 4px 0 4px 2px;
}

.choices__input:focus {
    outline: 0;
}

[dir='rtl'] .choices__input {
    padding-right: 2px;
    padding-left: 0;
}

.choices__placeholder {
    opacity: 0.5;
}

@media (min-width: 600px) {
    .choices__list--dropdown .choices__item--selectable {
        padding-right: 100px;
    }

    .choices__list--dropdown .choices__item--selectable:after {
        content: attr(data-select-text);
        font-size: 12px;
        opacity: 0;
        position: absolute;
        right: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    [dir='rtl'] .choices__list--dropdown .choices__item--selectable {
        text-align: right;
        padding-left: 100px;
        padding-right: 10px;
    }

    [dir='rtl'] .choices__list--dropdown .choices__item--selectable:after {
        right: auto;
        left: 10px;
    }
}

/* CF7 Validation (Replace if not using CF7) */
/* Individual field error messages */
.wpcf7-not-valid-tip {
    text-align: right;
    display: block;
    color: #FF9300;
    font-size: 14px;
}

.wpcf7-not-valid-tip:before {
    content: '';
    position: absolute;
    right: 0;
    top: -7px;
    background: url("/source/bdf428e8d019d5cb02bae32300672098/error.png") 0 0 no-repeat;
    width: 28px;
    height: 28px;
}

/* Entire form error message */
.wpcf7-response-output {
    display:inline-block;
}

/* Styling for fields that have errors */
select.wpcf7-not-valid,
textarea.wpcf7-not-valid,
input.wpcf7-not-valid,
.wpcf7-not-valid .choices {
    border: 1px solid #FF9300;
    border-left: 5px solid #FF9300 !important;
    outline: none;
    -webkit-box-shadow: 0;
    box-shadow: 0;
}

div#wpcf7-f4782-p4025-o1 form {
    overflow: visible;
}

/**
 * Careers Form Styling
 */
#wpcf7-f4915-o1 label {position:relative; padding:0; left:0; top:0; display:block;}
#wpcf7-f4915-o1 input {margin-bottom:10px}
#wpcf7-f4915-o1 .wpcf7-character-count.down {opacity:.5; font-size: 14px; text-align:right;display:block; margin-bottom:10px }
#wpcf7-f4915-o1 .wpcf7-character-count.down:after{
    content:' characters remaining'
}
.wpcf7-not-valid-tip{
font-family:'Roboto', sans-serif;
}
#wpcf7-f4915-o1 h3{margin-top:10px;}
#wpcf7-f4915-o1 h2 {margin-top:30px;font-weight:bold;}
#wpcf7-f4915-o1 h2:not(:first-of-type) {border-top:1px solid #efefef;padding-top:20px;}
    @media(min-width: 768px){
        #wpcf7-f4915-o1 h3{font-size: 24px;
        margin-top:20px;}
        #wpcf7-f4915-o1 h2 {margin-top:50px;}
    }
/**
 *End Careers Form Styling
 */


/**
 * Breadcrumbs
 */
.breadcrumbs {
    margin: 0;
    padding: 0;
}

.breadcrumbs span {
    margin: 0;
    padding: 15px 0 0 0;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.breadcrumbs span li {
    margin: 0;
    float: left;
    font-size: 13px;
    list-style: none;
}

.breadcrumbs .icon-breadcrumb1 {
    color: #D7DDDF;
    font-size: 20px;
    position: relative;
    top: 3px;
    margin: 0 15px;
    font-weight: bold;
}

.breadcrumbs span li:first-child {
    padding-left: 0;
}

.breadcrumbs span li:before {
    display: none;
}

.breadcrumbs span li a {
    font-weight: normal;
    color: #fff;
}

.breadcrumbs span li a:hover {
    text-decoration: none;
    color: #FF9300;
}

/**
* yoast specific crums
*/
.fx_breadcrumbs {
    margin: 0;
    padding: 0;
}

.fx_breadcrumbs span {
    margin: 0;
    padding: 15px 0 0 0;
    text-transform: uppercase;
    font-family: 'Oswald', sans-serif;
}

.fx_breadcrumbs span li {
    margin: 0;
     float: left;
    font-size: 13px;
    list-style: none;
}

.fx_breadcrumbs .icon-breadcrumb1 {
    color: #D7DDDF;
    font-size: 20px;
    position: relative;
    float: left;
    top: 3px;
    margin: 0 15px;
    font-weight: bold;
}

.fx_breadcrumbs span li:first-child {
    padding-left: 0;
}

.fx_breadcrumbs span li:before {
    display: none;
}

.fx_breadcrumbs span li a {
    font-weight: normal;
    color: #fff;
}

.fx_breadcrumbs span li a:hover {
    text-decoration: none;
    color: #FF9300;
}

.d-none {
    display: block !important;
}

/**
 * Pagination
 */
.wp-pagenavi {
    margin-top: 40px;
    text-align: center;
}

.wp-pagenavi .pages {
    border: 0;
    margin-left: 0;
    padding-left: 0;
}

.wp-pagenavi span.current,
.wp-pagenavi .page,
.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
    display: inline-block;
    padding: 0 10px;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    vertical-align: middle;
}

.wp-pagenavi span.current {
    color: #FF9300;
    border-bottom: 2px solid #FF9300;
    padding: 10px;
}

.wp-pagenavi .nextpostslink,
.wp-pagenavi .previouspostslink {
    display: none;
}

.wp-pagenavi .nextpostslink a,
.wp-pagenavi .previouspostslink a {
    background-color: #DCE1E3;
    color: #7D8BA1;
    text-transform: uppercase;
    padding: 10px 20px;
    font-weight: 400;
    font-size: 15px;
    font-weight: 600;
}

.wp-pagenavi .nextpostslink a:hover,
.wp-pagenavi .previouspostslink a:hover {
    background-color: #154396;
    color: #fff;
    text-decoration: none;
}

.wp-pagenavi .page a {
    color: #7D8BA1;
    border-bottom: 2px solid transparent;
    padding: 10px 0;
}

.wp-pagenavi .page a:hover {
    color: #FF9300;
    text-decoration: none;
}

@media (min-width: 768px) {

    .wp-pagenavi .nextpostslink,
    .wp-pagenavi .previouspostslink {
        display: inline-block;
    }
}

@media (min-width: 1200px) {

    .wp-pagenavi .page,
    .wp-pagenavi .nextpostslink,
    .wp-pagenavi .previouspostslink {
        padding: 10px 20px;
    }

    .wp-pagenavi .previouspostslink {
        padding-right: 30px;
    }
}

/**
 * Sliders/Carousels
 * Slick Slider - http://kenwheeler.github.io/slick/
 */
/* General styling */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

.slick-slide,
.slick-arrow,
.slick-dots button,
.slick-slide:focus * {
    outline: none !important;
}

.slick-initialized .slick-slide {
    float: none;
    display: inline-block;
    vertical-align: middle;
}

/* Preload affect */
.slick-slider .slide {
    display: none;
}

.slick-slider .slide:first-child {
    display: block;
}

.slick-slider.slick-initialized .slide {
    display: block;
}

.js-slider-has-preloader {
    /* Add this class to your slider */
    min-height: 50px;
    position: relative;
}

.js-slider-has-preloader:before {
    content: url("/source/1398d5f24f0776e6f652d0001be209ed/loading.gif");
    /* Create and upload a loading gif to your image directory */
    position: absolute;
    top: 50%;
    left: 50%;
    width: 50px;
    /* Update width based on gif size */
    height: 50px;
    /* Update height based on gif size */
    -webkit-transition: all .5s ease;
    -o-transition: all .5s ease;
    transition: all .5s ease;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.js-slider-has-preloader-init:before {
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
}

/* Slick Dots */
.slick-dots {
    padding: 15px 0 0 0;
    margin: 0;
    list-style: none;
    text-align: center;
}

.slick-dots li {
    display: inline-block;
    cursor: pointer;
    padding: 0 9px;
    position: relative;
}

.slick-dots li:only-child {
    display: none;
}

.slick-dots li button {
    display: block;
    cursor: pointer;
    outline: none;
    width: 18px;
    height: 18px;
    border: none;
    background-color: #fff;
    text-indent: -99999px;
    border: 2px solid #748C97;
    border-radius: 50%;
    position: relative;
    z-index: 9;
    padding: 0;
}

.slick-dots li.slick-active button {
    background-color: #FF9300;
    border-color: #FF9300;
}

.slick-dots li:before {
    display: none;
}

.slick-dots li:after {
    width: 100%;
    height: 2px;
    background-color: #748C97;
    right: 0;
    top: 8px;
    position: absolute;
    content: "";
}

.slick-dots li:first-child {
    padding-left: 0;
}

.slick-dots li:last-child {
    padding-right: 0;
}

/* Custom styling per slider/carousel */
/**
 * Posts
 * Used on blog, category, archive and search results pages
 */
.post-item {
    border-top: 1px solid #ddd;
    padding-top: 30px;
    margin-top: 30px;
}

.post-item:first-of-type {
    border-top: 0;
    padding-top: 0;
    margin-top: 0;
}

.post-item__heading a {
    text-decoration: none;
}

.post-item .btn,
.post-item .btn-primary {
    margin-top: 30px;
}

.post-item__meta {
    font-size: .8em;
}

@media (min-width: 1025px) {
    .post-item {
        padding-top: 50px;
        margin-top: 50px;
    }
}

/**
 * Tabs
 * In use on search.php template by default.
 * Use as base for any other tabs on the site.
 */
/**
 * Social Share
 * Used in single.php by default
 * Make any additional customizations here https://sharingbuttons.io/
 */
.social-share-row {
    margin: 0;
    padding: 0 !important;
    /* get rid of default <ul> padding */
    list-style: none !important;
    /* get rid of list bullets */
}

.social-share-row__item {
    display: inline-block;
}

.resp-sharing-button__link,
.resp-sharing-button__icon {
    display: inline-block
}

.resp-sharing-button__link {
    text-decoration: none;
    color: #fff;
    margin: 0.5em
}

.social-share-row__item:first-child .resp-sharing-button__link {
    margin-left: 0;
}

.resp-sharing-button {
    border-radius: 5px;
    -webkit-transition: 25ms ease-out;
    -o-transition: 25ms ease-out;
    transition: 25ms ease-out;
    padding: 0.5em 0.75em;
    font-family: Helvetica Neue, Helvetica, Arial, sans-serif
}

.resp-sharing-button__icon svg {
    width: 1em;
    height: 1em;
    margin-right: 0.4em;
    vertical-align: top
}

.resp-sharing-button--small svg {
    margin: 0;
    vertical-align: middle
}

/* Non solid icons get a stroke */
.resp-sharing-button__icon {
    stroke: #fff;
    fill: none
}

/* Solid icons get a fill */
.resp-sharing-button__icon--solid,
.resp-sharing-button__icon--solidcircle {
    fill: #fff;
    stroke: none
}

.resp-sharing-button--linkedin {
    background-color: #0077b5;
    border-color: #0077b5;
}

.resp-sharing-button--linkedin:hover,
.resp-sharing-button--linkedin:active {
    background-color: #046293;
    border-color: #046293;
}

.resp-sharing-button--facebook {
    background-color: #3b5998;
    border-color: #3b5998;
}

.resp-sharing-button--facebook:hover,
.resp-sharing-button--facebook:active {
    background-color: #2d4373;
    border-color: #2d4373;
}

.resp-sharing-button--twitter {
    background-color: #55acee;
    border-color: #55acee;
}

.resp-sharing-button--twitter:hover,
.resp-sharing-button--twitter:active {
    background-color: #2795e9;
    border-color: #2795e9;
}

.resp-sharing-button--email {
    background-color: #777;
    border-color: #777;
}

.resp-sharing-button--email:hover,
.resp-sharing-button--email:active {
    background-color: #5e5e5e;
    border-color: #5e5e5e;
}

/* --------------------------------------------------*\
    UI
    UI peices are site specific non generic styles.
    eg: header, footer, sidebar, page specific styles
\* -----------------------------------------------------*/
/**
 * Page-head
 */
.page-header {
    background-color: #fff;
    position: relative;
    z-index: 9999;
}

.logo {
    padding: 10px 0;
}

.logo-white {
    display: none;
}

.logo img,
.logo-white img {
    display: block;
    width: 100%;
    height: auto;
}

.search-menu {
    float: right;
    text-align: center;
    font-weight: 400;
    color: #7D8BA1;
    cursor: pointer;
    /* padding-top: 19px; */
}

.search-open:hover {
    color: #FF9300;
}

.search-menu i {
    display: block;
    font-size: 24px;
}

.mobile-fix {
    position: fixed;
    bottom: 0;
    left: 0;
    height: 50px;
    max-width: 100%;
    background-color: #154396;
    color: #fff;
    width: 100%
}

.mobile-fix ul {
    float: left;
    margin: 0;
    padding: 0;
    width: calc(100% - 73px);
}

.mobile-fix ul li {
    float: left;
    text-align: center;
    padding: 0 19px;
    border-right: 1px solid #0A266F;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 50px;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    font-weight: 400;
    list-style: none;
    text-transform: uppercase;
    width: 50%;
}

.mobile-fix ul li:before {
    display: none;
}

.mobile-fix ul li:last-child {
    border: none
}

.mobile-fix ul li i {
    display: block;
    padding: 5px 0 2px 0;
}

.mobile-fix ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: 400;
}

.mobile-fix ul li a:hover {
    color: #FF9300;
    text-decoration: none;
}

.contact-menu {
    text-align: center;
    font-weight: 600;
    color: #7D8BA1;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    float: right;
    padding: 0 25px;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 30px;
    position: relative;
    margin: 12px 0;
    border-right: 1px solid #C7D0E0;
}

.contact-menu a {
    color: #7D8BA1;
    text-decoration: none;
    font-weight: 600;
}

.contact-menu a:hover {
    color: #FF9300;
    text-decoration: none;
}

.contact-menu i {
    padding: 0 0 2px 2px;
    vertical-align: middle;
    font-size: 19px;
    display: inline-block;
}

.phone-menu {
    text-align: center;
    font-weight: 600;
    color: #7D8BA1;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    float: right;
    padding: 0 25px;
    font-size: 16px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 30px;
    position: relative;
    margin: 12px 0;
    border-right: 1px solid #C7D0E0;
}

.phone-menu a {
    color: #154396;
    text-decoration: none;
    font-weight: 600;
}

.phone-menu a:hover {
    color: #FF9300;
    text-decoration: none;
}

.phone-menu i {
    padding: 0 0 2px 2px;
    vertical-align: middle;
    font-size: 19px;
    display: inline-block;
}

.search-div {
    position: absolute;
    width: 100%;
    top: 100%;
    left: 0;
    display: none;
    background-color: #f8f8f8;
    padding: 10px 15px;
    border-top: 1px solid rgba(86, 122, 160, 0.4);
}

.search-main {
    position: relative;
    margin: 0 auto;
    width: 100%;
    max-width: 320px;
}

.search-main label {
    display: none;
}

.search-main input {
    border: 1px solid#7D8BA1;
    line-height: 40px;
    height: 40px;
    width: 100%;
    color: #7D8BA1;
    padding: 0 10px 0 44px;
    font-size: 20px;
    font-family: 'Oswald', sans-serif;
}

.search-main button {
    width: 44px;
    line-height: 38px;
    height: 38px;
    top: 1px;
    left: 1px;
    text-align: center;
    position: absolute;
    color: #7D8BA1;
    border: none;
    background: none;
    font-size: 20px;
}

.nav-btn.close .icon-menu {
    font-size: 22px;
}

.nav-btn.close .icon-menu::before {
    content: '\f100';
    font-family: "Flaticon";
}



@media(min-width: 375px) {
    .mobile-fix ul li{
        padding: 0 29px;
    }
}

@media(min-width: 768px) {
    .mobile-fix {
        position: relative;
        bottom: auto;
        left: auto;
        height: auto;
        width: auto;
        background-color: transparent;
        float: right;
    }


    .search-open {
        float: right;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        height: 54px;
        padding: 0 32px;
    }

    .search-menu {
        padding-right: 0;
        padding-top: 0;
    }
}

@media(min-width: 1200px) {
    .page-header {
        width: 100%;
        top: 0;
        left: 0;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    }

    .page-header .container {
        position: relative;
    }

    .page-header.hideheader {
        top: -150px;
    }

    .page-header.js-scrolled {
        width: 100%;
        top: 0;
        position: fixed;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
        -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .17);
        box-shadow: 0 0 20px rgba(0, 0, 0, .17);
    }

    .search-open {
        padding: 0 0 0 25px;
    }

    .logo-white {
        padding-top: 31px;
    }

    .page-header.js-scrolled .logo {
        display: none;
    }

    .page-header.js-scrolled .logo-white {
        display: block;
        width: 157px;
        padding-top:12px;
    }

    .search-menu i {
        font-size: 20px;
    }
}


@media (-webkit-min-device-pixel-ratio: 2) and (-webkit-min-device-pixel-ratio: 2) and (max-width: 1024px),
(-webkit-min-device-pixel-ratio: 2) and (-o-min-device-pixel-ratio: 2/1) and (max-width: 1024px),
(-webkit-min-device-pixel-ratio: 2) and (min-resolution: 192dpi) and (max-width: 1024px) {}

@media(min-width: 1025px) {
    .sticky-sidebar {
        position: -webkit-sticky;
        position: sticky;
        top: 125px;
    }
}

/**
 * Navigation
 * - Includes starter Ubermenu mega menu styling
 */
/* General Styling */
.nav-primary {
    display: none;
    padding: 0;
    position: fixed;
    width: 100%;
    height: calc(100% - 53px);
    left: 0;
    overflow: auto;
}

.nav-primary ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-primary li {
    cursor: pointer;
    position: relative;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    padding: 0;
    border-bottom: 1px solid #DDDFE2;
    font-weight: 400;
}

.nav-primary li:before,
.nav-primary li:after {
    display: none;
    /* hide any custom bullet styling */
}

.nav-primary a {
    display: block;
    text-decoration: none;
    color: #154396;
    padding: 10px 15px;
    background-color: #EFEFEF;
    font-weight: 400;
}

.nav-primary ul li:hover a,
.nav-primary ul li.active a {
    background-color: #15345F;
    color: #fff;
}

.sub-menu-toggle {
    position: absolute;
    right: 15px;
    top: 12px;
    color: #154396;
}

.nav-primary ul li.active .sub-menu-toggle {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.nav-primary ul li:hover .sub-menu-toggle,
.nav-primary ul li.active .sub-menu-toggle {
    color: #fff;
}

.resource-text {
    background-color: #162B67;
    padding: 47px 55px;
    color: #fff;
    width: 420px;
}

.nav-primary ul li .resource-text a {
    display: inline-block;
    padding: 12px 23px;
    background-color: #FBC20F !important;
    border: none !important;
    border-radius: 100px;
    font-family: 'Oswald', sans-serif;
    font-size: 17px !important;
    text-transform: uppercase;
}

.nav-primary ul li .resource-text h2 {
    font-size: 30px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-transform: uppercase;
}

.nav-primary ul li .resource-text p {
    font-size: 18px;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    line-height: 1.5em;
    padding: 20px 0;
}

/* Sub Menus */
.nav-primary .sub-menu {
    display: none;
    position: relative;
}

.nav-primary .js-toggled {
    display: block;
}

.nav-primary .sub-menu li {
    border-bottom: 0;
    border-top: 1px solid #DDDFE2;
    font-size: 16px;
}

.nav-primary .sub-menu li a,
.nav-primary ul li.active .sub-menu li a {
    background-color: #F8F8F8;
    color: #0A1F34;
    padding: 10px 30px;
}

.nav-primary ul li:hover .sub-menu li a {
    background-color: #F8F8F8;
    color: #0A1F34;
}

.nav-primary ul li .sub-menu li:hover a,
.nav-primary ul li.active .sub-menu li.active a {
    background-color: #204C95;
    color: #fff;
}

.nav-primary ul li.active .sub-menu li .sub-menu-toggle {
    color: #0A1F34;
    -webkit-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
    top: 14px;
}

.nav-primary ul li.active .sub-menu li:hover .sub-menu-toggle {
    color: #fff;
}

.nav-primary ul li.active .sub-menu-toggle {
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.nav-primary ul li:hover .sub-menu-toggle,
.nav-primary ul li.active .sub-menu-toggle,
.nav-primary ul li.active .sub-menu li.active .sub-menu-toggle {
    color: #fff;
}

.nav-primary ul li.active .sub-menu li.active .sub-menu-toggle {
    color: #fff;
    -webkit-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    transform: rotate(180deg);
}

.nav-primary .sub-menu li {
    display: block;
}

/* 3rd Level Sub Menus */
.nav-primary .sub-menu .sub-menu li {
    border-top: none;
    font-size: 15px;
}

.nav-primary .sub-menu .sub-menu li a,
.nav-primary ul li.active .sub-menu .sub-menu li a {
    background-color: #fff;
    color: #204C95;
    padding: 7px 40px;
}

.nav-primary ul li.active .sub-menu .sub-menu li:hover a {
    color: #0A1F34;
}

.reource .js-toggled .sub-menu {
    display: block;
}

@media (min-width:768px) {
    .nav-primary {
        position: absolute;
        width: 100%;
        height: auto;
        top: 100%;
    }

    .nav-primary li:last-child {
        border: none;
    }
}

@media(min-width: 1200px) {
    .nav-primary {
        position: inherit;
        width: auto;
        top: auto;
        display: block;
        background-color: transparent;
        padding: 0;
        border: none;
        float: right;
        height: auto;
        overflow: inherit;
    }

    .nav-primary li {
        border: none;
        float: left;
        padding: 0;
        position: initial;
    }

    .nav-primary li a {
        padding: 15px 30px 30px 30px;
        color: #0A1F34;
        background-color: transparent;
        font-size: 20px;
        border-bottom: 5px solid transparent;
    }

    .nav-primary ul li:hover a {
        border-bottom: 5px solid #154396;
        background-color: transparent;
        color: #0A1F34;
    }

    .nav-primary .sub-menu {
        position: absolute;
        width: calc(100% - 32px);
        left: 16px;
        top: 100%;
        border: none;
        background-color: #fff;
    }

    .nav-primary .sub-menu .sub-menu {
        left: 420px;
        top: 0;
        background-color: #F8F8F8;
        width: calc(100% - 420px);
    }

    .nav-primary ul li:hover .sub-menu {
        display: block;
    }

    .nav-primary ul li:hover .sub-menu .sub-menu {
        display: none;
    }

    .nav-primary ul li:hover .sub-menu li:hover .sub-menu {
        display: block;
    }

    .nav-primary ul li:hover .sub-menu li a {
        border-bottom: none;
        background-color: transparent;
    }

    .nav-primary ul li .sub-menu li a {
        background-color: #fff;
        border: none;
        border-left: 5px solid transparent;
        font-size: 22px;
    }

    .nav-primary ul li .sub-menu li:hover a {
        border: none;
        border-left: 5px solid #154396;
        background-color: #EFEFEF;
        color: #0A1F34;
    }

    .nav-primary ul li .sub-menu li {
        float: none;
        border: none;
    }

    .nav-primary .sub-menu .sub-menu {
        display: none;
        padding: 10px 50px;
        -webkit-column-count: 2;
        -moz-column-count: 2;
        column-count: 2;
        background-color: #F8F8F8;
        height: 100%;
    }

    .nav-primary .sub-menu li:hover .sub-menu {
        display: block;
    }

    .nav-primary .sub-menu .sub-menu li a {
        background-color: transparent;
    }

    .nav-primary ul li .sub-menu li:first-child .sub-menu {
        display: block;
    }

    .nav-primary ul li .sub-menu li.active-menu a {
        border: none;
        border-left: 5px solid #154396;
        background-color: #EFEFEF;
        color: #0A1F34;
    }

    .nav-primary .sub-menu li a {
        padding: 25px 0 25px 50px;
    }

    .nav-primary ul li .sub-menu .sub-menu li a {
        color: #0A1F34;
        font-size: 19px;
        padding: 20px 0;
        border: none;
        font-family: 'Roboto', sans-serif;
    }

    .nav-primary ul li .sub-menu li:hover .sub-menu li a {
        background-color: transparent;
    }

    .nav-primary ul li .sub-menu li:hover .sub-menu li:hover a {
        color: #FF9300;
        font-weight: 700;
    }

    .nav-primary ul li .sub-menu-toggle {
        display: none;
    }

    .nav-primary ul li .sub-menu .sub-menu li:hover a,
    .nav-primary ul li .sub-menu li.active-menu .sub-menu li a {
        border: none;
        background-color: transparent;
    }

    .nav-primary ul li.menu-blue-bg {
        width: 100%;
        background: #162B67;
        z-index: 9;
        position: absolute;
        text-align: center;
        color: #fff;
        font-size: 20px;
        font-family: 'Roboto', sans-serif;
        line-height: 49px;
        padding: 17px 0;
        cursor: auto;
    }

    .nav-primary ul li.menu-blue-bg span {
        font-size: 22px;
        font-family: 'Oswald', sans-serif;
        font-weight: 700;
    }

    .nav-primary ul li.menu-blue-bg a {
        display: inline-block;
        padding: 0 23px;
        background-color: #FBC20F !important;
        border: none !important;
        border-radius: 100px;
        font-family: 'Oswald', sans-serif;
        font-size: 17px !important;
        text-transform: uppercase;
        margin-left: 10px;
    }

    .nav-primary ul li.menu-blue-bg a:hover {
        background-color: #FF9300 !important;
        color: #fff !important;
    }
}

@media(min-width: 1366px) {
    .nav-primary li a {
        padding: 15px 37px 30px 37px;
    }
}

/**
 * Ubermenu Styling
 */
.logo,
.logo-white {
    width: 188px;
    padding: 18px 0 0 0;
    float: left;
}

/*remove li: before item*/
.ubermenu-main li:before {
    display: none;
}

/*desktop level*/
.right-header {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.ubermenu-nav {
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: end !important;
    -ms-flex-pack: end !important;
    justify-content: flex-end !important;
}

.ubermenu-main .ubermenu-item-level-0>.ubermenu-target {
    font-family: 'Oswald', sans-serif;
}

.ubermenu-main .ubermenu-nav .ubermenu-item.ubermenu-item-level-0>.ubermenu-target>i {
    display: none;
}

.page-header .ubermenu>ul>li>a {
    padding: 18px 18px 29px !important;
}

.page-header.js-scrolled .ubermenu>ul>li>a {
    padding-top: 8px !important;
    padding-bottom: 14px!important;
}
.page-header.js-scrolled .desktop-menu {margin-top: -10px;}

/*Tabs*/
.ubermenu.ubermenu-main .ubermenu-tabs .ubermenu-tabs-group {
    padding-bottom: 32px;
}

.ubermenu.ubermenu-main .ubermenu-tab>.ubermenu-target {
    font-family: 'Oswald', sans-serif;
    font-size: 22px;
    font-weight: normal;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-transform: uppercase;
    padding: 22px 24px 22px 40px;
}

.ubermenu.ubermenu-main .ubermenu-tab>.ubermenu-target {
    border-left: 6px solid transparent;
}

.ubermenu.ubermenu-main .ubermenu-tab.ubermenu-active>.ubermenu-target:hover,
.ubermenu.ubermenu-main .ubermenu-submenu .ubermenu-tab.ubermenu-active>.ubermenu-target,
.ubermenu.ubermenu-main .ubermenu-tab>.ubermenu-target:hover {
    background-color: #efefef;
    color: #154396;
    border-left: 6px solid #154396;
}

.ubermenu .ubermenu-tab-layout-left>.ubermenu-tabs-group {
    border-color: #f8f8f8 !important
}

.ubermenu-sub-indicator {
    font-family: 'icomoon' !important;
    speak: never;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-transform: none !important;
    -ms-transform: none !important;
    transform: none !important;
    margin: 0 !important;
    top: auto !important;
    right: 22px !important;
}

.ubermenu-sub-indicator:before {
    content: "\e902" !important;
}

/*Tab Panel*/
.ubermenu.ubermenu-main .ubermenu-tab-content-panel {
    padding: 35px 68px 80px 68px;
}

.ubermenu.ubermenu-main .ubermenu-tab-content-panel .ubermenu-target,
.ubermenu .ubermenu-submenu-type-stack>.ubermenu-item-normal>.ubermenu-target {
    padding: 15px 0px !important;
    font-weight: normal;
    color: #0a1f33;
}

.ubermenu.ubermenu-main .ubermenu-tab-content-panel .ubermenu-target:hover,
.ubermenu .ubermenu-submenu-type-stack>.ubermenu-item-normal>.ubermenu-target:hover {
    color: #FF9300;
    font-weight: bold;
}

/*CTA Row*/
.ubermenu .ubermenu-row {
    margin-bottom: 0 !important;
}

.cta-bkg {
    background: rgb(22, 43, 103);
    background: -o-linear-gradient(left, rgba(22, 43, 103, 1) 0%, rgba(27, 55, 139, 1) 100%) !important;
    background: -webkit-gradient(linear, left top, right top, from(rgba(22, 43, 103, 1)), to(rgba(27, 55, 139, 1))) !important;
    background: linear-gradient(90deg, rgba(22, 43, 103, 1) 0%, rgba(27, 55, 139, 1) 100%) !important;
    color: #fff;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-align: center !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -webkit-box-pack: center !important;
    -ms-flex-pack: center !important;
    justify-content: center !important;
    padding: 16px !important;
    margin-bottom: 0px !important;
}

.menu-ctabar {
    font-size: 22px !important;
}

.menu-ctabar .regular {
    font-family: 'Roboto', sans-serif;
    font-size: 20px !important
}

.cta-bkg .btn {
    padding: 14px 25px;
    margin-left: 20px;
    cursor: pointer;
}

/*Non Tab Info Panel Menus*/
.info-panel {
    background: rgb(22, 43, 103);
    background: -o-linear-gradient(left, rgba(22, 43, 103, 1) 0%, rgba(27, 55, 139, 1) 100%) !important;
    background: -webkit-gradient(linear, left top, right top, from(rgba(22, 43, 103, 1)), to(rgba(27, 55, 139, 1))) !important;
    background: linear-gradient(90deg, rgba(22, 43, 103, 1) 0%, rgba(27, 55, 139, 1) 100%) !important;
    color: #fff;
    padding: 35px 68px 130px 68px !important;
}

.info-panel .btn {
    padding: 14px 25px;
    cursor: pointer;
}

.ubermenu .ubermenu-nav .ubermenu-column-2-3 {
    padding: 35px 68px 30px 68px !important;
}

@media only screen and (max-width: 1024px) {
    .page-header .container {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .page-header .container:before,
    .page-header .container:after {
        display: none;
    }

    .logo {
        width: 110px;
        min-width: 90px;
        height: auto;
        padding: 10px 0;
    }

    .logo a {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }

    .search-menu {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        height: 100%;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .ubermenu-responsive-toggle {
        color: #0A1F34;
        text-transform: uppercase !important;
        font-family: 'Oswald', sans-serif;
        font-weight: normal;
        font-size: 13px;
        text-align: center !important;
        letter-spacing: 0.08em;
        height: 100%;
        padding: 0px !important;
    }

    .ubermenu-responsive-toggle i {
        font-family: 'icomoon' !important;
        speak: never;
        font-style: normal;
        font-weight: normal;
        font-variant: normal;
        text-transform: none;
        line-height: 1;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
    }

    .ubermenu-responsive-toggle i:before {
        content: "\e915";
    }

    .menu-is-active .ubermenu-responsive-toggle i {
        font-family: "Flaticon" !important;
    }

    .menu-is-active .ubermenu-responsive-toggle i:before {
        content: '\f100';
    }

    .ubermenu-nav {
        display: block !important;
    }

    .ubermenu-main .ubermenu-item-level-0 {
        border-bottom: 1px solid #DDDFE2 !important;
    }

    .ubermenu-main .ubermenu-item-level-0>.ubermenu-target {
        font-size: 18px !important;
        padding: 16px 22px !important;
    }
    .ubermenu-main li.column-heading  {
        padding: 0px !important;
    }
    .ubermenu-responsive {
        -webkit-transition: none !important;
        -o-transition: none !important;
        transition: none !important;
    }

    .ubermenu .ubermenu-item .ubermenu-submenu-drop,
    .ubermenu.ubermenu-responsive .ubermenu-tab-content-panel {
        -webkit-box-shadow: none !important;
        box-shadow: none !important;
    }

    .ubermenu-main .ubermenu-item-level-0.ubermenu-active {
        border-bottom: none !important
    }

    .ubermenu-main .ubermenu-item-level-0.ubermenu-active>.ubermenu-target {
        background: #15345F;
        color: #fff !important;
    }

    .ubermenu-main .ubermenu-item-level-0.ubermenu-active>.ubermenu-sub-indicator {
        -webkit-transform: rotate(90deg) !important;
        -ms-transform: rotate(90deg) !important;
        transform: rotate(90deg) !important;
        color: white;
    }

    .ubermenu.ubermenu-main .ubermenu-tab {
        border-bottom: 1px solid #DDDFE2 !important;
    }

    .ubermenu.ubermenu-main .ubermenu-tab>.ubermenu-target {
        border-left: none;
        font-size: 16px;
        text-transform: none;
        padding: 10px 36px;
        border: none;
    }

    .ubermenu.ubermenu-main .ubermenu-tab .ubermenu-sub-indicator {
        padding: 10px;
        height: 40px;
        right: 7px !important;
    }

    .ubermenu.ubermenu-main .ubermenu-tabs .ubermenu-tabs-group {
        padding-bottom: 0;
    }

    .ubermenu .ubermenu-tab-layout-left>.ubermenu-tabs-group {
        border-right: none !important;
    }

    .ubermenu.ubermenu-main .ubermenu-submenu .ubermenu-tab.ubermenu-active>.ubermenu-target {
        border: none;
        background: #204C95;
        color: #fff !important;
    }

    .ubermenu.ubermenu-main .ubermenu-submenu .ubermenu-tab.ubermenu-active .ubermenu-sub-indicator {
        color: #fff;
    }

    .ubermenu .ubermenu-nav .ubermenu-column-2-3 {
        padding: 10px 0px !important;
        border: none !important
    }

    .ubermenu-submenu-type-stack {
        padding-bottom: 0 !important;
    }

    .ubermenu .ubermenu-item-type-column>.ubermenu-submenu-type-stack>.ubermenu-item-normal:first-child {
        margin-top: 0 !important;
    }

    .ubermenu.ubermenu-main .ubermenu-tab-content-panel .ubermenu-target,
    .ubermenu .ubermenu-submenu-type-stack>.ubermenu-item-normal>.ubermenu-target {
        padding: 7px 0px !important;
        color: #204c95;
        font-size: 15px;
    }

    .cta-bkg {
        display: none !important;
    }

    /* forces mobile menu to push other menu items down when open instead of the sub-menu overlapping other menu items */
    .ubermenu .ubermenu-item .ubermenu-submenu-drop,
    .ubermenu.ubermenu-responsive .ubermenu-tab-content-panel {
        position: relative !important;
        border: none;
    }

    .ubermenu-responsive.ubermenu {
        margin: 0;
        position: fixed;
        width: 100%;
        z-index: 99999 !important;
        background: #EFEFEF;
    }

    .ubermenu .ubermenu-item {
        position: relative !important;
    }

    /* styles the sub-menu indicator on mobile and tablet */
    .ubermenu-sub-indicator {
        display: block !important;
        position: absolute;
        right: 0 !important;
        top: 0 !important;
        padding: 8px;
        z-index: 900;
        -webkit-transform: rotate(-90deg) !important;
        -ms-transform: rotate(-90deg) !important;
        transform: rotate(-90deg) !important;
    }

    .ubermenu-item-level-0 > .ubermenu-sub-indicator {
        padding: 20px 15px;
        top: -5px !important;
    }
    .ubermenu-responsive-toggle {
        float: right;
    }
}

.ubermenu-responsive-toggle i {
    /* controls styling of mobile menu toggle */
    display: block;
    font-size: 30px;
    margin: 0 !important;
}

.ubermenu-sub-indicator-close {
    display: none !important;
}

@media(max-width:767px) {

    .right-header{
        width: 100%;
    }
    .nav-btn {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        width: 73px;
        background: #0A1F34;
        height: 100%;
        margin-left: auto;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
    }

    .ubermenu-responsive-toggle {
        color: #fff;
    }

    .menu-is-active .ubermenu-responsive-toggle i {
        font-size: 18px;
        text-align: center;
        margin: auto !important;
    }

    .ubermenu-responsive.ubermenu {
        bottom: 50px;
    }
    .ubermenu-submenu .ubermenu-submenu  ul {
	margin-left: 20px}
}


.sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    background: #fff;
    width: 100%;
    z-index: 9;
    border-top: 1px solid #ccc;
}

.ubermenu-responsive.ubermenu {
    left: 0;
    z-index: 2000;
}
@media(max-width: 1024px) {
    .ubermenu-responsive.ubermenu {
        overflow-y: auto !important;
        overflow-x: hidden !important;
        overscroll-behavior: contain;
        transform: scale(1);
    }
}
@media(max-width: 1024px) and (max-height: 500px) {
    .ubermenu-responsive.ubermenu {
        max-height: calc(100% - 50px) !important;
    }
}

.desktop-menu .ubermenu-responsive-toggle {
    display: none;
    z-index: 2000;
    position: relative;
}
/*Fix Flex Submenu Submenu styling*/
.ubermenu-submenu .ubermenu-submenu .ubermenu-submenu .ubermenu-item-has-children span {
	text-transform:none;
	font-family:'Roboto', sans-serif;
	font-size: 15px;
}

.ubermenu-submenu .ubermenu-submenu .ubermenu-submenu .ubermenu-item-has-children a {
	border-bottom:0px solid transparent;
}

.ubermenu-submenu .ubermenu-submenu .ubermenu-submenu .ubermenu-item-has-children ul {
	margin-left: 20px }


@media only screen and (min-width: 768px) {
    .ubermenu-responsive.ubermenu {
        bottom: auto;
        overflow-x: inherit !important;
    }

    .sticky-bar {
        display: none;
    }

    .desktop-menu {
        display: inline-block;
        float: right;
    }
}

@media only screen and (min-width: 1025px) {
    .desktop-menu .ubermenu-responsive-toggle {
        display: none;
    }

/*Restructure Technologies Panel */

    .ubermenu-submenu-id-3331 .ubermenu-row-id-3338 {
        padding: 50px 60px!important;
    }
    .ubermenu-submenu-id-3331 .ubermenu-row-id-3338  > li {
        padding-right: 20px;
    }

    .ubermenu-submenu-id-3331 .ubermenu-row-id-3338 .ubermenu-submenu .ubermenu-has-submenu-drop > a {
        color:blue!important;
        font-family:'Oswald', sans-serif;
        color:#0a1f34!important;
        text-transform: uppercase;
        font-size: 20px;
        border-bottom: 1px solid #bfbfbf;
    }
    .ubermenu-submenu-id-3331 .ubermenu-row-id-3338 .column-heading > a {
        color:blue!important;
        font-family:'Oswald', sans-serif;
        color:#0a1f34!important;
        text-transform: uppercase;
        font-size: 20px;
        border-bottom: 1px solid #bfbfbf;
    }

    .ubermenu-submenu-id-3331 .ubermenu-row-id-3338 .ubermenu-submenu .ubermenu-has-submenu-drop > a:hover {
        color:#154396!important;
    }
    .ubermenu-submenu .ubermenu-submenu .ubermenu-submenu .ubermenu-item-has-children span{
		font-size: 17px;
	}

    /*Full-width Ubermenu Layout (Like Technologies Panel) */

    .uber-full-width  {
        padding: 50px 60px!important;
    }
    .uber-full-width   > li {
        padding-right: 20px;
    }

    .uber-full-width  .ubermenu-submenu .ubermenu-has-submenu-drop > a {
        color:blue!important;
        font-family:'Oswald', sans-serif;
        color:#0a1f34!important;
        text-transform: uppercase;
        font-size: 20px;
        border-bottom: 1px solid #bfbfbf;
    }
    .uber-full-width  .column-heading > a {
        color:blue!important;
        font-family:'Oswald', sans-serif;
        color:#0a1f34!important;
        text-transform: uppercase;
        font-size: 20px;
        border-bottom: 1px solid #bfbfbf;
    }

    .uber-full-width  .ubermenu-submenu .ubermenu-has-submenu-drop > a:hover {
        color:#154396!important;
    }
    .ubermenu-submenu .ubermenu-submenu .ubermenu-submenu .ubermenu-item-has-children span{
        font-size: 17px;
    }
}

/* controls sticky bar menu icon and overlay on mobile */
.sticky-bar .menu-is-active .fa-bars:before {
    content: 'X';
}

body:after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, .25);
    z-index: -1000;
}

body.menu-is-active:after {
    z-index: 1000;
    display: block;
}

@media(max-width: 1024px) {
    .sticky-bar {
        z-index: 2000 !important;
    }
}

/**
 * Masthead
 */
.masthead {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: #EFEFEF;
}

.video-container {
    min-height: 100%;
    width: 100%;
    border: 0;
    position: absolute;
    right: 0px;
    top: -0;
}

.video-container video {
    margin: auto;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, 0%);
    -ms-transform: translate(-50%, 0%);
    transform: translate(-50%, 0%);
    visibility: visible;
    opacity: 1;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
}

.banner-img {
    width: 100%;
    height: 100%;
    position: relative;
}

.banner-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    font-family: 'object-fit: cover;';
    display: block;
}

.masthead-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: -o-linear-gradient(left, rgba(255, 255, 255, 0.71) 0%, rgba(229, 229, 229, 0) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0.71)), to(rgba(229, 229, 229, 0)));
    background: linear-gradient(to right, rgba(255, 255, 255, 0.71) 0%, rgba(229, 229, 229, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b5ffffff', endColorstr='#00e5e5e5', GradientType=1);

}

.masthead-content {
    position: relative;
    color: #0A1F34;
    padding: 25px 0;
}

.masthead-content h1 {
    text-transform: uppercase;
    font-weight: 500;
    font-size: 34px;
}

.masthead-content h3 {
    font-size: 18px;
    font-weight: 400;
    padding: 20px 0;
    line-height: 1.4em;
}

@media(min-width: 768px) {
    .masthead {
        height: 432px;
    }

    .banner-img {
        position: absolute;
        top: 0;
        left: 0;
    }

    .masthead-content h1 {
        font-size: 50px;
    }

    .masthead-content h3 {
        font-size: 24px;
        padding-bottom: 30px;
    }
}

@media(min-width: 1200px) {
    .masthead {
        height: 640px;
        background-color: transparent;
    }

    .masthead-content h1 {
        font-size: 70px;
    }

    .masthead-text {
        max-width: 646px;
    }

    .masthead-content {
        padding: 0 0 110px 0;
    }
}

/**
 * Sidebar
 */
/**
 * Page-footer
 */
.page-footer {
    background-color: #1b378a;
    padding: 42px 0 0 0;
    color: #fff;
    position: relative;
}

.f-border {
    overflow: hidden;
}

.page-footer a:hover {
    text-decoration: none;
    color: #FF9300;
}

.footer-logo {
    width: 121px;
}

.footer-logo img {
    max-width: 100%;
    display: block;
    height: auto;
}

.footer-adresss {
    padding: 28px 0 0 0;
}

.footer-adresss h2,
.footer-links h2 {
    font-size: 16px;
}

.footer-adresss ul {
    margin: 0;
    padding: 10px 0 0 0;
    width: 185px;
}

.footer-adresss ul li {
    margin: 0;
    padding: 8px 0 8px 27px;
}

.footer-adresss ul li i {
    position: absolute;
    font-size: 20px;
    left: 0;
    top: 13px;
}

.footer-adresss ul li a {
    color: #fff;
}

.footer-adresss ul li:before {
    display: none;
}

.footer-quick-link {
    max-width: 162px;
    padding: 20px 0 35px 0;
}

a.f-bttn-1 {
    display: block;
    background-color: #FEC20E;
    border: none;
    width: 100%;
    color: #0A1F34;
    text-transform: uppercase;
    font-size: 17px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-align: center;
    line-height: 45px;
    margin-bottom: 25px;
}

a.f-bttn-1:hover {
    background-color: #0A1F34;
    color: #FEC20E;
    text-decoration: none;
}

a.f-bttn-2 {
    display: block;
    background-color: #154396;
    border: none;
    width: 100%;
    color: #fff;
    text-transform: uppercase;
    font-size: 17px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    text-align: center;
    line-height: 45px;
}

a.f-bttn-2:hover {
    background-color: #0A1F34;
    text-decoration: none;
    color: #fff;
}

.f-border:after {
    content: "";
    width: 100%;
    left: -4px;
    bottom: 0;
    position: absolute;
    width: calc(100% + 8px);
    height: 1px;
    background-color: #1A59A0;
}

.footer-links {
    padding: 20px 0;
}

.footer-links ul {
    margin: 0;
    padding: 10px 0 0 0;
}

.footer-links ul li {
    margin: 0;
    padding: 11px 0;
}

.footer-links ul li a {
    color: #fff;
    display: inline-block;
    font-weight: 400;
    position: relative;
    padding-right: 20px;
}

.footer-links ul li a:hover {
    padding-right: 30px;
}

.footer-links ul li a:after {
    position: absolute;
    content: "\e90c";
    font-family: 'icomoon' !important;
    right: 0;
    font-size: 13px;
    top: 1px;
}

.footer-links ul li:before {
    display: none;
}

.copyright {
    border-top: 1px solid #1A59A0;
    padding: 65px 0 22px 0;
    position: relative;
}

.copyright ul {
    margin: 0;
    padding: 0 0 0 0;
}

.copyright ul li {
    margin: 0;
    padding: 0 8px;
    border-right: 1px solid #fff;
    display: inline-block;
    font-size: 14px;
    line-height: 1em;
}

.copyright ul li:first-child {
    padding-left: 0;
}

.copyright ul li:last-child {
    padding: 0;
    display: block;
    margin-top: 2px;
    border: none;
}

.copyright ul li:before {
    display: none;
}

.copyright ul li a {
    color: #fff;
    display: block;
    font-weight: 400;
}

.social-media {
    padding: 25px 0 15px 0;
    font-size: 25px;
}

.social-media a {
    color: #fff;
}

.livechat {
    position: absolute;
    right: 20px;
    bottom: 15px;
}

.livechat img {
    display: block;
}

.back-to-top,
.back-to-top button {
    background-color: #7D8BA1;
    position: absolute;
    top: 0;
    left: 50%;
    text-align: center;
    width: 164px;
    margin-left: -82px;
    line-height: 40px;
    border:none;
}

.back-to-top:before {
    position: absolute;
    content: '';
    top: -15px;
    left: 55px;
    border-left: 25px solid transparent;
    border-right: 25px solid transparent;
    border-bottom: 25px solid #7D8BA1;
}

.back-to-top a {
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    display: block;
}

@media(min-width: 768px) {
    .page-footer {
        margin-top: -112px;
        padding-top: 156px;
    }

    .footer-links ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .footer-no-padd {
        padding-top: 42px;
        margin-top: 0;
    }

    .footer-adresss {
        padding: 0 0 0 0;
    }

    .f-border {
        padding-bottom: 40px;
    }

    .footer-quick-link {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        margin-left: auto;
    }

    a.f-bttn-1,
    a.f-bttn-2 {
        line-height: 52px;
    }

    .footer-adresss h2,
    .footer-links h2 {
        font-size: 18px;
    }

    .footer-links {
        padding: 45px 0;
    }

    .livechat {
        position: fixed;
        right: 0;
        bottom: 0;
    }

    .copyright ul li:last-child {
        padding: 0 8px;
        display: inline-block;
        margin-top: 0;
    }
}

@media(min-width:1025px) {
/*    .footer-links ul {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
    }
*/
    .footer-links ul li {width: 33%;}

}

@media(min-width: 1200px) {
    .back-to-top {
        /*display: none;*/
    }

    .page-footer {
        margin-top: -140px;
        padding-top: 140px;
    }

    .footer-no-padd {
        padding-top: 0;
        margin-top: 0;
    }

    .footer-links {
        padding: 0;
        padding-bottom: 80px;
        padding-left: 80px;
    }

    .top-footer {
        padding-top: 80px;
    }

    .f-border {
        overflow: inherit;
    }

    .f-border:after {
        display: none;
    }

    .footer-links:before {
        content: "";
        left: -4px;
        bottom: 0;
        position: absolute;
        width: 1px;
        height: calc(100% + 80px);
        background-color: #1A59A0;
    }

    .copyright {
        padding: 25px 0;
    }

    .copyright ul {
        float: left;
    }

    .social-media {
        float: right;
        padding: 0;
    }

    .footer-logo {
        width: 162px;
    }

    .footer-adresss ul {
        width: 188px;
    }
}

.banner-cta {
    background-color: #F8F8F8;
    padding: 11px 0;
}

.cta-column {
    margin: 9px 0;
    position: relative;
    background: #162b67;
    background: -o-linear-gradient(left, #162b67 0%, #1b378b 100%);
    background: -webkit-gradient(linear, left top, right top, from(#162b67), to(#1b378b));
    background: linear-gradient(to right, #162b67 0%, #1b378b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#162b67', endColorstr='#1b378b', GradientType=1);
    position: relative;
    -webkit-box-shadow: 0 0 15px rgba(0, 0, 0, .15);
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
}

.cta-column:before {
    background: url("/source/47e5381490c586b6d67f4c5f53395076/pattern.png") right top no-repeat;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cta-column a {
    display: block;
    position: relative;
    text-decoration: none;
    font-weight: 400;
}

.cta-item {
    background-color: #fff;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    color: #0A1F34;
    text-decoration: none;
    padding: 20px;
}

.cta-column:hover .cta-item {
    background-color: transparent;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    color: #fff;
}

.cta-item h2 {
    font-size: 20px;
    position: relative;
    padding-bottom: 23px;
    line-height: 1em;
    text-transform: none;
}

.mob-btn {
    position: absolute;
    right: 20px;
    top: 50%;
    color: #1759A0;
    font-size: 24px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.cta-column:hover .mob-btn {
    color: #fff;
}

.cta-item h2:after {
    position: absolute;
    content: "\e908";
    bottom: 0;
    left: 135px;
    font-family: "icomoon";
    font-weight: normal;
    font-size: 11px;
    color: #F9BC16;
}

.cta-item h2:before {
    position: absolute;
    content: "";
    bottom: 10px;
    left: -20px;
    width: 155px;
    background-color: #F9BC16;
    height: 2px;
}

.cta-column:hover .cta-item h2:after {
    color: #fff
}

.cta-column:hover .cta-item h2:before {
    background-color: #fff
}

.cta-item span {
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    color: #154396;
}

.cta-item span i {
    padding-left: 5px;
}

.cta-column:hover .cta-item span {
    color: #FEC20E;
}

.in-cta-button {
    padding: 20px 0;
}

@media(min-width: 768px) {
    .cta-button .row {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .cta-column {
        height: 100%;
    }

    .cta-column a {
        height: 100%;
    }

    .cta-item {
        -webkit-box-pack: start;
        -ms-flex-pack: start;
        justify-content: flex-start;
        height: 100%;
    }

    .cta-item h2:before {
        bottom: 10px;
    }

    .banner-cta {
        background-color: transparent;
        padding: 0 0;
        margin-top: -22px;
    }

    .in-cta-button {
        padding: 40px 0;
    }
    .in-cta-button .col-sm-4:nth-child(n+4){margin-top:30px;}
}

@media(min-width: 1200px) {
    .cta-item {
        padding: 30px 50px;
    }

    .cta-item h2 {
        font-size: 30px;
        padding-bottom: 30px;
    }

    .cta-item h2:before {
        bottom: 10px;
        left: -50px;
    }

    .cta-item h2:after {
        left: 105px;
        bottom: -5px;
    }

    .cta-item p {
        padding: 10px 0;
    }

    .banner-cta {
        margin-top: -35px;
    }

    .in-cta-button {
        padding: 80px 0;
    }
}

.grey-bg-right-img {
    padding: 45px 0 40px 0;
    overflow: hidden;
}

.stylize-img {
    position: relative;
    height: 215px;
    padding-left: 15px;
}

.stylize-img:before {
    content: '';
    position: absolute;
    top: -15px;
    left: -3px;
    width: calc(100% - 15px);
    height: 100%;
    border: 3px solid rgba(32, 76, 149, .16);
}

.stylize-img:after {
    content: '';
    position: absolute;
    bottom: 45px;
    right: -47px;
    width: 95px;
    height: 36px;
    background: url("/source/31e60dc372b0fc77c2ca5a570a5ae850/border-after.png") 0 0 no-repeat;
    background-size: 100%;
}

.stylize-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    font-family: 'object-fit: cover;';
    display: block;
}

.grey-content {
    color: #0A1F34;
    padding-top: 25px;
}

.grey-content h2 {
    font-size: 32px;
    padding-bottom: 10px;
}

.grey-content h3 {
    text-transform: uppercase;
}

.grey-bg-right-img .container {
    position: relative;
}

@media(min-width: 768px) {
    .stylize-img {
        position: absolute;
        right: 16px;
        height: 380px;
        width: 336px;
        max-height:100%;
    }

    .grey-content {
        width: calc(100% - 128px);
        background-color: #EFEFEF;
        padding: 50px 235px 50px 32px;
    }

    .grey-content h2 {
        font-size: 40px;
    }

    .stylize-img:after {
        width: 118px;
    }
}

@media(min-width: 1200px) {
    .grey-bg-right-img {
        padding: 80px 0 115px 0;
    }

    .stylize-img {
        position: absolute;
        height: 530px;
        top: 56px;
        width: 460px;
    }

    .stylize-img::before {
        top: -30px;
        left: -18px;
        width: calc(100% - 30px);
    }

    .grey-content {
        width: calc(100% - 232px);
        background-color: #EFEFEF;
        padding: 90px 380px 80px 110px;
    }

    .grey-content h2 {
        font-size: 40px;
    }

    .grey-content h2 {
        font-size: 50px;
        padding-bottom: 15px;
    }

    .grey-content .btn {
        margin-top: 42px;
    }

    .stylize-img:after {
        width: 166px;
        bottom: 99px;
    }
}

.grey-map-bg {
    background-color: #EFEFEF;
    padding: 42px 0 22px 0;
    position: relative;
}

.grey-map-bg .container {
    z-index: 2;
    position: relative;
}

.bkg-image {
    position: absolute;
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.grey-map-bg h2 {
    color: #0A1F34;
    font-size: 32px;
    text-transform: uppercase;
    padding-bottom: 15px;
}

.grey-map-bg a {
    display: block;
}

.grey-map-bg a:hover {
    text-decoration: none
}

.map-count {
    position: relative;
    padding: 30px 0;
}

.map-count h3 {
    font-size: 45px;
    color: #FF9300;
    font-weight: 600;
    line-height: 1em;
    padding-bottom: 10px;
}

.grey-map-bg a:hover h3 {
    color: #154396;
}

.map-count p {
    font-size: 16px;
    color: #0A1F34;
    font-weight: 400;
    font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    padding: 0;
}

.map-count:before {
    position: absolute;
    content: '';
    left: 0;
    top: 0;
    background: url("/source/55bbce5f348342a0912a12f96f485856/number-before.png") 0 0 no-repeat;
    width: 52px;
    height: 52px;
    display: none;
}

.map-count:after {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    background: url("/source/5a021ac1b8babdf50473fc3653fcd73c/number-after.png") right bottom no-repeat;
    width: 52px;
    height: 52px;
    display: none;
}

@media(min-width: 768px) {
    .grey-map-bg {
        padding: 50px 0 53px 0;
    }

    .grey-map-bg h2 {
        padding-bottom: 32px;
        font-size: 40px;
    }

    .map-count h3 {
        font-size: 60px;
        padding-bottom: 20px;
    }

    .map-count {
        padding: 0;
    }

    .map-count p {
        font-size: 18px;
    }
}

@media(min-width: 1200px) {
    .grey-map-bg {
        padding: 70px 0 144px 0;
    }

    .grey-map-bg h2 {
        padding-bottom: 30px;
        font-size: 50px;
    }

    .map-count h3 {
        font-size: 80px;
        padding-bottom: 20px;
    }

    .map-count {
        padding: 35px 0;
    }

    .map-count p {
        font-size: 20px;
    }

    .grey-map-bg a:hover .map-count:before,
    .grey-map-bg a:hover .map-count:after {
        display: block;
    }
}

.white-section {
    padding: 35px 0;
    position: relative;
}

.white-section img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    font-family: 'object-fit: cover;';
}

.white-text {
    padding: 15px 0 0 0;
}

.white-text h2 {
    padding-bottom: 15px;
    font-size: 32px;
}

@media(min-width: 768px) {
    .white-section {
        padding: 45px 0;
    }

    .white-img {
        height: 433px;
    }

    .white-text h2 {
        font-size: 40px;
    }
}

@media(min-width: 1200px) {
    .white-section {
        padding: 100px 0;
    }

    .white-img {
        height: 401px;
    }

    .white-text {
        padding: 0 0 0 50px;
    }

    .white-text .btn {
        margin-top: 15px;
    }

    .white-text h2 {
        font-size: 50px;
        padding-bottom: 25px;
    }
}

.grey-box-section {
    background-color: #f8f8f8;
    padding: 26px 0
}

.white-box {
    margin: 14px 0;
    background-color: #fff;
    position: relative;
    padding: 20px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .12);
    box-shadow: 0 0 10px rgba(0, 0, 0, .12);
}

.white-box h2 {
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 15px;
    position: relative;
}

.white-box p {
    font-size: 14px;
}

.white-box h2:before {
    position: absolute;
    content: "";
    left: -30px;
    top: 50%;
    margin-top: -1px;
    width: 25px;
    background-color: #154396;
    height: 2px;
}

.white-box h2.bord-height:before {
    margin-top: 0px;
}

.white-box h2:after {
    position: absolute;
    content: "";
    left: -35px;
    font-family: "icomoon";
    font-weight: normal;
    border: 2px solid #154396;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    top: 50%;
    margin-top: -4px;
    background-color: #efefef;
}

.white-box:hover h2:before {
    background-color: #FF9300;
}

.white-box:hover h2:after {
    border-color: #FF9300;
}

.white-box:hover .btn-quaternary::before {
    background-color: #FF9300;
}

.white-box:hover .btn-quaternary {
    padding-right: 122px;
}

.white-box:hover .btn-quaternary {
    color: #FF9300;
}

.white-box:hover .btn-quaternary::after {
    border-color: #FF9300;
}

@media(min-width: 768px) {
    .grey-box-section {
        padding: 48px 0;
    }

    .white-box {
        margin: 0;
        margin-left: 30px;
        padding: 30px;
    }

    .white-box h2::after {
        left: -55px;
    }

    .white-box h2::before {
        left: -50px;
        width: 40px;
    }

    .grey-box-section .col-sm-6:nth-child(even) .white-box {
        margin-top: 28px;
    }

    .white-box p {
        font-size: 16px;
    }
}

@media(min-width: 1200px) {
    .grey-box-section {
        padding: 94px 0;
    }

    .white-box {
        margin: 0;
        margin-left: 30px;
        padding: 45px;
    }

    .white-box h2::after {
        left: -75px;
    }

    .white-box h2::before {
        left: -70px;
        width: 60px;
    }

    .grey-box-section .col-sm-6:nth-child(even) .white-box {
        margin-top: 67px;
    }

    .white-box h2 {
        font-size: 30px;
        margin-bottom: 20px;
    }

    .white-box p {
        font-size: 17px;
    }
}

.flying-img {
    width: 130px;
    position: absolute;
    right: 0;
    bottom: 45px;
}

.flying-img img {
    width: 100%;
    display: block;
}

@media(min-width: 768px) {
    .flying-img {
        width: 278px;
        bottom: 45px;
    }
}

@media(min-width: 768px) {
    .flying-img {
        width: 750px;
        max-width: 50%;
    }
}

@media(min-width: 1200px) {
    .flying-img {
        bottom: auto;
        top: 80px;
    }
}

.image-bttn-section {
    background-color: #F8F8F8;
    padding: 30px 0;
}

.image-bttn-section h2 {
    font-size: 32px;
    padding-bottom: 15px;
}

.image-bttn-main {
    padding-top: 15px;
}

.image-bttn-main a {
    display: block;
    font-weight: 400;
}

.image-bttn-item {
    height: 95px;
    position: relative;
    overflow: hidden;
}

.inner-big-pict .image-bttn-item {
    height: 135px;
}

.image-bttn-item img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    font-family: 'object-fit: cover;';
}

.bttn-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background-color: rgba(15, 28, 46, 0.7);
    color: #fff;
    top: 0;
    padding: 12px 15px;
}

.inner-big-pict .bttn-overlay {
    height: auto;
    top: auto;
    bottom: 0;
    /*padding: 15px;*/
}

.bttn-overlay h3 {
    font-size: 15px;
    line-height: 1.33em;
    text-transform: uppercase;
}

.inner-big-pict .bttn-overlay h3 {
    font-size: 18px;
    padding: 0;
}

.bttn-icon {
    position: absolute;
    right: 15px;
    bottom: 12px;
    font-size: 20px;
}

.image-bttn-section .row {
    margin: 0 -7px;
}

.image-bttn-section .col-xxs-6 {
    padding: 0 7px;
}

.blue-border {
    border: 1px solid #154396;
}

.blue-border .bttn-icon {
    color: #154396 !important;
}

.image-btn-more {
    font-size: 15px;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    padding: 12px 15px;
    color: #154396;
    font-family: 'Oswald', sans-serif;
    line-height: 1.33em;
}

@media(min-width: 768px) {
    .image-bttn-section {
        padding: 50px 0;
    }

    .image-bttn-section h2 {
        font-size: 40px;
    }

    .image-bttn-main {
        padding-top: 32px;
    }

    .image-bttn-item {
        height: 200px;
    }

    .bttn-overlay,
    .image-btn-more {
        top: auto;
        height: 100%;
        bottom: 0;
        padding: 0px;
        background: transparent;
    }



    .image-btn-more{
        padding: 25px;
        height: auto;
    }

    .bttn-headline {
        background: rgba(15, 28, 46, 0.7);
        padding: 25px;
        width: 100%;
        bottom: 0;
        position: absolute;
        padding-right: 44px;
    }

    .image-btn-more {
        font-size: 20px;
        line-height: 1.1em;
        padding-top: 5px;
    }

    .bttn-learn {
        width: 150px;
        position: relative;
    }

    .bttn-learn span {
        display: inline-block;
        background-color: #fff;
        padding-right: 5px;
    }

    .bttn-learn:before {
        position: absolute;
        content: "";
        right: 0px;
        bottom: 4px;
        margin-top: -0;
        width: 38px;
        background-color: #154396;
        height: 2px;
    }

    .bttn-learn:after {
        position: absolute;
        content: "\e908";
        right: -5px;
        font-family: "icomoon";
        font-weight: normal;
        font-size: 11px;
        color: #154396;
        bottom: -5px;
    }

    .bttn-overlay h3 {
        font-size: 20px;
        padding-bottom: 0;
    }

    .bttn-icon {
        bottom: 23px;
        right: 25px;
    }

    .image-bttn-section .row {
        margin: 0 -16px;
    }

    .image-bttn-section .col-xxs-6 {
        padding: 0 16px;
    }

    .inner-big-pict .image-bttn-item {
        height: 186px;
    }

    .inner-big-pict .bttn-overlay h3 {
        font-size: 20px
    }

    .inner-big-pict .bttn-icon {
        bottom: 16px;
    }
}

@media(min-width: 1025px) {
    .image-bttn-section {
        padding: 65px 0 75px 0;
    }

    .bttn-content {
        padding: 25px;
        background: -o-linear-gradient(left, rgba(22, 43, 103, 0.84) 0%, rgba(27, 55, 139, 0.84) 100%);
        background: -webkit-gradient(linear, left top, right top, from(rgba(22, 43, 103, 0.84)), to(rgba(27, 55, 139, 0.84)));
        background: linear-gradient(to right, rgba(22, 43, 103, 0.84) 0%, rgba(27, 55, 139, 0.84) 100%);
        bottom: -312px;
        position: relative;
        opacity: 0;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
    }

    .image-bttn-item:hover .bttn-headline{
        opacity: 0;
    }

    .image-bttn-item:hover .bttn-content{
        top: 0;
        opacity: 1;
        height: 100%;
    }


    .bttn-overlay p {
        padding-top: 20px;
        font-size: 15px;
    }

    .image-bttn-item {
        height: 312px;
    }

    /* .image-bttn-item:hover .bttn-overlay {
        height: 100%;
        -webkit-transition: all .3s;
        -o-transition: all .3s;
        transition: all .3s;
        background: -o-linear-gradient(left, rgba(22, 43, 103, 0.84) 0%, rgba(27, 55, 139, 0.84) 100%);
        background: -webkit-gradient(linear, left top, right top, from(rgba(22, 43, 103, 0.84)), to(rgba(27, 55, 139, 0.84)));
        background: linear-gradient(to right, rgba(22, 43, 103, 0.84) 0%, rgba(27, 55, 139, 0.84) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#d6162b67', endColorstr='#d61b378b', GradientType=1);
    } */

    .image-bttn-item:hover .bttn-overlay p {
        padding: 10px 0;
    }

    .btn-learn {
        font-family: 'Oswald', sans-serif;
        font-size: 15px;
        font-weight: 400;
        color: #FEC20E;
        text-decoration: none;
        padding: 0 0;
        text-transform: uppercase;
        line-height: 26px;
    }

    /* .image-bttn-item:hover .btn-learn {
        opacity: 1;
        -webkit-transition: all .5s;
        -o-transition: all .5s;
        transition: all .5s;
    } */

    .image-bttn-item:hover .bttn-icon {
        color: #FEC20E;
    }

    .image-bttn-section h2 {
        font-size: 50px;
    }

    .title {
        max-width: 808px;
        margin: 0 auto;
    }

    .bttn-learn::after {
        bottom: -6px;
    }

    .inner-big-pict .bttn-overlay p {
        display: none
    }

    .inner-big-pict .image-bttn-item {
        height: 350px;
    }

    .image-bttn-item:hover .bttn-overlay p {
        display: block
    }

    .btn-arrow {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        align-items: center;
        -webkit-box-pack: justify;
        -ms-flex-pack: justify;
        justify-content: space-between;
    }

    .image-bttn-item:hover .bttn-icon {
        bottom: auto;
        position: relative;
        right: 0;
    }
}

.full-image-section {
    position: relative;
    overflow: hidden;
}

.full-image {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.full-image img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    font-family: 'object-fit: cover;';
}

.full-overlay {
    position: relative;
    background-color: rgba(10, 31, 51, 0.64);
    color: #fff;
    padding: 40px 0;
}

.full-overlay .btn-quaternary {
    color: #FF9300;
}

.full-overlay .btn-quaternary:after {
    border: 2px solid #FF9300;
    background-color: transparent;
}

.full-overlay .btn-quaternary:hover {
    padding-right: 50px;
    color: #fff;
}

.full-overlay .btn-quaternary span {
    background-color: transparent;
}

.full-overlay .btn-quaternary::before {
    left: auto;
    right: 11px;
    margin-top: -1px;
    width: 37px;
    background-color: #FF9300;
}

.full-overlay .btn-quaternary:hover::before {
    background-color: #fff;
}

.full-overlay .btn-quaternary:hover::after {
    border-color: #fff;
}

.full-overlay .subheading {
    color: #fff;
}

.full-overlay h2 {
    font-size: 32px;
    padding-bottom: 20px;
}

@media(min-width: 768px) {
    .full-overlay {
        padding: 45px 0 72px 0;
        overflow: hidden;
    }

    .full-text {
        position: relative;
        width: 680px;
    }

    .full-overlay h2 {
        font-size: 40px;
    }

    .full-image-section .bkg-img {
        position: absolute;
        width: 365px;
        height: 365px;
        bottom: -40px;
        right: 0;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

@media(min-width: 1200px) {
    .full-overlay {
        padding: 140px 0 170px 0;
    }

    .full-text {
        width: 852px;
    }

    .full-overlay h2 {
        font-size: 50px;
    }

    .full-image-section .bkg-img {
        width: 736px;
        height: 736px;
        bottom: -0px;
    }
}

.awards-section {
    padding: 35px 0;
}

.awards-section h2 {
    font-size: 20px;
    padding-bottom: 15px;
    font-weight: 600;
}

.awards-section .item img {
    margin: 0 auto;
    cursor: pointer;
}

@media(min-width: 768px) {
    .awards-section {
        padding: 52px 0 52px 0;
    }

    .awards-section h2 {
        padding-bottom: 30px;
    }
}

@media(min-width: 1200px) {
    .awards-section {
        padding: 42px 0 45px 0;
    }

    .awards-section .item img {
        -webkit-filter: grayscale(100%);
        filter: grayscale(100%);
        opacity: 0.5;
    }

    .awards-section .item:hover img {
        -webkit-filter: grayscale(0);
        filter: grayscale(0);
        opacity: 1;
    }

    .award-slide {
        max-width: 1100px;
        margin: 0 auto;
    }
}

.home-contact {
    background: url("/source/9227a91b6078109cff32e49b92f889b7/contact-bg-mob.png") 0 0 no-repeat #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.home-contact h2 {
    text-align: center;
    font-size: 24px;
    text-transform: none;
}

.home-contact h2 span {
    font-size: 16px;
    color: #154396;
    padding-left: 37px;
    position: relative;
}

.home-contact p {
    font-size: 15px;
    text-align: center;
    max-width: 846px;
    margin: 0 auto;
    padding-top: 25px;
}

.contact-inner {
    max-width: 846px;
    margin: 0 auto;
}

.home-contact h2 span:before {
    content: "|";
    color: #C8D5E0;
    position: absolute;
    top: 0;
    left: 18px;
}

@media(min-width: 768px) {
    .home-contact {
        background: none;
        -webkit-box-shadow: none;
        box-shadow: none;
        padding: 0 0;
        position: relative;
    }
    .home-contact [class*="col-"]{padding:0;}

    .home-contact.innerpage-newsletter { padding: 50px 0; }

    .home-contact-bg {
        background: url("/source/e1fa7a4af59f456116d0343c163d002d/contact-bg.png") right 0 no-repeat #fff;
        padding: 40px 30px;
        -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .1);
        box-shadow: 0 0 20px rgba(0, 0, 0, .1);
    }

    .inner-contact-bg {
        background: url("/source/35dfe9c79160d0ac94284db527373d0c/inner-contact-bg.png") right 0 no-repeat #fff;
    }

    .home-contact h2 {
        text-transform: uppercase;
        font-size: 32px;
        padding-bottom: 10px;
    }

    .inner-contact-padding {
        padding-top: 45px;
    }

    .contact-inner {
        max-width: 628px;
    }
}

@media(min-width: 1025px) {
    .contact-inner {
        max-width: 846px;
    }
}

@media(min-width: 1200px) {
    .home-contact-bg {
        padding: 40px 30px 55px 30px;
    }

    .inner-contact-padding {
        padding-top: 86px;
    }
}

.testimonial-list {
    display:flex;
flex-wrap:wrap
}

.testimonial-section {
    padding-top: 40px;
}

.testimonial-section h2 {
    padding: 0 0 25px 20px;
    font-size: 32px;
    position: relative;
    z-index: 9;
}

.testimonial-section h2 .btn-tertiary {
    color: #FF9300
}

.desc.shorten_expand {
    height: auto;
}

.shorten-detail {
    display: none;
}

.shorten_expand .shorten-ellipses {
    display: none;
}

.shorten_expand .shorten-detail {
    display: inline;
}

.testimonial-width {
    width: 255px;
    background-color: #EFEFEF;
    padding: 24px 16px 30px 40px;
    position: relative;
}

.testimonial-section h2::before {
    position: absolute;
    content: "";
    top: 8px;
    left: 0;
    width: 3px;
    background-color: #C5D0E3;
    height: 280px;
}

.testimonial-section h2::after {
    position: absolute;
    content: "";
    top: 270px;
    left: -9px;
    font-weight: normal;
    border: 3px solid #C5D0E3;
    border-radius: 50%;
    width: 14px;
    height: 14px;
    background: #efefef;
}

.testimonial-mob-slider .item {
    padding-right: 18px;
}

.testimonial-width p {
    font-size: 15px;
    line-height: 24px;
}

.testimonial-width h3 {
    color: #7D8BA1;
    font-size: 14px;
    text-transform: uppercase;
}

.testimonial-width h3 span {
    font-weight: 700;
}

.testimonial-width .btn {
    margin-top: 20px;
}

.testimonial-mob-slider .slick-dots li::after {
    display: none;
}

.testimonial-mob-slider .slick-dots {
    text-align: left;
    padding-left: 20px;
}

a.dot {
    color: #7D8BA1;
    border-bottom: 2px solid transparent;
    font-family: 'Oswald', sans-serif;
    font-size: 18px;
    font-weight: 500;
}

.slick-active a.dot {
    color: #FF9300;
    border-bottom: 2px solid #FF9300;
}

@media(min-width: 768px) {
    .testimonial-slider .testimonial-width {
        width: 100%;
    }

    .testimonial-width p {
        font-size: 16px;
    }

    .testimonial-width p br {
        display: inline-block;
    }

    .testimonial-width h3 {
        font-size: 20px;
    }

    .testimonial-section h2 {
        font-size: 40px;
        padding-left: 0;
        padding-bottom: 30px;
        position: relative;
    }

    .testimonial-section h2 .btn {
        display: none;
    }

    .testimonial-title {
        padding-top: 25px;
    }

    .testimonial-title .btn {
        margin-top: 30px;
    }

    .testimonial-section h2::before {
        top: auto;
        bottom: 8px;
        left: -20px;
        height: 3px;
        width: 420px;
    }

    .testimonial-section h2::after {
        top: auto;
        left: 400px;
        -webkit-transform: rotate(0);
        -ms-transform: rotate(0);
        transform: rotate(0);
        bottom: -0;
    }

    .testimonial-title .btn::before {
        position: absolute;
        content: "";
        background-color: #C5D0E3;
        top: -20px;
        left: -20px;
        height: 3px;
        width: 360px;
    }

    .testimonial-title .btn::after {
        position: absolute;
        content: "";
        font-weight: normal;
        font-size: 15px;
        border: 3px solid #C5D0E3;
        background: #C5D0E3;
        top: auto;
        left: 340px;
        top: -27px;
        width: 14px;
        height: 14px;
        border-radius: 50%;
    }

    .testimonial-slider .slick-dots li::after {
        display: none;
    }

    .testimonial-slider .slick-dots {
        text-align: right;
        padding-left: 20px;
    }
}

@media(min-width: 1200px) {

    .shorten-toggle,
    .shorten-ellipses {
        display: none;
    }

    .shorten-detail {
        display: inline;
    }

    .testimonial-section {
        padding-top: 100px;
    }

    .testimonial-width {
        padding: 50px 60px;
    }

    .testimonial-slider {
        padding-right: 45px;
    }

    .testimonial-slider .slick-dots {
        position: absolute;
        right: 0;
        bottom: 0;
    }

    .testimonial-slider .slick-dots li {
        display: block;
        padding: 5px 0;
    }

    .testimonial-width h3 {
        padding-top: 30px;
    }

    .testimonial-section h2::before {
        left: -150%;
        width: 260%;
    }

    .testimonial-section h2::after {
        left: calc(110% - 5px);
    }

    .testimonial-title .btn::before {
        left: -150%;
        width: 320%;
    }

    .testimonial-title .btn::after {
        left: calc(170% - 5px);
    }

    .testimonial-title {
        padding-top: 60px;
    }

    .scroll {
        max-height: 250px;
    }

    .testimonial-width p {
        font-size: 22px;
        line-height: 35px;
    }

    .testimonial-section h2 {
        font-size: 50px;
        padding-bottom: 60px;
    }

    .testimonial-section h2 i {
        color: #FEC20E;
        font-size: 30px;
        vertical-align: middle;
        padding-bottom: 26px;
    }
}

@media(min-width: 1200px) {
    .mCustomScrollbar {
        -ms-touch-action: pinch-zoom;
        touch-action: pinch-zoom;
    }

    .mCustomScrollbar.mCS_no_scrollbar,
    .mCustomScrollbar.mCS_touch_action {
        -ms-touch-action: auto;
        touch-action: auto;
    }

    .mCustomScrollBox {
        position: relative;
        overflow: hidden;
        height: 100%;
        max-width: 100%;
        outline: none;
        direction: ltr;
    }

    .mCSB_container {
        overflow: hidden;
        width: auto;
        height: auto;
    }

    .mCSB_inside>.mCSB_container {
        margin-right: 50px;
    }

    .mCSB_container.mCS_no_scrollbar_y.mCS_y_hidden {
        margin-right: 0;
    }

    .mCSB_scrollTools {
        position: absolute;
        width: 18px;
        height: auto;
        left: auto;
        top: 0;
        right: 0;
        bottom: 0;
    }

    .mCSB_outside+.mCSB_scrollTools {
        right: -26px;
    }

    .mCSB_scrollTools .mCSB_draggerContainer {
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        right: 0;
        height: auto;
    }

    .mCSB_scrollTools a+.mCSB_draggerContainer {
        margin: 20px 0;
    }

    .mCSB_scrollTools .mCSB_draggerRail {
        width: 18px;
        height: 100%;
        margin: 0 auto;
        border-radius: 16px;
    }

    .mCSB_scrollTools .mCSB_dragger {
        cursor: pointer;
        width: 100%;
        height: 30px;
        z-index: 1;
    }

    .mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        position: relative;
        width: 18px;
        height: 100%;
        margin: 0 auto;
        border-radius: 16px;
        text-align: center;
    }

    .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded .mCSB_dragger_bar,
    .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_dragger .mCSB_dragger_bar {
        width: 12px;
    }

    .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_dragger.mCSB_dragger_onDrag_expanded+.mCSB_draggerRail,
    .mCSB_scrollTools_vertical.mCSB_scrollTools_onDrag_expand .mCSB_draggerContainer:hover .mCSB_draggerRail {
        width: 8px;
    }

    .mCSB_scrollTools .mCSB_buttonUp,
    .mCSB_scrollTools .mCSB_buttonDown {
        display: block;
        position: absolute;
        height: 20px;
        width: 100%;
        overflow: hidden;
        margin: 0 auto;
        cursor: pointer;
    }

    .mCSB_scrollTools .mCSB_buttonDown {
        bottom: 0;
    }

    .mCS-dark.mCSB_scrollTools .mCSB_draggerRail {
        background-color: #DCE1E3;
    }

    .mCS-dark.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
        background-color: #8394B2
    }

    .mCS-dark.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
        background-color: rgba(0, 0, 0, 0.85);
    }
}

.masthead-inner {
    margin: 0;
    padding: 0;
    position: relative;
}

.masthead-inner-img {
    height: 120px;
}

.masthead-inner-img img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    font-family: 'object-fit: cover;';
}

.masthead-inner-blue-overlay {
    color: #fff;
    background: #162b67;
    background: -o-linear-gradient(left, #162b67 0%, #1b378b 100%);
    background: -webkit-gradient(linear, left top, right top, from(#162b67), to(#1b378b));
    background: linear-gradient(to right, #162b67 0%, #1b378b 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#162b67', endColorstr='#1b378b', GradientType=1);
    padding: 15px 0;
}

.masthead-title {
    background: -o-linear-gradient(left, rgba(22, 43, 103) 0%, rgba(27, 55, 139) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(22, 43, 103)), to(rgba(27, 55, 139)));
    background: linear-gradient(to right, rgba(22, 43, 103) 0%, rgba(27, 55, 139) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b5162b67', endColorstr='#b51b378b', GradientType=1);
    padding: 25px 0 25px 0;
    position: relative;
    color: #fff
}

.masthead-title:before {
    content: '';
    position: absolute;
    width: 296px;
    height: 100%;
    top: 0;
    right: 0;
    background: url("/source/7d9157137d3755e7edcc56b1bfd1c968/banner_white-01.png") right 0 no-repeat;
    background-size: cover;
}

.masthead-title .container {
    position: relative;
}

.masthead__flex {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
}

.masthead__title-grp {
    margin-bottom: 15px;
}

@media (min-width: 768px) {
    .masthead-inner-img {
        height: 253px;
    }

    .masthead-inner-blue-overlay {
        background: -o-linear-gradient(left, rgba(22, 43, 103, 0.71) 0%, rgba(27, 55, 139, 0.71) 100%);
        background: -webkit-gradient(linear, left top, right top, from(rgba(22, 43, 103, 0.71)), to(rgba(27, 55, 139, 0.71)));
        background: linear-gradient(to right, rgba(22, 43, 103, 0.71) 0%, rgba(27, 55, 139, 0.71) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b5162b67', endColorstr='#b51b378b', GradientType=1);
        padding: 15px 0;
        position: absolute;
        bottom: 0;
        left: 0;
        width: 100%;
    }

    .masthead-title {
        padding: 40px 0;
    }

    .masthead-title:before {
        width: 100%;
    }

    .masthead__flex {
        align-items: center;
        flex-direction: row;
        justify-content: space-between;
    }

    .masthead__flex .btn {
        white-space: nowrap;
    }

    .masthead__title-grp {
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {

    .hide+#page-body .masthead-inner {
        margin-top: 0;
    }

    .masthead-inner-img {
        height: 545px;
    }

    .masthead-inner-blue-overlay {
        padding: 55px 0;
    }

    .masthead-title {
        padding: 55px 0;
    }
}

.fullimage-whitebox {
    position: relative;
    padding: 25px 0;
    overflow: hidden;
}

.full-pict-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    display: none;
}

.full-pict-bg img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    -o-object-fit: cover;
    font-family: 'object-fit: cover;';
}

.full-pict-bg:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(10, 31, 52, 0.28);
}

.white-opacitybox {
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .17);
    box-shadow: 0 0 20px rgba(0, 0, 0, .17);
    padding: 20px;
}

@media (min-width: 768px) {
    .fullimage-whitebox {
        padding: 59px 0;
    }

    .full-pict-bg {
        display: block;
    }

    .white-opacitybox {
        margin: 0 30px;
        padding: 35px 30px;
    }

    .white-opacitybox h2 {
        text-align: center;
    }
}

@media (min-width: 1200px) {
    .fullimage-whitebox {
        padding: 81px 0;
    }

    .white-opacitybox {
        margin: 0 0;
        padding: 50px 125px;
    }
}

.spotlight-cta {
    background: -o-linear-gradient(left, rgba(22, 43, 103) 0%, rgba(27, 55, 139) 100%);
    background: -webkit-gradient(linear, left top, right top, from(rgba(22, 43, 103)), to(rgba(27, 55, 139)));
    background: linear-gradient(to right, rgba(22, 43, 103) 0%, rgba(27, 55, 139) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b5162b67', endColorstr='#b51b378b', GradientType=1);
    padding: 15px 0 25px 0;
    position: relative;
    color: #fff
}

.spotlight-cta .container {
    position: relative;
    z-index: 2;
}

.spotlight-cta .bkg-img {
    position: absolute;
    width: 296px;
    height: 100%;
    top: 0;
    right: 0;
    -o-object-fit: cover;
    object-fit: cover;
}

@media (min-width: 768px) {
    .cta-bttn-right {
        text-align: right;
        /*padding-top: 40px;*/
    }

    .spotlight-cta {
        padding: 40px 0;
    }

    .spotlight-cta h2 {
        padding-bottom: 0;
    }

    .spotlight-cta .bkg-img {
        width: 100%;
    }
    .spotlight-cta .row {display:flex; align-items:center;}

}

@media (min-width: 1200px) {
    .cta-bttn-right {
        text-align: right;
        padding-top: 0px;
    }

    .spotlight-cta {
        padding: 100px 0;
    }
}

.grey-bg {
    padding: 25px 0;
    background-color: #f8f8f8;
}

@media (min-width: 768px) {
    .grey-bg {
        padding: 35px 0;
    }
}

@media (min-width: 1200px) {
    .grey-bg {
        padding: 85px 0;
    }
}

.grey-bg-inner-image {
    background-color: #EFEFEF;
    padding: 30px 0;
    overflow: initial;
    margin-bottom: 90px;
}

.grey-bg-inner-image .stylize-img {
    padding: 0;
}

.grey-bg-inner-image .stylize-img:before,
.grey-bg-inner-image .stylize-img:after {
    display: none;
}

@media (min-width: 768px) {
    .grey-bg-inner-image {
        background-color: transparent;
        padding: 50px 0 0 0;
    }

    .grey-bg-inner-image .stylize-img {
        margin-top: -18px;
    }
}

@media (min-width: 768px) {
    .grey-bg-inner-image {
        padding: 90px 0 0 0;
    }

    .grey-bg-inner-image .stylize-img {
        margin-top: 0px;
    }
}

.testimonial-wrapper ul {
    padding: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.item {
    height: 100%;
}

.testimonial-wrapper ul h2 {
    width: 100%;
}

.inner-testimonial-section {
    padding: 25px 0 30px 0;
}

.inner-testimonial-section .container {
    padding: 0;
}

.testimonial-column-slider .item {
    padding: 20px;
}

.item-white-box {
    background-color: #fff;
    -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, .17);
    box-shadow: 0 0 20px rgba(0, 0, 0, .17);
    padding: 20px;
    position: relative;
    height: 100%;
    border-bottom: 5px solid #154396;
}

.item-white-box p {
    font-size: 15px;
}

.item-white-box h3 {
    color: #7D8BA1;
    font-size: 14px;
    text-transform: uppercase;
}

.item-white-box:before {
    content: '\e917';
    position: absolute;
    top: 6px;
    left: -10px;
    font-family: 'icomoon' !important;
    color: #FEC20E;
    font-size: 27px;
    -ms-transform: scaleX(-1);
    transform: scaleX(-1);
    -webkit-transform: scaleX(-1)
}

@media (min-width: 768px) {
    .inner-testimonial-section {
        padding: 40px 0;
    }

    .item-white-box p {
        font-size: 16px;
    }

    .item-white-box {
        padding: 35px;
    }

    .item-white-box h3 {
        font-size: 17px;
    }
}

@media (min-width: 1200px) {
    .inner-testimonial-section {
        padding: 70px 0;
    }

    .item-white-box p {
        font-size: 16px;
    }

    .item-white-box h3 {
        font-size: 17px;
    }
}

.inner-big-pict {
    background-color: #fff;
}

.bttn-left {
    margin: 0;
}

.radio-style {
    display: block;
    position: relative;
    padding-left: 25px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 15px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.radio-style input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.checkmark {
    position: absolute;
    top: 5px;
    left: 0;
    height: 15px;
    width: 15px;
    background-color: #fff;
    border: 1px solid #707070;
    border-radius: 50%;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.radio-style input:checked~.checkmark:after {
    display: block;
}

.radio-style .checkmark:after {
    left: 2px;
    top: 2px;
    width: 9px;
    height: 9px;
    background-color: #154396;
    border-radius: 50%;
}

.radio-list {
    margin: 0 0 0 0;
    padding: 0;
}

.radio-list li {
    padding: 0;
}

.radio-list li:before {
    display: none;
}

.radio-list li label {
    position: relative;
    font-weight: 400;
    font-family: 'Roboto', sans-serif;
    left: 0;
    top: auto;
}

label.no-pos {
    position: relative;
    left: 0;
    padding: 0;
}

@media (min-width: 768px) {
    .radio-list li {
        float: left;
        padding-right: 30px;
    }

    .radio-list li:last-child {
        padding: 0;
    }
}

.sidebar {
    padding: 20px;
    background: #001246;
    background: -o-linear-gradient(top, #001246 0%, #162b68 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(#001246), to(#162b68));
    background: linear-gradient(to bottom, #001246 0%, #162b68 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#001246', endColorstr='#162b68', GradientType=0);
    color: #fff;
    position: relative;
    margin-top: 25px
}

.sidebar h3 {
    font-size: 24px;
}

.sidebar ul {
    margin: 0;
    padding: 0;
}

.sidebar ul li {
    margin: 0;
    padding: 10px 0;
    font-size: 20px;
}

.sidebar ul li:before {
    display: none;
}

.sidebar ul li a {
    font-weight: 400;
}

.sidebar ul li i {
    font-size: 15px;
    vertical-align: middle;
}

.sidebar:before {
    position: absolute;
    content: '';
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: url("/source/81378696945e2af1482e73c6f22ee076/sidebar-bg.png") bottom left no-repeat;
}

@media (min-width: 768px) {
    .sidebar {
        padding: 60px 50px 330px 50px;
        margin-top: 0;
    }
}

@media (min-width: 1200px) {
    .sidebar {
        margin-right: 30px;
    }
}

.glossary-section {
    position: relative;
}

.glosary-menu {
    padding: 35px 0;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: -o-linear-gradient(top, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 1)), to(rgba(255, 255, 255, 0.8)));
    background: linear-gradient(to bottom, rgba(255, 255, 255, 1) 0%, rgba(255, 255, 255, 0.8) 100%);
}

.glosary-menu.fixed {
    top: 0;
    position: fixed;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    width: 100%;
}

.glosary-menu ul {
    margin: 0;
    padding: 0;
    display: none;
    border: 1px solid #748C97;
    max-height: 250px;
    overflow-y: auto;
}

.glosary-menu ul.block-ul {
    display: block;
}

.glosary-menu ul li {
    margin: 0;
    padding: 5px 0;
    font-family: 'Oswald', sans-serif;
    font-size: 14px;
    border-bottom: 1px solid #EFEFEF;
}

.glosary-menu ul li a {
    color: #7D8BA1;
    font-weight: 400;
    border-bottom: 4px solid transparent;
    padding: 0 15px;
    display: block;
}

.glosary-menu ul li:last-child a {
    border-right: 0;
}

.glosary-menu ul li.active a,
.glosary-menu ul li:hover a {
    color: #FF9300;
    border-bottom: 4px solid #FF9300;
    text-decoration: none;
}

.glosary-menu ul li:before {
    display: none;
}

.glosary-toggle {
    background-color: #fff;
    border: 1px solid #748C97;
    padding: 10px 20px;
    font-size: 15px;
    position: relative;
    font-family: 'Oswald', sans-serif;
    cursor: pointer;
}

.glosary-toggle i {
    right: 20px;
    position: absolute;
    top: 15px;
}

.glossary-column {
    padding-top: 205px;
}

.glossary-header {
    background-color: #F7F7F7;
    color: #154396;
    font-family: 'Oswald', sans-serif;
    font-size: 30px;
    line-height: 2em;
}

.glossary-header span {
    display: inline-block;
    background-color: #EFEFEF;
    width: 60px;
    text-align: center;
}

.glossary-text {
    padding-bottom: 35px;
}

.glossary-item {
    padding-top: 35px;
}

.glossary-item p {
    padding: 0;
}

.glossary-item h4 {
    font-size: 19px;
    font-weight: 500;
    padding-bottom: 15px;
}

.header-not-fixed {
    position: relative !important;
}

@media (min-width: 768px) {
    .glossary-column {
        padding-top: 160px;
    }
}

@media (min-width: 1200px) {
    .glosary-menu {
        padding: 70px 0 20px 0;
    }

        .glosary-menu.fixed {
        padding-top:110px;
        }

    .glossary-banner {
        margin-top: 0;
    }

    .glosary-toggle {
        display: none;
    }

    .glosary-menu ul {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        border: none;
        text-align: center;
        padding-top: 10px;
    }

    .glosary-menu ul li {
        display: inline-block;
        border-bottom: none;
        font-size: 19px;
    }

    .glosary-menu ul li a {
        border-right: 1px solid #D7DDDF;
    }

    .glossary-column {
        padding-top: 210px;
    }

    .glossary-section {
        padding-bottom: 180px;
    }

    .glossary-section:after {
        background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 244, 244, 1) 100%);
        background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 255, 255, 0)), to(rgba(255, 244, 244, 1)));
        background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 244, 244, 1) 100%);
        filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#00ffffff', endColorstr='#fff4f4', GradientType=0);
        position: fixed;
        content: '';
        width: 100%;
        bottom: 0;
        left: 0;
        height: 300px;
        display: none;
    }

    .show-shadow:after {
        display: block;
    }
}

@media (min-width: 1366px) {
    .glosary-menu ul li a {
        padding: 0 18px;
    }
}

.border-after {
    position: relative;
    padding-bottom: 20px;
}

.border-after:before {
    width: 148px;
    height: 3px;
    background-color: #c7d0e0;
    bottom: 0;
    left: 0;
    content: '';
    position: absolute;
}

.border-after:after {
    width: 8px;
    height: 8px;
    border: 3px solid #c7d0e0;
    bottom: -4px;
    left: 147px;
    content: '';
    position: absolute;
    border-radius: 50%;
}

.white-bg {
    background-color: #fff;
    position: relative;
}

.white-bg h2 {
    padding-top: 15px;
}

.grey-bg h4 {
    font-size: 24px;
    font-weight: 400;
    padding-bottom: 20px;
}

.no-overlay:after {
    display: none;
}

.fullimage-whitebox ul {
    padding-left: 0;
}

.fle-image {
    overflow: initial;
}

.contact-grey-bg {
    background: none;
    background-color: #f8f8f8;
}

.contact-grey-bg label {
    background-color: #f8f8f8;
}

.grey-bg h3 {
    text-transform: uppercase;
}

.dotted-bg {
    position: relative;
}

.dotted-bg .container {
    z-index: 2;
    position: relative;
}

.grey-bg .dottedbkg-img {
    display: none;
}

.dotted-bg .dottedbkg-img {
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    display: block;
}

.grey-bg img {
    display: block;
    width: auto;
    margin-bottom: 20px;
}

@media (min-width: 768px) {
    .contact-grey-bg {
        background-color: #fff;
    }

    .contact-grey-bg .inner-contact-bg {
        background: none;
        background-color: #f8f8f8;
        border-bottom: 5px solid #244c9e;
    }

    .fle-image {
        padding: 70px 0;
    }
}

@media (min-width: 1200px) {
    .fle-image .stylize-img {
        height: 453px;
    }

    .fle-image {
        padding-bottom: 75px;
        padding-top: 0;
    }

    .fle-image {
        margin-bottom: 100px;
    }
}

ul.stylize-list {
    margin: 0;
    padding: 0;
}

ul.stylize-list li {
    background: #efefef;
    background: -o-linear-gradient(left, #efefef 0%, #ffffff 100%);
    background: -webkit-gradient(linear, left top, right top, from(#efefef), to(#ffffff));
    background: linear-gradient(to right, #efefef 0%, #ffffff 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#ffffff', GradientType=1);
    margin: 11px 0 11px 15px;
    padding: 0 0 0 42px;
    color: #0A1F34;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    line-height: 43px;
}

ul.stylize-list li i {
    border: 2px solid #1B378B;
    color: #1B378B;
    border-radius: 50%;
    width: 43px;
    height: 43px;
    position: absolute;
    top: 0;
    left: -15px;
    text-align: center;
    line-height: 43px;
    background-color: #fff;
}

ul.stylize-list li:before {
    display: none;
}

@media (min-width: 768px) {
    ul.stylize-list li {
        float: left;
        width: calc(33.33% - 15px);
    }
}

.white-box-left-border {
    margin: 0 0 65px 0;
    padding: 20px;
    -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, .12);
    box-shadow: 0 0 10px rgba(0, 0, 0, .12);
    border-left: 5px solid #CDD6E4;
}

.white-box-left-border h2 {
    padding-bottom: 35px;
}

@media (min-width: 768px) {
    .white-box-left-border {
        padding: 45px;
    }
}

@media (min-width: 1200px) {
    .white-box-left-border {
        padding: 50px 195px;
        background: url("/source/31e60dc372b0fc77c2ca5a570a5ae850/border-after.png") 0 33px no-repeat;
    }
}

/**
 * Print CSS
 */
@media(min-width: 480px) {
    .promotions-bar__text {
        font-size: 14px;
    }
}

@media(min-width: 768px) {
    .promotions-bar {
        padding: 5px 25px;
    }

    .promotions-bar__text {
        padding: 7px 20px;
        font-size: 16px;
    }

    .promotions-bar__text {
        width: 100%;
    }
}


/*Newsletter Form Styling*/
.contact-inner iframe body {background-color:transparent!important;}

/*TablePress Table Styling*/
.tablepress td:nth-child(odd){
    background-color: #F8F8F8;
}
.tablepress td {
border: 1px solid #EDEDED!important;
    padding:10px!important;
}

    @media(min-width: 600px){
        .tablepress td {
                padding:15px!important;
        }
    }
/*Homepage Counter - Center Items*/

    #counter .row {
            display: -webkit-box;
            display: -moz-box;
            display: -ms-flexbox;
            display: -webkit-flex;
        display: flex;
            -webkit-justify-content: space-between;
            -ms-flex-pack: distribute;
        justify-content:space-between;
        flex-wrap:wrap;
    }

.footer-form-spacer {
    padding-top: 10px !important;
}

/*------------------------------------*\
    Trumps
\*------------------------------------*/
@-ms-viewport {
    width: device-width;
}

/**
 * Images
 */
.img-responsive {
    display: block;
    max-width: 100%;
    height: auto;
}

/**
 * Visiblity
 */
.show {
    display: block !important;
}

.visible-xxs,
.visible-xs,
.visible-sm,
.visible-md,
.visible-lg {
    display: none !important;
}

.visible-xxs-block,
.visible-xxs-inline,
.visible-xxs-inline-block,
.visible-xs-block,
.visible-xs-inline,
.visible-xs-inline-block,
.visible-sm-block,
.visible-sm-inline,
.visible-sm-inline-block,
.visible-md-block,
.visible-md-inline,
.visible-md-inline-block,
.visible-lg-block,
.visible-lg-inline,
.visible-lg-inline-block {
    display: none !important;
}

@media (max-width: 599px) {
    .visible-xxs {
        display: block !important;
    }

    table.visible-xxs {
        display: table;
    }

    tr.visible-xxs {
        display: table-row !important;
    }

    th.visible-xxs,
    td.visible-xxs {
        display: table-cell !important;
    }

    .visible-xxs-block {
        display: block !important;
    }

    .visible-xxs-inline {
        display: inline !important;
    }

    .visible-xxs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .visible-xs {
        display: block !important;
    }

    table.visible-xs {
        display: table;
    }

    tr.visible-xs {
        display: table-row !important;
    }

    th.visible-xs,
    td.visible-xs {
        display: table-cell !important;
    }

    .visible-xs-block {
        display: block !important;
    }

    .visible-xs-inline {
        display: inline !important;
    }

    .visible-xs-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .visible-sm {
        display: block !important;
    }

    table.visible-sm {
        display: table;
    }

    tr.visible-sm {
        display: table-row !important;
    }

    th.visible-sm,
    td.visible-sm {
        display: table-cell !important;
    }

    .visible-sm-block {
        display: block !important;
    }

    .visible-sm-inline {
        display: inline !important;
    }

    .visible-sm-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .visible-md {
        display: block !important;
    }

    table.visible-md {
        display: table;
    }

    tr.visible-md {
        display: table-row !important;
    }

    th.visible-md,
    td.visible-md {
        display: table-cell !important;
    }

    .visible-md-block {
        display: block !important;
    }

    .visible-md-inline {
        display: inline !important;
    }

    .visible-md-inline-block {
        display: inline-block !important;
    }
}

@media (min-width: 1200px) {
    .visible-lg {
        display: block !important;
    }

    table.visible-lg {
        display: table;
    }

    tr.visible-lg {
        display: table-row !important;
    }

    th.visible-lg,
    td.visible-lg {
        display: table-cell !important;
    }

    .visible-lg-block {
        display: block !important;
    }

    .visible-lg-inline {
        display: inline !important;
    }

    .visible-lg-inline-block {
        display: inline-block !important;
    }
}

/**
 * Hiding
 */
.hide,
.hidden-xxs-up {
    display: none !important;
}

.hidden {
    display: none !important;
    visibility: hidden !important;
}

.invisible {
    visibility: hidden !important;
}

.text-hide {
    font: 0/0 a;
    color: transparent;
    text-shadow: none;
    background-color: transparent;
    border: 0;
}

@media (max-width: 599px) {
    .hidden-xxs {
        display: none !important;
    }
}

@media (min-width: 600px) {
    .hidden-xs-up {
        display: none !important;
    }
}

@media (min-width: 600px) and (max-width: 767px) {
    .hidden-xs {
        display: none !important;
    }
}

@media (max-width: 767px) {
    .hidden-xs-down {
        display: none !important;
    }
}

@media (min-width: 768px) {
    .hidden-sm-up {
        display: none !important;
    }
}

@media (min-width: 768px) and (max-width: 1024px) {
    .hidden-sm {
        display: none !important;
    }
}

@media (max-width: 1024px) {
    .hidden-sm-down {
        display: none !important;
    }
}

@media (min-width: 1025px) {
    .hidden-md-up {
        display: none !important;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .hidden-md {
        display: none !important;
    }
}

@media (max-width: 1199px) {
    .hidden-md-down {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .hidden-lg {
        display: none !important;
    }
}

/**
 * Screen Readers
 */
.sr-only,
.screen-reader-text,
.wpcf7 .screen-reader-response {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

.sr-only-focusable:active,
.sr-only-focusable:focus {
    position: static;
    width: auto;
    height: auto;
    margin: 0;
    overflow: visible;
    clip: auto;
}

/**
 * Print
 */
.visible-print,
.visible-print-block,
.visible-print-inline,
.visible-print-inline-block {
    display: none !important;
}

@media print {
    .visible-print {
        display: block !important;
    }

    table.visible-print {
        display: table;
    }

    tr.visible-print {
        display: table-row !important;
    }

    th.visible-print,
    td.visible-print {
        display: table-cell !important;
    }

    .visible-print-block {
        display: block !important;
    }

    .visible-print-inline {
        display: inline !important;
    }

    .visible-print-inline-block {
        display: inline-block !important;
    }

    .hidden-print {
        display: none !important;
    }
}

/**
 * Text alignment
 */
.text-left {
    text-align: left !important;
}

.text-center {
    text-align: center !important;
}

.text-right {
    text-align: right !important;
}

/**
 * Positioning
 */
.affix-top {
    position: fixed !important;
    top: 0 !important;
}

.affix-bottom {
    position: fixed !important;
    bottom: 0 !important;
}

.affix-left {
    position: fixed !important;
    left: 0 !important;
}

.affix-right {
    position: fixed !important;
    right: 0 !important;
}

.pull-right {
    float: right !important;
}

.pull-left {
    float: left !important;
}

.center-block {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

/**
 * Add/remove margins
 */
.push {
    margin: 20px !important;
}

.push-top {
    margin-top: 20px !important;
}

.push-right {
    margin-right: 20px !important;
}

.push-bottom {
    margin-bottom: 20px !important;
}

.push-left {
    margin-left: 20px !important;
}

.push-ends {
    margin-top: 20px !important;
    margin-bottom: 20px !important;
}

.push-sides {
    margin-right: 20px !important;
    margin-left: 20px !important;
}

.push-half {
    margin: 10px !important;
}

.push-half-top {
    margin-top: 10px !important;
}

.push-half-right {
    margin-right: 10px !important;
}

.push-half-bottom {
    margin-bottom: 10px !important;
}

.push-half-left {
    margin-left: 10px !important;
}

.push-half-ends {
    margin-top: 10px !important;
    margin-bottom: 10px !important;
}

.push-half-sides {
    margin-right: 10px !important;
    margin-left: 10px !important;
}

.flush {
    margin: 0 !important;
}

.flush-top {
    margin-top: 0 !important;
}

.flush-right {
    margin-right: 0 !important;
}

.flush-bottom {
    margin-bottom: 0 !important;
}

.flush-left {
    margin-left: 0 !important;
}

.flush-ends {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.flush-sides {
    margin-right: 0 !important;
    margin-left: 0 !important;
}

/**
 * Add/remove paddings
 */
.soft {
    padding: 20px !important;
}

.soft-top {
    padding-top: 20px !important;
}

.soft-right {
    padding-right: 20px !important;
}

.soft-bottom {
    padding-bottom: 20px !important;
}

.soft-left {
    padding-left: 20px !important;
}

.soft-ends {
    padding-top: 20px !important;
    padding-bottom: 20px !important;
}

.soft-sides {
    padding-right: 20px !important;
    padding-left: 20px !important;
}

.soft-half {
    padding: 10px !important;
}

.soft-half-top {
    padding-top: 10px !important;
}

.soft-half-right {
    padding-right: 10px !important;
}

.soft-half-bottom {
    padding-bottom: 10px !important;
}

.soft-half-left {
    padding-left: 10px !important;
}

.soft-half-ends {
    padding-top: 10px !important;
    padding-bottom: 10px !important;
}

.soft-half-sides {
    padding-right: 10px !important;
    padding-left: 10px !important;
}

.hard {
    padding: 0 !important;
}

.hard-top {
    padding-top: 0 !important;
}

.hard-right {
    padding-right: 0 !important;
}

.hard-bottom {
    padding-bottom: 0 !important;
}

.hard-left {
    padding-left: 0 !important;
}

.hard-ends {
    padding-top: 0 !important;
    padding-bottom: 0 !important;
}

.hard-sides {
    padding-right: 0 !important;
    padding-left: 0 !important;
}

@media (min-width:600px) {
    .flush-xs {
        margin: 0 !important;
    }

    .flush-xs-top {
        margin-top: 0 !important;
    }

    .flush-xs-right {
        margin-right: 0 !important;
    }

    .flush-xs-bottom {
        margin-bottom: 0 !important;
    }

    .flush-xs-left {
        margin-left: 0 !important;
    }

    .flush-xs-ends {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .flush-xs-sides {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .push-xs {
        margin: 20px !important;
    }

    .push-xs-top {
        margin-top: 20px !important;
    }

    .push-xs-right {
        margin-right: 20px !important;
    }

    .push-xs-bottom {
        margin-bottom: 20px !important;
    }

    .push-xs-left {
        margin-left: 20px !important;
    }

    .push-xs-ends {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .push-xs-sides {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .push-half-xs {
        margin: 10px !important;
    }

    .push-half-xs-top {
        margin-top: 10px !important;
    }

    .push-half-xs-right {
        margin-right: 10px !important;
    }

    .push-half-xs-bottom {
        margin-bottom: 10px !important;
    }

    .push-half-xs-left {
        margin-left: 10px !important;
    }

    .push-half-xs-ends {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .push-half-xs-sides {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .push-double-xs {
        margin: 40px !important;
    }

    .push-double-xs-top {
        margin-top: 40px !important;
    }

    .push-double-xs-right {
        margin-right: 40px !important;
    }

    .push-double-xs-bottom {
        margin-bottom: 40px !important;
    }

    .push-double-xs-left {
        margin-left: 40px !important;
    }

    .push-double-xs-ends {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .push-double-xs-sides {
        margin-right: 40px !important;
        margin-left: 40px !important;
    }

    .push-triple-xs {
        margin: 60px !important;
    }

    .push-triple-xs-top {
        margin-top: 60px !important;
    }

    .push-triple-xs-right {
        margin-right: 60px !important;
    }

    .push-triple-xs-bottom {
        margin-bottom: 60px !important;
    }

    .push-triple-xs-left {
        margin-left: 60px !important;
    }

    .push-triple-xs-ends {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .push-triple-xs-sides {
        margin-right: 60px !important;
        margin-left: 60px !important;
    }

    .soft-xs {
        padding: 20px !important;
    }

    .soft-xs-top {
        padding-top: 20px !important;
    }

    .soft-xs-right {
        padding-right: 20px !important;
    }

    .soft-xs-bottom {
        padding-bottom: 20px !important;
    }

    .soft-xs-left {
        padding-left: 20px !important;
    }

    .soft-xs-ends {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .soft-xs-sides {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .soft-half-xs {
        padding: 10px !important;
    }

    .soft-half-xs-top {
        padding-top: 10px !important;
    }

    .soft-half-xs-right {
        padding-right: 10px !important;
    }

    .soft-half-xs-bottom {
        padding-bottom: 10px !important;
    }

    .soft-half-xs-left {
        padding-left: 10px !important;
    }

    .soft-half-xs-ends {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .soft-half-xs-sides {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .soft-double-xs {
        padding: 40px !important;
    }

    .soft-double-xs-top {
        padding-top: 40px !important;
    }

    .soft-double-xs-right {
        padding-right: 40px !important;
    }

    .soft-double-xs-bottom {
        padding-bottom: 40px !important;
    }

    .soft-double-xs-left {
        padding-left: 40px !important;
    }

    .soft-double-xs-ends {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .soft-double-xs-sides {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .soft-triple-xs {
        padding: 60px !important;
    }

    .soft-triple-xs-top {
        padding-top: 60px !important;
    }

    .soft-triple-xs-right {
        padding-right: 60px !important;
    }

    .soft-triple-xs-bottom {
        padding-bottom: 60px !important;
    }

    .soft-triple-xs-left {
        padding-left: 60px !important;
    }

    .soft-triple-xs-ends {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .soft-triple-xs-sides {
        padding-right: 60px !important;
        padding-left: 60px !important;
    }

    .hard-xs {
        padding: 0 !important;
    }

    .hard-xs-top {
        padding-top: 0 !important;
    }

    .hard-xs-right {
        padding-right: 0 !important;
    }

    .hard-xs-bottom {
        padding-bottom: 0 !important;
    }

    .hard-xs-left {
        padding-left: 0 !important;
    }

    .hard-xs-ends {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hard-xs-sides {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media (min-width:768px) {
    .flush-sm {
        margin: 0 !important;
    }

    .flush-sm-top {
        margin-top: 0 !important;
    }

    .flush-sm-right {
        margin-right: 0 !important;
    }

    .flush-sm-bottom {
        margin-bottom: 0 !important;
    }

    .flush-sm-left {
        margin-left: 0 !important;
    }

    .flush-sm-ends {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .flush-sm-sides {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .push-sm {
        margin: 20px !important;
    }

    .push-sm-top {
        margin-top: 20px !important;
    }

    .push-sm-right {
        margin-right: 20px !important;
    }

    .push-sm-bottom {
        margin-bottom: 20px !important;
    }

    .push-sm-left {
        margin-left: 20px !important;
    }

    .push-sm-ends {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .push-sm-sides {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .push-half-sm {
        margin: 10px !important;
    }

    .push-half-sm-top {
        margin-top: 10px !important;
    }

    .push-half-sm-right {
        margin-right: 10px !important;
    }

    .push-half-sm-bottom {
        margin-bottom: 10px !important;
    }

    .push-half-sm-left {
        margin-left: 10px !important;
    }

    .push-half-sm-ends {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .push-half-sm-sides {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .push-double-sm {
        margin: 40px !important;
    }

    .push-double-sm-top {
        margin-top: 40px !important;
    }

    .push-double-sm-right {
        margin-right: 40px !important;
    }

    .push-double-sm-bottom {
        margin-bottom: 40px !important;
    }

    .push-double-sm-left {
        margin-left: 40px !important;
    }

    .push-double-sm-ends {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .push-double-sm-sides {
        margin-right: 40px !important;
        margin-left: 40px !important;
    }

    .push-triple-sm {
        margin: 60px !important;
    }

    .push-triple-sm-top {
        margin-top: 60px !important;
    }

    .push-triple-sm-right {
        margin-right: 60px !important;
    }

    .push-triple-sm-bottom {
        margin-bottom: 60px !important;
    }

    .push-triple-sm-left {
        margin-left: 60px !important;
    }

    .push-triple-sm-ends {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .push-triple-sm-sides {
        margin-right: 60px !important;
        margin-left: 60px !important;
    }

    .soft-sm {
        padding: 20px !important;
    }

    .soft-sm-top {
        padding-top: 20px !important;
    }

    .soft-sm-right {
        padding-right: 20px !important;
    }

    .soft-sm-bottom {
        padding-bottom: 20px !important;
    }

    .soft-sm-left {
        padding-left: 20px !important;
    }

    .soft-sm-ends {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .soft-sm-sides {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .soft-half-sm {
        padding: 10px !important;
    }

    .soft-half-sm-top {
        padding-top: 10px !important;
    }

    .soft-half-sm-right {
        padding-right: 10px !important;
    }

    .soft-half-sm-bottom {
        padding-bottom: 10px !important;
    }

    .soft-half-sm-left {
        padding-left: 10px !important;
    }

    .soft-half-sm-ends {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .soft-half-sm-sides {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .soft-double-sm {
        padding: 40px !important;
    }

    .soft-double-sm-top {
        padding-top: 40px !important;
    }

    .soft-double-sm-right {
        padding-right: 40px !important;
    }

    .soft-double-sm-bottom {
        padding-bottom: 40px !important;
    }

    .soft-double-sm-left {
        padding-left: 40px !important;
    }

    .soft-double-sm-ends {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .soft-double-sm-sides {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .soft-triple-sm {
        padding: 60px !important;
    }

    .soft-triple-sm-top {
        padding-top: 60px !important;
    }

    .soft-triple-sm-right {
        padding-right: 60px !important;
    }

    .soft-triple-sm-bottom {
        padding-bottom: 60px !important;
    }

    .soft-triple-sm-left {
        padding-left: 60px !important;
    }

    .soft-triple-sm-ends {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .soft-triple-sm-sides {
        padding-right: 60px !important;
        padding-left: 60px !important;
    }

    .hard-sm {
        padding: 0 !important;
    }

    .hard-sm-top {
        padding-top: 0 !important;
    }

    .hard-sm-right {
        padding-right: 0 !important;
    }

    .hard-sm-bottom {
        padding-bottom: 0 !important;
    }

    .hard-sm-left {
        padding-left: 0 !important;
    }

    .hard-sm-ends {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hard-sm-sides {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media (min-width:1025px) {
    .flush-md {
        margin: 0 !important;
    }

    .flush-md-top {
        margin-top: 0 !important;
    }

    .flush-md-right {
        margin-right: 0 !important;
    }

    .flush-md-bottom {
        margin-bottom: 0 !important;
    }

    .flush-md-left {
        margin-left: 0 !important;
    }

    .flush-md-ends {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .flush-md-sides {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .push-md {
        margin: 20px !important;
    }

    .push-md-top {
        margin-top: 20px !important;
    }

    .push-md-right {
        margin-right: 20px !important;
    }

    .push-md-bottom {
        margin-bottom: 20px !important;
    }

    .push-md-left {
        margin-left: 20px !important;
    }

    .push-md-ends {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .push-md-sides {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .push-half-md {
        margin: 10px !important;
    }

    .push-half-md-top {
        margin-top: 10px !important;
    }

    .push-half-md-right {
        margin-right: 10px !important;
    }

    .push-half-md-bottom {
        margin-bottom: 10px !important;
    }

    .push-half-md-left {
        margin-left: 10px !important;
    }

    .push-half-md-ends {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .push-half-md-sides {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .push-double-md {
        margin: 40px !important;
    }

    .push-double-md-top {
        margin-top: 40px !important;
    }

    .push-double-md-right {
        margin-right: 40px !important;
    }

    .push-double-md-bottom {
        margin-bottom: 40px !important;
    }

    .push-double-md-left {
        margin-left: 40px !important;
    }

    .push-double-md-ends {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .push-double-md-sides {
        margin-right: 40px !important;
        margin-left: 40px !important;
    }

    .push-triple-md {
        margin: 60px !important;
    }

    .push-triple-md-top {
        margin-top: 60px !important;
    }

    .push-triple-md-right {
        margin-right: 60px !important;
    }

    .push-triple-md-bottom {
        margin-bottom: 60px !important;
    }

    .push-triple-md-left {
        margin-left: 60px !important;
    }

    .push-triple-md-ends {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .push-triple-md-sides {
        margin-right: 60px !important;
        margin-left: 60px !important;
    }

    .soft-md {
        padding: 20px !important;
    }

    .soft-md-top {
        padding-top: 20px !important;
    }

    .soft-md-right {
        padding-right: 20px !important;
    }

    .soft-md-bottom {
        padding-bottom: 20px !important;
    }

    .soft-md-left {
        padding-left: 20px !important;
    }

    .soft-md-ends {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .soft-md-sides {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .soft-half-md {
        padding: 10px !important;
    }

    .soft-half-md-top {
        padding-top: 10px !important;
    }

    .soft-half-md-right {
        padding-right: 10px !important;
    }

    .soft-half-md-bottom {
        padding-bottom: 10px !important;
    }

    .soft-half-md-left {
        padding-left: 10px !important;
    }

    .soft-half-md-ends {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .soft-half-md-sides {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .soft-double-md {
        padding: 40px !important;
    }

    .soft-double-md-top {
        padding-top: 40px !important;
    }

    .soft-double-md-right {
        padding-right: 40px !important;
    }

    .soft-double-md-bottom {
        padding-bottom: 40px !important;
    }

    .soft-double-md-left {
        padding-left: 40px !important;
    }

    .soft-double-md-ends {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .soft-double-md-sides {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .soft-triple-md {
        padding: 60px !important;
    }

    .soft-triple-md-top {
        padding-top: 60px !important;
    }

    .soft-triple-md-right {
        padding-right: 60px !important;
    }

    .soft-triple-md-bottom {
        padding-bottom: 60px !important;
    }

    .soft-triple-md-left {
        padding-left: 60px !important;
    }

    .soft-triple-md-ends {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .soft-triple-md-sides {
        padding-right: 60px !important;
        padding-left: 60px !important;
    }

    .hard-md {
        padding: 0 !important;
    }

    .hard-md-top {
        padding-top: 0 !important;
    }

    .hard-md-right {
        padding-right: 0 !important;
    }

    .hard-md-bottom {
        padding-bottom: 0 !important;
    }

    .hard-md-left {
        padding-left: 0 !important;
    }

    .hard-md-ends {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hard-md-sides {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

@media (min-width:1200px) {
    .flush-lg {
        margin: 0 !important;
    }

    .flush-lg-top {
        margin-top: 0 !important;
    }

    .flush-lg-right {
        margin-right: 0 !important;
    }

    .flush-lg-bottom {
        margin-bottom: 0 !important;
    }

    .flush-lg-left {
        margin-left: 0 !important;
    }

    .flush-lg-ends {
        margin-top: 0 !important;
        margin-bottom: 0 !important;
    }

    .flush-lg-sides {
        margin-right: 0 !important;
        margin-left: 0 !important;
    }

    .push-lg {
        margin: 20px !important;
    }

    .push-lg-top {
        margin-top: 20px !important;
    }

    .push-lg-right {
        margin-right: 20px !important;
    }

    .push-lg-bottom {
        margin-bottom: 20px !important;
    }

    .push-lg-left {
        margin-left: 20px !important;
    }

    .push-lg-ends {
        margin-top: 20px !important;
        margin-bottom: 20px !important;
    }

    .push-lg-sides {
        margin-right: 20px !important;
        margin-left: 20px !important;
    }

    .push-half-lg {
        margin: 10px !important;
    }

    .push-half-lg-top {
        margin-top: 10px !important;
    }

    .push-half-lg-right {
        margin-right: 10px !important;
    }

    .push-half-lg-bottom {
        margin-bottom: 10px !important;
    }

    .push-half-lg-left {
        margin-left: 10px !important;
    }

    .push-half-lg-ends {
        margin-top: 10px !important;
        margin-bottom: 10px !important;
    }

    .push-half-lg-sides {
        margin-right: 10px !important;
        margin-left: 10px !important;
    }

    .push-double-lg {
        margin: 40px !important;
    }

    .push-double-lg-top {
        margin-top: 40px !important;
    }

    .push-double-lg-right {
        margin-right: 40px !important;
    }

    .push-double-lg-bottom {
        margin-bottom: 40px !important;
    }

    .push-double-lg-left {
        margin-left: 40px !important;
    }

    .push-double-lg-ends {
        margin-top: 40px !important;
        margin-bottom: 40px !important;
    }

    .push-double-lg-sides {
        margin-right: 40px !important;
        margin-left: 40px !important;
    }

    .push-triple-lg {
        margin: 60px !important;
    }

    .push-triple-lg-top {
        margin-top: 60px !important;
    }

    .push-triple-lg-right {
        margin-right: 60px !important;
    }

    .push-triple-lg-bottom {
        margin-bottom: 60px !important;
    }

    .push-triple-lg-left {
        margin-left: 60px !important;
    }

    .push-triple-lg-ends {
        margin-top: 60px !important;
        margin-bottom: 60px !important;
    }

    .push-triple-lg-sides {
        margin-right: 60px !important;
        margin-left: 60px !important;
    }

    .soft-lg {
        padding: 20px !important;
    }

    .soft-lg-top {
        padding-top: 20px !important;
    }

    .soft-lg-right {
        padding-right: 20px !important;
    }

    .soft-lg-bottom {
        padding-bottom: 20px !important;
    }

    .soft-lg-left {
        padding-left: 20px !important;
    }

    .soft-lg-ends {
        padding-top: 20px !important;
        padding-bottom: 20px !important;
    }

    .soft-lg-sides {
        padding-right: 20px !important;
        padding-left: 20px !important;
    }

    .soft-half-lg {
        padding: 10px !important;
    }

    .soft-half-lg-top {
        padding-top: 10px !important;
    }

    .soft-half-lg-right {
        padding-right: 10px !important;
    }

    .soft-half-lg-bottom {
        padding-bottom: 10px !important;
    }

    .soft-half-lg-left {
        padding-left: 10px !important;
    }

    .soft-half-lg-ends {
        padding-top: 10px !important;
        padding-bottom: 10px !important;
    }

    .soft-half-lg-sides {
        padding-right: 10px !important;
        padding-left: 10px !important;
    }

    .soft-double-lg {
        padding: 40px !important;
    }

    .soft-double-lg-top {
        padding-top: 40px !important;
    }

    .soft-double-lg-right {
        padding-right: 40px !important;
    }

    .soft-double-lg-bottom {
        padding-bottom: 40px !important;
    }

    .soft-double-lg-left {
        padding-left: 40px !important;
    }

    .soft-double-lg-ends {
        padding-top: 40px !important;
        padding-bottom: 40px !important;
    }

    .soft-double-lg-sides {
        padding-right: 40px !important;
        padding-left: 40px !important;
    }

    .soft-triple-lg {
        padding: 60px !important;
    }

    .soft-triple-lg-top {
        padding-top: 60px !important;
    }

    .soft-triple-lg-right {
        padding-right: 60px !important;
    }

    .soft-triple-lg-bottom {
        padding-bottom: 60px !important;
    }

    .soft-triple-lg-left {
        padding-left: 60px !important;
    }

    .soft-triple-lg-ends {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
    }

    .soft-triple-lg-sides {
        padding-right: 60px !important;
        padding-left: 60px !important;
    }

    .hard-lg {
        padding: 0 !important;
    }

    .hard-lg-top {
        padding-top: 0 !important;
    }

    .hard-lg-right {
        padding-right: 0 !important;
    }

    .hard-lg-bottom {
        padding-bottom: 0 !important;
    }

    .hard-lg-left {
        padding-left: 0 !important;
    }

    .hard-lg-ends {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }

    .hard-lg-sides {
        padding-right: 0 !important;
        padding-left: 0 !important;
    }
}

/*******************************
 * No CSS Should be added below the above TRUMPS section.
 *
 *
 * Please add all additional CSS above the TRUMPS section above.
 */

 /*** LIVE CHAT STYLES ***/
.openerp.o_livechat_button {
  background: rgb(193 152 27 / 88%);
  border-radius: 0;
  border: 2px solid;
  border-bottom: 0;
  border-color: #c7a847;
  margin: 0!important;
}
div.openerp.o_livechat_button .o_livechat_open {
  font-family: oswald;
  text-transform: uppercase;
  font-size: 1rem;
  float: left;
  text-shadow: #98791c 0px -1px 0;
}
div.openerp.o_livechat_button .fa, div.o_thread_window .fa {
  font-weight: 900;
  font-family: "Font Awesome 5 Free";
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
  display: inline-block;
  font-style: normal;
  font-variant: normal;
  text-rendering: auto;
  line-height: 1;
}
div.o_thread_window .o_thread_window_close:before{
content: "\f00d"!important;
}
div.openerp.o_livechat_button .close {
  background: none;
  border: none;
  color:white;
  margin-left: 1em;
}
div.o_thread_window {
  margin-right: 1em!important;
}
div.o_thread_window p {
  font-size: 1.2em;
  padding: 0;
}
div.o_thread_window .o_thread_window_header {
  height: auto;
  background-color: #0e1a42!important;
}
div.o_thread_window .o_thread_window_header span {
  background-color: #0e1a42!important;
}
#prechatform .form-group label {
  color: #000;
  position: relative;
  flex: 0 1 auto;
  top: 0;
  padding-right: 1em;
  left: 0;
}
#prechatform .form-group input {
  flex: 1 1 0;
}
#prechatform .form-group {
  position: relative;
  display: flex;
  line-height: 3em;
}
#prechatform .submit_buttom {
  display: block;
  background: #0e1a41!important;
  color: white!important;
  margin-top: 1em;
  border-radius: 0;
  transition: all .2s;
}
#prechatform .submit_buttom:hover {
  border-color: transparent;
  box-shadow: inset 0 0 5px rgb(0 0 0 / 70%);
  border-bottom-color: #3e508a;
}
#prechatform .show-profile {
  background: #1b378b;
}

/* 6/4/2021 EDITS */
.full-overlay{
    background: rgb(69 92 113 / 55%);
}

.logo-white{
    display: none !important;
}

.page-header.js-scrolled .logo{
    display: block !important;
    margin-bottom: 10px;
}

@media(min-width:768px){
    .home .blog-article .row{
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
    }

    .home .blog-article .row > div{
        display: flex;
    }

    .home .blog-article .row > div:last-child{
        display: none;
    }

    .home .blog-article .row > div > a{
        display: flex;
        height: 100%;
    }

    .home .blog-article .row > div > a .article-box{
        background-color: #fff;
        height: auto;
        display: flex;
        flex-direction: column;
    }

    .home .blog-article .row > div > a .article-box .article-text-inner{
        height: -webkit-fill-available;
        position: relative;
    }

    .home .blog-article .row > div > a .article-box .article-text-inner .btn{
        position: absolute;
        bottom: 30px;
    }
}

@media(min-width:1025px){
    .home .blog-article .row > div:last-child{
        display: flex;
    }
}

/*
* Gray bg section with image on the left
*/
.grey-bg-left-img {
    padding: 45px 0 40px 0;
    overflow: hidden;
}

.grey-bg-left-img .container {
    position: relative;
}

@media (min-width: 768px){
    .grey-bg-left-img .container{
        display: flex;
        justify-content: flex-end;
    }

    .grey-bg-left-img .stylize-img {
        left: 16px;
    }

    .grey-bg-left-img .grey-content {
        padding: 50px 32px 50px 235px;
    }
}

@media (min-width: 1200px){
    .grey-bg-left-img {
        padding: 80px 0 115px 0;
    }

    .grey-bg-left-img .grey-content {
        padding: 90px 110px 80px 380px;
    }
}

@media (max-width: 767px) { .spotlight-cta { text-align: center; } }

@media (max-width: 1024px) { .ubermenu-active .ubermenu-submenu-id-4972, .ubermenu-submenu-id-3331 { padding: 10px 23px !important; } }

@media (max-width: 767px) { #counter .row { justify-content: center; } }

/* Half Text Half Media */
.half-text-half-media {
    position: relative;
    padding: 40px 20px;
}

.half-text-half-media .flex-row {
    display: flex;
    flex-flow: column-reverse wrap;
}

.image-text__text h2 {
    font-weight: 500;
    font-size: 30px;
    text-align: left;
    color: #0a2767;
}

.image-text__text h3 {
    font-weight: normal;
    font-size: 25px;
    text-align: left;
    color: #1759a0;
    padding-bottom: 20px;
}

.image-text__text p {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 17px;
    line-height: 27px;
    text-align: left;
    color: #1759a0;
    padding-bottom: 20px;
}

.image-text__text .icon-facebook-link,
.image-text__text .icon-linkedin-link {
    display: inline-block;
    width: 43px;
    height: 43px;
}

.image-text__text .icon-facebook-link {
    margin-right: 20px;
}

.image-text__text .icon-facebook-link:hover,
.image-text__text .icon-linkedin-link:hover {
    text-decoration: none;
    opacity: 0.7;
}

.image-text__img {
	width: 100%;
	max-width: 200px;
    height: 200px;
	margin-bottom: 30px;
}

.image-text__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.bg-circuits {
    display: none;
}

@media (min-width: 768px) {
    .half-text-half-media .flex-row {
        flex-flow: row;
        justify-content: flex-start;
        padding: 0 40px;
    }

    .image-text__text {
        width: calc(100% - 300px);
        padding-right: 40px;
    }

    .image-text__img {
        width: 100%;
        max-width: 300px;
        height: 300px;
    }

    .bg-circuits {
        object-fit: cover;
        object-position: right;
    }
}

@media (min-width: 1200px) {
    .half-text-half-media {
        padding: 80px 0 40px;
    }

    .half-text-half-media .flex-row {
        padding: 0 60px 0 0;
    }

    .bg-circuits {
        display: block;
        width: 107px;
    }

    .image-text__text {
        width: 100%;
        max-width: 567px;
        margin-left: 57px;
    }

    .image-text__text h2 {
        font-size: 70px;
    }

    .image-text__img {
        width: 100%;
        max-width: 528px;
        height: 528px;
        margin-left: auto;
    }
}

@media (min-width: 1400px) {
    .bg-circuits {
        width: 147px;
    }
}

@media (min-width: 1600px) {
    .bg-circuits {
        width: 247px;
    }
}

@media (min-width: 1800px) {
    .image-text__img {
        margin-left: 182px;
    }

    .bg-circuits {
        width: 347px;
    }
}

/* Featured Articles */
.featured-articles {
    position: relative;
    background: #FFFFFF;
    overflow-x: hidden;
}

.featured-articles__top {
	position: relative;
    padding: 40px 0;
}

.featured-articles__top::after {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	background: linear-gradient(#0a266f 0%, #154396 43.93%, #1a59a0 100%);
	opacity: 0.82;
	width: 100%;
	height: 100%;
}

.featured-articles__top .bg-circuits-image {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.featured-articles__top svg {
	position: absolute;
	top: -1px;
	right: 0;
	z-index: 2;
}

.featured-articles__top .content {
    position: relative;
    z-index: 3;
}

.featured-articles__top .content h2 {
    font-weight: normal;
    font-size: 30px;
    text-align: left;
    color: #fff;
}

.featured-articles__top .content p {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 17px;
    line-height: 27px;
    text-align: left;
    color: #fff;
}

.featured-articles__top .content p strong {
    color: #FEC20E;
}

.featured-articles__top .content p:last-child {
    padding-bottom: 0;
}

.featured-articles__bottom {
    background: #EFEFEF;
    padding: 40px 0;
}

.featured-articles__bottom .container {
	position: relative;
	z-index: 1;
}

.article-row {
	display: flex;
    flex-flow: column;
	justify-content: center;
	align-items: stretch;
    gap: 30px;
}

.article {
    width: 100%;
}

.article__link {
	display: flex;
    flex-flow: column;
    width: 100%;
    height: 100%;
    background: #fff;
    border-top: 40px solid #162F72;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    padding: 30px;
}

.article__link:hover {
    text-decoration: none;
}

.article__link h3 {
    font-weight: 500;
    font-size: 25px;
    text-align: left;
    color: #0a2767;
}

.article__link p {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 15px;
    line-height: 24px;
    text-align: left;
    color: #0a1f34;
}

.article__link button {
    width: fit-content;
	font-weight: normal;
	font-size: 18px;
	letter-spacing: 0.04em;
	text-align: left;
	color: #1759a0;
	padding: 0 34px 0 0;
    margin-top: auto;
}

.article-row__more {
	display: flex;
	justify-content: center;
    margin-top: 25px;
}

.article-row__more .btn-primary {
	min-width: 224px;
	text-align: center;
	border-radius: 0;
	font-weight: 500;
	font-size: 25px;
	color: #fff;
}

.article-row__more .btn-primary::after {
	content: "\e902";
	font-family: "icomoon";
	font-weight: normal;
	color: #FEC20E;
	margin-left: 10px;
	display: inline-block;
	transform: rotate(90deg);
}

.bg-circuits-pattern {
	position: absolute;
	bottom: 0;
	right: 0;
    pointer-events: none;
}

@media (min-width: 768px) {
    .featured-articles__top {
        padding: 80px 0;
    }

    .featured-articles__bottom {
        padding: 60px 0;
    }

    .article {
        max-width: 330px;
    }

    .article-row {
        flex-flow: row wrap;
    }

    .article__link {
        border-top: 83px solid #162F72;
        padding: 30px 30px 25px;
    }

    .article__link h3 {
        padding-bottom: 30px;
    }

    .article__link p {
        padding-bottom: 45px;
    }

    .article__link button {
        font-size: 25px;
    }

    .article-row__more {
        margin-top: 55px;
    }
}

@media (min-width: 1200px) {
    .featured-articles__top {
        padding: 80px 0 130px;
    }

    .featured-articles__top svg {
        right: -40%;
    }

    .featured-articles__top .content {
        width: 100%;
        max-width: 740px;
    }

    .featured-articles__top .content h2 {
        font-size: 70px;
    }

    .featured-articles__bottom {
        position: relative;
        top: -70px;
        width: 100%;
        max-width: 1730px;
        margin: 0 auto;
        padding: 65px 0 60px;
    }

    .article-row {
        gap: 60px;
    }

    .article {
        max-width: 390px;
    }
}

@media (min-width: 1400px) {
    .featured-articles__top svg {
        right: -20%;
    }
}

@media (min-width: 1800px) {
    .featured-articles__top svg {
        right: 0;
    }
}

/* Newsletter Section */
.newsletter-section {
    position: relative;
    padding: 40px 0;
}

.newsletter-section::before {
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background: linear-gradient(#0a266f 0%, #154396 43.93%, #1a59a0 100%);
	opacity: 0.9;
	z-index: 1;
}

.newsletter-section .container {
    position: relative;
    z-index: 2;
}

.newsletter-section h2 {
    font-weight: normal;
    font-size: 30px;
    text-align: left;
    color: #fff;
}

.newsletter-section p {
    font-family: 'Roboto', sans-serif;
    font-weight: normal;
    font-size: 17px;
    line-height: 27px;
    text-align: left;
    color: #fff;
}

.newsletter-section p strong {
    color: #FEC20E;
}

.bg-newsletter-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.newslettter-form {
	position: relative;
    width: 100%;
    max-width: 768px;
}

.newslettter-form .wpcf7-email {
    height: 61px;
    border: none !important;
    border-radius: 5px;
}

.newslettter-form .wpcf7-submit {
    position: absolute;
    top: 0;
    right: 0;
    width: 131px;
    height: 61px;
    font-weight: 500;
    font-size: 18px;
    line-height: 1;
    text-transform: none;
    color: #1b378a;
    border-radius: 0;
    border-top-right-radius: 5px;
    border-bottom-right-radius: 5px;
    padding: 12px 25px;
}

.newslettter-form .wpcf7-submit:hover {
    color: #fff;
}

.newslettter-form .wpcf7-spinner {
	position: absolute;
	top: 18px;
	right: -40px;
	margin: 0;
}

.newslettter-form br {
	display: none;
}

.newslettter-form .wpcf7-not-valid-tip {
    font-size: 15px;
	color: #fff;
	text-align: left;
	padding-top: 10px;
}

.newsletter-section__form .wpcf7-response-output {
    font-size: 15px;
    color: #f00;
    background: #fff;
    margin: 15px 0 0 !important;
}

@media (min-width: 768px) {
    .newslettter-form .wpcf7-submit {
        width: 199px;
        font-size: 25px;
    }
}

@media (min-width: 1200px) {
    .newsletter-section {
        padding: 100px 0;
    }

    .newsletter-section h2 {
        font-size: 70px;
    }
}