@charset "UTF-8";
.iframe-cover {
    position: relative;
    width: 100%;
    padding-bottom: var(--aspect-ratio);
    height: 0
}

.iframe-cover iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

:root {
    --font: 'proxima-nova', sans-serif;
    --font-secondary: var(--font);
    --font-size: 18px;
    --font-size-sm-device: 16px;
    --line-height: 1.375;
    --paragraph-spacing: 1.5rem;
    --font-size-sm: 16px;
    --font-size-lg: 20px;
    --h0: 100px;
    --h1: 60px;
    --h2: 40px;
    --h3: 32px;
    --h4: 24px;
    --h5: 16px;
    --h6: 14px;
    --color: #444;
    --bg-color: #fff;
    --primary: #d4072a;
    --primary-dark: #aa0019;
    --secondary-light: #d8d0e6;
    --secondary: #800080;
    --secondary-dark: #23085c;
    --tertiary-light: rgba(238, 234, 245, .3);
    --tertiary: #eeeaf5;
    --tertiary-dark: #d9d2e7;
    --quaternary: #3ca2c7;
    --light: #f5f5f5;
    --dark: #212529;
    --gray-light: #f2f2f2;
    --gray: #999;
    --gray-dark: #666;
    --border-color: #d8d0e6;
    --img-bg: var(--gray-light);
    --green: #7ab573;
    --orange: #f6b036;
    --red: #de594a;
    --info: var(--light);
    --success: var(--green);
    --warning: var(--orange);
    --error: var(--red);
    --gutter-x: 40px;
    --gutter-y: 40px;
    --container-width: 1400px;
    --container-padding: 30px;
    --container-padding-sm-device: 10px;
    --section-padding: 65px;
    --border-radius: 3px;
    --mb: 60px
}

:root {
    --breakpoint: xxl
}

html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
    margin: 0;
    padding: 0;
    border: 0;
    font: inherit;
    font-size: 100%;
    vertical-align: baseline
}

article, aside, figcaption, figure, footer, header, hgroup, main, nav, section {
    display: block
}

ol, ul {
    list-style: none
}

q, blockquote {
    quotes: none
}

q:before, q:after, blockquote:before, blockquote:after {
    content: '';
    content: none
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

th {
    text-align: inherit;
    text-align: -webkit-match-parent
}

[tabindex='-1']:focus:not(:focus-visible) {
    outline: 0 !important
}

input, button, textarea, select {
    font: inherit
}

button {
    cursor: pointer
}

img {
    display: block;
    max-width: 100%;
    height: auto
}

svg {
    display: block;
    fill: currentColor
}

*, *:before, *:after {
    box-sizing: border-box
}

::selection {
    background: var(--primary);
    color: #fff
}

html {
    height: 100%;
    font-size: var(--font-size);
    overflow-x: hidden
}

body {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 100vh;
    width: 100%;
    font-family: var(--font);
    line-height: var(--line-height);
    color: var(--color);
    background-color: var(--bg-color);
    overflow: hidden
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-secondary);
    line-height: 1.1;
    font-weight: 700;
    margin: 0 0 1.5rem
}

h1 {
    font-size: var(--h1);
    font-weight: 900
}

h2 {
    font-size: var(--h2);
    font-weight: 900
}

h3 {
    font-size: var(--h3)
}

h4 {
    font-size: var(--h4)
}

h5 {
    font-size: var(--h5)
}

h6 {
    font-size: var(--h6)
}

p, address {
    margin-bottom: var(--paragraph-spacing)
}

a {
    color: currentColor;
    text-decoration: none
}

b, strong {
    font-weight: 700
}

i, em {
    font-style: italic
}

sub {
    font-size: 60%;
    vertical-align: sub
}

sup {
    font-size: 60%;
    vertical-align: super
}

.apply-formatting > *:first-child {
    margin-top: 0
}

.apply-formatting > *:last-child {
    margin-bottom: 0
}

.apply-formatting h2, .apply-formatting h3, .apply-formatting h4, .apply-formatting h5, .apply-formatting h6 {
    margin-top: calc(var(--paragraph-spacing) * 1.5)
}

.apply-formatting p {
    margin-bottom: var(--paragraph-spacing)
}

.apply-formatting a:not(.button) {
    color: var(--color);
    text-decoration: underline
}

.apply-formatting a:not(.button):hover {
    text-decoration: none
}

.apply-formatting ul {
    margin-bottom: var(--paragraph-spacing)
}

.apply-formatting ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px
}

.apply-formatting ul li:last-child {
    margin-bottom: 0
}

.apply-formatting ul li:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    left: 0;
    top: .6em;
    background-color: var(--primary);
    border-radius: 50%
}

.apply-formatting ol {
    counter-reset: ol-counter;
    margin-bottom: var(--paragraph-spacing)
}

.apply-formatting ol li {
    position: relative;
    counter-increment: ol-counter;
    padding-left: 20px;
    margin-bottom: 5px
}

.apply-formatting ol li:last-child {
    margin-bottom: 0
}

.apply-formatting ol li:before {
    content: counter(ol-counter) ") ";
    position: absolute;
    top: 0;
    left: 0
}

.apply-formatting hr {
    display: block;
    width: 100%;
    height: 0;
    border: 1px solid var(--border-color);
    border-width: 1px 0 0;
    margin: var(--paragraph-spacing) 0
}

.apply-formatting img {
    width: 100%;
    margin-bottom: var(--paragraph-spacing)
}

.apply-formatting .video-wrapper {
    margin-bottom: var(--paragraph-spacing)
}

.glightbox-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999 !important;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: none;
    overflow: hidden
}

.glightbox-container.inactive {
    display: none
}

.glightbox-container .gcontainer {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden
}

.glightbox-container .gslider {
    -webkit-transition: -webkit-transform .4s ease;
    transition: -webkit-transform .4s ease;
    transition: transform .4s ease;
    transition: transform .4s ease, -webkit-transform .4s ease;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0)
}

.glightbox-container .gslide {
    width: 100%;
    position: absolute;
    opacity: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0
}

.glightbox-container .gslide.current {
    opacity: 1;
    z-index: 99999;
    position: relative
}

.glightbox-container .gslide.prev {
    opacity: 1;
    z-index: 9999
}

.glightbox-container .gslide-inner-content {
    width: 100%
}

.glightbox-container .ginner-container {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    margin: auto;
    height: 100vh
}

.glightbox-container .ginner-container.gvideo-container {
    width: 100%
}

.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
    max-width: 100% !important
}

.gslide iframe, .gslide video {
    outline: none !important;
    border: none;
    min-height: 165px;
    -webkit-overflow-scrolling: touch;
    -ms-touch-action: auto;
    touch-action: auto
}

.gslide:not(.current) {
    pointer-events: none
}

.gslide-image {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center
}

.gslide-image img {
    max-height: 100vh;
    display: block;
    padding: 0;
    float: none;
    outline: none;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    max-width: 100vw;
    width: auto;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -ms-touch-action: none;
    touch-action: none;
    margin: auto;
    min-width: 200px
}

.desc-top .gslide-image img, .desc-bottom .gslide-image img {
    width: auto
}

.desc-left .gslide-image img, .desc-right .gslide-image img {
    width: auto;
    max-width: 100%
}

.gslide-image img.zoomable {
    position: relative
}

.gslide-image img.dragging {
    cursor: -webkit-grabbing !important;
    cursor: grabbing !important;
    -webkit-transition: none;
    transition: none
}

.gslide-video {
    position: relative;
    max-width: 100vh;
    width: 100% !important
}

.gslide-video .gvideo-wrapper {
    width: 100%;
    margin: auto
}

.gslide-video:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, .34);
    display: none
}

.gslide-video.playing:before {
    display: none
}

.gslide-video.fullscreen {
    max-width: 100% !important;
    min-width: 100%;
    height: 75vh
}

.gslide-video.fullscreen video {
    max-width: 100% !important;
    width: 100% !important
}

.gslide-inline {
    background: #fff;
    text-align: left;
    max-height: calc(100vh - 40px);
    overflow: auto;
    max-width: 100%
}

.gslide-inline .ginlined-content {
    padding: 20px;
    width: 100%
}

.gslide-inline .dragging {
    cursor: -webkit-grabbing !important;
    cursor: grabbing !important;
    -webkit-transition: none;
    transition: none
}

.ginlined-content {
    overflow: auto;
    display: block !important;
    opacity: 1
}

.gslide-external {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-width: 100%;
    background: #fff;
    padding: 0;
    overflow: auto;
    max-height: 75vh;
    height: 100%
}

.gslide-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto
}

.zoomed .gslide-media {
    -webkit-box-shadow: none !important;
    box-shadow: none !important
}

.desc-top .gslide-media, .desc-bottom .gslide-media {
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.gslide-description {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%
}

.gslide-description.description-left, .gslide-description.description-right {
    max-width: 100%
}

.gslide-description.description-bottom, .gslide-description.description-top {
    margin: 0 auto;
    width: 100%
}

.gslide-description p {
    margin-bottom: 12px
}

.gslide-description p:last-child {
    margin-bottom: 0
}

.zoomed .gslide-description, .glightbox-button-hidden {
    display: none
}

.glightbox-mobile .glightbox-container .gslide-description {
    height: auto !important;
    width: 100%;
    background: transparent;
    position: absolute;
    bottom: 0;
    padding: 19px 11px;
    max-width: 100vw !important;
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
    max-height: 78vh;
    overflow: auto !important;
    background: -webkit-gradient(linear, left top, left bottom, from(transparent), to(rgba(0, 0, 0, .75)));
    background: linear-gradient(to bottom, transparent 0, rgba(0, 0, 0, .75) 100%);
    -webkit-transition: opacity .3s linear;
    transition: opacity .3s linear;
    padding-bottom: 50px
}

.glightbox-mobile .glightbox-container .gslide-title {
    color: #fff;
    font-size: 1em
}

.glightbox-mobile .glightbox-container .gslide-desc {
    color: #a1a1a1
}

.glightbox-mobile .glightbox-container .gslide-desc a {
    color: #fff;
    font-weight: 700
}

.glightbox-mobile .glightbox-container .gslide-desc * {
    color: inherit
}

.glightbox-mobile .glightbox-container .gslide-desc string {
    color: #fff
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
    color: #fff;
    opacity: .4
}

.gdesc-open .gslide-media {
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
    opacity: .4
}

.gdesc-open .gdesc-inner {
    padding-bottom: 30px
}

.gdesc-closed .gslide-media {
    -webkit-transition: opacity .5s ease;
    transition: opacity .5s ease;
    opacity: 1
}

.greset {
    -webkit-transition: all .3s ease;
    transition: all .3s ease
}

.gabsolute {
    position: absolute
}

.grelative {
    position: relative
}

.glightbox-desc {
    display: none !important
}

.glightbox-open {
    overflow: hidden
}

.gloader {
    height: 25px;
    width: 25px;
    -webkit-animation: lightboxLoader .8s infinite linear;
    animation: lightboxLoader .8s infinite linear;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    position: absolute;
    display: block;
    z-index: 9999;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 47%
}

.goverlay {
    width: 100%;
    height: calc(100vh + 1px);
    position: fixed;
    top: -1px;
    left: 0;
    background: #000;
    will-change: opacity
}

.glightbox-mobile .goverlay {
    background: #000
}

.gprev, .gnext, .gclose {
    z-index: 99999;
    cursor: pointer;
    width: 26px;
    height: 44px;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column
}

.gprev svg, .gnext svg, .gclose svg {
    display: block;
    width: 25px;
    height: auto;
    margin: 0;
    padding: 0
}

.gprev.disabled, .gnext.disabled, .gclose.disabled {
    opacity: .1
}

.gprev .garrow, .gnext .garrow, .gclose .garrow {
    stroke: #fff
}

.gbtn.focused {
    outline: 2px solid #0f3d81
}

iframe.wait-autoplay {
    opacity: 0
}

.glightbox-closing .gnext, .glightbox-closing .gprev, .glightbox-closing .gclose {
    opacity: 0 !important
}

.glightbox-clean .gslide-description {
    background: #fff
}

.glightbox-clean .gdesc-inner {
    padding: 22px 20px
}

.glightbox-clean .gslide-title {
    font-size: 1em;
    font-weight: 400;
    font-family: arial;
    color: #000;
    margin-bottom: 19px;
    line-height: 1.4em
}

.glightbox-clean .gslide-desc {
    font-size: .86em;
    margin-bottom: 0;
    font-family: arial;
    line-height: 1.4em
}

.glightbox-clean .gslide-video {
    background: #000
}

.glightbox-clean .gprev, .glightbox-clean .gnext, .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, .75);
    border-radius: 4px
}

.glightbox-clean .gprev path, .glightbox-clean .gnext path, .glightbox-clean .gclose path {
    fill: #fff
}

.glightbox-clean .gprev {
    position: absolute;
    top: -100%;
    left: 30px;
    width: 40px;
    height: 50px
}

.glightbox-clean .gnext {
    position: absolute;
    top: -100%;
    right: 30px;
    width: 40px;
    height: 50px
}

.glightbox-clean .gclose {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 10px;
    position: absolute
}

.glightbox-clean .gclose svg {
    width: 18px;
    height: auto
}

.glightbox-clean .gclose:hover {
    opacity: 1
}

.gfadeIn {
    -webkit-animation: gfadeIn .5s ease;
    animation: gfadeIn .5s ease
}

.gfadeOut {
    -webkit-animation: gfadeOut .5s ease;
    animation: gfadeOut .5s ease
}

.gslideOutLeft {
    -webkit-animation: gslideOutLeft .3s ease;
    animation: gslideOutLeft .3s ease
}

.gslideInLeft {
    -webkit-animation: gslideInLeft .3s ease;
    animation: gslideInLeft .3s ease
}

.gslideOutRight {
    -webkit-animation: gslideOutRight .3s ease;
    animation: gslideOutRight .3s ease
}

.gslideInRight {
    -webkit-animation: gslideInRight .3s ease;
    animation: gslideInRight .3s ease
}

.gzoomIn {
    -webkit-animation: gzoomIn .5s ease;
    animation: gzoomIn .5s ease
}

.gzoomOut {
    -webkit-animation: gzoomOut .5s ease;
    animation: gzoomOut .5s ease
}

@-webkit-keyframes lightboxLoader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@keyframes lightboxLoader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg)
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg)
    }
}

@-webkit-keyframes gfadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@keyframes gfadeIn {
    from {
        opacity: 0
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes gfadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@keyframes gfadeOut {
    from {
        opacity: 1
    }
    to {
        opacity: 0
    }
}

@-webkit-keyframes gslideInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-60%, 0, 0);
        transform: translate3d(-60%, 0, 0)
    }
    to {
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes gslideInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-60%, 0, 0);
        transform: translate3d(-60%, 0, 0)
    }
    to {
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes gslideOutLeft {
    from {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        -webkit-transform: translate3d(-60%, 0, 0);
        transform: translate3d(-60%, 0, 0);
        opacity: 0;
        visibility: hidden
    }
}

@keyframes gslideOutLeft {
    from {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        -webkit-transform: translate3d(-60%, 0, 0);
        transform: translate3d(-60%, 0, 0);
        opacity: 0;
        visibility: hidden
    }
}

@-webkit-keyframes gslideInRight {
    from {
        opacity: 0;
        visibility: visible;
        -webkit-transform: translate3d(60%, 0, 0);
        transform: translate3d(60%, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@keyframes gslideInRight {
    from {
        opacity: 0;
        visibility: visible;
        -webkit-transform: translate3d(60%, 0, 0);
        transform: translate3d(60%, 0, 0)
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1
    }
}

@-webkit-keyframes gslideOutRight {
    from {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        -webkit-transform: translate3d(60%, 0, 0);
        transform: translate3d(60%, 0, 0);
        opacity: 0
    }
}

@keyframes gslideOutRight {
    from {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0)
    }
    to {
        -webkit-transform: translate3d(60%, 0, 0);
        transform: translate3d(60%, 0, 0);
        opacity: 0
    }
}

@-webkit-keyframes gzoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 1
    }
}

@keyframes gzoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 1
    }
}

@-webkit-keyframes gzoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

@keyframes gzoomOut {
    from {
        opacity: 1
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(.3, .3, .3);
        transform: scale3d(.3, .3, .3)
    }
    to {
        opacity: 0
    }
}

.autoCompleteResults {
    position: absolute;
    display: none;
    border: 1px solid #ccc;
    background: #fff
}

.__autoitem {
    cursor: pointer;
    color: #000;
    padding: 2px
}

.__autoitem.selected, .__autoitem.selected:hover {
    background: #9ac
}

.__autoitem:hover {
    background: #eee
}

.container {
    padding-left: var(--container-padding);
    padding-right: var(--container-padding);
    position: relative;
    width: 100%;
    max-width: calc(var(--container-width) + (2 * var(--container-padding)));
    margin-left: auto;
    margin-right: auto
}

.container--fluid {
    max-width: 100%
}

.container--sm {
    --container-width: 700px
}

.container--md {
    --container-width: 900px
}

.row {
    --gutter-x: 40px;
    --gutter-y: 40px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-left: calc(var(--gutter-x) / -2);
    margin-right: calc(var(--gutter-x) / -2);
    margin-top: calc(var(--gutter-y) * -1)
}

.row > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    padding-left: calc(var(--gutter-x) / 2);
    padding-right: calc(var(--gutter-x) / 2);
    margin-top: var(--gutter-y)
}

.col-1 {
    width: 8.33333%
}

.col-2 {
    width: 16.66667%
}

.col-3 {
    width: 25%
}

.col-4 {
    width: 33.33333%
}

.col-5 {
    width: 41.66667%
}

.col-6 {
    width: 50%
}

.col-7 {
    width: 58.33333%
}

.col-8 {
    width: 66.66667%
}

.col-9 {
    width: 75%
}

.col-10 {
    width: 83.33333%
}

.col-11 {
    width: 91.66667%
}

.col-12 {
    width: 100%
}

.col-1-5 {
    width: 20%
}

.col-2-5 {
    width: 40%
}

.col-3-5 {
    width: 60%
}

.col-4-5 {
    width: 80%
}

.section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    background-color: var(--section-bg)
}

.section.bg-light {
    --section-bg: var(--light)
}

.section.bg-light + .section.bg-light {
    margin-top: calc(var(--section-padding) * -1)
}

.section.bg-secondary {
    --section-bg: var(--secondary);
    --color: #fff
}

.section.bg-secondary .section-header {
    color: #fff
}

.section.bg-secondary + .section.bg-secondary {
    margin-top: calc(var(--section-padding) * -1)
}

.section.bg-tertiary {
    --section-bg: var(--tertiary);
    --color: #fff
}

.section.bg-tertiary + .section.bg-tertiary {
    margin-top: calc(var(--section-padding) * -1)
}

.section.bg-gradient-top {
    background-image: linear-gradient(to bottom, var(--tertiary) 0, rgba(255, 255, 255, 0) 100%)
}

.section.bg-gradient-top + .section.bg-gradient-top {
    margin-top: calc(var(--section-padding) * -1)
}

.section.bg-gradient-bottom {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0, var(--tertiary) 100%)
}

.section.bg-gradient-bottom + .section.bg-gradient-bottom {
    margin-top: calc(var(--section-padding) * -1)
}

.section.bg-bottom-strip {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 20%, var(--tertiary) 70%)
}

.section.bg-bottom-strip + .section.bg-bottom-strip {
    margin-top: calc(var(--section-padding) * -1)
}

.section.move-down {
    margin-top: 0 !important
}

.section.move-up {
    margin-top: calc(var(--section-padding) * -1)
}

.section:not([class*='bg-']) + .section:not([class*='bg-']), .section.bg-gradient-top + .section:not([class*=bg-]) {
    margin-top: calc(var(--section-padding) * -1)
}

.wrapper.bg-tertiary {
    background-color: var(--tertiary)
}

.content-wrapper {
    padding-top: var(--content-wrapper-pt);
    transition: margin .25s
}

:root {
    --header-height: 90px;
    --header-logo-height: 65px;
    --menu-spacing: 40px
}

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--bg-color);
    transform: translate3d(0, 0, 0);
    color: var(--secondary);
    font-weight: 500;
    transition: margin .25s, background-color .1s
}

.header__inner .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: var(--header-height)
}

.header__logo img {
    height: var(--header-logo-height)
}

.header__nav {
    position: absolute;
    left: 50%;
    transform: translate(-50%)
}

.header__nav ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.header__nav li {
    margin-right: var(--menu-spacing)
}

.header__nav li:last-child {
    margin-right: 0
}

.header__nav a:not(.button) {
    display: block;
    line-height: var(--header-height)
}

.header__nav a:not(.button):hover {
    color: var(--primary)
}

.header__nav a:not(.button).is-active {
    position: relative;
    color: var(--primary)
}

.header__nav a:not(.button).is-active:after {
    position: absolute;
    content: '';
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background-color: var(--primary);
    opacity: .7
}

.header__nav--mobile {
    display: none
}

.header__buttons {
    margin-left: auto
}

.header__buttons > .button:not(:first-child) {
    margin-left: 8px
}

.header__buttons > .button {
    display: -ms-inline-flexbox;
    display: inline-flex
}

.header__buttons--mobile {
    display: none
}

.header .button--mobile {
    display: none
}

.header__expander {
    display: none;
    position: relative;
    z-index: 1001;
    margin-left: auto;
    margin-right: calc(var(--container-padding) * -1);
    height: var(--header-height);
    width: calc(35px + (var(--container-padding) * 2));
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-duration: .3s
}

.header__expander .hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 35px;
    height: 21px;
    margin-left: -17.5px;
    margin-top: -10.5px
}

.header__expander .hamburger span, .header__expander .hamburger span:before, .header__expander .hamburger span:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 3px;
    background: var(--secondary);
    top: 9px;
    border-radius: 0
}

.header__expander .hamburger span:before, .header__expander .hamburger span:after {
    transform-origin: 50% 50%;
    transition: top .3s .5s ease, transform .3s ease, width .3s 0s
}

.header__expander .hamburger span:before {
    content: '';
    height: 100%;
    top: -9px
}

.header__expander .hamburger span:after {
    content: '';
    height: 100%;
    top: 9px
}

.header__expander .hamburger.is-active span, .header.is-expanded .header__expander .hamburger span {
    transition: background .3s 0s ease;
    background: transparent !important
}

.header__expander .hamburger.is-active span:before, .header.is-expanded .header__expander .hamburger span:before, .header__expander .hamburger.is-active span:after, .header.is-expanded .header__expander .hamburger span:after {
    transition: top .3s ease, transform .3s .5s ease, width .3s 0s;
    top: 0;
    width: 35px
}

.header__expander .hamburger.is-active span:before, .header.is-expanded .header__expander .hamburger span:before {
    transform: rotate3d(0, 0, 1, 45deg)
}

.header__expander .hamburger.is-active span:after, .header.is-expanded .header__expander .hamburger span:after {
    transform: rotate3d(0, 0, 1, -45deg)
}

.header__expander:hover {
    opacity: .8
}

.header ~ .content-wrapper {
    --content-wrapper-pt: var(--header-height)
}

.header--overlap ~ .content-wrapper {
    --content-wrapper-pt: 0
}

.header--transparent {
    background-color: transparent
}

.header--transparent.is-expanded {
    background-color: var(--secondary)
}

.header--transparent:hover {
    background-color: #fff
}

.footer {
    position: relative;
    margin-top: auto;
    font-size: var(--h5);
    color: var(--secondary);
    background-image: linear-gradient(to bottom left, var(--light) 50%, var(--secondary-light) 80%)
}

.footer__content {
    padding: var(--container-padding) 0 var(--section-padding)
}

.footer__logo {
    margin-bottom: var(--gutter-y)
}

.footer__logo > img {
    height: 70px
}

.footer__icon-wrapper {
    display: -ms-flexbox;
    display: flex
}

.footer__icon {
    display: -ms-flexbox;
    display: flex;
    width: 3.33333em;
    height: 3.33333em;
    border-radius: 100%;
    background-color: #fff;
    margin-right: 8px;
    padding: 12px;
    transition-duration: .25s;
    color: var(--secondary)
}

.footer__icon .icon {
    margin: auto;
    width: 80%;
    height: 80%
}

.footer__title {
    font-size: var(--font-size-md, var(--font-size));
    margin-bottom: 25px
}

.footer__list a {
    line-height: 2
}

.footer__strip {
    display: -ms-flexbox;
    display: flex;
    padding: 30px 0;
    color: var(--color);
    font-size: 12px
}

.footer__copyright:last-child {
    margin-left: auto
}

.footer a {
    transition: color .25s
}

.footer a:hover {
    color: var(--primary)
}

.footer a:hover .footer__icon {
    background-color: var(--secondary);
    color: #fff
}

.ratio {
    position: relative;
    width: 100%
}

.ratio:before {
    content: '';
    display: block;
    pointer-events: none;
    padding-top: var(--aspect-ratio, 56.25%)
}

.ratio > * {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.cover, .contain {
    position: relative;
    width: 100%
}

.cover:before, .contain:before {
    content: '';
    display: block;
    pointer-events: none;
    padding-top: var(--aspect-ratio, 66.66%)
}

.cover > img, .cover > video, .contain > img, .contain > video {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    -o-object-fit: cover;
    object-fit: cover
}

.contain > img, .contain > video {
    -o-object-fit: contain;
    object-fit: contain
}

.video-wrapper {
    position: relative;
    width: 100%;
    background-color: #000
}

.video-wrapper:before {
    content: '';
    display: block;
    pointer-events: none;
    padding-top: var(--aspect-ratio, 56.25%)
}

.video-wrapper > iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%
}

.info-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #cecece;
    z-index: 9000;
    transform: translate3d(0, 0, 0);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, .1);
    padding: 10px 0 0;
    text-align: center;
    color: #333
}

.info-bar p {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 10px
}

.info-bar p + p {
    margin-left: 20px;
    margin-bottom: 0
}

.info-bar a {
    display: inline-block;
    padding: 10px 20px;
    transition-duration: .3s;
    color: #333;
    border: 1px solid #333;
    margin-bottom: 10px;
    text-decoration: none
}

.info-bar a:hover {
    border-color: var(--gray-dark);
    background-color: var(--gray-dark);
    color: #fff;
    text-decoration: none
}

.info-bar a + a {
    margin-left: 5px
}

.info-bar .ok {
    background-color: var(--gray-dark);
    color: #fff;
    font-weight: 700
}

.cookie-bar {
    display: none;
    background-color: var(--gray-light);
    color: var(--color)
}

.cookie-bar a {
    color: var(--color);
    border-color: var(--color)
}

.cookie-bar a:hover {
    border-color: var(--color);
    background-color: var(--color)
}

.cookie-bar .ok:hover {
    border-color: var(--primary);
    background-color: var(--primary)
}

.icon {
    display: block;
    width: 20px;
    height: 20px
}

.icon svg {
    width: 100%;
    height: 100%
}

.alert {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: 15px;
    color: #fff;
    background-color: var(--info);
    border-radius: var(--border-radius);
    margin-bottom: 30px
}

.alert__icon {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: 30px;
    height: 30px;
    margin-right: 15px
}

.alert__inner > *:last-child {
    margin-bottom: 0
}

.alert__inner a {
    color: currentColor;
    text-decoration: underline
}

.alert__inner a:hover {
    text-decoration: none
}

.alert--success {
    background-color: var(--success)
}

.alert--warning {
    background-color: var(--warning)
}

.alert--error {
    background-color: var(--error)
}

.button {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: var(--button-height, 50px);
    width: fit-content;
    border: none;
    border-radius: 3px;
    text-decoration: none;
    font-weight: 700;
    -webkit-appearance: none;
    appearance: none;
    padding: .77778em 1.33333em;
    background-color: var(--button-bg-color, var(--tertiary));
    color: var(--button-color, var(--secondary));
    transition-duration: .3s;
    overflow: hidden;
    cursor: pointer
}

.button:hover {
    --button-bg-color: var(--tertiary-dark);
    text-decoration: none
}

.button:hover > .button__heart {
    transform: translate(4px, -50%)
}

.button:hover > .button__heart svg {
    fill: currentColor
}

.button:hover > .button__play {
    transition-duration: .25s;
    transform: translate(5px, 1px) rotate(120deg)
}

.button:hover > .button__stop {
    transition-duration: .25s;
    transform: rotate(90deg)
}

.button__heart {
    position: absolute;
    left: -4px;
    top: 50%;
    transform: translateY(-50%);
    width: 1.66667em;
    transition-duration: .25s
}

.button__heart svg {
    fill: rgba(255, 255, 255, .4)
}

.button__heart + span {
    padding-left: 1.11111em;
    white-space: nowrap
}

.button__play {
    margin-right: .83333em;
    width: 31.88px;
    height: 28.06px;
    display: inline;
    vertical-align: top;
    transform: translateY(-2px)
}

.button__stop {
    margin-right: .83333em;
    width: 16px;
    height: 16px;
    display: inline;
    vertical-align: top
}

.button--primary {
    --button-color: #fff;
    --button-bg-color: var(--primary);
    --base-color: var(--primary)
}

.button--primary:hover {
    --button-bg-color: var(--primary-dark)
}

.button--secondary {
    --button-color: #fff;
    --button-bg-color: var(--secondary);
    --base-color: var(--secondary)
}

.button--secondary:hover {
    --button-bg-color: var(--secondary-dark)
}

.button--outline {
    --button-color: var(--secondary);
    --button-bg-color: transparent;
    border: 1px solid var(--button-border-color, var(--secondary))
}

.button--outline:hover {
    --button-color: #fff;
    --button-bg-color: var(--secondary)
}

.button--outline-inverse {
    --button-color: currentColor;
    --button-bg-color: transparent;
    border: 1px solid var(--button-border-color, #fff)
}

.button--outline-inverse:hover {
    --button-color: var(--base-color);
    --button-bg-color: #fff;
    --button-border-color: #fff
}

.button--low {
    padding: .66667em 1.22222em
}

:root {
    --input-height: 50px;
    --input-padding: 15px;
    --input-bg-color: var(--bg-color);
    --input-border-color: var(--border-color);
    --input-border-radius: var(--border-radius);
    --input-border-color-focus: var(--secondary)
}

.text-field {
    display: block;
    width: 100%;
    height: var(--input-height);
    border: 1px solid var(--input-border-color);
    border-radius: var(--input-border-radius);
    background-color: var(--input-bg-color);
    appearance: none;
    -webkit-appearance: none;
    color: var(--secondary);
    padding: 0 var(--input-padding)
}

.text-field:focus {
    border-color: var(--input-border-color-focus);
    outline: 0
}

.text-field[disabled] {
    background-color: var(--gray-light);
    color: var(--gray)
}

.text-field[type=number] {
    -webkit-appearance: textfield;
    appearance: textfield
}

.text-field[type=date] {
    position: relative;
    padding: 0 calc((var(--input-padding) * 2) + 20px) 0 var(--input-padding);
    background-image: url('data:image/svg+xml,%3csvg xmlns="http://www.w3.org/2000/svg" fill="%23522583" width="45.414" height="45.063"%3e%3cdefs%3e%3cclipPath id="a"%3e%3cpath d="M0 0h45.414v45.063H0z" data-name="Rectangle 267" transform="translate%280 .001%29"/%3e%3c/clipPath%3e%3c/defs%3e%3cg clip-path="url%28%23a%29" data-name="Group 55" transform="translate%280 -.001%29"%3e%3cpath d="M43.353 4.517H2.06A2.067 2.067 0 0 0 0 6.577V43a2.066 2.066 0 0 0 2.06 2.061h41.293A2.067 2.067 0 0 0 45.413 43V6.577a2.066 2.066 0 0 0-2.06-2.06M42.734 42.1v.284H2.679V17.337h40.056Zm0-27.443H2.679V7.2h40.057Z" data-name="Path 68"/%3e%3cpath d="M22.483 26.529a2.434 2.434 0 1 0-2.434-2.434 2.434 2.434 0 0 0 2.434 2.434" data-name="Path 69"/%3e%3cpath d="M9.819 26.529a2.434 2.434 0 1 0-2.434-2.434 2.434 2.434 0 0 0 2.434 2.434" data-name="Path 70"/%3e%3cpath d="M35.152 26.529a2.434 2.434 0 1 0-2.434-2.434 2.438 2.438 0 0 0 2.434 2.434" data-name="Path 71"/%3e%3cpath d="M35.179 32.409a2.434 2.434 0 1 0 2.434 2.434 2.434 2.434 0 0 0-2.434-2.434" data-name="Path 72"/%3e%3cpath d="M22.509 32.409a2.434 2.434 0 1 0 2.434 2.434 2.438 2.438 0 0 0-2.434-2.434" data-name="Path 73"/%3e%3cpath d="M9.846 32.409a2.434 2.434 0 1 0 2.434 2.434 2.434 2.434 0 0 0-2.434-2.434" data-name="Path 74"/%3e%3cpath d="M9.893 10.928a1.365 1.365 0 0 1-1.365-1.365v-8.2a1.365 1.365 0 0 1 2.73 0v8.2a1.365 1.365 0 0 1-1.365 1.365" data-name="Path 75"/%3e%3cpath d="M35.179 10.928a1.365 1.365 0 0 1-1.365-1.365v-8.2a1.365 1.365 0 0 1 2.73 0v8.2a1.365 1.365 0 0 1-1.365 1.365" data-name="Path 76"/%3e%3c/g%3e%3c/svg%3e');
    background-repeat: no-repeat;
    background-position: right var(--input-padding) center;
    background-size: 20px 20px;
    cursor: pointer
}

.text-field[type=date]:before {
    content: attr(data-placeholder);
    position: absolute;
    top: 50%;
    transform: translateY(-50%)
}

.text-field[type=date]::-webkit-datetime-edit {
    display: none
}

.text-field[type=date]::-webkit-calendar-picker-indicator {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer
}

.text-field[type=date]::-webkit-date-and-time-value {
    display: none
}

.text-field::-webkit-outer-spin-button, .text-field::-webkit-inner-spin-button {
    -webkit-appearance: none;
    appearance: none
}

.text-area {
    display: block;
    width: 100%;
    height: var(--input-height);
    border: 1px solid var(--input-border-color);
    border-radius: var(--input-border-radius);
    background-color: var(--input-bg-color);
    appearance: none;
    -webkit-appearance: none;
    color: var(--secondary);
    height: auto;
    padding: var(--input-padding);
    resize: none
}

.text-area:focus {
    border-color: var(--input-border-color-focus);
    outline: 0
}

.text-area[disabled] {
    background-color: var(--gray-light);
    color: var(--gray)
}

.select {
    display: block;
    width: 100%;
    height: var(--input-height);
    border: 1px solid var(--input-border-color);
    border-radius: var(--input-border-radius);
    background-color: var(--input-bg-color);
    appearance: none;
    -webkit-appearance: none;
    color: var(--secondary);
    padding: 0 calc((var(--input-padding) * 2) + 14px) 0 var(--input-padding);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='10' viewBox='0 0 12 10'%3e%3cpath d='M6,0l6,10H0Z' transform='translate%2812 10%29 rotate%28180%29' fill='%23522583'/%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right var(--input-padding) center;
    background-size: 14px 14px;
    cursor: pointer
}

.select:focus {
    border-color: var(--input-border-color-focus);
    outline: 0
}

.select[disabled] {
    background-color: var(--gray-light);
    color: var(--gray)
}

:root {
    --checkbox-width: 20px;
    --checkbox-border-radius: 3px;
    --checkbox-bg-color: var(--input-bg-color);
    --checkbox-border-color: var(--input-border-color);
    --checkbox-bg-color-hover: var(--input-border-color);
    --checkbox-bg-color-checked: var(--secondary)
}

.checkboxes {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.checkboxes > .checkbox:not(:last-child) {
    margin-bottom: 6px
}

.checkbox {
    position: relative;
    padding-left: calc(var(--checkbox-width) * 1.5);
    min-height: var(--checkbox-width)
}

.checkbox label {
    display: inline-block;
    margin-bottom: 0;
    font-weight: 400;
    cursor: pointer
}

.checkbox label:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: calc(var(--checkbox-width) * -.5);
    width: var(--checkbox-width);
    height: var(--checkbox-width);
    background-color: var(--checkbox-bg-color);
    border: 1px solid var(--checkbox-border-color);
    border-radius: var(--checkbox-border-radius);
    margin-right: 12px
}

.checkbox label:hover:before {
    background-color: var(--checkbox-bg-color-hover);
    border-color: var(--checkbox-bg-color-hover);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")
}

.checkbox label a {
    text-decoration: underline
}

.checkbox label a:hover {
    text-decoration: none
}

.checkbox input {
    display: none
}

.checkbox input:checked + label:before {
    border-color: var(--checkbox-bg-color-checked);
    background-color: var(--checkbox-bg-color-checked);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e")
}

.checkbox--inline {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-right: 20px
}

.checkbox--inline:last-child {
    margin-right: 0
}

.checkbox--light label {
    color: #361b716a
}

:root {
    --radio-button-width: 20px;
    --radio-button-bg-color: var(--input-bg-color);
    --radio-button-border-color: var(--input-border-color);
    --radio-button-bg-color-hover: var(--input-border-color);
    --radio-button-bg-color-checked: var(--secondary)
}

.radio-button {
    position: relative;
    padding-left: calc(var(--radio-button-width) * 1.5);
    min-height: var(--radio-button-width)
}

.radio-button label {
    display: inline-block;
    cursor: pointer
}

.radio-button label:before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 50%;
    margin-top: calc(var(--radio-button-width) * -.5);
    width: var(--radio-button-width);
    height: var(--radio-button-width);
    background-color: var(--radio-button-bg-color);
    border: 1px solid var(--radio-button-border-color);
    border-radius: 50%;
    margin-right: 10px
}

.radio-button label:hover:before {
    background-color: var(--radio-button-bg-color-hover);
    border-color: var(--radio-button-bg-color-hover);
    box-shadow: inset 0 0 0 3px var(--radio-button-bg-color)
}

.radio-button input {
    display: none
}

.radio-button input:checked + label:before {
    background-color: var(--radio-button-bg-color-checked);
    border-color: var(--tertiary);
    box-shadow: inset 0 0 0 3px var(--radio-button-bg-color)
}

.radio-button--inline {
    display: inline-block;
    margin-right: 20px
}

.radio-button--inline:last-child {
    margin-right: 0
}

:root {
    --toggle-width: 60px;
    --toggle-height: 30px;
    --toggle-padding: 2px;
    --toggle-bg-unchecked: var(--red);
    --toggle-bg-checked: var(--green);
    --toggle-slider-bg: #fff
}

.toggle label {
    position: relative;
    display: block;
    width: var(--toggle-width);
    height: var(--toggle-height);
    background-color: var(--toggle-bg-unchecked);
    border-radius: var(--toggle-height);
    font-size: 0;
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition: background-color .3s
}

.toggle label:after {
    content: '';
    position: absolute;
    top: var(--toggle-padding);
    left: var(--toggle-padding);
    width: calc((var(--toggle-width) / 2) - (var(--toggle-padding) * 2));
    height: calc(var(--toggle-height) - (var(--toggle-padding) * 2));
    background-color: var(--toggle-slider-bg);
    border-radius: calc(var(--toggle-height) - (var(--toggle-padding) * 2));
    transition: transform .3s
}

.toggle input {
    display: none
}

.toggle input:checked + label {
    background-color: var(--toggle-bg-checked)
}

.toggle input:checked + label:after {
    transform: translateX(calc(var(--toggle-width) / 2))
}

.label {
    margin-bottom: 7px;
    color: var(--secondary);
    font-weight: 600
}

:root {
    --field-header-width: 160px;
    --field-mb: 20px
}

.fieldset {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: 50px
}

.fieldset > .field:only-child {
    margin-bottom: 0
}

.field {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    width: 100%;
    margin-bottom: var(--field-mb)
}

.field__header {
    -ms-flex-negative: 0;
    flex-shrink: 0;
    width: var(--field-header-width);
    padding-top: 12px;
    padding-right: 20px
}

.field__inner {
    width: calc(100% - var(--field-header-width));
    margin-left: auto
}

.field__inner .checkbox, .field__inner .radio-button {
    margin-bottom: 12px
}

.field__inner .checkbox:last-child, .field__inner .radio-button:last-child {
    margin-bottom: 0
}

.field--split {
    width: calc(50% - 30px / 2)
}

.field--split:nth-child(2n) {
    margin-left: 30px
}

.field--error {
    position: relative
}

.field--error > label {
    color: var(--primary)
}

.field--error > * {
    border-color: var(--primary)
}

.field--required label:after {
    content: "*";
    display: inline-block;
    margin-left: .16667em
}

.page-header > .section-header {
    margin-bottom: 0
}

.page-header > .section-header p {
    max-width: 550px
}

.page-header + .map--line {
    margin-top: calc(var(--section-padding) * -2) !important
}

.section-header {
    --mb: 35px;
    margin-bottom: var(--mb);
    color: var(--secondary)
}

.section-header__title {
    font-size: var(--h1);
    font-weight: 900;
    text-transform: uppercase;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center
}

.section-header__icon {
    display: inline-block;
    background-color: var(--secondary);
    width: 1.88889em;
    height: 1.88889em;
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
    overflow: hidden;
    margin-right: .44444em;
    vertical-align: middle
}

.section-header__icon svg {
    color: #fff;
    width: 52%;
    margin: auto;
    margin-right: 30%
}

.section-header__subtitle {
    font-size: var(--h2);
    font-weight: 900;
    text-transform: uppercase
}

.section-header__subtitle + .section-header__perex {
    margin-top: 30px
}

.section-header__perex {
    max-width: 700px
}

.section-header__description {
    font-size: var(--h4)
}

.section-header__caption {
    font-size: var(--h5);
    color: var(--primary);
    font-weight: 700;
    margin-bottom: 5px
}

.section-header--left {
    text-align: left
}

.section-header--primary {
    color: var(--primary)
}

.section-header--primary .section-header__icon {
    background-color: var(--primary)
}

.nav-tiles .row {
    -ms-flex-pack: center;
    justify-content: center;
    --gutter-x: 30px;
    --gutter-y: 30px
}

.nav-tile {
    display: -ms-flexbox;
    display: flex;
    border-radius: 3px 40px;
    overflow: hidden;
    box-shadow: 10px 10px 20px rgba(0, 0, 0, .05);
    color: var(--secondary);
    transition: box-shadow .3s, transform .3s;
    background-color: #fff
}

.nav-tile__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    min-height: 230px;
    height: 100%;
    padding: 1.11111em 1.66667em;
    border-left: 1px solid rgba(216, 208, 230, .5)
}

.nav-tile__icon-wrapper {
    padding: 1.66667em 1.38889em 1.66667em 1.66667em
}

.nav-tile__icon {
    width: 45px;
    height: 45px
}

.nav-tile__title {
    font-size: var(--h3)
}

.nav-tile__perex {
    font-size: var(--font-size-sm)
}

.nav-tile__perex p {
    margin-bottom: 1.5rem
}

.nav-tile .button {
    margin-top: auto
}

.nav-tile:hover {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, .12);
    transform: translateY(-2px)
}

.nav-tile--primary {
    background-color: var(--primary);
    color: #fff
}

.nav-tile--secondary {
    background-color: var(--secondary);
    color: #fff
}

.nav-tile--tertiary {
    background-color: var(--secondary-light);
    color: var(--secondary)
}

.nav-tile--primary .nav-tile__content, .nav-tile--secondary .nav-tile__content, .nav-tile--tertiary .nav-tile__content {
    border-left: 1px solid rgba(255, 255, 255, .4)
}

.form-wrapper p {
    color: var(--secondary)
}

.form-wrapper .row {
    --gutter-x: 80px
}

.form-wrapper.is-expanded .form__toggle {
    max-height: 100%;
    overflow: visible
}

.form-wrapper.is-expanded .form__card-wrapper {
    margin-bottom: var(--section-padding)
}

.form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 2.77778em 2.22222em;
    background-color: var(--tertiary)
}

.form__title {
    position: relative;
    font-size: var(--h3);
    color: var(--secondary)
}

.form__title[data-label] {
    padding-left: calc(18px + 42px)
}

.form__title[data-label]:before {
    content: attr(data-label);
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    background-color: #fff;
    width: 42px;
    height: 42px;
    border-radius: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: var(--font-size-lg);
    color: var(--primary)
}

.form__subtitle {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--secondary);
    margin-bottom: 1em
}

.form__list {
    font-size: var(--font-size-sm)
}

.form__list li {
    position: relative;
    padding-left: 12px
}

.form__list li:before {
    content: '-';
    position: absolute;
    left: 0
}

.form__strip {
    background-color: var(--border-color);
    padding: .61111em;
    border-radius: 3px;
    display: -ms-flexbox;
    display: flex;
    margin-bottom: 1em
}

.form__strip .radio-button + .radio-button {
    margin-left: 1.94444em
}

.form__toggle {
    overflow: hidden;
    max-height: 0;
    transition: max-height .2s
}

.form__card-wrapper {
    margin-bottom: 0
}

.form__card-inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 40px
}

.form__card {
    width: calc(100% / 5.3);
    height: 90px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border: 1px solid var(--secondary);
    border-radius: 3px;
    font-size: var(--h4);
    font-weight: 700;
    white-space: nowrap;
    color: var(--secondary);
    transition-duration: .25s;
    cursor: pointer
}

.form__card:hover, .form__card.is-active {
    color: #fff;
    background-color: var(--secondary)
}

.form__optional {
    display: none;
    font-size: var(--font-size-sm)
}

.form__optional .text-field {
    position: relative;
    width: 130px;
    display: inline-block
}

.form__optional .text-field:after {
    content: 'Kč';
    position: absolute;
    top: 0;
    right: 0;
    width: 50px;
    height: 100%
}

.form__optional .button {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-left: 6px;
    width: fit-content !important
}

.form__optional .label {
    display: block
}

.form__banner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: var(--secondary);
    background-color: #fff;
    width: fit-content;
    padding: 1.38889em;
    border-radius: 3px
}

.form__item {
    height: fit-content;
    border-left: 1px solid var(--tertiary);
    margin-left: 25px;
    padding-left: 25px
}

.form__item td {
    padding: 0 40px
}

.form__item td:first-child {
    padding-left: 0
}

.form__item .button {
    font-size: var(--font-size-sm);
    font-weight: 600
}

.form__item .field:last-child {
    margin-bottom: 0
}

.form__label-bar {
    border-radius: 5px;
    background-color: var(--tertiary);
    --aspect-ratio: 8.441558%;
    width: 280px
}

.form__img {
    --aspect-ratio: 100%;
    width: 130px;
    height: 130px;
    -ms-flex-item-align: start;
    -ms-grid-row-align: start;
    align-self: start
}

.form--sm-img .form__img {
    width: 100px;
    height: 100px
}

.card-form-wrapper + .footer {
    padding-top: 320px
}

.card-form-wrapper--overlap {
    padding-top: var(--section-padding);
    position: relative;
    z-index: +1
}

.card-form-wrapper--overlap + .footer {
    margin-top: -250px
}

.card-form-wrapper--overlap:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--tertiary)
}

.card-form {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    border-radius: 3px 40px;
    overflow: hidden;
    --input-height: 62px
}

.card-form__img {
    width: 45%;
    --aspect-ratio: 80%
}

.card-form__img + .card-form__content {
    width: 55%
}

.card-form__img + .card-form__content {
    padding: 2.22222em 5.55556em 2.22222em 4.16667em
}

.card-form__content {
    width: 50%;
    padding: 1.61111em 2.61111em;
    background-color: var(--secondary);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center
}

.card-form__content > *:not(:last-child) {
    margin-bottom: var(--gutter-y)
}

.card-form__content > *:last-child {
    margin-bottom: 0
}

.card-form__content .field {
    margin-bottom: 1.05556em
}

.card-form__note {
    margin-top: 10px;
    color: var(--tertiary);
    font-size: var(--font-size-sm);
    font-weight: 300
}

.card-form__note a {
    text-decoration: underline
}

.card-form__note a:hover {
    color: var(--primary)
}

.card-form .section-header {
    color: #fff
}

.wide-media {
    position: relative;
    color: #fff
}

.wide-media__img, .wide-media__video {
    transition: all .4s;
    height: calc(var(--vh, 1vh) * 100)
}

.wide-media__content {
    position: absolute;
    left: 50%;
    bottom: var(--mb);
    transform: translateX(-50%)
}

.wide-media .button[data-play-video] {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .85;
    height: 60px;
    font-size: var(--font-size-lg)
}

.wide-media .button[data-stop-video] {
    --container-offset: max(var(--container-padding), (100vw - var(--container-width)) / 2);
    position: absolute;
    bottom: var(--mb);
    right: var(--container-offset);
    opacity: .85
}

.wide-media__title {
    font-size: var(--h0);
    line-height: 1;
    font-weight: 900;
    text-transform: uppercase;
    margin-bottom: 0
}

.wide-media--overlay .wide-media__img:after, .wide-media--overlay .wide-media__video:after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to right, rgba(0, 0, 0, .2) 0, transparent 100%)
}

[data-stop-video] {
    display: none
}

.blured-tile {
    position: relative;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: justify;
    justify-content: space-between;
    padding: 1.94444em 5em;
    background-image: linear-gradient(to bottom, #fff 0, rgba(255, 255, 255, 0) 100%);
    border-radius: 3px 40px;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 0);
    color: var(--secondary);
    transition: background-color .25s
}

.blured-tile__title {
    font-size: var(--h3);
    margin-bottom: var(--gutter-y)
}

.blured-tile__perex p {
    margin-bottom: 0
}

.blured-tile__icon {
    position: absolute;
    left: 1.38889em;
    top: 1.66667em;
    width: 40px;
    height: 40px;
    transition-duration: .25s
}

.blured-tile__icon svg {
    color: var(--primary)
}

.blured-tile:hover {
    background-color: white
}

.blured-tile:hover .blured-tile__icon {
    left: 1.94444em
}

.blured-tiles-wrapper .button {
    margin: var(--mb) auto 0
}

.hero {
    --aspect-ratio: 44%;
    position: relative;
    color: #fff
}

.hero__content {
    position: absolute;
    top: 0;
    left: 50%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: end;
    justify-content: flex-end;
    height: 75%;
    transform: translateX(-50%);
    padding: 5.55556em var(--container-padding)
}

.hero__perex {
    max-width: 600px;
    font-size: var(--h3)
}

.hero__perex--quotes {
    position: relative;
    padding-left: 3.05556em;
    line-height: 1.125
}

.hero__perex--quotes:after {
    content: '„';
    position: absolute;
    top: -78%;
    left: 0;
    font-size: 200px
}

.hero__extended {
    border-radius: 3px 40px;
    overflow: hidden;
    padding: 0 1.11111em;
    background-color: var(--tertiary);
    color: var(--secondary);
    margin-top: -2.77778em
}

.hero__extended [class^=col-] {
    padding: 2.22222em
}

.hero__extended [class^=col-]:not(:last-child) {
    border-right: 1px solid var(--border-color)
}

.hero__subtitle {
    --gutter-y: 40px;
    position: relative;
    margin-bottom: var(--gutter-y);
    font-size: var(--font-size-lg)
}

.hero__subtitle:after {
    content: '';
    position: absolute;
    bottom: calc(var(--gutter-y) / -1.85);
    left: 0;
    width: 15px;
    height: 2px;
    background-color: var(--primary)
}

.hero__list {
    margin-bottom: var(--gutter-y)
}

.hero__list li {
    position: relative;
    padding-left: 12px
}

.hero__list li:before {
    content: '-';
    position: absolute;
    left: 0
}

.hero--right-align .hero__content {
    -ms-flex-align: end;
    align-items: flex-end
}

.hero--gradient .hero__img:after {
    content: '';
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, transparent 0, var(--secondary) 100%);
    opacity: .5
}

.cropped-img {
    color: var(--secondary)
}

.cropped-img [class^=col-] {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column
}

.cropped-img .row {
    --gutter-x: 160px
}

.cropped-img__tiny-img {
    --aspect-ratio: 35%;
    max-width: 300px;
    margin-bottom: 5px
}

.cropped-img__perex {
    font-weight: 700
}

.cropped-img__toggle-wrapper {
    margin-top: auto;
    font-size: var(--font-size-sm)
}

.cropped-img__toggle {
    position: relative;
    padding-left: 15px;
    font-weight: 700;
    line-height: 1.7
}

.cropped-img__toggle li:after {
    content: '+';
    position: absolute;
    left: 0;
    color: var(--primary)
}

.cropped-img__toggle li a:hover {
    color: var(--primary)
}

.cropped-img__img {
    --aspect-ratio: 100%;
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
    overflow: hidden
}

.cropped-img .section-header {
    margin-bottom: 0
}

.img-link {
    --aspect-ratio: 67%
}

.img-link__img {
    overflow: hidden
}

.img-link__img:not(:last-child) {
    margin-bottom: var(--paragraph-spacing)
}

.img-link__img img {
    transition: transform .25s
}

.img-link__description {
    font-size: var(--font-size-sm)
}

.img-link__link {
    font-size: var(--font-size-sm);
    color: var(--secondary);
    font-weight: 700;
    transition: color .5s
}

.img-link__item > .twitter-tweet {
    margin: auto !important
}

.img-link a:hover .cover img {
    transform: scale(1.05)
}

.img-link a:hover .img-link__link {
    color: var(--primary)
}

.map {
    position: relative
}

.map__container {
    position: relative
}

.map__searchbar {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    margin-bottom: 1.11111em;
    font-size: 16px
}

.map__searchbar .field {
    max-width: 200px;
    min-width: fit-content;
    margin-bottom: 0
}

.map__searchbar .field:not(:first-child) {
    margin-left: 10px
}

.map__searchbar .field input[type=date] {
    max-width: 200px
}

.map__searchbar .checkbox {
    margin-left: 25px
}

.map__box {
    --container-offset: max(var(--container-padding), (100vw - var(--container-width)) / 2);
    position: absolute;
    top: 30px;
    left: calc(var(--container-offset) - var(--container-padding) / 4);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .55556em .83333em;
    border-radius: 3px;
    background-color: var(--secondary)
}

.map__box > .map__perex {
    color: #fff;
    margin-right: 25px;
    white-space: nowrap;
    font-weight: 400;
    font-size: var(--font-size-md, var(--font-size))
}

.map__perex {
    font-size: var(--font-size-lg);
    font-weight: 700;
    color: var(--secondary);
    line-height: 1.375
}

.map__description {
    font-size: var(--font-size-sm)
}

.map__description > *:last-child {
    margin-bottom: 0
}

.map__map {
    position: relative;
    min-height: 500px;
    height: calc(80vh - var(--header-height));
    background-color: var(--gray-light)
}

.map__table {
    font-size: var(--font-size-sm)
}

.map__table table {
    width: 100%
}

.map__label {
    color: var(--primary);
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 700
}

.map__label + .map__table {
    margin-top: 5px
}

.map__link {
    font-size: var(--font-size-sm);
    margin-top: auto;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    color: var(--primary)
}

.map__link--small {
    font-size: 14px;
    font-weight: 500
}

.map__link.c-primary {
    color: var(--primary) !important
}

.map__link.c-secondary {
    color: var(--secondary) !important
}

.map__link.c-quaternary {
    color: var(--quaternary) !important
}

.map__popup {
    position: absolute;
    min-width: 300px;
    min-height: 180px;
    margin-left: -10px;
    margin-bottom: 105px;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    padding: 20px 30px;
    background-color: #fff;
    color: var(--secondary);
    border-radius: 3px 3px 40px;
    overflow: hidden;
    overflow: visible
}

.map__popup > *:not(:last-child) {
    margin-bottom: calc(var(--paragraph-spacing) / 1.75)
}

.map__popup:before {
    content: "";
    position: absolute;
    top: 100%;
    left: 17px;
    margin-top: -17px;
    border-width: 17px;
    border-style: solid;
    border-color: transparent transparent #fff;
    transform: rotate(-45deg) translate(-50%, -50%)
}

.map__popup:after {
    content: '';
    position: absolute;
    inset: 0;
    width: 10px;
    height: 100%;
    background-color: var(--primary)
}

.map__popup > *:last-child {
    margin-bottom: 0
}

.map__popup .map__cross {
    color: var(--primary)
}

.map__popup--secondary .map__label {
    color: var(--secondary)
}

.map__popup--secondary .map__link {
    color: var(--secondary)
}

.map__popup--secondary .map__cross {
    color: var(--secondary)
}

.map__popup--secondary:after {
    background-color: var(--secondary)
}

.map__cross {
    position: absolute;
    right: 10px;
    top: 10px;
    height: 15px;
    width: 15px;
    stroke: currentColor;
    cursor: pointer
}

.map__legend {
    margin-left: auto;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    color: var(--primary);
    font-size: 12px;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1
}

.map__legend + .map__legend {
    margin-left: 30px
}

.map__legend--secondary {
    color: var(--secondary)
}

.map__legend .map__icon {
    width: 2.22222em;
    height: 2.22222em;
    margin-right: 15px
}

.map__icon {
    width: 25px;
    height: 22px;
    margin-right: .55556em
}

.map .section-header, .map .section-header__subtitle {
    margin-bottom: 15px
}

.map--line {
    padding-top: calc(var(--section-padding) * 1.3)
}

.map--line:after {
    content: '';
    position: absolute;
    top: var(--section-padding);
    left: 0;
    width: 100%;
    height: 1px;
    background-color: var(--tertiary)
}

.cards .row {
    --gutter-x: 16px;
    --gutter-y: 16px
}

.cards .container > .button {
    margin: var(--mb) auto 0
}

.cards [class^=col-] {
    display: none
}

.cards [class^=col-]:nth-child(-n+6) {
    display: block
}

.cards.show-content [class^=col-] {
    display: block
}

.card {
    position: relative;
    height: 100%;
    background-color: #fff;
    padding: 1.55556em;
    border-radius: 3px 40px 3px 3px;
    overflow: hidden;
    transition: box-shadow .3s, transform .3s
}

.card__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    height: 100%;
    min-height: 283px
}

.card__content > *:not(.card__perex) + .button {
    margin-top: auto
}

.card__sticker {
    position: absolute;
    top: 1.55556em;
    padding: .22222em .55556em;
    background-color: var(--tertiary);
    border-radius: 3px;
    color: var(--secondary);
    font-size: var(--font-size-sm)
}

.card__title {
    font-size: var(--h4);
    color: var(--secondary)
}

.card__perex {
    font-size: var(--font-size-sm);
    margin-top: auto
}

.card--sticker {
    padding: 3.88889em 2.22222em 1.55556em 1.55556em
}

.card:hover {
    box-shadow: 10px 10px 20px rgba(0, 0, 0, .12);
    transform: translateY(-2px)
}

.card.card--bg-img {
    background-color: rgba(255, 255, 255, 0);
    background-image: var(--card-bg-img);
    background-repeat: no-repeat;
    background-size: cover;
    color: #fff;
    border-radius: 0
}

.card.card--bg-img:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: linear-gradient(to bottom, transparent 10%, var(--secondary) 100%)
}

.card.card--bg-img .card__title {
    color: #fff
}

.card.card--bg-img .card__content {
    position: relative;
    -ms-flex-pack: end;
    justify-content: flex-end
}

.card.card--bg-img .card__content .button {
    margin-top: 0
}

.simple-text {
    --aspect-ratio: 100%
}

.simple-text__img {
    max-width: 200px;
    margin-bottom: var(--mb)
}

.simple-text__title {
    font-size: var(--h3);
    color: var(--secondary)
}

.simple-text__perex {
    font-size: var(--font-size-sm)
}

.simple-text__description:last-child p {
    margin-bottom: 0
}

.simple-text a:not(.button) {
    color: var(--secondary);
    transition: color .25s
}

.simple-text a:not(.button):hover {
    color: var(--primary)
}

.table {
    color: var(--secondary);
    border-radius: 3px;
    overflow: hidden
}

.table .row {
    background-color: var(--tertiary);
    margin-top: 0;
    padding: .55556em 0;
    transition: background-color .25s
}

.table .row:not(:first-child) {
    border-top: 2px solid #fff
}

.table .row:hover {
    background-color: var(--tertiary-dark)
}

.table [class*=col-] {
    margin-top: 0
}

.table__item {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.table__item p {
    margin-bottom: 0
}

.table__link {
    color: var(--primary);
    transition: color .25s
}

.table__link:hover {
    color: var(--primary-dark)
}

.table-mobile {
    display: none;
    color: var(--secondary);
    border-radius: 3px;
    overflow: hidden
}

.table-mobile .row {
    background-color: var(--tertiary);
    margin-top: 0;
    padding: .55556em 1.11111em;
    transition: background-color .25s
}

.table-mobile .row:not(:first-child) {
    border-top: 2px solid #fff
}

.table-mobile .row:hover {
    background-color: var(--tertiary-dark)
}

.table-mobile [class*=col-] {
    margin: 0
}

.table-mobile__item {
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center
}

.table-mobile__item p {
    margin-bottom: 0
}

.table-mobile__item strong {
    font-size: var(--font-size-md, var(--font-size))
}

.table-mobile__link {
    color: var(--primary);
    transition: color .25s;
    font-size: var(--font-size-md, var(--font-size))
}

.table-mobile__link:hover {
    color: var(--primary-dark)
}

.event__link {
    margin-bottom: var(--mb);
    color: var(--primary);
    transition: color .25s;
    text-decoration: underline
}

.event__link:hover {
    color: var(--primary-dark)
}

.event__strip {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    background-color: var(--tertiary-light);
    margin-bottom: var(--mb);
    padding: 1.94444em 0;
    color: var(--secondary)
}

.event__strip:after {
    content: '';
    position: absolute;
    inset: 0;
    width: 5px;
    height: 100%;
    background-color: var(--primary)
}

.event__img {
    --aspect-ratio: 100%;
    position: absolute;
    top: 2.77778em;
    right: var(--container-padding);
    width: 270px;
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
    overflow: hidden
}

.event__item {
    width: fit-content;
    padding: 0 1.66667em
}

.event__item:first-child {
    text-align: center;
    border-right: 1px solid var(--border-color)
}

.event__content {
    max-width: 800px;
    margin-left: 8.05556em
}

.event__labels {
    display: -ms-inline-flexbox;
    display: inline-flex;
    margin-bottom: var(--mb)
}

.event__icon {
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding: .55556em .83333em;
    border-radius: 25px;
    background-color: var(--tertiary);
    color: var(--secondary);
    transition: background-color .25s
}

.event__icon:hover {
    background-color: var(--tertiary-dark)
}

.event__icon-inner {
    display: -ms-flexbox;
    display: flex;
    width: 30px;
    height: 30px;
    margin-right: .72222em;
    background-color: var(--secondary);
    border-radius: 100%;
    color: #fff
}

.event__icon svg {
    width: 50%;
    height: 50%;
    margin: auto
}

.event__icon + .event__icon {
    margin-left: .55556em
}

.fixed-img {
    position: fixed;
    top: calc(var(--header-height) * 2);
    left: 0;
    width: 100%;
    height: 100%
}

.fixed-img__img {
    --aspect-ratio: 100%;
    width: 700px;
    margin-left: auto;
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
    overflow: hidden
}

.blog {
    --mb: 50px;
    color: var(--secondary)
}

.blog > *:not(:last-child):not(.blog__subtitle) {
    margin-bottom: var(--mb)
}

.blog__subtitle {
    font-size: var(--h3);
    margin-bottom: 35px
}

.blog__perex {
    display: -ms-flexbox;
    display: flex;
    font-size: var(--font-size-lg)
}

.blog__perex p {
    margin-bottom: 0
}

.blog__sticker {
    width: fit-content;
    height: fit-content;
    text-align: center;
    background-color: var(--tertiary);
    padding: .22222em 1.11111em;
    border-radius: 3px
}

.blog__sticker strong {
    font-size: var(--h4)
}

.blog__sticker p {
    font-size: var(--h5)
}

.blog__sticker + p {
    margin-left: 1.94444em
}

.blog__img {
    border-radius: 3px 40px;
    overflow: hidden;
    --aspect-ratio: 60%
}

.blog__description {
    color: var(--color)
}

.blog__description p {
    max-width: 700px;
    margin: auto
}

.blog + .gallery {
    margin-top: var(--mb)
}

.gallery .row {
    --gutter-x: 15px;
    --gutter-y: 20px
}

.gallery__item--height1 {
    --aspect-ratio: 60%
}

.gallery__item--height2 {
    --aspect-ratio: 124.597%
}

.gallery__img {
    overflow: hidden
}

:root {
    --info-strip-height: 40px
}

.info-strip {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 1000;
    width: 100%;
    background-color: var(--secondary);
    color: #fff;
    overflow: hidden
}

.info-strip__content {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    font-size: var(--font-size-sm);
    height: var(--info-strip-height);
    transition: height .25s
}

.info-strip a {
    font-weight: 600;
    text-decoration: underline;
    transition-duration: .25s
}

.info-strip a:hover {
    color: var(--primary)
}

.info-strip__icon {
    margin-right: 20px
}

.info-strip__icon svg {
    fill: var(--gray)
}

.info-strip__close {
    position: absolute;
    top: 50%;
    right: var(--container-padding);
    transform: translateY(-50%);
    width: 13px;
    height: 13px;
    cursor: pointer
}

.info-strip ~ .header, .info-strip ~ .content-wrapper {
    margin-top: var(--info-strip-height)
}

.text-button [class^=col-] {
    position: relative
}

.text-button__img {
    --aspect-ratio: 100%;
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
    overflow: hidden;
    max-width: 400px
}

.text-button__img--paralax {
    position: absolute;
    top: -40px;
    left: 20%;
    transform: translateX(-50%)
}

.s2022-cookie-bar {
    --padding: 35px;
    --cookie-background-color: #fff;
    --cookie-text-color: var(--secondary);
    --cookie-title-color: #fff;
    --cookie-button-color: var(--secondary);
    --cookie-switch-color: var(--secondary);
    --cookie-border-color: #ccc;
    --title-size: 24px;
    --text-size: 18px;
    --button-text-size: 18px;
    --title-fw: 600;
    --text-fw: 300;
    --anchor-fw: 500;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9000;
    width: 100%;
    height: fit-content;
    background-color: var(--cookie-background-color)
}

.s2022-cookie-bar, .s2022-cookie-bar div {
    box-sizing: border-box
}

.s2022-cookie-bar h1, .s2022-cookie-bar h2, .s2022-cookie-bar h3, .s2022-cookie-bar h4, .s2022-cookie-bar h5, .s2022-cookie-bar h6, .s2022-cookie-bar p, .s2022-cookie-bar a {
    margin-top: 0;
    color: var(--cookie-text-color);
    font-family: inherit;
    font-weight: var(--title-fw);
    margin-bottom: 20px
}

.s2022-cookie-bar p {
    font-size: var(--text-size);
    font-weight: var(--text-fw)
}

.s2022-cookie-bar a {
    font-size: var(--text-size);
    font-weight: var(--anchor-fw)
}

.s2022-cookie-bar .cb-button {
    font-size: var(--button-text-size);
    margin-bottom: 0
}

.s2022-cookie-bar .cb-button {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    border-radius: 0;
    min-height: 50px;
    padding: .77778em 1.33333em;
    border-radius: 3px;
    line-height: 1.5;
    cursor: pointer;
    text-decoration: none;
    -webkit-appearance: none;
    outline: none;
    box-shadow: none;
    font-family: inherit;
    overflow: hidden;
    font-weight: 500;
    transition-duration: .25s;
    background-color: var(--cookie-button-color);
    color: #fff
}

.s2022-cookie-bar .cb-button:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, .5);
    transition: none
}

.s2022-cookie-bar .cb-button:hover:after {
    width: 120%;
    background-color: rgba(255, 255, 255, 0);
    transition: all .4s ease-out
}

.s2022-cookie-bar .cb-button--outline {
    background-color: rgba(255, 255, 255, 0);
    border: 1px solid var(--cookie-button-color);
    color: var(--cookie-button-color)
}

.s2022-cookie-bar .cb-button--outline:hover {
    background-color: var(--cookie-button-color);
    color: #fff
}

.s2022-cookie-bar .cb-button--outline:hover:after {
    display: none
}

.s2022-cookie-bar__basic {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    height: fit-content;
    width: 100%;
    padding: calc(var(--padding) * 1.3) var(--padding)
}

.s2022-cookie-bar__advanced {
    position: fixed;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: stretch;
    justify-content: stretch;
    -ms-flex-direction: column;
    flex-direction: column;
    top: 5%;
    left: 50%;
    transform: translateX(-50%);
    z-index: +20;
    max-height: 90%;
    width: 30vw;
    background-color: var(--cookie-background-color);
    padding: var(--padding);
    box-shadow: 3px 3px 20px rgba(87, 87, 87, .5)
}

.s2022-cookie-bar__advanced p {
    margin-bottom: 0;
    max-width: 75%
}

.s2022-cookie-bar__advanced .cb-button {
    margin: 20px 0
}

.s2022-cookie-bar__title {
    font-size: var(--title-size);
    max-width: 75%
}

.s2022-cookie-bar__option-wrapper {
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 15px
}

.s2022-cookie-bar__option {
    position: relative;
    min-height: 30%;
    border-bottom: 1px solid var(--cookie-border-color);
    padding: 20px 0
}

.s2022-cookie-bar__option:last-of-type {
    border-color: transparent
}

.s2022-cookie-bar__info {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 45%
}

.s2022-cookie-bar__link {
    text-decoration: underline;
    transition: color .25s;
    width: fit-content
}

.s2022-cookie-bar__link:hover {
    color: var(--primary)
}

.s2022-cookie-bar__subtitle {
    font-size: var(--title-size)
}

.s2022-cookie-bar__buttons {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    width: fit-content
}

.s2022-cookie-bar__buttons * {
    margin-bottom: 0;
    font-size: 18px
}

.s2022-cookie-bar__buttons *:first-child {
    margin-bottom: 10px
}

.s2022-cookie-bar__background {
    position: absolute;
    top: 0;
    background-color: #ddd;
    width: 100%;
    height: 100%;
    z-index: -1;
    border-radius: 38px
}

.s2022-cookie-bar__switch {
    position: absolute;
    right: 0;
    top: 20px;
    width: 55px;
    height: 30px
}

.s2022-cookie-bar__switch input {
    opacity: 0;
    width: 100%;
    height: 100%;
    cursor: pointer
}

.s2022-cookie-bar__switch input[checked=true] ~ .s2022-cookie-bar__slider {
    left: auto;
    right: 2px
}

.s2022-cookie-bar__switch input[checked=true] ~ .s2022-cookie-bar__slider:after {
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" xml:space="preserve"><path d="M202.624 478.016 0 291.36l70.512-76.56 121.456 111.856L431.44 33.984 512 99.904z"/></svg>');
    background-size: 12px
}

.s2022-cookie-bar__switch input[checked=true] ~ .s2022-cookie-bar__background {
    background-color: var(--cookie-switch-color)
}

.s2022-cookie-bar__slider {
    position: absolute;
    z-index: -1;
    top: 50%;
    left: 2px;
    transform: translateY(-50%);
    width: 26px;
    height: 26px;
    background-color: var(--cookie-background-color);
    border-radius: 50%
}

.s2022-cookie-bar__slider:after {
    content: '';
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 512 512" xml:space="preserve"><path d="M512 59.076 452.922 0 256 196.922 59.076 0 0 59.076 196.922 256 0 452.922 59.076 512 256 315.076 452.922 512 512 452.922 315.076 256z"/></svg>');
    width: 26px;
    height: 26px;
    display: block;
    background-size: 10px;
    background-repeat: no-repeat;
    background-position: center
}

.s2022-cookie-bar__veil {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 8999;
    width: 100%;
    height: 100%;
    background-color: #000;
    opacity: .3
}

.disabled .s2022-cookie-bar__switch * {
    cursor: not-allowed
}

.s2022-cookie-bar .hide {
    display: none
}

.contact {
    color: var(--secondary)
}

.contact__title {
    font-size: var(--font-size-md, var(--font-size));
    margin-bottom: 25px
}

.contact a {
    text-decoration: underline
}

.reference__img {
    --aspect-ratio: 100%;
    border-radius: 40px 3px;
    overflow: hidden;
    margin-bottom: 20px;
    background: url('data:image/svg+xml,%3csvg fill="%23e9e9e9" xmlns="http://www.w3.org/2000/svg" width="25.137" height="14.646"%3e%3cdefs%3e%3cclipPath id="a"%3e%3cpath data-name="Rectangle 56" transform="translate%28-5%29" d="M0 0h25.137v14.646H0z"/%3e%3c/clipPath%3e%3c/defs%3e%3cg data-name="Group 4" transform="translate%285%29" clip-path="url%28%23a%29"%3e%3cpath data-name="Path 30" d="M-5 8.121H6.6a6.027 6.027 0 0 0-1 2.634 3.607 3.607 0 0 0 1.227 2.646 4.918 4.918 0 0 0 3.336 1.239 4.906 4.906 0 0 0 3.331-1.239l6.643-6.076L13.5 1.241a4.894 4.894 0 0 0-3.337-1.24 4.882 4.882 0 0 0-3.331 1.24A3.58 3.58 0 0 0 5.6 3.894a3.869 3.869 0 0 0 1 2.634H-5Z"/%3e%3c/g%3e%3c/svg%3e') no-repeat center center/50%;
    background-color: var(--light);
    transition: all .3s;
    -webkit-mask-image: -webkit-radial-gradient(white, black)
}

.reference__img img {
    transition: all .35s
}

.reference__title {
    font-size: var(--font-size-lg);
    margin-bottom: 3px;
    color: var(--secondary)
}

.reference__perex {
    font-size: var(--font-size-sm)
}

.reference__perex p {
    margin-bottom: 20px
}

.reference__link {
    font-size: var(--font-size-sm);
    color: var(--secondary);
    text-decoration: underline;
    transition: color .25s
}

.reference__link:hover {
    color: var(--primary)
}

.reference:hover .reference__img {
    background-size: 60%
}

.reference:hover .reference__img > img {
    scale: 1.09
}

.toggle {
    position: relative;
    padding: 1.11111em 0;
    cursor: pointer;
    border-top: 1px solid var(--border-color)
}

.toggle:last-child {
    border-bottom: 1px solid var(--border-color)
}

.toggle__title {
    position: relative;
    font-size: var(--h4);
    color: var(--secondary);
    margin-bottom: 0;
    transition: all .4s;
    font-weight: 600;
    padding-right: 50px
}

.toggle__title:after {
    content: '+';
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    color: var(--primary);
    font-size: 36px;
    font-weight: 200
}

.toggle__perex p {
    margin-bottom: calc(1.5rem - 1.11111em)
}

.toggle__dropdown {
    max-height: 0;
    overflow: hidden;
    transition: all .2s
}

.toggle.is-expanded .toggle__dropdown {
    max-height: 1000px;
    transition: all .6s
}

.toggle.is-expanded .toggle__title {
    margin-bottom: 1.5rem
}

.toggle.is-expanded .toggle__title:after {
    content: '-';
    font-size: 56px
}

.g-0 {
    --gutter-x: 0;
    --gutter-y: 0
}

.g-sm {
    --gutter-x: 20px;
    --gutter-y: 20px
}

.g-lg {
    --gutter-x: 80px;
    --gutter-y: 80px
}

.gx-0 {
    --gutter-x: 0
}

.gx-sm {
    --gutter-x: 20px
}

.gx-lg {
    --gutter-x: 80px
}

.gy-0 {
    --gutter-y: 0
}

.gy-sm {
    --gutter-y: 20px
}

.gy-lg {
    --gutter-y: 80px
}

.d-block {
    display: block !important
}

.d-flex {
    display: -ms-flexbox !important;
    display: flex !important
}

.d-none {
    display: none !important
}

.justify-content-start {
    -ms-flex-pack: start !important;
    justify-content: flex-start !important
}

.justify-content-end {
    -ms-flex-pack: end !important;
    justify-content: flex-end !important
}

.justify-content-center {
    -ms-flex-pack: center !important;
    justify-content: center !important
}

.justify-content-between {
    -ms-flex-pack: justify !important;
    justify-content: space-between !important
}

.justify-content-around {
    -ms-flex-pack: distribute !important;
    justify-content: space-around !important
}

.justify-content-evenly {
    -ms-flex-pack: space-evenly !important;
    justify-content: space-evenly !important
}

.align-items-start {
    -ms-flex-align: start !important;
    align-items: flex-start !important
}

.align-items-end {
    -ms-flex-align: end !important;
    align-items: flex-end !important
}

.align-items-center {
    -ms-flex-align: center !important;
    align-items: center !important
}

.order-first {
    -ms-flex-order: -1 !important;
    order: -1 !important
}

.order-last {
    -ms-flex-order: 1 !important;
    order: 1 !important
}

.text-primary {
    color: var(--primary) !important
}

.text-secondary {
    color: var(--secondary) !important
}

.text-gray {
    color: var(--gray) !important
}

.text-white {
    color: #fff !important
}

.text-left {
    text-align: left !important
}

.text-center {
    text-align: center !important
}

.text-right {
    text-align: right !important
}

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important
}

.hidden {
    display: none
}

.centered {
    margin: 0 auto;
    text-align: center;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: center;
    align-items: center
}

.text-base {
    color: var(--color)
}

.underline {
    text-decoration: underline
}

.rigth-aligned {
    margin-right: auto;
    text-align: right;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: end;
    align-items: flex-end
}

.left-aligned {
    margin-right: auto;
    text-align: left
}

.border-radius {
    border-radius: 3px 40px 3px 3px;
    overflow: hidden
}

.border-radius-diagonal {
    border-radius: 3px 40px;
    overflow: hidden
}

.border-radius-d-shape {
    border-top-right-radius: 100%;
    border-bottom-right-radius: 100%;
    overflow: hidden
}

.mb-1 {
    margin-bottom: 1em !important
}

.mb-0 {
    margin-bottom: 0 !important
}

.text-truncate {
    -webkit-box-orient: vertical;
    display: block;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: var(--line-clamp, 5)
}

@media (max-width: 1399.98px) {
    :root {
        --breakpoint: xl
    }

    .xl\:col-1 {
        width: 8.33333%
    }

    .xl\:col-2 {
        width: 16.66667%
    }

    .xl\:col-3 {
        width: 25%
    }

    .xl\:col-4 {
        width: 33.33333%
    }

    .xl\:col-5 {
        width: 41.66667%
    }

    .xl\:col-6 {
        width: 50%
    }

    .xl\:col-7 {
        width: 58.33333%
    }

    .xl\:col-8 {
        width: 66.66667%
    }

    .xl\:col-9 {
        width: 75%
    }

    .xl\:col-10 {
        width: 83.33333%
    }

    .xl\:col-11 {
        width: 91.66667%
    }

    .xl\:col-12 {
        width: 100%
    }

    :root {
        --section-padding: 80px
    }

    .wide-media__content {
        bottom: var(--section-padding)
    }

    .wide-media__title {
        font-size: var(--h1);
        font-weight: 900
    }

    .hero__content {
        height: 70%
    }

    .hero__perex {
        font-size: var(--h4)
    }

    .hero__perex--quotes {
        padding-left: 3.05556em
    }

    .hero__perex--quotes:after {
        top: -89%;
        left: 0;
        font-size: 150px
    }

    .xl\:d-block {
        display: block !important
    }

    .xl\:d-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .xl\:d-none {
        display: none !important
    }

    .xl\:order-first {
        -ms-flex-order: -1 !important;
        order: -1 !important
    }

    .xl\:order-last {
        -ms-flex-order: 1 !important;
        order: 1 !important
    }
}

@media (max-width: 1279.98px) {
    :root {
        --breakpoint: lg
    }

    .lg\:col-1 {
        width: 8.33333%
    }

    .lg\:col-2 {
        width: 16.66667%
    }

    .lg\:col-3 {
        width: 25%
    }

    .lg\:col-4 {
        width: 33.33333%
    }

    .lg\:col-5 {
        width: 41.66667%
    }

    .lg\:col-6 {
        width: 50%
    }

    .lg\:col-7 {
        width: 58.33333%
    }

    .lg\:col-8 {
        width: 66.66667%
    }

    .lg\:col-9 {
        width: 75%
    }

    .lg\:col-10 {
        width: 83.33333%
    }

    .lg\:col-11 {
        width: 91.66667%
    }

    .lg\:col-12 {
        width: 100%
    }

    :root {
        --header-height: 75px;
        --header-logo-height: 50px
    }

    .header__nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        transform: translate(0, 0);
        width: 100%;
        max-height: calc(100vh - var(--header-height));
        overflow: auto;
        background-color: #fff
    }

    .header__nav ul {
        display: block
    }

    .header__nav li {
        display: block;
        margin-right: 0
    }

    .header__nav a:not(.button) {
        display: block;
        width: 100%;
        padding: 0 var(--container-padding);
        line-height: 60px
    }

    .header__nav a:not(.button).is-active:after {
        display: none
    }

    .header .button--mobile {
        display: -ms-flexbox;
        display: flex;
        margin-left: auto
    }

    .header__buttons {
        display: none;
        -ms-flex-direction: row;
        flex-direction: row;
        -ms-flex-pack: justify;
        justify-content: space-between;
        padding: 0 var(--container-padding)
    }

    .header__buttons .button {
        width: 100%;
        margin-top: 25px;
        margin-bottom: 30px
    }

    .header__buttons .button span {
        padding: 0
    }

    .header__buttons--mobile {
        display: -ms-flexbox;
        display: flex
    }

    .header__expander {
        display: block;
        margin-left: 0
    }

    .header:not(.header--transparent) {
        box-shadow: 0 6px 6px 0 rgba(0, 0, 0, .05)
    }

    .form .row {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .form .button:not(.qr-button) {
        margin: 0 auto
    }

    .hero__content {
        height: 65%
    }

    .cropped-img .row {
        --gutter-x: 50px
    }

    .map:after {
        display: none
    }

    .map__searchbar {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .map__searchbar .field {
        max-width: calc(100% / 3 - 7px);
        margin-bottom: 1.11111em
    }

    .map__searchbar .field input[type=date] {
        max-width: 100%
    }

    .map__searchbar .field .checkbox {
        margin-left: -10px
    }

    .map__perex {
        font-size: var(--font-size-sm)
    }

    .map__legend {
        margin-bottom: auto;
        font-size: 12px
    }

    .map__legend + .map__legend {
        margin-left: 20px
    }

    .map__legend--secondary {
        color: var(--secondary)
    }

    .map__legend .map__icon {
        width: 1.94444em;
        height: 1.94444em;
        margin-right: 10px
    }

    .table .row {
        padding: .55556em .83333em
    }

    .fixed-img {
        display: none
    }

    .text-button__img--paralax {
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%)
    }

    .s2022-cookie-bar__basic {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .s2022-cookie-bar__info {
        width: 100%;
        margin-bottom: var(--padding)
    }

    .s2022-cookie-bar__advanced {
        width: 60vw
    }

    .s2022-cookie-bar__buttons {
        width: 100%;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .lg\:d-block {
        display: block !important
    }

    .lg\:d-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .lg\:d-none {
        display: none !important
    }

    .lg\:order-first {
        -ms-flex-order: -1 !important;
        order: -1 !important
    }

    .lg\:order-last {
        -ms-flex-order: 1 !important;
        order: 1 !important
    }
}

@media (max-width: 991.98px) {
    :root {
        --breakpoint: md
    }

    html {
        font-size: var(--font-size-sm-device)
    }

    .md\:col-1 {
        width: 8.33333%
    }

    .md\:col-2 {
        width: 16.66667%
    }

    .md\:col-3 {
        width: 25%
    }

    .md\:col-4 {
        width: 33.33333%
    }

    .md\:col-5 {
        width: 41.66667%
    }

    .md\:col-6 {
        width: 50%
    }

    .md\:col-7 {
        width: 58.33333%
    }

    .md\:col-8 {
        width: 66.66667%
    }

    .md\:col-9 {
        width: 75%
    }

    .md\:col-10 {
        width: 83.33333%
    }

    .md\:col-11 {
        width: 91.66667%
    }

    .md\:col-12 {
        width: 100%
    }

    :root {
        --section-padding: 40px
    }

    .footer__strip {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        text-align: center;
        -ms-flex-pack: center;
        justify-content: center
    }

    .footer__copyright:last-child {
        margin-left: 0;
        margin-top: 5px
    }

    .section-header {
        max-width: 100%;
        margin-bottom: calc(var(--mb) / 2)
    }

    .section-header__title {
        font-size: var(--h2);
        font-weight: 900
    }

    .section-header__subtitle {
        font-size: 28px
    }

    .nav-tile__icon-wrapper {
        padding: .83333em 1.38889em
    }

    .nav-tile__icon {
        width: 35px;
        height: 35px
    }

    .nav-tile__content {
        min-height: 170px;
        padding: .88889em 1.38889em;
        border-top: 1px solid rgba(255, 255, 255, .4);
        border-left: none
    }

    .nav-tile__title {
        font-size: var(--h4)
    }

    .form-wrapper.is-expanded .form__card-wrapper {
        margin-bottom: var(--gutter-y)
    }

    .form__card {
        height: 80px;
        font-size: var(--font-size-lg)
    }

    .form__banner {
        width: 100%
    }

    .form .button:not(.qr-button) {
        width: 100%
    }

    .card-form__img {
        width: 100%;
        --aspect-ratio: 55%
    }

    .card-form__img + .card-form__content {
        width: 100%;
        padding: var(--container-padding)
    }

    .card-form__content {
        width: 100%;
        padding: var(--container-padding)
    }

    .card-form__content .button {
        width: 100%;
        margin-bottom: 50px
    }

    .wide-media {
        --aspect-ratio: 60%
    }

    .wide-media__buttons {
        top: 45%
    }

    .wide-media__buttons .button {
        height: fit-content;
        font-size: var(--font-size-sm)
    }

    .wide-media__title {
        font-size: 50px
    }

    .blured-tile {
        padding: 1.11111em;
        padding-left: 3.88889em
    }

    .blured-tile__title {
        font-size: var(--h4)
    }

    .blured-tile__icon {
        width: 30px;
        height: 30px;
        left: .83333em;
        top: 1.11111em
    }

    .blured-tile:hover .blured-tile__icon {
        left: 1.11111em
    }

    .blured-tiles-wrapper .row {
        --gutter-x: 15px;
        --gutter-y: 15px
    }

    .blured-tiles-wrapper .button {
        margin: var(--mb) auto calc(var(--mb) - var(--section-padding))
    }

    .hero-wrapper {
        margin-bottom: 60px
    }

    .hero {
        --aspect-ratio: 60%
    }

    .hero__content {
        position: relative;
        inset: 0;
        background-color: var(--secondary);
        transform: translate(0, 0);
        padding: 2.77778em var(--container-padding) 4.44444em
    }

    .hero__perex--quotes {
        position: static;
        padding-left: 30px
    }

    .hero__perex--quotes:after {
        top: 0;
        left: var(--container-padding);
        font-size: 200px;
        transform: translateY(-77%)
    }

    .hero__extended {
        padding: 2.22222em
    }

    .hero__extended [class^=col-] {
        padding: 0
    }

    .hero__extended [class^=col-]:not(:last-child) {
        border-right: none;
        border-bottom: 1px solid var(--border-color)
    }

    .hero--right-align .hero__content {
        -ms-flex-align: start;
        align-items: flex-start
    }

    .table {
        display: none
    }

    .table-mobile {
        display: block
    }

    .event__img {
        display: none
    }

    .text-button-wrapper {
        padding-bottom: calc(var(--section-padding) * 2.2)
    }

    .text-button .row {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .text-button__img--paralax {
        top: 60%;
        left: 50%;
        transform: translate(-50%, -50%)
    }

    .s2022-cookie-bar__advanced .cb-button {
        margin-bottom: 0
    }

    .references .row {
        --gutter-x: 25px;
        --gutter-y: 25px
    }

    .reference__perex p {
        margin-bottom: 8px
    }

    .toggle-wrapper .row {
        --gutter-y: 0
    }

    .toggle-wrapper .row > [class^=col-]:first-child .toggle:last-child {
        border-bottom: none
    }

    .md\:d-block {
        display: block !important
    }

    .md\:d-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .md\:d-none {
        display: none !important
    }

    .md\:order-first {
        -ms-flex-order: -1 !important;
        order: -1 !important
    }

    .md\:order-last {
        -ms-flex-order: 1 !important;
        order: 1 !important
    }
}

@media (max-width: 767.98px) {
    :root {
        --breakpoint: sm
    }

    .sm\:col-1 {
        width: 8.33333%
    }

    .sm\:col-2 {
        width: 16.66667%
    }

    .sm\:col-3 {
        width: 25%
    }

    .sm\:col-4 {
        width: 33.33333%
    }

    .sm\:col-5 {
        width: 41.66667%
    }

    .sm\:col-6 {
        width: 50%
    }

    .sm\:col-7 {
        width: 58.33333%
    }

    .sm\:col-8 {
        width: 66.66667%
    }

    .sm\:col-9 {
        width: 75%
    }

    .sm\:col-10 {
        width: 83.33333%
    }

    .sm\:col-11 {
        width: 91.66667%
    }

    .sm\:col-12 {
        width: 100%
    }

    .sm\:d-block {
        display: block !important
    }

    .sm\:d-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .sm\:d-none {
        display: none !important
    }

    .sm\:order-first {
        -ms-flex-order: -1 !important;
        order: -1 !important
    }

    .sm\:order-last {
        -ms-flex-order: 1 !important;
        order: 1 !important
    }
}

@media (max-width: 575.98px) {
    :root {
        --breakpoint: xs
    }

    :root {
        --container-padding: 16px
    }

    .xs\:col-1 {
        width: 8.33333%
    }

    .xs\:col-2 {
        width: 16.66667%
    }

    .xs\:col-3 {
        width: 25%
    }

    .xs\:col-4 {
        width: 33.33333%
    }

    .xs\:col-5 {
        width: 41.66667%
    }

    .xs\:col-6 {
        width: 50%
    }

    .xs\:col-7 {
        width: 58.33333%
    }

    .xs\:col-8 {
        width: 66.66667%
    }

    .xs\:col-9 {
        width: 75%
    }

    .xs\:col-10 {
        width: 83.33333%
    }

    .xs\:col-11 {
        width: 91.66667%
    }

    .xs\:col-12 {
        width: 100%
    }

    :root {
        --section-padding: 25px
    }

    .footer {
        font-size: var(--h6)
    }

    .field--split {
        width: 100%
    }

    .field--split + .field--split {
        margin-left: 0
    }

    .section-header {
        margin-bottom: 0
    }

    .section-header__title {
        font-size: 28px
    }

    .section-header > * {
        margin: 0 0 1rem
    }

    .section-header__icon {
        display: none
    }

    .nav-tiles .row {
        --gutter-x: 15px;
        --gutter-y: 15px
    }

    .form {
        padding: 2.22222em 1.38889em
    }

    .form__card-inner {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .form__title {
        font-size: var(--h4)
    }

    .form__card {
        width: calc(100% / 3 - 6px);
        height: 70px;
        transform: translateX(-3px);
        margin-left: 6px;
        margin-bottom: 6px;
        font-size: var(--font-size-md, var(--font-size))
    }

    .form__optional .text-field {
        width: 50%
    }

    .form__optional .button {
        margin-left: 6px;
        width: calc(50% - 12px) !important
    }

    .form__banner {
        -ms-flex-direction: column;
        flex-direction: column;
        -ms-flex-align: start;
        align-items: flex-start;
        font-size: 14px;
        padding: 1.11111em
    }

    .form__label-bar {
        width: 100%
    }

    .form__item {
        height: fit-content;
        width: 100%;
        border: none;
        padding-left: 0;
        margin: 0 auto;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .form__item td {
        padding: 0 10px
    }

    .form__item .button {
        width: 100%
    }

    .form__item .field:nth-child(2) {
        -ms-flex-order: 3;
        order: 3;
        margin-bottom: 0
    }

    .form__item .field:nth-child(3) {
        -ms-flex-order: 2;
        order: 2;
        margin-bottom: var(--field-mb)
    }

    .form__img {
        --aspect-ratio: 100%;
        margin: 0 auto 1.5rem
    }

    .card-form__img {
        --aspect-ratio: 75%
    }

    .wide-media {
        --aspect-ratio: 135%;
        background-color: var(--secondary)
    }

    .wide-media__content {
        bottom: var(--section-padding)
    }

    .hero__perex {
        font-size: var(--font-size-lg)
    }

    .cropped-img .row {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse
    }

    .map__searchbar {
        -ms-flex-direction: row;
        flex-direction: row
    }

    .map__searchbar .field {
        max-width: 100%;
        margin-bottom: 1.11111em
    }

    .map__searchbar .field:not(:first-child) {
        margin-left: 0
    }

    .map__searchbar .field input[type=date] {
        max-width: 100%
    }

    .map__searchbar .field .checkbox {
        margin-left: 0
    }

    .map__popup {
        min-width: 250px;
        min-height: 150px
    }

    .map__map {
        position: relative;
        min-height: 400px;
        height: calc(85vh - var(--header-height));
        background-color: var(--gray-light)
    }

    .map__legend {
        font-size: 12px;
        margin-left: 0;
        margin-top: 1.11111em
    }

    .map__legend + .map__legend {
        margin-left: 20px
    }

    .map__legend--secondary {
        color: var(--secondary)
    }

    .map__legend .map__icon {
        width: 1.94444em;
        height: 1.94444em;
        margin-right: 10px
    }

    .map__box {
        top: 10px;
        right: calc(var(--container-offset) - var(--container-padding) / 4)
    }

    .card {
        padding: 1.11111em
    }

    .card__content {
        min-height: 270px
    }

    .card--sticker {
        padding: 3.61111em .88889em 1.11111em
    }

    .event {
        --mb: 40px
    }

    .event__strip {
        -ms-flex-direction: row-reverse;
        flex-direction: row-reverse;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap
    }

    .event__item {
        width: 70%;
        padding: 0 1.11111em
    }

    .event__item:first-child {
        width: 30%;
        border-right: none
    }

    .event__content {
        margin: 0
    }

    .event__labels {
        display: -ms-inline-flexbox;
        display: inline-flex;
        -ms-flex-direction: column;
        flex-direction: column
    }

    .event__icon + .event__icon {
        margin-left: 0;
        margin-top: 15px
    }

    .blog {
        --mb: 30px
    }

    .blog__subtitle {
        font-size: var(--h4)
    }

    .blog__perex {
        -ms-flex-direction: column;
        flex-direction: column;
        font-size: var(--font-size-md, var(--font-size))
    }

    .blog__sticker strong {
        font-size: var(--h5)
    }

    .blog__sticker p {
        font-size: var(--h6)
    }

    .blog__sticker + p {
        margin-left: 0;
        margin-top: var(--paragraph-spacing)
    }

    :root {
        --info-strip-height: 70px
    }

    .info-strip__content {
        padding-right: 40px
    }

    .info-strip__icon {
        display: none
    }

    .info-strip__close {
        width: 15px;
        height: 15px
    }

    .text-button__img {
        max-width: 230px
    }

    .s2022-cookie-bar {
        --title-size: 16px;
        --text-size: 14px;
        --button-text-size: 14px
    }

    .s2022-cookie-bar__basic {
        padding: var(--padding)
    }

    .s2022-cookie-bar__basic p {
        width: 100%;
        padding: 0
    }

    .s2022-cookie-bar__info {
        -ms-flex-pack: start;
        justify-content: flex-start
    }

    .s2022-cookie-bar__advanced {
        top: 0;
        left: 0;
        transform: translate(0, 0);
        height: 100%;
        max-height: 100%;
        width: 100%;
        z-index: +1
    }

    .s2022-cookie-bar__advanced .cb-button {
        margin-top: auto
    }

    .s2022-cookie-bar__option {
        min-height: 25%;
        width: 100%
    }

    .s2022-cookie-bar__buttons {
        width: 100%
    }

    .s2022-cookie-bar__buttons * {
        font-size: 16px
    }

    .references .row {
        --gutter-x: 20px;
        --gutter-y: 20px
    }

    .reference__perex {
        font-size: 14px
    }

    .reference__perex p {
        margin-bottom: 3px
    }

    .reference__link {
        font-size: 14px
    }

    .reference__img {
        margin-bottom: 15px
    }

    .toggle__title {
        font-size: var(--h5)
    }

    .toggle__title:after {
        font-size: 30px
    }

    .toggle.is-expanded .toggle__title:after {
        font-size: 42px
    }

    .xs\:d-block {
        display: block !important
    }

    .xs\:d-flex {
        display: -ms-flexbox !important;
        display: flex !important
    }

    .xs\:d-none {
        display: none !important
    }

    .xs\:order-first {
        -ms-flex-order: -1 !important;
        order: -1 !important
    }

    .xs\:order-last {
        -ms-flex-order: 1 !important;
        order: 1 !important
    }
}

@media (min-width: 769px) {
    .glightbox-container .ginner-container {
        width: auto;
        height: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row
    }

    .glightbox-container .ginner-container.desc-top .gslide-description {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .glightbox-container .ginner-container.desc-top .gslide-image {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .glightbox-container .ginner-container.desc-top .gslide-image img {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .glightbox-container .ginner-container.desc-left .gslide-description {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0
    }

    .glightbox-container .ginner-container.desc-left .gslide-image {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1
    }

    .gslide-image img {
        max-height: 97vh;
        max-width: 100%
    }

    .gslide-image img.zoomable {
        cursor: -webkit-zoom-in;
        cursor: zoom-in
    }

    .zoomed .gslide-image img.zoomable {
        cursor: -webkit-grab;
        cursor: grab
    }

    .gslide-inline {
        max-height: 95vh
    }

    .gslide-external {
        max-height: 100vh
    }

    .gslide-description.description-left, .gslide-description.description-right {
        max-width: 275px
    }

    .glightbox-open {
        height: auto
    }

    .goverlay {
        background: rgba(0, 0, 0, .92)
    }

    .glightbox-clean .gslide-media {
        -webkit-box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, .65);
        box-shadow: 1px 2px 9px 0 rgba(0, 0, 0, .65)
    }

    .glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
        position: absolute;
        height: 100%;
        overflow-y: auto
    }

    .glightbox-clean .gprev, .glightbox-clean .gnext, .glightbox-clean .gclose {
        background-color: rgba(0, 0, 0, .32)
    }

    .glightbox-clean .gprev:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gclose:hover {
        background-color: rgba(0, 0, 0, .7)
    }

    .glightbox-clean .gprev, .glightbox-clean .gnext {
        top: 45%
    }
}

@media (min-width: 992px) {
    .glightbox-clean .gclose {
        opacity: .7;
        right: 20px
    }

    .section.section-sm-padding {
        --section-padding: 45px
    }

    .content-wrapper > .section:first-child {
        padding-top: 70px
    }
}

@media screen and (max-height: 420px) {
    .goverlay {
        background: #000
    }
}