:root {
    --tec-color-button-primary: #263c75;
    --tec-color-button-primary-hover: #263c75;
    --tec-color-button-primary-active: #263c75;
    --tec-color-icon-focus: #263c75;
    --tec-color-event-icon-hover: #263c75;
    --tec-color-accent-primary: #263c75;
    --tec-color-accent-primary-hover: rgba(38, 60, 117, .8);
    --tec-color-accent-primary-active: rgba(38, 60, 117, .9);
    --tec-color-link-accent-hover: rgba(38, 60, 117, .8);
}

@-webkit-keyframes zoom {
    from {
        -webkit-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(1.1);
        transform: scale(1.1)
    }
}

@-moz-keyframes zoom {
    from {
        -moz-transform: scale(1);
        transform: scale(1)
    }

    to {
        -moz-transform: scale(1.1);
        transform: scale(1.1)
    }
}

@-o-keyframes zoom {
    from {
        -o-transform: scale(1);
        transform: scale(1)
    }

    to {
        -o-transform: scale(1.1);
        transform: scale(1.1)
    }
}

@keyframes zoom {
    from {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1)
    }

    to {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1)
    }
}

@-webkit-keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        -webkit-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }

    40% {
        -webkit-transform: translateY(-10px) translateX(-50%);
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        -webkit-transform: translateY(-5px) translateX(-50%);
        transform: translateY(-5px) translateX(-50%);
    }
}

@-moz-keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        -moz-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }

    40% {
        -moz-transform: translateY(-10px) translateX(-50%);
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        -moz-transform: translateY(-5px) translateX(-50%);
        transform: translateY(-5px) translateX(-50%);
    }
}

@-o-keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        -o-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }

    40% {
        -o-transform: translateY(-10px) translateX(-50%);
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        -o-transform: translateY(-5px) translateX(-50%);
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes bounce {
    0%, 100%, 20%, 50%, 80% {
        -webkit-transform: translateY(0) translateX(-50%);
        -moz-transform: translateY(0) translateX(-50%);
        -o-transform: translateY(0) translateX(-50%);
        transform: translateY(0) translateX(-50%);
    }

    40% {
        -webkit-transform: translateY(-10px) translateX(-50%);
        -moz-transform: translateY(-10px) translateX(-50%);
        -o-transform: translateY(-10px) translateX(-50%);
        transform: translateY(-10px) translateX(-50%);
    }

    60% {
        -webkit-transform: translateY(-5px) translateX(-50%);
        -moz-transform: translateY(-5px) translateX(-50%);
        -o-transform: translateY(-5px) translateX(-50%);
        transform: translateY(-5px) translateX(-50%);
    }
}

html {
    font-family: 'Raleway', sans-serif;
    line-height: 1.5;
    color: #696969;
    font-weight: 400;
    font-size: 14px;
    background-color: #fff;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    overflow-x: hidden;
}

body {
    height: 100%;
}

*, :after, :before {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit
}

strong, b {
    font-weight: 600;
}

img {
    border-style: none;
    max-width: 100%;
    height: auto;
    pointer-events: none;
    display: block;
}

a, button {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
    text-decoration: none;
    color: #696969;
}

a:hover {
    text-decoration: none
}

.post-format {
    font-size: 14px;
    line-height: 2;
}

.post-format *:first-child {
    margin-top: 0;
}

.single-pad .post-format {
    color: #2f2f2f;
}

.single-pad .post-format ol {
    list-style: none;
    counter-reset: numberlist;
    padding-left: 0;
}

.single-pad .post-format ol.center {
    display: inline-block;
    width: auto !important;
    max-width: 96% !important;
    margin: 0px auto !important;
    transform: translateX( calc( 50vw - 50% ) );
    font-size: 0;
}

.single-pad .post-format ol > li {
    counter-increment: numberlist;
    position: relative;
    padding-left: 42px;
    min-height: 43px;
    list-style-type: none !important;
}

.single-pad .post-format ol > li:before {
    content: counter(numberlist) ". ";
    color: #fff;
    background-color: #263c75;
    border-radius: 50%;
    width: 32px;
    height: 32px;
    text-align: center;
    left: 0px;
    position: absolute;
}

.post-format h2 {
    margin-top: 72px;
}

.post-format p {
    clear: both;
    margin: 0 0 24px 0;
}

.post-format p:last-child {
    margin-bottom: 0;
}

.post-format ul {
    margin-bottom: 24px;
    padding-left: 0;
    list-style-type: none;
}

.post-format *:not(.has-text-color) a:not(.btn) {
    text-decoration: underline;
    color: #263c75;
}

.post-format a:not(.btn):hover {
    color: #696969;
}

.table-wrapper {
    overflow-x: auto;
}

.post-format p+ul {
    margin-top: -16px;
}

.post-format ul:not(.block-gallery) li {
    padding-left: 30px;
    position: relative;
}

.post-format ul:not(.block-gallery)>li:before {
    content: "";
    display: block;
    width: 17px;
    height: 2px;
    background-color: #263c75;
    position: absolute;
    left: 0;
    top: 11px;
}

@media only screen and (min-width: 768px) {
    .post-format ul:not(.block-gallery) li {
        padding-left: 40px;
    }

    .post-format ul:not(.block-gallery)>li:before {
        left: 0px;
    }
}

.post-format iframe {
    width: 100%
}

.post-format>:last-child {
    margin-bottom: 0
}

.post-format table {
    width: 100%;
    border-collapse: collapse;
    line-height: 1.5;
    margin-bottom: 24px;
}

.post-format table:not([border="0"]) td, .post-format table:not([border="0"]) th {
    padding: 8px;
    text-align: center;
}

.post-format td {
    border: 1px solid darkgrey;
    padding: 8px;
}

.post-format table tr:hover td, .post-format table tr th {
    background-color: #f7f7f7;
    color: #2f2f2f;
}

.block-table.is-style-stripes td {
    border-bottom: 1px solid #ebebeb;
}

.post-format .block-table.is-style-stripes tr:nth-child(odd) {
    background-color: transparent;
}

.post-format .block-table.is-style-stripes thead th {
    color: #fff;
}

.post-format .block-table.is-style-stripes thead tr {
    background-color: gray;
}

.post-format table:not([border="0"]):not(.is-style-stripes) td, .post-format table:not([border="0"]):not(.is-style-stripes) th {
    border: 1px solid #d6d6d6;
}

.video-container {
    padding-bottom: 56.25%;
    padding-top: 30px;
    height: 0;
    margin-bottom: 24px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    cursor: pointer;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    position: relative;
    overflow: hidden;
}

.video-container embed, .video-container iframe, .video-container object {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2
}

img:not([src]) {
    content: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7)
}

hr {
    border: 1px solid #dcdcdc;
    border-width: 0 0 1px 0;
    width: 100%;
    margin-bottom: 48px;
    clear: both;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
    font-weight: 400;
    margin: 0 0 24px 0;
    line-height: 1.2;
    font-family: 'Georgia';
}

h1, .h1 {
    font-size: 42px;
    text-align: center;
}

h2, .h2 {
    font-size: 36px;
    text-align: center;
    position: relative;
    padding-bottom: 16px;
    margin-bottom: 48px;
}

@media (min-width: 768px) {
    h1, .h1 {
        font-size: 62px;
    }

    h2, .h2 {
        font-size: 40px;
    }
}

h2:after, .h2:not(h1):after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 96px;
    height: 1px;
    background-color: #a2a2a2;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
}

.has-text-align-left:after {
    left: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

h3, .h3 {
    font-size: 25px;
}

h4, .h4 {
    font-size: 19px;
}

h5, .h5 {
    font-size: 18px;
}

h6, .h6 {
    font-size: 16px;
}

.btn, .tribe-events-button {
    font-weight: 500;
    font-size: 10px;
    line-height: 1;
    display: inline-block;
    text-decoration: none;
    margin: 0;
    padding: 13px 14px 11px 14px;
    cursor: pointer;
    color: #a08100;
    background-color: #fbd224;
    border: 1px solid #deb400;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    min-height: 36px;
    min-width: 126px;
    text-align: center;
    vertical-align: middle;
    text-align: center;
    position: relative;
    will-change: auto;
    -webkit-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    outline: none;
}

.btn:active, .btn:focus, .btn:hover {
    -webkit-box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.16);
}

.btn-decoration {
    text-decoration: underline;
}

.btn-black {
    background: #696969;
    color: #fff;
    -webkit-box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.16);
}

.btn-black:active, .btn-black:focus, .btn-black:hover {
    background: #ffffff;
    color: #696969;
    -webkit-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
}

.btn-white {
    color: #2e3133;
    background: #fff;
    border-color: #c1c1c1;
}

.btn-white:active, .btn-white:focus, .btn-white:hover {
    -webkit-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
}

.btn-blue {
    text-transform: uppercase;
    border-radius: 20px;
    color: #fff;
    background-color: #263c75;
    border: 0;
    font-weight: bold;
    font-size: 13px;
}

.btn-border {
    color: #fff;
    background: transparent;
    border-color: #fff;
}

.btn-border:active, .btn-border:focus, .btn-border:hover {
    color: #fbd224;
    border-color: #fbd224;
    -webkit-box-shadow: 0px 18px 49px 0px rgba(251, 210, 36, 0.47);
    -moz-box-shadow: 0px 18px 49px 0px rgba(251, 210, 36, 0.47);
    box-shadow: 0px 18px 49px 0px rgba(251, 210, 36, 0.47);
}

.burger {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    display: block;
    margin-left: auto;
    z-index: 10;
}

@media (min-width: 1150px) {
    .burger {
        display: none;
    }
}

.burger ul {
    float: right;
    width: 60px;
    height: 60px;
    display: block;
    padding: 21px 0 0 15px;
    -webkit-transition: all .55s ease-in-out;
    -o-transition: all .55s ease-in-out;
    -moz-transition: all .55s ease-in-out;
    transition: all .55s ease-in-out;
    margin: 0;
}

.burger li {
    width: 30px;
    height: 2px;
    list-style-type: none;
    background-color: #263c75;
    margin-bottom: 6px;
    -webkit-transition: transform .2s linear;
    -o-transition: transform .2s linear;
    -moz-transition: transform .2s linear;
    -webkit-transition: -webkit-transform .2s linear;
    transition: -webkit-transform .2s linear;
    -o-transition: -o-transform .2s linear;
    -moz-transition: transform .2s linear, -moz-transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear, -webkit-transform .2s linear, -moz-transform .2s linear, -o-transform .2s linear;
    -webkit-transform-origin: 1px 1px;
    -moz-transform-origin: 1px 1px;
    -ms-transform-origin: 1px 1px;
    -o-transform-origin: 1px 1px;
    transform-origin: 1px 1px;
}

html.nav--open .burger li {
    background-color: #263c75;
}

.burger li:last-child {
    margin: 0;
}

.burger:hover li:first-child {
    -webkit-transform: translateY(-4px);
    -moz-transform: translateY(-4px);
    -ms-transform: translateY(-4px);
    -o-transform: translateY(-4px);
    transform: translateY(-4px);
}

.burger:hover li:last-child {
    -webkit-transform: translateY(4px);
    -moz-transform: translateY(4px);
    -ms-transform: translateY(4px);
    -o-transform: translateY(4px);
    transform: translateY(4px);
}

html.nav--open .burger li:nth-child(2) {
    opacity: 0;
}

html.nav--open .burger li:first-child {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: 4px -4px;
    -moz-transform-origin: 4px -4px;
    -ms-transform-origin: 4px -4px;
    -o-transform-origin: 4px -4px;
    transform-origin: 4px -4px;
    width: 37px;
}

html.nav--open .burger li:last-child {
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: 6px 6px;
    -moz-transform-origin: 6px 6px;
    -ms-transform-origin: 6px 6px;
    -o-transform-origin: 6px 6px;
    transform-origin: 6px 6px;
    width: 37px;
}

.blue, .has-blue-color {
    color: #263c75;
}

.has-white-color {
    color: #fff;
}

.has-yellow-color {
    color: #fbd224;
}

.has-brown-color {
    color: #9e8037;
}

.has-blue-background-color {
    background-color: #263c75;
}

.has-white-background-color {
    background-color: #fff;
}

.has-yellow-background-color {
    background-color: #fbd224;
}

.has-brown-background-color {
    background-color: #9e8037;
}

.grecaptcha-badge {
    visibility: hidden;
}

.slider:has(video) .slide-content {
    background: #b18f4894;
    /*background: #263c75b8;*/
}

.slide-video, .slide-image, .slide-content {
    min-height: 585px;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
    object-fit: contain;
    height: 100%;
}

.main-slider .slide-image {
    background-size: 94% auto;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    .slide-video {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 1;
        min-height: 100%;
        min-width: 100%;
        height: auto;
        width: 100%;
        -o-object-fit: cover;
        object-fit: cover;
    }
}

.about-espa-slide-video, .about-espa-slide-image, .about-espa-slide-content {
    height: 600px;
    min-height: 460px;
}

.slide-content {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 11;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
}

.header {
    position: fixed;
    z-index: 9;
    top: 0;
    left: 0;
    right: 0;
    font-size: 0;
    padding: 7px 0;
    background-color: #fff;
}

.header-logo {
    min-width: 175px;
}

.header-logo img, .footer-logo img {
    height: 69px;
    width: 175px;
}

@media (max-width: 1149px) {
    .main-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        z-index: 8;
        -webkit-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -o-transform: translateY(-100%);
        transform: translateY(-100%);
        background-color: #fff;
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
        -moz-box-pack: center;
        -ms-flex-pack: center;
        justify-content: center;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
        -moz-box-orient: vertical;
        -moz-box-direction: normal;
        -ms-flex-direction: column;
        flex-direction: column;
        text-align: center;
        opacity: 0;
        -webkit-transition: opacity .55s ease-in-out;
        -o-transition: opacity .55s ease-in-out;
        -webkit-transition: opacity .55s ease-in-out, -webkit-transform 0s ease-in-out .55s;
        transition: opacity .55s ease-in-out, -webkit-transform 0s ease-in-out .55s;
        -o-transition: opacity .55s ease-in-out, -o-transform 0s ease-in-out .55s;
        -moz-transition: opacity .55s ease-in-out, transform 0s ease-in-out .55s, -moz-transform 0s ease-in-out .55s;
        transition: opacity .55s ease-in-out, transform 0s ease-in-out .55s;
        transition: opacity .55s ease-in-out, transform 0s ease-in-out .55s, -webkit-transform 0s ease-in-out .55s, -moz-transform 0s ease-in-out .55s, -o-transform 0s ease-in-out .55s;
    }

    .main-menu ul {
        list-style-type: none;
        padding: 0;
        text-align: center;
        width: 100%;
    }

    .main-menu > ul {
        overflow-y: auto;
        overflow-x: hidden;
    }

    .main-menu-section {
        margin: 24px 0;
    }
}

html.nav--open {
    overflow: hidden;
}

html.nav--open .main-menu {
    -webkit-transform: translateY(0%);
    -moz-transform: translateY(0%);
    -ms-transform: translateY(0%);
    -o-transform: translateY(0%);
    transform: translateY(0%);
    opacity: 1;
    -webkit-transition: opacity .55s ease-in-out;
    -o-transition: opacity .55s ease-in-out;
    -moz-transition: opacity .55s ease-in-out;
    transition: opacity .55s ease-in-out;
    max-height: 100vh;
}

.video-pattern {
    position: relative;
    font-size: 0;
}

.video-pattern:before {
    content: '';
    position: absolute;
    top: 0;
    width: 100%;
    opacity: 0.3;
    bottom: 0;
    background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGklEQVQYV2NkYGD4D8SMQAwGcAY2AbBKDBUAVuYCBX45Xb8AAAAASUVORK5CYII=');
    z-index: 1;
}

.lang {
    -webkit-align-self: flex-end;
    -ms-flex-item-align: end;
    align-self: flex-end;
    padding: 0;
    list-style-type: none;
    line-height: 1.2;
    font-size: 14px;
    text-transform: uppercase;
    font-weight: 600;
    pointer-events: all;
    -webkit-transition: all .55s ease-in-out;
    -o-transition: all .55s ease-in-out;
    -moz-transition: all .55s ease-in-out;
    transition: all .55s ease-in-out;
    pointer-events: all;
}

.lang .current-lang a, .lang a:hover {
    color: #d9e021 !important;
}

.lang a, .lang:hover .current-lang a {
    color: #fff;
}

.header--white .lang a, .header--white .lang:hover .current-lang a {
    color: #696969;
}

html.nav--open .lang {
    opacity: 0;
    pointer-events: none;
}

.slide-subtitle {
    font-size: 14px;
    line-height: 2;
    color: #fff;
    font-weight: 400;
    max-width: 700px;
    text-align: center;
    margin: 0px auto;
}

.slide-btns {
    font-size: 0;
    text-align: center;
}

.slide-btn {
    margin-top: 48px;
    display: inline-block;
    padding: 0 16px;
}

.slider, .slider-wrapper {
    position: relative;
}

.slider-bottom {
    position: absolute;
    bottom: 48px;
    width: 100%;
}

.slider-center {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    width: 100%;
    left: 0;
    right: 0;
}

.slider-center .slider-prev {
    float: left;
}

.slider-center .slider-next {
    float: right;
}

.slider-zoom {
    position: relative;
    font-size: 0
}

@media (min-width: 768px) {
    .slider-item.active .slider-zoom, .slider-item.animated .slider-zoom {
        -webkit-animation: zoom 25s ease-out forwards;
        -moz-animation: zoom 25s ease-out forwards;
        -o-animation: zoom 25s ease-out forwards;
        animation: zoom 25s ease-out forwards
    }
}

.slider-prev, .slider-next {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    border: 0;
    width: 48px;
    height: 48px;
    font-size: 24px;
    line-height: 52px;
    opacity: 0.5;
    outline: 0;
    color: #fff;
    display: inline-block;
}

.slider-prev:hover, .slider-next:hover, .slider-prev:focus, .slider-next:focus {
    opacity: 1;
    -webkit-box-shadow: 0 5px 20px #fff;
    -moz-box-shadow: 0 5px 20px #fff;
    box-shadow: 0 5px 20px #fff;
    color: #696969;
    background-color: rgb(255, 255, 255);
}

.slider-prev {
    margin-right: 8px;
}

.slider-nav {
    width: 100%;
}

.image-overlay {
    position: relative;
    height: 100%;
}

.image-overlay:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(84, 110, 142, .46);
    z-index: 10;
    height: 100%;
}

.image-overlay--brown:before {
    background-color: rgba(158, 128, 55, 0.48);
}

.slider--fades, .slider--fades video {
    opacity: 0;
}

.slider-loaded video, .slider-loaded {
    -webkit-animation: fadeIn 2s forwards;
    -moz-animation: fadeIn 2s forwards;
    -o-animation: fadeIn 2s forwards;
    animation: fadeIn 2s forwards
}

.news-title {
    font-size: 20px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    text-align: left;
    font-weight: 600;
    margin-bottom: 12px;
    word-break: break-all;
}

.news-btn {
    -webkit-transition: -webkit-box-shadow .2s ease-in-out;
    -o-transition: box-shadow .2s ease-in-out;
    -moz-transition: box-shadow .2s ease-in-out, -moz-box-shadow .2s ease-in-out;
    transition: -webkit-box-shadow .2s ease-in-out;
    -moz-transition: box-shadow .2s ease-in-out, -moz-box-shadow .2s ease-in-out;
    transition: box-shadow .2s ease-in-out;
    transition: box-shadow .2s ease-in-out, -webkit-box-shadow .2s ease-in-out, -moz-box-shadow .2s ease-in-out;
    transition: box-shadow .2s ease-in-out, -webkit-box-shadow .2s ease-in-out, -moz-box-shadow .2s ease-in-out
}

.news-image {
    display: block;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    height: 160px;
}

.news-image.placeholder {
    -webkit-background-size: 32px auto;
    -moz-background-size: 32px auto;
    -o-background-size: 32px auto;
    background-size: 32px auto;
    background-position: center center;
    background-color: #b7b7b7;
    opacity: 0.3;
}

.news-content {
    font-size: 12px;
    margin-bottom: 36px;
    flex: 1 1 auto;
}

.news-wrapper {
    padding: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    flex: 1 1 auto;
}

.news-article {
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    -webkit-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.news-article:hover .news-image {
    -webkit-transform: translateY(-5px);
    -moz-transform: translateY(-5px);
    -ms-transform: translateY(-5px);
    -o-transform: translateY(-5px);
    transform: translateY(-5px);
}

.news-btn {
    max-width: 100px;
    min-width: auto;
}

.news-row {
    position: relative;
}

/*
body.home .news-row {
    margin-bottom: 96px;
}
*/
.partners-content {
    margin-bottom: 96px;
}

.squares {
    padding-top: 1px;
    padding-left: 1px;
    -webkit-box-shadow: inset 0 0 0 1px #efefef;
    -moz-box-shadow: inset 0 0 0 1px #efefef;
    box-shadow: inset 0 0 0 1px #efefef;
}

.square {
    display: block;
    margin-top: -1px;
    margin-left: -1px;
    padding: 20px;
    border: 1px solid #efefef;
    padding-bottom: 75%;
    position: relative;
    z-index: 0;
    -webkit-filter: grayscale(100%);
    filter: grayscale(100%);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.square-back {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    -o-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
    padding: 14px;
}

.square:hover, .square:active, .square:focus {
    -webkit-box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.16);
    box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.16);
    z-index: 60000;
    -webkit-filter: none;
    filter: none;
}

.map {
    height: 600px;
    max-height: 100vh;
    z-index: 5;
    position: relative;
}

img.leaflet-tile {
    -webkit-filter: grayscale(100%) brightness(104%);
    filter: grayscale(100%) brightness(104%);
}

.leaflet-container .btn {
    margin: 24px 0 0 -22px;
}

.leaflet-container a {
    color: #fff !important;
}

.leaflet-container a:hover {
    color: #696969 !important;
}

.contact .block-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    text-align: center;
}

@media only screen and (min-width: 600px) {
    .contact .block-columns {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
        -moz-box-orient: horizontal;
        -moz-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
        text-align: left;
    }
}

.contact .post-format a {
    text-decoration: none;
}

.shadow-row {
    background: -moz-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(247, 247, 247, 1)), to(rgba(255, 255, 255, 0)));
    background: -moz-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: -o-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(255, 255, 255, 0) 100%);
    background: linear-gradient(to bottom, rgba(247, 247, 247, 1) 0%, rgba(255, 255, 255, 0) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#f7f7f7', endColorstr='#00ffffff', GradientType=0);
    background-repeat: no-repeat;
    -webkit-background-size: 100% 50px;
    -moz-background-size: 100% 50px;
    -o-background-size: 100% 50px;
    background-size: 100% 50px;
}

.contact-form {
    padding: 96px 0;
    position: relative;
}

.arrow {
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateY(50%) translateX(-50%);
    -moz-transform: translateY(50%) translateX(-50%);
    -ms-transform: translateY(50%) translateX(-50%);
    -o-transform: translateY(50%) translateX(-50%);
    transform: translateY(50%) translateX(-50%);
    width: 45px;
    height: 45px;
    font-size: 22px;
    line-height: 45px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #fff;
    border: 0;
    -webkit-box-shadow: 0px 9px 16px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 9px 16px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 9px 16px 0px rgba(0, 0, 0, 0.06);
    outline: 0;
    z-index: 2;
}

.arrow-clean {
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
}

.arrow:not(.arrow-clean):hover, .arrow:not(.arrow-clean):focus {
    -webkit-box-shadow: 0px 19px 20px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 19px 20px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 19px 20px 0px rgba(0, 0, 0, 0.06);
}

.arrow-up {
    bottom: auto;
    top: 0;
    -webkit-transform: translateY(-100%) translateX(-50%);
    -moz-transform: translateY(-100%) translateX(-50%);
    -ms-transform: translateY(-100%) translateX(-50%);
    -o-transform: translateY(-100%) translateX(-50%);
    transform: translateY(-100%) translateX(-50%);
}

.arrow-rel {
    position: relative;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    left: auto;
    display: inline-block;
}

.footer {
    background: url('../img/footer.png');
    padding: 72px 0 0 0;
    color: #fff;
    font-size: 12px;
    line-height: 2;
    position: relative;
    width: 100%;
}

.footer p {
    margin-bottom: 24px;
}

.footer a {
    color: #fff;
}

.footer-logo {
    display: block;
    font-size: 0;
    margin-bottom: 10px;
}

@media (max-width: 767px) {
    .footer-content .btn {
        margin-top: 24px;
    }
}

.darkgray {
    color: #5a5a5a;
}

.footer ul {
    padding: 0;
    list-style-type: none;
}

.footer li a {
    display: block;
}

.footer a:hover {
    color: #fff;
}

.footer-title {
    margin: 36px 0 24px 0;
    font-size: 24px;
    color: #fff;
    position: relative;
}

.footer-title:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    width: 64px;
    height: 1px;
    background: #fff;
}

.footer .arrow {
    margin: 24px 0;
}

.footer-copyright {
    font-size: 10px;
    color: #fff;
    text-align: center;
    font-weight: 400;
    background: rgba(0, 0, 0, 0.34);
    padding: 24px 0;
    margin-top: 96px;
}

.footer-column {
    text-align: center;
}

.footer-column img {
    display: inline-block;
}

@media only screen and (min-width: 768px) {
    .footer-title:after {
        left: 0;
        -webkit-transform: none;
        -moz-transform: none;
        -ms-transform: none;
        -o-transform: none;
        transform: none;
    }

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

.header {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

html.header--white:not(.nav--open) .header {
    background-color: #fff;
    -webkit-box-shadow: 0px 7px 21px 0px rgba(0, 0, 0, 0.08);
    -moz-box-shadow: 0px 7px 21px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0px 7px 21px 0px rgba(0, 0, 0, 0.08);
    background-color: white;
}

html.header--white .burger li {
    background-color: #696969;
}

.headline-btn {
    position: absolute;
    top: -48px;
    left: 24px;
}

.headline-back {
    height: 251px;
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
}

.headline-back .container {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    height: 100%;
}

.headline-back h1 {
    color: #fff;
}

.headline-subtitle {
    color: #fff;
    max-width: 500px;
}

.headline-title {
    text-align: left;
    margin-bottom: 0;
}

.headline-title + .headline-title {
    margin-top: 12px;
}

.headline-title:after {
    left: 0;
    transform: none;
    background-color: #fff;
}

.headline-content-title {
    text-align: center;
    color: #696969;
}

.headline-content-underline {
    margin-left: auto;
    margin-right: auto;
}

.new-row-title {
    text-align: left;
}

.new-row-excerpt {
    padding-bottom: 64px;
}

.new-row-wrapper {
    position: relative;
    height: 100%;
}

.new-row-image {
    background-repeat: no-repeat;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    padding-bottom: 60%;
    position: relative;
    overflow: hidden;
    margin-bottom: 32px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0);
    -moz-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0);
    box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0);
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

@media only screen and (min-width: 768px) {
    .new-row-image {
        margin-bottom: 0px;
    }
}

.new-row:hover .new-row-image {
    -webkit-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
}

.new-row-btn {
    position: absolute;
    left: 0;
    bottom: 0;
}

.new-row-date {
    position: absolute;
    top: 0;
    left: 0;
    padding: 24px;
    color: #fff
}

.new-row {
    padding: 64px 0;
}

.pagination {
    display: inline-block;
    display: flex;
}

.pagination-wrapper {
    text-align: center;
    clear: both;
    font-size: 0;
    background: #f7f7f7;
    padding: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination ::marker {
    content: '';
}

.pagination>* {
    font-size: 13px;
}

.pagination a, .pagination span {
    padding: 3px 10px;
    margin: 2px;
    display: inline-block;
    float: left;
    min-width: 30px;
    border: 1px solid transparent;
    -webkit-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.pagination a:hover, .pagination span.current {
    background: #263c75;
    color: #fff;
}

@media (max-width: 480px) {
    .pagination span.pages {
        display: block;
        float: none;
    }

    .pagination a {
        padding: 3px 0px;
        margin: 2px 0;
        min-width: 25px;
    }
}

.headline-blur {
    position: relative;
    overflow: hidden;
    padding: 64px 0;
    min-height: 250px;
}

.headline-blur-back:before {
    content: '';
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    background-color: rgba(158, 128, 55, 0.48);
}

.headline-blur-back {
    position: absolute;
    top: -24px;
    left: -24px;
    right: -24px;
    bottom: -24px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    filter: blur(8px);
    -webkit-filter: blur(8px);
}

.headline-blur-title {
    color: #fff;
    text-align: left;
    margin: 0;
    line-height: 1;
}

.headline-blur-excerpt {
    margin-top: 24px;
}

.headline-blur-title:after {
    left: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
    background-color: #fff;
}

.headline-blur-date {
    text-align: left;
    color: #ffff;
}

@media only screen and (min-width: 768px) {
    .headline-blur-date {
        text-align: right;
    }
}

.headline-blur-content {
    position: relative;
    color: #fff;
}

.headline-blur-content a.post-edit-link {
    color: #fff;
    text-decoration: underline;
}

.headline-blur-info {
    margin-top: 24px;
}

.headline-top {
    position: relative;
    top: -32px;
}

.headline-blur-info .container {
    position: relative;
}

.headline-blur-image {
    padding-bottom: 59%;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    background-size: contain;
    overflow: hidden;
    -webkit-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.3);
    margin-bottom: 24px;
    background-color: #fff;
}

.headline-blur-image-wrapper {
    position: relative;
}

@media only screen and (min-width: 768px) {
    .headline-blur-image-has-banner {
        margin-right: 64px;
    }
}

.single-pad {
    padding: 64px 0;
}

.headline-nav {
    margin-top: 24px;
}

.headline-nav>* {
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.slide-title {
    margin-bottom: 36px;
    color: #fff;
}

html.os-ios .slide-title .text-gradient {
    background-image: none;
    color: inherit;
    background-clip: initial;
}

.single .gray-label {
    text-transform: none;
}

.btns-group {
    margin-bottom: 24px;
}

.btns-group .btn {
    margin-bottom: 3px;
}

blockquote p:after, blockquote:before {
    font-size: 30px
}

blockquote {
    display: inline-block;
    color: #00c3ff;
    border-left: 4px solid #00c3ff;
    margin: 4em;
    padding-left: 48px;
    text-transform: uppercase;
    line-height: 1.2
}

blockquote:before {
    position: absolute;
    content: "";
    margin-left: -.6em;
    margin-top: -.4em
}

blockquote p:after {
    content: "";
    bottom: -18px;
    right: -7px;
    line-height: 0
}

blockquote p {
    display: inline;
    font-size: 21px
}

.form-info {
    text-align: center;
    font-size: 20px;
}

.main-menu ul {
    padding: 0;
}

.main-menu-nav li li {
    display: block;
}

.main-menu-nav a {
    font-size: 22px;
    font-weight: 500;
    padding: 18px 2vh;
    line-height: 1;
    display: inline-block;
}

@media only screen and (min-width: 1150px) {
    .main-menu {
        margin-left: 5vh;
    }

    .main-menu ul {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
        -webkit-align-items: center;
        -moz-box-align: center;
        -ms-flex-align: center;
        align-items: center;
    }

    .main-menu-nav a {
        font-size: 13px;
        display: block;
        font-weight: 500;
        padding: 18px 1vh;
        text-transform: uppercase;
        position: relative;
        text-align: center;
        line-height: 1;
    }
}

.main-menu-nav a:hover, .main-menu-nav .current-menu-item a {
    color: #263c75;
}

.main-menu-nav .current-menu-item a {
    font-weight: 600;
}

.main-menu-nav a:before {
    content: '';
    width: 16px;
    position: absolute;
    bottom: 8px;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-5px);
    -moz-transform: translateX(-50%) translateY(-5px);
    -ms-transform: translateX(-50%) translateY(-5px);
    -o-transform: translateX(-50%) translateY(-5px);
    transform: translateX(-50%) translateY(-5px);
    height: 1px;
    background-color: #263b74;
    opacity: 0;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.main-menu-nav a:hover:before , .main-menu-nav .current-menu-item a:before {
    opacity: 1;
    -webkit-transform: translateX(-50%) translateY(0px);
    -moz-transform: translateX(-50%) translateY(0px);
    -ms-transform: translateX(-50%) translateY(0px);
    -o-transform: translateX(-50%) translateY(0px);
    transform: translateX(-50%) translateY(0px);
}

.main-menu-nav .sub-menu a:hover {
    text-decoration: underline;
}

/*
.main-menu-nav>li>a:after {
    content: "\e904";
    font-family: 'euroespa';
    position: absolute;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(2px);
    -moz-transform: translateX(-50%) translateY(2px);
    -ms-transform: translateX(-50%) translateY(2px);
    -o-transform: translateX(-50%) translateY(2px);
    transform: translateX(-50%) translateY(2px);
    font-size: 16px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}
.main-menu-nav>li:hover>a:after {
    opacity: 0;
}
*/
.main-menu-nav .sub-menu {
    position: absolute;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: visibility 0s linear 0.3s, opacity 0.3s linear, -webkit-transform 0.3s linear;
    transition: visibility 0s linear 0.3s, opacity 0.3s linear, -webkit-transform 0.3s linear;
    -o-transition: visibility 0s linear 0.3s, opacity 0.3s linear, -o-transform 0.3s linear;
    -moz-transition: visibility 0s linear 0.3s, opacity 0.3s linear, transform 0.3s linear, -moz-transform 0.3s linear;
    transition: visibility 0s linear 0.3s, opacity 0.3s linear, transform 0.3s linear;
    transition: visibility 0s linear 0.3s, opacity 0.3s linear, transform 0.3s linear, -webkit-transform 0.3s linear, -moz-transform 0.3s linear, -o-transform 0.3s linear;
    z-index: 1;
    display: block;
    -webkit-transform: translateX(-50%) translateY(-5px);
    -moz-transform: translateX(-50%) translateY(-5px);
    -ms-transform: translateX(-50%) translateY(-5px);
    -o-transform: translateX(-50%) translateY(-5px);
    transform: translateX(-50%) translateY(-5px);
    background-color: #fff;
    -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    left: 50%;
}

.main-menu-nav li:hover>.sub-menu {
    visibility: visible;
    opacity: 1;
    -webkit-transition: visibility 0s linear 0s, opacity 0.3s linear, -webkit-transform 0.3s linear;
    transition: visibility 0s linear 0s, opacity 0.3s linear, -webkit-transform 0.3s linear;
    -o-transition: visibility 0s linear 0s, opacity 0.3s linear, -o-transform 0.3s linear;
    -moz-transition: visibility 0s linear 0s, opacity 0.3s linear, transform 0.3s linear, -moz-transform 0.3s linear;
    transition: visibility 0s linear 0s, opacity 0.3s linear, transform 0.3s linear;
    transition: visibility 0s linear 0s, opacity 0.3s linear, transform 0.3s linear, -webkit-transform 0.3s linear, -moz-transform 0.3s linear, -o-transform 0.3s linear;
    -webkit-transform: translateX(-50%) translateY(-2px);
    -moz-transform: translateX(-50%) translateY(-2px);
    -ms-transform: translateX(-50%) translateY(-2px);
    -o-transform: translateX(-50%) translateY(-2px);
    transform: translateX(-50%) translateY(-2px);
}

.main-menu-nav li>.sub-menu:after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    top: 0;
    left: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 7px solid black;
    border-color: #ffffff #ffffff transparent transparent;
    -webkit-transform: rotate(-45deg) translateX(-50%) translateY(-100%);
    -moz-transform: rotate(-45deg) translateX(-50%) translateY(-100%);
    -ms-transform: rotate(-45deg) translateX(-50%) translateY(-100%);
    -o-transform: rotate(-45deg) translateX(-50%) translateY(-100%);
    transform: rotate(-45deg) translateX(-50%) translateY(-100%);
    -webkit-transform-origin: 11px -3px;
    -moz-transform-origin: 11px -3px;
    -ms-transform-origin: 11px -3px;
    -o-transform-origin: 11px -3px;
    transform-origin: 11px -3px;
    -webkit-box-shadow: 3px -3px 3px 0 rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 3px -3px 3px 0 rgba(0, 0, 0, 0.1);
    box-shadow: 3px -3px 3px 0 rgba(0, 0, 0, 0.1);
}

.main-menu li {
    position: relative;
}

.main-menu .btn {
    margin-bottom: 8px;
}

.main-menu-section:after {
    content: '';
    height: 20px;
    position: absolute;
    right: 0px;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    border-right: 1px solid #d5d5d5;
    padding: 0 24px;
}

@media only screen and (min-width: 1150px) {
    .main-menu-section {
        padding: 0 16px;
    }

    .main-menu-section li {
        padding: 0 6px;
    }

    .main-menu li {
        display: inline-block;
    }

    .main-menu-section li {
        padding: 0 4px;
    }

    .main-menu .btn {
        margin-bottom: 0px;
    }
}

.main-menu ul>li:first-child {
    padding-left: 0;
}

.main-menu ul>li:first-child > a span {
    border-radius: 20px;
    padding: 8px 14px;
    white-space: nowrap;
    color: #fff;
    background-color: #263c75;
}

.main-menu ul>li:first-child > a:before {
    display: none;
}

.main-menu ul>li:last-child > a span {
    border-radius: 20px;
    padding: 8px 14px;
    white-space: nowrap;
    color: #fff;
    background-color: #263c75;
    font-weight: bold;
}

.main-menu ul>li:last-child > a:before {
    display: none;
}

.main-menu ul>li:last-child {
    padding-right: 0;
}

.main-menu-section:last-child:after {
    border: 0;
}

.search-opener {
    background: transparent;
    border: 0;
    font-size: 22px;
    color: #c5c5c5;
    position: relative;
    z-index: 1;
    padding: 0;
    top: 2px;
}

.search-opener:hover {
    color: #263c75;
}

.modal {
    display: none;
    position: fixed;
    z-index: 99;
    padding: 100px 50px 0;
    padding: 10vh 10vw 0;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.8);
    -webkit-animation: fadeIn .5s;
    -moz-animation: fadeIn .5s;
    -o-animation: fadeIn .5s;
    animation: fadeIn .5s;
}

.modal-content {
    position: relative;
    background-color: #fefefe;
    margin: auto;
    padding: 0;
    width: 100%;
    max-width: 768px;
    -webkit-box-shadow: 0 4px 80px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 4px 80px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 80px 0px rgba(0, 0, 0, 0.1);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    -moz-animation-name: animatetop;
    -o-animation-name: animatetop;
    animation-name: animatetop;
    -moz-animation-duration: 0.4s;
    -o-animation-duration: 0.4s;
    animation-duration: 0.4s;
    overflow: auto;
    max-height: 80vh;
}

@-webkit-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@-moz-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@-o-keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

@keyframes animatetop {
    from {
        top: -300px;
        opacity: 0
    }

    to {
        top: 0;
        opacity: 1
    }
}

.modal-close {
    color: #263c75;
    float: right;
    font-size: 28px;
    font-weight: bold;
    padding: 9px 23px;
    position: absolute;
    top: 0;
    right: 0;
}

.modal-close:hover, .modal-close:focus {
    color: #696969;
    text-decoration: none;
    cursor: pointer;
}

.modal-header {
    padding: 65px 0 16px 8px;
    color: #a0a0a0;
}

.modal-header img, .logo--login {
    text-align: center;
    max-width: 256px;
    margin-left: auto;
    margin-right: auto;
    display: block;
}

.modal-header h2 {
}

.modal-body {
    padding: 48px 24px;
    font-size: 16px;
    position: relative;
}

.supercontainer {
    will-change: filter;
}

.modal--open .supercontainer {
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.form-login-alert {
    background-color: #abd7ea;
    padding: 8px 16px;
    color: #177ead;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    margin-bottom: 12px;
}

abbr {
    position: relative;
}

abbr:hover::after {
    position: absolute;
    top: 100%;
    right: 100%;
    display: block;
    padding: 1em;
    background: #263c75;
    content: attr(data-title);
    z-index: 1;
    font-size: 12px;
    width: 280px;
    color: #fff;
    line-height: 1.5;
    text-align: left;
    font-weight: normal;
}

.form-login-help {
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    cursor: pointer;
    position: absolute;
    right: 0px;
    font-size: 16px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #263c75;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    color: #fff;
    top: -20px;
    text-decoration: none;
    font-weight: bold;
    z-index: 1;
}

.form-login-help:hover {
    background-color: #263c75;
}

.mb {
    margin-bottom: 24px;
}

.login-box {
    max-width: 600px;
    margin: 0px auto;
    position: relative;
    padding: 48px;
    -webkit-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
}

.form-wrapper {
    max-width: 500px;
    margin: 0px auto;
    position: relative;
}

.switcher-controls a {
    float: right;
    display: inline-block;
    margin-top: 8px;
    ; font-size: 14px;
    color: #263c75;
    text-decoration: underline;
}

.btn-100 {
    width: 100%;
}

.header-login {
    overflow: hidden;
    background-color: #b18f48;
    color: #fff;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 0 24px;
    font-size: 11px;
}

.header-login a, .header-login div {
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 4px 5px;
}

.avatar-img {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 2px solid rgba(255, 255, 255, 0.6);
    padding: 1px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    font-size: 0;
    line-height: 0;
    margin-right: 8px;
    margin: 5px;
}

.avatar span {
    display: inline-block;
    font-size: 10px;
    margin-left: 8px;
}

a.avatar:hover .avatar-img {
    border: 2px solid rgb(238, 238, 238);
    padding: 3px;
}

.scroll-downs {
    position: absolute;
    top: 19px;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 29px;
    height: 48px;
}

.mousey {
    width: 3px;
    padding: 7px 11px;
    height: 29px;
    border: 2px solid #939393;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    opacity: 0.75;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
}

.scroller {
    width: 3px;
    height: 10px;
    -webkit-border-radius: 25%;
    -moz-border-radius: 25%;
    border-radius: 25%;
    background-color: #939393;
    -webkit-animation-name: scroll;
    -moz-animation-name: scroll;
    -o-animation-name: scroll;
    animation-name: scroll;
    -webkit-animation-duration: 2.2s;
    -moz-animation-duration: 2.2s;
    -o-animation-duration: 2.2s;
    animation-duration: 2.2s;
    -webkit-animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    -moz-animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    -o-animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    animation-timing-function: cubic-bezier(.15, .41, .69, .94);
    -webkit-animation-iteration-count: infinite;
    -moz-animation-iteration-count: infinite;
    -o-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

@-webkit-keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(15px);
        transform: translateY(15px);
        opacity: 0;
    }
}

@-moz-keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        -moz-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -moz-transform: translateY(15px);
        transform: translateY(15px);
        opacity: 0;
    }
}

@-o-keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -o-transform: translateY(15px);
        transform: translateY(15px);
        opacity: 0;
    }
}

@keyframes scroll {
    0% {
        opacity: 0;
    }

    10% {
        -webkit-transform: translateY(0);
        -moz-transform: translateY(0);
        -o-transform: translateY(0);
        transform: translateY(0);
        opacity: 1;
    }

    100% {
        -webkit-transform: translateY(15px);
        -moz-transform: translateY(15px);
        -o-transform: translateY(15px);
        transform: translateY(15px);
        opacity: 0;
    }
}

.future-congress-wrapper {
    position: relative;
}

.future-congress-back {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-position: top center;
    opacity: 0.47;
}

.future-congress-content {
    z-index: 2;
    position: relative;
    color: #fff;
    text-align: center;
    padding: 96px 0;
}

.future-congress-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
}

.section {
    margin: 124px 0;
    z-index: 1;
    position: relative;
}

.slider-details {
    max-width: 600px;
    margin: 0px auto 36px auto;
    overflow: hidden;
    color: #fff;
    text-align: center;
}

.slider-details--offset {
    padding-left: 181px;
    text-align: left;
}

.slider-details > a {
    float: left;
    margin-left: -181px;
    font-size: 0;
}

.form-contact {
    margin: 0px auto;
    max-width: 800px;
}

main {
    padding-top: 83px;
    width: 100%;
    flex: 1 1 auto;
    z-index: 1;
}

.soc {
    font-size: 0;
}

.soc li {
    display: inline-block;
}

.soc a {
    display: block;
    font-size: 24px;
    margin: 5px;
    width: 46px;
    height: 46px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    border: 1px solid #fff;
    text-align: center;
    padding-top: 2px;
    line-height: 46px;
}

.footer a:hover {
    border-color: #fbd224;
    color: #fbd224;
}

.soc li:first-child a {
    margin-left: 0;
}

.soc li:last-child a {
    margin-right: 0;
}

.slider-about-espa {
    position: relative;
    z-index: 1;
    /* margin-bottom: 48px; */
}

.home-events {
    background: #f5f5f1 url('../img/back2.jpg');
    position: relative;
    padding: 5rem 0;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.home-links {
    background: #f5f5f1 url('../img/back2.jpg');
    position: relative;
    padding: 24px 0;
    display: flex;
    justify-content: space-evenly;
    flex-direction: column;
}

@media only screen and (min-width: 600px) and (max-width: 991px) {
    .home-links {
        flex-direction: row;
        align-items: center;
    }

    .home-links hr {
        width: 9px;
        height: 80%;
        border-width: 0 0 0 1px;
    }
}

.home-links svg {
    max-width: 32px;
    max-height: 32px;
    display: block;
    margin: 0px auto 8px auto;
    fill: #949494;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.home-links a:not(.btn):hover svg {
    -webkit-transform: translateY(-1px) scale(1.05);
    -moz-transform: translateY(-1px) scale(1.05);
    -ms-transform: translateY(-1px) scale(1.05);
    -o-transform: translateY(-1px) scale(1.05);
    transform: translateY(-1px) scale(1.05);
    fill: #263c75;
}

.home-links a:not(.btn) {
    display: flex;
    font-size: 13px;
    text-align: center;
    text-transform: uppercase;
    flex-direction: column;
    justify-content: center;
    position: relative;
    width: 100%;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    min-height: 117px;
    padding: 24px 0;
}

.home-hero hr {
    margin: 0;
}

.home-hero .h2:not(h1):after {
    background: #fff;
}

.home-hero .slider-dots .slider-dot.active, .home-hero .slider-dots .slider-dot:hover:not(.active), .home-hero .slider-dots .slider-dot span {
    border-color: #c4c4b8;
}

.home-hero .slider-dots .slider-dot span {
    background-color: #c4c4b8;
}

.home-links img {
    max-width: 32px;
    margin: 0 auto 8px auto;
}

.home-links a:not(.btn):hover {
    color: #263c75;
}

.thesubmenu {
    height: 85px;
    overflow: hidden;
    margin-bottom: -16px;
    z-index: 3;
    position: sticky !important;
    top: 0;
}

.header-login + .thesubmenu:before {
    /* box-shadow: 0px 5px 10px 0px rgba(0, 0, 0, 0.08) inset; */
}

.thesubmenu:before {
    content: '';
    width: 100%;
    height: 69px;
    position: absolute;
    background-color: hsla(0, 0%, 98%, 1);
    border-top: 1px solid #dadada;
    border-bottom: 1px solid #dadada;
}

.thesubmenu a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-align-self: center;
    -ms-flex-item-align: center;
    align-self: center;
    padding: 18px 24px;
    text-transform: uppercase;
    font-size: 11px;
    height: 68px;
    white-space: nowrap;
}

.thesubmenu svg {
    width: 32px;
    height: 32px;
    float: left;
    display: inline-block;
    margin-right: 8px;
    fill: #696969;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.thesubmenu .slider-nav {
    margin: 0;
    display: block !important;
}

.thesubmenu .slider-prev {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -8px;
    font-size: 28px !important;
}

.thesubmenu .slider-next {
    position: absolute;
    top: 50%;
    right: 0;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    margin-top: -8px;
    font-size: 28px !important;
}

.thesubmenu .slider-stage {
    margin: 0px auto;
}

.thesubmenu .slider-nav .disabled {
    pointer-events: none;
    opacity: 0;
}

.thesubmenu .menu-item {
    position: relative;
    display: inline-block;
}

.thesubmenu .current-menu-item:not(.current-page-ancestor):not(.not-current):after {
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    margin-left: -5px;
    bottom: -20px;
    left: 50%;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    border: 10px solid black;
    border-color: transparent transparent #fafafa #fafafa;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    -o-transform-origin: 0 0;
    transform-origin: 0 0;
    -webkit-transform: rotate(-45deg);
    -moz-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    -o-transform: rotate(-45deg);
    transform: rotate(-45deg);
    -webkit-box-shadow: -1px 1px 0 0 rgb(218, 218, 218);
    -moz-box-shadow: -1px 1px 0 0 rgb(218, 218, 218);
    box-shadow: -1px 1px 0 0 rgb(218, 218, 218);
}

.thesubmenu .slider-stage {
    padding: 0 0px 17px 0px;
}

.thesubmenu a:hover {
    color: #263c75;
}

.thesubmenu .current-menu-item:not(.current-page-ancestor):not(.not-current) a {
    color: #263c75;
    font-weight: 600;
}

.thesubmenu .current-menu-item:not(.current-page-ancestor):not(.not-current) svg, .thesubmenu a:hover svg {
    fill: #263c75;
}

.thesubmenu .slider-stage-outer:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 69px;
    z-index: 1;
    width: 90px;
    background: -webkit-gradient(linear, left top, right top, color-stop(30%, rgb(239, 239, 239)),to(rgba(239, 239, 239,0)));
    background: -webkit-linear-gradient(left, rgb(239, 239, 239) 30%,rgba(239, 239, 239,0) 100%);
    background: -moz-linear-gradient(left, rgb(239, 239, 239) 30%,rgba(239, 239, 239,0) 100%);
    background: -o-linear-gradient(left, rgb(239, 239, 239) 30%,rgba(239, 239, 239,0) 100%);
    background: linear-gradient(to right, rgb(239, 239, 239) 30%,rgba(239, 239, 239,0) 100%);
    pointer-events: none;
}

.thesubmenu .slider-stage-outer:after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    height: 69px;
    z-index: 1;
    width: 90px;
    background: -webkit-gradient(linear, left top, right top, color-stop(30%, rgba(239, 239, 239,0)), to(rgb(239, 239, 239)));
    background: -webkit-linear-gradient(left, rgba(239, 239, 239,0) 30%, rgb(239, 239, 239) 100%);
    background: -moz-linear-gradient(left, rgba(239, 239, 239,0) 30%, rgb(239, 239, 239) 100%);
    background: -o-linear-gradient(left, rgba(239, 239, 239,0) 30%, rgb(239, 239, 239) 100%);
    background: linear-gradient(to right, rgba(239, 239, 239,0) 30%, rgb(239, 239, 239) 100%);
    pointer-events: none;
}

.thesubmenu .slider-item:not(:last-child):after {
    content: '';
    position: absolute;
    top: 16px;
    bottom: 16px;
    right: 0;
    width: 1px;
    background-color: #e0e0e0
}

.thumbnail-header-thumbnail {
    position: absolute;
    top: -24px;
    left: -24px;
    right: -24px;
    bottom: -24px;
    z-index: 1;
    background-position: center -10vw;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-filter: blur(5px);
    filter: blur(5px);
}

.thumbnail-header--has-thumbnail .thumbnail-header-thumbnail {
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    -webkit-filter: blur(0);
    filter: blur(0);
}

@media only screen and (min-width: 768px) {
    .thumbnail-header-thumbnail {
        background-position: center center;
    }
}

html:not(.ios) .thumbnail-header-thumbnail {
    background-attachment: fixed;
}

.thumbnail-header-info, .thumbnail-header {
    max-height: 100vh;
    min-height: 300px;
    position: relative;
    color: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
}

.thumbnail-header {
    -webkit-animation: fadeIn 2s forwards;
    -moz-animation: fadeIn 2s forwards;
    -o-animation: fadeIn 2s forwards;
    animation: fadeIn 2s forwards;
    overflow: hidden;
}

.thumbnail-header-info {
    z-index: 2;
    background-color: #ffffff73;
    overflow: hidden;
}

.thumbnail-header-table {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-flow: column;
    flex-flow: column;
    padding: 48px 0 0;
}

.thumbnail-header-table-inner {
    background: -webkit-gradient(linear,left top, left bottom,color-stop(0, rgba(255,255,255,0)),color-stop(70%, rgba(255,255,255,.5)),to(rgba(255,255,255,.5)));
    background: -webkit-linear-gradient(top,rgba(255,255,255,0) 0,rgba(255,255,255,.5) 70%,rgba(255,255,255,.5) 100%);
    background: -moz-linear-gradient(top,rgba(255,255,255,0) 0,rgba(255,255,255,.5) 70%,rgba(255,255,255,.5) 100%);
    background: -o-linear-gradient(top,rgba(255,255,255,0) 0,rgba(255,255,255,.5) 70%,rgba(255,255,255,.5) 100%);
    background: linear-gradient(to bottom,rgba(255,255,255,0) 0,rgba(255,255,255,.5) 70%,rgba(255,255,255,.5) 100%);
    padding: 72px 24px 24px 24px;
    width: 100%;
    height: 100%;
}

.thumbnail-header-table-inner-top {
    width: 100%;
    position: absolute;
}

.thumbnail-header-info a, .thumbnail-header-thumbnail-title {
    color: #fff;
}

.thumbnail-header-thumbnail-title {
    color: #263c75;
    position: relative;
    line-height: 1;
}

.thumbnail-header-thumbnail-subtitle {
    color: #263c75;
    position: relative;
    line-height: 1;
    margin-bottom: 12px;
}

.thumbnail-header-thumbnail-subtitle:after {
    display: none;
}

.thumbnail-header-thumbnail-title:not(:empty):after {
    content: '';
    position: absolute;
    width: 150px;
    bottom: -24px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    -moz-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    -o-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #263c75;
    height: 1px;
}

.media-breadcrumbs {
    position: relative;
    display: inline-block;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
    text-decoration: none;
    opacity: 0.5;
    cursor: default;
}

.media-breadcrumbs:hover {
    opacity: 1;
}

.media-breadcrumbs a {
    display: inline-block;
}

.media-breadcrumbs a:hover {
    -webkit-transform: translateY(-1px);
    -moz-transform: translateY(-1px);
    -ms-transform: translateY(-1px);
    -o-transform: translateY(-1px);
    transform: translateY(-1px)
}

.post-edit-link {
    position: absolute;
    bottom: -48px;
    left: 0;
}

.supercontainer-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -moz-box-orient: vertical;
    -moz-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
}

.modal-search__input {
    width: 100%;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    border: 0;
    background-color: transparent;
    font-size: 24px;
    font-style: italic;
    padding: 10px 50px 10px 20px;
    border-bottom: 1px solid #a2a2a2;
    display: block;
}

.modal-search__input:focus {
    outline: 0 none;
}

.modal-search__input::-webkit-input-placeholder {
    color: #949494;
}

.modal-search__input:-moz-placeholder {
    color: #949494;
    opacity: 1;
}

.modal-search__input::-moz-placeholder {
    color: #949494;
    opacity: 1;
}

.modal-search__input:-ms-input-placeholder {
    color: #949494;
}

.modal-search__pad {
    padding: 36px 48px 48px;
}

.modal-search__button {
    position: absolute;
    top: 0;
    right: 16px;
    bottom: 0;
    background-color: transparent;
    font-size: 29px;
    border: 0;
    color: #263c75;
}

.modal-search__results ul, .modal-search__results li {
    margin: 0;
    padding: 0;
    list-style-type: none;
    text-align: left;
}

.modal-search__results a {
    display: block;
    text-decoration: none;
    padding: 5px 48px 5px 76px;
    position: relative;
}

.modal-search__results-item > a {
    background-color: #f7f7f7;
    border-bottom: 1px solid #e8e8e8;
    color: #263c75;
}

.modal-search__results-item .dt {
    height: 65px;
}

.modal-search__results-item:last-child > a {
    border-bottom: 0;
}

.modal-search__results-cat-item {
    background-color: #ececec;
    color: #263c75;
}

.modal-search__results-item > a:hover {
    background-color: #fff;
    text-decoration: underline;
}

.modal-search__results > ul > li:first-child > .modal-search__results-cat-item {
    background-color: #263c75;
    color: #fff;
}

.modal-search__results > ul:hover > li:first-child > .modal-search__results-cat-item {
    background-color: #263c75;
    color: #fff;
}

.modal-search__results > ul > li:hover > .modal-search__results-cat-item {
    background-color: #263c75 !important;
    color: #fff;
}

.modal-search__results-item img {
    position: absolute;
    left: 10px;
    top: 10px;
    background-color: #cccccc;
    max-width: 48px;
    height: 48px;
}

.modal-search__results {
    text-align: left;
    max-height: 40vh;
    overflow: auto;
}

.modal-search__results-count {
    text-align: right;
    font-size: 14px;
    padding: 0 48px 12px 48px;
    margin: 0;
}

.modal-search__results-item-image {
    width: 54px;
    height: 54px;
    border: 0;
}

.highlight {
    -webkit-box-shadow: 0 0 0px 3px #fbd224;
    -moz-box-shadow: 0 0 0px 3px #fbd224;
    box-shadow: 0 0 0px 3px #fbd224;
    background-color: #fbd224;
    color: #263c75;
}

.modal-search__noresults {
    text-align: center;
    padding-bottom: 48px;
}

.loading:before {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 4;
    background-color: rgba(255, 255, 255, 0.87);
    background-image: url("../img/loading.svg");
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-animation: fadeIn 2s;
    -moz-animation: fadeIn 2s;
    -o-animation: fadeIn 2s;
    animation: fadeIn 2s;
}

#modal-search .modal-body {
    padding: 0;
}

.fix-transform {
    -webkit-transform: translate3d(0px, 0px, 0.01px);
    -moz-transform: translate3d(0px, 0px, 0.01px);
    transform: translate3d(0px, 0px, 0.01px);
}

[data-width] {
    display: inline-block;
}

.events-sub-nav {
    list-style-type: none;
    padding-left: 0;
    overflow: hidden;
}

.events-nav-previous {
    float: left;
    width: 50%;
}

.events-nav-next {
    float: right;
    width: 50%;
    text-align: right;
}

.events-meta-group h2 {
    padding: 16px 0;
    font-size: 18px;
    margin-bottom: 12px;
    margin-top: 0;
    text-align: left;
}

.events-meta-group h2:after {
    left: 0;
    -webkit-transform: none;
    -moz-transform: none;
    -ms-transform: none;
    -o-transform: none;
    transform: none;
}

.events-list .events-event-meta {
    font-size: 14px;
    margin-bottom: 12px;
    border-bottom: 1px solid #c5c5c5;
}

.tribe-events-event-image {
    font-size: 0;
    margin-bottom: 24px;
}

.tribe-events-event-image img {
    max-width: none;
    width: 100%;
}

.events-list .events-list-event-title {
    margin-bottom: 12px;
}

@media only screen and (min-width: 768px) {
    .events-event-meta {
        padding: 0 24px;
    }

    .events-list .events-event-meta {
        padding: 0;
        border: none;
    }

    .tribe-events-event-image {
        float: left;
        margin-right: 20px;
        margin-bottom: 0;
        max-width: 43vw;
        width: 100%;
    }

    .events-meta-group dt, .events-meta-group dd {
        padding-left: 0px;
        margin-left: 0;
    }
}

@media only screen and (min-width: 100px) {
    .tribe-events-event-image {
        max-width: 500px;
    }
}

.tribe-events-list-separator-month {
    padding: 16px 0;
    font-size: 18px;
    border-bottom: 1px solid #dcdcdc;
}

.events-list .type-events {
    margin-bottom: 48px;
    -webkit-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    padding: 24px;
}

.tribe-events-button {
    margin-bottom: 48px;
}

.events-notices ul {
    list-style-type: none;
    padding: 0;
}

.document-file {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
}

.document-avatar, .document-thumb {
    float: left;
    max-width: 46px;
    width: 100%;
    margin-right: 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.document-thumb > div {
    max-height: 25px;
}

.document-files {
    list-style-type: none;
    padding: 0;
    overflow: hidden;
    margin-bottom: 16px;
}

.document-file a {
    text-decoration: underline;
}

.accordion {
    margin-bottom: 24px;
}

@media (min-width: 768px) {
    .accordion {
        margin-bottom: 96px;
    }
}

.accordions {
    margin-bottom: 24px;
}

.accordion-item {
    margin-bottom: 24px;
    -webkit-transition: all .2s ease;
    -moz-transition: all .2s ease;
    -o-transition: all .2s ease;
    transition: all .2s ease;
    box-shadow: 0px 7px 21px 0px rgba(0, 0, 0, 0.08);
    border: 1px solid #d2d2d2;
}

.accordion-item:last-child, .accordion-content-inner > .accordions {
    margin-bottom: 0;
}

.accordion-content {
    position: relative;
    max-height: 0;
    -webkit-transition: max-height .25s ease-out;
    -o-transition: max-height .25s ease-out;
    -moz-transition: max-height .25s ease-out;
    transition: max-height .25s ease-out;
    overflow: hidden;
}

.accordion-content-inner {
    padding: 12px;
}

@media only screen and (min-width: 500px) {
    .accordion-content-inner {
        padding: 24px;
    }
}

.accordion-item--active .accordion-content {
    -webkit-transition: max-height .38s ease-in;
    -o-transition: max-height .38s ease-in;
    -moz-transition: max-height .38s ease-in;
    transition: max-height .38s ease-in;
    max-height: 500px;
}

.accordion-item:not(.accordion-item--active) > .accordion-content {
    max-height: 0!important
}

.accordion-item-title {
    margin: 0;
    font-size: 25px;
    position: relative;
    cursor: pointer;
    z-index: 1;
    padding: 8px 24px 8px 48px;
    user-select: none;
    color: #777777;
}

.accordion-item-title:before {
    content: "\e902";
    font-family: 'euroespa';
    font-size: 18px;
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    transform: translateY(-50%);
    left: 16px;
    -webkit-transition: all .3s ease-in-out;
    -moz-transition: all .3s ease-in-out;
    -o-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out;
}

.accordion-item--active > .accordion-item-title {
    color: #c5b358;
}

.accordion-item--active > .accordion-item-title:before {
    -webkit-transform: translateY(-50%) rotate(90deg);
    -moz-transform: translateY(-50%) rotate(90deg);
    -ms-transform: translateY(-50%) rotate(90deg);
    -o-transform: translateY(-50%) rotate(90deg);
    transform: translateY(-50%) rotate(90deg)
}

.contact-list figure:hover {
    background-color: rgb(250, 250, 250);
}

.contact-list figure {
    position: relative;
    padding: 20px;
    border: 1px solid transparent;
    border-bottom: 1px dashed rgb(195, 195, 195);
    height: 100%;
    display: flex;
    align-items: flex-start;
}

.contact-list figure:after {
    content: '';
    clear: both;
    display: block;
}

.contact-list figure h3 {
    font-size: 16px;
    color: #616161;
}

.contact-list figure p {
    margin-left: 0px;
    margin-right: 0;
    padding-left: 0;
    padding-right: 0;
}

.contact-list figure p.job .fa {
    margin-right: 5px;
    font-size: 16px;
    vertical-align: -1px;
}

.contact-list figure h2 {
    margin-top: 22px !important;
    text-align: left;
    float: left;
    font-size: 24px;
}

.contact-list figure h5 {
    clear: left;
    margin-top: 12px;
    display: block;
}

.contact-list figure h2:after {
    display: none;
}

.contact-list p {
    margin: 0.5em 0;
}

.contact-list .president p {
    display: inline-block;
}

.contact-list:hover {
    cursor: help;
}

.contact-list figure .rounded {
    width: 8rem;
    -webkit-box-shadow: 0 0 0px 2px rgba(0, 0, 0, 0.16);
    -moz-box-shadow: 0 0 0px 2px rgba(0, 0, 0, 0.16);
    box-shadow: 0 0 0px 2px rgba(0, 0, 0, 0.16);
    position: relative;
    overflow: hidden;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    -webkit-shape-outside: circle();
    shape-outside: circle();
    margin-right: 30px;
    -webkit-transition: opacity 0.26s ease-out;
    -moz-transition: opacity 0.4s ease-out;
    -o-transition: opacity 0.4s ease-out;
    transition: opacity 0.4s ease-out;
    opacity: 0.6;
    margin-bottom: 24px;
}

.contact-list figcaption {
    width: 100%;
}

.contact-list.flag figure .rounded {
    width: 50px;
    height: 50px;
}

.contact-list.flag figure img {
    position: absolute;
    left: -26%;
    top: -25%;
    width: 75px;
    height: 75px;
}

.contact-list img {
    margin-right: 28px;
}

.contact-list figure:hover .rounded {
    opacity: 1;
}

.contact-list figure:hover {
    border: 1px dashed rgb(195, 195, 195);
    border-top: 1px solid transparent
}

.contact-list figure:first-child:hover, .contact-list figure:first-of-type:hover, .contact-list>p+figure:hover {
    border-top: 1px dashed rgb(195, 195, 195);
}

.contact-list figure:nth-child(even)>img {
    float: right;
    margin: 0 0 0.3rem 2rem;
}

.contact-list>h4:not(:first-child) {
    margin-top: 20px;
}

body:not(.logged-in) .notification {
    display: none !important;
}

.notification {
    display: none;
}

@media only screen and (min-width: 1250px) {
    .notification {
        display: block !important;
        margin-right: 8px;
    }
}

.notification-count {
    border-radius: 50%;
    background-color: #263c75;
    color: #fff;
    font-size: 12px;
    line-height: 24px;
    width: 24px;
    height: 24px;
    text-align: center;
    cursor: pointer;
}

.notification-list-wrap {
    position: absolute;
    top: 33px;
    right: 0;
    font-size: 12px;
    min-width: 280px;
    background-color: #fff;
    border-radius: 8px;
    -webkit-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 18px 49px 0px rgba(0, 0, 0, 0.11);
    border: 1px solid rgba(0, 0, 0, 0.05);
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s linear, opacity 0.3s linear, top 0.3s linear;
}

.notification-list {
    display: block !important;
    overflow-x: hidden;
    overflow-y: scroll;
    max-height: 300px;
}

.notification-list::-webkit-scrollbar {
    width: 5px;
    height: 5px;
}

.notification-list::-webkit-scrollbar-track {
    background: rgba(0, 0, 0, 0);
}

.notification-list::-webkit-scrollbar-thumb {
    background: #263c75a3;
}

.notification-list:hover::-webkit-scrollbar-thumb {
    background: #263c75;
}

.notification-list-wrap:before {
    content: '';
    position: absolute;
    top: -12px;
    right: 0;
    width: 12px;
    height: 12px;
    background: #fff;
    transform-origin: bottom center;
    border-top: 1px solid rgba(0, 0, 0, 0.09);
    border-right: 1px solid rgba(0, 0, 0, 0.09);
    transform: rotate(-45deg) translateX(-50%);
}

.notification-list li:first-child {
    padding-top: 16px !important;
}

.notification-list li:last-child {
    padding-bottom: 16px !important;
}

.notification-list a {
    color: #263c75;
    text-decoration: underline
}

.notification-list time {
    font-size: 10px;
    color: #ababab;
}

.notification-list li {
    padding: 6px 24px 6px 24px !important;
    border-bottom: 1px solid #f3f3f3;
}

.notification-list li:last-child {
    border-bottom: 0;
}

.notification-on .notification-list-wrap {
    visibility: visible;
    opacity: 1;
    top: 33px;
}

@media only screen and (min-width: 1340px) {
    .notification-list-wrap {
        right: auto;
        left: 50%;
        transform: translateX(-50%);
    }

    .notification-list-wrap:before {
        right: auto;
        left: 50%;
        transform: rotate(-45deg) translateX(-50%);
    }
}

figure a {
    display: block;
}

.alert a {
    text-align: center;
    color: #fff;
    background-color: rgba(162, 0, 0, 0.8);
    display: block;
    padding: 8px;
    text-decoration: underline;
    margin-bottom: -37px;
    position: relative;
    z-index: 10;
}

ul.pdf {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: flex-start;
    margin-left: -30px;
}

ul.pdf li {
    display: flex;
    margin-bottom: 4em;
    width: 50%;
}

@media only screen and (min-width: 768px) {
    ul.pdf li {
        width: 25%;
        margin-bottom: 1em;
    }
}

ul.pdf li a {
    display: inline-block;
    text-align: center;
}

ul.pdf li:before {
    display: none !important;
}

ul.pdf a:hover {
    opacity: 0.8;
}

ul.pdf li a:before {
    content: '';
    display: inline-block;
    width: 1em;
    height: 1em;
    margin-right: 0.2em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 115.28 122.88' style='enable-background:new 0 0 115.28 122.88' xml:space='preserve'%3E%3Cpath fill='%23263c75' d='M25.38 57h64.88V37.34H69.59c-2.17 0-5.19-1.17-6.62-2.6-1.43-1.43-2.3-4.01-2.3-6.17V7.64H8.15a.58.58 0 0 0-.41.18c-.15.1-.19.23-.19.42v106.45c0 .14.09.32.18.41.09.14.28.18.41.18h81.51c.18 0 .17-.09.27-.18.14-.09.33-.28.33-.41v-11.16H25.38a7.6 7.6 0 0 1-7.56-7.56V64.55c0-4.15 3.4-7.55 7.56-7.55zm4.12 10.4h13.19c2.87 0 5.02.68 6.46 2.05 1.43 1.37 2.14 3.31 2.14 5.84 0 2.59-.78 4.62-2.34 6.08-1.56 1.46-3.94 2.19-7.14 2.19h-4.35v9.49H29.5V67.4zm7.95 10.97h1.95c1.54 0 2.62-.27 3.24-.8.62-.53.93-1.21.93-2.04 0-.81-.27-1.49-.81-2.05-.54-.56-1.55-.84-3.05-.84h-2.27v5.73h.01zM54.99 67.4h11.78c2.32 0 4.2.32 5.63.94a9.19 9.19 0 0 1 3.55 2.71 11.14 11.14 0 0 1 2.02 4.11c.42 1.56.63 3.22.63 4.97 0 2.74-.31 4.87-.94 6.38a10.5 10.5 0 0 1-2.6 3.8 8.53 8.53 0 0 1-3.57 2.04c-1.74.47-3.31.7-4.72.7H54.99V67.4zm7.91 5.81v14.01h1.95c1.66 0 2.84-.19 3.55-.55a3.78 3.78 0 0 0 1.65-1.92c.4-.92.6-2.4.6-4.45 0-2.72-.44-4.57-1.33-5.58-.89-1-2.36-1.5-4.42-1.5h-2v-.01zm19.35-5.81h19.6v5.52H90.21v4.48h9.96v5.2h-9.96v10.46h-7.95V67.4h-.01zM97.79 57h9.93a7.59 7.59 0 0 1 7.56 7.56v31.42a7.6 7.6 0 0 1-7.56 7.56h-9.93v13.55a5.78 5.78 0 0 1-5.8 5.8H5.81a5.74 5.74 0 0 1-4.1-1.7 5.74 5.74 0 0 1-1.7-4.1V5.85a5.78 5.78 0 0 1 5.8-5.8h58.72c.13-.05.27-.05.41-.05.64 0 1.29.28 1.75.69h.09a.9.9 0 0 1 .23.18L97 31.23c.51.51.88 1.2.88 1.98 0 .23-.05.41-.09.65V57zM67.52 27.97V8.94l21.43 21.7H70.19c-.74 0-1.38-.32-1.89-.78a2.72 2.72 0 0 1-.78-1.89z' style='fill-rule:evenodd;clip-rule:evenodd'/%3E%3C/svg%3E");
    background-size: auto 100%;
    background-repeat: no-repeat;
}

ul.pdf img {
    max-width: 16em;
    -webkit-box-shadow: 0 4px 80px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0 4px 80px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 80px 0px rgba(0, 0, 0, 0.1);
    width: 100%;
}

.loading-placeholder {
    position: relative;
    max-width: fit-content;
}

.loading-placeholder.lazycomplete .shine {
    position: relative;
    overflow: hidden;
}

html.js .loading-placeholder img {
    position: relative;
    opacity: 0;
    transition: opacity 2s ease;
    z-index: 2;
}

html.js .loading-placeholder.lazycomplete img {
    opacity: 1;
}

.loading-placeholder:not(.lazycomplete) {
    position: relative;
}

.loading-placeholder {
    background: transparent !important;
}

html.js .loading-placeholder:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    transition: 1.5s ease;
    background-blend-mode: soft-light;
    z-index: 1;
    background-color: var(--dominant-color, #f5f7f9);
    background: linear-gradient(100deg, rgba(255, 255, 255, 0) 40%, rgba(255, 255, 255, 0.5) 50%, rgba(255, 255, 255, 0) 60%) var(--dominant-color, #f5f7f9);
    background-size: 200% 100%;
    background-position-x: 180%;
    animation: 1s skeleton-loading ease-in-out infinite;
}

@keyframes skeleton-loading {
    to {
        background-position-x: -20%
    }
}

html.js .loading-placeholder.lazycomplete:not(.placeholder):after {
    opacity: 0;
}
