html {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 100%;
    background-color: #fff;
    color: #777777;
    font-weight: 300;
    font-size: 14px;
    font-family: 'Antenna', sans-serif;
    line-height: 1.8;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

@media only screen and (min-width: 768px){
    html {
        font-size: 16px;
    }
}

html.is-overflow {
    overflow: hidden;
}

html.is-transitioning,
html.is-transitioning * {
    cursor: progress;
    pointer-events: none;
}

[data-ajax="container"] {
    position: relative;
    width: 100%;
}

.fade-leave-active {
    -webkit-transition: opacity 0.25s ease;
    -o-transition: opacity 0.25s ease;
    -moz-transition: opacity 0.25s ease;
    transition: opacity 0.25s ease;
}

.fade-enter-active {
    -webkit-transition: opacity 0.75s ease, -webkit-transform 0.75s ease;
    -o-transition: opacity 0.75s ease, -o-transform 0.75s ease;
    -moz-transition: opacity 0.75s ease, transform 0.75s ease, -moz-transform 0.75s ease;
    transition: opacity 0.75s ease, -webkit-transform 0.75s ease;
    transition: opacity 0.75s ease, transform 0.75s ease;
    transition: opacity 0.75s ease, transform 0.75s ease, -webkit-transform 0.75s ease;
    transition: opacity 0.75s ease, transform 0.75s ease, -webkit-transform 0.75s ease, -moz-transform 0.75s ease, -o-transform 0.75s ease;
}

.fade-leave {
    opacity: 1;
}

.fade-enter {
    opacity: 0;
    -webkit-transform: translateY(-10px);
       -moz-transform: translateY(-10px);
        -ms-transform: translateY(-10px);
         -o-transform: translateY(-10px);
            transform: translateY(-10px);
}

.fade-leave-to {
    opacity: 0;
}

.fade-enter-to {
    opacity: 1;
    -webkit-transform: translateY(0);
       -moz-transform: translateY(0);
        -ms-transform: translateY(0);
         -o-transform: translateY(0);
            transform: translateY(0);
}

html.nav--open,
html.is-transitioning {
    overflow-y: hidden;
}

html.nav--open [data-ajax="container"] {
    opacity: 0.2;
    cursor: pointer;
}
html.nav--open [data-scroll-container] {
    pointer-events: none;
}

[data-scroll-container] {
    min-height: 100vh;
    width: -webkit-calc( 100% - 200px );
    width: -moz-calc( 100% - 200px );
    width: calc( 100% - 200px );
    width: 100vw;
    will-change: filter;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -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;
    overflow-x: hidden;
}

@media only screen and (min-width:900px) {
    [data-scroll-container] {
         width: 75vw;
    }
}
@media only screen and (min-width:1200px) {
    [data-scroll-container] {
         width: -webkit-calc( 100vw - 300px );
         width: -moz-calc( 100vw - 300px );
         width: calc( 100vw - 300px );
    }
}

mark {
    background: rgba(255,174,0,0.75);
    -webkit-box-shadow: 0 0 0 4px rgba(255,174,0,0.75);
       -moz-box-shadow: 0 0 0 4px rgba(255,174,0,0.75);
            box-shadow: 0 0 0 4px rgba(255,174,0,0.75);
}

body {
    min-height: 100%;
    background: #fff;
}
*, :after, :before {
    -webkit-box-sizing: inherit;
    -moz-box-sizing: inherit;
    box-sizing: inherit;
}
strong, b {
    font-weight: 500;
    color: var(--color--blue);
}

.has-text-color strong{
    color: inherit;
}

a, button {
    cursor: pointer;
    -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;
}

.blue {
    color: #312783;
}

a > svg,
button > svg,
a > svg.lazyloaded,
button > svg.lazyloaded {
    -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;
}

.btn > svg {
    width: 2em;
    height: 2em;
    fill: #fff;
}

a:hover > svg,
button:hover > svg {
    fill: #312783;
}

.btn:hover > svg {
    fill: #fff;
    transform: translateX(5px);
}

.block-embed {
    margin-top: 1rem;
}

.video-container {
    position: relative;
    overflow: hidden;
    padding-bottom: 56.25%;
    height: 0;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    background-repeat: no-repeat;
    cursor: pointer;
}
.video-container embed, .video-container iframe, .video-container object {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
}
img:not([src]) {
    content: url(data:image/gif;base64,R0lGODlhAQABAIAAAAAAAP///yH5BAEAAAAALAAAAAABAAEAAAIBRAA7);
}
hr {
    clear: both;
    margin: 24px auto 32px auto;
    width: 100%;
    border: 0;
    border-bottom: 1px solid #dcdcdc;
}
.mb + hr {
    margin-top: 40px;
}

.btn {
    position: relative;
    display: inline-block;
    margin: 0;
    padding: 15px 30px 13px 30px;
    min-width: 176px;
    min-height: 38px;
    outline: none;
    border: 0;
    -webkit-border-radius: 4px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    -webkit-box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.11);
    color: #fff;
    vertical-align: middle;
    text-align: center;
    text-decoration: none;
    font-weight: 300;
    font-size: 12px;
    font-family: 'Antenna', sans-serif;
    line-height: 1;
    cursor: pointer;
    -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-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    will-change: auto;
    background: #312783;
}

.btn:active, .btn:focus, .btn:hover {
    color: #fff;
    background: #29216d;
    -webkit-box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.15);
    -moz-box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.15);
    box-shadow: 0px 11px 38px 0px rgba(0, 0, 0, 0.15);
}

.btn-full {
    width: 100%;
}

.btn-border:active, .btn-border:focus, .btn-border:hover {
    text-decoration: underline;
}

.btn-sm {
    padding: 11px 2em 10px 2em;
    min-height: 32px;
    font-size: 11px;
}

.btn-icon {
    padding-right: 3em;
}

.btn-icon svg {
    margin: -0.7em 0;
}

.btn.btn-orange {
    background-image: -moz-linear-gradient( 90deg, rgb(255,174,0) 0%, rgb(235,194,0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(255,174,0) 0%, rgb(235,194,0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(255,174,0) 0%, rgb(235,194,0) 100%);
    color: #817300;
}

.btn-orange:active, .btn-orange:focus, .btn-orange:hover {
    color: #796c00;
}

.btn.btn-gray {
    color: #6d6d6d;
    background: transparent;
}

.btn-gray:active, .btn-gray:focus, .btn-gray:hover {
    color: #7d7d7d;
}

.btn.btn-square {
    color: #fff;
    background: transparent;
    -webkit-box-shadow: none;
       -moz-box-shadow: none;
            box-shadow: none;
    border: 1px solid #fff;
}

.btn.btn-square:active, .btn.btn-square:focus, .btn.btn-square:hover {
    color: #ffae00;
    border: 1px solid #fff;
    background: #fff;
}

.btn.btn-square:active > svg, .btn.btn-square:focus > svg, .btn.btn-square:hover > svg {
    fill: #ffae00;
}

.burger {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 10;
    background: #312783;
}

.burger span {
    display: none;
}

@media (min-width: 900px) {
    .burger {
        display: none;
    }
}

.burger ul {
    display: block;
    float: right;
    margin: 0;
    padding: 19px 0 0 14px;
    width: 60px;
    height: 60px;
    -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;
}
.burger li {
    margin-bottom: 6px;
    width: 31px;
    height: 3px;
    background-color: #ffffff;
    list-style-type: none;
    -webkit-transition: transform .2s linear;
    -o-transition: transform .2s linear;
    -moz-transition: transform .2s linear;
    -webkit-transition: -webkit-transform .2s linear;
    -o-transition: -o-transform .2s linear;
    -moz-transition: transform .2s linear, -moz-transform .2s linear;
    transition: -webkit-transform .2s linear;
    transition: transform .2s linear;
    transition: transform .2s linear, -webkit-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: #fff;
}
.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 {
    width: 45px;
    -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;
}
html.nav--open .burger li:last-child {
    width: 45px;
    -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: 4px 8px;
}
.grecaptcha-badge {
    visibility: hidden;
}

/*
.slider .slider__img {
    opacity: 0;
    transition: all .3s ease-in-out;
}
*/

/*
.slider.slider--fvs .slider__list > .slider__slide:first-child .slider__img {
    opacity: 1;
    transition: none;
}
*/

.slider.slider--fvs {
    visibility: visible !important;
}

.slider.slider--fvs:not(.lazyloaded)>.slider__track>.slider__list>.slider__slide:first-child,
.slider.slider--fvs:not(.lazyloaded)>.slider__track__wrapper>.slider__track>.slider__list>.slider__slide:first-child {
    opacity: 1 !important;
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
}

.supercontainer {
    min-height: 100vh;
    overflow: hidden;
}

.modal--open sidebar,
.modal--open [data-scroll-container] {
    -webkit-filter: blur(2px);
    filter: blur(2px);
}

@media only screen and (min-width:900px) {
    .supercontainer {
        padding-left: 25vw;
    }
}
@media only screen and (min-width:1200px) {
    .supercontainer {
        padding-left: 300px;
    }
}

.sidebar-header {
    position: relative;
    z-index: 10;
    padding: 16px 0;
    background: #312783;
    text-align: center;
}

.sidebar-logo {
    display: block;
}

.sidebar-logo img {
    display: block;
    margin: 0 auto;
    max-width: 267px;
    width: 100%;
    padding: 0 8px;
}

@media only screen and (max-height:600px) {
    .sidebar-logo img {
        max-height: 15vh;
    }
}

@media only screen and (min-height:900px) {
    .sidebar-header {
        padding: 40px 0;
    }
}

.sidebar {
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    z-index: 10;
    min-width: 200px;
    max-width: 300px;
    width: 25vw;
    background: #f7f7f7;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.11);
    will-change: filter;
}

@media only screen and (max-width:899px) {
    .sidebar{
        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;
        -webkit-transform: translateX(-100%);
           -moz-transform: translateX(-100%);
            -ms-transform: translateX(-100%);
             -o-transform: translateX(-100%);
                transform: translateX(-100%);
    }
    html.nav--open .sidebar{
        -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
        -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
        box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.3);
        -webkit-transform: translateX(0%);
           -moz-transform: translateX(0%);
            -ms-transform: translateX(0%);
             -o-transform: translateX(0%);
                transform: translateX(0%);
    }/*
    html.nav--open .burger {
        left: 300px;
    }
    */
}

button.toggle {
    border: 0;
    background: transparent;
}

button.toggle svg {
    padding: 0;
    width: 20px;
    height: 20px;
    cursor: copy;
    -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;
}

button.toggle:hover svg,
a.toggle > button:hover svg,
a.toggle > button:focus svg{
    fill: #312783;
}

button.toggle.is-visible .icon-caret-right {
    -webkit-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    fill: #312783;
}

.sidebar-wrapper {
    position: relative;
    display: block;
    margin: 0 auto;
    /* padding: 0 16px; */
    /* max-width: 220px; */
    width: 100%;
}

.sidebar-wrapper .btn {
    width: 100%;
}

.sidebar-header .sidebar-wrapper {
    max-width: 282px;
}

.avatar {
    width: 26px;
    height: 26px;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
}

.menu-burger {
    margin: 0 0 24px 36px;
    padding: 0;
}

.menu-burger li {
    list-style-type: none;
    width: 1.3em;
    height: 2px;
    background: #c1c1c1;
    margin-bottom: 3px;
}

.menu-item .sub-menu {
    padding-left: calc( 36px + 2.2em );
}

.menu-item a {
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    padding: 12px 24px 12px 36px;
    color: #444444;
    font-weight: 500;
    font-size: 13px;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    text-decoration: none;
}

.menu-item.highlight-purple a {
    color: #9a00c5;
}

.menu-item.highlight-purple svg {
    fill: #9a00c5;
}

.menu-item.highlight a {
    color: #312783;
}

.menu-item.highlight svg {
    fill: #312783;
}

.menu-item > a > svg {
    fill: #949494;
    display: inline-block;
    width: 1.4em;
    height: 1.4em;
    margin-right: 1.2em;
    position: relative;
    top: -0.05em;
}

.menu-item > a:hover > svg {
    fill: #444444;
}

.menu-item.current > a > svg {
    fill: #ffae00;
}

.main-menu-links {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    margin: 24px 24px 24px 24px;
    max-width: 90px;
    -webkit-box-pack: justify;
    -moz-box-pack: justify;
    -ms-flex-pack: justify;
}

.main-menu-links a {
    padding: 12px;
    font-size: 15px;
}

.main-menu-links a svg {
    width: 1.5em;
    margin: 0;
}

.sub-menu a {
    padding: 9px 0;
}

.bluehighlight {
    margin: 24px 0
}

.bluehighlight a:before,
.bluehighlight a:after {
    content: '';
    position: absolute;
    top: 0;
    left: 36px;
    width: 100px;
    height: 1px;
    background: #e4e4e4;
}

.bluehighlight a:after {
    top: auto;
    bottom: 0;
}

.bluehighlight a {
    padding-top: 24px;
    padding-bottom: 24px;
    color: #312783;
    text-transform: uppercase;
}

.bluehighlight a svg {
    fill: #312783;
    width: 2em;
    height: 2em;
}

.badge {
    display: inline-block;
    padding: 3px 9px;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0 0 0 1px #ffae00;
    -moz-box-shadow: 0 0 0 1px #ffae00;
    box-shadow: 0 0 0 1px #ffae00;
    color: #ffae00;
    text-transform: uppercase;
    white-space: nowrap;
    letter-spacing: 1px;
}

.badge-sm {
    display: inline-block;
    margin: 0 1em 0 0;
    font-size: 0.7em;
}

.menu-item > a:hover,
.menu-item> a:hover + button {
    color: #000000;
}

.menu-item.current > a {
    color: #ffae00;
}

.main-menu-content > .menu-item.current > a{
    background-image: -webkit-gradient( linear, left top, right top, from(rgba(255,174,0,0.3)), color-stop(23%, rgba(255,174,0,0)));
    background-image: -webkit-linear-gradient( left, rgba(255,174,0,0.3) 0%, rgba(255,174,0,0) 23%);
    background-image: -moz-linear-gradient( left, rgba(255,174,0,0.3) 0%, rgba(255,174,0,0) 23%);
    background-image: -o-linear-gradient( left, rgba(255,174,0,0.3) 0%, rgba(255,174,0,0) 23%);
    background-image: linear-gradient( 90deg, rgba(255,174,0,0.3) 0%, rgba(255,174,0,0) 23%);
}

.menu-item.current > a {
    text-decoration: underline;
}

.menu-item-has-children {
    position: relative;
}

.menu-item-has-children > button {
    width: 2rem;
    position: absolute;
    top: .75rem;
    right: 2rem;
}

.main-menu {
    padding: 48px 0 64px 0;
    padding: 3vh 0 6vh 0;
}

.menu-item-seminars {
    padding: 0 0 24px 0;
    padding: 12px 0 3vh 0;
}

.toggle-content {
    position: relative;
    overflow: hidden;
    height: 0;
    -webkit-transition: height 0.25s cubic-bezier(0.275, 0.075, 0.215, 0.94);
    -o-transition: height 0.25s cubic-bezier(0.275, 0.075, 0.215, 0.94);
    -moz-transition: height 0.25s cubic-bezier(0.275, 0.075, 0.215, 0.94);
    transition: height 0.25s cubic-bezier(0.275, 0.075, 0.215, 0.94);
}

.toggle-content.is-visible {
    height: auto;
}

abbr {
    position: relative;
}

abbr:hover::after {
    position: absolute;
    top: 100%;
    right: 100%;
    z-index: 1;
    display: block;
    padding: 1em;
    width: 280px;
    background: yellow;
    color: #009ed6;
    content: attr(data-title);
    text-align: left;
    font-weight: normal;
    font-size: 12px;
    line-height: 1.5;
}

.form-login-help {
    position: absolute;
    top: 20px;
    right: 24px;
    width: 32px;
    height: 32px;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    background-color: #009ed6;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: bold;
    font-size: 22px;
    line-height: 32px;
    cursor: pointer;
}

.main-menu-scroller {
    position: relative;
    overflow-y: auto;
    width: 100%;
    height: 100vh;
}

.form-sidebar-login {
    padding: 24px 0;
}

.lang {
    text-align: right;
    font-size: 0;
    margin-bottom: 24px;
}

@media only screen and (min-width:900px) {
    .lang {
        text-align: left;
    }
}

.lang li {
    display: inline-block;
}

.lang a {
    display: block;
    color: rgb(129, 130, 130);
    text-decoration: underline;
    text-transform: uppercase;
    font-size: 10px;
}

.hp-slider {
    position: relative;
}

.slider__track__wrapper {
    overflow: hidden;
    max-height: 513px;
}

.box-dashed {
    padding: 16px 24px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    background: #fff;
    text-align: center;
    font-size: 14px;
}

.box-dashed-title {
    margin-bottom: 8px;
    text-align: left;
    letter-spacing: 1.5px;
}

.box-dashed-inner {
    display: inline-block;
}

.box-dashed-content {
    width: 100%;
    text-align: center;
    font-size: 12px;
}

/*
.box-dashed-content a {
    border-bottom: thin solid #0000003b;
}

.box-dashed-content a:hover {
    border-bottom: thin solid #0094c8;
}
*/
.box-dashed-content ul {
    margin: 0;
    text-align: left;
}

@media only screen and (min-width:1246px) {
    .box-dashed-inner {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        flex-direction: row;
        -webkit-align-items: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
           -moz-box-orient: horizontal;
           -moz-box-direction: normal;
        -webkit-box-align: center;
           -moz-box-align: center;
            -ms-flex-align: center;
    }
    .box-dashed-title {
        margin: 0;
        padding-right: 10px;
        min-width: 218px;
        text-align: center;
    }
    .box-dashed {
        padding: 16px 24px 16px 0px;
        background: #fff url('../img/arrow.png') left center no-repeat;
    }
    .box-dashed-content ul {
        display: inline-block;
    }
}

.slider__img {
    /* padding-bottom: 60%; */
    height: 0;
    width: 100%;
    min-height: 500px;
}

.slider__img img {
    filter: url("data:image/svg+xml;utf8,&lt;svg xmlns=\'http://www.w3.org/2000/svg\'&gt;&lt;filter id=\'grayscale\'&gt;&lt;feColorMatrix type=\'matrix\' values=\'0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0\'/&gt;&lt;/filter&gt;&lt;/svg&gt;#grayscale");
    filter: gray;
    -webkit-filter: grayscale(100%);
    width: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 0 0;
       object-position: 0 0;
    height: 100%;
}

.slider__gradient {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-image: -webkit-gradient( linear, left bottom, left top, from(rgb(218,149,0)), to(rgba(255,174,0,0.5)));
    background-image: -webkit-linear-gradient( bottom, rgb(218,149,0) 0%, rgba(255,174,0,0.5) 100%);
    background-image: -moz-linear-gradient( bottom, rgb(218,149,0) 0%, rgba(255,174,0,0.5) 100%);
    background-image: -o-linear-gradient( bottom, rgb(218,149,0) 0%, rgba(255,174,0,0.5) 100%);
    background-image: linear-gradient( 0deg, rgb(218,149,0) 0%, rgba(255,174,0,0.5) 100%);

}

.slider__slide time {
    position: absolute;
    top: 2em;
    right: 2em;
    padding: 2px 6px;
    color: #fff;
    font-size: 10px;
    opacity: 0.55;
    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;
}

.slider__slide time svg{
    width: 1.2em;
    height: 1.2em;
    fill: #fff;
    margin-right: 0.5em;
}

.slider__slide a {
    /* fix for strange effect */
    -webkit-transition: none;
    -o-transition: none;
    -moz-transition: none;
    transition: none;
}

.slider__link {
    position: absolute;
    right: 0;
    bottom: 0;
    left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    padding: 24px 2em 96px 2em;
    min-height: 130px;
    color: #fff;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
}

.slider__link span:before {
    content: '';
    display: block;
    width: 300px;
    background: #fff;
    height: 2px;
    margin-bottom: 24px;
}

.slider__link:hover {
    color: #fff;
}

.slider__link h2 {
    display: inline;
    margin: 0;
    max-width: 400px;
    color: #fff;
    font-weight: 300;
    font-size: 20px;
    line-height: 1.5;
}

@media only screen and (min-width:1000px) {
    .slider__link h2 {
        font-size: 32px;
        line-height: 1;
    }
}

@media only screen and (min-width:1200px) {
    .slider__link h2 {
        line-height: 1.5;
    }
}

.slider__cover {
    position: relative;
}

.slider__cover a {
    opacity: 0;
    -webkit-transform: translateY(15px);
       -moz-transform: translateY(15px);
        -ms-transform: translateY(15px);
         -o-transform: translateY(15px);
            transform: translateY(15px);
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    -moz-transition: all .8s;
    transition: all .8s;
}

.slider__desc > * {
    opacity: 0;
    -webkit-transform: translateY(5px);
       -moz-transform: translateY(5px);
        -ms-transform: translateY(5px);
         -o-transform: translateY(5px);
            transform: translateY(5px);
    -webkit-transition: all .8s;
    -o-transition: all .8s;
    -moz-transition: all .8s;
    transition: all .8s;
}

.is-active .slider__cover a {
    opacity: 1;
    -webkit-transition-delay: 0s;
       -moz-transition-delay: 0s;
         -o-transition-delay: 0s;
            transition-delay: 0s;
}

.is-active .slider__desc {
    opacity: 1;
    -webkit-transition-delay: .4s;
       -moz-transition-delay: .4s;
         -o-transition-delay: .4s;
            transition-delay: .4s;
}

.is-active * {
    opacity: 1;
    -webkit-transform: none !important;
       -moz-transform: none !important;
        -ms-transform: none !important;
         -o-transform: none !important;
            transform: none !important;
}

.slider__link:hover h2 {
   -webkit-box-shadow: inset 0 -0.05em #fff;
      -moz-box-shadow: inset 0 -0.05em #fff;
           box-shadow: inset 0 -0.05em #fff;
}

.slider__desc {
    padding: 16px 32px 24px 32px;
    font-size: 13px;
}

.slider__desc p {
    display: -webkit-box;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    height: 38px;
    line-height: 1.5;
}

.slider__progress {
    position: absolute;
    right: 0;
    left: 0;
    bottom: 0;
}

.slider__pagination {
    bottom: 2em;
    left: 2em;
    -webkit-transform: none;
       -moz-transform: none;
        -ms-transform: none;
         -o-transform: none;
            transform: none;
    width: auto;
}

.link-icon {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
    color: #e09900;
    font-size: 12px;
    font-weight: 500;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
}

.link-icon span {
    text-decoration: underline;
}

.link-icon svg {
    margin-left: 5px;
    width: 1.7em;
    height: 1.7em;
    fill: #e09900;
    position: relative;
}

.link-icon-caret {
    position: relative;
    left: -5px;
    color: #e09900;
}

.link-icon.link-icon-caret svg {
    margin: -0.1em 0.2em -0.1em 0;
}

.link-icon.link-icon-caret:hover svg {
    fill: #ffbf35;
}

.loop-article > a {
    text-decoration: none;
}

.loop-article-image {
    position: relative;
    height: 0;
    padding-bottom: 60%;
    margin-bottom: 24px;
    overflow: hidden;
}

a:hover .loop-article-image:after {
    opacity: 0.5;
}

.loop-article-image:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background-image: -moz-linear-gradient( -90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 56%, rgba(244,244,244,0) 58%, rgba(115,115,115,0.25) 80%, rgba(0,0,0,0.50196) 100%);
    background-image: -webkit-linear-gradient( -90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 56%, rgba(244,244,244,0) 58%, rgba(115,115,115,0.25) 80%, rgba(0,0,0,0.50196) 100%);
    background-image: -ms-linear-gradient( -90deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0) 56%, rgba(244,244,244,0) 58%, rgba(115,115,115,0.25) 80%, rgba(0,0,0,0.50196) 100%);
    -webkit-transition: opacity .3s ease-in-out;
    -o-transition: opacity .3s ease-in-out;
    -moz-transition: opacity .3s ease-in-out;
    transition: opacity .3s ease-in-out;
}

.loop-article-image img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
}

.loop-article-title {
    color: #312783;
    font-size: 17px;
    font-weight: 400;
    margin-bottom: 16px;
    line-height: 1.4;
    display: -webkit-box;
}

@media only screen and (min-width:768px) {
    .loop-article-title {
        overflow: hidden;
        max-height: 68px;
        -o-text-overflow: ellipsis;
        text-overflow: ellipsis;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
    }
}

.loop-article-title + hr {
    max-width: 50%;
    margin: 0 0 16px 0;
}

.loop-article-perex {
    color: #5a5a5a;
    font-size: 11px;
    display: -webkit-box;
    overflow: hidden;
    margin-bottom: 8px;
    max-height: 20px;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}

.loop-article-time {
    position: absolute;
    left: 24px;
    bottom: 13px;
    color: #fff;
    font-size: 10px;
    z-index: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: opacity 0.75s ease, -webkit-transform 0.75s ease;
    -o-transition: opacity 0.75s ease, -o-transform 0.75s ease;
    -moz-transition: opacity 0.75s ease, transform 0.75s ease, -moz-transform 0.75s ease;
    transition: opacity 0.75s ease, -webkit-transform 0.75s ease;
    transition: opacity 0.75s ease, transform 0.75s ease;
    transition: opacity 0.75s ease, transform 0.75s ease, -webkit-transform 0.75s ease;
    transition: opacity 0.75s ease, transform 0.75s ease, -webkit-transform 0.75s ease, -moz-transform 0.75s ease, -o-transform 0.75s ease;
}

a:hover .loop-article-time {
    -webkit-transform: translateY(5px);
       -moz-transform: translateY(5px);
        -ms-transform: translateY(5px);
         -o-transform: translateY(5px);
            transform: translateY(5px);
    opacity: 0.5;
}

.loop-article-time svg {
    fill: #fff;
    width: 1.2em;
    height: 1.2em;
    margin-right: 5px;
}

.border-bottom {
    border-bottom: 1px solid #e5e5e5;
}

.section-title {
    margin-bottom: 25px;
    border-bottom: 1px solid #e5e5e5;
    max-width: 400px;
    position: relative;
    padding-left: 12px;
    margin-left: -12px;
}

.section-title:before {
    content: '';
    position: absolute;
    left: 0px;
    bottom: 0;
    width: 1px;
    height: 5px;
    background: #e5e5e5;
}

.section-title:after {
    content: '';
    position: absolute;
    left: -10px;
    bottom: 4px;
    width: 10px;
    height: 1px;
    background: #e5e5e5;
}

.section-title--wh {
    border-color: #fff;
}

.section-title--wh:after,
.section-title--wh:before {
    background: #fff;
}

.section-title a{
    /* border-bottom: 1px solid #312783; */
    font-size: 70%;
    float: right;
    position: relative;
    top: 5px;
}

.section-title a:hover {
    border-bottom: 1px solid #0095c9;
    color: #312783;
}

@media only screen and (min-width:992px) and (max-width:1300px) {
    .hp-calendar .loop-event--mini:nth-child(4) {
        display: none;
    }
}

.loop-event a {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-transition: color .3s ease-in-out;
    -o-transition: color .3s ease-in-out;
    -moz-transition: color .3s ease-in-out;
    transition: color .3s ease-in-out;
    width: 100%;
    text-decoration: none;
}

.logo-event a:hover {
        text-decoration: none;
}

@media only screen and (min-width:650px) {
    .event-btn-past {
        float: right;
        margin-top: 0.5em;
    }
}

.loop-event.event-highlight {
    background: #ecf2f5;
    -webkit-box-shadow: 0 0 0 8px #ecf2f5;
       -moz-box-shadow: 0 0 0 8px #ecf2f5;
            box-shadow: 0 0 0 8px #ecf2f5;
}

.loop-event:not(.loop-event--mini) a {
    min-height: 70px;
    border-left: 3px solid #f7f7f7;
    padding-left: 1em;
}

.loop-event:not(.loop-event--mini) a:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0px;
    width: 200px;
    height: 1px;
    background: #ebebeb;
}

.loop-event a:hover {
    color: inherit;
}

.loop-event a:hover .loop-event-title {
    -webkit-box-shadow: inset 0 -0.05em #312783;
       -moz-box-shadow: inset 0 -0.05em #312783;
            box-shadow: inset 0 -0.05em #312783;
}

.loop-event-title {
    display: inline-block;
    margin: 0;
    border-bottom: thin solid rgba(0,0,0,0);
    font-weight: 400;
    font-size: 1em;
    -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;
    color: #312783;
    line-height: 1.4;
    text-decoration: none;
}

.event-metadata > * {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    margin-bottom: 1.2em;
    line-height: 1.2;
}

.event-metadata-block {
    width: 100%;
    margin-bottom: 5px;
}

.event-metadata svg {
    height: 1em;
    width: 1em;
    fill: #949494;
    margin-right: 0.5em;
}

.event-metadata-inline {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-align-items: center;
    align-items: center;
    margin-top: 8px;
    font-size: 10px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -moz-box-orient: horizontal;
    -moz-box-direction: normal;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    color: #474747;
}

.event-metadata-inline > * {
    margin-right: 12px;
    white-space: nowrap;
}

.event-metadata-inline svg {
    position: relative;
    top: 1px;
    margin-right: 6px;
    width: 1.2em;
    height: 1.2em;
    fill: gray;
}

.event-metadata-category--navigation  {
    margin: 1em 0;
}

.event-metadata-category--navigation a {
    opacity: 0.8;
    margin-bottom: 0.5em;
    display: inline-block;
}

.event-metadata-category--navigation a:hover,
.event-metadata-category--navigation a.current {
    opacity: 1;
}

.event-metadata-category--navigation a.current .badge{
    color: #fff !important;
}
.event-metadata-category--navigation a.current.event-metadata-category--all .badge {
    background: #ffbf35;
}

.logos {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    text-align: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
}

.logos > * {
    margin: 14px 4px;
    /* display: block; */
    /* max-height: 65px; */
    /* max-width: 100px; */
    /* display: flex; */
    /* height: 41px; */
    /* width: 108px; */
    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;
}

.logos a:hover {
    opacity: 0.6;
}

.hp-logos img {
    max-height: 66px;
    max-width: 85px;
    min-width: 64px;
    width: inherit;
    height: inherit;
}

img[src$='.svg?v24'] {
    width: auto;
}

.hp-logos-general img {
    max-width: 200px;
    height: auto;
}

.hp-logos .section-title:not(:first-child) {
    margin-top: 48px;
}

.hp-f-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-align-items: center;
            align-items: center;
    -webkit-justify-content: center;
            justify-content: center;
    overflow: hidden;
    padding: 24px;
    height: 150px;
    background: url('../img/f.jpg') center top / cover no-repeat;
    color: #076080;
    text-align: center;
    -webkit-box-align: center;
       -moz-box-align: center;
        -ms-flex-align: center;
    -webkit-box-pack: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
}

.hp-f-text {
    display: block;
    padding: 12px 24px;
    background: #fff;
    font-size: 15px;
}

.hp-f-img:hover {
    text-decoration: underline;
}

.map {
    height: 350px;
    min-height: 350px;
    overflow: hidden;
}

.map--fullheight {
    height: 100%;
}

.header {
    background: url('../img/trianglify.svg') top center no-repeat;
    background-size: cover;
    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;
    overflow: hidden;
    position: relative;
}

.header img {
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    -webkit-filter: blur(5px);
            filter: blur(5px);
    height: 110%;
    width: 103%;
    max-width: none;
}

.header-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 1;
    background: #f7f7f7;
    opacity: 1;
    -webkit-transition: opacity 0.6s ease .5s, background 0.3s ease 0.2s;
    -o-transition: opacity 0.6s ease .5s, background 0.3s ease 0.2s;
    -moz-transition: opacity 0.6s ease .5s, background 0.3s ease 0.2s;
    transition: opacity 0.6s ease .5s, background 0.3s ease 0.2s;
}

.header-has-thumbnail :where(.loading-placeholder) {
    opacity: 0.5;
    z-index: 2;
}

.header-has-thumbnail :where(.loading-placeholder,img) {
    width: 100%;
    object-fit: cover;
    position: absolute !important;
    inset: 0;
    max-width: none !important;
    object-position: center center;
    height: 100%;
}

.lazyloaded + .header-placeholder {
    opacity: 0.8;
    background: #fff;
}

.header-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.header-holder {
    min-height: 100px;
    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;
    width: 100%;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.header h1 {
    text-align: center;
    font-size: 2em;
    color: #312783;
    font-weight: 300;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    letter-spacing: -1px;
    line-height: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 18px 0;
}

.header time {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
       -moz-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 12px;
    opacity: 0.5;
}

.header time svg{
    width: 1.2em;
    height: 1.2em;
    fill: #777777;
    margin-right: 0.5em;
}

.breadcrumbs ul {
    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;
    font-size: 14px;
    color: #a2a2a2;
    /* padding-bottom: 24px; */
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    line-height: 2;
    gap: 0 2rem;
}

.breadcrumbs a:not(:hover) {
    color: #a2a2a2;
}

.breadcrumbs li:before {
    border-color: transparent #a2a2a2 !important;
    top: .75em !important;
}

.middle-menu {
    text-align: center;
    overflow: hidden;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    background-color: #ffffff;
    -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06);
    -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06);
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.06);
}

.middle-menu ul {
    margin: 0px auto;
    padding: 0;
    font-size: 0;
}

.middle-menu-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

.middle-menu a {
    font-size: 13px;
    color: #312783;
    padding: 5px 0 3px 0;
    border-bottom: 1px solid transparent;
    position: relative;
    font-weight: 600;
    line-height: 1.3;
    max-width: 230px;
    min-width: 120px;
    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;
    min-height: 64px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.middle-menu a > span {
    max-height: 38px;
    position: relative;
    padding: 0 24px;
    overflow: hidden;
    display: block;
    display: -webkit-box;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}

.menu-item-counter {
    position: absolute;
    top: 50%;
    right: 5px;
    font-size: 10px;
    font-weight: 300;
    -webkit-border-radius: 50%;
       -moz-border-radius: 50%;
            border-radius: 50%;
    width: 1.6em;
    height: 1.6em;
    line-height: 1.6em;
    -webkit-box-shadow: 0 0 0 1px rgba(0,0,0,.2);
       -moz-box-shadow: 0 0 0 1px rgba(0,0,0,.2);
            box-shadow: 0 0 0 1px rgba(0,0,0,.2);
    color: rgba(0,0,0,.8);
    -webkit-transform: translateY(-50%) scale(0.8);
       -moz-transform: translateY(-50%) scale(0.8);
        -ms-transform: translateY(-50%) scale(0.8);
         -o-transform: translateY(-50%) scale(0.8);
            transform: translateY(-50%) scale(0.8);
}

.middle-menu a:hover,
.middle-menu a:active,
.middle-menu a:focus {
    color: #312783;
}

.middle-menu li:not(:last-child) a:before {
    content: '';
    background-color: #e4e4e4;
    position: absolute;
    top: 20px;
    bottom: 20px;
    right: -1px;
    width: 1px;
}

.middle-menu a:after {
    content: '';
    background-color: #f5b700;
    position: absolute;
    left: 8px;
    right: 8px;
    height: 2px;
    bottom: 0;
    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;
}

.middle-menu .current a:after,
.middle-menu a:hover:after,
.middle-menu a:active:after,
.middle-menu a:focus:after {
    opacity: 1;
}

@media only screen and (min-width:768px) {
    .white-page-content {
        padding: 0 1.5em 0 1.5em;
        margin: 2em 0 4em 0;
    }
}

.link-icon[rel="next"] {
    font-size: 0.9em;
    margin: 24px 0;
    text-align: right;
}

.link-icon[rel="next"] > .whn {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
}

@media only screen and (max-width:899px) {
    body:not(.is-mobile-app) .header h1 {
        margin-top: 50px;
    }
    .middle-menu {
        padding: 8px 0;
    }
    .middle-menu a {
        min-height: auto;
        padding: 8px 24px;
    }
    .white-page-content {
        margin: 0 0 4em 0;
        padding: 24px 0;
    }
}


.block-gallery.is-cropped .blocks-gallery-grid .blocks-gallery-item img {
    width: -webkit-calc(100% + 50px);
    width: -moz-calc(100% + 50px);
    width: calc(100% + 50px);
    max-width: -webkit-calc(100% + 50px);
    max-width: -moz-calc(100% + 50px);
    max-width: calc(100% + 50px);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, -o-transform 0.35s;
    -moz-transition: opacity 0.35s, transform 0.35s, -moz-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s;
    -webkit-transform: translate3d(-40px, 0, 0);
       -moz-transform: translate3d(-40px, 0, 0);
            transform: translate3d(-40px, 0, 0);
}

.blocks-gallery-item a {
    display: block;
    width: 100%;
    height: auto;
    position: relative;
    overflow: hidden;
}

.block-gallery.is-cropped .blocks-gallery-grid .blocks-gallery-item a:hover img {
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
    -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, -webkit-transform 0.35s;
    -o-transition: opacity 0.35s, -o-transform 0.35s;
    -moz-transition: opacity 0.35s, transform 0.35s, -moz-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s;
    transition: opacity 0.35s, transform 0.35s, -webkit-transform 0.35s, -moz-transform 0.35s, -o-transform 0.35s;
    opacity: 0.7;
}

.c-accordion__item {
    margin-top: 1em;
}

.format .c-accordion__title  {
    font-size: 1.2rem;
    padding: 1em 1em;
    background: #f7f7f7;
    border: 1px solid #e2e2e2;
    color: #929292;
}

.c-accordion__title:after {
    margin-right: 1em;
}

.format .c-accordion__content {
    padding: 1em;
}

.format .c-accordion__content > *:first-child {
    padding-top: 0;
}

.pagination {
    display: inline-block;
    list-style: none;
    padding: 0;
    font-size: 0.8em;
}

.pagination-wrapper {
    text-align: center;
}

.pagination li {
    display: inline-block;
    margin-bottom: 0.6em;
}

.pagination a,
.pagination span {
    padding: 5px 10px;
    margin: 2px 6px;
    display: block;
    min-width: 34px;
    -webkit-border-radius: 8px;
    -moz-border-radius: 8px;
    border-radius: 8px;
    -webkit-box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.11);
    -moz-box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.11);
    box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.11);
}

.pagination a:hover,.pagination span.current {
    background-color: #312783;
    color: #fff;
}

@media (max-width: 480px) {
    .pagination span.pages {
        display: block;
        float: none;
    }
}

.event-separator {
    font-weight: 600;
    font-size: 1.5em;
    margin: 1em 0;
    max-width: 50%;
}

.event-separator hr {
    margin-top: 0;
}


.footer {
    border-top: 1px solid #e6e6e6;
    color: #777777;
    font-weight: 400;
    background: #f7f7f7;
    padding: 24px 0;
    margin-top: auto;
    text-align: center;
}

.footer .format * {
    font-size: 12px;
    max-width: 26rem;
}

.footer a {
    color: #777777;
    display: inline-block;
}

.footer a:hover {
    color: #312783;
}

.footer img {
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
}

.footer a:hover img {
    opacity: 0.8;
}

.section-footer {
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 3em;
}

@media only screen and (min-width:768px) {
    .footer {
        text-align: left;
    }
    .border-left-blue {
        border-left: 3px solid #312783;
        padding-left: 2em;
    }

    .border-left {
        border-left: 3px solid #e0e0e0;
        padding-left: 2em;
    }
    .footer strong br {
        display: none;
    }
}

.footer li {
    display: inline-block;
    margin-right: 1em;
}

.footer svg {
    width: 2em;
    height: 2em;
    fill: #adadad;
}

.footer strong {
    display: inline-block;
}

svg.icon-blue {
    fill: #312783;
}

a:hover svg.icon-blue {
    fill: #ffae00;
}

.footer ul {
    margin-bottom: 1em;
}

@media only screen and (min-width:1250px) {
    .hp-posts > a {
        margin-top: -4em;
    }
}

.page404 {
    min-height: 50vh;
    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;
}

.page404 > div {
    -webkit-box-shadow: 0 0 100px #e4e4e4;
       -moz-box-shadow: 0 0 100px #e4e4e4;
            box-shadow: 0 0 100px #e4e4e4;
    padding: 2em;
    max-width: 350px;
    width: 100%;
}

.page404 h1 {
    font-size: 3em;
    margin-bottom: 0.4em;
    color: #312783;
}

.page404 svg {
    width: 2em;
    height: 2em;
    fill: #312783;
}

.hp-partners {
    text-align: center;
    text-transform: uppercase;
    margin: 4em 0;
}

.hp-partners-wrapper {
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -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;
}

.hp-partners-wrapper a {
    display: block;
    max-width: 191px;
    width: 100%;
    padding: 2em 1em;
    -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;
}

.hp-partners-wrapper img {
    width: auto;
    max-height: 82px;
    margin: 0px auto;
}

.hp-partners-wrapper a:hover {
    opacity: 0.5;
}
.form-search {
    background: #312783;
    padding: 1em;
}

.form-search-wrapper {
    text-align: center;
    max-width: 400px;
    margin: 0px auto;
    padding-right: 4.5em;
    position: relative;
}

.form-search-wrapper .form-group {
    margin: 0;
}

.form-search-wrapper .validate-error {
    position: absolute;
    font-size: 80%;
    bottom: 1px;
    left: 0;
    right: 0;
    -webkit-transform: translateY(100%);
       -moz-transform: translateY(100%);
        -ms-transform: translateY(100%);
         -o-transform: translateY(100%);
            transform: translateY(100%);
    padding: 0.2em 0.6em;
    background-image: -moz-linear-gradient( 90deg, rgb(255,174,0) 0%, rgb(235,194,0) 100%);
    background-image: -webkit-linear-gradient( 90deg, rgb(255,174,0) 0%, rgb(235,194,0) 100%);
    background-image: -ms-linear-gradient( 90deg, rgb(255,174,0) 0%, rgb(235,194,0) 100%);
    color: #817300;
    -webkit-border-radius: 3px;
       -moz-border-radius: 3px;
            border-radius: 3px;
}

.form-search-wrapper input[type="text"] {
    text-align: center;
    background: #fff;
    padding: 1.5em;
}

.form-search-wrapper input[type="text"]:focus {
    -webkit-box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.11);
        -moz-box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.11);
        box-shadow: 0px 0px 0px 3px rgba(0, 0, 0, 0.11);
}

.form-search-wrapper .btn {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    min-width: auto;
    padding: 0px 20px 0px 20px;
}

.search-ancestor {
    display: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
       -moz-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    font-size: 80%;
}

.search-ancestor svg {
    width: 1em;
    height: 1em;
    margin: 0 1em;
    fill: #777777;
}

.listing-article-metadata .badge {
    margin-right: 2em;
}

.search-ancestor svg:last-child {
    display: none;
}

@media only screen and (min-width:768px) {
    .search-ancestor {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }
}
.listing-article {
    border-bottom: 1px solid #e5e5e5;
    margin-bottom: 2em;
}

.listing-article-text {
    padding-bottom: 0.5em;
}

.listing-article h2 {
    margin: 0;
}

.listing-article-metadata {
    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;
}

.listing-article .format {
    font-size: 80%;
}

.listing-noarticle {
    text-align: center;
    margin: 20vh 0;
}

.hp-tube {
    background: #312783;
    padding: 2em 0 1em 0em;
    width: 100vw;
    position: relative;
    margin-left: -32px;
}

.hp-tube-logo {
    position: absolute;
    top: 2em;
    left: 6vw;
    z-index: 1;
    padding-bottom: 1.5em;
}

.hp-tube-logo:hover {
    opacity: 0.8;
}

@media only screen and (min-width:768px) {
    .hp-tube {
        background: #312783;
        padding: 2em 0 0 0em;
        width: auto;
        margin-left: 0;
        /* height: 100%; */
    }
    .hp-tube-logo {
        left: 2em;
    }
}

@media only screen and (min-width:1500px) {
    .hp-tube {
        height: 311px;
        overflow: hidden;
    }
}

.hp-tube-link {
    float: right;
    margin: 0.5em 2em;
    display: none;
}

@media only screen and (min-width:400px) and (max-width:899px) {
    .hp-tube-link {
        display: block;
    }
}
@media only screen and (min-width:1050px) {
    .hp-tube-link {
        display: -webkit-box;
        display: -webkit-flex;
        display: -moz-box;
        display: -ms-flexbox;
        display: flex;
    }
}

.hp-tube > a:not(:hover) {
    color: #fff;
}

.hp-tube > a svg {
    fill: #fff;
}

.hp-tube .slider {
    margin-top: 2em;
    cursor: -webkit-grab;
    cursor: -moz-grab;
    cursor: grab;
}

.hp-tube-slide {
    display: block;
}

.hp-tube-slide {
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.18);
       -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.18);
            box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.18);
    height: 100%;
    -webkit-filter: blur(0);
            filter: blur(0);
    will-change: filter;
    -webkit-transition: -webkit-box-shadow .3s ease-in-out, -webkit-filter .1s linear !important;
    transition: -webkit-box-shadow .3s ease-in-out, -webkit-filter .1s linear !important;
    -o-transition: box-shadow .3s ease-in-out, filter .1s linear !important;
    -moz-transition: box-shadow .3s ease-in-out, filter .1s linear, -moz-box-shadow .3s ease-in-out !important;
    transition: box-shadow .3s ease-in-out, -webkit-filter .1s linear !important;
    transition: box-shadow .3s ease-in-out, filter .1s linear !important;
    transition: box-shadow .3s ease-in-out, filter .1s linear, -webkit-filter .1s linear !important;
    transition: box-shadow .3s ease-in-out, filter .1s linear, -webkit-box-shadow .3s ease-in-out, -moz-box-shadow .3s ease-in-out, -webkit-filter .1s linear !important;
}

.hp-tube-slide:hover {
    -webkit-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.28);
       -moz-box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.28);
            box-shadow: 0px 0px 24px 0px rgba(0, 0, 0, 0.28);
}

.hp-tube-slide-text {
    background: #312783;
    padding: 1em 2em;
    color: #fff;
    font-size: 9px;
}

.hp-tube-slide-text-overflow {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
}

.hp-tube-slide-text strong {
    color: #fff;
    font-size: 11px;
}

.hp-tube .slider__slide {
    padding: 2em 0;
}
/*
.hp-tube .slider__slide:not(.is-visible) .hp-tube-slide {
    -webkit-filter: blur(5px);
            filter: blur(5px);
}
*/
.hp-tube img {
    width: 100%;
}

.hp-tube .slider__track__wrapper {
    width: 100%;
}

.hp-tube .slider__arrow--prev {
    display: none;
}

.hp-tube .slider__arrow--next {
    right: 0;
}

.hp-register {
    background-image: -moz-linear-gradient( 0deg, rgb(255,174,0) 0%, rgb(208,142,0) 100%);
    background-image: -webkit-linear-gradient( 0deg, rgb(255,174,0) 0%, rgb(208,142,0) 100%);
    background-image: -ms-linear-gradient( 0deg, rgb(255,174,0) 0%, rgb(208,142,0) 100%);
    color: #fff;
    padding: 2em 2em 2em 3em;
    width: 100vw;
    position: relative;
    overflow: hidden;
    margin-left: -32px;
    height: 100%;
}

.hp-register:after {
    content: '';
    position: absolute;
    top: 50%;
    right: -205%;
    width: 200%;
    padding-bottom: 1000%;
    background-image: -webkit-linear-gradient( 45deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 23%) 100%);
    -webkit-transform: translate(0, -50%) rotate(45deg);
       -moz-transform: translate(0, -50%) rotate(45deg);
        -ms-transform: translate(0, -50%) rotate(45deg);
         -o-transform: translate(0, -50%) rotate(45deg);
            transform: translate(0, -50%) rotate(45deg);
 }
.hp-register p {
    font-size: 12px;
    margin-bottom: 2em;
}

.hp-register a {
    color: #fff;
    border-bottom: 1px solid #fff;
}

.hp-magazine,
.hp-journal {
    background-image: -moz-linear-gradient( -90deg, rgb(242,242,242) 0%, rgba(255,255,255,0) 100%);
    background-image: -webkit-linear-gradient( -90deg, rgb(242,242,242) 0%, rgba(255,255,255,0) 100%);
    background-image: -ms-linear-gradient( -90deg, rgb(242,242,242) 0%, rgba(255,255,255,0) 100%);
    padding: 2em 2em 2em 3em;
    width: 100vw;
    border: 1px solid rgb(230, 230, 230);
    overflow: hidden;
    margin-left: -32px;
}

@media only screen and (min-width:768px) {
    .hp-magazine,
    .hp-journal,
    .hp-register {
        width: auto;
        margin-left: 0;
    }
    .hp-magazine {
        flex-grow: 1;
        height: 100%;
    }

    .hp-journal{
        flex-grow: 1;
    }
}

.hp-journal-wrapper,
.hp-magazine-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    font-size: 12px;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
       -moz-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.hp-journal .format,
.hp-magazine .format {
    font-size: 12px;
    overflow: hidden;
}
/*
.hp-magazine .format a {
    white-space: nowrap;
    display: block;
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
}
*/
.hp-magazine .format ul {
    margin-bottom: 0;
    font-size: 12px;
    max-width: 100%;
    overflow: hidden;
}

.hp-journal-wrapper img,
.hp-magazine-wrapper img {
    max-width: 75px;
}

.hp-journal-wrapper > a,
.hp-magazine-wrapper > a {
    margin-right: 2.5em;
    height: auto;
}

.link-icon-image {
    position: relative;
    display: block;
    border: 1px solid #7cd3ff;
}

.link-icon-image svg {
    position: absolute;
    font-size: 20px;
    bottom: 0;
    right: 0;
    width: 0.75em;
    height: 0.75em;
    fill: #fff;
    background: #312783;
    padding: 0.1em;
    -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;
}

.link-icon-image:hover {
    border-color: #ffae00;
}

.link-icon-image:hover svg {
    background: #ffae00;
    fill: #fff;
}

.post-thumbnail {
    margin-bottom: 1em;
    width: 100%;
}

@media only screen and (min-width: 768px){
    .post-thumbnail {
        max-width: 30%;
        float: right;
        margin-left: 1em;
    }
}

.form-info:not(:empty) {
    -webkit-box-shadow: 0 0 100px #e4e4e4;
    -moz-box-shadow: 0 0 100px #e4e4e4;
    box-shadow: 0 0 100px #e4e4e4;
    padding: 1em 2em;
    text-align: center;
    margin: 4em 0;
}

.form-info:not(:empty).form-error {
    margin-bottom: 0;
    background: #f5b700;
    color: #fff;
}

.box-highlight {
    -webkit-box-shadow: 0 0 100px #e4e4e4;
       -moz-box-shadow: 0 0 100px #e4e4e4;
            box-shadow: 0 0 100px #e4e4e4;
    padding: 2em;
    margin-bottom: 2em;
}

.box-highlight .loop-event-title {
    color: #eaa91b;
}

.loop-event a:hover .loop-event-title {
    color: #f5ac0c;
    -webkit-box-shadow: inset 0 -0.05em #f5ac0c;
    -moz-box-shadow: inset 0 -0.05em #f5ac0c;
    box-shadow: inset 0 -0.05em #f5ac0c;
    text-decoration: none;
}

.box-highlight article:last-child {
    margin: 0;
}

.box-highlight .loop-event a {
    border: 0;
}

.box-highlight .loop-event:not(:last-child) .loop-event-inner:after {
    content: '';
    position: absolute;
    bottom: -6px;
    left: 0px;
    width: 200px;
    height: 1px;
    background: #ebebeb;
}

.loop-event-thumb {
    width: 4em;
    min-width: 4em;
    height: 4em;
    margin-right: 1em;
    position: relative;
}

.loop-event-thumb img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
}

.loop-event-content {
    font-size: 0.8em;
    color: #777777;
    margin: 0;
}

.box-highlight .loop-event-inner {
    display: -webkit-box;
    display: -webkit-flex;
    display: -moz-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -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;
    position: relative;
    width: 100%;
}

.file-dragdrop {
    min-height: 300px;
}

.uppy-size--md .uppy-Dashboard-inner {
    height: 300px !important;
}

ul.pdf {
    display: flex;
    flex-wrap: wrap;
    padding: 0;
    justify-content: flex-start;
}

ul.pdf li {
    display: flex;
    margin-bottom: 1em;
    min-width: 20%;
    text-align: left;
    padding-right: 1em;
}
ul.pdf li a {
    display: inline-block;
    text-align: center;
}
ul.pdf li:before {
    display: none;
}

ul.pdf a:hover {
    opacity: 0.8;
}

.event-small-link-note {
    color: #000;
    font-size: 74%;
    border-bottom: 1px solid #c3c3c3;
}

.hp-project {
    height: 100%;
    position: relative;
    display: block;
    border: 1px solid #7cd3ff;
}

.hp-projects-wrap {
    gap: 2rem;
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(15rem, 1fr));
}

.hp-project img {
    width: 100%;
}

.hp-project-w {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgb(255,255,255,.6);
    flex-direction: column;
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.2;
    padding: 1rem;
    color: #312783;
    text-shadow: 0 0 10px white;
    transition: .3s all ease-in-out;
}

.hp-project-title {
    text-transform: uppercase;
}

.hp-project-date-m {
    font-size: 1.2rem;
    font-weight: bold;
    margin-top: 1rem;
}

.hp-project:hover {
    border-color: #ffae00;
}

.hp-project:hover .hp-project-w {
    background: rgb(255,255,255,.8);
}

.pswp[aria-hidden="true"] {
    display: none;
}

.is-cropped .loading-placeholder {
    height: 100%;
}

.loading-placeholder {
    position: relative;
    max-width: fit-content;
    /* min-width: -webkit-fill-available; */
}

.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;
}

.slider-banner {
    background: rgb(241 241 241);
}

.hp-banner {
    margin: 0 auto;
    display: grid;
    /* justify-items: anchor-center; */
    /* padding: 1% 0; */
}