body {
    /*background: #333333;*/
}

.pageWrapper {
    position: relative;
    max-width: 1920px;
    margin: 0 auto;
    overflow: hidden;
    background: #FFFFFF;
    -webkit-box-shadow: 0px 0px 50px rgba(0,0,0,0.2);
    -moz-box-shadow: 0px 0px 50px rgba(0,0,0,0.2);
    box-shadow: 0px 0px 50px rgba(0,0,0,0.2);
}

.content-container {
    width: 1230px;
    max-width: 100%;
    margin: 0 auto;
    padding: 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    /*background: rgba(0,0,0,0.05);*/
}

.primary .content-container {
    width: 1650px;
}

header {
    display: block;
    position: relative;
    z-index: 2;
}

/* Disable Link Highlighting */
header a,
footer a
{
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

    .HomePage.hero header {
        min-height: 100vh;
    }

    header .background {
        position: relative;
        z-index: 1;
    }

    .HomePage header .background {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background-repeat: no-repeat;
        background-position: center center;
        background-size: cover;
    }

    header .background > img {
        display: block;
        height: auto !important;
        max-width: 100%;
        width: 100%;
    }

    .HomePage header .background > img {
        display: block;
        position: absolute;
        z-index: 3;
        left: 0;
        top: 100%;
        height: auto !important;
        /*max-width: 100%;*/
        max-width: 50vh;
    }

    @media (max-height: 700px){
        .HomePage header .background > img {
            max-width: 40vh;
        }
    }

    header .content-container {
        position: relative;
        z-index: 2;
        padding-top: 255px;
    }

    .HomePage header .video-wrapper {
        position: relative;
        height: 100vh;
        overflow: hidden;
    }

    .HomePage header .video-wrapper iframe {
        position: absolute;
        z-index: 1;
        top: 0;
        left: 0;
    }

    .HomePage header .tint {
        position: absolute;
        z-index: 2;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
    }

footer {
    display: block;
    background-color: #73C1BD;
    font-size: 1.15rem;
    line-height: 1.44rem;
}

    footer > img {
        display: block;
        height: auto !important;
        width: 100%;
        max-width: 100%;
        min-width: 100%;
    }

    footer .content-container {
        padding-top: 40px;
        padding-bottom: 40px;
    }

    footer ul.social-links {
        display: flex;
        flex-flow: row nowrap;
        align-items: flex-start;
        justify-content: flex-start;
        width: 150px;
        max-width: 100%;
        margin: 0 0 30px;
        padding: 0;
    }

        footer ul.social-links li {
            flex: 1 1 50px;
            width: 50px;
            display: inline-block;
            margin: 0;
            padding: 0;
        }

            footer ul.social-links a {
                display: block;
                position: relative;
                left: -0.6rem;
                color: #000000;
                font-size: 2.5rem;
                text-decoration: none;
            }

            footer ul.social-links a:hover {
                color: #FFFFFF;
                -webkit-transition: color 200ms;
                -moz-transition: color 200ms;
                -ms-transition: color 200ms;
                -o-transition: color 200ms;
                transition: color 200ms;
            }

    footer ul.footer-navigation {
        display: flex;
        flex-flow: row wrap;
        align-items: stretch;
        align-content: stretch;
        justify-content: flex-start;
        margin: 0 0 10px;
        padding: 0;
        width: auto;
        max-width: 100%;
    }

        footer ul.footer-navigation li {
            flex: 0 0 auto;
            display: block;
            margin: 0 10px 20px 0;
            padding: 0 40px 0 0;
        }

            footer ul.footer-navigation a {
                position: relative;
                display: inline-block;
                text-decoration: none;
                color: #000000;
                font-weight: 400;
            }

            footer ul.footer-navigation .current a {
                color: #FFFFFF;
            }

            footer ul.footer-navigation a:after {
                display: block;
                content: '';
                position: absolute;
                bottom: 0;
                left: 0;
                height: 1px;
                width: 0%;
                border-bottom: 1px solid #000000;
                -webkit-transition: width 0.2s;
                -moz-transition: width 0.2s;
                -ms-transition: width 0.2s;
                -o-transition: width 0.2s;
                transition: width 0.2s;
            }

            footer ul.footer-navigation .current a:after {
                border-bottom-color: #FFFFFF;
            }

            footer ul.footer-navigation .current a:after,
            footer ul.footer-navigation a:hover:after {
                width: 100%;
            }

    footer p.address {
        font-weight: 500;
    }


    .main {
        min-height: 102vh;
        overflow: hidden;
    }

@media (max-width: 1750px) {
    .primary .content-container {
        width: 100vw;
        padding: 0 5vw 0;
    }
}


@media(max-width: 1536px){
    .primary .content-container,
    .content-container {
        width: 100vw;
        padding: 0 9.8vw 0; /* 0 150px 0 */
    }

    header .content-container {
        padding-top: 236px;
    }
}

@media(max-width: 768px){
    .primary .content-container,
    .content-container {
        padding: 0 9.8vw 0; /* 0 75px 0 */
    }

    header .content-container {
        padding-top: 236px;
    }
}

@media(max-width: 375px){
    .primary .content-container,
    .content-container {
        padding: 0 9.8vw 0; /* 0 38px 0 */
    }

    header .content-container {
        padding-top: 200px;
    }
}

.scroll-top {
    display: none;
    position: fixed;
    z-index: 2;
    bottom: 5vw;
    right: 5vw;
    width: calc(1.5vw * 3);
    height: calc(1.5vw * 3);
    font-size: calc(1.5vw * 3);
}

.footer-scroll .scroll-top {
    position: absolute;
}

.back-link {
    display: inline-block;
    position: fixed;
    z-index: 2;
    bottom: 6.5vw;
    left: 5vw;
    width: auto;
    font-size: 2vw;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.footer-scroll .back-link {
    position: absolute;
}

.back-link a {
    display: block;
    position: relative;
    text-decoration: none;
    text-transform: uppercase;
    background: none;
    font-size: 0.7em;
    color: #FFFFFF;
    background: #f6f6f6;
    line-height: 100%;
    padding: 0.7em 1em 0.7em 2.5em;
    font-weight: 500;
    -webkit-box-shadow: 0px 0px 0.5em 0.2em rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 0.5em 0.2em rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 0.5em 0.2em rgba(0, 0, 0, 0.15);
}

.back-link a:before {
    display: inline-block;
    position: absolute;
    left: 0.1em;
    top: 0.03em;
    font-family: "Icons";
    content: '\63';
    font-size: 2.6em;
    text-transform: none;
    line-height: 2.35vw;
    transform: rotate(180deg);
    -webkit-transition: all 300ms;
    -moz-transition: all 300ms;
    -ms-transition: all 300ms;
    -o-transition: all 300ms;
    transition: all 300ms;
}

.back-link a:hover:before {
    left: 0;
}

@media (min-width: 2220px){
    .scroll-top {
        width: 100px;
        height: 100px;
        font-size: 100px;
    }

    .back-link {
        font-size: 44.4px;
    }

    .back-link a:before {
        top: 0em;
        line-height: 57px;
    }
}

@media (max-width: 1330px){
    .scroll-top {
        width: 60px;
        height: 60px;
        font-size: 60px;
    }

    .back-link {
        font-size: 24px;
    }

    .back-link a {
        padding: 11.76px 16.8px 11.76px 42px;
    }

    .back-link a:before {
        line-height: 27px;
        top: 0.04em;
        left: 0.15em;
    }

    .back-link a:hover:before {
        left: -0.15em;
    }
}

.scroll-top.active {
    display: block;
}

.scroll-top > a {
    display: block;
    width: 100%;
    height: 100%;
    font-size: 1em;
    line-height: 60%;
    text-align: center;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #E7E0DB;
    vertical-align: middle;
    -webkit-box-shadow: 0px 0px 0.2em 0.08em rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 0px 0.2em 0.08em rgba(0, 0, 0, 0.15);
    box-shadow: 0px 0px 0.2em 0.08em rgba(0, 0, 0, 0.15);

    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.scroll-top > a img {
    display: inline;
    width: 30%;
    height: auto;
}

#map {
    padding-top: 45%;
}


#cookie {
    position: fixed;
    z-index: 1;
    bottom: 0;
    left: 0;
    width: 100%;
    min-height: 40px;
    background: none;
    display: none;
    color: #FFFFFF;
}

#cookie.disabled {
    display: none !important;
}

.fixed #cookie {
    display: block;
}

#cookie .wrapper {
    position: relative;
    margin: 0 auto;
    width: 1920px;
    max-width: 100%;
}

#cookie .wrapper:before {
    content: '';
    display: block;
    width: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(0,0,0,0.1);
}

#cookie .inner {
    position: relative;
    z-index: 3;
    display: flex;
    flex-flow: row nowrap;
    align-items: stretch;
    justify-content: space-between;
}

#cookie .inner > * {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

#cookie .first-column {
    flex: 1 1 100%;
    width: 70%;
    padding: 12px 0 10px;
    align-content: center;
}

#cookie .second-column {
    flex: 1 1 auto;
    width: auto;
    padding: 10px 0;
    vertical-align: bottom;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;
    text-align: right;
}

#cookie a:before {
    display: none;
}

#cookie .first-column a {
    color: #FFFFFF;
    text-decoration: underline;
    border-width: 0;
}

#cookie .first-column a,
#cookie .first-column p {
    display: inline;
    font-size: 12px;
    line-height: 20px;
    vertical-align: middle;
    margin: 0;
    padding: 0;
    font-weight: 400;
}

#cookie .second-column span {
    display: inline-block;
    width: 50px;
    height: 25px;
    text-align: right;
}

#cookie .second-column a {
    display: block;
    border-width: 0;
    height: 25px;
    float: right;
}

#cookie .second-column a.close img {
    display: inline-block;
    width: 25px;
    height: auto;
}


/* Forms */

.form-wrapper {
    margin-top: 80px;
    margin-bottom: 160px;
}

.form-holder {
    margin: 0 auto;
    max-width: 100%;
    width: 1000px;
    padding-left: 10vw;
    padding-right: 0;
    box-sizing: border-box;
}

@media (min-width: 1920px){
    .form-holder {
        padding-left: 190px;
        padding-right: 0;
    }
}


@media(max-width: 1536px){
    .inline-page-intro-wrapper {
        margin-bottom: 140px;
    }
}

@media(max-width: 1000px){
    .form-wrapper {
        margin-bottom: 110px;
    }
}

@media(max-width: 768px){
    .form-wrapper {
        margin-bottom: 80px;
    }

    .form-holder {
        padding: 0;
    }
}

@media(max-width: 375px){
    .form-wrapper {
        margin-bottom: 40px;
    }
}

.anker {
    position: relative;
    height: 0;
    overflow: hidden;
    top: -140px;
    z-index: 1;
}

/*.show-ankers .anker {
    display: block;
    border-bottom: 1px solid red;
    overflow: visible;
    opacity: 0.3;
    top: 0;
}*/

.anker > span {
    display: none;
    position: absolute;
    top: 5px;
    left: 0;
    color: red;
    font-size: 14px;
}

/*.show-ankers .anker > span {
    display: block;
}

.show-ankers h3,
.show-ankers .h3 {
    background-color: red;
}*/

a.external {
    position: relative;
}

a.external:before {
    content: '';
    display: block;
    width: 30px;
    height: 30px;
    background: url('../images/external-link-icon.svg') center center no-repeat;
    position: absolute;
    right: -25px;
    top: -14px;
}

.news-overview {
    margin: 0 -10px 160px;
}


.news-overview .news-entry {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    float: left;
    width: 25%;
    min-width: 300px;
    max-width: 100%;
    height: auto;
    min-height: 350px;
}

@media (max-width: 1487px){
    .news-overview .news-entry {
        width: 33%;
        min-width: 300px;
    }
}

@media (max-width: 1114px){
    .news-overview .news-entry {
        width: 50%;
        min-width: 300px;
    }
}

@media (max-width: 741px){
    .news-overview .news-entry {
        width: 100%;
        min-width: 300px;
    }
}

.news-overview .news-entry.no-image {
    color: #FFFFFF;
}

.news-overview .news-entry.default.no-image {
    color: #000000;
}

.news-overview .news-entry .inner {
    padding: 0;
    margin: 10px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    min-height: 350px;
}

.news-overview .news-entry .inner > * {
    flex: 0 0 auto;
    width: 100%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.news-overview .news-entry h3 {
    font-size: 20px;
    line-height: 24px;
    font-weight: 500;
    margin-top: 0;
    margin-bottom: 20px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 15px;
    padding-left: 15px;
    padding-right: 15px;
}

.news-overview .news-entry .images {
    margin-bottom: 0;
    padding-left: 0;
    padding-right: 0;
}

.news-overview .news-entry .images img {
    width: 100%;
    max-width: 100%;
    height: auto !important;
}

.news-overview .news-entry .content {
    margin-bottom: 0px;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-left: 15px;
    padding-right: 15px;
}

.news-overview .news-entry .content p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.news-overview .news-entry.no-image .content a {
    color: #FFFFFF;
    border-color: #FFFFFF;
}

.news-overview .news-entry.default.no-image .content a {
    color: #000000;
    border-color: #000000;
}

.news-overview .news-entry.no-image .content a:before {
    color: #FFFFFF;
}

.news-overview .news-entry.default.no-image .content a:before {
    color: #000000;
}

.news-overview .news-entry .footer {
    flex: 1 1 100%;
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 500;
    align-items: flex-end;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    padding-top: 40px;
    padding-bottom: 20px;
    padding-left: 15px;
    padding-right: 15px;
    border-bottom: 0px solid #000000;
}

.news-overview .news-entry.default .footer {
    border-bottom-width: 2px;
}

.news-overview .news-entry.default.no-image .footer {
    border-bottom-width: 0px;
}

.news-overview .news-entry .footer > * {
    flex: 1 1 50%;
    width: 50%;
    height: 18px;
    align-content: flex-end;
}

.news-overview .news-entry .footer .date {
}

.news-overview .news-entry .footer .date p {
    position: relative;
    margin-left: 1em;
    padding: 0;
    line-height: 14px;
    font-size: 14px;
    white-space: nowrap;
}

.news-overview .news-entry .footer .date p:before {
    margin-left: -1em;
    display: inline-block;
    content: '\6b';
    font-family: 'Icons';
    font-size: 1.5em;
    position: relative;
    top: 0.25em;
}

.news-overview .news-entry .footer .more {
    text-align: right;
}

.news-overview .news-entry .footer .more p {
    line-height: 14px;
    font-size: 14px;
}

.news-overview .news-entry .footer .more a {
    display: inline-block;
    border-color: #000000;
    color: #000000;
    font-size: 14px;
    outline: none;
    position: relative;
    bottom: -3px;
}

.news-overview .news-entry.no-image .footer .more a {
    border-color: #FFFFFF;
    color: #FFFFFF;
}

.news-overview .news-entry.default.no-image .footer .more a {
    border-color: #000000;
    color: #000000;
}

.news-overview .news-entry .footer .more a:before {
    line-height: 0.2em;
    color: #000000;
}

.news-overview .news-entry.no-image .footer .more a:before {
    color: #FFFFFF;
}

.news-overview .news-entry.default.no-image .footer .more a:before {
    color: #000000;
}


.news-entry.calendar {

}

.news-entry.calendar .inner {
    background-color: #F6F3F0;
    padding-bottom: 10px;
}

.news-entry.calendar .filters {
    white-space: nowrap;
    padding: 0 5px;
    height: 35px;
    border-bottom: 2px solid #000000;
}

.news-entry.calendar .filters > * {
    display: inline-block;
    line-height: 30px;
}

.news-entry.calendar .filters .years {
    float: right;
}

.news-entry.calendar .filters select {
    display: inline-block;
    outline: none;
    background: none;
    border-width: 0;
    font-size: 14px;
    line-height: 20px;
    font-family: 'Gotham';
    font-weight: 500;
}

.news-entry.calendar .entries {

}

.news-entry.calendar .entries .calendar-entry {
    display: flex;
    flex-flow: row nowrap;
    align-items: flex-start;
    padding: 5px;
    border-bottom: 2px solid #000000;
}

.news-entry.calendar .entries .calendar-entry .day {
    flex: 0 0 60px;
    width: 60px;
    padding: 5px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    text-align: center;
}

    .news-entry.calendar .entries .calendar-entry .day .number {
        font-weight: 500;
        font-size: 24px;
        line-height: 32px;
    }

    .news-entry.calendar .entries .calendar-entry .day .weekday {
        font-weight: 400;
        font-size: 14px;
        line-height: 20px;
    }

.news-entry.calendar .entries .calendar-entry .content {
    flex: 1 1 100%;
    padding: 5px 0;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.news-entry.calendar .entries .calendar-entry .content h3 {
    margin: 4px 0 4px;
    padding: 0;
    font-size: 18px;
    line-height: 24px;
}

.news-entry.calendar .entries .calendar-entry .content p {
    font-size: 14px;
    line-height: 20px;
    font-weight: 400;
}

.news-entry.calendar .entries .calendar-entry .content .time {
    font-weight: 500;
}

.news-entry.calendar .entries .calendar-entry .content .time:before {
    display: inline-block;
    content: '\6b';
    font-family: 'Icons';
    font-size: 2em;
    position: relative;
    top: 0.3em;
    right: -5px;
    margin-left: -0.4em;
}

