@charset "UTF-8";

/* Grid & Gutters */
/* Colours */
/* Breakpoints */
/**
* SassFlexbox
* Manage Flexbox in Sass easily.
*
* @author     Samuel Marchal (zessx)
* @version    0.1
*/
/*
    Display
 */
/*
    Flex direction
 */
/*
    Flex wrap
 */
/*
    Flex flow
 */
/*
    Order
 */
/*
    Flex grow
 */
/*
    Flex shrink
 */
/*
    Flex basis
 */
/*
    Flex
 */
/*
    Justify content
 */
/*
    Align items
 */
/*
    Align self
 */
/*
    Align content
 */
/* VARIABLES */
/* COOKIES */
.cookies {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    width: 100%;
    border-top: 1px solid rgba(76, 142, 206, 0.1);
    background-color: var(--lightGrey);
    padding: 15px;
}

@media (min-width: 992px) {
    .cookies {
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        padding: 30px;
    }
}

@media (min-width: 1200px) {
    .cookies {
        padding-left: 175px;
        padding-right: 175px;
    }
}

@media (min-width: 1365px) {
    .cookies {
        padding-left: 300px;
        padding-right: 300px;
    }
}

@media (min-width: 992px) {
    .cookies .left {
        margin-right: 45px;
    }
}

.cookies p {
    font-size: 14px;
}

.cookies .bigBlueBtnInline {
    margin: 0;
}

.cookies .bigBlueBtnInline button {
    background-color: #2969F2;
    color: #ffffff;
    padding: 10px;
    font-weight: 600;
    margin-left: 0;
    text-decoration: none !important;
    text-transform: uppercase;
    text-align: center;
    letter-spacing: 2px;
    font-size: 14px;
    border: none;
    margin: 0;
    border-radius: 1px;
    margin-top: 20px;
    cursor: pointer;
    width: 100%;
}

.cookies .bigBlueBtnInline button:hover,
.cookies .bigBlueBtnInline button:active,
.cookies .bigBlueBtnInline button:focus {
    color: #ffffff;
}

@media (min-width: 992px) {
    .cookies .bigBlueBtnInline button {
        padding: 15px 45px;
        background-color: #ffffff;
        color: #06103D;
        width: auto;
        margin-top: 0;
    }

    .cookies .bigBlueBtnInline button:hover,
    .cookies .bigBlueBtnInline button:active,
    .cookies .bigBlueBtnInline button:focus {
        color: #06103D;
    }
}

/* 3-COL FOR HOMEPAGE */
section .col {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-flex-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
}

section .col article {
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-flex-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

section .col article:last-child {
    border-bottom: none;
}

section .col article h2 {
    font-size: 16px;
    line-height: 22px;
}

section .col article h3 {
    font-size: 14px;
    line-height: 20px;
}

@media (min-width: 767px) {
    section .col {
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        margin: 0 -20px;
    }

    section .col article {
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        padding-top: 0;
        padding-bottom: 0;
        margin: 0 10px;
        border: none;
    }

    section .col article a {
        padding: 10px;
    }
}

@media (min-width: 992px) {
    section .col {
        margin: 0 -45px;
    }

    section .col article {
        margin: 0 15px;
    }

    section .col article a {
        padding: 30px;
    }

    section .col article h2 {
        font-size: 22px;
        line-height: 28px;
    }

    section .col article h3 {
        font-size: 18px;
        line-height: 24px;
    }
}

article {
    border-bottom: 1px solid var(--lightGrey);
}

@media (min-width: 767px) {
    article:first-child {
        border-top: 1px solid var(--lightGrey);
    }
}

article a {
    display: block;
    text-decoration: none !important;
    color: #06103D;
}

article a:hover {
    text-decoration: none !important;
}

@media (min-width: 992px) {
    article a:hover {
        background-color: var(--lightGrey);
    }
}

article .img {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-flex-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    margin-bottom: 15px;
}

article .img .img-responsive {
    -ms-flex-item-align: center;
    -webkit-align-self: center;
    -moz-align-self: center;
    align-self: center;
    display: block;
    max-width: 100%;
    height: auto;
}

article .img:last-child {
    margin-bottom: 0;
}

article.icon {
    flex-basis: 25%;
}

article.icon img {
    width: 150px;
}

article .content {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    flex: 0 1 100%;
}

article .content p {
    margin-bottom: 5px;
}

article .content p:last-child {
    margin-bottom: 0;
}

.spacer5 {
    height: 5px;
}

/* CONTAINER FIXED */
/* CONTAINER FLUID */
/* PSEUDO BEFORE AFTER */
/* PUSH AUTO */
/* BG COLOR */
@media (min-width: 767px) and (max-width: 767px) {
    .bg-color {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (min-width: 767px) and (min-width: 767px) {
    .bg-color {
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media (min-width: 767px) and (min-width: 992px) {
    .bg-color {
        margin-left: 45px;
        margin-right: 45px;
    }
}

@media (min-width: 767px) and (min-width: 1200px) {
    .bg-color {
        margin-left: 60px;
        margin-right: 60px;
    }
}

@media (min-width: 767px) and (min-width: 1365px) {
    .bg-color {
        margin-left: 75px;
        margin-right: 75px;
    }
}

.bg-color--lt-lt-blue {
    background-color: #F1F6FC;
}

.bg-color--lt-blue {
    background-color: var(--lightGrey);
}

.bg-color--dk-blue {
    background-color: #06103D;
}

@media (min-width: 767px) {
    .bg-color--xs {
        background-color: transparent;
    }
}

@media (max-width: 767px) {
    .bg-color--xs .c-cta {
        margin-top: 0;
        margin-bottom: 0;
        padding-top: 40px;
        padding-bottom: 15px;
    }
}

@media (max-width: 767px) {

    .bg-color--xs .c-cta__title,
    .bg-color--xs .c-cta__text,
    .bg-color--xs .c-cta__link {
        color: #ffffff;
    }
}

@media (max-width: 767px) {
    .bg-color--xs .c-cta__link:before {
        background-color: #ffffff;
    }
}

.bg-color--full {
    margin-left: 0;
    margin-right: 0;
}

@media (max-width: 767px) {
    .bg-color .c-cta {
        padding-top: 40px;
    }
}

@media (min-width: 767px) {
    .bg-color .c-cta {
        padding-top: 70px;
    }
}

/* BOOTSTRAP HIDDEN SM */
@media (min-width: 576px) {
    .d-sm-none {
        display: none !important;
    }
}

/* HEADER LANDING & HEADING LANDING CTA */
.c-header-landing {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

@media (max-width: 767px) {
    .c-header-landing {
        background-color: #2969F2;
        height: calc(100vh - 92px);
    }
}

@media (min-width: 767px) {
    .c-header-landing {
        -webkit-box-orient: horizontal;
        -moz-box-orient: horizontal;
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        -webkit-box-align: stretch;
        -ms-flex-align: stretch;
        -webkit-align-items: stretch;
        -moz-align-items: stretch;
        align-items: stretch;
        height: 510px;
    }
}

@media (min-width: 1200px) {
    .c-header-landing {
        height: 545px;
    }
}

@media (min-width: 1365px) {
    .c-header-landing {
        height: 830px;
    }
}

.c-header-landing__item {
    -webkit-flex-basis: 50%;
    -moz-flex-basis: 50%;
    -ms-flex-preferred-size: 50%;
    flex-basis: 50%;
    background-color: #2969F2;
    color: #ffffff;
}

.c-header-landing__item--left {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
}

@media (max-width: 767px) {
    .c-header-landing__item--left {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 767px) {
    .c-header-landing__item--left {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 992px) {
    .c-header-landing__item--left {
        padding-left: 75px;
        padding-right: 75px;
    }
}

@media (min-width: 1200px) {
    .c-header-landing__item--left {
        padding-left: 115px;
        padding-right: 115px;
    }
}

@media (min-width: 1365px) {
    .c-header-landing__item--left {
        padding-left: 160px;
        padding-right: 160px;
    }
}

@media (max-width: 767px) {
    .c-header-landing__item--left {
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -webkit-flex-pack: justify;
        -ms-flex-pack: justify;
        -moz-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        padding-top: 40px;
        padding-bottom: 15px;
    }
}

@media (min-width: 767px) {
    .c-header-landing__item--left {
        padding-top: 45px;
        padding-bottom: 70px;
    }
}

@media (min-width: 1365px) {
    .c-header-landing__item--left {
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -webkit-flex-pack: center;
        -ms-flex-pack: center;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

@media (max-width: 767px) {
    .c-header-landing__item--right {
        display: none;
    }
}

@media (min-width: 767px) {
    .c-header-landing__item--right {
        display: block;
        background-color: #06103D;
        background-position: 50% 50%;
        background-size: cover;
        background-repeat: no-repeat;
    }
}

@media (max-width: 767px) {
    .c-header-landing__img {
        display: none;
    }
}

@media (min-width: 767px) {
    .c-header-landing__img {
        display: inline-block;
        width: 108px;
        margin-bottom: 55px;
    }
}

@media (min-width: 992px) {
    .c-header-landing__img {
        margin-left: -50px;
    }
}

.c-header-landing__tagline {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 12px;
    letter-spacing: 2px;
    font-weight: 700;
}

@media (max-width: 767px) {
    .c-header-landing__tagline {
        margin-bottom: 25px;
    }
}

@media (min-width: 767px) {
    .c-header-landing__tagline {
        margin-bottom: 35px;
    }
}

@media (max-width: 767px) {
    .c-header-landing__title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 15px;
    }
}

@media (min-width: 767px) {
    .c-header-landing__title {
        font-size: 32px;
        line-height: 40px;
    }
}

@media (min-width: 992px) {
    .c-header-landing__title {
        font-size: 40px;
        line-height: 48px;
        margin-bottom: 25px;
    }
}

@media (min-width: 1365px) {
    .c-header-landing__title {
        font-size: 56px;
        line-height: 72px;
    }
}

.c-header-landing__text {
    margin-top: 30px;
    margin-bottom: 0;
    font-size: 14px;
    line-height: 24px;
}

/* HEADER CTA */
.c-header-landing-cta {
    z-index: 2;
}


@media (min-width: 767px) {
    .c-header-landing-cta {
        display: none;        
        position: relative;
        background-color: var(--lightGrey);
        padding: 45px 35px;
        margin-top: -48px;
        margin-bottom: 80px;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (min-width: 1024px) {
    .c-header-landing-cta {
        margin-top: -106px;
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
    }
}




@media (min-width: 767px) and (min-width: 767px) {
    .c-header-landing-cta {
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media (min-width: 767px) and (min-width: 992px) {
    .c-header-landing-cta {
        margin-left: 75px;
        margin-right: 75px;
    }
}

@media (min-width: 767px) and (min-width: 1200px) {
    .c-header-landing-cta {
        margin-left: 115px;
        margin-right: 115px;
    }
}

@media (min-width: 767px) and (min-width: 1365px) {
    .c-header-landing-cta {
        margin-left: 160px;
        margin-right: 160px;
    }
}

.c-header-landing-cta__item--left {
    margin-right: 60px;
}

@media (min-width: 767px) {
    .c-header-landing-cta__item--left {
        -webkit-flex-basis: 50%;
        -moz-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
}

@media (min-width: 992px) {
    .c-header-landing-cta__item--left {
        -webkit-flex-basis: 40%;
        -moz-flex-basis: 40%;
        -ms-flex-preferred-size: 40%;
        flex-basis: 40%;
    }
}

@media (min-width: 767px) {
    .c-header-landing-cta__item--right {
        -webkit-flex-basis: 50%;
        -moz-flex-basis: 50%;
        -ms-flex-preferred-size: 50%;
        flex-basis: 50%;
    }
}

@media (min-width: 992px) {
    .c-header-landing-cta__item--right {
        -webkit-flex-basis: 60%;
        -moz-flex-basis: 60%;
        -ms-flex-preferred-size: 60%;
        flex-basis: 60%;
    }
}

@media (max-width: 767px) {
    .c-header-landing-cta__text {
        display: none;
    }
}

@media (min-width: 767px) {
    .c-header-landing-cta__text {
        display: inline-block;
        font-size: 18px;
        line-height: 30px;
        margin-bottom: 0;
        color: #000000;
    }
}

.c-header-landing-cta__btn {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -webkit-flex-pack: center;
    -ms-flex-pack: center;
    -moz-justify-content: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    background-color: #06103D;
    color: #ffffff;
    text-transform: uppercase;
    font-size: 14px;
    line-height: 24px;
    letter-spacing: 3px;
    height: 60px;
}

@media (max-width: 767px) {
    .c-header-landing-cta__btn {
        margin-top: -60px;
    }
}

.c-header-landing-cta__btn:hover,
.c-header-landing-cta__btn:active,
.c-header-landing-cta__btn:focus {
    color: #ffffff;
    text-decoration: none;
}

/* MEGA CTA */
@media (max-width: 767px) {
    .c-mega-cta {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 767px) {
    .c-mega-cta {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 992px) {
    .c-mega-cta {
        padding-left: 75px;
        padding-right: 75px;
    }
}

@media (min-width: 1200px) {
    .c-mega-cta {
        padding-left: 115px;
        padding-right: 115px;
    }
}

@media (min-width: 1365px) {
    .c-mega-cta {
        padding-left: 160px;
        padding-right: 160px;
    }
}

@media (max-width: 767px) {
    .c-mega-cta {
        padding-top: 25px;
        padding-bottom: 35px;
    }
}

@media (min-width: 767px) {
    .c-mega-cta {
        padding-top: 100px;
        padding-bottom: 85px;
    }
}

.c-mega-cta__header {
    background-color: transparent;
    color: #06103D;
}

.c-mega-cta__title {
    font-weight: 600;
}

@media (max-width: 767px) {
    .c-mega-cta__title {
        font-size: 24px;
        line-height: 33px;
        margin-bottom: 15px;
    }
}

@media (min-width: 767px) {
    .c-mega-cta__title {
        font-size: 40px;
        line-height: 49px;
        margin-bottom: 30px;
    }
}

.c-mega-cta__text {
    color: #424242;
}

@media (max-width: 767px) {
    .c-mega-cta__text {
        font-size: 14px;
        line-height: 19px;
        margin-bottom: 25px;
    }
}

@media (min-width: 767px) {
    .c-mega-cta__text {
        font-size: 24px;
        line-height: 40px;
        margin-bottom: 40px;
    }
}

.c-mega-cta__btn {
    display: block;
    background-color: #2969F2;
    text-align: center;
    text-transform: uppercase;
    color: #ffffff;
    border-radius: 2px;
}

.c-mega-cta__btn:hover,
.c-mega-cta__btn:active,
.c-mega-cta__btn:focus {
    color: #ffffff;
    background-color: #2969F2;
}

@media (max-width: 767px) {
    .c-mega-cta__btn {
        font-size: 14px;
        line-height: 24px;
        letter-spacing: 3px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (min-width: 767px) {
    .c-mega-cta__btn {
        font-size: 20px;
        line-height: 24px;
        letter-spacing: 4px;
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

/* CTA */
@media (max-width: 767px) {
    .c-cta {
        margin-top: 35px;
    }
}

@media (max-width: 767px) and (max-width: 767px) {
    .c-cta {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (max-width: 767px) and (min-width: 767px) {
    .c-cta {
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media (max-width: 767px) and (min-width: 992px) {
    .c-cta {
        margin-left: 75px;
        margin-right: 75px;
    }
}

@media (max-width: 767px) and (min-width: 1200px) {
    .c-cta {
        margin-left: 115px;
        margin-right: 115px;
    }
}

@media (max-width: 767px) and (min-width: 1365px) {
    .c-cta {
        margin-left: 160px;
        margin-right: 160px;
    }
}

@media (min-width: 767px) {
    .c-cta {
        text-align: center;
    }
}

@media (min-width: 767px) and (max-width: 767px) {
    .c-cta {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (min-width: 767px) and (min-width: 767px) {
    .c-cta {
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media (min-width: 767px) and (min-width: 992px) {
    .c-cta {
        margin-left: 75px;
        margin-right: 75px;
    }
}

@media (min-width: 767px) and (min-width: 1200px) {
    .c-cta {
        margin-left: 115px;
        margin-right: 115px;
    }
}

@media (min-width: 767px) and (min-width: 1365px) {
    .c-cta {
        margin-left: 160px;
        margin-right: 160px;
    }
}

@media (min-width: 992px) {
    .c-cta {
        margin-left: auto;
        margin-right: auto;
        width: 850px;
    }
}

.c-cta__title {
    font-weight: 600;
}

@media (max-width: 767px) {
    .c-cta__title {
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 10px;
    }
}

@media (min-width: 767px) {
    .c-cta__title {
        font-size: 32px;
        line-height: 40px;
        margin-bottom: 20px;
    }
}

@media (max-width: 767px) {
    .c-cta__text {
        font-size: 16px;
        line-height: 28px;
        margin-bottom: 15px;
    }
}

@media (min-width: 767px) {
    .c-cta__text {
        font-size: 24px;
        line-height: 40px;
        margin-bottom: 10px;
    }
}

.c-cta .link {
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 600;
    text-transform: uppercase;
}

.c-cta .link:hover {
    text-decoration: none;
}

.c-cta .link:before {
    content: "";
    display: block;
    position: absolute;
    display: inline-block;
    position: relative;
    width: 32px;
    height: 1px;
    background-color: #2969F2;
    top: -4px;
    margin-right: 10px;
}

.mediaListing .img-responsive {
    width: 100%;
}

.mediaListing article .content {
    flex: 0;
}

.mediaListing article a:hover {
    background: transparent;
}

.listingFiltersImgs .rightCol .flex.mediaListing .mainContent .flexBox article .content a {
    margin-bottom: 20px;
}

/* KEVIN CHANGES 20-03-20 */
/* Header titles */
.fullHeader h1 {
    margin-bottom: 20px !important;
    font-size: 50px !important;
    /*font-weight: 600 !important;*/
}

.fullHeader h2 {
    font-weight: 100 !important;
    line-height: 1.35 !important;
    font-size: 28px !important;
}

/* Contact CTA */
p.c-header-landing-cta__text {
    font-size: 20px !important;
    line-height: 24px !important;
    font-weight: 400 !important;
}

.c-cta__title {
    font-size: 36px !important;
    line-height: 38px !important;
}

/* Wow Elements */
.imgTextPodHorz .heading {
    margin: 0px !important;
    font-size: 36px !important;
    line-height: 38px !important;
}

.imgTextPodHorz .wowSubHeader {
    font-size: 26px !important;
    font-weight: 100 !important;
    margin-top: 20px;
    line-height: 32px;
    color: #000;
    margin-bottom: 15px;
}

.imgTextPodHorz p {
    color: #808080;
}

a.roundBTN {
    padding: 16px 24px;
    border: 0;
    background-color: var(--brightBlue);
    border-radius: 12px;
    color: #ffffff;
    font-size: 16px;
    text-transform: lowercase;
    margin-bottom: 10px;
    font-weight: 500;
}

a.roundBTN::first-letter {
    text-transform: capitalize;
}

a.roundBTN::after {
    display: block;
    content: "";
    width: 16px;
    height: 8px;
    background: transparent url(../images/arrow-right-white.svg);
    background-repeat: no-repeat;
    margin-left: 8px;
}

a.roundBTN:hover {
    background-color: #06103D;
}

a.roundBTN > .line {
    display: none;
}

/* Industry Customers */
.lightGreyBG {
    /* need to maybe add a lightlightBlueBG */
    background-color: var(--lightGrey);
}

.industry {
    padding: 60px 0;
    background-color: var(--lightGrey);
}

.industry > heading {
    font-weight: 600 !important;
    font-size: 30px !important;
    line-height: 60px !important;
}

@media (min-width: 992px) {
    .flex-pod {
        padding-bottom: 0;
    }

    .flex-pod:first-child {
        border-top: none;
    }

    .flex-pod a {
        padding: 15px;
    }
}

/* MEDIA ASSETS */
.carouselMedia article {
    border: none;
}

.carouselMedia article a:hover {
    background: transparent;
}

.employeeBlock {
    padding-left: 20px;
    padding-right: 20px;
}

@media (min-width: 767px) {
    .employeeBlock {
        padding-left: 40px;
        padding-right: 40px;
    }
}

@media (min-width: 992px) {
    .employeeBlock {
        padding-left: 45px;
        padding-right: 45px;
    }
}

@media (min-width: 1200px) {
    .employeeBlock {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (min-width: 1365px) {
    .employeeBlock {
        padding-left: 160px;
        padding-right: 160px;
    }
}

.employeeBlock .content {
    background-color: #2969F2;
    width: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 30px;
}

@media (min-width: 992px) {
    .employeeBlock .content {
        -webkit-box-orient: horizontal;
        -moz-box-orient: horizontal;
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        padding: 75px 120px;
    }
}

.employeeBlock .content.noPad {
    padding: 0;
}

.employeeBlock .content.noPad .content {
    padding: 90px 60px 80px;
    height: 100%;
}

.employeeBlock .content .imgPod-66,
.employeeBlock .content .imgPod-33,
.employeeBlock .content .imgPod-100 {
    height: 360px !important;
    padding: 0;
    margin: 0;
}

@media (min-width: 992px) {

    .employeeBlock .content .imgPod-66,
    .employeeBlock .content .imgPod-33,
    .employeeBlock .content .imgPod-100 {
        height: 400px !important;
    }
}

@media (min-width: 1200px) {

    .employeeBlock .content .imgPod-66,
    .employeeBlock .content .imgPod-33,
    .employeeBlock .content .imgPod-100 {
        height: 560px !important;
    }
}

@media (min-width: 1365px) {

    .employeeBlock .content .imgPod-66,
    .employeeBlock .content .imgPod-33,
    .employeeBlock .content .imgPod-100 {
        height: 685px !important;
    }
}

@media (min-width: 992px) {

    .employeeBlock .content .imgPod-66 .imgPod-100 .content .leftCol,
    .employeeBlock .content .imgPod-66 .imgPod-100 .content .rightCol {
        min-width: 250px;
    }
}

.employeeBlock .content .imgPod-66 .imgPod-100 .content .leftCol h2,
.employeeBlock .content .imgPod-66 .imgPod-100 .content .leftCol p,
.employeeBlock .content .imgPod-66 .imgPod-100 .content .rightCol h2,
.employeeBlock .content .imgPod-66 .imgPod-100 .content .rightCol p {
    color: #06103D !important;
}

.employeeBlock .content .imgPod-66 .imgPod-100 .content .leftCol h2,
.employeeBlock .content .imgPod-66 .imgPod-100 .content .rightCol h2 {
    line-height: 40px;
    font-size: 32px;
    font-weight: 600;
}

.employeeBlock .content .imgPod-66 .imgPod-100 .content .leftCol p,
.employeeBlock .content .imgPod-66 .imgPod-100 .content .rightCol p {
    font-size: 24px;
    font-weight: 400;
    line-height: 40px;
}

.employeeBlock .content .imgPod-66 .imgPod-100 .content .leftCol {
    padding-right: 20px;
    width: 40%;
}

@media (min-width: 992px) {
    .employeeBlock .content .imgPod-66 .imgPod-100 .content .leftCol {
        padding-right: 20px;
    }
}

@media (min-width: 1200px) {
    .employeeBlock .content .imgPod-66 .imgPod-100 .content .leftCol {
        padding-right: 60px;
    }
}

.employeeBlock .content .imgPod-66 .imgPod-100 .content .righCol {
    width: 60%;
}

.employeeBlock .content .imgPod-33 .imgPod-100.rightCol {
    width: 100%;
    height: 360px !important;
}

@media (min-width: 992px) {
    .employeeBlock .content .imgPod-33 .imgPod-100.rightCol {
        height: 400px !important;
    }
}

@media (min-width: 1200px) {
    .employeeBlock .content .imgPod-33 .imgPod-100.rightCol {
        height: 560px !important;
    }
}

@media (min-width: 1365px) {
    .employeeBlock .content .imgPod-33 .imgPod-100.rightCol {
        height: 685px !important;
    }
}

.employeeBlock .content .imgPod-33 .imgPod-100 .content {
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

.employeeBlock .content .leftCol,
.employeeBlock .content .rightCol {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    -moz-order: 1;
    order: 1;
    width: 100%;
}

@media (min-width: 992px) {

    .employeeBlock .content .leftCol,
    .employeeBlock .content .rightCol {
        -webkit-box-ordinal-group: 1;
        -moz-box-ordinal-group: 0;
        -ms-flex-order: 0;
        -webkit-order: 0;
        -moz-order: 0;
        order: 0;
        min-width: 313px;
        width: 40%;
    }
}

.employeeBlock .content .leftCol h2,
.employeeBlock .content .rightCol h2 {
    color: #ffffff;
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0;
}

.employeeBlock .content .leftCol .body p,
.employeeBlock .content .rightCol .body p {
    /* In hac habitasse pla: */
    font-size: 32px;
    color: #ffffff;
    letter-spacing: 0;
    line-height: 40px;
}

.employeeBlock .content .rightCol {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: 0;
    -webkit-order: 0;
    -moz-order: 0;
    order: 0;
    margin-bottom: 30px;
    width: 100%;
}

@media (min-width: 992px) {
    .employeeBlock .content .rightCol {
        -webkit-box-ordinal-group: 2;
        -moz-box-ordinal-group: 1;
        -ms-flex-order: 1;
        -webkit-order: 1;
        -moz-order: 1;
        order: 1;
        margin-bottom: 0px;
        width: 60%;
    }
}

@media (min-width: 767px) {
    .heightReset.employeeBlock .hiddenMD {
        display: none !important;
    }
}

@media (min-width: 767px) {
    .heightReset.employeeBlock .content .imgPod-66 {
        width: 100%;
        margin: 0 !important;
    }
}

@media (min-width: 767px) {
    .heightReset.employeeBlock .content .imgPod-33 {
        width: 100%;
        margin: 0 !important;
    }
}

.heightReset.employeeBlock .content .imgPod-33.hiddenXS {
    display: none !important;
}

@media (min-width: 767px) {
    .heightReset.employeeBlock .content .imgPod-33.hiddenXS {
        display: flex !important;
    }
}

@media (min-width: 767px) {
    .heightReset.employeeBlock .content .imgPod-33.hiddenSM {
        display: none !important;
    }
}

@media (min-width: 992px) {
    .heightReset.employeeBlock .content .imgPod-33.hiddenSM {
        display: flex !important;
    }
}

@media (min-width: 992px) {
    .heightReset.employeeBlock .content .imgPod-33.hiddenMD {
        display: none !important;
    }
}

@media (min-width: 1200px) {
    .heightReset.employeeBlock .content .imgPod-33.hiddenMD {
        display: flex !important;
    }
}

@media (min-width: 1200px) {
    .heightReset.employeeBlock .content .imgPod-33.hiddenLG {
        display: none !important;
    }
}

.heightReset.employeeBlock .content .imgPod-66,
.heightReset.employeeBlock .content .imgPod-33 {
    height: auto !important;
}

@media (min-width: 992px) {

    .heightReset.employeeBlock .content .imgPod-66,
    .heightReset.employeeBlock .content .imgPod-33 {
        height: 560px !important;
    }
}

@media (min-width: 1365px) {

    .heightReset.employeeBlock .content .imgPod-66,
    .heightReset.employeeBlock .content .imgPod-33 {
        height: 685px !important;
    }
}

.heightReset.employeeBlock .content .imgPod-66 .imgPod-100,
.heightReset.employeeBlock .content .imgPod-33 .imgPod-100 {
    height: auto !important;
}

@media (min-width: 992px) {

    .heightReset.employeeBlock .content .imgPod-66 .imgPod-100,
    .heightReset.employeeBlock .content .imgPod-33 .imgPod-100 {
        height: 560px !important;
    }
}

@media (min-width: 1365px) {

    .heightReset.employeeBlock .content .imgPod-66 .imgPod-100,
    .heightReset.employeeBlock .content .imgPod-33 .imgPod-100 {
        height: 685px !important;
    }
}

.heightReset.employeeBlock .content .imgPod-100 {
    height: auto !important;
    min-height: auto;
}

@media (min-width: 992px) {
    .heightReset.employeeBlock .content .imgPod-100 {
        height: 560px !important;
    }
}

@media (min-width: 1365px) {
    .heightReset.employeeBlock .content .imgPod-100 {
        height: 685px !important;
    }
}

.heightReset.employeeBlock .content .imgPod-100 .content {
    position: relative;
}

.heightReset.employeeBlock .content .imgPod-100 .content .leftCol {
    padding-right: 0;
    width: auto;
}

.heightReset.employeeBlock .content .imgPod-100 .content .leftCol p {
    margin: 15px 0;
}

@media (min-width: 992px) {
    .heightReset.employeeBlock .content .imgPod-100 .content .leftCol {
        padding-right: 20px;
        width: 40%;
    }

    .heightReset.employeeBlock .content .imgPod-100 .content .leftCol p {
        margin: 0;
    }
}

.heightReset.employeeBlock .content.noPad .content {
    padding: 60px 45px 50px;
}

@media (min-width: 992px) {
    .heightReset.employeeBlock .content.noPad .content {
        padding: 60px 60px 50px;
    }
}

.ltltBlueBg {
    background-color: var(--lightGrey) !important;
    color: #06103D !important;
}

@media (min-width: 992px) {
    .three-btn {
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: center;
        -moz-box-pack: center;
        -webkit-flex-pack: center;
        -ms-flex-pack: center;
        -moz-justify-content: center;
        -webkit-justify-content: center;
        justify-content: center;
    }
}

.three-btn a {
    margin-bottom: 10px;
}

@media (min-width: 992px) {
    .three-btn a {
        margin-bottom: 0;
    }
}

.collapse ul {
    display: inline-block;
}

.marg10 {
    margin: 10px;
}

.sideMenu {
    display: none;
    margin-top: 100px;
}

@media (min-width: 767px) {
    .sideMenu {
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -ms-flex-item-align: start;
        -webkit-align-self: flex-start;
        -moz-align-self: flex-start;
        align-self: flex-start;
        -webkit-box-orient: vertical;
        -moz-box-orient: vertical;
        -webkit-flex-direction: column;
        -moz-flex-direction: column;
        -ms-flex-direction: column;
        flex-direction: column;
        flex: 0 0 16.666667%;
        padding-left: 45px;
        margin-right: 45px;
    }
}

@media (min-width: 992px) {
    .sideMenu {
        padding-left: 45px;
    }
}

@media (min-width: 1200px) {
    .sideMenu {
        padding-left: 60px;
    }
}

@media (min-width: 1365px) {
    .sideMenu {
        padding-left: 160px;
    }
}

.sideMenu .item {
    margin-bottom: 15px;
}

.sideMenu .item a {
    font-weight: 600;
    font-size: 10px;
    color: #2969F2;
    letter-spacing: 2px;
    line-height: 16px;
    text-decoration: none !important;
}

.sideContent {
    flex: 0 1 100%;
    margin-left: 20px;
    margin-right: 20px;
}

@media (min-width: 767px) {
    .sideContent {
        margin-left: 40px;
        margin-right: 40px;
    }
}

@media (min-width: 992px) {
    .sideContent {
        padding-top: 15px;
        margin-right: 45px;
    }
}

@media (min-width: 1365px) {
    .sideContent {
        margin-right: 175px;
    }
}

.imgTextPodHorz {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 45px;
}

@media (min-width: 992px) {
    .imgTextPodHorz {
        -webkit-box-orient: horizontal;
        -moz-box-orient: horizontal;
        -webkit-flex-direction: row;
        -moz-flex-direction: row;
        -ms-flex-direction: row;
        flex-direction: row;
        margin-bottom: 60px;
    }
}

.imgTextPodHorz:nth-child(even) .sixtyPerc {
    -webkit-box-ordinal-group: 1;
    -moz-box-ordinal-group: 0;
    -ms-flex-order: 0;
    -webkit-order: 0;
    -moz-order: 0;
    order: 0;
}

.imgTextPodHorz:nth-child(even) .fortyPerc {
    -webkit-box-ordinal-group: 2;
    -moz-box-ordinal-group: 1;
    -ms-flex-order: 1;
    -webkit-order: 1;
    -moz-order: 1;
    order: 1;
}

.flex-row {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: start;
    -moz-box-pack: start;
    -webkit-flex-pack: start;
    -ms-flex-pack: start;
    -moz-justify-content: flex-start;
    -webkit-justify-content: flex-start;
    justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
}

/* HOVER CONTENT EXPANSION */
.spacer30 {
    height: 30px;
}

.hover-expansion {
    position: relative;
}

.hover-expansion .title {
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 16px;
    line-height: 22px;
}

@media (min-width: 992px) {
    .hover-expansion .title {
        font-size: 22px;
        line-height: 28px;
    }
}

.hover-expansion .sub-title {
    margin-top: 5px;
    margin-bottom: 15px;
    display: inline-block;
    font-size: 16px;
    line-height: 20px;
    font-weight: 600;
}

@media (min-width: 992px) {
    .hover-expansion .sub-title {
        font-size: 22px;
        line-height: 26px;
    }
}

.hover-expansion .sub-title.smaller {
    margin-top: 0;
}

@media (min-width: 992px) {
    .hover-expansion .sub-title.smaller {
        font-size: 20px;
        line-height: 22px;
    }
}

.hover-expansion .col {
    margin: 0 -15px;
}

@media (min-width: 1200px) {
    .hover-expansion .col {
        margin: 0 -30px;
    }
}

.hover-expansion .col article {
    flex-grow: 1;
    flex-basis: 0;
    margin: 0 15px -45px;
    padding-bottom: 45px;
    cursor: pointer;
}

.hover-expansion .col article.pad {
    cursor: default;
}

@media (min-width: 1200px) {
    .hover-expansion .col article {
        margin-left: 30px;
        margin-right: 30px;
    }
}

.hover-expansion .col article a {
    padding: 30px 0 0;
}

@media (min-width: 767px) {
    .hover-expansion .col article a {
        padding: 30px 0;
    }
}

@media (min-width: 1365px) {
    .hover-expansion .col article a {
        padding: 30px;
    }
}

.hover-expansion__hide {
    display: none;
    width: 100%;
    left: 0;
    right: 0;
    z-index: 9999;
    background-color: var(--lightGrey);
    transition: all .2s linear;
    position: fixed;
    top: 0;
    bottom: 0;
    overflow: auto;
    padding-top: 15px;
}

@media (min-width: 767px) {
    .hover-expansion__hide {
        position: absolute;
        top: 100%;
        bottom: auto;
        padding-top: 0;
    }
}

.hover-expansion__hide .close {
    width: 35px;
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 10px !important;
    opacity: 1;
    z-index: 999;
}

.hover-expansion__hide .col article {
    padding-bottom: 30px;
}

@media (min-width: 767px) {
    .hover-expansion__hide .col article {
        padding-bottom: 45px;
    }
}

.hover-expansion__carousel {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    background-color: var(--lightGrey);
    padding-top: 15px;
    width: 100%;
}

@media (min-width: 767px) {
    .hover-expansion__carousel {
        padding-top: 0;
    }
}

.hover-expansion__carousel .col article {
    padding-bottom: 30px;
}

@media (min-width: 767px) {
    .hover-expansion__carousel .col article {
        padding-bottom: 45px;
    }
}

.hover-expansion__carousel .close {
    width: 35px;
    position: absolute;
    top: 5px;
    right: 5px;
    padding: 10px !important;
    opacity: 1;
    z-index: 999;
}

.hover-expansion article {
    border-bottom: none;
    padding: 30px !important;
}

.hover-expansion article.pad {
    padding: 60px 0 0 !important;
    margin-bottom: 0;
}

@media (min-width: 767px) {
    .hover-expansion article.pad {
        padding: 30px 0 !important;
    }
}

.hover-expansion article.pad a {
    padding: 0 !important;
}

.hover-expansion article .content p {
    margin-bottom: 10px;
    font-size: 16px;
    line-height: 22px;
}

@media (min-width: 767px) {
    .hover-expansion article.active {
        background: var(--lightGrey);
    }
}

@media (min-width: 767px) {
    .hover-expansion article.active:after {
        content: "";
        width: 0;
        height: 0;
        box-sizing: border-box;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid var(--lightGrey);
        position: absolute;
        transition: opacity .2s;
        bottom: 0;
        opacity: 1;
        pointer-events: initial;
    }
}

@media (min-width: 767px) {
    .hover-expansion article.arrow:after {
        content: "";
        width: 0;
        height: 0;
        box-sizing: border-box;
        border-left: 15px solid transparent;
        border-right: 15px solid transparent;
        border-bottom: 15px solid var(--lightGrey);
        position: absolute;
        opacity: 0;
        transition: opacity .2s;
        pointer-events: none;
        bottom: 0;
    }
}

.hover-expansion article.arrow:hover {
    background: transparent;
}

.hover-expansion article.arrow:hover .hover-expansion__hide {
    visibility: visible;
    opacity: 1;
}

.hover-expansion .noHover:hover {
    background-color: transparent;
}

.hover-expansion .productsLead {
    margin-top: 0;
    padding-top: 15px;
}

.hover-expansion .owl-stage {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.hover-expansion .owl-item {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    height: auto !important;
}

.hover-expansion .owl-carousel {
    display: none;
}

@media (min-width: 767px) {
    .hover-expansion .owl-carousel {
        display: block;
    }
}

.hover-expansion .dots-container {
    margin: 0 -60px;
}

.owl-carousel-education .owl-dots {
    display: none !important;
}

/* JUMP MENU */
.jump-menu {
    padding-top: 5px !important;
    padding-bottom: 5px !important;
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    background-color: var(--lightGrey);
}

@media (min-width: 992px) {
    .jump-menu {
        padding-top: 0 !important;
        padding-bottom: 0 !important;
    }
}

.jump-menu span {
    letter-spacing: 2px;
    margin-left: 10px;
}

@media (min-width: 992px) {
    .jump-menu span {
        display: none;
    }
}

.jump-menu .navbar-header {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}

@media (min-width: 992px) {
    .jump-menu .navbar-header {
        display: inline-block;
    }
}

.jump-menu .navbar-collapse {
    text-align: center;
    height: auto !important;
}

.jump-menu button {
    margin-top: 0 !important;
    margin-bottom: 0 !important;
}

.jump-menu a {
    font-weight: 600;
    letter-spacing: 2px;
    display: block;
    margin: 20px;
}

@media (min-width: 992px) {
    .jump-menu a {
        display: inline-block;
        margin-top: 25px;
        margin-bottom: 25px;
    }
}

.jump-menu.sticky {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 9999;
}

/* MEGA MENU */
@media (max-width: 767px) {
    #home nav {
        height: 74px !important;
    }
}

@media (min-width: 767px) {
    #home nav {
        height: 36px !important;
    }
}

@media (min-width: 992px) {
    #home nav {
        height: 36px !important;
    }
}

.c-mega-nav {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    z-index: 999;
    font-family: 'Red Hat Display', sans-serif;
}

@media (max-width: 767px) {
    .c-mega-nav {
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        padding-left: 20px;
        padding-right: 20px;
        background: #ffffff;
        height: 74px;
        border-bottom: 1px solid var(--lightGrey);
        position: relative;
        z-index: 11;
    }
}

@media (min-width: 767px) {
    .c-mega-nav {
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -webkit-flex-pack: justify;
        -ms-flex-pack: justify;
        -moz-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        position: relative;
        background-color: #06103D;
        height: 50px;
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 992px) {
    .c-mega-nav {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav {
        padding-left: 160px;
        padding-right: 160px;
    }
}

@media (max-width: 767px) {
    .c-mega-nav__logo--mobile {
        display: inline-block;
        height: 40px;
    }
}

@media (min-width: 767px) {
    .c-mega-nav__logo--mobile {
        display: none;
    }
}

@media (max-width: 767px) {
    .c-mega-nav__logo--desktop {
        display: none;
    }
}

@media (min-width: 767px) {
    .c-mega-nav__logo--desktop {
        display: inline-block;
        height: 25px;
        margin-right: 25px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__logo--desktop {
        margin-right: 65px;
    }
}

@media (max-width: 767px) {
    .c-mega-nav__icons--mobile {
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-pack: end;
        -moz-box-pack: end;
        -webkit-flex-pack: end;
        -ms-flex-pack: end;
        -moz-justify-content: flex-end;
        -webkit-justify-content: flex-end;
        justify-content: flex-end;
        margin-top: 10px;
    }
}

@media (min-width: 767px) {
    .c-mega-nav__icons--mobile {
        display: none;
    }
}

.c-mega-nav__icons--mobile .search-icon {
    margin-top: 2px;
    margin-right: 20px;
}

.c-mega-nav__navbar {
    height: 100%;
}

@media (max-width: 767px) {
    .c-mega-nav__navbar--mobile {
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-box-pack: justify;
        -moz-box-pack: justify;
        -webkit-flex-pack: justify;
        -ms-flex-pack: justify;
        -moz-justify-content: space-between;
        -webkit-justify-content: space-between;
        justify-content: space-between;
        width: 100%;
    }
}

@media (min-width: 767px) {
    .c-mega-nav__navbar--mobile {
        display: none;
    }
}

@media (max-width: 767px) {

    .c-mega-nav__navbar--left,
    .c-mega-nav__navbar--right {
        display: none;
    }
}

@media (min-width: 767px) {

    .c-mega-nav__navbar--left,
    .c-mega-nav__navbar--right {
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        -webkit-box-pack: start;
        -moz-box-pack: start;
        -webkit-flex-pack: start;
        -ms-flex-pack: start;
        -moz-justify-content: flex-start;
        -webkit-justify-content: flex-start;
        justify-content: flex-start;
    }
}

.c-mega-nav__navbar .search-link {
    box-shadow: inset 0 0 0 0 #2969F2;
    width: auto;
}

.c-mega-nav__navbar .search-link a span {
    color: #ffffff;
    margin-right: 5px;
    text-transform: none;
    font-weight: 400;
}

@media (min-width: 767px) {
    .c-mega-nav__navbar .search-link a span {
        font-size: 12px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__navbar .search-link a span {
        font-size: 14px;
    }
}

@media (min-width: 767px) {
    .c-mega-nav__navbar .search-link .search-icon {
        vertical-align: baseline;
    }
}

.c-mega-nav__navbar .search-close {
    display: none;
    width: auto;
    background: #ffffff;
    margin-right: 0 !important;
}

.c-mega-nav__navbar .search-close span {
    color: #2969F2;
    margin-right: 12px;
}

@media (max-width: 767px) {
    .c-mega-nav__navbar .search-close .search-icon {
        margin-top: 4px;
    }
}

@media (min-width: 767px) {
    .c-mega-nav__navbar .search-close .search-icon {
        margin-bottom: -2px;
        vertical-align: baseline;
    }
}

@media (min-width: 767px) {

    .c-mega-nav__navbar .search-link,
    .c-mega-nav__navbar .search-close {
        margin-left: 20px;
    }
}

@media (min-width: 992px) {

    .c-mega-nav__navbar .search-link,
    .c-mega-nav__navbar .search-close {
        margin-left: 30px;
    }
}

@media (min-width: 767px) {

    .c-mega-nav__navbar .search-link a,
    .c-mega-nav__navbar .search-close a {
        font-size: 12px;
        padding: 16px 10px 14px !important;
    }
}

@media (min-width: 1365px) {

    .c-mega-nav__navbar .search-link a,
    .c-mega-nav__navbar .search-close a {
        font-size: 14px;
    }
}

.c-mega-nav__language {
    margin-left: 0;
    margin-right: 0;
}

.c-mega-nav__language-link {
    text-transform: uppercase;
    color: #ffffff;
}

@media (min-width: 767px) {
    .c-mega-nav__language-link {
        font-size: 12px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__language-link {
        font-size: 14px;
    }
}

.c-mega-nav__language-link:hover {
    color: #ffffff;
}

.c-mega-nav__language-link.active {
    background-color: transparent;
    font-weight: 700;
}

.c-mega-nav__language-seperator {
    color: #ffffff;
    margin-right: 3px;
}

.c-mega-nav__link {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    color: #ffffff;
    height: 100%;
    position: relative;
}

@media (min-width: 767px) {
    .c-mega-nav__link {
        font-size: 12px;
        margin: 0 15px;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__link {
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__link {
        font-size: 14px;
        margin-left: 30px;
        margin-right: 30px;
    }
}

.c-mega-nav__link a {
    text-align: center;
    color: #ffffff;
}

.c-mega-nav__link a:hover,
.c-mega-nav__link a:active,
.c-mega-nav__link a:focus {
    color: #ffffff;
    font-weight: 600;
}

.c-mega-nav__link a:before {
    display: block;
    content: attr(title);
    font-weight: 600;
    height: 0;
    overflow: hidden;
    visibility: hidden;
}

.c-mega-nav__close {
    position: absolute;
    top: 12px;
    cursor: pointer;
}

@media (min-width: 767px) {
    .c-mega-nav__close {
        right: 20px;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__close {
        right: 60px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__close {
        right: 160px;
    }
}

.c-mega-nav__close-img {
    width: 16px;
    height: 16px;
}

.c-mega-nav__dropdown {
    height: 100%;
}

.c-mega-nav__dropdown--active .c-mega-nav__dropdown-content {
    display: block;
}

.c-mega-nav__dropdown .c-mega-nav__link--active {
    color: #ffffff;
    font-weight: 600;
}

.c-mega-nav__dropdown .c-mega-nav__link--active:after {
    content: "";
    width: 0;
    height: 0;
    box-sizing: border-box;
    border-left: 14px solid transparent;
    border-right: 14px solid transparent;
    border-bottom: 10px solid #ffffff;
    position: absolute;
    opacity: 1;
    bottom: 0;
    left: 50%;
    margin-left: -14px;
}

.c-mega-nav__dropdown-content {
    display: none;
    position: absolute;
    background-color: #ffffff;
    width: 100%;
    left: 0;
    z-index: 999;
}

.c-mega-nav__row {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

.c-mega-nav__row--top {
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
}

@media (min-width: 767px) {
    .c-mega-nav__row--top {
        min-height: 390px;
        padding: 40px 20px 30px;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__row--top {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__row--top {
        min-height: 480px;
        padding-bottom: 40px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__row--top {
        padding-left: 160px;
        padding-right: 160px;
    }
}

.c-mega-nav__row--bottom {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    background-color: rgba(217, 231, 245, 0.5);
}

@media (min-width: 767px) {
    .c-mega-nav__row--bottom {
        padding: 20px;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__row--bottom {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__row--bottom {
        padding-top: 30px;
        padding-bottom: 30px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__row--bottom {
        padding-left: 145px;
        padding-right: 145px;
    }
}

.c-mega-nav__list-items,
.c-mega-nav__product {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
}

@media (min-width: 767px) {
    .c-mega-nav__list-items {
        flex: 0 0 375px;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__list-items {
        flex: 0 0 335px;
    }
}

@media (min-width: 1200px) {
    .c-mega-nav__list-items {
        flex: 0 0 355px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__list-items {
        flex: 0 0 415px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__list-items {
        flex: 0 0 475px;
    }
}

.c-mega-nav__column--L1 {
    border-right: 1px solid rgba(217, 231, 245, 0.75);
}

@media (min-width: 767px) {
    .c-mega-nav__column--L1 {
        flex: 0 0 150px;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__column--L1 {
        flex: 0 0 130px;
    }
}

@media (min-width: 1200px) {
    .c-mega-nav__column--L1 {
        flex: 0 0 150px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__column--L1 {
        flex: 0 0 165px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__column--L1 {
        flex: 0 0 200px;
    }
}

.c-mega-nav__column--L1 .c-mega-nav__dropdown-link {
    border-bottom: 1px solid transparent;
}

@media (min-width: 767px) {
    .c-mega-nav__column--L1 .c-mega-nav__dropdown-link {
        padding: 10px 25px;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__column--L1 .c-mega-nav__dropdown-link {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__column--L1 .c-mega-nav__dropdown-link {
        padding: 15px 25px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__column--L1 .c-mega-nav__dropdown-link {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.c-mega-nav__column--L1 .c-mega-nav__dropdown-link:hover,
.c-mega-nav__column--L1 .c-mega-nav__dropdown-link--active {
    color: #2969F2;
    background-color: rgba(217, 231, 245, 0.5);
    border-bottom: 1px solid #2969F2;
}

.c-mega-nav__column--L2 {
    border-right: 1px solid rgba(217, 231, 245, 0.75);
}

@media (min-width: 767px) {
    .c-mega-nav__column--L2 {
        flex: 0 0 200px;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__column--L2 {
        flex: 0 0 180px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__column--L2 {
        flex: 0 0 225px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__column--L2 {
        flex: 0 0 250px;
    }
}

.c-mega-nav__column--L2 .c-mega-nav__dropdown-link {
    border-bottom: 1px solid transparent;
    position: relative;
}

@media (min-width: 767px) {
    .c-mega-nav__column--L2 .c-mega-nav__dropdown-link {
        padding: 10px 25px;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__column--L2 .c-mega-nav__dropdown-link {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__column--L2 .c-mega-nav__dropdown-link {
        padding-top: 15px;
        padding-bottom: 15px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__column--L2 .c-mega-nav__dropdown-link {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.c-mega-nav__column--L2 .c-mega-nav__dropdown-link:hover,
.c-mega-nav__column--L2 .c-mega-nav__dropdown-link--active,
.c-mega-nav__column--L2 .c-mega-nav__dropdown-link--active-no-caret {
    color: #2969F2;
    background-color: rgba(217, 231, 245, 0.5);
}

.c-mega-nav__column--L2 .c-mega-nav__dropdown-link--active {
    border-bottom: 1px solid #2969F2;
}

.c-mega-nav__column--L2 .c-mega-nav__dropdown-link--active:after,
.c-mega-nav__column--L2 .c-mega-nav__dropdown-link--caret:after {
    content: "►";
    position: absolute;
}

@media (min-width: 767px) {

    .c-mega-nav__column--L2 .c-mega-nav__dropdown-link--active:after,
    .c-mega-nav__column--L2 .c-mega-nav__dropdown-link--caret:after {
        right: 10px;
        top: 14px;
        font-size: 8px;
    }
}

@media (min-width: 1365px) {

    .c-mega-nav__column--L2 .c-mega-nav__dropdown-link--active:after,
    .c-mega-nav__column--L2 .c-mega-nav__dropdown-link--caret:after {
        right: 20px;
        top: 19px;
        font-size: 10px;
    }
}

.c-mega-nav__column--L3 {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    background-position: center;
}

@media (min-width: 767px) {
    .c-mega-nav__column--L3 {
        padding: 0 15px;
        flex-grow: 1;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__column--L3 {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__column--L3 {
        flex: 0 0 auto;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__column--L3 {
        padding-left: 30px;
        padding-right: 30px;
    }
}

@media (min-width: 767px) {
    .c-mega-nav__column--L3 div {
        flex: 0 0 180px;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__column--L3 div {
        flex: 0 0 140px;
    }
}

@media (min-width: 1200px) {
    .c-mega-nav__column--L3 div {
        flex: 0 0 165px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__column--L3 div {
        flex: 0 0 auto;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__column--L3 div#l2-patient-simulation_3941 {
        flex: 0 0 165px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__column--L3 div#l2-patient-simulation_3941 {
        flex: 0 0 auto;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__column--L3 div#l2-patient-simulation_3941:first-child {
        flex: 0 0 115px;
    }
}

@media (min-width: 1200px) {
    .c-mega-nav__column--L3 div#l2-patient-simulation_3941:first-child {
        flex: 0 0 165px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__column--L3 div#l2-patient-simulation_3941:first-child {
        flex: 0 0 auto;
    }
}

.c-mega-nav__column--L3 .c-mega-nav__dropdown-link {
    border-bottom: 1px solid transparent;
}

@media (min-width: 767px) {
    .c-mega-nav__column--L3 .c-mega-nav__dropdown-link {
        padding: 10px 40px 10px 20px;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__column--L3 .c-mega-nav__dropdown-link {
        padding-left: 10px;
        padding-right: 10px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__column--L3 .c-mega-nav__dropdown-link {
        padding: 15px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__column--L3 .c-mega-nav__dropdown-link {
        padding-left: 30px;
        padding-right: 30px;
    }
}

.c-mega-nav__column--L3 .c-mega-nav__dropdown-link span {
    font-weight: 600;
}

.c-mega-nav__column--L3.advertisement {
    flex: 1;
}

@media (min-width: 992px) {
    .c-mega-nav__column--L3.advertisement {
        position: relative;
        background-image: url("https://via.placeholder.com/1200");
        background-position: center;
        background-size: cover;
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
    }
}

.c-mega-nav__column--L4 {
    display: none;
}

@media (min-width: 992px) {
    .c-mega-nav__column--L4 {
        position: relative;
        background-image: url("https://via.placeholder.com/600");
        background-position: center;
        background-size: cover;
        color: #ffffff;
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        -webkit-box-align: center;
        -ms-flex-align: center;
        -webkit-align-items: center;
        -moz-align-items: center;
        align-items: center;
        flex: 0 0 300px;
        padding: 0 20px;
    }
}

@media (min-width: 1200px) {
    .c-mega-nav__column--L4 {
        flex: 0 0 400px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__column--L4 {
        flex: 0 0 475px;
        padding-left: 40px;
        padding-right: 75px;
        padding-bottom: 20px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__column--L4 {
        flex: 0 0 600px;
        padding-right: 40px;
    }
}

.c-mega-nav__dropdown-link {
    color: #2C2C2C;
    display: block;
}

@media (min-width: 767px) {
    .c-mega-nav__dropdown-link {
        font-size: 12px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__dropdown-link {
        font-size: 14px;
    }
}

.c-mega-nav__dropdown-link:hover,
.c-mega-nav__dropdown-link--active,
.c-mega-nav__dropdown-link--active-no-caret {
    color: #2969F2;
    text-shadow: 0 0 1px #2969F2;
}

.c-mega-nav__title,
.c-mega-nav__subtitle,
.c-mega-nav__text {
    position: relative;
    z-index: 2;
}

.c-mega-nav__title,
.c-mega-nav__subtitle {
    margin-bottom: 10px;
}

@media (min-width: 992px) {

    .c-mega-nav__title,
    .c-mega-nav__subtitle {
        font-size: 14px;
    }
}

@media (min-width: 1365px) {

    .c-mega-nav__title,
    .c-mega-nav__subtitle {
        font-size: 16px;
    }
}

.c-mega-nav__title span {
    font-weight: 600;
}

.c-mega-nav__subtitle {
    font-weight: 600;
}

@media (min-width: 992px) {
    .c-mega-nav__text p {
        font-size: 12px;
        line-height: 18px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__text p {
        font-size: 14px;
        line-height: 22px;
    }
}

.c-mega-nav__opacity {
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.7);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.c-mega-nav__btn {
    color: #ffffff;
    background-color: #2969F2;
    text-transform: uppercase;
    text-align: center;
    font-weight: 600;
    position: relative;
}

@media (min-width: 767px) {
    .c-mega-nav__btn {
        width: calc(25% - 30px);
        margin: 0 15px;
        padding: 10px;
        font-size: 14px;
    }
}

@media (min-width: 992px) {
    .c-mega-nav__btn {
        font-size: 12px;
    }
}

@media (min-width: 1365px) {
    .c-mega-nav__btn {
        width: calc(25% - 60px);
        margin-left: 30px;
        margin-right: 30px;
        padding: 15px 20px;
        font-size: 14px;
    }
}

@media (min-width: 1910px) {
    .c-mega-nav__btn {
        font-size: 16px;
    }
}

.c-mega-nav__btn:hover,
.c-mega-nav__btn:active {
    color: #ffffff;
    background-color: #2969F2;
}

.l3-advertisement {
    cursor: pointer;
}

@media (max-width: 767px) {
    .c-mega-search {
        display: none;
    }
}

@media (min-width: 767px) {
    .c-mega-search {
        top: 50px !important;
    }
}

/* MOBILE HOVER */
@media (min-width: 767px) {
    .contextualHover {
        opacity: 0;
        visibility: hidden;
        transition: all 0.2s linear;
        -webkit-transition: all 0.2s linear;
        -moz-transition: all 0.2s linear;
        -o-transition: all 0.2s linear;
        background: rgba(33, 38, 64, 0.8);
        height: 100%;
        width: 100%;
        position: fixed;
        z-index: 2;
    }
}

/* MOBILE SEARCH */
#mobileSearch {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.75);
    opacity: 0;
}

@media (max-width: 767px) {
    #mobileSearch #searchNav {
        display: -webkit-box;
        display: -moz-box;
        display: -webkit-flexbox;
        display: -ms-flexbox;
        display: -webkit-flex;
        display: flex;
        top: 74px;
    }
}

@media (min-width: 767px) {
    #mobileSearch #searchNav {
        display: none;
    }
}

#mobileSearch #searchNav .loupe {
    padding-top: 20px;
}

#mobileSearch.open {
    opacity: 1;
    display: block !important;
    z-index: 99999;
}

#mobileSearch .search-close {
    display: block;
}

/* BODY BLUR */
.blur.searchOpen {
    transition: all .25s ease-in-out;
    filter: blur(3.5px);
}

/* MOBILE MENU */
#menuMobile {
    position: absolute;
    top: 0;
    z-index: 9999999999;
    width: 100%;
    background: #06103D;
}

#menuMobile .topbar,
#menuMobile .lang {
    background: #06103D;
}

#menuMobile .scroll {
    overflow-y: auto;
    top: 0px;
    height: calc(100% - 140px);
}

#menuMobile .topbar {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    height: 74px;
    padding-left: 20px;
    padding-right: 20px;
    border-bottom-color: rgba(217, 231, 245, 0.4);
}

#menuMobile .topbar .leftCol,
#menuMobile .topbar .rightCol {
    float: none;
    height: auto;
    padding: 0;
}

#menuMobile .topbar .rightCol {
    margin-top: 8px;
}

#menuMobile .topbar .rightCol div:last-child {
    margin-top: 0;
    margin-right: 4px;
}

#menuMobile .lang {
    padding-top: 0;
}

#menuMobile .lang a {
    display: inline;
}

#menuMobile .lang a.active {
    background: transparent;
}


#menu .lang span:first-child,
#menuMobile .lang span:first-child {
    margin-top: 22px;
}



/* CONTEXTUAL */
@media (min-width: 992px) {
    .contextual {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (min-width: 1365px) {
    .contextual {
        padding-left: 160px;
        padding-right: 160px;
    }
}

/* .contextual .menu {
  text-align: left; } */
.contextual .menu .navList li.root {
    padding: 35px 8px 35px 0;
}

/* MAINCONTENT FULL */
@media (min-width: 1200px) {
    .mainContent.full {
        padding-left: 60px;
        padding-right: 60px;
    }
}

@media (min-width: 1365px) {
    .mainContent.full {
        padding-left: 160px;
        padding-right: 160px;
    }
}

@media (min-width: 1910px) {
    .mainContent.full {
        padding-left: 300px;
        padding-right: 300px;
    }
}

/* SEARCH DROPDOWN */
.searchform {
    position: relative;
}

.searchTerm {
    margin-bottom: 8px;
}

.searchTerm-dropdown {
    position: absolute;
    background: white;
    width: calc(100% + 80px);
    padding: 0;
    left: -30px;
    border-left: 1px solid var(--lightGrey);
    border-right: 1px solid var(--lightGrey);
    border-bottom: 1px solid var(--lightGrey);
}

.searchTerm-dropdown ul {
    margin: 0;
    list-style: none;
    font-size: 18px;
}

.searchTerm-dropdown ul li {
    cursor: pointer;
    padding: 20px 30px;
    border-top: 1px solid var(--lightGrey);
    font-weight: 600;
}

.searchTerm-dropdown ul li:hover {
    background: var(--lightGrey);
}

/* SEARCH PAGE */
.container-fluid.full {
    padding: 0 5px;
}

@media (min-width: 992px) {
    .container-fluid.full {
        padding: 0 45px;
    }
}

.border-top {
    border-top: 1px solid var(--lightGrey);
}

.search-results-header {
    width: 100%;
    margin: 40px 0;
    position: relative;
}

@media (min-width: 992px) {
    .search-results-header {
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (min-width: 1200px) {
    .search-results-header {
        margin-left: 0;
        margin-right: 0;
    }
}

.search-results-header img {
    vertical-align: baseline;
}

.search-results-header__text {
    font-size: 14px;
    line-height: 14px;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
    margin-top: 0;
    margin-bottom: 5px;
    display: inline-block;
}

.search-results-header__input {
    width: 100%;
    border: none;
    outline: none;
    font-size: 36px;
    line-height: 45px;
    color: #2969F2;
    border: 1px solid var(--lightGrey);
    padding: 10px 15px;
    margin-bottom: 0;
}

.search-results-header__input::placeholder {
    color: var(--lightGrey);
}

.search-results-header__input::-webkit-input-placeholder {
    color: var(--lightGrey);
}

.search-results-header__input::-moz-placeholder {
    color: var(--lightGrey);
}

.search-results-header__input:-ms-input-placeholder {
    color: var(--lightGrey);
}

.search-results-header__input:-moz-placeholder {
    color: var(--lightGrey);
}

.search-results-header__loupe {
    position: absolute;
    right: 15px;
    bottom: 15px;
}

.search-category {
    color: #06103D;
}

.search-category:after {
    content: "";
    display: block;
    border-bottom: 1px solid var(--lightGrey);
    margin: 10px 15px 0;
}

@media (min-width: 767px) {
    .search-category:after {
        margin: 0 15px;
    }
}

.search-category__title {
    font-size: 18px;
    line-height: 23px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.search-category__count {
    font-weight: 400;
}

.search-category .text-right {
    text-align: left;
}

@media (min-width: 767px) {
    .search-category .text-right {
        text-align: right;
    }
}

.search-listing {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0 0 50px;
    margin-right: 0;
}

@media screen and (min-width: 480px) {
    .search-listing {
        margin-right: -20px;
    }
}

@media (min-width: 992px) {
    .search-listing {
        margin-right: -30px;
    }
}

@media (min-width: 1200px) {
    .search-listing {
        margin-right: -60px;
    }
}

.search-listing .search-listing-item + .search-listing-item {
    margin-right: 0;
}

@media screen and (min-width: 480px) {
    .search-listing .search-listing-item + .search-listing-item {
        margin-right: 20px;
    }
}

@media (min-width: 992px) {
    .search-listing .search-listing-item + .search-listing-item {
        margin-right: 30px;
    }
}

@media (min-width: 1200px) {
    .search-listing .search-listing-item + .search-listing-item {
        margin-right: 60px;
    }
}

.search-listing.carousel {
    display: inline-block;
    margin-right: 0;
}

.search-listing.carousel .search-listing-item + .search-listing-item {
    margin-right: 0;
}

.search-listing.carousel .search-listing-item {
    flex-basis: 100%;
}

.search-listing.carousel .search-listing-item:first-child {
    margin-right: 0;
}

.search-listing.carousel .owl-stage {
    display: flex;
}

.search-listing.carousel .owl-item {
    display: flex;
    flex: 1 0 auto;
    padding-right: 0;
}

@media (min-width: 1200px) {
    .search-listing.carousel .owl-item {
        padding-right: 10px;
    }
}

.search-listing.carousel .owl-prev,
.search-listing.carousel .owl-next {
    position: absolute;
    top: 35%;
    margin-top: -24px;
    width: 34px;
    height: 48px;
    padding: 10px;
}

.search-listing.carousel .owl-prev {
    display: none !important;
    left: -50px;
}

.search-listing.carousel .owl-next {
    right: -45px;
}

.search-listing.carousel i {
    display: inline-block;
    width: 14px;
    height: 28px;
}

.search-listing.carousel i.left {
    background: url("../images/previous.svg") no-repeat;
}

.search-listing.carousel i.right {
    background: url("../images/next.svg") no-repeat;
}

.search-listing-item {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-top: 20px;
    margin-bottom: 10px;
    border: none;
    background-color: #FAFAFA;
    flex-basis: 100%;
}

@media screen and (min-width: 480px) {
    .search-listing-item {
        flex-basis: calc(50% - 20px);
    }
}

@media (min-width: 767px) {
    .search-listing-item {
        flex-basis: calc(33.333333% - 20px);
    }
}

@media (min-width: 992px) {
    .search-listing-item {
        flex-basis: calc(33.333333% - 30px);
    }
}

@media (min-width: 1200px) {
    .search-listing-item {
        flex-basis: calc(33.333333% - 60px);
    }
}

.search-listing-item:first-child {
    border: none;
    margin-right: 0;
}

@media screen and (min-width: 480px) {
    .search-listing-item:first-child {
        margin-right: 20px;
    }
}

@media (min-width: 992px) {
    .search-listing-item:first-child {
        margin-right: 30px;
    }
}

@media (min-width: 1200px) {
    .search-listing-item:first-child {
        margin-right: 60px;
    }
}

.search-listing-item__img {
    border: 10px solid #F0F0F0;
    margin-bottom: 25px;
    background-size: cover;
    height: 200px;
}

@media (min-width: 1910px) {
    .search-listing-item__img {
        height: 300px;
    }
}

.search-listing-item__content {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 0 10px;
    flex: 1;
}

.search-listing-item__title {
    font-size: 18px;
    line-height: 21px;
    font-weight: 600;
    margin-bottom: 10px;
}

.search-listing-item__text {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 20px;
}

.search-listing-item__price {
    font-size: 14px;
    line-height: 18px;
    margin-bottom: 12px;
    font-weight: 600;
}

.search-listing-item__view {
    text-transform: uppercase;
    color: #2969F2;
    font-size: 12px;
    letter-spacing: 2.25px;
    font-weight: 600;
    margin-bottom: 5px;
}

.search-listing-item__view:hover {
    background-color: transparent;
}

.search-listing-item__shop {
    background-color: #2969F2;
    color: #ffffff;
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    text-align: center;
    text-transform: uppercase;
    padding: 9px;
}

.search-listing-item__shop:hover {
    background-color: #06103D;
}

.refine-sidebar {
    padding: 25px 20px 30px;
    background-color: var(--lightGrey);
    color: #06103D;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .refine-sidebar {
        margin-bottom: 0;
    }
}

@media (min-width: 1200px) {
    .refine-sidebar {
        margin-right: 30px;
    }
}

.refine-sidebar__title {
    font-size: 18px;
    line-height: 18px;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 15px;
}

.refine-sidebar__list {
    list-style: none;
    margin: 0;
}

.refine-sidebar__list-item {
    font-size: 16px;
    line-height: 30px;
}

.refine-sidebar__anchor {
    color: #06103D;
}

.refine-sidebar__anchor.active {
    color: #2969F2 !important;
    font-weight: 700;
    background-color: transparent;
}

.search-ad {
    margin-bottom: 60px;
}

.search-title {
    font-size: 30px;
    line-height: 30px;
    margin-bottom: 20px;
    color: #06103D;
}

.search-title--border:after {
    content: "";
    display: block;
    border-bottom: 1px solid var(--lightGrey);
    margin: 15px 0 0;
}

.search-options {
    background-color: #FAFAFA;
    color: #06103D;
}

@media (min-width: 767px) {
    .search-options .row {
        width: 100%;
    }
}

.search-options__title {
    font-size: 38px;
    line-height: 43px;
    margin-bottom: 30px;
}

@media (min-width: 992px) {
    .search-options__title {
        margin-bottom: 0;
    }
}

.search-options__subtitle {
    text-transform: uppercase;
    font-size: 18px;
    line-height: 18px;
    font-weight: 600;
    margin-top: 15px;
    margin-bottom: 10px;
}

.search-options__list {
    list-style: none;
    margin: 0;
}

.search-options__list-item {
    font-size: 16px;
    line-height: 26px;
}

.search-options__anchor {
    color: #06103D;
}

.search-options__anchor:hover {
    color: #2969F2;
}


/* RESOURCES & BLOG LISTING */
.resources-blog-listing {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    -moz-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: 0;
}

@media screen and (min-width: 480px) {
    .resources-blog-listing {
        margin-right: -20px;
    }
}

@media (min-width: 992px) {
    .resources-blog-listing {
        margin-right: -30px;
    }
}

@media (min-width: 1365px) {
    .resources-blog-listing {
        margin-right: -120px;
    }
}

.resources-blog-listing .resources-blog-listing-item + .resources-blog-listing-item {
    margin-right: 0;
}

@media screen and (min-width: 480px) {
    .resources-blog-listing .resources-blog-listing-item + .resources-blog-listing-item {
        margin-right: 20px;
    }
}

@media (min-width: 992px) {
    .resources-blog-listing .resources-blog-listing-item + .resources-blog-listing-item {
        margin-right: 30px;
    }
}

@media (min-width: 1365px) {
    .resources-blog-listing .resources-blog-listing-item + .resources-blog-listing-item {
        margin-right: 120px;
    }
}

.resources-blog-listing-item {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    border: none;
    background-color: #ffffff;
    border: 1px solid var(--lightGrey);
    flex-basis: 100%;
    padding: 0;
    margin-bottom: 30px;
}

@media screen and (min-width: 480px) {
    .resources-blog-listing-item {
        flex-basis: calc(50% - 20px);
        margin-bottom: 20px;
    }
}

@media (min-width: 767px) {
    .resources-blog-listing-item {
        flex-basis: calc(25% - 20px);
        margin-bottom: 20px;
    }
}

@media (min-width: 992px) {
    .resources-blog-listing-item {
        flex-basis: calc(25% - 30px);
        margin-bottom: 30px;
    }
}

@media (min-width: 1365px) {
    .resources-blog-listing-item {
        flex-basis: calc(25% - 120px);
        margin-bottom: 95px;
    }
}

.resources-blog-listing-item:first-child {
    border: 1px solid var(--lightGrey);
    margin-right: 0;
}

@media screen and (min-width: 480px) {
    .resources-blog-listing-item:first-child {
        margin-right: 20px;
    }
}

@media (min-width: 992px) {
    .resources-blog-listing-item:first-child {
        margin-right: 30px;
    }
}

@media (min-width: 1365px) {
    .resources-blog-listing-item:first-child {
        margin-right: 120px;
    }
}

.resources-blog-listing-item__img {
    background-size: cover;
    height: 200px;
}

@media (min-width: 1910px) {
    .resources-blog-listing-item__img {
        height: 300px;
    }
}

.resources-blog-listing-item__content {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -webkit-flex-direction: column;
    -moz-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -webkit-flex-pack: justify;
    -ms-flex-pack: justify;
    -moz-justify-content: space-between;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    padding: 30px;
    flex: 1;
}

.resources-blog-listing-item__tag {
    font-size: 14px;
    line-height: 18px;
    font-weight: 600;
    margin-bottom: 10px;
    text-transform: uppercase;
    position: relative;
    margin-left: 32px;
}

.resources-blog-listing-item__tag:before {
    width: 28px;
    height: 25px;
    display: inline-block;
    content: "";
    background-size: contain;
    position: absolute;
    top: -4px;
    left: -32px;
}

.resources-blog-listing-item__tag--ebook {
    color: #266089;
}

.resources-blog-listing-item__tag--ebook:before {
    background-image: url("../images/ebook.jpg");
}

.resources-blog-listing-item__tag--webinar {
    color: #D35641;
}

.resources-blog-listing-item__tag--webinar:before {
    background-image: url("../images/webinar.jpg");
}

.resources-blog-listing-item__tag--resource {
    color: #009300;
}

.resources-blog-listing-item__tag--resource:before {
    background-image: url("../images/resource.jpg");
}

.resources-blog-listing-item__tag--white-paper {
    color: #EEC948;
}

.resources-blog-listing-item__tag--white-paper:before {
    background-image: url("../images/report.jpg");
}

.resources-blog-listing-item__text {
    font-size: 16px;
    line-height: 20px;
    margin-bottom: 0;
}

.resources-blog-listing-item a {
    height: 100%;
}

.mainContent.resources-blog {
    display: -webkit-box;
    display: -moz-box;
    display: -webkit-flexbox;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-orient: horizontal;
    -moz-box-orient: horizontal;
    -webkit-flex-direction: row;
    -moz-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    -moz-align-items: center;
    align-items: center;
}

.resources-blog-dropdown {
    position: relative;
    width: 60%;
    margin-left: 10px;
}

@media (min-width: 767px) {
    .resources-blog-dropdown {
        width: 25%;
        margin-left: 30px;
    }
}

@media (min-width: 1365px) {
    .resources-blog-dropdown {
        width: 15%;
    }
}

@media (min-width: 1910px) {
    .resources-blog-dropdown {
        width: 10%;
    }
}

.resources-blog-dropdown:after {
    content: "";
    position: absolute;
    right: 12px;
    top: 13px;
    width: 0;
    height: 0;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 5px solid #06103D;
}

.resources-blog-dropdown select {
    padding: 6px 16px;
    background: transparent;
    border-radius: 35px;
    font-size: 14px;
    border: 1px solid #b5bac4;
    width: 100%;
}

.resources-blog-dropdown select::placeholder {
    color: #06103D;
}

.sectionBrand.bg-color--lt-lt-blue {
    padding-bottom: 0;
}

@media (min-width: 767px) {
    .sectionBrand.bg-color--lt-lt-blue {
        padding-bottom: 30px;
    }
}

.fullHeader .leftCol h1 {
    font-size: 32px !important;
}

@media (min-width: 375px) {
    .fullHeader .leftCol h1 {
        font-size: 32px !important;
    }
}


@media (min-width: 992px) {
    .fullHeader .leftCol h1 {
        font-size: 40px !important;
    }
}

@media (min-width: 1365px) {
    .fullHeader .leftCol h1 {
        font-size: 48px !important;
    }
}

@media (min-width: 1440px) {
    .fullHeader .leftCol h1 {
        font-size: 64px !important;
    }
}


