:root {
    --blue: #0a2cca;
    --orange: #ff6400;
    --green: #0afb80;
    --black: #1d1d1d;
    --lightgray: #f2f2f2;
    --transition-default: all 0.3s linear;
}


@font-face {
    font-family: "ablack";
    font-style: normal;
    font-weight: normal;
    src: url("/fonts/Aeonik-Black.otf") format("opentype");
}

@font-face {
    font-family: "aregular";
    font-style: normal;
    font-weight: normal;
    src: url("/fonts/Aeonik-Regular.otf") format("opentype");
}

@font-face {
    font-family: "abold";
    font-style: normal;
    font-weight: normal;
    src: url("/fonts/Aeonik-Bold.otf") format("opentype");
}

@font-face {
    font-family: "alight";
    font-style: normal;
    font-weight: normal;
    src: url("/fonts/Aeonik-Light.otf") format("opentype");
}

@font-face {
    font-family: "amedium";
    font-style: normal;
    font-weight: normal;
    src: url("/fonts/Aeonik-Medium.otf") format("opentype");
}





div[data-lastpass-icon-root] {
    display: none;
}

.grecaptcha-badge {
    display: none; /* Dont tell Google :)*/
}

html, body {
    margin: 0px;
    padding: 0px;
    height: 100%;
    width: 100%;
    transition: none;
}

body {
    font-family: "aregular", "Verdana", Helvetica, Arial, sans-serif;
    font-size: 19px;
    color: var(--black);
    background-color: var(--lightgray);
}

::selection {
    background-color: var(--orange);
    color: #fff;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0px;
}

h1 {
    font-size: 62px;
    line-height: 68px;
    margin: 0;
    color: var(--blue);
    word-break: break-word;
    font-family: ablack,Verdana,Helvetica,Arial,sans-serif;
    font-weight: 400;
}

.container {
    width: 1280px;
    margin: auto;
    position: relative;
    height: 100%;
}

.mobile,
.hidden {
    display: none;
}

.popup-wrapper {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.2);
    transition: opacity .8s ease;
    height: 100%;
    overflow-y: scroll;
    z-index: 1000;
    margin: auto;
    text-align: center;
}

    .popup-wrapper .popup {
        padding: 12px 24px 24px 24px;
        margin-right: auto;
        margin-left: auto;
        position: relative;
        background-color: #FFF;
        max-width: 1280px;
        border-radius: 8px;
        margin-top: 15vh;
        display: inline-block;
        text-align: left;
        margin-top: 30px;
        margin-bottom: 30px;
        max-height: calc(100% - 90px);
        overflow: auto;
    }

        .popup-wrapper .popup.vertical-aligned {
            top: 50%;
            transform: translateY(-50%);
            margin-top: 0px;
        }


        .popup-wrapper .popup .close-button {
            position: absolute;
            top: 20px;
            right: 20px;
            padding: 0;
            background: 0 0;
            border: none;
            outline: 0;
            cursor: pointer;
            border-radius: 4px;
            border: 1px solid #ABABAB;
            width: 40px;
            height: 40px;
            z-index: 1000;
        }

            .popup-wrapper .popup .close-button i {
                width: 20px;
                height: 20px;
                background-image: url(/images/close.svg);
                background-repeat: no-repeat;
                background-size: contain;
                display: inline-block;
                left: 0px;
                right: 0px;
                margin: auto;
                top: 50%;
                transform: translateY(-50%);
                position: absolute;
            }

        .popup-wrapper .popup .popup-content .header .title {
            color: #2D3842;
            font-size: 24px;
            font-style: normal;
            font-weight: 600;
            line-height: 160%;
            min-height: 40px;
            padding-right: 40px;
        }

        .popup-wrapper .popup .content {
            margin-top: 24px;
        }

        .popup-wrapper .popup .footer {
            margin-top: 20px;
        }

        .popup-wrapper .popup .footer {
            color: #2D3842;
            font-size: 14px;
            font-style: normal;
            font-weight: 400;
            line-height: normal;
        }

            .popup-wrapper .popup .footer a {
                color: #7CBE27;
                font-size: 14px;
                font-style: normal;
                font-weight: 600;
                line-height: normal;
                display: inline-block;
            }

.popup-active,
.mobile-active,
.search-active {
    overflow: hidden;
}

    .popup-active .popup-wrapper {
        display: block;
    }

        .popup-active .popup-wrapper .popup {
            animation: popup-fade-in linear 0.2s;
        }

            .popup-active .popup-wrapper .popup * {
                transition: none;
            }

            .popup-active .popup-wrapper .popup.fadeout {
                animation: popup-fade-out linear 0.2s;
            }

@keyframes popup-fade-in {
    0% {
        opacity: 0;
        margin-top: -30px;
    }

    100% {
        opacity: 1;
        margin-top: 30px;
    }
}

@keyframes popup-fade-out {
    0% {
        opacity: 1;
        margin-top: 30px;
    }

    100% {
        opacity: 0;
        margin-top: -30px;
    }
}

.chevron {
    background-image: url(/images/chevron.svg);
    background-size: contain;
    height: 13px;
    width: 8px;
    display: inline-block;
    background-repeat: no-repeat;
    position: relative;
    top: 1px;
    margin-left: 10px;
}

.btn,
.button {
    padding-right: 25px;
    padding-top: 8px;
    padding-bottom: 8px;
    padding-left: 25px;
    letter-spacing: 0px;
    border-radius: 8px;
    text-decoration: none;
    position: relative;
    border: none;
    cursor: pointer;
    font-size: 19px;
    font-weight: 600;
    display: inline-block;
    transition: none;
}

    .btn:hover,
    .button:hover {
        box-shadow: 3px 4px 0 var(--blue);
        transform: translateY(-4px);
    }

    .btn.btn-orange,
    .button.btn-orange {
        background-color: var(--orange);
        color: #FFF;
    }

    .btn.btn-green,
    .button.btn-green {
        background-color: var(--green);
        color: var(--black);
    }

    .btn.btn-transparent-blue,
    .button.btn-transparent-blue {
        color: var(--blue);
        border: solid 1px #ABB3E4;
    }

        .btn.btn-transparent-blue .chevron,
        .button.btn-transparent-blue .chevron {
            background-image: url(/images/chevron-blue.svg);
        }


section.padding-bottom--default {
    padding-bottom: 60px;
}

section.padding-bottom--0 {
    padding-bottom: 0px;
}

section.padding-bottom--20 {
    padding-bottom: 20px;
}

section.padding-bottom--40 {
    padding-bottom: 40px;
}

section.padding-bottom--60 {
    padding-bottom: 60px;
}

section.padding-top--default {
    padding-top: 60px;
}

section.padding-top--0 {
    padding-top: 0px;
}

section.padding-top--20 {
    padding-top: 20px;
}

section.padding-top--40 {
    padding-top: 40px;
}

section.padding-top--60 {
    padding-top: 60px;
}


.no-image {
    background: #E0E0E0;
    position: relative;
    width: 100%;
    height: 100%;
    min-height: 50px;
    background-image: url(/images/vvd-default.jpg);
    background-size: cover;
    background-repeat: no-repeat;
}



.iframe-container {
    position: relative;
    height: 0;
    overflow: hidden;
}

    .iframe-container iframe {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

.iframe-container-16x9 {
    padding-bottom: 56.25%;
}

.iframe-container-9x16 {
    padding-bottom: 177.77%; 
}

.iframe-container-4x3 {
    padding-bottom: 75%;
}

.slick-disabled {
    opacity: 0.5;
    cursor: default;
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: flex;
    align-items: center;
}

.button--prev,
.button--next {
    position: absolute;
    height: 48px;
    width: 40px;
    background: #0a2cca;
    z-index: 10;
    cursor: pointer;
    color: transparent;
    outline-color: transparent;
    font-size: 0;
    padding: 0;
    top: 50%;
    transform: translateY(-50%);
}

.button--prev {
    left: -17px;
    display: block;
    border: none;
    background: 0 0;
}

.button--next {
    right: -17px;
    display: block;
    border: none;
    background: 0 0;
}


.button--prev:after {
    content: "";
    background-image: url(/images/left.svg);
    width: 60px;
    height: 60px;
    display: inline-block;
    background-size: 155px;
    background-position: center;
    left: -24px;
    position: relative;
    transition: .5s;
}

.button--next:after {
    content: "";
    background-image: url(/images/right.svg);
    width: 60px;
    height: 60px;
    display: inline-block;
    background-size: 155px;
    background-position: center;
    right: -5px;
    position: relative;
    transition: .5s;
}

.button--prev:hover::after {
    left: -29px;
    transition: .5s;
}

.button--next:hover::after {
    right: -10px;
    transition: .5s;
}

.nothing-found-wrapper {
    display: none;
}

.pagination {
    width: 100%;
    text-align: center;
    position: relative;
}

    .pagination .previous,
    .pagination .next {
        background-image: url(/images/left.svg);
        background-size: contain;
        background-repeat: no-repeat;
        width: 50px;
        height: 50px;
        position: relative;
        cursor: pointer;
        z-index: 10;
        display: inline-block;
        vertical-align: top;
        top: 8px;
    }

    .pagination .next {
        background-image: url(/images/right.svg);
        left: -15px;
    }

    .pagination .previous {
        margin-right: 30px;
        right: -15px;
    }

        .pagination .previous.inactive {
            opacity: 0.5;
        }

    .pagination .next.inactive {
        opacity: 0.5;
    }

    .pagination .page,
    .pagination .active,
    .pagination .separator {
        font-style: normal;
        font-weight: 700;
        font-size: 20px;
        letter-spacing: 0.2px;
        margin-right: 30px;
        color: var(--black);
        text-decoration: none;
        display: inline-block;
        position: relative;
        bottom: 7px;
        vertical-align: bottom;
    }

    .pagination .separator {
        font-weight: 400;
    }

    .pagination .active {
        color: var(--orange);
    }

main {
    min-height: calc(100% - 260px);
}

.rte,
.rte p {
    color: #00011f;
    font-family: alight,Verdana,Helvetica,Arial,sans-serif;
    font-size: 19px;
    letter-spacing: .2px;
    line-height: 28px;
}


    .rte a,
    .rte p a {
        color: #ff6400;
        display: inline-block;
        position: relative;
        text-decoration: none;
    }

        .rte a:after,
        .rte p a:after {
            content: '';
            width: 100%;
            display: inline-block;
            float: left;
            position: absolute;
            height: 2px;
            background: #ff6400;
            left: 0;
            bottom: 0;
            z-index: 2;
        }

    .rte strong {
        font-weight: bolder;
        display: inline-block;
    }

    .rte .page-description {
        color: #00011f;
        font-family: aregular,Verdana,Helvetica,Arial,sans-serif;
        font-size: 24px;
        letter-spacing: .5px;
        line-height: 32px;
        margin-bottom: 48px;
    }

    .rte .large-heading {
        color: #00011f;
        font-family: abold,Verdana,Helvetica,Arial,sans-serif;
        font-size: 38px;
        line-height: 48px;
        margin-bottom: 8px;
    }

    .rte .medium-heading {
        color: #00011f;
        font-family: abold,Verdana,Helvetica,Arial,sans-serif;
        font-size: 24px;
        line-height: 32px;
        margin-bottom: 12px;
    }

    .rte .small-heading {
        color: #00011f;
        font-family: abold,Verdana,Helvetica,Arial,sans-serif;
        font-size: 19px;
        line-height: 28px;
        margin-bottom: 8px;
    }


    .rte h2 {
        margin-bottom: 12px;
        color: #00011f;
        font-family: aregular,Verdana,Helvetica,Arial,sans-serif;
        font-size: 24px;
        letter-spacing: .5px;
        line-height: 32px;
    }

    .rte h3 {
        font-family: ablack,Verdana,Helvetica,Arial,sans-serif;
        color: #0a2cca;
    }


@media (max-width: 1380px) {

    .button--prev {
        left: 12px;
    }

    .button--next {
        right: 22px;
    }

}

@media (max-width: 1360px) {
    .popup-wrapper .popup {
        max-width: calc(100% - 48px - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }
}


@media (max-width: 1280px) {
    .container {
        width: calc(100% - 30px);
        margin-left: 15px;
        margin-right: 15px;
    }
}

@media (max-width: 768px) {
    .button--prev,
    .button--next {        
        height: 30px;
        width: 30px;        
    }
        .button--prev:after,
        .button--next:after {
            background-size: 105px;
        }


    .button--prev {
        left: 12px;
    }

    .button--next {
        right: 22px;
    }
}


@media (max-width: 575px) {

    section.padding-top--default,
    section.padding-top--60 {
        padding-top: 32px;
    }

    section.padding-bottom--default,
    section.padding-bottom--60 {
        padding-bottom: 32px;
    }

    section.padding-top--40 {
        padding-top: 22px;
    }

    section.padding-bottom--40 {
        padding-bottom: 22px;
    }

    .sub-heading {
        width: 100%;
    }
}


@media (max-width: 500px) {

    .pagination .page, .pagination .active, .pagination .separator {
        margin-right: 20px;
    }

    .pagination .previous {
        margin-right: 20px;
    }
}

@media (max-width: 475px) {
    h1 {
        font-size: 48px;
        line-height: 50px;
    }
}

@media (max-width: 430px) {
    .cookieconsent-optout-marketing .yt {
        width: 100%;
    }

    .cookieconsent-optout-marketing .message {
        width: 100%;
    }

        .cookieconsent-optout-marketing .message a {
            width: 100%;
            display: inline-block;
            white-space: normal;
            word-break: break-word;
        }
}


@media (max-width: 375px) {
    .pagination .page,
    .pagination .active,
    .pagination .separator {
        font-size: 15px;
    } 

        .pagination .previous:after,
        .pagination .next:after { 
            top: 8px;
        }

        .pagination .previous:after {
            transform: rotate(180deg);
            top: 4px;
        }

    .pagination .page, .pagination .active, .pagination .separator {
        margin-right: 17px;
    }

    .pagination .previous {
        margin-right: 15px;
    }

    .pagination .page, .pagination .active, .pagination .separator {
        margin-right: 14px;
    }

    h1 {
        font-size: 38px;
        line-height: 40px;
    }
}


