/*
  Sassquatch
  Version: 0.1
  Author: Kevin Andrews

  sassquatch uses the BEM css class naming convention.
  .block__element
  .block--modifier
  .block__element--modifier
  .block--modifier__element--modifier
*/
/* VARIABLES
------------------------------------------------------------------------------*/
/* Brand Colours
------------------------------------------------------------------------------*/
/* General Colours
------------------------------------------------------------------------------*/
/* Contextual Colours
------------------------------------------------------------------------------*/
/* ANIMATIONS
------------------------------------------------------------------------------*/
@-webkit-keyframes hover-button {
    16.65% {
        -webkit-transform: translate(5px, -50%);
        transform: translate(5px, -50%);
    }

    33.3% {
        -webkit-transform: translate(-5px, -50%);
        transform: translate(-5px, -50%);
    }

    49.95% {
        -webkit-transform: translate(4px, -50%);
        transform: translate(4px, -50%);
    }

    66.6% {
        -webkit-transform: translate(-2px, -50%);
        transform: translate(-2px, -50%);
    }

    83.25% {
        -webkit-transform: translate(1px, -50%);
        transform: translate(1px, -50%);
    }

    100% {
        -webkit-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

@-moz-keyframes hover-button {
    16.65% {
        -moz-transform: translate(5px, -50%);
        transform: translate(5px, -50%);
    }

    33.3% {
        -moz-transform: translate(-5px, -50%);
        transform: translate(-5px, -50%);
    }

    49.95% {
        -moz-transform: translate(4px, -50%);
        transform: translate(4px, -50%);
    }

    66.6% {
        -moz-transform: translate(-2px, -50%);
        transform: translate(-2px, -50%);
    }

    83.25% {
        -moz-transform: translate(1px, -50%);
        transform: translate(1px, -50%);
    }

    100% {
        -moz-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

@-o-keyframes hover-button {
    16.65% {
        -o-transform: translate(5px, -50%);
        transform: translate(5px, -50%);
    }

    33.3% {
        -o-transform: translate(-5px, -50%);
        transform: translate(-5px, -50%);
    }

    49.95% {
        -o-transform: translate(4px, -50%);
        transform: translate(4px, -50%);
    }

    66.6% {
        -o-transform: translate(-2px, -50%);
        transform: translate(-2px, -50%);
    }

    83.25% {
        -o-transform: translate(1px, -50%);
        transform: translate(1px, -50%);
    }

    100% {
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

@keyframes hover-button {
    16.65% {
        -webkit-transform: translate(5px, -50%);
        -moz-transform: translate(5px, -50%);
        -o-transform: translate(5px, -50%);
        transform: translate(5px, -50%);
    }

    33.3% {
        -webkit-transform: translate(-5px, -50%);
        -moz-transform: translate(-5px, -50%);
        -o-transform: translate(-5px, -50%);
        transform: translate(-5px, -50%);
    }

    49.95% {
        -webkit-transform: translate(4px, -50%);
        -moz-transform: translate(4px, -50%);
        -o-transform: translate(4px, -50%);
        transform: translate(4px, -50%);
    }

    66.6% {
        -webkit-transform: translate(-2px, -50%);
        -moz-transform: translate(-2px, -50%);
        -o-transform: translate(-2px, -50%);
        transform: translate(-2px, -50%);
    }

    83.25% {
        -webkit-transform: translate(1px, -50%);
        -moz-transform: translate(1px, -50%);
        -o-transform: translate(1px, -50%);
        transform: translate(1px, -50%);
    }

    100% {
        -webkit-transform: translate(0, -50%);
        -moz-transform: translate(0, -50%);
        -o-transform: translate(0, -50%);
        transform: translate(0, -50%);
    }
}

@-webkit-keyframes shimmer {
    0% {
        background-position: -30% top;
    }

    100% {
        background-position: 130% top;
    }
}

@-moz-keyframes shimmer {
    0% {
        background-position: -30% top;
    }

    100% {
        background-position: 130% top;
    }
}

@-o-keyframes shimmer {
    0% {
        background-position: -30% top;
    }

    100% {
        background-position: 130% top;
    }
}

@keyframes shimmer {
    0% {
        background-position: -30% top;
    }

    100% {
        background-position: 130% top;
    }
}

/* MIXINS
------------------------------------------------------------------------------*/
/* Hide elements while remaining accessible */
/* Reset styles applied with the set-webaim-hidden mixin */
/* Adds depth to the element */
/* Adds an animated effect to link interactions */
/* Styles element as a CSS triangle */
/* Converts pixel font size value into EM based on base font size variable */
/* CONFIGURATION
------------------------------------------------------------------------------*/
/* CSS RESET
------------------------------------------------------------------------------*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
    display: block;
}

body {
    line-height: 1;
}

ol, ul {
    list-style: none;
}

blockquote, q {
    quotes: none;
}

    blockquote:before, blockquote:after,
    q:before, q:after {
        content: '';
        content: none;
    }

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

/* Load Fonts Here
------------------------------------------------------------------------------*/
/* THEME BASELINE STYLES
------------------------------------------------------------------------------*/
html,
body {
    font-size: 16px;
    font-family: "Aktiv Grotesk Extended", "Helvetica Nueue", "Arial", sans-serif;
    color: #373A36;
    line-height: 1.4;
    margin: 0;
    -webkit-text-size-adjust: 100%;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

    *:first-child {
        margin-top: 0;
    }

    *:last-child {
        margin-bottom: 0;
    }

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Aktiv Grotesk Extended", "Helvetica Nueue", "Arial", sans-serif;
    margin-bottom: 30px;
    margin-top: 15px;
}

    h1:first-child,
    h2:first-child,
    h3:first-child,
    h4:first-child,
    h5:first-child,
    h6:first-child {
        margin-top: 0;
    }

* + h1,
* + h2,
* + h3,
* + h4,
* + h5,
* + h6 {
    margin-top: 45px;
}

h1 {
    font-size: 2.25em;
    font-weight: 600;
    line-height: 1.11111;
}

h2 {
    font-size: 2em;
    font-weight: 500;
    line-height: 1.125;
}

h3 {
    font-size: 1.75em;
    font-weight: 400;
    line-height: 1.14286;
}

h4 {
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.16667;
}

h5 {
    font-size: 1.25em;
    font-weight: 600;
    line-height: 1.2;
}

h6 {
    font-size: 1.125em;
    font-weight: 600;
    line-height: 1.11111;
}

p {
    margin-bottom: 30px;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.5;
}

    p strong {
        color: #1c449c;
    }

a {
    color: #00205c;
}

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

a,
img {
    border: none;
}

    img:only-child {
        display: block;
    }

strong {
    font-weight: bold;
}

em {
    font-style: italic;
}

small {
    font-size: 0.8em;
}

sup,
sub {
    font-size: 0.6em;
}

sup {
    vertical-align: text-top;
}

sub {
    vertical-align: text-bottom;
}

ul {
    list-style: initial;
}

ol {
    list-style-type: decimal;
}

ul,
ol {
    padding-left: 20px;
    margin-bottom: 30px;
}

    ul li,
    ol li {
        margin-bottom: 10px;
    }

        ul li > ul,
        ul li > ol,
        ol li > ul,
        ol li > ol {
            margin-top: 10px;
        }

            ul li > ul:last-child,
            ul li > ol:last-child,
            ol li > ul:last-child,
            ol li > ol:last-child {
                margin-top: 10px;
            }

hr {
    text-align: left;
    margin: 40px 0;
    border: none;
    height: 1px;
    width: 100%;
    display: block;
    background: #d9d8d6;
}

nav ul,
nav ol {
    list-style: none;
    padding-left: 0;
}

    nav ul li,
    nav ol li {
        margin-bottom: 0;
    }

        nav ul li > ul,
        nav ul li > ol,
        nav ol li > ul,
        nav ol li > ol {
            margin-top: 0;
        }

            nav ul li > ul:last-child,
            nav ul li > ol:last-child,
            nav ol li > ul:last-child,
            nav ol li > ol:last-child {
                margin-top: 0;
            }

section {
    padding: 30px 0;
}

    section *:first-child:empty + * {
        margin-top: 0;
    }

details {
    display: block;
}

    details summary {
        padding: 10px;
    }

blockquote {
    position: relative;
    padding-left: 60px;
    border-left: 5px solid #1c449c;
    margin-bottom: 30px;
    font-style: italic;
}

    blockquote i.zmdi {
        position: absolute;
        left: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        color: #1c449c;
        font-size: 36px;
    }

select::-ms-expand {
    display: none;
}

/* LIBRARIES
------------------------------------------------------------------------------*/
/* Slider */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    overflow: hidden;
    display: block;
    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);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

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

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

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

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

.slick-slide {
    float: left;
    height: 130px;
    min-height: 1px;
    position: relative;
    display: none;
}

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

.slick-slide img {
    display: block;
    max-width: 100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.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;
}

/* THEME STRUCTURE
------------------------------------------------------------------------------*/
/* GRID
---------------------------------------------------------------------------*/
*[class*="grid__col"] {
    padding: 0 15px;
    margin-bottom: 30px;
    width: 100%;
}

    *[class*="grid__col"]:last-of-type {
        margin-bottom: 0;
    }

.grid {
    /*margin: 0 -15px;*/
    margin: 0 0px;
    margin-bottom: 30px;
}

    .grid:after {
        clear: both;
        content: "";
        display: table;
    }

    .grid:last-of-type {
        margin-bottom: 0;
    }

.grid__col--1 {
    width: 8.33333%;
    float: left;
    margin-bottom: 0;
}

.grid__col--offset-right-1 {
    margin-left: 8.33333%;
}

.grid__col--offset-left-1 {
    margin-left: -8.33333%;
}

.grid__col--2 {
    width: 16.66667%;
    float: left;
    margin-bottom: 0;
}

.grid__col--offset-right-2 {
    margin-left: 16.66667%;
}

.grid__col--offset-left-2 {
    margin-left: -16.66667%;
}

.grid__col--3 {
    width: 25%;
    float: left;
    margin-bottom: 0;
}

.grid__col--offset-right-3 {
    margin-left: 25%;
}

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

.grid__col--4 {
    width: 33.33333%;
    float: left;
    margin-bottom: 0;
}

.grid__col--offset-right-4 {
    margin-left: 33.33333%;
}

.grid__col--offset-left-4 {
    margin-left: -33.33333%;
}

.grid__col--5 {
    width: 41.66667%;
    float: left;
    margin-bottom: 0;
}

.grid__col--offset-right-5 {
    margin-left: 41.66667%;
}

.grid__col--offset-left-5 {
    margin-left: -41.66667%;
}

.grid__col--6 {
    width: 50%;
    float: left;
    margin-bottom: 0;
}

.grid__col--offset-right-6 {
    margin-left: 50%;
}

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

.grid__col--7 {
    width: 58.33333%;
    float: left;
    margin-bottom: 0;
}

.grid__col--offset-right-7 {
    margin-left: 58.33333%;
}

.grid__col--offset-left-7 {
    margin-left: -58.33333%;
}

.grid__col--8 {
    width: 66.66667%;
    float: left;
    margin-bottom: 0;
}

.grid__col--offset-right-8 {
    margin-left: 66.66667%;
}

.grid__col--offset-left-8 {
    margin-left: -66.66667%;
}

.grid__col--9 {
    width: 75%;
    float: left;
    margin-bottom: 0;
}

.grid__col--offset-right-9 {
    margin-left: 75%;
}

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

.grid__col--10 {
    width: 83.33333%;
    float: left;
    margin-bottom: 0;
}

.grid__col--offset-right-10 {
    margin-left: 83.33333%;
}

.grid__col--offset-left-10 {
    margin-left: -83.33333%;
}

.grid__col--11 {
    width: 91.66667%;
    float: left;
    margin-bottom: 0;
}

.grid__col--offset-right-11 {
    margin-left: 91.66667%;
}

.grid__col--offset-left-11 {
    margin-left: -91.66667%;
}

.grid__col--12 {
    width: 100%;
    float: left;
    margin-bottom: 0;
}

.grid__col--offset-right-12 {
    margin-left: 100%;
}

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

.grid--flush {
    margin: 0;
    margin-bottom: 0;
}

    .grid--flush *[class*="grid__col"] {
        padding: 0;
        margin-bottom: 0;
    }

.grid--flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    flex-flow:row wrap;
}

    .grid--flex *[class*="grid__col"] {
        float: none;
    }

@media (min-width: 480px) {
    .grid--flex-sm {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }

        .grid--flex-sm .grid__col {
            margin-bottom: 0;
        }

    .grid__col--sm-1 {
        width: 8.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-sm-1 {
        margin-left: 8.33333%;
    }

    .grid__col--offset-left-sm-1 {
        margin-left: -8.33333%;
    }

    .grid__col--sm-2 {
        width: 16.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-sm-2 {
        margin-left: 16.66667%;
    }

    .grid__col--offset-left-sm-2 {
        margin-left: -16.66667%;
    }

    .grid__col--sm-3 {
        width: 25%;
        float: left;
        margin-bottom: 0;
    }

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

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

    .grid__col--sm-4 {
        width: 33.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-sm-4 {
        margin-left: 33.33333%;
    }

    .grid__col--offset-left-sm-4 {
        margin-left: -33.33333%;
    }

    .grid__col--sm-5 {
        width: 41.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-sm-5 {
        margin-left: 41.66667%;
    }

    .grid__col--offset-left-sm-5 {
        margin-left: -41.66667%;
    }

    .grid__col--sm-6 {
        width: 50%;
        float: left;
        margin-bottom: 0;
    }

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

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

    .grid__col--sm-7 {
        width: 58.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-sm-7 {
        margin-left: 58.33333%;
    }

    .grid__col--offset-left-sm-7 {
        margin-left: -58.33333%;
    }

    .grid__col--sm-8 {
        width: 66.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-sm-8 {
        margin-left: 66.66667%;
    }

    .grid__col--offset-left-sm-8 {
        margin-left: -66.66667%;
    }

    .grid__col--sm-9 {
        width: 75%;
        float: left;
        margin-bottom: 0;
    }

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

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

    .grid__col--sm-10 {
        width: 83.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-sm-10 {
        margin-left: 83.33333%;
    }

    .grid__col--offset-left-sm-10 {
        margin-left: -83.33333%;
    }

    .grid__col--sm-11 {
        width: 91.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-sm-11 {
        margin-left: 91.66667%;
    }

    .grid__col--offset-left-sm-11 {
        margin-left: -91.66667%;
    }

    .grid__col--sm-12 {
        width: 100%;
        float: left;
        margin-bottom: 0;
    }

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

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

@media (min-width: 768px) {
    .grid--flex-md {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }

        .grid--flex-md .grid__col {
            margin-bottom: 0;
        }

    .grid__col--md-1 {
        width: 8.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-md-1 {
        margin-left: 8.33333%;
    }

    .grid__col--offset-left-md-1 {
        margin-left: -8.33333%;
    }

    .grid__col--md-2 {
        width: 16.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-md-2 {
        margin-left: 16.66667%;
    }

    .grid__col--offset-left-md-2 {
        margin-left: -16.66667%;
    }

    .grid__col--md-3 {
        width: 25%;
        float: left;
        margin-bottom: 0;
    }

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

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

    .grid__col--md-4 {
        width: 33.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-md-4 {
        margin-left: 33.33333%;
    }

    .grid__col--offset-left-md-4 {
        margin-left: -33.33333%;
    }

    .grid__col--md-5 {
        width: 41.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-md-5 {
        margin-left: 41.66667%;
    }

    .grid__col--offset-left-md-5 {
        margin-left: -41.66667%;
    }

    .grid__col--md-6 {
        width: 50%;
        float: left;
        margin-bottom: 0;
    }

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

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

    .grid__col--md-7 {
        width: 58.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-md-7 {
        margin-left: 58.33333%;
    }

    .grid__col--offset-left-md-7 {
        margin-left: -58.33333%;
    }

    .grid__col--md-8 {
        width: 66.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-md-8 {
        margin-left: 66.66667%;
    }

    .grid__col--offset-left-md-8 {
        margin-left: -66.66667%;
    }

    .grid__col--md-9 {
        width: 75%;
        float: left;
        margin-bottom: 0;
    }

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

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

    .grid__col--md-10 {
        width: 83.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-md-10 {
        margin-left: 83.33333%;
    }

    .grid__col--offset-left-md-10 {
        margin-left: -83.33333%;
    }

    .grid__col--md-11 {
        width: 91.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-md-11 {
        margin-left: 91.66667%;
    }

    .grid__col--offset-left-md-11 {
        margin-left: -91.66667%;
    }

    .grid__col--md-12 {
        width: 100%;
        float: left;
        margin-bottom: 0;
    }

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

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

@media (min-width: 992px) {
    .grid--flex-lg {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }

        .grid--flex-lg .grid__col {
            margin-bottom: 0;
        }

    .grid__col--lg-1 {
        width: 8.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-lg-1 {
        margin-left: 8.33333%;
    }

    .grid__col--offset-left-lg-1 {
        margin-left: -8.33333%;
    }

    .grid__col--lg-2 {
        width: 16.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-lg-2 {
        margin-left: 16.66667%;
    }

    .grid__col--offset-left-lg-2 {
        margin-left: -16.66667%;
    }

    .grid__col--lg-3 {
        width: 25%;
        float: left;
        margin-bottom: 0;
    }

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

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

    .grid__col--lg-4 {
        width: 33.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-lg-4 {
        margin-left: 33.33333%;
    }

    .grid__col--offset-left-lg-4 {
        margin-left: -33.33333%;
    }

    .grid__col--lg-5 {
        width: 41.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-lg-5 {
        margin-left: 41.66667%;
    }

    .grid__col--offset-left-lg-5 {
        margin-left: -41.66667%;
    }

    .grid__col--lg-6 {
        width: 50%;
        float: left;
        margin-bottom: 0;
    }

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

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

    .grid__col--lg-7 {
        width: 58.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-lg-7 {
        margin-left: 58.33333%;
    }

    .grid__col--offset-left-lg-7 {
        margin-left: -58.33333%;
    }

    .grid__col--lg-8 {
        width: 66.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-lg-8 {
        margin-left: 66.66667%;
    }

    .grid__col--offset-left-lg-8 {
        margin-left: -66.66667%;
    }

    .grid__col--lg-9 {
        width: 75%;
        float: left;
        margin-bottom: 0;
    }

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

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

    .grid__col--lg-10 {
        width: 83.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-lg-10 {
        margin-left: 83.33333%;
    }

    .grid__col--offset-left-lg-10 {
        margin-left: -83.33333%;
    }

    .grid__col--lg-11 {
        width: 91.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-lg-11 {
        margin-left: 91.66667%;
    }

    .grid__col--offset-left-lg-11 {
        margin-left: -91.66667%;
    }

    .grid__col--lg-12 {
        width: 100%;
        float: left;
        margin-bottom: 0;
    }

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

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

@media (min-width: 1200px) {
    .grid--flex-xl {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }

        .grid--flex-xl .grid__col {
            margin-bottom: 0;
        }

    .grid__col--xl-1 {
        width: 8.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-xl-1 {
        margin-left: 8.33333%;
    }

    .grid__col--offset-left-xl-1 {
        margin-left: -8.33333%;
    }

    .grid__col--xl-2 {
        width: 16.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-xl-2 {
        margin-left: 16.66667%;
    }

    .grid__col--offset-left-xl-2 {
        margin-left: -16.66667%;
    }

    .grid__col--xl-3 {
        width: 25%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-xl-3 {
        margin-left: 25%;
    }

    .grid__col--offset-left-xl-3 {
        margin-left: -25%;
    }

    .grid__col--xl-4 {
        width: 33.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-xl-4 {
        margin-left: 33.33333%;
    }

    .grid__col--offset-left-xl-4 {
        margin-left: -33.33333%;
    }

    .grid__col--xl-5 {
        width: 41.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-xl-5 {
        margin-left: 41.66667%;
    }

    .grid__col--offset-left-xl-5 {
        margin-left: -41.66667%;
    }

    .grid__col--xl-6 {
        width: 50%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-xl-6 {
        margin-left: 50%;
    }

    .grid__col--offset-left-xl-6 {
        margin-left: -50%;
    }

    .grid__col--xl-7 {
        width: 58.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-xl-7 {
        margin-left: 58.33333%;
    }

    .grid__col--offset-left-xl-7 {
        margin-left: -58.33333%;
    }

    .grid__col--xl-8 {
        width: 66.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-xl-8 {
        margin-left: 66.66667%;
    }

    .grid__col--offset-left-xl-8 {
        margin-left: -66.66667%;
    }

    .grid__col--xl-9 {
        width: 75%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-xl-9 {
        margin-left: 75%;
    }

    .grid__col--offset-left-xl-9 {
        margin-left: -75%;
    }

    .grid__col--xl-10 {
        width: 83.33333%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-xl-10 {
        margin-left: 83.33333%;
    }

    .grid__col--offset-left-xl-10 {
        margin-left: -83.33333%;
    }

    .grid__col--xl-11 {
        width: 91.66667%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-xl-11 {
        margin-left: 91.66667%;
    }

    .grid__col--offset-left-xl-11 {
        margin-left: -91.66667%;
    }

    .grid__col--xl-12 {
        width: 100%;
        float: left;
        margin-bottom: 0;
    }

    .grid__col--offset-right-xl-12 {
        margin-left: 100%;
    }

    .grid__col--offset-left-xl-12 {
        margin-left: -100%;
    }
}

.brand {
    display: block;
    width: 100%;
    max-width: 300px;
}

    .brand img {
        width: 100%;
    }

.videobox {
    position: relative;
    display: block;
    padding-left: 50%;
    padding-top: 120px;
    color: #ffffff;
    text-decoration: none;
}

.videobox__image-container {
    position: absolute;
    height: 100%;
    width: 50%;
    top: 0;
    left: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center;
}

    .videobox__image-container img {
        display: block;
    }

.videobox__content {
    position: relative;
    padding: 60px 90px;
    background: #1c449c;
}

    .videobox__content p {
        font-size: 1em;
        font-weight: 500;
        line-height: 1.375;
    }

.videobox .btn--play__wrapper {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.videobox:hover .btn--play, .videobox:focus .btn--play {
    background: #00205c;
}

.video__wrapper {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 25px;
    height: 0;
}

    .video__wrapper iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.features {
    text-align: center;
    padding: 45px 0;
}

    .features img {
        display: inline-block;
        height: 130px;
        width: auto;
        margin-bottom: 20px;
    }

.feature {
    padding: 0 45px;
}

    .feature strong {
        color: #1c449c;
    }

.slick {
    padding: 0 45px;
    position: relative;
}

    .slick .slick-prev,
    .slick .slick-next {
        position: absolute;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        font-size: 1.75em;
        font-weight: 400;
        line-height: 1;
        color: #1c449c;
    }

    .slick .slick-prev {
        left: 0;
    }

    .slick .slick-next {
        right: 0;
    }

.product-features .btn--play__wrapper {
    position: absolute;
    top: 50%;
    left: 18%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.product-features .btn--play-dk {
    height: 70px;
    width: 70px;
    -webkit-border-radius: 80px;
    -moz-border-radius: 80px;
    border-radius: 80px;
    padding: 0;
}

    .product-features .btn--play-dk:before {
        height: 70px;
        width: 70px;
        margin-top: -5px;
        margin-left: 0px;
    }

    .product-features .btn--play-dk:after {
        border-top: 15px solid transparent;
        border-bottom: 15px solid transparent;
        border-left: 25px solid #ffffff;
        margin-left: 4px;
    }

.product-features .slick-slide {
    height: auto;
    text-align: center;
}

    .product-features .slick-slide img {
        display: inline-block;
        max-width: 100%;
        position: static;
        top: auto;
        left: auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

.product-features__tabs {
    list-style: none;
    padding: 0;
    margin: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid #d9d8d6;
    margin-bottom: 45px;
}

.product-features__tab {
    width: 33.33333%;
    float: left;
    padding: 45px;
    border-bottom: 5px solid transparent;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

    .product-features__tab.active {
        border-bottom: 5px solid #1c449c;
    }

    .product-features__tab h3 {
        font-size: 1.5em;
        font-weight: 400;
        line-height: 1.16667;
    }

    .product-features__tab p {
        font-size: 0.875em;
        font-weight: 400;
        line-height: 1.42857;
    }

    .product-features__tab img {
        display: inline-block;
        width: auto;
        height: 60px;
    }

.bucket {
    padding: 90px 0;
}

    .bucket h3 {
        margin-bottom: 10px;
        font-size: 1.625em;
        font-weight: 400;
        line-height: 1.23077;
    }

    .bucket img {
        max-width: 100%;
    }

    .bucket p {
        margin-bottom: 30px;
    }

    .bucket p, .bucket button {
        font-size: 0.875em;
        font-weight: 400;
        line-height: 1.42857;
    }

    .bucket button {
        font-weight: 700;
    }

    .bucket hr {
        width: 30px;
        height: 3px;
        margin-top: 0;
        margin-bottom: 15px;
        background: #3a8dde;
    }

    .bucket *[class^="grid__col"] {
        position: relative;
    }

        .bucket *[class^="grid__col"] img {
            position: absolute;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%);
        }

.bucket__img--offset-left {
    margin-left: -75px;
}

.team {
    text-align: center;
    vertical-align: top;
}

.team--no-image .team__member {
    width: 200px;
}

.team__member {
    text-decoration: none;
    display: inline-block;
    width: 250px;
    vertical-align: top;
    margin: 30px 15px;
    font-size: 0.875em;
    font-weight: 400;
    line-height: 1.28571;
}

    .team__member img {
        width: 175px;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .team__member .link {
        color: #1c449c;
    }

    .team__member p {
        margin-bottom: 5px;
    }

.team-member__content {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .team-member__content h2 {
        font-size: 2em;
        font-weight: 400;
        line-height: 1.125;
        color: #1c449c;
        margin-bottom: 10px;
    }

    .team-member__content img {
        max-width: 100%;
    }

.team-member__role {
    display: inline-block;
    font-size: 1.125em;
    font-weight: 600;
    line-height: 1.33333;
    margin-bottom: 30px;
}

.pager {
    padding-top: 30px;
    padding-bottom: 30px;
}

.article__heading {
    font-size: 1.75em;
    font-weight: 400;
    line-height: 1.14286;
}

.article__meta {
    display: block;
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.44444;
    margin-bottom: 20px;
}

.webinars hr:last-of-type {
    margin-bottom: 20px;
}

.event {
    display: block;
    text-decoration: none;
    color: #373A36;
}

.event__image-wrapper {
    height: 200px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
}

.event__date {
    display: block;
    position: absolute;
    text-transform: uppercase;
    top: 0;
    left: 0;
    padding: 12px 20px;
    background: #00205c;
    color: #ffffff;
    text-align: center;
}

.event__heading {
    font-weight: 400;
    margin-top: 20px;
}

.event__meta {
    display: block;
    margin-bottom: 20px;
}

.event .btn {
    color: #1c449c;
}

.grid-preview {
    margin-bottom: 30px;
}

@media (max-width: 767px) {
    body {
        padding-top: 60px;
    }

    .videobox {
        width: 100%;
        padding-left: 0;
        padding-top: 0;
    }

    .videobox__image-container {
        position: static;
        height: 350px;
        width: 100%;
    }

    .videobox__content {
        position: relative;
        padding: 60px 90px;
        padding-top: 100px;
        background: #1c449c;
    }

        .videobox__content p {
            font-size: 1em;
            font-weight: 500;
            line-height: 1.375;
        }

    .videobox .btn--play__wrapper {
        left: 50%;
        top: 0;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

    .videobox:hover .btn--play, .videobox:focus .btn--play {
        background: #00205c;
    }

    .bucket {
        padding: 30px 0;
    }

        .bucket *[class^="grid__col"] {
            position: relative;
        }

            .bucket *[class^="grid__col"] img {
                position: static;
                top: auto;
                -webkit-transform: none;
                -moz-transform: none;
                -ms-transform: none;
                -o-transform: none;
                transform: none;
            }

    .bucket__img--offset-left {
        margin-left: 0;
    }

    .product-features__tabs {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .product-features__tab {
        width: 100%;
    }
}

/* NAVIGATION COMPONENTS
---------------------------------------------------------------------------*/
.nav a {
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
}

.nav ul {
    padding-left: 0;
}

.nav .nav__menu .drawer-controls a {
    padding-right: 30px;
}

.nav--horizontal {
    position: relative;
}

    .nav--horizontal .nav__menu {
        width: 100%;
        text-align: right;
    }

        .nav--horizontal .nav__menu li {
            display: inline-block;
            font-weight: 600;
            text-align: center;
            position: relative;
            margin: 5px 0;
            margin-right: 45px;
        }

            .nav--horizontal .nav__menu li:last-of-type {
                margin-right: 0;
            }

            .nav--horizontal .nav__menu li:first-of-type {
                border-left: none;
            }

            .nav--horizontal .nav__menu li a {
                display: block;
                text-decoration: none;
                color: #ffffff;
                padding: 5px 0;
                border-bottom: 3px solid transparent;
                border-top: 3px solid transparent;
            }

                .nav--horizontal .nav__menu li a:hover, .nav--horizontal .nav__menu li a:focus, .nav--horizontal .nav__menu li a.active {
                    border-bottom: 3px solid #3a8dde;
                }

                .nav--horizontal .nav__menu li a.btn {
                    padding: 12px 40px;
                    border: 1px solid #ffffff;
                }

                    .nav--horizontal .nav__menu li a.btn:hover, .nav--horizontal .nav__menu li a.btn:focus {
                        border: 1px solid #1c449c;
                    }

.nav--vertical ul li {
    position: relative;
}

    .nav--vertical ul li a {
        display: block;
        padding: 10px 15px;
        color: #000000;
        text-decoration: none;
    }

.nav--megamenu .nav__menu {
    position: relative;
}

    .nav--megamenu .nav__menu li {
        position: static;
    }

.nav--megamenu .nav__submenu .nav__menu {
    position: static;
}

.nav--breadcrumbs {
    margin-bottom: 15px;
}

    .nav--breadcrumbs ul:after {
        clear: both;
        content: "";
        display: table;
    }

    .nav--breadcrumbs ul li {
        display: inline-block;
        float: left;
    }

        .nav--breadcrumbs ul li:after {
            content: "/";
            display: inline-block;
            margin: 0 5px;
        }

        .nav--breadcrumbs ul li:last-of-type:after {
            display: none;
        }

.nav--utility {
    text-align: right;
    display: block;
}

    .nav--utility ul li {
        display: inline-block;
        margin-right: 20px;
    }

        .nav--utility ul li a {
            color: #ffffff;
            display: block;
            border-bottom: 1px solid transparent;
        }

            .nav--utility ul li a:hover, .nav--utility ul li a:focus {
                border-bottom: 1px solid #ffffff;
            }

            .nav--utility ul li a.btn--secondary {
                margin-bottom: 0;
                border-bottom: 1px solid #00205c;
            }

                .nav--utility ul li a.btn--secondary:hover, .nav--utility ul li a.btn--secondary:focus {
                    border-bottom: 1px solid #3a8dde;
                }

            .nav--utility ul li a.btn--quaternary {
                margin-bottom: 0;
                text-transform: uppercase;
                font-weight: 700;
                border-bottom: 1px solid #3a8dde;
            }

                .nav--utility ul li a.btn--quaternary:hover, .nav--utility ul li a.btn--quaternary:focus {
                    border-bottom: 1px solid #00205c;
                }

            .nav--utility ul li a.link {
                border-bottom: 1px solid #ffffff;
            }

                .nav--utility ul li a.link:hover, .nav--utility ul li a.link:focus {
                    border-bottom: 1px solid transparent;
                }

        .nav--utility ul li:last-of-type {
            margin-right: 0;
        }

.nav--pager .nav__menu li {
    display: inline-block;
    padding: 0 5px;
}

    .nav--pager .nav__menu li a {
        display: block;
        padding: 5px;
    }

    .nav--pager .nav__menu li.prev a, .nav--pager .nav__menu li.next a {
        text-decoration: none;
        background: transparent;
        border: none;
        -webkit-box-shadow: none;
        -moz-box-shadow: none;
        box-shadow: none;
        font-weight: 600;
    }

        .nav--pager .nav__menu li.prev a:hover, .nav--pager .nav__menu li.prev a:focus, .nav--pager .nav__menu li.next a:hover, .nav--pager .nav__menu li.next a:focus {
            text-decoration: underline;
        }

.nav--footer .nav__menu li {
    display: inline-block;
    margin-right: 60px;
}

    .nav--footer .nav__menu li a {
        display: inline-block;
        padding: 2px 0;
        border-bottom: 1px solid transparent;
        border-top: 1px solid transparent;
        text-decoration: none;
        font-weight: 600;
    }

        .nav--footer .nav__menu li a:hover, .nav--footer .nav__menu li a:focus, .nav--footer .nav__menu li a.active {
            border-bottom: 1px solid #ffffff;
        }

.nav--footer-utility .nav__menu {
    text-align: right;
}

    .nav--footer-utility .nav__menu li {
        display: inline-block;
        margin-left: 30px;
    }

        .nav--footer-utility .nav__menu li a {
            border-bottom: 1px solid transparent;
        }

            .nav--footer-utility .nav__menu li a:hover, .nav--footer-utility .nav__menu li a:focus {
                border-bottom: 1px solid #ffffff;
            }

            .nav--footer-utility .nav__menu li a.btn {
                margin-bottom: 0;
                border-bottom: 1px solid #00205c;
            }

                .nav--footer-utility .nav__menu li a.btn:hover, .nav--footer-utility .nav__menu li a.btn:focus {
                    border-bottom: 1px solid #3a8dde;
                }

.nav--mobile {
    border-bottom: 1px solid #00205c;
}

    .nav--mobile .nav__menu li a {
        display: block;
        padding: 15px;
        color: #ffffff;
        text-decoration: none;
        font-size: 1em;
        font-weight: 500;
        line-height: 1.25;
    }

        .nav--mobile .nav__menu li a.btn {
            -webkit-border-radius: 0;
            -moz-border-radius: 0;
            border-radius: 0;
            border: none;
            margin: 0;
        }

        .nav--mobile .nav__menu li a:hover, .nav--mobile .nav__menu li a:focus {
            background: #3a8dde;
        }

.nav--mobile-utility {
    border-bottom: 3px solid #ffffff;
    padding: 15px;
}

    .nav--mobile-utility .nav__menu li {
        display: inline-block;
        margin-right: 30px;
    }

        .nav--mobile-utility .nav__menu li a {
            color: #ffffff;
        }

.nav__submenu {
    position: absolute;
    z-index: 10;
    top: 100%;
    left: 0;
    padding: 15px;
    background: #ffffff;
    text-align: left;
    width: auto;
    min-width: 100%;
}

    .nav__submenu .nav__menu {
        display: block;
    }

        .nav__submenu .nav__menu li {
            display: block;
            text-align: left;
            white-space: nowrap;
        }

            .nav__submenu .nav__menu li:first-of-type a {
                padding-top: 0;
            }

            .nav__submenu .nav__menu li:last-of-type a {
                border: none;
                padding-bottom: 0;
            }

            .nav__submenu .nav__menu li a {
                border: none;
                padding: 10px 0;
                background: transparent;
            }

                .nav__submenu .nav__menu li a:hover, .nav__submenu .nav__menu li a:focus {
                    background: transparent;
                    text-decoration: underline;
                }

header {
    background: #ffffff;
}

.header__brand {
    display: block;
    position: absolute;
    max-width: 200px;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .header__brand img {
        width: 200px;
        max-width: 100%;
    }

.header__utility {
    padding: 0;
    background: #1c449c;
}

.header__content {
    padding: 20px 0;
    background: #00205c;
}

    .header__content h1 {
        margin: 0;
    }

.header__content-wrapper {
    position: relative;
    padding-left: 250px;
}

/* Removed because duplicate in sassquatch_wp.css and commonRequired.css
/* Stephanie - Industrial 
@media (max-width: 767px) {
    .header__bar {
        position: fixed;
        z-index: 100;
        top: 0;
        left: 0;
        width: 100%;
        height: 60px;
        padding: 10px 15px;
        background: #00205c;
        color: #ffffff;
    }

    .header__bar .btn--mobile {
        position: absolute;
        right: 0;
        top: 0;
        height: 100%;
        margin-bottom: 0;
        font-size: 1.5em;
        font-weight: 400;
        line-height: 1;
        color: #ffffff;
    }

    .header__bar.drawer-controls .drawer-toggle i {
        position: static;
        right: auto;
        top: auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .header__bar.drawer-controls .drawer-toggle.open i {
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

    .header__brand {
        max-width: 50%;
    }

    .header__brand img {
        width: 100px;
    }

    .header .mobile-menu {
        position: fixed;
        top: 0;
        left: 0;
        padding-top: 60px;
        max-height: 100%;
        width: 100%;
        overflow-y: auto;
        z-index: 99;
        background: #1c449c;
    }

    .header__brand {
        left: 15px;
    }
}*/

section {
    padding: 60px 0;
}

.section__heading {
    text-align: center;
    margin-top: 60px;
    margin-bottom: 10px;
    font-weight: 400;
}

.section__heading--blue {
    color: #1c449c;
}

.section__heading--white {
    color: #ffffff;
    font-weight: 400;
}

.section__heading--spaced {
    margin-bottom: 30px;
}

.section__heading--left {
    text-align: left;
}

.section__heading-divider {
    width: 30px;
    height: 3px;
    background: #3a8dde;
    margin: 35px 0;
}

.section__description {
    text-align: center;
}

.section--grey {
    background-color: #fafafa;
}

    .section--grey .divider__text {
        background: #fafafa;
    }

.section--dk-grey {
    background: #f3f2f2;
}

.section--blue {
    background: #1c449c;
}

.section--hex {
    background-image: url("../images/Banners/Polygon.png");
    background-repeat: no-repeat;
    background-position: bottom -220px left 0;
}

.section--hex-center {
    background-image: url("../images/product/Polygon.png");
    -webkit-background-size: 700px auto;
    -moz-background-size: 700px auto;
    -o-background-size: 700px auto;
    background-size: 700px auto;
    background-repeat: no-repeat;
    background-position: bottom -350px center;
}

.section--hex-vert {
    background-image: url("../images/Banners/Polygon.png"), url("../images/Banners/Polygon.png");
    background-repeat: no-repeat;
    background-position: bottom -150px right -100px, top 40% left 100px;
}

.section--hex-right {
    background-image: url("../images/product/Polygon.png");
    -webkit-background-size: 700px auto;
    -moz-background-size: 700px auto;
    -o-background-size: 700px auto;
    background-size: 700px auto;
    background-repeat: no-repeat;
    background-position: bottom -150px right -300px;
}

.section--padded-right {
    padding-right: 10%;
}

#intro {
    background-image: url("../images/Banners/Polygon.png"), url("../images/Banners/Polygon.png");
    background-repeat: no-repeat;
    background-position: bottom -150px left -200px, top 150px right -250px;
}

#prefooter .section__heading {
    margin-bottom: 30px;
}

#prefooter .btn {
    margin: 15px 30px;
}

@media (max-width: 767px) {
    .section--padded-right {
        padding-right: 15px;
    }
}

.sidebar__heading {
    font-size: 1.125em;
    font-weight: 500;
    line-height: 1.33333;
    margin-bottom: 45px;
}

.sidebar__heading--has-icon {
    padding-left: 50px;
    position: relative;
}

    .sidebar__heading--has-icon img {
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        width: 35px;
    }

.sidebar__heading--blue {
    color: #1c449c;
    margin-bottom: 20px;
}

.sidebar__features {
    list-style: none;
    padding: 0;
    margin: 30px 0;
}

    .sidebar__features li {
        margin-bottom: 15px;
    }

        .sidebar__features li.has-icon {
            padding-left: 60px;
            position: relative;
        }

            .sidebar__features li.has-icon img {
                width: 45px;
                position: absolute;
                left: 0;
                top: 50%;
                -webkit-transform: translateY(-50%);
                -moz-transform: translateY(-50%);
                -ms-transform: translateY(-50%);
                -o-transform: translateY(-50%);
                transform: translateY(-50%);
            }

.sidebar p {
    margin-bottom: 15px;
}

.sidebar a {
    color: #1c449c;
}

    .sidebar a:hover, .sidebar a:focus {
        color: #00205c;
    }

    .sidebar a.social {
        margin-right: 10px;
    }

.sidebar .card {
    margin-bottom: 15px;
}

    .sidebar .card .link {
        color: #1c449c;
        font-weight: 400;
    }

@media (max-width: 767px) {
    .sidebar {
        padding: 30px 15px;
    }
}

footer {
    padding: 45px 0;
    background: #00205c;
    color: #ffffff;
}

    footer a {
        color: #ffffff;
    }

    footer img {
        width: 100%;
        max-width: 230px;
        margin-bottom: 30px;
    }

    footer .link {
        font-weight: 400;
    }

.footer__navbar {
    margin-bottom: 60px;
}

@media (max-width: 767px) {
    .footer__navbar {
        display: none;
    }

    footer .text-right {
        text-align: left;
    }
}

/* THEME COMPONENTS
------------------------------------------------------------------------------*/
/* BANNER COMPONENTS
---------------------------------------------------------------------------*/
.banner {
    padding: 60px 0;
    position: relative;
    width: 100%;
    background: #fafafa;
    color: #ffffff;
}

.banner--front {
    padding: 80px 0;
    padding-bottom: 200px;
    background-color: #001643;
    background-image: url("../images/Banners/Home.png"), url("../images/Banners/home-banner-hexagons.png");
    -webkit-background-size: auto 120%, 370px auto;
    -moz-background-size: auto 120%, 370px auto;
    -o-background-size: auto 120%, 370px auto;
    background-size: auto 120%, 370px auto;
    background-repeat: no-repeat;
    background-position: bottom 0 right -250px, top 12% left 0;
}

    .banner--front h2 {
        font-size: 2.625em;
        font-weight: 300;
        line-height: 1;
        margin-bottom: 40px;
    }

    .banner--front p {
        margin-bottom: 40px;
        font-size: 1.25em;
        font-weight: 300;
        line-height: 1.5;
    }

.banner--sub {
    padding: 0;
    background-color: #fafafa;
    color: #373A36;
    background-position: right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
}

    .banner--sub *[class^="grid__col"] {
        padding-top: 90px;
        padding-bottom: 60px;
        padding-right: 120px;
        background: #fafafa;
        position: relative;
    }

    .banner--sub h1 {
        font-size: 1.125em;
        font-weight: 600;
        line-height: 1.22222;
        color: #1c449c;
        margin: 0;
        margin-bottom: 8px;
    }

    .banner--sub h2 {
        font-size: 2.375em;
        font-weight: 500;
        line-height: 1.15789;
        margin-top: 15px;
        margin-bottom: 30px;
    }

    .banner--sub hr {
        width: 30px;
        height: 3px;
        background: #1c449c;
    }

    .banner--sub p {
        font-size: 1.125em;
        font-weight: 400;
        line-height: 1.33333;
        margin-bottom: 30px;
    }

        .banner--sub p.small {
            font-size: 0.875em;
            font-weight: 400;
            line-height: 1.28571;
        }

    .banner--sub .btn--play__wrapper {
        position: absolute;
        right: -150px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .banner--sub .btn--play-dk {
        height: 80px;
        width: 80px;
        -webkit-border-radius: 80px;
        -moz-border-radius: 80px;
        border-radius: 80px;
    }

        .banner--sub .btn--play-dk:before {
            height: 80px;
            width: 80px;
            margin-top: -5px;
            margin-left: 0px;
        }

        .banner--sub .btn--play-dk:after {
            border-top: 20px solid transparent;
            border-bottom: 20px solid transparent;
            border-left: 35px solid #ffffff;
        }

.banner--sub__hexagons {
    position: absolute;
    bottom: 30px;
    opacity: 0.5;
    left: -100px;
    width: 400px;
    height: auto;
    pointer-events: none;
}

.banner--bg-fix:before {
    content: '';
    display: block;
    position: absolute;
    height: 100%;
    width: 3000%;
    top: 0;
    right: 100%;
    background: #fafafa;
}

.banner__poly {
    position: absolute;
    top: 0;
    left: 100%;
    height: 100%;
    pointer-events: none;
}

.banner + section .videobox:first-child {
    margin-top: -180px;
}

@media (max-width: 991px) {
    .banner--front {
        background-image: url("../images/Banners/home-banner-hexagons.png");
        -webkit-background-size: 370px auto;
        -moz-background-size: 370px auto;
        -o-background-size: 370px auto;
        background-size: 370px auto;
        background-repeat: no-repeat;
        background-position: top 5% left 0;
    }
}

@media (max-width: 767px) {
    .banner--front {
        padding: 30px 0;
    }

        .banner--front h2 {
            font-size: 1.75em;
            font-weight: 300 34;
            margin-bottom: 30px;
        }

        .banner--front p {
            font-size: 1em;
            font-weight: 300;
            line-height: 1.25;
            margin-bottom: 30px;
        }

    .banner--sub *[class^="grid__col"] {
        padding: 30px 15px;
    }

    .banner--sub .btn--play-wrapper {
        display: none;
    }

    .banner + section .videobox:first-child {
        margin-top: 0;
    }
}

/* BUTTON COMPONENTS
---------------------------------------------------------------------------*/
button {
    font-size: 16px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    padding: 0;
    background: transparent;
    text-align: left;
    cursor: pointer;
}

.btn {
    padding: 12px 40px;
    cursor: pointer;
    -webkit-transition: all 0.2s;
    -o-transition: all 0.2s;
    -moz-transition: all 0.2s;
    transition: all 0.2s;
    display: inline-block;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    text-decoration: none;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    margin-bottom: 5px;
    font-size: 0.875em;
    font-weight: 700;
    line-height: 1.42857;
}

.btn--primary {
    background: #1c449c;
    color: #ffffff;
}

    .btn--primary:hover, .btn--primary:focus {
        background: #3a8dde;
        color: #ffffff;
    }

.btn--primary-reversed {
    background: #ffffff;
    border: 1px solid #1c449c;
    color: #1c449c;
}

    .btn--primary-reversed:hover, .btn--primary-reversed:focus {
        background: #1c449c;
        color: #ffffff;
    }

.btn--secondary {
    background: #00205c;
    border: 1px solid #00205c;
    color: #ffffff;
}

    .btn--secondary:hover, .btn--secondary:focus {
        background: #3a8dde;
        border: 1px solid #3a8dde;
    }

.btn--tertiary {
    background: transparent;
    border: 1px solid #ffffff;
    color: #ffffff;
}

    .btn--tertiary:hover, .btn--tertiary:focus {
        background: #1c449c;
    }

.btn--quaternary {
    background: #3a8dde;
    color: #ffffff;
    border: 1px solid #3a8dde;
}

    .btn--quaternary:hover, .btn--quaternary:focus {
        background: #00205c;
        border: 1px solid #00205c;
    }

.btn--tertiary-reversed {
    background: #ffffff;
    color: #1c449c;
    border: 1px solid #ffffff;
}

    .btn--tertiary-reversed:hover, .btn--tertiary-reversed:focus {
        border: 1px solid rgba(255, 255, 255, 0.6);
        background: rgba(255, 255, 255, 0.6);
    }

.btn--link {
    background: transparent;
    text-decoration: none;
    border: 0;
    padding: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

    .btn--link:hover, .btn--link:focus {
        background: transparent;
        text-decoration: underline;
    }

.btn--directional {
    display: inline-block;
    position: relative;
    text-decoration: none;
    padding: 0 5px;
    font-weight: 700;
}

.btn--directional__text {
    display: block;
    padding: 1px 0;
    border-bottom: 1px solid #1c449c;
    border-top: 1px solid transparent;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

.btn--directional i {
    position: absolute;
    top: 50%;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    -webkit-transition: -webkit-transform 0.1s ease-in-out;
    transition: -webkit-transform 0.1s ease-in-out;
    -o-transition: -o-transform 0.1s ease-in-out;
    -moz-transition: transform 0.1s ease-in-out, -moz-transform 0.1s ease-in-out;
    transition: transform 0.1s ease-in-out;
    transition: transform 0.1s ease-in-out, -webkit-transform 0.1s ease-in-out, -moz-transform 0.1s ease-in-out, -o-transform 0.1s ease-in-out;
}

.btn--directional:hover i, .btn--directional:focus i {
    -webkit-animation-name: hover-button;
    -moz-animation-name: hover-button;
    -o-animation-name: hover-button;
    animation-name: hover-button;
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    -o-animation-duration: 1s;
    animation-duration: 1s;
    -webkit-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

.btn--directional:hover .btn--directional__text, .btn--directional:focus .btn--directional__text {
    border-bottom: 1px solid transparent;
}

.btn--directional-forward {
    padding-right: 30px;
}

    .btn--directional-forward i {
        right: 5px;
    }

.btn--directional-back {
    padding-left: 30px;
}

    .btn--directional-back i {
        left: 5px;
    }

.btn--close {
    padding: 0;
    background: transparent;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: none;
}

    .btn--close:hover, .btn--close:focus {
        background: transparent;
    }

.btn--dropdown {
    font-size: 1.125em;
    font-weight: 600;
    line-height: 1.22222;
    width: 100%;
    text-align: left;
    padding: 10px 15px;
    position: relative;
    margin-bottom: 0;
    background: #1c449c;
    color: #ffffff;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.btn--play, .btn--play-dk, .btn--play-lt {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    position: relative;
    height: 110px;
    width: 110px;
    -webkit-border-radius: 110px;
    -moz-border-radius: 110px;
    border-radius: 110px;
    -webkit-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
    background: #3a8dde;
}

    .btn--play:hover, .btn--play:focus, .btn--play-dk:hover, .btn--play-dk:focus, .btn--play-lt:hover, .btn--play-lt:focus {
        background: #00205c;
    }

    .btn--play:before, .btn--play-dk:before, .btn--play-lt:before {
        content: '';
        display: block;
        height: 110px;
        width: 110px;
        -webkit-border-radius: 110px;
        -moz-border-radius: 110px;
        border-radius: 110px;
        background: rgba(58, 141, 222, 0.3);
        position: absolute;
        z-index: -1;
        left: -10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        margin-top: -5px;
        margin-left: -2.5px;
    }

    .btn--play:after, .btn--play-dk:after, .btn--play-lt:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 30px solid transparent;
        border-bottom: 30px solid transparent;
        border-left: 50px solid #ffffff;
        position: absolute;
        left: 50%;
        margin-left: 8px;
        top: 50%;
        -webkit-transform: translate(-50%, -50%);
        -moz-transform: translate(-50%, -50%);
        -ms-transform: translate(-50%, -50%);
        -o-transform: translate(-50%, -50%);
        transform: translate(-50%, -50%);
    }

.btn--play-dk {
    background: #1c449c;
}

    .btn--play-dk:hover, .btn--play-dk:focus {
        background: #00205c;
    }

.btn--sm {
    padding: 5px 20px;
    font-weight: 500;
}

.btn--slider-tab {
    padding: 5px;
    border: 1px solid #1c449c;
    -webkit-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}

    .btn--slider-tab.active {
        background: #1c449c;
    }

/* CARD COMPONENTS
---------------------------------------------------------------------------*/
.card {
    margin: 0 -25px;
    padding: 25px;
    background: rgba(58, 141, 222, 0.1);
}

/* DROPDOWN COMPONENTS
---------------------------------------------------------------------------*/
.dropdown {
    position: relative;
}

    .dropdown .card {
        margin: 0;
    }

    .dropdown .drawer {
        position: relative;
        z-index: 2;
    }

    .dropdown .drawer--overlay {
        position: absolute;
    }

.drawer-toggle {
    position: relative;
    padding-right: 30px;
}

    .drawer-toggle i {
        position: absolute;
        right: 15px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
        -webkit-transition: -webkit-transform 0.2s;
        transition: -webkit-transform 0.2s;
        -o-transition: -o-transform 0.2s;
        -moz-transition: transform 0.2s, -moz-transform 0.2s;
        transition: transform 0.2s;
        transition: transform 0.2s, -webkit-transform 0.2s, -moz-transform 0.2s, -o-transform 0.2s;
    }

    .drawer-toggle.open i {
        -webkit-transform: rotate(180deg) translateY(50%);
        -moz-transform: rotate(180deg) translateY(50%);
        -ms-transform: rotate(180deg) translateY(50%);
        -o-transform: rotate(180deg) translateY(50%);
        transform: rotate(180deg) translateY(50%);
    }

.drawer {
    display: none;
}

.drawer--overlay {
    position: absolute;
    width: 100%;
    z-index: 10;
}

.drawer-wrapper {
    position: relative;
}

.drawer-controls .drawer-toggle {
    cursor: pointer;
}

    .drawer-controls .drawer-toggle .drawer-control--close {
        display: none;
    }

    .drawer-controls .drawer-toggle.open i {
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .drawer-controls .drawer-toggle.open .drawer-control--open {
        display: none;
    }

    .drawer-controls .drawer-toggle.open .drawer-control--close {
        display: block;
    }

.tooltip-toggle {
    position: relative;
}

    .tooltip-toggle:hover .tooltip, .tooltip-toggle:focus .tooltip {
        display: inline-block;
    }

.tooltip {
    display: none;
    background: #ffffff;
    width: 200px;
    padding: 10px;
    position: absolute;
    bottom: 100%;
    left: 50%;
    margin-bottom: 10px;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    -webkit-box-shadow: 2px 2px 5px #d9d8d6;
    -moz-box-shadow: 2px 2px 5px #d9d8d6;
    box-shadow: 2px 2px 5px #d9d8d6;
    border: 1px solid #d9d8d6;
}

    .tooltip:before, .tooltip:after {
        position: absolute;
        left: 50%;
        -webkit-transform: translateX(-50%);
        -moz-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        -o-transform: translateX(-50%);
        transform: translateX(-50%);
    }

.tooltip--top:before {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 9.5px solid transparent;
    border-right: 9.5px solid transparent;
    border-top: 9.5px solid #d9d8d6;
    bottom: -9.5px;
}

.tooltip--top:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ffffff;
    bottom: -8px;
}

.tooltip--bottom {
    bottom: auto;
    top: 100%;
    margin-bottom: 0;
    margin-top: 10px;
}

    .tooltip--bottom:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-left: 9.5px solid transparent;
        border-right: 9.5px solid transparent;
        border-bottom: 9.5px solid #d9d8d6;
        top: -9.5px;
    }

    .tooltip--bottom:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-left: 8px solid transparent;
        border-right: 8px solid transparent;
        border-bottom: 8px solid #ffffff;
        top: -8px;
    }

.tooltip--left:before, .tooltip--left:after, .tooltip--right:before, .tooltip--right:after {
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.tooltip--left {
    bottom: auto;
    left: auto;
    right: 100%;
    top: 50%;
    margin-bottom: 0;
    margin-right: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .tooltip--left:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 9.5px solid transparent;
        border-bottom: 9.5px solid transparent;
        border-left: 9.5px solid #d9d8d6;
        bottom: auto;
        left: auto;
        right: -9.5px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .tooltip--left:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 9.5px solid transparent;
        border-bottom: 9.5px solid transparent;
        border-left: 9.5px solid #ffffff;
        bottom: auto;
        left: auto;
        right: -8px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.tooltip--right {
    bottom: auto;
    left: 100%;
    top: 50%;
    margin-bottom: 0;
    margin-left: 10px;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

    .tooltip--right:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 9.5px solid transparent;
        border-bottom: 9.5px solid transparent;
        border-right: 9.5px solid #d9d8d6;
        bottom: auto;
        left: -9.5px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .tooltip--right:after {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 9.5px solid transparent;
        border-bottom: 9.5px solid transparent;
        border-right: 9.5px solid #ffffff;
        bottom: auto;
        left: -8px;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

/* FORM COMPONENTS
---------------------------------------------------------------------------*/
.form *[type="submit"] {
    min-width: 150px;
    text-align: center;
}

.form__heading {
    font-size: 1.625em;
    font-weight: 500;
    line-height: 1.23077;
    margin-bottom: 10px;
}

.form__descr {
    margin-bottom: 45px;
}

.form__group {
    margin-bottom: 25px;
}

.form__input {
    width: 100%;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    background: #ffffff;
    font-family: "Aktiv Grotesk Extended", "Helvetica Nueue", "Arial", sans-serif;
    padding: 10px;
    margin: 0;
    max-width: 100%;
    text-align: left;
    font-size: 1em;
    font-weight: 400;
    line-height: 1.25;
    border: 1px solid #d9d8d6;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    color: #373A36;
}

.form__input--wrapper {
    border: 1px solid #d9d8d6;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

    .form__input--wrapper .form__label {
        padding: 10px;
        padding-bottom: 0;
        margin-bottom: 0;
    }

    .form__input--wrapper .form__input {
        border: none;
    }

.form__label {
    display: block;
    margin-bottom: 5px;
    color: #1c449c;
    font-size: 0.875em;
    font-weight: 400;
    line-height: 1.28571;
}

.form__select-wrapper {
    position: relative;
    display: inline-block;
    width: 100%;
}

    .form__select-wrapper .form__input {
        padding-right: 30px;
    }

        .form__select-wrapper .form__input + i {
            pointer-events: none;
            position: absolute;
            right: 10px;
            top: 50%;
            -webkit-transform: translateY(-50%);
            -moz-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            -o-transform: translateY(-50%);
            transform: translateY(-50%);
            color: #000000;
        }

.form__radio, .form__checkbox {
    display: table;
    padding-left: 25px;
    position: relative;
}

    .form__radio input, .form__checkbox input {
        position: absolute;
        left: 0;
        top: 5px;
    }

        .form__radio input:checked + .form__radio-replacement-wrapper .form__radio-replacement:before,
        .form__radio input:checked + .form__radio-replacement-wrapper .form__checkbox-replacement:before,
        .form__radio input:checked + .form__checkbox-replacement-wrapper .form__radio-replacement:before,
        .form__radio input:checked + .form__checkbox-replacement-wrapper .form__checkbox-replacement:before, .form__checkbox input:checked + .form__radio-replacement-wrapper .form__radio-replacement:before,
        .form__checkbox input:checked + .form__radio-replacement-wrapper .form__checkbox-replacement:before,
        .form__checkbox input:checked + .form__checkbox-replacement-wrapper .form__radio-replacement:before,
        .form__checkbox input:checked + .form__checkbox-replacement-wrapper .form__checkbox-replacement:before {
            -webkit-transform: translate(-50%, -50%) scale(1);
            -moz-transform: translate(-50%, -50%) scale(1);
            -ms-transform: translate(-50%, -50%) scale(1);
            -o-transform: translate(-50%, -50%) scale(1);
            transform: translate(-50%, -50%) scale(1);
        }

        .form__radio input:focus, .form__checkbox input:focus {
            outline: 0;
        }

            .form__radio input:focus + .form__radio-replacement-wrapper,
            .form__radio input:focus + .form__checkbox-replacement-wrapper, .form__checkbox input:focus + .form__radio-replacement-wrapper,
            .form__checkbox input:focus + .form__checkbox-replacement-wrapper {
                outline-color: #4d90fe;
                outline-offset: 0px;
                outline-style: auto;
                outline-width: 5px;
            }

.form__radio-replacement-wrapper, .form__checkbox-replacement-wrapper {
    position: absolute;
    left: 0;
    top: 4px;
}

.form__radio-replacement, .form__checkbox-replacement {
    position: relative;
    display: block;
    height: 14px;
    width: 14px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    background: #ffffff;
    -webkit-transition: background 0.2s ease-in-out;
    -o-transition: background 0.2s ease-in-out;
    -moz-transition: background 0.2s ease-in-out;
    transition: background 0.2s ease-in-out;
}

    .form__radio-replacement:before, .form__checkbox-replacement:before {
        content: '';
        height: 8px;
        width: 8px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
        background: #ffffff;
        position: absolute;
        left: 50%;
        top: 50%;
        -webkit-transform: translate(-50%, -50%) scale(0);
        -moz-transform: translate(-50%, -50%) scale(0);
        -ms-transform: translate(-50%, -50%) scale(0);
        -o-transform: translate(-50%, -50%) scale(0);
        transform: translate(-50%, -50%) scale(0);
        -webkit-transition: all 0.4s ease-in-out;
        -o-transition: all 0.4s ease-in-out;
        -moz-transition: all 0.4s ease-in-out;
        transition: all 0.4s ease-in-out;
    }

.form__checkbox-replacement {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

    .form__checkbox-replacement:before {
        -webkit-border-radius: 0;
        -moz-border-radius: 0;
        border-radius: 0;
    }

.form--inline .form__group, .form--inline .form__label, .form--inline .form__input {
    display: inline-block;
}

.form--inline .form__group {
    margin-right: 30px;
}

    .form--inline .form__group:last-of-type {
        margin-right: 0;
    }

.form--inline .form__label {
    margin-right: 10px;
}

textarea.form__input {
    min-height: 175px;
    margin-bottom: -5px;
}

.custom-select__list {
    border-top: none;
    background: #ffffff;
    list-style: none;
    padding: 0;
    position: relative;
    z-index: 2;
}

.custom-select__option button {
    border: none;
    padding: 5px 10px;
    width: 100%;
    background: transparent;
}

.custom-select__option:first-of-type button {
    padding-top: 10px;
}

.custom-select__option:last-of-type button {
    padding-bottom: 10px;
}

/* TABLE COMPONENTS
---------------------------------------------------------------------------*/
.table__wrapper {
    overflow-x: auto;
    margin-bottom: 30px;
    max-width: 100%;
}

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

table thead tr th {
    text-align: left;
    font-weight: 700;
    padding: 10px;
    white-space: nowrap;
    color: #ffffff;
    background: #00205c;
}

table tbody tr:nth-of-type(2n) {
    background: #d9d8d6;
}

table tbody tr td {
    padding: 10px;
}

body.popup--open {
    overflow: hidden;
}

.popup {
    display: none;
    position: fixed;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    background: #ffffff;
    z-index: 1500;
    width: 500px;
    max-width: 100%;
    height: auto;
    max-height: 100%;
    overflow: auto;
}

.popup__content {
    position: relative;
    padding: 30px;
}

.popup__close {
    position: absolute;
    top: 5px;
    right: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
}

    .popup__close + * {
        margin-top: 0;
    }

.popup__overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    z-index: 1000;
    background: rgba(0, 32, 92, 0.8);
}

.alert {
    padding: 15px;
    padding-left: 40px;
    margin-bottom: 15px;
    position: relative;
    border-left: 8px solid;
    font-weight: 600;
}

.alert--info {
    background: #ffffff;
}

.alert--success {
    background: #f3faef;
    color: #325e1c;
}

    .alert--success i {
        color: #325e1c;
    }

.alert--warning {
    background: #fff2cc;
    color: #806000;
}

    .alert--warning i {
        color: #806000;
    }

.alert--danger {
    background: #fcf4f2;
    color: #a51b00;
}

    .alert--danger i {
        color: #a51b00;
    }

.alert__icon {
    position: absolute;
    left: 15px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
}

.alert__close {
    position: absolute;
    top: 15px;
    right: 15px;
}

.tabs {
    border: none;
}

.tabs__list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: table;
    background: #ffffff;
}

    .tabs__list:after {
        clear: both;
        content: "";
        display: table;
    }

.tabs__tab-control {
    margin: 0;
    float: left;
    text-align: center;
    display: block;
    padding: 10px 15px;
    -webkit-transform: translate(0, 0);
    -moz-transform: translate(0, 0);
    -ms-transform: translate(0, 0);
    -o-transform: translate(0, 0);
    transform: translate(0, 0);
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
}

.tabs__content {
    padding: 30px;
    background: #ffffff;
    display: none;
    border: none;
}

    .tabs__content.active {
        display: block;
    }

.slider {
    margin: 70px -100px;
    margin-bottom: 100px;
    position: relative;
}

    .slider .slick-list {
        padding: 15px 15px !important;
    }

    .slider .slick-track {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }

    .slider .slick-prev {
        display: none !important;
    }

    .slider .slick-next {
        display: none !important;
    }

.slider__btn-wrapper {
    position: absolute;
    z-index: 10;
    top: 50%;
}

.slider__btn-wrapper--prev {
    left: 33%;
}

.slider__btn-wrapper--next {
    right: 33%;
}

.slider__btn {
    position: relative;
    padding: 0 14px;
    width: 45px;
    height: 45px;
    -webkit-border-radius: 50px;
    -moz-border-radius: 50px;
    border-radius: 50px;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border: none;
    cursor: pointer;
    font-size: 36px;
    background: #1c449c;
    color: #ffffff;
    vertical-align: middle;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
}

    .slider__btn:before {
        content: "";
        display: block;
        height: 45px;
        width: 45px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
        position: absolute;
        top: -4px;
        left: -5px;
        z-index: -1;
        background: rgba(58, 141, 222, 0.3);
    }

    .slider__btn:hover, .slider__btn:focus {
        background: #3a8dde;
        outline: 0;
    }

    .slider__btn i {
        font-size: 0.75em;
        font-weight: 400;
        line-height: 1;
    }

.slider__slides {
    list-style: none;
    padding: 0;
    margin: 0;
    position: relative;
}

.slider__slide {
    text-align: center;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    margin: 0;
    z-index: 9;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transition: all 0.4s;
    -o-transition: all 0.4s;
    -moz-transition: all 0.4s;
    transition: all 0.4s;
    -webkit-transition: opacity 0.2s ease-in-out;
    -o-transition: opacity 0.2s ease-in-out;
    -moz-transition: opacity 0.2s ease-in-out;
    transition: opacity 0.2s ease-in-out;
}


.slider__arrow {
    line-height: 0;
    position: relative;
}

.slider__headshot-wrapper {
    margin-bottom: 15px;
}

    .slider__headshot-wrapper img {
        display: inline-block;
    }

.slider__tabs {
    text-align: center;
    padding: 0;
    margin: 30px 0;
    list-style: none;
}

.slider__tab {
    display: inline-block;
    margin: 0 5px;
}

.slider .card {
    padding: 30px 60px;
    background: #ffffff;
    overflow: visible;
    -webkit-box-shadow: 2px 2px 20px #d9d8d6;
    -moz-box-shadow: 2px 2px 20px #d9d8d6;
    box-shadow: 2px 2px 20px #d9d8d6;
    cursor: pointer;
}



.testimonial {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: scale(0.8);
    -moz-transform: scale(0.8);
    -ms-transform: scale(0.8);
    -o-transform: scale(0.8);
    transform: scale(0.8);
    -webkit-transform-origin: center center;
    -moz-transform-origin: center center;
    -ms-transform-origin: center center;
    -o-transform-origin: center center;
    transform-origin: center center;
    display: flex !important;
    align-items: center;
    -webkit-transition: all 0.2s ease-in-out;
    -o-transition: all 0.2s ease-in-out;
    -moz-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    padding: 0 20px;
    transition-delay:0.4s;
}

.testimonial__content {
    padding: 30px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    background: #ffffff;
    -webkit-box-shadow: 0 0 7px #d9d8d6;
    -moz-box-shadow: 0 0 7px #d9d8d6;
    box-shadow: 0 0 7px #d9d8d6;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.testimonial.slick-center {
    -webkit-transform: scale(1);
    -moz-transform: scale(1);
    -ms-transform: scale(1);
    -o-transform: scale(1);
    transform: scale(1);
}

.testimonial.slick-slide {
    height: auto;
}

    .testimonial.slick-slide img {
        position: static;
        -webkit-transform: translate(0, 0);
        -moz-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
        -o-transform: translate(0, 0);
        transform: translate(0, 0);
    }

.testimonial__quote {
    padding-top: 30px;
    margin-bottom: 30px;
    position: relative;
}

    .testimonial__quote * {
        position: relative;
        z-index: 2;
    }

    .testimonial__quote p {
        font-size: 1.125em;
        font-weight: 300;
        line-height: 1.55556;
    }

    .testimonial__quote *:last-child {
        margin-bottom: 0;
    }

.testimonial__meta p {
    font-size: 0.875em;
    font-weight: 400;
    line-height: 1.28571;
}

    .testimonial__meta p strong {
        color: #373A36;
    }

    .testimonial__meta p em {
        font-weight: 300;
    }

.testimonial hr {
    height: 3px;
    background: #1c449c;
    width: 60px;
    margin: 20px 0;
    display: inline-block;
}

.slick-slide:active:hover {
    cursor: -webkit-grabbing;
    cursor: -moz-grabbing;
    cursor: grabbing;
}

.slick-dots {
    list-style: none;
    padding: 0;
    text-align: center;
}

    .slick-dots li {
        display: inline-block;
    }

        .slick-dots li button {
            padding: 5px;
            border: 1px solid #1c449c;
            height: 12px;
            width: 12px;
            -webkit-border-radius: 100%;
            -moz-border-radius: 100%;
            border-radius: 100%;
            background: #ffffff;
            font-size: 0;
            margin: 0 10px;
            -webkit-transition: background 0.2s ease-in-out;
            -o-transition: background 0.2s ease-in-out;
            -moz-transition: background 0.2s ease-in-out;
            transition: background 0.2s ease-in-out;
        }

        .slick-dots li.slick-active button {
            background: #1c449c;
        }

@media (max-width: 1259px) {
    .slider {
        margin: 70px 0;
    }
}

@media (max-width: 767px) {
    .slider {
        padding: 0 30px;
    }

        .slider .slick-list {
            padding: 15px 0 !important;
            overflow: visible !important;
        }

        .slider[style] {
            height: auto !important;
        }


    .slider__slides {
        overflow: visible;
    }

    .slider__slide {
        display: none;
        position: static;
        left: auto;
    }

        .slider__slide.active {
            display: block;
            width: 100%;
            margin: 0;
        }

            .slider__slide.active[style] {
                height: auto !important;
            }

    .slider__btn--prev i {
        left: 0;
    }

    .slider__btn--next i {
        right: 0;
    }

    .slider__btn-wrapper--prev {
        left: 0;
    }

    .slider__btn-wrapper--next {
        right: 0;
    }
}

/* THEME HELPERS
------------------------------------------------------------------------------*/
/* COMPONENT HELPERS
---------------------------------------------------------------------------*/
.img-centered {
    display: block;
    margin: 0 auto;
}

.draggable {
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}

/* STRUCTURE HELPERS
---------------------------------------------------------------------------*/
.container {
    width: 100%;
    max-width: 1260px;
    padding: 0 15px;
    margin: 0 auto;
}

    .container:after {
        clear: both;
        content: "";
        display: table;
    }

    .container .container {
        padding: 0;
    }

.full-width {
    width: 100%;
}

.pull-right {
    float: right;
}

.hidden {
    display: none;
}

.spacer {
    background: transparent;
    margin: 15px 0;
}

.divider {
    text-align: center;
    position: relative;
    margin: 40px 0;
    margin-top: 100px;
    min-height: 50px;
}

.divider__text {
    display: inline-block;
    background: #ffffff;
    margin: 0;
    font-size: 1em;
    font-weight: 700;
    line-height: 1.25;
    padding: 0 60px;
    text-transform: uppercase;
    color: #636569;
    max-width: 100%;
    position: absolute;
    z-index: 2;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -moz-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}

.divider hr {
    position: absolute;
    left: 0;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin: 0;
    z-index: 1;
}

.offset--top {
    display: block;
    margin-top: -45px;
}

.mobile {
    display: none;
}

@media (max-width: 767px) {
    .mobile {
        display: block;
    }

    .desktop {
        display: none;
    }

    .divider__text {
        position: static;
        top: auto;
        left: auto;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
        background: transparent;
        width: 100%;
        padding: 0;
    }

    .divider hr {
        display: none;
    }
}

/* ACCESSIBILITY HELPERS
---------------------------------------------------------------------------*/
.webaim-hidden,
.skip-link {
    position: absolute;
    left: -10000px;
    top: auto;
    width: 1px;
    height: 1px;
    overflow: hidden;
    z-index: 1000;
}

    .skip-link:focus {
        position: relative;
        left: auto;
        top: auto;
        width: auto;
        height: auto;
        overflow: visible;
        position: fixed;
        left: 15px;
        top: 15px;
        background: #ffffff;
    }

/* TYPOGRAPHY HELPERS
---------------------------------------------------------------------------*/
.text-centered {
    text-align: center;
}

.text-right {
    text-align: right;
}

.italic {
    font-style: italic;
}

.caps {
    text-transform: uppercase;
}

.no-break {
    white-space: nowrap;
}

.light {
    font-weight: 300;
}

.blue {
    color: #1c449c;
}

.ellipsis {
    display: block;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}

.link {
    display: inline;
    text-decoration: none;
    padding-top: 1px;
    padding-bottom: 1px;
    font-weight: 700;
}

    .link:hover, .link:focus {
        border-bottom: 1px solid !important;
        text-decoration: none;
    }

.link--reversed {
    border-bottom: 1px solid !important;
    text-decoration: none;
}

    .link--reversed:hover, .link--reversed:focus {
        border-bottom: 1px solid #ffffff;
    }

.link--play {
    color: #1c449c;
}

    .link--play:before {
        content: '';
        display: block;
        width: 0;
        height: 0;
        border-top: 4px solid transparent;
        border-bottom: 4px solid transparent;
        border-left: 7px solid #1c449c;
        position: absolute;
        left: 10px;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

    .link--play:after {
        content: '';
        height: 20px;
        width: 20px;
        -webkit-border-radius: 50px;
        -moz-border-radius: 50px;
        border-radius: 50px;
        border: 2px solid #1c449c;
        position: absolute;
        left: 0;
        top: 50%;
        -webkit-transform: translateY(-50%);
        -moz-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
        -o-transform: translateY(-50%);
        transform: translateY(-50%);
    }

.link--play__wrapper {
    padding-left: 45px;
    color: #1c449c;
    position: relative;
}

.link--dk {
    color: #373A36;
    font-weight: 400;
}

.label {
    margin-bottom: 0;
    font-weight: 600;
}

.copyright {
    font-weight: 600;
}

.silhouette {
    position: absolute;
    top: -15px;
    left: -8px;
    font-size: 1.5em;
    font-weight: 700;
    opacity: 0.1;
    pointer-events: none;
    letter-spacing: 1px;
}

.silhouette__wrapper {
    position: relative;
}

    .silhouette__wrapper hr {
        margin: 0;
    }

hr.silhouette {
    margin: 0;
    top: -5px;
    left: -5px;
    width: 35px;
}

*[data-attach-icon-after] i {
    margin-left: 5px;
}

*[data-attach-icon-before] i {
    margin-right: 5px;
}

.small {
    font-size: 0.875em;
    font-weight: 400;
    line-height: 1.28571;
}


.StickyNotesLink {
    color: #1c449c;
    cursor: pointer;
    padding: 1px 2px 1px 2px;
}

a:visited.StickyNotesLink {
    color: #1c449c;
    /*font-size: 9pt;*/
    text-decoration: none;
    font-weight: normal;
    /*border-top:1px solid #6A747B;
	border-bottom:1px solid #6A747B;
	border-left:1px solid #6A747B;
	border-right:1px solid #6A747B;*/
    padding: 1px 2px 1px 2px;
}

a:hover.StickyNotesLink {
    color: #26537c;
    /*
	background-color: #5C7C95;
	*/
    font-size: 9pt;
    text-decoration: none;
    font-weight: normal;
    /*border-top:1px solid #ffffff;
	border-bottom:1px solid #ffffff;
	border-left:1px solid #ffffff;
	border-right:1px solid #ffffff;*/
    padding: 1px 2px 1px 2px;
}

.txt {
    padding: 7px;
    width: 300px;
}


.crosslink {
    text-decoration: none;
    display: inline-block;
    width: 250px;
    vertical-align: top;
    margin: 30px 15px;
    font-size: 0.875em;
    font-weight: 400;
    line-height: 1.28571;
}

    .crosslink img {
        width: 250px;
        max-width: 100%;
        margin-bottom: 15px;
    }

    .crosslink .link {
        color: #1c449c;
    }

    .crosslink p {
        margin-bottom: 5px;
    }

.crosslink__content {
    padding-top: 60px;
    padding-bottom: 60px;
}

    .crosslink__content h2 {
        font-size: 2em;
        font-weight: 400;
        line-height: 1.125;
        color: #1c449c;
        margin-bottom: 10px;
    }

    .crosslink__content img {
        max-width: 100%;
    }

.crosslink__role {
    display: inline-block;
    font-size: 1.125em;
    font-weight: 600;
    line-height: 1.33333;
    margin-bottom: 30px;
}
