@charset "UTF-8";
.not-selectable {
    -moz-user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.carousel {
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

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

.carousel.is-draggable {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.carousel.is-dragging {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.carousel__viewport {
    position: relative;
    overflow: hidden;
    max-width: 100%;
    max-height: 100%;
}

.carousel__track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.carousel__slide {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: var(--carousel-slide-width, 60%);
    max-width: 100%;
    padding: 1rem;
    position: relative;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    -webkit-overflow-scrolling: touch;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
}

.has-dots {
    margin-bottom: calc(0.5rem + 22px);
}

.carousel__dots {
    margin: 0 auto;
    padding: 0;
    position: absolute;
    top: calc(100% + 0.5rem);
    left: 0;
    right: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    list-style: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.carousel__dots .carousel__dot {
    margin: 0;
    padding: 0;
    display: block;
    position: relative;
    width: 22px;
    height: 22px;
    cursor: pointer;
}

.carousel__dots .carousel__dot:after {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: currentColor;
    opacity: .25;
    -webkit-transition: opacity .15s ease-in-out;
    transition: opacity .15s ease-in-out;
}

.carousel__dots .carousel__dot.is-selected:after {
    opacity: 1;
}

.carousel__button {
    width: var(--carousel-button-width, 48px);
    height: var(--carousel-button-height, 48px);
    padding: 0;
    border: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    pointer-events: all;
    cursor: pointer;
    color: var(--carousel-button-color, currentColor);
    background: var(--carousel-button-bg, transparent);
    border-radius: var(--carousel-button-border-radius, 50%);
    -webkit-box-shadow: var(--carousel-button-shadow, none);
            box-shadow: var(--carousel-button-shadow, none);
    -webkit-transition: opacity .15s ease;
    transition: opacity .15s ease;
}

.carousel__button.is-prev, .carousel__button.is-next {
    position: absolute;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.carousel__button.is-prev {
    left: 10px;
}

.carousel__button.is-next {
    right: 10px;
}

.carousel__button[disabled] {
    cursor: default;
    opacity: .3;
}

.carousel__button svg {
    width: var(--carousel-button-svg-width, 50%);
    height: var(--carousel-button-svg-height, 50%);
    fill: none;
    stroke: currentColor;
    stroke-width: var(--carousel-button-svg-stroke-width, 1.5);
    stroke-linejoin: bevel;
    stroke-linecap: round;
    -webkit-filter: var(--carousel-button-svg-filter, none);
            filter: var(--carousel-button-svg-filter, none);
    pointer-events: none;
}

html.with-fancybox {
    scroll-behavior: auto;
}

body.compensate-for-scrollbar {
    overflow: hidden !important;
    -ms-touch-action: none;
        touch-action: none;
}

.fancybox__container {
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    direction: ltr;
    margin: 0;
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    color: var(--fancybox-color, #fff);
    -webkit-tap-highlight-color: transparent;
    overflow: hidden;
    z-index: 1050;
    outline: none;
    -webkit-transform-origin: top left;
            transform-origin: top left;
    --carousel-button-width: 48px;
    --carousel-button-height: 48px;
    --carousel-button-svg-width: 24px;
    --carousel-button-svg-height: 24px;
    --carousel-button-svg-stroke-width: 2.5;
    --carousel-button-svg-filter: drop-shadow(1px 1px 1px rgba(0, 0, 0, 0.4));
}

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

.fancybox__container :focus {
    outline: none;
}

body:not(.is-using-mouse) .fancybox__container :focus {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
            box-shadow: 0 0 0 1px #fff, 0 0 0 2px var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
}

@media all and (min-width: 1024px) {
    .fancybox__container {
        --carousel-button-width:48px;
        --carousel-button-height:48px;
        --carousel-button-svg-width:27px;
        --carousel-button-svg-height:27px;
    }
}

.fancybox__backdrop {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: var(--fancybox-bg, rgba(24, 24, 27, 0.92));
}

.fancybox__carousel {
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
    min-height: 0;
    height: 100%;
    z-index: 10;
}

.fancybox__carousel.has-dots {
    margin-bottom: calc(0.5rem + 22px);
}

.fancybox__viewport {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: visible;
    cursor: default;
}

.fancybox__track {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 100%;
}

.fancybox__slide {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 48px 8px 8px 8px;
    position: relative;
    overscroll-behavior: contain;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    outline: 0;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    --carousel-button-width: 36px;
    --carousel-button-height: 36px;
    --carousel-button-svg-width: 22px;
    --carousel-button-svg-height: 22px;
}

.fancybox__slide::before, .fancybox__slide::after {
    content: "";
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 0;
        -ms-flex: 0 0 0px;
            flex: 0 0 0;
    margin: auto;
}

@media all and (min-width: 1024px) {
    .fancybox__slide {
        padding: 64px 100px;
    }
}

.fancybox__content {
    margin: 0 env(safe-area-inset-right, 0px) 0 env(safe-area-inset-left, 0px);
    padding: 36px;
    color: var(--fancybox-content-color, #374151);
    background: var(--fancybox-content-bg, #fff);
    position: relative;
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    z-index: 20;
}

.fancybox__content :focus:not(.carousel__button.is-close) {
    outline: thin dotted;
    -webkit-box-shadow: none;
            box-shadow: none;
}

.fancybox__caption {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
    max-width: 100%;
    margin: 0;
    padding: 1rem 0 0 0;
    line-height: 1.375;
    color: var(--fancybox-color, currentColor);
    visibility: visible;
    cursor: auto;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    overflow-wrap: anywhere;
}

.is-loading .fancybox__caption {
    visibility: hidden;
}

.fancybox__container > .carousel__dots {
    top: 100%;
    color: var(--fancybox-color, #fff);
}

.fancybox__nav .carousel__button {
    z-index: 40;
}

.fancybox__nav .carousel__button.is-next {
    right: 8px;
}

@media all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-next {
        right: 40px;
    }
}

.fancybox__nav .carousel__button.is-prev {
    left: 8px;
}

@media all and (min-width: 1024px) {
    .fancybox__nav .carousel__button.is-prev {
        left: 40px;
    }
}

.carousel__button.is-close {
    position: absolute;
    top: 8px;
    right: 8px;
    top: calc(env(safe-area-inset-top, 0px) + 8px);
    right: calc(env(safe-area-inset-right, 0px) + 8px);
    z-index: 40;
}

@media all and (min-width: 1024px) {
    .carousel__button.is-close {
        right: 40px;
    }
}

.fancybox__content > .carousel__button.is-close {
    position: absolute;
    top: -40px;
    right: 0;
    color: var(--fancybox-color, #fff);
}

.fancybox__no-click, .fancybox__no-click button {
    pointer-events: none;
}

.fancybox__spinner {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    width: 50px;
    height: 50px;
    color: var(--fancybox-color, currentColor);
}

.fancybox__slide .fancybox__spinner {
    cursor: pointer;
    z-index: 1053;
}

.fancybox__spinner svg {
    -webkit-animation: fancybox-rotate 2s linear infinite;
            animation: fancybox-rotate 2s linear infinite;
    -webkit-transform-origin: center center;
            transform-origin: center center;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 100%;
    height: 100%;
}

.fancybox__spinner svg circle {
    fill: none;
    stroke-width: 2.75;
    stroke-miterlimit: 10;
    stroke-dasharray: 1,200;
    stroke-dashoffset: 0;
    -webkit-animation: fancybox-dash 1.5s ease-in-out infinite;
            animation: fancybox-dash 1.5s ease-in-out infinite;
    stroke-linecap: round;
    stroke: currentColor;
}

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

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

@-webkit-keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124px;
    }
}

@keyframes fancybox-dash {
    0% {
        stroke-dasharray: 1,200;
        stroke-dashoffset: 0;
    }
    50% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -35px;
    }
    100% {
        stroke-dasharray: 89,200;
        stroke-dashoffset: -124px;
    }
}

.fancybox__backdrop, .fancybox__caption, .fancybox__nav, .carousel__dots, .carousel__button.is-close {
    opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__backdrop, .fancybox__container.is-animated[aria-hidden=false] .fancybox__caption, .fancybox__container.is-animated[aria-hidden=false] .fancybox__nav, .fancybox__container.is-animated[aria-hidden=false] .carousel__dots, .fancybox__container.is-animated[aria-hidden=false] .carousel__button.is-close {
    -webkit-animation: .15s ease backwards fancybox-fadeIn;
            animation: .15s ease backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__backdrop, .fancybox__container.is-animated.is-closing .fancybox__caption, .fancybox__container.is-animated.is-closing .fancybox__nav, .fancybox__container.is-animated.is-closing .carousel__dots, .fancybox__container.is-animated.is-closing .carousel__button.is-close {
    -webkit-animation: .15s ease both fancybox-fadeOut;
            animation: .15s ease both fancybox-fadeOut;
}

.fancybox-fadeIn {
    -webkit-animation: .15s ease both fancybox-fadeIn;
            animation: .15s ease both fancybox-fadeIn;
}

.fancybox-fadeOut {
    -webkit-animation: .1s ease both fancybox-fadeOut;
            animation: .1s ease both fancybox-fadeOut;
}

.fancybox-zoomInUp {
    -webkit-animation: .2s ease both fancybox-zoomInUp;
            animation: .2s ease both fancybox-zoomInUp;
}

.fancybox-zoomOutDown {
    -webkit-animation: .15s ease both fancybox-zoomOutDown;
            animation: .15s ease both fancybox-zoomOutDown;
}

.fancybox-throwOutUp {
    -webkit-animation: .15s ease both fancybox-throwOutUp;
            animation: .15s ease both fancybox-throwOutUp;
}

.fancybox-throwOutDown {
    -webkit-animation: .15s ease both fancybox-throwOutDown;
            animation: .15s ease both fancybox-throwOutDown;
}

@-webkit-keyframes fancybox-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fancybox-fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes fancybox-fadeOut {
    to {
        opacity: 0;
    }
}

@keyframes fancybox-fadeOut {
    to {
        opacity: 0;
    }
}

@-webkit-keyframes fancybox-zoomInUp {
    from {
        -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
                transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0;
    }
    to {
        -webkit-transform: scale(1) translate3d(0, 0, 0);
                transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes fancybox-zoomInUp {
    from {
        -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
                transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0;
    }
    to {
        -webkit-transform: scale(1) translate3d(0, 0, 0);
                transform: scale(1) translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes fancybox-zoomOutDown {
    to {
        -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
                transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0;
    }
}

@keyframes fancybox-zoomOutDown {
    to {
        -webkit-transform: scale(0.97) translate3d(0, 16px, 0);
                transform: scale(0.97) translate3d(0, 16px, 0);
        opacity: 0;
    }
}

@-webkit-keyframes fancybox-throwOutUp {
    to {
        -webkit-transform: translate3d(0, -30%, 0);
                transform: translate3d(0, -30%, 0);
        opacity: 0;
    }
}

@keyframes fancybox-throwOutUp {
    to {
        -webkit-transform: translate3d(0, -30%, 0);
                transform: translate3d(0, -30%, 0);
        opacity: 0;
    }
}

@-webkit-keyframes fancybox-throwOutDown {
    to {
        -webkit-transform: translate3d(0, 30%, 0);
                transform: translate3d(0, 30%, 0);
        opacity: 0;
    }
}

@keyframes fancybox-throwOutDown {
    to {
        -webkit-transform: translate3d(0, 30%, 0);
                transform: translate3d(0, 30%, 0);
        opacity: 0;
    }
}

.fancybox__carousel .carousel__slide {
    scrollbar-width: thin;
    scrollbar-color: #ccc rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar {
    width: 8px;
    height: 8px;
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-track {
    background-color: rgba(255, 255, 255, 0.1);
}

.fancybox__carousel .carousel__slide::-webkit-scrollbar-thumb {
    background-color: #ccc;
    border-radius: 2px;
    -webkit-box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
            box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.fancybox__carousel.is-draggable .fancybox__slide, .fancybox__carousel.is-draggable .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox__carousel.is-dragging .fancybox__slide, .fancybox__carousel.is-dragging .fancybox__slide .fancybox__content {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox__carousel .fancybox__slide .fancybox__content {
    cursor: auto;
}

.fancybox__carousel .fancybox__slide.can-zoom_in .fancybox__content {
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.fancybox__carousel .fancybox__slide.can-zoom_out .fancybox__content {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.fancybox__carousel .fancybox__slide.is-draggable .fancybox__content {
    cursor: move;
    cursor: -webkit-grab;
    cursor: grab;
}

.fancybox__carousel .fancybox__slide.is-dragging .fancybox__content {
    cursor: move;
    cursor: -webkit-grabbing;
    cursor: grabbing;
}

.fancybox__image {
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
    -ms-touch-action: none;
        touch-action: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-transition: none;
    transition: none;
}

.has-image .fancybox__content {
    padding: 0;
    background: transparent;
    min-height: 1px;
}

.is-closing .has-image .fancybox__content {
    overflow: visible;
}

.has-image[data-image-fit=contain] {
    overflow: visible;
    -ms-touch-action: none;
        touch-action: none;
}

.has-image[data-image-fit=contain] .fancybox__content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.has-image[data-image-fit=contain] .fancybox__image {
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.has-image[data-image-fit=contain-w] {
    overflow-x: hidden;
    overflow-y: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__content {
    min-height: auto;
}

.has-image[data-image-fit=contain-w] .fancybox__image {
    max-width: 100%;
    height: auto;
}

.has-image[data-image-fit=cover] {
    overflow: visible;
    -ms-touch-action: none;
        touch-action: none;
}

.has-image[data-image-fit=cover] .fancybox__content {
    width: 100%;
    height: 100%;
}

.has-image[data-image-fit=cover] .fancybox__image {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
    min-height: 1px;
    overflow: visible;
}

.fancybox__carousel .fancybox__slide.has-iframe .fancybox__content, .fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content {
    width: 100%;
    height: 80%;
}

.fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    width: 960px;
    height: 540px;
    max-width: 100%;
    max-height: 100%;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content, .fancybox__carousel .fancybox__slide.has-pdf .fancybox__content, .fancybox__carousel .fancybox__slide.has-video .fancybox__content, .fancybox__carousel .fancybox__slide.has-html5video .fancybox__content {
    padding: 0;
    background: rgba(24, 24, 27, 0.9);
    color: #fff;
}

.fancybox__carousel .fancybox__slide.has-map .fancybox__content {
    background: #e5e3df;
}

.fancybox__html5video, .fancybox__iframe {
    border: 0;
    display: block;
    height: 100%;
    width: 100%;
    background: transparent;
}

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

.fancybox__thumbs {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    position: relative;
    padding: 0px 3px;
    opacity: var(--fancybox-opacity, 1);
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__thumbs {
    -webkit-animation: .15s ease-in backwards fancybox-fadeIn;
            animation: .15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__thumbs {
    opacity: 0;
}

.fancybox__thumbs .carousel__slide {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    width: var(--fancybox-thumbs-width, 96px);
    margin: 0;
    padding: 8px 3px;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    overflow: visible;
    cursor: pointer;
}

.fancybox__thumbs .carousel__slide .fancybox__thumb::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border-width: 5px;
    border-style: solid;
    border-color: var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
    opacity: 0;
    -webkit-transition: opacity .15s ease;
    transition: opacity .15s ease;
    border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__thumbs .carousel__slide.is-nav-selected .fancybox__thumb::after {
    opacity: .92;
}

.fancybox__thumbs .carousel__slide > * {
    pointer-events: none;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.fancybox__thumb {
    position: relative;
    width: 100%;
    padding-top: calc(100%/(var(--fancybox-thumbs-ratio, 1.5)));
    background-size: cover;
    background-position: center center;
    background-color: rgba(255, 255, 255, 0.1);
    background-repeat: no-repeat;
    border-radius: var(--fancybox-thumbs-border-radius, 4px);
}

.fancybox__toolbar {
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    z-index: 20;
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0)), color-stop(8.1%, rgba(0, 0, 0, 0.006)), color-stop(15.5%, rgba(0, 0, 0, 0.021)), color-stop(22.5%, rgba(0, 0, 0, 0.046)), color-stop(29%, rgba(0, 0, 0, 0.077)), color-stop(35.3%, rgba(0, 0, 0, 0.114)), color-stop(41.2%, rgba(0, 0, 0, 0.155)), color-stop(47.1%, rgba(0, 0, 0, 0.198)), color-stop(52.9%, rgba(0, 0, 0, 0.242)), color-stop(58.8%, rgba(0, 0, 0, 0.285)), color-stop(64.7%, rgba(0, 0, 0, 0.326)), color-stop(71%, rgba(0, 0, 0, 0.363)), color-stop(77.5%, rgba(0, 0, 0, 0.394)), color-stop(84.5%, rgba(0, 0, 0, 0.419)), color-stop(91.9%, rgba(0, 0, 0, 0.434)), to(rgba(0, 0, 0, 0.44)));
    background: linear-gradient(to top, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.006) 8.1%, rgba(0, 0, 0, 0.021) 15.5%, rgba(0, 0, 0, 0.046) 22.5%, rgba(0, 0, 0, 0.077) 29%, rgba(0, 0, 0, 0.114) 35.3%, rgba(0, 0, 0, 0.155) 41.2%, rgba(0, 0, 0, 0.198) 47.1%, rgba(0, 0, 0, 0.242) 52.9%, rgba(0, 0, 0, 0.285) 58.8%, rgba(0, 0, 0, 0.326) 64.7%, rgba(0, 0, 0, 0.363) 71%, rgba(0, 0, 0, 0.394) 77.5%, rgba(0, 0, 0, 0.419) 84.5%, rgba(0, 0, 0, 0.434) 91.9%, rgba(0, 0, 0, 0.44) 100%);
    padding: 0;
    -ms-touch-action: none;
        touch-action: none;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    --carousel-button-svg-width: 20px;
    --carousel-button-svg-height: 20px;
    opacity: var(--fancybox-opacity, 1);
    text-shadow: var(--fancybox-toolbar-text-shadow, 1px 1px 1px rgba(0, 0, 0, 0.4));
}

@media all and (min-width: 1024px) {
    .fancybox__toolbar {
        padding: 8px;
    }
}

.fancybox__container.is-animated[aria-hidden=false] .fancybox__toolbar {
    -webkit-animation: .15s ease-in backwards fancybox-fadeIn;
            animation: .15s ease-in backwards fancybox-fadeIn;
}

.fancybox__container.is-animated.is-closing .fancybox__toolbar {
    opacity: 0;
}

.fancybox__toolbar__items {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.fancybox__toolbar__items--left {
    margin-right: auto;
}

.fancybox__toolbar__items--center {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

.fancybox__toolbar__items--right {
    margin-left: auto;
}

@media (max-width: 640px) {
    .fancybox__toolbar__items--center:not(:last-child) {
        display: none;
    }
}

.fancybox__counter {
    min-width: 72px;
    padding: 0 10px;
    line-height: var(--carousel-button-height, 48px);
    text-align: center;
    font-size: 17px;
    font-variant-numeric: tabular-nums;
    -webkit-font-smoothing: subpixel-antialiased;
}

.fancybox__progress {
    background: var(--fancybox-accent-color, rgba(1, 210, 232, 0.94));
    height: 3px;
    left: 0;
    position: absolute;
    right: 0;
    top: 0;
    -webkit-transform: scaleX(0);
            transform: scaleX(0);
    -webkit-transform-origin: 0;
            transform-origin: 0;
    -webkit-transition-property: -webkit-transform;
    transition-property: -webkit-transform;
    transition-property: transform;
    transition-property: transform, -webkit-transform;
    -webkit-transition-timing-function: linear;
            transition-timing-function: linear;
    z-index: 30;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.fancybox__container:-webkit-full-screen::backdrop {
    opacity: 0;
}

.fancybox__container:-ms-fullscreen::backdrop {
    opacity: 0;
}

.fancybox__container:fullscreen::backdrop {
    opacity: 0;
}

.fancybox__button--fullscreen g:nth-child(2) {
    display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(1) {
    display: none;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(1) {
    display: none;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(1) {
    display: none;
}

.fancybox__container:-webkit-full-screen .fancybox__button--fullscreen g:nth-child(2) {
    display: block;
}

.fancybox__container:-ms-fullscreen .fancybox__button--fullscreen g:nth-child(2) {
    display: block;
}

.fancybox__container:fullscreen .fancybox__button--fullscreen g:nth-child(2) {
    display: block;
}

.fancybox__button--slideshow g:nth-child(2) {
    display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(1) {
    display: none;
}

.fancybox__container.has-slideshow .fancybox__button--slideshow g:nth-child(2) {
    display: block;
}

/* Magnific Popup CSS */
.mfp-bg {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1042;
    overflow: hidden;
    position: fixed;
    background: #0b0b0b;
    opacity: 0.8;
}

.mfp-wrap {
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1043;
    position: fixed;
    outline: none !important;
    -webkit-backface-visibility: hidden;
}

.mfp-container {
    text-align: center;
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    padding: 0 8px;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

.mfp-container:before {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
}

.mfp-align-top .mfp-container:before {
    display: none;
}

.mfp-content {
    position: relative;
    display: inline-block;
    vertical-align: middle;
    margin: 0 auto;
    text-align: left;
    z-index: 1045;
}

.mfp-inline-holder .mfp-content,
.mfp-ajax-holder .mfp-content {
    width: 100%;
    cursor: auto;
}

.mfp-ajax-cur {
    cursor: progress;
}

.mfp-zoom-out-cur, .mfp-zoom-out-cur .mfp-image-holder .mfp-close {
    cursor: -webkit-zoom-out;
    cursor: zoom-out;
}

.mfp-zoom {
    cursor: pointer;
    cursor: -webkit-zoom-in;
    cursor: zoom-in;
}

.mfp-auto-cursor .mfp-content {
    cursor: auto;
}

.mfp-close,
.mfp-arrow,
.mfp-preloader,
.mfp-counter {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
        user-select: none;
}

.mfp-loading.mfp-figure {
    display: none;
}

.mfp-hide {
    display: none !important;
}

.mfp-preloader {
    color: #CCC;
    position: absolute;
    top: 50%;
    width: auto;
    text-align: center;
    margin-top: -0.8em;
    left: 8px;
    right: 8px;
    z-index: 1044;
}

.mfp-preloader a {
    color: #CCC;
}

.mfp-preloader a:hover {
    color: #FFF;
}

.mfp-s-ready .mfp-preloader {
    display: none;
}

.mfp-s-error .mfp-content {
    display: none;
}

button.mfp-close, button.mfp-arrow {
    overflow: visible;
    cursor: pointer;
    background: transparent;
    border: 0;
    -webkit-appearance: none;
    display: block;
    outline: none;
    padding: 0;
    z-index: 1046;
    -webkit-box-shadow: none;
            box-shadow: none;
    -ms-touch-action: manipulation;
        touch-action: manipulation;
}

button::-moz-focus-inner {
    padding: 0;
    border: 0;
}

.mfp-close {
    width: 44px;
    height: 44px;
    line-height: 44px;
    position: absolute;
    right: 0;
    top: 0;
    text-decoration: none;
    text-align: center;
    opacity: 0.65;
    padding: 0 0 18px 10px;
    color: #FFF;
    font-style: normal;
    font-size: 28px;
    font-family: Arial, Baskerville, monospace;
}

.mfp-close:hover, .mfp-close:focus {
    opacity: 1;
}

.mfp-close:active {
    top: 1px;
}

.mfp-close-btn-in .mfp-close {
    color: #333;
}

.mfp-image-holder .mfp-close,
.mfp-iframe-holder .mfp-close {
    color: #FFF;
    right: -6px;
    text-align: right;
    padding-right: 6px;
    width: 100%;
}

.mfp-counter {
    position: absolute;
    top: 0;
    right: 0;
    color: #CCC;
    font-size: 12px;
    line-height: 18px;
    white-space: nowrap;
}

.mfp-arrow {
    position: absolute;
    opacity: 0.65;
    margin: 0;
    top: 50%;
    margin-top: -55px;
    padding: 0;
    width: 90px;
    height: 110px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

.mfp-arrow:active {
    margin-top: -54px;
}

.mfp-arrow:hover, .mfp-arrow:focus {
    opacity: 1;
}

.mfp-arrow:before, .mfp-arrow:after {
    content: '';
    display: block;
    width: 0;
    height: 0;
    position: absolute;
    left: 0;
    top: 0;
    margin-top: 35px;
    margin-left: 35px;
    border: medium inset transparent;
}

.mfp-arrow:after {
    border-top-width: 13px;
    border-bottom-width: 13px;
    top: 8px;
}

.mfp-arrow:before {
    border-top-width: 21px;
    border-bottom-width: 21px;
    opacity: 0.7;
}

.mfp-arrow-left {
    left: 0;
}

.mfp-arrow-left:after {
    border-right: 17px solid #FFF;
    margin-left: 31px;
}

.mfp-arrow-left:before {
    margin-left: 25px;
    border-right: 27px solid #3F3F3F;
}

.mfp-arrow-right {
    right: 0;
}

.mfp-arrow-right:after {
    border-left: 17px solid #FFF;
    margin-left: 39px;
}

.mfp-arrow-right:before {
    border-left: 27px solid #3F3F3F;
}

.mfp-iframe-holder {
    padding-top: 40px;
    padding-bottom: 40px;
}

.mfp-iframe-holder .mfp-content {
    line-height: 0;
    width: 100%;
    max-width: 900px;
}

.mfp-iframe-holder .mfp-close {
    top: -40px;
}

.mfp-iframe-scaler {
    width: 100%;
    height: 0;
    overflow: hidden;
    padding-top: 56.25%;
}

.mfp-iframe-scaler iframe {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #000;
}

/* Main image in popup */
img.mfp-img {
    width: auto;
    max-width: 100%;
    height: auto;
    display: block;
    line-height: 0;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 40px 0 40px;
    margin: 0 auto;
}

/* The shadow behind the image */
.mfp-figure {
    line-height: 0;
}

.mfp-figure:after {
    content: '';
    position: absolute;
    left: 0;
    top: 40px;
    bottom: 40px;
    display: block;
    right: 0;
    width: auto;
    height: auto;
    z-index: -1;
    -webkit-box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
            box-shadow: 0 0 8px rgba(0, 0, 0, 0.6);
    background: #444;
}

.mfp-figure small {
    color: #BDBDBD;
    display: block;
    font-size: 12px;
    line-height: 14px;
}

.mfp-figure figure {
    margin: 0;
}

.mfp-bottom-bar {
    margin-top: -36px !important;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    cursor: auto;
}

.mfp-title {
    text-align: left;
    line-height: 18px;
    color: #F3F3F3;
    word-wrap: break-word;
    padding-right: 36px;
}

.mfp-image-holder .mfp-content {
    max-width: 100%;
}

.mfp-gallery .mfp-image-holder .mfp-figure {
    cursor: pointer;
}

@media screen and (max-width: 800px) and (orientation: landscape), screen and (max-height: 300px) {
    /**
             * Remove all paddings around the image on small screen
             */
    .mfp-img-mobile .mfp-image-holder {
        padding-left: 0;
        padding-right: 0;
    }
    .mfp-img-mobile img.mfp-img {
        padding: 0;
    }
    .mfp-img-mobile .mfp-figure:after {
        top: 0;
        bottom: 0;
    }
    .mfp-img-mobile .mfp-figure small {
        display: inline;
        margin-left: 5px;
    }
    .mfp-img-mobile .mfp-bottom-bar {
        background: rgba(0, 0, 0, 0.6);
        bottom: 0;
        margin: 0;
        top: auto;
        padding: 3px 5px;
        position: fixed;
        -webkit-box-sizing: border-box;
                box-sizing: border-box;
    }
    .mfp-img-mobile .mfp-bottom-bar:empty {
        padding: 0;
    }
    .mfp-img-mobile .mfp-counter {
        right: 5px;
        top: 3px;
    }
    .mfp-img-mobile .mfp-close {
        top: 0;
        right: 0;
        width: 35px;
        height: 35px;
        line-height: 35px;
        background: rgba(0, 0, 0, 0.6);
        position: fixed;
        text-align: center;
        padding: 0;
    }
}

@media all and (max-width: 900px) {
    .mfp-arrow {
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }
    .mfp-arrow-left {
        -webkit-transform-origin: 0;
        transform-origin: 0;
    }
    .mfp-arrow-right {
        -webkit-transform-origin: 100%;
        transform-origin: 100%;
    }
    .mfp-container {
        padding-left: 6px;
        padding-right: 6px;
    }
}

.expand-mfp {
    margin-left: 5px;
    position: relative;
    bottom: 35px;
}

.expand-mfp a {
    height: 30px;
    width: 30px;
}

.expand-mfp a span {
    background-color: #0057a0;
}

.expand-mfp a span:hover {
    opacity: 0.7;
}

.expand-mfp a span svg {
    fill: white;
}

@media (max-width: 1024px) {
    .expand-mfp {
        display: none;
    }
}

html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

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

audio,
canvas,
progress,
video {
    display: inline-block;
    vertical-align: baseline;
}

audio:not([controls]) {
    display: none;
    height: 0;
}

[hidden],
template {
    display: none;
}

a {
    background-color: transparent;
}

a:active,
a:hover {
    outline: 0;
}

abbr[title] {
    border-bottom: 1px dotted;
}

b,
strong {
    font-weight: bold;
}

dfn {
    font-style: italic;
}

mark {
    color: #000;
    background: #ff0;
}

small {
    font-size: 80%;
}

sub,
sup {
    vertical-align: baseline;
    position: relative;
    font-size: 75%;
    line-height: 0;
}

sup {
    top: -0.5em;
}

sub {
    bottom: -0.25em;
}

img {
    border: 0;
}

svg:not(:root) {
    overflow: hidden;
}

figure {
    margin: 1em 40px;
}

hr {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    height: 0;
}

pre {
    overflow: auto;
}

code,
kbd,
pre,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

button,
input,
optgroup,
select,
textarea {
    margin: 0;
    font: inherit;
    color: inherit;
}

button {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
    cursor: pointer;
    -webkit-appearance: button;
}

button[disabled],
html input[disabled] {
    cursor: default;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
    padding: 0;
    border: 0;
}

input {
    line-height: normal;
}

input[type="checkbox"],
input[type="radio"] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

input[type="search"] {
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    -webkit-appearance: textfield;
}

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

fieldset {
    margin: 0 2px;
    padding: 0.35em 0.625em 0.75em;
    border: 1px solid #c0c0c0;
}

legend {
    padding: 0;
    border: 0;
}

textarea {
    overflow: auto;
}

optgroup {
    font-weight: bold;
}

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

td,
th {
    padding: 0;
}

/* Slider */
.slick-slider {
    position: relative;
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list {
    position: relative;
    display: block;
    overflow: hidden;
    margin: 0;
    padding: 0;
}

.slick-list:focus {
    outline: none;
}

.slick-list.dragging {
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.slick-track {
    position: relative;
    top: 0;
    left: 0;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.slick-track:before,
.slick-track:after {
    display: table;
    content: '';
}

.slick-track:after {
    clear: both;
}

.slick-loading .slick-track {
    visibility: hidden;
}

.slick-slide {
    display: none;
    float: left;
    height: 100%;
    min-height: 1px;
}

[dir='rtl'] .slick-slide {
    float: right;
}

.slick-slide img {
    display: block;
}

.slick-slide.slick-loading img {
    display: none;
}

.slick-slide.dragging img {
    pointer-events: none;
}

.slick-initialized .slick-slide {
    display: block;
}

.slick-loading .slick-slide {
    visibility: hidden;
}

.slick-vertical .slick-slide {
    display: block;
    height: auto;
    border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
    display: none;
}

/**
 * Foundation for Sites by ZURB
 * Version 6.5.3
 * foundation.zurb.com
 * Licensed under MIT Open Source
 */
/*! normalize.css v8.0.0 | MIT License | github.com/necolas/normalize.css */
html {
    line-height: 1.15;
    -webkit-text-size-adjust: 100%;
}

body {
    margin: 0;
}

h1 {
    font-size: 2em;
    margin: 0.67em 0;
}

hr {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
    height: 0;
    overflow: visible;
}

pre {
    font-family: monospace, monospace;
    font-size: 1em;
}

a {
    background-color: transparent;
}

abbr[title] {
    border-bottom: none;
    text-decoration: underline;
    -webkit-text-decoration: underline dotted;
            text-decoration: underline dotted;
}

b,
strong {
    font-weight: bolder;
}

code,
kbd,
samp {
    font-family: monospace, monospace;
    font-size: 1em;
}

small {
    font-size: 80%;
}

sub,
sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline;
}

sub {
    bottom: -0.25em;
}

sup {
    top: -0.5em;
}

img {
    border-style: none;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
    font-size: 100%;
    line-height: 1.15;
    margin: 0;
}

button,
input {
    overflow: visible;
}

button,
select {
    text-transform: none;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}

button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 1px dotted ButtonText;
}

fieldset {
    padding: 0.35em 0.75em 0.625em;
}

legend {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    color: inherit;
    display: table;
    max-width: 100%;
    padding: 0;
    white-space: normal;
}

progress {
    vertical-align: baseline;
}

textarea {
    overflow: auto;
}

[type="checkbox"],
[type="radio"] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    padding: 0;
}

[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
    height: auto;
}

[type="search"] {
    -webkit-appearance: textfield;
    outline-offset: -2px;
}

[type="search"]::-webkit-search-decoration {
    -webkit-appearance: none;
}

::-webkit-file-upload-button {
    -webkit-appearance: button;
    font: inherit;
}

details {
    display: block;
}

summary {
    display: list-item;
}

template {
    display: none;
}

[hidden] {
    display: none;
}

.foundation-mq {
    font-family: "small=0em&medium=48em&large=64em&xlarge=75em&xxlarge=90em";
}

html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    font-size: 100%;
}

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

body {
    margin: 0;
    padding: 0;
    background: #fefefe;
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    line-height: 1.5;
    color: #0a0a0a;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    display: inline-block;
    vertical-align: middle;
    max-width: 100%;
    height: auto;
    -ms-interpolation-mode: bicubic;
}

textarea {
    height: auto;
    min-height: 50px;
    border-radius: 0;
}

select {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    border-radius: 0;
}

.map_canvas img,
.map_canvas embed,
.map_canvas object,
.mqa-display img,
.mqa-display embed,
.mqa-display object {
    max-width: none !important;
}

button {
    padding: 0;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    border-radius: 0;
    background: transparent;
    line-height: 1;
    cursor: auto;
}

[data-whatinput='mouse'] button {
    outline: 0;
}

pre {
    overflow: auto;
}

button,
input,
optgroup,
select,
textarea {
    font-family: inherit;
}

.is-visible {
    display: block !important;
}

.is-hidden {
    display: none !important;
}

.grid-container {
    padding-right: 1rem;
    padding-left: 1rem;
    max-width: 78.75rem;
    margin-left: auto;
    margin-right: auto;
}

@media print, screen and (min-width: 48em) {
    .grid-container {
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
}

.grid-container.fluid {
    padding-right: 1rem;
    padding-left: 1rem;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

@media print, screen and (min-width: 48em) {
    .grid-container.fluid {
        padding-right: 2.5rem;
        padding-left: 2.5rem;
    }
}

.grid-container.full {
    padding-right: 0;
    padding-left: 0;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.grid-x {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
}

.cell {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    min-height: 0px;
    min-width: 0px;
    width: 100%;
}

.cell.auto {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0px;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
}

.cell.shrink {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}

.grid-x > .auto {
    width: auto;
}

.grid-x > .shrink {
    width: auto;
}

.grid-x > .small-shrink, .grid-x > .small-full, .grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
}

@media print, screen and (min-width: 48em) {
    .grid-x > .medium-shrink, .grid-x > .medium-full, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
        -webkit-flex-basis: auto;
            -ms-flex-preferred-size: auto;
                flex-basis: auto;
    }
}

@media print, screen and (min-width: 64em) {
    .grid-x > .large-shrink, .grid-x > .large-full, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
        -webkit-flex-basis: auto;
            -ms-flex-preferred-size: auto;
                flex-basis: auto;
    }
}

@media screen and (min-width: 75em) {
    .grid-x > .xlarge-shrink, .grid-x > .xlarge-full, .grid-x > .xlarge-1, .grid-x > .xlarge-2, .grid-x > .xlarge-3, .grid-x > .xlarge-4, .grid-x > .xlarge-5, .grid-x > .xlarge-6, .grid-x > .xlarge-7, .grid-x > .xlarge-8, .grid-x > .xlarge-9, .grid-x > .xlarge-10, .grid-x > .xlarge-11, .grid-x > .xlarge-12 {
        -webkit-flex-basis: auto;
            -ms-flex-preferred-size: auto;
                flex-basis: auto;
    }
}

.grid-x > .small-1, .grid-x > .small-2, .grid-x > .small-3, .grid-x > .small-4, .grid-x > .small-5, .grid-x > .small-6, .grid-x > .small-7, .grid-x > .small-8, .grid-x > .small-9, .grid-x > .small-10, .grid-x > .small-11, .grid-x > .small-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}

.grid-x > .small-1 {
    width: 8.33333%;
}

.grid-x > .small-2 {
    width: 16.66667%;
}

.grid-x > .small-3 {
    width: 25%;
}

.grid-x > .small-4 {
    width: 33.33333%;
}

.grid-x > .small-5 {
    width: 41.66667%;
}

.grid-x > .small-6 {
    width: 50%;
}

.grid-x > .small-7 {
    width: 58.33333%;
}

.grid-x > .small-8 {
    width: 66.66667%;
}

.grid-x > .small-9 {
    width: 75%;
}

.grid-x > .small-10 {
    width: 83.33333%;
}

.grid-x > .small-11 {
    width: 91.66667%;
}

.grid-x > .small-12 {
    width: 100%;
}

@media print, screen and (min-width: 48em) {
    .grid-x > .medium-auto {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 0px;
            -ms-flex: 1 1 0px;
                flex: 1 1 0px;
        width: auto;
    }
    .grid-x > .medium-shrink, .grid-x > .medium-1, .grid-x > .medium-2, .grid-x > .medium-3, .grid-x > .medium-4, .grid-x > .medium-5, .grid-x > .medium-6, .grid-x > .medium-7, .grid-x > .medium-8, .grid-x > .medium-9, .grid-x > .medium-10, .grid-x > .medium-11, .grid-x > .medium-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
    }
    .grid-x > .medium-shrink {
        width: auto;
    }
    .grid-x > .medium-1 {
        width: 8.33333%;
    }
    .grid-x > .medium-2 {
        width: 16.66667%;
    }
    .grid-x > .medium-3 {
        width: 25%;
    }
    .grid-x > .medium-4 {
        width: 33.33333%;
    }
    .grid-x > .medium-5 {
        width: 41.66667%;
    }
    .grid-x > .medium-6 {
        width: 50%;
    }
    .grid-x > .medium-7 {
        width: 58.33333%;
    }
    .grid-x > .medium-8 {
        width: 66.66667%;
    }
    .grid-x > .medium-9 {
        width: 75%;
    }
    .grid-x > .medium-10 {
        width: 83.33333%;
    }
    .grid-x > .medium-11 {
        width: 91.66667%;
    }
    .grid-x > .medium-12 {
        width: 100%;
    }
}

@media print, screen and (min-width: 64em) {
    .grid-x > .large-auto {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 0px;
            -ms-flex: 1 1 0px;
                flex: 1 1 0px;
        width: auto;
    }
    .grid-x > .large-shrink, .grid-x > .large-1, .grid-x > .large-2, .grid-x > .large-3, .grid-x > .large-4, .grid-x > .large-5, .grid-x > .large-6, .grid-x > .large-7, .grid-x > .large-8, .grid-x > .large-9, .grid-x > .large-10, .grid-x > .large-11, .grid-x > .large-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
    }
    .grid-x > .large-shrink {
        width: auto;
    }
    .grid-x > .large-1 {
        width: 8.33333%;
    }
    .grid-x > .large-2 {
        width: 16.66667%;
    }
    .grid-x > .large-3 {
        width: 25%;
    }
    .grid-x > .large-4 {
        width: 33.33333%;
    }
    .grid-x > .large-5 {
        width: 41.66667%;
    }
    .grid-x > .large-6 {
        width: 50%;
    }
    .grid-x > .large-7 {
        width: 58.33333%;
    }
    .grid-x > .large-8 {
        width: 66.66667%;
    }
    .grid-x > .large-9 {
        width: 75%;
    }
    .grid-x > .large-10 {
        width: 83.33333%;
    }
    .grid-x > .large-11 {
        width: 91.66667%;
    }
    .grid-x > .large-12 {
        width: 100%;
    }
}

@media screen and (min-width: 75em) {
    .grid-x > .xlarge-auto {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 0px;
            -ms-flex: 1 1 0px;
                flex: 1 1 0px;
        width: auto;
    }
    .grid-x > .xlarge-shrink, .grid-x > .xlarge-1, .grid-x > .xlarge-2, .grid-x > .xlarge-3, .grid-x > .xlarge-4, .grid-x > .xlarge-5, .grid-x > .xlarge-6, .grid-x > .xlarge-7, .grid-x > .xlarge-8, .grid-x > .xlarge-9, .grid-x > .xlarge-10, .grid-x > .xlarge-11, .grid-x > .xlarge-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
    }
    .grid-x > .xlarge-shrink {
        width: auto;
    }
    .grid-x > .xlarge-1 {
        width: 8.33333%;
    }
    .grid-x > .xlarge-2 {
        width: 16.66667%;
    }
    .grid-x > .xlarge-3 {
        width: 25%;
    }
    .grid-x > .xlarge-4 {
        width: 33.33333%;
    }
    .grid-x > .xlarge-5 {
        width: 41.66667%;
    }
    .grid-x > .xlarge-6 {
        width: 50%;
    }
    .grid-x > .xlarge-7 {
        width: 58.33333%;
    }
    .grid-x > .xlarge-8 {
        width: 66.66667%;
    }
    .grid-x > .xlarge-9 {
        width: 75%;
    }
    .grid-x > .xlarge-10 {
        width: 83.33333%;
    }
    .grid-x > .xlarge-11 {
        width: 91.66667%;
    }
    .grid-x > .xlarge-12 {
        width: 100%;
    }
}

.grid-margin-x:not(.grid-x) > .cell {
    width: auto;
}

.grid-margin-y:not(.grid-y) > .cell {
    height: auto;
}

.grid-margin-x {
    margin-left: -1rem;
    margin-right: -1rem;
}

@media print, screen and (min-width: 48em) {
    .grid-margin-x {
        margin-left: -1rem;
        margin-right: -1rem;
    }
}

.grid-margin-x > .cell {
    width: calc(100% - 2rem);
    margin-left: 1rem;
    margin-right: 1rem;
}

@media print, screen and (min-width: 48em) {
    .grid-margin-x > .cell {
        width: calc(100% - 2rem);
        margin-left: 1rem;
        margin-right: 1rem;
    }
}

.grid-margin-x > .auto {
    width: auto;
}

.grid-margin-x > .shrink {
    width: auto;
}

.grid-margin-x > .small-1 {
    width: calc(8.33333% - 2rem);
}

.grid-margin-x > .small-2 {
    width: calc(16.66667% - 2rem);
}

.grid-margin-x > .small-3 {
    width: calc(25% - 2rem);
}

.grid-margin-x > .small-4 {
    width: calc(33.33333% - 2rem);
}

.grid-margin-x > .small-5 {
    width: calc(41.66667% - 2rem);
}

.grid-margin-x > .small-6 {
    width: calc(50% - 2rem);
}

.grid-margin-x > .small-7 {
    width: calc(58.33333% - 2rem);
}

.grid-margin-x > .small-8 {
    width: calc(66.66667% - 2rem);
}

.grid-margin-x > .small-9 {
    width: calc(75% - 2rem);
}

.grid-margin-x > .small-10 {
    width: calc(83.33333% - 2rem);
}

.grid-margin-x > .small-11 {
    width: calc(91.66667% - 2rem);
}

.grid-margin-x > .small-12 {
    width: calc(100% - 2rem);
}

@media print, screen and (min-width: 48em) {
    .grid-margin-x > .auto {
        width: auto;
    }
    .grid-margin-x > .shrink {
        width: auto;
    }
    .grid-margin-x > .small-1 {
        width: calc(8.33333% - 2rem);
    }
    .grid-margin-x > .small-2 {
        width: calc(16.66667% - 2rem);
    }
    .grid-margin-x > .small-3 {
        width: calc(25% - 2rem);
    }
    .grid-margin-x > .small-4 {
        width: calc(33.33333% - 2rem);
    }
    .grid-margin-x > .small-5 {
        width: calc(41.66667% - 2rem);
    }
    .grid-margin-x > .small-6 {
        width: calc(50% - 2rem);
    }
    .grid-margin-x > .small-7 {
        width: calc(58.33333% - 2rem);
    }
    .grid-margin-x > .small-8 {
        width: calc(66.66667% - 2rem);
    }
    .grid-margin-x > .small-9 {
        width: calc(75% - 2rem);
    }
    .grid-margin-x > .small-10 {
        width: calc(83.33333% - 2rem);
    }
    .grid-margin-x > .small-11 {
        width: calc(91.66667% - 2rem);
    }
    .grid-margin-x > .small-12 {
        width: calc(100% - 2rem);
    }
    .grid-margin-x > .medium-auto {
        width: auto;
    }
    .grid-margin-x > .medium-shrink {
        width: auto;
    }
    .grid-margin-x > .medium-1 {
        width: calc(8.33333% - 2rem);
    }
    .grid-margin-x > .medium-2 {
        width: calc(16.66667% - 2rem);
    }
    .grid-margin-x > .medium-3 {
        width: calc(25% - 2rem);
    }
    .grid-margin-x > .medium-4 {
        width: calc(33.33333% - 2rem);
    }
    .grid-margin-x > .medium-5 {
        width: calc(41.66667% - 2rem);
    }
    .grid-margin-x > .medium-6 {
        width: calc(50% - 2rem);
    }
    .grid-margin-x > .medium-7 {
        width: calc(58.33333% - 2rem);
    }
    .grid-margin-x > .medium-8 {
        width: calc(66.66667% - 2rem);
    }
    .grid-margin-x > .medium-9 {
        width: calc(75% - 2rem);
    }
    .grid-margin-x > .medium-10 {
        width: calc(83.33333% - 2rem);
    }
    .grid-margin-x > .medium-11 {
        width: calc(91.66667% - 2rem);
    }
    .grid-margin-x > .medium-12 {
        width: calc(100% - 2rem);
    }
}

@media print, screen and (min-width: 64em) {
    .grid-margin-x > .large-auto {
        width: auto;
    }
    .grid-margin-x > .large-shrink {
        width: auto;
    }
    .grid-margin-x > .large-1 {
        width: calc(8.33333% - 2rem);
    }
    .grid-margin-x > .large-2 {
        width: calc(16.66667% - 2rem);
    }
    .grid-margin-x > .large-3 {
        width: calc(25% - 2rem);
    }
    .grid-margin-x > .large-4 {
        width: calc(33.33333% - 2rem);
    }
    .grid-margin-x > .large-5 {
        width: calc(41.66667% - 2rem);
    }
    .grid-margin-x > .large-6 {
        width: calc(50% - 2rem);
    }
    .grid-margin-x > .large-7 {
        width: calc(58.33333% - 2rem);
    }
    .grid-margin-x > .large-8 {
        width: calc(66.66667% - 2rem);
    }
    .grid-margin-x > .large-9 {
        width: calc(75% - 2rem);
    }
    .grid-margin-x > .large-10 {
        width: calc(83.33333% - 2rem);
    }
    .grid-margin-x > .large-11 {
        width: calc(91.66667% - 2rem);
    }
    .grid-margin-x > .large-12 {
        width: calc(100% - 2rem);
    }
}

@media screen and (min-width: 75em) {
    .grid-margin-x > .xlarge-auto {
        width: auto;
    }
    .grid-margin-x > .xlarge-shrink {
        width: auto;
    }
    .grid-margin-x > .xlarge-1 {
        width: calc(8.33333% - 2rem);
    }
    .grid-margin-x > .xlarge-2 {
        width: calc(16.66667% - 2rem);
    }
    .grid-margin-x > .xlarge-3 {
        width: calc(25% - 2rem);
    }
    .grid-margin-x > .xlarge-4 {
        width: calc(33.33333% - 2rem);
    }
    .grid-margin-x > .xlarge-5 {
        width: calc(41.66667% - 2rem);
    }
    .grid-margin-x > .xlarge-6 {
        width: calc(50% - 2rem);
    }
    .grid-margin-x > .xlarge-7 {
        width: calc(58.33333% - 2rem);
    }
    .grid-margin-x > .xlarge-8 {
        width: calc(66.66667% - 2rem);
    }
    .grid-margin-x > .xlarge-9 {
        width: calc(75% - 2rem);
    }
    .grid-margin-x > .xlarge-10 {
        width: calc(83.33333% - 2rem);
    }
    .grid-margin-x > .xlarge-11 {
        width: calc(91.66667% - 2rem);
    }
    .grid-margin-x > .xlarge-12 {
        width: calc(100% - 2rem);
    }
}

.grid-padding-x .grid-padding-x {
    margin-right: -1rem;
    margin-left: -1rem;
}

@media print, screen and (min-width: 48em) {
    .grid-padding-x .grid-padding-x {
        margin-right: -1rem;
        margin-left: -1rem;
    }
}

.grid-container:not(.full) > .grid-padding-x {
    margin-right: -1rem;
    margin-left: -1rem;
}

@media print, screen and (min-width: 48em) {
    .grid-container:not(.full) > .grid-padding-x {
        margin-right: -1rem;
        margin-left: -1rem;
    }
}

.grid-padding-x > .cell {
    padding-right: 1rem;
    padding-left: 1rem;
}

@media print, screen and (min-width: 48em) {
    .grid-padding-x > .cell {
        padding-right: 1rem;
        padding-left: 1rem;
    }
}

.small-up-1 > .cell {
    width: 100%;
}

.small-up-2 > .cell {
    width: 50%;
}

.small-up-3 > .cell {
    width: 33.33333%;
}

.small-up-4 > .cell {
    width: 25%;
}

.small-up-5 > .cell {
    width: 20%;
}

.small-up-6 > .cell {
    width: 16.66667%;
}

.small-up-7 > .cell {
    width: 14.28571%;
}

.small-up-8 > .cell {
    width: 12.5%;
}

@media print, screen and (min-width: 48em) {
    .medium-up-1 > .cell {
        width: 100%;
    }
    .medium-up-2 > .cell {
        width: 50%;
    }
    .medium-up-3 > .cell {
        width: 33.33333%;
    }
    .medium-up-4 > .cell {
        width: 25%;
    }
    .medium-up-5 > .cell {
        width: 20%;
    }
    .medium-up-6 > .cell {
        width: 16.66667%;
    }
    .medium-up-7 > .cell {
        width: 14.28571%;
    }
    .medium-up-8 > .cell {
        width: 12.5%;
    }
}

@media print, screen and (min-width: 64em) {
    .large-up-1 > .cell {
        width: 100%;
    }
    .large-up-2 > .cell {
        width: 50%;
    }
    .large-up-3 > .cell {
        width: 33.33333%;
    }
    .large-up-4 > .cell {
        width: 25%;
    }
    .large-up-5 > .cell {
        width: 20%;
    }
    .large-up-6 > .cell {
        width: 16.66667%;
    }
    .large-up-7 > .cell {
        width: 14.28571%;
    }
    .large-up-8 > .cell {
        width: 12.5%;
    }
}

@media screen and (min-width: 75em) {
    .xlarge-up-1 > .cell {
        width: 100%;
    }
    .xlarge-up-2 > .cell {
        width: 50%;
    }
    .xlarge-up-3 > .cell {
        width: 33.33333%;
    }
    .xlarge-up-4 > .cell {
        width: 25%;
    }
    .xlarge-up-5 > .cell {
        width: 20%;
    }
    .xlarge-up-6 > .cell {
        width: 16.66667%;
    }
    .xlarge-up-7 > .cell {
        width: 14.28571%;
    }
    .xlarge-up-8 > .cell {
        width: 12.5%;
    }
}

.grid-margin-x.small-up-1 > .cell {
    width: calc(100% - 2rem);
}

.grid-margin-x.small-up-2 > .cell {
    width: calc(50% - 2rem);
}

.grid-margin-x.small-up-3 > .cell {
    width: calc(33.33333% - 2rem);
}

.grid-margin-x.small-up-4 > .cell {
    width: calc(25% - 2rem);
}

.grid-margin-x.small-up-5 > .cell {
    width: calc(20% - 2rem);
}

.grid-margin-x.small-up-6 > .cell {
    width: calc(16.66667% - 2rem);
}

.grid-margin-x.small-up-7 > .cell {
    width: calc(14.28571% - 2rem);
}

.grid-margin-x.small-up-8 > .cell {
    width: calc(12.5% - 2rem);
}

@media print, screen and (min-width: 48em) {
    .grid-margin-x.small-up-1 > .cell {
        width: calc(100% - 2rem);
    }
    .grid-margin-x.small-up-2 > .cell {
        width: calc(50% - 2rem);
    }
    .grid-margin-x.small-up-3 > .cell {
        width: calc(33.33333% - 2rem);
    }
    .grid-margin-x.small-up-4 > .cell {
        width: calc(25% - 2rem);
    }
    .grid-margin-x.small-up-5 > .cell {
        width: calc(20% - 2rem);
    }
    .grid-margin-x.small-up-6 > .cell {
        width: calc(16.66667% - 2rem);
    }
    .grid-margin-x.small-up-7 > .cell {
        width: calc(14.28571% - 2rem);
    }
    .grid-margin-x.small-up-8 > .cell {
        width: calc(12.5% - 2rem);
    }
    .grid-margin-x.medium-up-1 > .cell {
        width: calc(100% - 2rem);
    }
    .grid-margin-x.medium-up-2 > .cell {
        width: calc(50% - 2rem);
    }
    .grid-margin-x.medium-up-3 > .cell {
        width: calc(33.33333% - 2rem);
    }
    .grid-margin-x.medium-up-4 > .cell {
        width: calc(25% - 2rem);
    }
    .grid-margin-x.medium-up-5 > .cell {
        width: calc(20% - 2rem);
    }
    .grid-margin-x.medium-up-6 > .cell {
        width: calc(16.66667% - 2rem);
    }
    .grid-margin-x.medium-up-7 > .cell {
        width: calc(14.28571% - 2rem);
    }
    .grid-margin-x.medium-up-8 > .cell {
        width: calc(12.5% - 2rem);
    }
}

@media print, screen and (min-width: 64em) {
    .grid-margin-x.large-up-1 > .cell {
        width: calc(100% - 2rem);
    }
    .grid-margin-x.large-up-2 > .cell {
        width: calc(50% - 2rem);
    }
    .grid-margin-x.large-up-3 > .cell {
        width: calc(33.33333% - 2rem);
    }
    .grid-margin-x.large-up-4 > .cell {
        width: calc(25% - 2rem);
    }
    .grid-margin-x.large-up-5 > .cell {
        width: calc(20% - 2rem);
    }
    .grid-margin-x.large-up-6 > .cell {
        width: calc(16.66667% - 2rem);
    }
    .grid-margin-x.large-up-7 > .cell {
        width: calc(14.28571% - 2rem);
    }
    .grid-margin-x.large-up-8 > .cell {
        width: calc(12.5% - 2rem);
    }
}

@media screen and (min-width: 75em) {
    .grid-margin-x.xlarge-up-1 > .cell {
        width: calc(100% - 2rem);
    }
    .grid-margin-x.xlarge-up-2 > .cell {
        width: calc(50% - 2rem);
    }
    .grid-margin-x.xlarge-up-3 > .cell {
        width: calc(33.33333% - 2rem);
    }
    .grid-margin-x.xlarge-up-4 > .cell {
        width: calc(25% - 2rem);
    }
    .grid-margin-x.xlarge-up-5 > .cell {
        width: calc(20% - 2rem);
    }
    .grid-margin-x.xlarge-up-6 > .cell {
        width: calc(16.66667% - 2rem);
    }
    .grid-margin-x.xlarge-up-7 > .cell {
        width: calc(14.28571% - 2rem);
    }
    .grid-margin-x.xlarge-up-8 > .cell {
        width: calc(12.5% - 2rem);
    }
}

.small-margin-collapse {
    margin-right: 0;
    margin-left: 0;
}

.small-margin-collapse > .cell {
    margin-right: 0;
    margin-left: 0;
}

.small-margin-collapse > .small-1 {
    width: 8.33333%;
}

.small-margin-collapse > .small-2 {
    width: 16.66667%;
}

.small-margin-collapse > .small-3 {
    width: 25%;
}

.small-margin-collapse > .small-4 {
    width: 33.33333%;
}

.small-margin-collapse > .small-5 {
    width: 41.66667%;
}

.small-margin-collapse > .small-6 {
    width: 50%;
}

.small-margin-collapse > .small-7 {
    width: 58.33333%;
}

.small-margin-collapse > .small-8 {
    width: 66.66667%;
}

.small-margin-collapse > .small-9 {
    width: 75%;
}

.small-margin-collapse > .small-10 {
    width: 83.33333%;
}

.small-margin-collapse > .small-11 {
    width: 91.66667%;
}

.small-margin-collapse > .small-12 {
    width: 100%;
}

@media print, screen and (min-width: 48em) {
    .small-margin-collapse > .medium-1 {
        width: 8.33333%;
    }
    .small-margin-collapse > .medium-2 {
        width: 16.66667%;
    }
    .small-margin-collapse > .medium-3 {
        width: 25%;
    }
    .small-margin-collapse > .medium-4 {
        width: 33.33333%;
    }
    .small-margin-collapse > .medium-5 {
        width: 41.66667%;
    }
    .small-margin-collapse > .medium-6 {
        width: 50%;
    }
    .small-margin-collapse > .medium-7 {
        width: 58.33333%;
    }
    .small-margin-collapse > .medium-8 {
        width: 66.66667%;
    }
    .small-margin-collapse > .medium-9 {
        width: 75%;
    }
    .small-margin-collapse > .medium-10 {
        width: 83.33333%;
    }
    .small-margin-collapse > .medium-11 {
        width: 91.66667%;
    }
    .small-margin-collapse > .medium-12 {
        width: 100%;
    }
}

@media print, screen and (min-width: 64em) {
    .small-margin-collapse > .large-1 {
        width: 8.33333%;
    }
    .small-margin-collapse > .large-2 {
        width: 16.66667%;
    }
    .small-margin-collapse > .large-3 {
        width: 25%;
    }
    .small-margin-collapse > .large-4 {
        width: 33.33333%;
    }
    .small-margin-collapse > .large-5 {
        width: 41.66667%;
    }
    .small-margin-collapse > .large-6 {
        width: 50%;
    }
    .small-margin-collapse > .large-7 {
        width: 58.33333%;
    }
    .small-margin-collapse > .large-8 {
        width: 66.66667%;
    }
    .small-margin-collapse > .large-9 {
        width: 75%;
    }
    .small-margin-collapse > .large-10 {
        width: 83.33333%;
    }
    .small-margin-collapse > .large-11 {
        width: 91.66667%;
    }
    .small-margin-collapse > .large-12 {
        width: 100%;
    }
}

@media screen and (min-width: 75em) {
    .small-margin-collapse > .xlarge-1 {
        width: 8.33333%;
    }
    .small-margin-collapse > .xlarge-2 {
        width: 16.66667%;
    }
    .small-margin-collapse > .xlarge-3 {
        width: 25%;
    }
    .small-margin-collapse > .xlarge-4 {
        width: 33.33333%;
    }
    .small-margin-collapse > .xlarge-5 {
        width: 41.66667%;
    }
    .small-margin-collapse > .xlarge-6 {
        width: 50%;
    }
    .small-margin-collapse > .xlarge-7 {
        width: 58.33333%;
    }
    .small-margin-collapse > .xlarge-8 {
        width: 66.66667%;
    }
    .small-margin-collapse > .xlarge-9 {
        width: 75%;
    }
    .small-margin-collapse > .xlarge-10 {
        width: 83.33333%;
    }
    .small-margin-collapse > .xlarge-11 {
        width: 91.66667%;
    }
    .small-margin-collapse > .xlarge-12 {
        width: 100%;
    }
}

.small-padding-collapse {
    margin-right: 0;
    margin-left: 0;
}

.small-padding-collapse > .cell {
    padding-right: 0;
    padding-left: 0;
}

@media print, screen and (min-width: 48em) {
    .medium-margin-collapse {
        margin-right: 0;
        margin-left: 0;
    }
    .medium-margin-collapse > .cell {
        margin-right: 0;
        margin-left: 0;
    }
}

@media print, screen and (min-width: 48em) {
    .medium-margin-collapse > .small-1 {
        width: 8.33333%;
    }
    .medium-margin-collapse > .small-2 {
        width: 16.66667%;
    }
    .medium-margin-collapse > .small-3 {
        width: 25%;
    }
    .medium-margin-collapse > .small-4 {
        width: 33.33333%;
    }
    .medium-margin-collapse > .small-5 {
        width: 41.66667%;
    }
    .medium-margin-collapse > .small-6 {
        width: 50%;
    }
    .medium-margin-collapse > .small-7 {
        width: 58.33333%;
    }
    .medium-margin-collapse > .small-8 {
        width: 66.66667%;
    }
    .medium-margin-collapse > .small-9 {
        width: 75%;
    }
    .medium-margin-collapse > .small-10 {
        width: 83.33333%;
    }
    .medium-margin-collapse > .small-11 {
        width: 91.66667%;
    }
    .medium-margin-collapse > .small-12 {
        width: 100%;
    }
}

@media print, screen and (min-width: 48em) {
    .medium-margin-collapse > .medium-1 {
        width: 8.33333%;
    }
    .medium-margin-collapse > .medium-2 {
        width: 16.66667%;
    }
    .medium-margin-collapse > .medium-3 {
        width: 25%;
    }
    .medium-margin-collapse > .medium-4 {
        width: 33.33333%;
    }
    .medium-margin-collapse > .medium-5 {
        width: 41.66667%;
    }
    .medium-margin-collapse > .medium-6 {
        width: 50%;
    }
    .medium-margin-collapse > .medium-7 {
        width: 58.33333%;
    }
    .medium-margin-collapse > .medium-8 {
        width: 66.66667%;
    }
    .medium-margin-collapse > .medium-9 {
        width: 75%;
    }
    .medium-margin-collapse > .medium-10 {
        width: 83.33333%;
    }
    .medium-margin-collapse > .medium-11 {
        width: 91.66667%;
    }
    .medium-margin-collapse > .medium-12 {
        width: 100%;
    }
}

@media print, screen and (min-width: 64em) {
    .medium-margin-collapse > .large-1 {
        width: 8.33333%;
    }
    .medium-margin-collapse > .large-2 {
        width: 16.66667%;
    }
    .medium-margin-collapse > .large-3 {
        width: 25%;
    }
    .medium-margin-collapse > .large-4 {
        width: 33.33333%;
    }
    .medium-margin-collapse > .large-5 {
        width: 41.66667%;
    }
    .medium-margin-collapse > .large-6 {
        width: 50%;
    }
    .medium-margin-collapse > .large-7 {
        width: 58.33333%;
    }
    .medium-margin-collapse > .large-8 {
        width: 66.66667%;
    }
    .medium-margin-collapse > .large-9 {
        width: 75%;
    }
    .medium-margin-collapse > .large-10 {
        width: 83.33333%;
    }
    .medium-margin-collapse > .large-11 {
        width: 91.66667%;
    }
    .medium-margin-collapse > .large-12 {
        width: 100%;
    }
}

@media screen and (min-width: 75em) {
    .medium-margin-collapse > .xlarge-1 {
        width: 8.33333%;
    }
    .medium-margin-collapse > .xlarge-2 {
        width: 16.66667%;
    }
    .medium-margin-collapse > .xlarge-3 {
        width: 25%;
    }
    .medium-margin-collapse > .xlarge-4 {
        width: 33.33333%;
    }
    .medium-margin-collapse > .xlarge-5 {
        width: 41.66667%;
    }
    .medium-margin-collapse > .xlarge-6 {
        width: 50%;
    }
    .medium-margin-collapse > .xlarge-7 {
        width: 58.33333%;
    }
    .medium-margin-collapse > .xlarge-8 {
        width: 66.66667%;
    }
    .medium-margin-collapse > .xlarge-9 {
        width: 75%;
    }
    .medium-margin-collapse > .xlarge-10 {
        width: 83.33333%;
    }
    .medium-margin-collapse > .xlarge-11 {
        width: 91.66667%;
    }
    .medium-margin-collapse > .xlarge-12 {
        width: 100%;
    }
}

@media print, screen and (min-width: 48em) {
    .medium-padding-collapse {
        margin-right: 0;
        margin-left: 0;
    }
    .medium-padding-collapse > .cell {
        padding-right: 0;
        padding-left: 0;
    }
}

@media print, screen and (min-width: 64em) {
    .large-margin-collapse {
        margin-right: 0;
        margin-left: 0;
    }
    .large-margin-collapse > .cell {
        margin-right: 0;
        margin-left: 0;
    }
}

@media print, screen and (min-width: 64em) {
    .large-margin-collapse > .small-1 {
        width: 8.33333%;
    }
    .large-margin-collapse > .small-2 {
        width: 16.66667%;
    }
    .large-margin-collapse > .small-3 {
        width: 25%;
    }
    .large-margin-collapse > .small-4 {
        width: 33.33333%;
    }
    .large-margin-collapse > .small-5 {
        width: 41.66667%;
    }
    .large-margin-collapse > .small-6 {
        width: 50%;
    }
    .large-margin-collapse > .small-7 {
        width: 58.33333%;
    }
    .large-margin-collapse > .small-8 {
        width: 66.66667%;
    }
    .large-margin-collapse > .small-9 {
        width: 75%;
    }
    .large-margin-collapse > .small-10 {
        width: 83.33333%;
    }
    .large-margin-collapse > .small-11 {
        width: 91.66667%;
    }
    .large-margin-collapse > .small-12 {
        width: 100%;
    }
}

@media print, screen and (min-width: 64em) {
    .large-margin-collapse > .medium-1 {
        width: 8.33333%;
    }
    .large-margin-collapse > .medium-2 {
        width: 16.66667%;
    }
    .large-margin-collapse > .medium-3 {
        width: 25%;
    }
    .large-margin-collapse > .medium-4 {
        width: 33.33333%;
    }
    .large-margin-collapse > .medium-5 {
        width: 41.66667%;
    }
    .large-margin-collapse > .medium-6 {
        width: 50%;
    }
    .large-margin-collapse > .medium-7 {
        width: 58.33333%;
    }
    .large-margin-collapse > .medium-8 {
        width: 66.66667%;
    }
    .large-margin-collapse > .medium-9 {
        width: 75%;
    }
    .large-margin-collapse > .medium-10 {
        width: 83.33333%;
    }
    .large-margin-collapse > .medium-11 {
        width: 91.66667%;
    }
    .large-margin-collapse > .medium-12 {
        width: 100%;
    }
}

@media print, screen and (min-width: 64em) {
    .large-margin-collapse > .large-1 {
        width: 8.33333%;
    }
    .large-margin-collapse > .large-2 {
        width: 16.66667%;
    }
    .large-margin-collapse > .large-3 {
        width: 25%;
    }
    .large-margin-collapse > .large-4 {
        width: 33.33333%;
    }
    .large-margin-collapse > .large-5 {
        width: 41.66667%;
    }
    .large-margin-collapse > .large-6 {
        width: 50%;
    }
    .large-margin-collapse > .large-7 {
        width: 58.33333%;
    }
    .large-margin-collapse > .large-8 {
        width: 66.66667%;
    }
    .large-margin-collapse > .large-9 {
        width: 75%;
    }
    .large-margin-collapse > .large-10 {
        width: 83.33333%;
    }
    .large-margin-collapse > .large-11 {
        width: 91.66667%;
    }
    .large-margin-collapse > .large-12 {
        width: 100%;
    }
}

@media screen and (min-width: 75em) {
    .large-margin-collapse > .xlarge-1 {
        width: 8.33333%;
    }
    .large-margin-collapse > .xlarge-2 {
        width: 16.66667%;
    }
    .large-margin-collapse > .xlarge-3 {
        width: 25%;
    }
    .large-margin-collapse > .xlarge-4 {
        width: 33.33333%;
    }
    .large-margin-collapse > .xlarge-5 {
        width: 41.66667%;
    }
    .large-margin-collapse > .xlarge-6 {
        width: 50%;
    }
    .large-margin-collapse > .xlarge-7 {
        width: 58.33333%;
    }
    .large-margin-collapse > .xlarge-8 {
        width: 66.66667%;
    }
    .large-margin-collapse > .xlarge-9 {
        width: 75%;
    }
    .large-margin-collapse > .xlarge-10 {
        width: 83.33333%;
    }
    .large-margin-collapse > .xlarge-11 {
        width: 91.66667%;
    }
    .large-margin-collapse > .xlarge-12 {
        width: 100%;
    }
}

@media print, screen and (min-width: 64em) {
    .large-padding-collapse {
        margin-right: 0;
        margin-left: 0;
    }
    .large-padding-collapse > .cell {
        padding-right: 0;
        padding-left: 0;
    }
}

@media screen and (min-width: 75em) {
    .xlarge-margin-collapse {
        margin-right: 0;
        margin-left: 0;
    }
    .xlarge-margin-collapse > .cell {
        margin-right: 0;
        margin-left: 0;
    }
}

@media screen and (min-width: 75em) {
    .xlarge-margin-collapse > .small-1 {
        width: 8.33333%;
    }
    .xlarge-margin-collapse > .small-2 {
        width: 16.66667%;
    }
    .xlarge-margin-collapse > .small-3 {
        width: 25%;
    }
    .xlarge-margin-collapse > .small-4 {
        width: 33.33333%;
    }
    .xlarge-margin-collapse > .small-5 {
        width: 41.66667%;
    }
    .xlarge-margin-collapse > .small-6 {
        width: 50%;
    }
    .xlarge-margin-collapse > .small-7 {
        width: 58.33333%;
    }
    .xlarge-margin-collapse > .small-8 {
        width: 66.66667%;
    }
    .xlarge-margin-collapse > .small-9 {
        width: 75%;
    }
    .xlarge-margin-collapse > .small-10 {
        width: 83.33333%;
    }
    .xlarge-margin-collapse > .small-11 {
        width: 91.66667%;
    }
    .xlarge-margin-collapse > .small-12 {
        width: 100%;
    }
}

@media screen and (min-width: 75em) {
    .xlarge-margin-collapse > .medium-1 {
        width: 8.33333%;
    }
    .xlarge-margin-collapse > .medium-2 {
        width: 16.66667%;
    }
    .xlarge-margin-collapse > .medium-3 {
        width: 25%;
    }
    .xlarge-margin-collapse > .medium-4 {
        width: 33.33333%;
    }
    .xlarge-margin-collapse > .medium-5 {
        width: 41.66667%;
    }
    .xlarge-margin-collapse > .medium-6 {
        width: 50%;
    }
    .xlarge-margin-collapse > .medium-7 {
        width: 58.33333%;
    }
    .xlarge-margin-collapse > .medium-8 {
        width: 66.66667%;
    }
    .xlarge-margin-collapse > .medium-9 {
        width: 75%;
    }
    .xlarge-margin-collapse > .medium-10 {
        width: 83.33333%;
    }
    .xlarge-margin-collapse > .medium-11 {
        width: 91.66667%;
    }
    .xlarge-margin-collapse > .medium-12 {
        width: 100%;
    }
}

@media screen and (min-width: 75em) {
    .xlarge-margin-collapse > .large-1 {
        width: 8.33333%;
    }
    .xlarge-margin-collapse > .large-2 {
        width: 16.66667%;
    }
    .xlarge-margin-collapse > .large-3 {
        width: 25%;
    }
    .xlarge-margin-collapse > .large-4 {
        width: 33.33333%;
    }
    .xlarge-margin-collapse > .large-5 {
        width: 41.66667%;
    }
    .xlarge-margin-collapse > .large-6 {
        width: 50%;
    }
    .xlarge-margin-collapse > .large-7 {
        width: 58.33333%;
    }
    .xlarge-margin-collapse > .large-8 {
        width: 66.66667%;
    }
    .xlarge-margin-collapse > .large-9 {
        width: 75%;
    }
    .xlarge-margin-collapse > .large-10 {
        width: 83.33333%;
    }
    .xlarge-margin-collapse > .large-11 {
        width: 91.66667%;
    }
    .xlarge-margin-collapse > .large-12 {
        width: 100%;
    }
}

@media screen and (min-width: 75em) {
    .xlarge-margin-collapse > .xlarge-1 {
        width: 8.33333%;
    }
    .xlarge-margin-collapse > .xlarge-2 {
        width: 16.66667%;
    }
    .xlarge-margin-collapse > .xlarge-3 {
        width: 25%;
    }
    .xlarge-margin-collapse > .xlarge-4 {
        width: 33.33333%;
    }
    .xlarge-margin-collapse > .xlarge-5 {
        width: 41.66667%;
    }
    .xlarge-margin-collapse > .xlarge-6 {
        width: 50%;
    }
    .xlarge-margin-collapse > .xlarge-7 {
        width: 58.33333%;
    }
    .xlarge-margin-collapse > .xlarge-8 {
        width: 66.66667%;
    }
    .xlarge-margin-collapse > .xlarge-9 {
        width: 75%;
    }
    .xlarge-margin-collapse > .xlarge-10 {
        width: 83.33333%;
    }
    .xlarge-margin-collapse > .xlarge-11 {
        width: 91.66667%;
    }
    .xlarge-margin-collapse > .xlarge-12 {
        width: 100%;
    }
}

@media screen and (min-width: 75em) {
    .xlarge-padding-collapse {
        margin-right: 0;
        margin-left: 0;
    }
    .xlarge-padding-collapse > .cell {
        padding-right: 0;
        padding-left: 0;
    }
}

.small-offset-0 {
    margin-left: 0%;
}

.grid-margin-x > .small-offset-0 {
    margin-left: calc(0% + 1rem);
}

.small-offset-1 {
    margin-left: 8.33333%;
}

.grid-margin-x > .small-offset-1 {
    margin-left: calc(8.33333% + 1rem);
}

.small-offset-2 {
    margin-left: 16.66667%;
}

.grid-margin-x > .small-offset-2 {
    margin-left: calc(16.66667% + 1rem);
}

.small-offset-3 {
    margin-left: 25%;
}

.grid-margin-x > .small-offset-3 {
    margin-left: calc(25% + 1rem);
}

.small-offset-4 {
    margin-left: 33.33333%;
}

.grid-margin-x > .small-offset-4 {
    margin-left: calc(33.33333% + 1rem);
}

.small-offset-5 {
    margin-left: 41.66667%;
}

.grid-margin-x > .small-offset-5 {
    margin-left: calc(41.66667% + 1rem);
}

.small-offset-6 {
    margin-left: 50%;
}

.grid-margin-x > .small-offset-6 {
    margin-left: calc(50% + 1rem);
}

.small-offset-7 {
    margin-left: 58.33333%;
}

.grid-margin-x > .small-offset-7 {
    margin-left: calc(58.33333% + 1rem);
}

.small-offset-8 {
    margin-left: 66.66667%;
}

.grid-margin-x > .small-offset-8 {
    margin-left: calc(66.66667% + 1rem);
}

.small-offset-9 {
    margin-left: 75%;
}

.grid-margin-x > .small-offset-9 {
    margin-left: calc(75% + 1rem);
}

.small-offset-10 {
    margin-left: 83.33333%;
}

.grid-margin-x > .small-offset-10 {
    margin-left: calc(83.33333% + 1rem);
}

.small-offset-11 {
    margin-left: 91.66667%;
}

.grid-margin-x > .small-offset-11 {
    margin-left: calc(91.66667% + 1rem);
}

@media print, screen and (min-width: 48em) {
    .medium-offset-0 {
        margin-left: 0%;
    }
    .grid-margin-x > .medium-offset-0 {
        margin-left: calc(0% + 1rem);
    }
    .medium-offset-1 {
        margin-left: 8.33333%;
    }
    .grid-margin-x > .medium-offset-1 {
        margin-left: calc(8.33333% + 1rem);
    }
    .medium-offset-2 {
        margin-left: 16.66667%;
    }
    .grid-margin-x > .medium-offset-2 {
        margin-left: calc(16.66667% + 1rem);
    }
    .medium-offset-3 {
        margin-left: 25%;
    }
    .grid-margin-x > .medium-offset-3 {
        margin-left: calc(25% + 1rem);
    }
    .medium-offset-4 {
        margin-left: 33.33333%;
    }
    .grid-margin-x > .medium-offset-4 {
        margin-left: calc(33.33333% + 1rem);
    }
    .medium-offset-5 {
        margin-left: 41.66667%;
    }
    .grid-margin-x > .medium-offset-5 {
        margin-left: calc(41.66667% + 1rem);
    }
    .medium-offset-6 {
        margin-left: 50%;
    }
    .grid-margin-x > .medium-offset-6 {
        margin-left: calc(50% + 1rem);
    }
    .medium-offset-7 {
        margin-left: 58.33333%;
    }
    .grid-margin-x > .medium-offset-7 {
        margin-left: calc(58.33333% + 1rem);
    }
    .medium-offset-8 {
        margin-left: 66.66667%;
    }
    .grid-margin-x > .medium-offset-8 {
        margin-left: calc(66.66667% + 1rem);
    }
    .medium-offset-9 {
        margin-left: 75%;
    }
    .grid-margin-x > .medium-offset-9 {
        margin-left: calc(75% + 1rem);
    }
    .medium-offset-10 {
        margin-left: 83.33333%;
    }
    .grid-margin-x > .medium-offset-10 {
        margin-left: calc(83.33333% + 1rem);
    }
    .medium-offset-11 {
        margin-left: 91.66667%;
    }
    .grid-margin-x > .medium-offset-11 {
        margin-left: calc(91.66667% + 1rem);
    }
}

@media print, screen and (min-width: 64em) {
    .large-offset-0 {
        margin-left: 0%;
    }
    .grid-margin-x > .large-offset-0 {
        margin-left: calc(0% + 1rem);
    }
    .large-offset-1 {
        margin-left: 8.33333%;
    }
    .grid-margin-x > .large-offset-1 {
        margin-left: calc(8.33333% + 1rem);
    }
    .large-offset-2 {
        margin-left: 16.66667%;
    }
    .grid-margin-x > .large-offset-2 {
        margin-left: calc(16.66667% + 1rem);
    }
    .large-offset-3 {
        margin-left: 25%;
    }
    .grid-margin-x > .large-offset-3 {
        margin-left: calc(25% + 1rem);
    }
    .large-offset-4 {
        margin-left: 33.33333%;
    }
    .grid-margin-x > .large-offset-4 {
        margin-left: calc(33.33333% + 1rem);
    }
    .large-offset-5 {
        margin-left: 41.66667%;
    }
    .grid-margin-x > .large-offset-5 {
        margin-left: calc(41.66667% + 1rem);
    }
    .large-offset-6 {
        margin-left: 50%;
    }
    .grid-margin-x > .large-offset-6 {
        margin-left: calc(50% + 1rem);
    }
    .large-offset-7 {
        margin-left: 58.33333%;
    }
    .grid-margin-x > .large-offset-7 {
        margin-left: calc(58.33333% + 1rem);
    }
    .large-offset-8 {
        margin-left: 66.66667%;
    }
    .grid-margin-x > .large-offset-8 {
        margin-left: calc(66.66667% + 1rem);
    }
    .large-offset-9 {
        margin-left: 75%;
    }
    .grid-margin-x > .large-offset-9 {
        margin-left: calc(75% + 1rem);
    }
    .large-offset-10 {
        margin-left: 83.33333%;
    }
    .grid-margin-x > .large-offset-10 {
        margin-left: calc(83.33333% + 1rem);
    }
    .large-offset-11 {
        margin-left: 91.66667%;
    }
    .grid-margin-x > .large-offset-11 {
        margin-left: calc(91.66667% + 1rem);
    }
}

@media screen and (min-width: 75em) {
    .xlarge-offset-0 {
        margin-left: 0%;
    }
    .grid-margin-x > .xlarge-offset-0 {
        margin-left: calc(0% + 1rem);
    }
    .xlarge-offset-1 {
        margin-left: 8.33333%;
    }
    .grid-margin-x > .xlarge-offset-1 {
        margin-left: calc(8.33333% + 1rem);
    }
    .xlarge-offset-2 {
        margin-left: 16.66667%;
    }
    .grid-margin-x > .xlarge-offset-2 {
        margin-left: calc(16.66667% + 1rem);
    }
    .xlarge-offset-3 {
        margin-left: 25%;
    }
    .grid-margin-x > .xlarge-offset-3 {
        margin-left: calc(25% + 1rem);
    }
    .xlarge-offset-4 {
        margin-left: 33.33333%;
    }
    .grid-margin-x > .xlarge-offset-4 {
        margin-left: calc(33.33333% + 1rem);
    }
    .xlarge-offset-5 {
        margin-left: 41.66667%;
    }
    .grid-margin-x > .xlarge-offset-5 {
        margin-left: calc(41.66667% + 1rem);
    }
    .xlarge-offset-6 {
        margin-left: 50%;
    }
    .grid-margin-x > .xlarge-offset-6 {
        margin-left: calc(50% + 1rem);
    }
    .xlarge-offset-7 {
        margin-left: 58.33333%;
    }
    .grid-margin-x > .xlarge-offset-7 {
        margin-left: calc(58.33333% + 1rem);
    }
    .xlarge-offset-8 {
        margin-left: 66.66667%;
    }
    .grid-margin-x > .xlarge-offset-8 {
        margin-left: calc(66.66667% + 1rem);
    }
    .xlarge-offset-9 {
        margin-left: 75%;
    }
    .grid-margin-x > .xlarge-offset-9 {
        margin-left: calc(75% + 1rem);
    }
    .xlarge-offset-10 {
        margin-left: 83.33333%;
    }
    .grid-margin-x > .xlarge-offset-10 {
        margin-left: calc(83.33333% + 1rem);
    }
    .xlarge-offset-11 {
        margin-left: 91.66667%;
    }
    .grid-margin-x > .xlarge-offset-11 {
        margin-left: calc(91.66667% + 1rem);
    }
}

.grid-y {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
}

.grid-y > .cell {
    width: auto;
    max-width: none;
}

.grid-y > .auto {
    height: auto;
}

.grid-y > .shrink {
    height: auto;
}

.grid-y > .small-shrink, .grid-y > .small-full, .grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
    -webkit-flex-basis: auto;
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
}

@media print, screen and (min-width: 48em) {
    .grid-y > .medium-shrink, .grid-y > .medium-full, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
        -webkit-flex-basis: auto;
            -ms-flex-preferred-size: auto;
                flex-basis: auto;
    }
}

@media print, screen and (min-width: 64em) {
    .grid-y > .large-shrink, .grid-y > .large-full, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
        -webkit-flex-basis: auto;
            -ms-flex-preferred-size: auto;
                flex-basis: auto;
    }
}

@media screen and (min-width: 75em) {
    .grid-y > .xlarge-shrink, .grid-y > .xlarge-full, .grid-y > .xlarge-1, .grid-y > .xlarge-2, .grid-y > .xlarge-3, .grid-y > .xlarge-4, .grid-y > .xlarge-5, .grid-y > .xlarge-6, .grid-y > .xlarge-7, .grid-y > .xlarge-8, .grid-y > .xlarge-9, .grid-y > .xlarge-10, .grid-y > .xlarge-11, .grid-y > .xlarge-12 {
        -webkit-flex-basis: auto;
            -ms-flex-preferred-size: auto;
                flex-basis: auto;
    }
}

.grid-y > .small-1, .grid-y > .small-2, .grid-y > .small-3, .grid-y > .small-4, .grid-y > .small-5, .grid-y > .small-6, .grid-y > .small-7, .grid-y > .small-8, .grid-y > .small-9, .grid-y > .small-10, .grid-y > .small-11, .grid-y > .small-12 {
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}

.grid-y > .small-1 {
    height: 8.33333%;
}

.grid-y > .small-2 {
    height: 16.66667%;
}

.grid-y > .small-3 {
    height: 25%;
}

.grid-y > .small-4 {
    height: 33.33333%;
}

.grid-y > .small-5 {
    height: 41.66667%;
}

.grid-y > .small-6 {
    height: 50%;
}

.grid-y > .small-7 {
    height: 58.33333%;
}

.grid-y > .small-8 {
    height: 66.66667%;
}

.grid-y > .small-9 {
    height: 75%;
}

.grid-y > .small-10 {
    height: 83.33333%;
}

.grid-y > .small-11 {
    height: 91.66667%;
}

.grid-y > .small-12 {
    height: 100%;
}

@media print, screen and (min-width: 48em) {
    .grid-y > .medium-auto {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 0px;
            -ms-flex: 1 1 0px;
                flex: 1 1 0px;
        height: auto;
    }
    .grid-y > .medium-shrink, .grid-y > .medium-1, .grid-y > .medium-2, .grid-y > .medium-3, .grid-y > .medium-4, .grid-y > .medium-5, .grid-y > .medium-6, .grid-y > .medium-7, .grid-y > .medium-8, .grid-y > .medium-9, .grid-y > .medium-10, .grid-y > .medium-11, .grid-y > .medium-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
    }
    .grid-y > .medium-shrink {
        height: auto;
    }
    .grid-y > .medium-1 {
        height: 8.33333%;
    }
    .grid-y > .medium-2 {
        height: 16.66667%;
    }
    .grid-y > .medium-3 {
        height: 25%;
    }
    .grid-y > .medium-4 {
        height: 33.33333%;
    }
    .grid-y > .medium-5 {
        height: 41.66667%;
    }
    .grid-y > .medium-6 {
        height: 50%;
    }
    .grid-y > .medium-7 {
        height: 58.33333%;
    }
    .grid-y > .medium-8 {
        height: 66.66667%;
    }
    .grid-y > .medium-9 {
        height: 75%;
    }
    .grid-y > .medium-10 {
        height: 83.33333%;
    }
    .grid-y > .medium-11 {
        height: 91.66667%;
    }
    .grid-y > .medium-12 {
        height: 100%;
    }
}

@media print, screen and (min-width: 64em) {
    .grid-y > .large-auto {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 0px;
            -ms-flex: 1 1 0px;
                flex: 1 1 0px;
        height: auto;
    }
    .grid-y > .large-shrink, .grid-y > .large-1, .grid-y > .large-2, .grid-y > .large-3, .grid-y > .large-4, .grid-y > .large-5, .grid-y > .large-6, .grid-y > .large-7, .grid-y > .large-8, .grid-y > .large-9, .grid-y > .large-10, .grid-y > .large-11, .grid-y > .large-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
    }
    .grid-y > .large-shrink {
        height: auto;
    }
    .grid-y > .large-1 {
        height: 8.33333%;
    }
    .grid-y > .large-2 {
        height: 16.66667%;
    }
    .grid-y > .large-3 {
        height: 25%;
    }
    .grid-y > .large-4 {
        height: 33.33333%;
    }
    .grid-y > .large-5 {
        height: 41.66667%;
    }
    .grid-y > .large-6 {
        height: 50%;
    }
    .grid-y > .large-7 {
        height: 58.33333%;
    }
    .grid-y > .large-8 {
        height: 66.66667%;
    }
    .grid-y > .large-9 {
        height: 75%;
    }
    .grid-y > .large-10 {
        height: 83.33333%;
    }
    .grid-y > .large-11 {
        height: 91.66667%;
    }
    .grid-y > .large-12 {
        height: 100%;
    }
}

@media screen and (min-width: 75em) {
    .grid-y > .xlarge-auto {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 0px;
            -ms-flex: 1 1 0px;
                flex: 1 1 0px;
        height: auto;
    }
    .grid-y > .xlarge-shrink, .grid-y > .xlarge-1, .grid-y > .xlarge-2, .grid-y > .xlarge-3, .grid-y > .xlarge-4, .grid-y > .xlarge-5, .grid-y > .xlarge-6, .grid-y > .xlarge-7, .grid-y > .xlarge-8, .grid-y > .xlarge-9, .grid-y > .xlarge-10, .grid-y > .xlarge-11, .grid-y > .xlarge-12 {
        -webkit-box-flex: 0;
        -webkit-flex: 0 0 auto;
            -ms-flex: 0 0 auto;
                flex: 0 0 auto;
    }
    .grid-y > .xlarge-shrink {
        height: auto;
    }
    .grid-y > .xlarge-1 {
        height: 8.33333%;
    }
    .grid-y > .xlarge-2 {
        height: 16.66667%;
    }
    .grid-y > .xlarge-3 {
        height: 25%;
    }
    .grid-y > .xlarge-4 {
        height: 33.33333%;
    }
    .grid-y > .xlarge-5 {
        height: 41.66667%;
    }
    .grid-y > .xlarge-6 {
        height: 50%;
    }
    .grid-y > .xlarge-7 {
        height: 58.33333%;
    }
    .grid-y > .xlarge-8 {
        height: 66.66667%;
    }
    .grid-y > .xlarge-9 {
        height: 75%;
    }
    .grid-y > .xlarge-10 {
        height: 83.33333%;
    }
    .grid-y > .xlarge-11 {
        height: 91.66667%;
    }
    .grid-y > .xlarge-12 {
        height: 100%;
    }
}

.grid-padding-y .grid-padding-y {
    margin-top: -1rem;
    margin-bottom: -1rem;
}

@media print, screen and (min-width: 48em) {
    .grid-padding-y .grid-padding-y {
        margin-top: -1rem;
        margin-bottom: -1rem;
    }
}

.grid-padding-y > .cell {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

@media print, screen and (min-width: 48em) {
    .grid-padding-y > .cell {
        padding-top: 1rem;
        padding-bottom: 1rem;
    }
}

.grid-margin-y {
    margin-top: -1rem;
    margin-bottom: -1rem;
}

@media print, screen and (min-width: 48em) {
    .grid-margin-y {
        margin-top: -1rem;
        margin-bottom: -1rem;
    }
}

.grid-margin-y > .cell {
    height: calc(100% - 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media print, screen and (min-width: 48em) {
    .grid-margin-y > .cell {
        height: calc(100% - 2rem);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

.grid-margin-y > .auto {
    height: auto;
}

.grid-margin-y > .shrink {
    height: auto;
}

.grid-margin-y > .small-1 {
    height: calc(8.33333% - 2rem);
}

.grid-margin-y > .small-2 {
    height: calc(16.66667% - 2rem);
}

.grid-margin-y > .small-3 {
    height: calc(25% - 2rem);
}

.grid-margin-y > .small-4 {
    height: calc(33.33333% - 2rem);
}

.grid-margin-y > .small-5 {
    height: calc(41.66667% - 2rem);
}

.grid-margin-y > .small-6 {
    height: calc(50% - 2rem);
}

.grid-margin-y > .small-7 {
    height: calc(58.33333% - 2rem);
}

.grid-margin-y > .small-8 {
    height: calc(66.66667% - 2rem);
}

.grid-margin-y > .small-9 {
    height: calc(75% - 2rem);
}

.grid-margin-y > .small-10 {
    height: calc(83.33333% - 2rem);
}

.grid-margin-y > .small-11 {
    height: calc(91.66667% - 2rem);
}

.grid-margin-y > .small-12 {
    height: calc(100% - 2rem);
}

@media print, screen and (min-width: 48em) {
    .grid-margin-y > .auto {
        height: auto;
    }
    .grid-margin-y > .shrink {
        height: auto;
    }
    .grid-margin-y > .small-1 {
        height: calc(8.33333% - 2rem);
    }
    .grid-margin-y > .small-2 {
        height: calc(16.66667% - 2rem);
    }
    .grid-margin-y > .small-3 {
        height: calc(25% - 2rem);
    }
    .grid-margin-y > .small-4 {
        height: calc(33.33333% - 2rem);
    }
    .grid-margin-y > .small-5 {
        height: calc(41.66667% - 2rem);
    }
    .grid-margin-y > .small-6 {
        height: calc(50% - 2rem);
    }
    .grid-margin-y > .small-7 {
        height: calc(58.33333% - 2rem);
    }
    .grid-margin-y > .small-8 {
        height: calc(66.66667% - 2rem);
    }
    .grid-margin-y > .small-9 {
        height: calc(75% - 2rem);
    }
    .grid-margin-y > .small-10 {
        height: calc(83.33333% - 2rem);
    }
    .grid-margin-y > .small-11 {
        height: calc(91.66667% - 2rem);
    }
    .grid-margin-y > .small-12 {
        height: calc(100% - 2rem);
    }
    .grid-margin-y > .medium-auto {
        height: auto;
    }
    .grid-margin-y > .medium-shrink {
        height: auto;
    }
    .grid-margin-y > .medium-1 {
        height: calc(8.33333% - 2rem);
    }
    .grid-margin-y > .medium-2 {
        height: calc(16.66667% - 2rem);
    }
    .grid-margin-y > .medium-3 {
        height: calc(25% - 2rem);
    }
    .grid-margin-y > .medium-4 {
        height: calc(33.33333% - 2rem);
    }
    .grid-margin-y > .medium-5 {
        height: calc(41.66667% - 2rem);
    }
    .grid-margin-y > .medium-6 {
        height: calc(50% - 2rem);
    }
    .grid-margin-y > .medium-7 {
        height: calc(58.33333% - 2rem);
    }
    .grid-margin-y > .medium-8 {
        height: calc(66.66667% - 2rem);
    }
    .grid-margin-y > .medium-9 {
        height: calc(75% - 2rem);
    }
    .grid-margin-y > .medium-10 {
        height: calc(83.33333% - 2rem);
    }
    .grid-margin-y > .medium-11 {
        height: calc(91.66667% - 2rem);
    }
    .grid-margin-y > .medium-12 {
        height: calc(100% - 2rem);
    }
}

@media print, screen and (min-width: 64em) {
    .grid-margin-y > .large-auto {
        height: auto;
    }
    .grid-margin-y > .large-shrink {
        height: auto;
    }
    .grid-margin-y > .large-1 {
        height: calc(8.33333% - 2rem);
    }
    .grid-margin-y > .large-2 {
        height: calc(16.66667% - 2rem);
    }
    .grid-margin-y > .large-3 {
        height: calc(25% - 2rem);
    }
    .grid-margin-y > .large-4 {
        height: calc(33.33333% - 2rem);
    }
    .grid-margin-y > .large-5 {
        height: calc(41.66667% - 2rem);
    }
    .grid-margin-y > .large-6 {
        height: calc(50% - 2rem);
    }
    .grid-margin-y > .large-7 {
        height: calc(58.33333% - 2rem);
    }
    .grid-margin-y > .large-8 {
        height: calc(66.66667% - 2rem);
    }
    .grid-margin-y > .large-9 {
        height: calc(75% - 2rem);
    }
    .grid-margin-y > .large-10 {
        height: calc(83.33333% - 2rem);
    }
    .grid-margin-y > .large-11 {
        height: calc(91.66667% - 2rem);
    }
    .grid-margin-y > .large-12 {
        height: calc(100% - 2rem);
    }
}

@media screen and (min-width: 75em) {
    .grid-margin-y > .xlarge-auto {
        height: auto;
    }
    .grid-margin-y > .xlarge-shrink {
        height: auto;
    }
    .grid-margin-y > .xlarge-1 {
        height: calc(8.33333% - 2rem);
    }
    .grid-margin-y > .xlarge-2 {
        height: calc(16.66667% - 2rem);
    }
    .grid-margin-y > .xlarge-3 {
        height: calc(25% - 2rem);
    }
    .grid-margin-y > .xlarge-4 {
        height: calc(33.33333% - 2rem);
    }
    .grid-margin-y > .xlarge-5 {
        height: calc(41.66667% - 2rem);
    }
    .grid-margin-y > .xlarge-6 {
        height: calc(50% - 2rem);
    }
    .grid-margin-y > .xlarge-7 {
        height: calc(58.33333% - 2rem);
    }
    .grid-margin-y > .xlarge-8 {
        height: calc(66.66667% - 2rem);
    }
    .grid-margin-y > .xlarge-9 {
        height: calc(75% - 2rem);
    }
    .grid-margin-y > .xlarge-10 {
        height: calc(83.33333% - 2rem);
    }
    .grid-margin-y > .xlarge-11 {
        height: calc(91.66667% - 2rem);
    }
    .grid-margin-y > .xlarge-12 {
        height: calc(100% - 2rem);
    }
}

.grid-frame {
    overflow: hidden;
    position: relative;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    width: 100vw;
}

.cell .grid-frame {
    width: 100%;
}

.cell-block {
    overflow-x: auto;
    max-width: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-y {
    overflow-y: auto;
    max-height: 100%;
    min-height: 100%;
    -webkit-overflow-scrolling: touch;
    -ms-overflow-style: -ms-autohiding-scrollbar;
}

.cell-block-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    max-height: 100%;
}

.cell-block-container > .grid-x {
    max-height: 100%;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
}

@media print, screen and (min-width: 48em) {
    .medium-grid-frame {
        overflow: hidden;
        position: relative;
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        width: 100vw;
    }
    .cell .medium-grid-frame {
        width: 100%;
    }
    .medium-cell-block {
        overflow-x: auto;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .medium-cell-block-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        max-height: 100%;
    }
    .medium-cell-block-container > .grid-x {
        max-height: 100%;
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
    }
    .medium-cell-block-y {
        overflow-y: auto;
        max-height: 100%;
        min-height: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
}

@media print, screen and (min-width: 64em) {
    .large-grid-frame {
        overflow: hidden;
        position: relative;
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        width: 100vw;
    }
    .cell .large-grid-frame {
        width: 100%;
    }
    .large-cell-block {
        overflow-x: auto;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .large-cell-block-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        max-height: 100%;
    }
    .large-cell-block-container > .grid-x {
        max-height: 100%;
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
    }
    .large-cell-block-y {
        overflow-y: auto;
        max-height: 100%;
        min-height: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
}

@media screen and (min-width: 75em) {
    .xlarge-grid-frame {
        overflow: hidden;
        position: relative;
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        width: 100vw;
    }
    .cell .xlarge-grid-frame {
        width: 100%;
    }
    .xlarge-cell-block {
        overflow-x: auto;
        max-width: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
    .xlarge-cell-block-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
        max-height: 100%;
    }
    .xlarge-cell-block-container > .grid-x {
        max-height: 100%;
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
    }
    .xlarge-cell-block-y {
        overflow-y: auto;
        max-height: 100%;
        min-height: 100%;
        -webkit-overflow-scrolling: touch;
        -ms-overflow-style: -ms-autohiding-scrollbar;
    }
}

.grid-y.grid-frame {
    width: auto;
    overflow: hidden;
    position: relative;
    -webkit-flex-wrap: nowrap;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    height: 100vh;
}

@media print, screen and (min-width: 48em) {
    .grid-y.medium-grid-frame {
        width: auto;
        overflow: hidden;
        position: relative;
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        height: 100vh;
    }
}

@media print, screen and (min-width: 64em) {
    .grid-y.large-grid-frame {
        width: auto;
        overflow: hidden;
        position: relative;
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        height: 100vh;
    }
}

@media screen and (min-width: 75em) {
    .grid-y.xlarge-grid-frame {
        width: auto;
        overflow: hidden;
        position: relative;
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
        height: 100vh;
    }
}

.cell .grid-y.grid-frame {
    height: 100%;
}

@media print, screen and (min-width: 48em) {
    .cell .grid-y.medium-grid-frame {
        height: 100%;
    }
}

@media print, screen and (min-width: 64em) {
    .cell .grid-y.large-grid-frame {
        height: 100%;
    }
}

@media screen and (min-width: 75em) {
    .cell .grid-y.xlarge-grid-frame {
        height: 100%;
    }
}

.grid-margin-y {
    margin-top: -1rem;
    margin-bottom: -1rem;
}

@media print, screen and (min-width: 48em) {
    .grid-margin-y {
        margin-top: -1rem;
        margin-bottom: -1rem;
    }
}

.grid-margin-y > .cell {
    height: calc(100% - 2rem);
    margin-top: 1rem;
    margin-bottom: 1rem;
}

@media print, screen and (min-width: 48em) {
    .grid-margin-y > .cell {
        height: calc(100% - 2rem);
        margin-top: 1rem;
        margin-bottom: 1rem;
    }
}

.grid-margin-y > .auto {
    height: auto;
}

.grid-margin-y > .shrink {
    height: auto;
}

.grid-margin-y > .small-1 {
    height: calc(8.33333% - 2rem);
}

.grid-margin-y > .small-2 {
    height: calc(16.66667% - 2rem);
}

.grid-margin-y > .small-3 {
    height: calc(25% - 2rem);
}

.grid-margin-y > .small-4 {
    height: calc(33.33333% - 2rem);
}

.grid-margin-y > .small-5 {
    height: calc(41.66667% - 2rem);
}

.grid-margin-y > .small-6 {
    height: calc(50% - 2rem);
}

.grid-margin-y > .small-7 {
    height: calc(58.33333% - 2rem);
}

.grid-margin-y > .small-8 {
    height: calc(66.66667% - 2rem);
}

.grid-margin-y > .small-9 {
    height: calc(75% - 2rem);
}

.grid-margin-y > .small-10 {
    height: calc(83.33333% - 2rem);
}

.grid-margin-y > .small-11 {
    height: calc(91.66667% - 2rem);
}

.grid-margin-y > .small-12 {
    height: calc(100% - 2rem);
}

@media print, screen and (min-width: 48em) {
    .grid-margin-y > .auto {
        height: auto;
    }
    .grid-margin-y > .shrink {
        height: auto;
    }
    .grid-margin-y > .small-1 {
        height: calc(8.33333% - 2rem);
    }
    .grid-margin-y > .small-2 {
        height: calc(16.66667% - 2rem);
    }
    .grid-margin-y > .small-3 {
        height: calc(25% - 2rem);
    }
    .grid-margin-y > .small-4 {
        height: calc(33.33333% - 2rem);
    }
    .grid-margin-y > .small-5 {
        height: calc(41.66667% - 2rem);
    }
    .grid-margin-y > .small-6 {
        height: calc(50% - 2rem);
    }
    .grid-margin-y > .small-7 {
        height: calc(58.33333% - 2rem);
    }
    .grid-margin-y > .small-8 {
        height: calc(66.66667% - 2rem);
    }
    .grid-margin-y > .small-9 {
        height: calc(75% - 2rem);
    }
    .grid-margin-y > .small-10 {
        height: calc(83.33333% - 2rem);
    }
    .grid-margin-y > .small-11 {
        height: calc(91.66667% - 2rem);
    }
    .grid-margin-y > .small-12 {
        height: calc(100% - 2rem);
    }
    .grid-margin-y > .medium-auto {
        height: auto;
    }
    .grid-margin-y > .medium-shrink {
        height: auto;
    }
    .grid-margin-y > .medium-1 {
        height: calc(8.33333% - 2rem);
    }
    .grid-margin-y > .medium-2 {
        height: calc(16.66667% - 2rem);
    }
    .grid-margin-y > .medium-3 {
        height: calc(25% - 2rem);
    }
    .grid-margin-y > .medium-4 {
        height: calc(33.33333% - 2rem);
    }
    .grid-margin-y > .medium-5 {
        height: calc(41.66667% - 2rem);
    }
    .grid-margin-y > .medium-6 {
        height: calc(50% - 2rem);
    }
    .grid-margin-y > .medium-7 {
        height: calc(58.33333% - 2rem);
    }
    .grid-margin-y > .medium-8 {
        height: calc(66.66667% - 2rem);
    }
    .grid-margin-y > .medium-9 {
        height: calc(75% - 2rem);
    }
    .grid-margin-y > .medium-10 {
        height: calc(83.33333% - 2rem);
    }
    .grid-margin-y > .medium-11 {
        height: calc(91.66667% - 2rem);
    }
    .grid-margin-y > .medium-12 {
        height: calc(100% - 2rem);
    }
}

@media print, screen and (min-width: 64em) {
    .grid-margin-y > .large-auto {
        height: auto;
    }
    .grid-margin-y > .large-shrink {
        height: auto;
    }
    .grid-margin-y > .large-1 {
        height: calc(8.33333% - 2rem);
    }
    .grid-margin-y > .large-2 {
        height: calc(16.66667% - 2rem);
    }
    .grid-margin-y > .large-3 {
        height: calc(25% - 2rem);
    }
    .grid-margin-y > .large-4 {
        height: calc(33.33333% - 2rem);
    }
    .grid-margin-y > .large-5 {
        height: calc(41.66667% - 2rem);
    }
    .grid-margin-y > .large-6 {
        height: calc(50% - 2rem);
    }
    .grid-margin-y > .large-7 {
        height: calc(58.33333% - 2rem);
    }
    .grid-margin-y > .large-8 {
        height: calc(66.66667% - 2rem);
    }
    .grid-margin-y > .large-9 {
        height: calc(75% - 2rem);
    }
    .grid-margin-y > .large-10 {
        height: calc(83.33333% - 2rem);
    }
    .grid-margin-y > .large-11 {
        height: calc(91.66667% - 2rem);
    }
    .grid-margin-y > .large-12 {
        height: calc(100% - 2rem);
    }
}

@media screen and (min-width: 75em) {
    .grid-margin-y > .xlarge-auto {
        height: auto;
    }
    .grid-margin-y > .xlarge-shrink {
        height: auto;
    }
    .grid-margin-y > .xlarge-1 {
        height: calc(8.33333% - 2rem);
    }
    .grid-margin-y > .xlarge-2 {
        height: calc(16.66667% - 2rem);
    }
    .grid-margin-y > .xlarge-3 {
        height: calc(25% - 2rem);
    }
    .grid-margin-y > .xlarge-4 {
        height: calc(33.33333% - 2rem);
    }
    .grid-margin-y > .xlarge-5 {
        height: calc(41.66667% - 2rem);
    }
    .grid-margin-y > .xlarge-6 {
        height: calc(50% - 2rem);
    }
    .grid-margin-y > .xlarge-7 {
        height: calc(58.33333% - 2rem);
    }
    .grid-margin-y > .xlarge-8 {
        height: calc(66.66667% - 2rem);
    }
    .grid-margin-y > .xlarge-9 {
        height: calc(75% - 2rem);
    }
    .grid-margin-y > .xlarge-10 {
        height: calc(83.33333% - 2rem);
    }
    .grid-margin-y > .xlarge-11 {
        height: calc(91.66667% - 2rem);
    }
    .grid-margin-y > .xlarge-12 {
        height: calc(100% - 2rem);
    }
}

.grid-frame.grid-margin-y {
    height: calc(100vh + 2rem);
}

@media print, screen and (min-width: 48em) {
    .grid-frame.grid-margin-y {
        height: calc(100vh + 2rem);
    }
}

@media print, screen and (min-width: 64em) {
    .grid-frame.grid-margin-y {
        height: calc(100vh + 2rem);
    }
}

@media screen and (min-width: 75em) {
    .grid-frame.grid-margin-y {
        height: calc(100vh + 2rem);
    }
}

@media print, screen and (min-width: 48em) {
    .grid-margin-y.medium-grid-frame {
        height: calc(100vh + 2rem);
    }
}

@media print, screen and (min-width: 64em) {
    .grid-margin-y.large-grid-frame {
        height: calc(100vh + 2rem);
    }
}

@media screen and (min-width: 75em) {
    .grid-margin-y.xlarge-grid-frame {
        height: calc(100vh + 2rem);
    }
}

div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
p,
blockquote,
th,
td {
    margin: 0;
    padding: 0;
}

p {
    margin-bottom: 1rem;
    font-size: inherit;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
}

em,
i {
    font-style: italic;
    line-height: inherit;
}

strong,
b {
    font-weight: bold;
    line-height: inherit;
}

small {
    font-size: 80%;
    line-height: inherit;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-family: "Roboto", sans-serif;
    font-style: normal;
    font-weight: bold;
    color: inherit;
    text-rendering: optimizeLegibility;
}

h1 small, .h1 small,
h2 small, .h2 small,
h3 small, .h3 small,
h4 small, .h4 small,
h5 small, .h5 small,
h6 small, .h6 small {
    line-height: 0;
    color: #cacaca;
}

h1, .h1 {
    font-size: 1.5rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h2, .h2 {
    font-size: 1.25rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h3, .h3 {
    font-size: 1.1875rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h4, .h4 {
    font-size: 1.125rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h5, .h5 {
    font-size: 1.0625rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

h6, .h6 {
    font-size: 1rem;
    line-height: 1.4;
    margin-top: 0;
    margin-bottom: 0.5rem;
}

@media print, screen and (min-width: 48em) {
    h1, .h1 {
        font-size: 3rem;
    }
    h2, .h2 {
        font-size: 2rem;
    }
    h3, .h3 {
        font-size: 1.9375rem;
    }
    h4, .h4 {
        font-size: 1.5625rem;
    }
    h5, .h5 {
        font-size: 1.25rem;
    }
    h6, .h6 {
        font-size: 1rem;
    }
}

a {
    line-height: inherit;
    color: #0057a0;
    text-decoration: none;
    cursor: pointer;
}

a:hover, a:focus {
    color: #004b8a;
}

a img {
    border: 0;
}

hr {
    clear: both;
    max-width: 78.75rem;
    height: 0;
    margin: 1.25rem auto;
    border-top: 0;
    border-right: 0;
    border-bottom: 1px solid #cacaca;
    border-left: 0;
}

ul,
ol,
dl {
    margin-bottom: 1rem;
    list-style-position: outside;
    line-height: 1.6;
}

li {
    font-size: inherit;
}

ul {
    margin-left: 1.25rem;
    list-style-type: disc;
}

ol {
    margin-left: 1.25rem;
}

ul ul, ol ul, ul ol, ol ol {
    margin-left: 1.25rem;
    margin-bottom: 0;
}

dl {
    margin-bottom: 1rem;
}

dl dt {
    margin-bottom: 0.3rem;
    font-weight: bold;
}

blockquote {
    margin: 0 0 1rem;
    padding: 0.5625rem 1.25rem 0 1.1875rem;
    border-left: 1px solid #cacaca;
}

blockquote, blockquote p {
    line-height: 1.6;
    color: #8a8a8a;
}

cite {
    display: block;
    font-size: 0.8125rem;
    color: #8a8a8a;
}

cite:before {
    content: "— ";
}

abbr, abbr[title] {
    border-bottom: 1px dotted #0a0a0a;
    cursor: help;
    text-decoration: none;
}

figure {
    margin: 0;
}

code {
    padding: 0.125rem 0.3125rem 0.0625rem;
    border: 1px solid #cacaca;
    background-color: #e6e6e6;
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    font-weight: normal;
    color: #0a0a0a;
}

kbd {
    margin: 0;
    padding: 0.125rem 0.25rem 0;
    background-color: #e6e6e6;
    font-family: Consolas, "Liberation Mono", Courier, monospace;
    color: #0a0a0a;
}

.subheader {
    margin-top: 0.2rem;
    margin-bottom: 0.5rem;
    font-weight: normal;
    line-height: 1.4;
    color: #8a8a8a;
}

.lead {
    font-size: 125%;
    line-height: 1.6;
}

.stat {
    font-size: 2.5rem;
    line-height: 1;
}

p + .stat {
    margin-top: -1rem;
}

ul.no-bullet, ol.no-bullet {
    margin-left: 0;
    list-style: none;
}

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

.text-right {
    text-align: right;
}

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

.text-justify {
    text-align: justify;
}

@media print, screen and (min-width: 48em) {
    .medium-text-left {
        text-align: left;
    }
    .medium-text-right {
        text-align: right;
    }
    .medium-text-center {
        text-align: center;
    }
    .medium-text-justify {
        text-align: justify;
    }
}

@media print, screen and (min-width: 64em) {
    .large-text-left {
        text-align: left;
    }
    .large-text-right {
        text-align: right;
    }
    .large-text-center {
        text-align: center;
    }
    .large-text-justify {
        text-align: justify;
    }
}

@media screen and (min-width: 75em) {
    .xlarge-text-left {
        text-align: left;
    }
    .xlarge-text-right {
        text-align: right;
    }
    .xlarge-text-center {
        text-align: center;
    }
    .xlarge-text-justify {
        text-align: justify;
    }
}

.show-for-print {
    display: none !important;
}

@media print {
    * {
        background: transparent !important;
        -webkit-box-shadow: none !important;
                box-shadow: none !important;
        color: black !important;
        text-shadow: none !important;
    }
    .show-for-print {
        display: block !important;
    }
    .hide-for-print {
        display: none !important;
    }
    table.show-for-print {
        display: table !important;
    }
    thead.show-for-print {
        display: table-header-group !important;
    }
    tbody.show-for-print {
        display: table-row-group !important;
    }
    tr.show-for-print {
        display: table-row !important;
    }
    td.show-for-print {
        display: table-cell !important;
    }
    th.show-for-print {
        display: table-cell !important;
    }
    a,
    a:visited {
        text-decoration: underline;
    }
    a[href]:after {
        content: " (" attr(href) ")";
    }
    .ir a:after,
    a[href^='javascript:']:after,
    a[href^='#']:after {
        content: '';
    }
    abbr[title]:after {
        content: " (" attr(title) ")";
    }
    pre,
    blockquote {
        border: 1px solid #8a8a8a;
        page-break-inside: avoid;
    }
    thead {
        display: table-header-group;
    }
    tr,
    img {
        page-break-inside: avoid;
    }
    img {
        max-width: 100% !important;
    }
    @page {
        margin: 0.5cm;
    }
    p,
    h2,
    h3 {
        orphans: 3;
        widows: 3;
    }
    h2,
    h3 {
        page-break-after: avoid;
    }
    .print-break-inside {
        page-break-inside: auto;
    }
}

[type='text'], [type='password'], [type='date'], [type='datetime'], [type='datetime-local'], [type='month'], [type='week'], [type='email'], [type='number'], [type='search'], [type='tel'], [type='time'], [type='url'], [type='color'],
textarea {
    display: block;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 100%;
    height: 2.4375rem;
    margin: 0 0 1rem;
    padding: 0.5rem;
    border: 0;
    border-radius: 0;
    background-color: #f6f5f3;
    -webkit-box-shadow: 0;
            box-shadow: 0;
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #0a0a0a;
    -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
}

[type='text']:focus, [type='password']:focus, [type='date']:focus, [type='datetime']:focus, [type='datetime-local']:focus, [type='month']:focus, [type='week']:focus, [type='email']:focus, [type='number']:focus, [type='search']:focus, [type='tel']:focus, [type='time']:focus, [type='url']:focus, [type='color']:focus,
textarea:focus {
    outline: none;
    border: 0;
    background-color: #f6f5f3;
    -webkit-box-shadow: 0;
            box-shadow: 0;
    -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}

textarea {
    max-width: 100%;
}

textarea[rows] {
    height: auto;
}

input:disabled, input[readonly],
textarea:disabled,
textarea[readonly] {
    background-color: #e6e6e6;
    cursor: not-allowed;
}

[type='submit'],
[type='button'] {
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border-radius: 0;
}

input[type="search"] {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

::-webkit-input-placeholder {
    color: #000;
}

::-moz-placeholder {
    color: #000;
}

::-ms-input-placeholder {
    color: #000;
}

::placeholder {
    color: #000;
}

[type='file'],
[type='checkbox'],
[type='radio'] {
    margin: 0 0 1rem;
}

[type='checkbox'] + label,
[type='radio'] + label {
    display: inline-block;
    vertical-align: baseline;
    margin-left: 0.5rem;
    margin-right: 1rem;
    margin-bottom: 0;
}

[type='checkbox'] + label[for],
[type='radio'] + label[for] {
    cursor: pointer;
}

label > [type='checkbox'],
label > [type='radio'] {
    margin-right: 0.5rem;
}

[type='file'] {
    width: 100%;
}

label {
    display: block;
    margin: 0;
    font-size: 0.875rem;
    font-weight: normal;
    line-height: 1.8;
    color: #0a0a0a;
}

label.middle {
    margin: 0 0 1rem;
    padding: 0.5rem 0;
}

.help-text {
    margin-top: -0.5rem;
    font-size: 0.8125rem;
    font-style: italic;
    color: #0a0a0a;
}

.input-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    margin-bottom: 1rem;
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.input-group > :first-child, .input-group > :first-child.input-group-button > * {
    border-radius: 0 0 0 0;
}

.input-group > :last-child, .input-group > :last-child.input-group-button > * {
    border-radius: 0 0 0 0;
}

.input-group-label, .input-group-field, .input-group-button, .input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
    margin: 0;
    white-space: nowrap;
}

.input-group-label {
    padding: 0 1rem;
    border: 1px solid #cacaca;
    background: #e6e6e6;
    color: #0a0a0a;
    text-align: center;
    white-space: nowrap;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.input-group-label:first-child {
    border-right: 0;
}

.input-group-label:last-child {
    border-left: 0;
}

.input-group-field {
    border-radius: 0;
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 0px;
        -ms-flex: 1 1 0px;
            flex: 1 1 0px;
    min-width: 0;
}

.input-group-button {
    padding-top: 0;
    padding-bottom: 0;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
        -ms-flex: 0 0 auto;
            flex: 0 0 auto;
}

.input-group-button a,
.input-group-button input,
.input-group-button button,
.input-group-button label {
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
    height: auto;
    padding-top: 0;
    padding-bottom: 0;
    font-size: 1rem;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

legend {
    max-width: 100%;
    margin-bottom: 0.5rem;
}

.fieldset {
    margin: 1.125rem 0;
    padding: 1.25rem;
    border: 1px solid #cacaca;
}

.fieldset legend {
    margin: 0;
    margin-left: -0.1875rem;
    padding: 0 0.1875rem;
}

select {
    height: 2.4375rem;
    margin: 0 0 1rem;
    padding: 0.5rem;
    -webkit-appearance: none;
       -moz-appearance: none;
            appearance: none;
    border: 0;
    border-radius: 0;
    background-color: #f6f5f3;
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #0a0a0a;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' version='1.1' width='32' height='24' viewBox='0 0 32 24'><polygon points='0,0 32,0 16,24' style='fill: rgb%28138, 138, 138%29'></polygon></svg>");
    background-origin: content-box;
    background-position: right -1rem center;
    background-repeat: no-repeat;
    background-size: 9px 6px;
    padding-right: 1.5rem;
    -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}

@media screen and (min-width: 0\0) {
    select {
        background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACAAAAAYCAYAAACbU/80AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAIpJREFUeNrEkckNgDAMBBfRkEt0ObRBBdsGXUDgmQfK4XhH2m8czQAAy27R3tsw4Qfe2x8uOO6oYLb6GlOor3GF+swURAOmUJ+RwtEJs9WvTGEYxBXqI1MQAZhCfUQKRzDMVj+TwrAIV6jvSUEkYAr1LSkcyTBb/V+KYfX7xAeusq3sLDtGH3kEGACPWIflNZfhRQAAAABJRU5ErkJggg==");
    }
}

select:focus {
    outline: none;
    border: 0;
    background-color: #f6f5f3;
    -webkit-box-shadow: 0;
            box-shadow: 0;
    -webkit-transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out;
    transition: box-shadow 0.5s, border-color 0.25s ease-in-out, -webkit-box-shadow 0.5s;
}

select:disabled {
    background-color: #e6e6e6;
    cursor: not-allowed;
}

select::-ms-expand {
    display: none;
}

select[multiple] {
    height: auto;
    background-image: none;
}

.is-invalid-input:not(:focus) {
    border-color: #cc4b37;
    background-color: #f9ecea;
}

.is-invalid-input:not(:focus)::-webkit-input-placeholder {
    color: #cc4b37;
}

.is-invalid-input:not(:focus)::-moz-placeholder {
    color: #cc4b37;
}

.is-invalid-input:not(:focus)::-ms-input-placeholder {
    color: #cc4b37;
}

.is-invalid-input:not(:focus)::placeholder {
    color: #cc4b37;
}

.is-invalid-label {
    color: #cc4b37;
}

.form-error {
    display: none;
    margin-top: -0.5rem;
    margin-bottom: 1rem;
    font-size: 0.75rem;
    font-weight: bold;
    color: #cc4b37;
}

.form-error.is-visible {
    display: block;
}

table {
    border-collapse: collapse;
    width: 100%;
    margin-bottom: 1rem;
    border-radius: 0;
}

thead,
tbody,
tfoot {
    border: 1px solid #f1f1f1;
    background-color: #fefefe;
}

caption {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold;
}

thead {
    background: #f8f8f8;
    color: #0a0a0a;
}

tfoot {
    background: #f1f1f1;
    color: #0a0a0a;
}

thead tr,
tfoot tr {
    background: transparent;
}

thead th,
thead td,
tfoot th,
tfoot td {
    padding: 0.5rem 0.625rem 0.625rem;
    font-weight: bold;
    text-align: left;
}

tbody th,
tbody td {
    padding: 0.5rem 0.625rem 0.625rem;
}

tbody tr:nth-child(even) {
    border-bottom: 0;
    background-color: #f1f1f1;
}

table.unstriped tbody {
    background-color: #fefefe;
}

table.unstriped tbody tr {
    border-bottom: 0;
    border-bottom: 1px solid #f1f1f1;
    background-color: #fefefe;
}

@media screen and (max-width: 63.99875em) {
    table.stack thead {
        display: none;
    }
    table.stack tfoot {
        display: none;
    }
    table.stack tr,
    table.stack th,
    table.stack td {
        display: block;
    }
    table.stack td {
        border-top: 0;
    }
}

table.scroll {
    display: block;
    width: 100%;
    overflow-x: auto;
}

table.hover thead tr:hover {
    background-color: #f3f3f3;
}

table.hover tfoot tr:hover {
    background-color: #ececec;
}

table.hover tbody tr:hover {
    background-color: #f9f9f9;
}

table.hover:not(.unstriped) tr:nth-of-type(even):hover {
    background-color: #ececec;
}

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

.hide {
    display: none !important;
}

.invisible {
    visibility: hidden;
}

@media screen and (max-width: 47.99875em) {
    .hide-for-small-only {
        display: none !important;
    }
}

@media screen and (max-width: 0em), screen and (min-width: 48em) {
    .show-for-small-only {
        display: none !important;
    }
}

@media print, screen and (min-width: 48em) {
    .hide-for-medium {
        display: none !important;
    }
}

@media screen and (max-width: 47.99875em) {
    .show-for-medium {
        display: none !important;
    }
}

@media screen and (min-width: 48em) and (max-width: 63.99875em) {
    .hide-for-medium-only {
        display: none !important;
    }
}

@media screen and (max-width: 47.99875em), screen and (min-width: 64em) {
    .show-for-medium-only {
        display: none !important;
    }
}

@media print, screen and (min-width: 64em) {
    .hide-for-large {
        display: none !important;
    }
}

@media screen and (max-width: 63.99875em) {
    .show-for-large {
        display: none !important;
    }
}

@media screen and (min-width: 64em) and (max-width: 74.99875em) {
    .hide-for-large-only {
        display: none !important;
    }
}

@media screen and (max-width: 63.99875em), screen and (min-width: 75em) {
    .show-for-large-only {
        display: none !important;
    }
}

@media screen and (min-width: 75em) {
    .hide-for-xlarge {
        display: none !important;
    }
}

@media screen and (max-width: 74.99875em) {
    .show-for-xlarge {
        display: none !important;
    }
}

@media screen and (min-width: 75em) and (max-width: 89.99875em) {
    .hide-for-xlarge-only {
        display: none !important;
    }
}

@media screen and (max-width: 74.99875em), screen and (min-width: 90em) {
    .show-for-xlarge-only {
        display: none !important;
    }
}

.show-for-sr,
.show-on-focus {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.show-on-focus:active, .show-on-focus:focus {
    position: static !important;
    width: auto;
    height: auto;
    overflow: visible;
    clip: auto;
    white-space: normal;
}

.show-for-landscape,
.hide-for-portrait {
    display: block !important;
}

@media screen and (orientation: landscape) {
    .show-for-landscape,
    .hide-for-portrait {
        display: block !important;
    }
}

@media screen and (orientation: portrait) {
    .show-for-landscape,
    .hide-for-portrait {
        display: none !important;
    }
}

.hide-for-landscape,
.show-for-portrait {
    display: none !important;
}

@media screen and (orientation: landscape) {
    .hide-for-landscape,
    .show-for-portrait {
        display: none !important;
    }
}

@media screen and (orientation: portrait) {
    .hide-for-landscape,
    .show-for-portrait {
        display: block !important;
    }
}

.align-left {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.align-right {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.align-center {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.align-justify {
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.align-spaced {
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
}

.align-left.vertical.menu > li > a {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
}

.align-right.vertical.menu > li > a {
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.align-center.vertical.menu > li > a {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

.align-top {
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.align-self-top {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
}

.align-bottom {
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
        -ms-flex-align: end;
            align-items: flex-end;
}

.align-self-bottom {
    -webkit-align-self: flex-end;
        -ms-flex-item-align: end;
            align-self: flex-end;
}

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

.align-self-middle {
    -webkit-align-self: center;
        -ms-flex-item-align: center;
            align-self: center;
}

.align-stretch {
    -webkit-box-align: stretch;
    -webkit-align-items: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
}

.align-self-stretch {
    -webkit-align-self: stretch;
        -ms-flex-item-align: stretch;
            align-self: stretch;
}

.align-center-middle {
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-align-content: center;
        -ms-flex-line-pack: center;
            align-content: center;
}

.small-order-1 {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
}

.small-order-2 {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
}

.small-order-3 {
    -webkit-box-ordinal-group: 4;
    -webkit-order: 3;
        -ms-flex-order: 3;
            order: 3;
}

.small-order-4 {
    -webkit-box-ordinal-group: 5;
    -webkit-order: 4;
        -ms-flex-order: 4;
            order: 4;
}

.small-order-5 {
    -webkit-box-ordinal-group: 6;
    -webkit-order: 5;
        -ms-flex-order: 5;
            order: 5;
}

.small-order-6 {
    -webkit-box-ordinal-group: 7;
    -webkit-order: 6;
        -ms-flex-order: 6;
            order: 6;
}

@media print, screen and (min-width: 48em) {
    .medium-order-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1;
    }
    .medium-order-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2;
    }
    .medium-order-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
            -ms-flex-order: 3;
                order: 3;
    }
    .medium-order-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
            -ms-flex-order: 4;
                order: 4;
    }
    .medium-order-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
            -ms-flex-order: 5;
                order: 5;
    }
    .medium-order-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
            -ms-flex-order: 6;
                order: 6;
    }
}

@media print, screen and (min-width: 64em) {
    .large-order-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1;
    }
    .large-order-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2;
    }
    .large-order-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
            -ms-flex-order: 3;
                order: 3;
    }
    .large-order-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
            -ms-flex-order: 4;
                order: 4;
    }
    .large-order-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
            -ms-flex-order: 5;
                order: 5;
    }
    .large-order-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
            -ms-flex-order: 6;
                order: 6;
    }
}

@media screen and (min-width: 75em) {
    .xlarge-order-1 {
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
            -ms-flex-order: 1;
                order: 1;
    }
    .xlarge-order-2 {
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
            -ms-flex-order: 2;
                order: 2;
    }
    .xlarge-order-3 {
        -webkit-box-ordinal-group: 4;
        -webkit-order: 3;
            -ms-flex-order: 3;
                order: 3;
    }
    .xlarge-order-4 {
        -webkit-box-ordinal-group: 5;
        -webkit-order: 4;
            -ms-flex-order: 4;
                order: 4;
    }
    .xlarge-order-5 {
        -webkit-box-ordinal-group: 6;
        -webkit-order: 5;
            -ms-flex-order: 5;
                order: 5;
    }
    .xlarge-order-6 {
        -webkit-box-ordinal-group: 7;
        -webkit-order: 6;
            -ms-flex-order: 6;
                order: 6;
    }
}

.flex-container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.flex-child-auto {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
        -ms-flex: 1 1 auto;
            flex: 1 1 auto;
}

.flex-child-grow {
    -webkit-box-flex: 1;
    -webkit-flex: 1 0 auto;
        -ms-flex: 1 0 auto;
            flex: 1 0 auto;
}

.flex-child-shrink {
    -webkit-box-flex: 0;
    -webkit-flex: 0 1 auto;
        -ms-flex: 0 1 auto;
            flex: 0 1 auto;
}

.flex-dir-row {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
}

.flex-dir-row-reverse {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: row-reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
}

.flex-dir-column {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}

.flex-dir-column-reverse {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
}

@media print, screen and (min-width: 48em) {
    .medium-flex-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .medium-flex-child-auto {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
    }
    .medium-flex-child-grow {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 auto;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
    }
    .medium-flex-child-shrink {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 auto;
            -ms-flex: 0 1 auto;
                flex: 0 1 auto;
    }
    .medium-flex-dir-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .medium-flex-dir-row-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }
    .medium-flex-dir-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .medium-flex-dir-column-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
}

@media print, screen and (min-width: 64em) {
    .large-flex-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .large-flex-child-auto {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
    }
    .large-flex-child-grow {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 auto;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
    }
    .large-flex-child-shrink {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 auto;
            -ms-flex: 0 1 auto;
                flex: 0 1 auto;
    }
    .large-flex-dir-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .large-flex-dir-row-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }
    .large-flex-dir-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .large-flex-dir-column-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
}

@media screen and (min-width: 75em) {
    .xlarge-flex-container {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
    .xlarge-flex-child-auto {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 auto;
            -ms-flex: 1 1 auto;
                flex: 1 1 auto;
    }
    .xlarge-flex-child-grow {
        -webkit-box-flex: 1;
        -webkit-flex: 1 0 auto;
            -ms-flex: 1 0 auto;
                flex: 1 0 auto;
    }
    .xlarge-flex-child-shrink {
        -webkit-box-flex: 0;
        -webkit-flex: 0 1 auto;
            -ms-flex: 0 1 auto;
                flex: 0 1 auto;
    }
    .xlarge-flex-dir-row {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
    }
    .xlarge-flex-dir-row-reverse {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: row-reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse;
    }
    .xlarge-flex-dir-column {
        -webkit-box-orient: vertical;
        -webkit-box-direction: normal;
        -webkit-flex-direction: column;
            -ms-flex-direction: column;
                flex-direction: column;
    }
    .xlarge-flex-dir-column-reverse {
        -webkit-box-orient: vertical;
        -webkit-box-direction: reverse;
        -webkit-flex-direction: column-reverse;
            -ms-flex-direction: column-reverse;
                flex-direction: column-reverse;
    }
}

.skip-menu-link,
.skip-content-link {
    z-index: 100;
    position: fixed;
    top: 6px;
    left: 6px;
    background-color: #fefefe;
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.skip-menu-link:focus,
.skip-content-link:focus {
    overflow: visible;
    clip: auto;
    width: auto;
    height: auto;
    margin: 0;
}

:focus {
    outline: none;
}

[data-state="keydown"] :focus {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #000, 0 0 0 4px #fff !important;
            box-shadow: 0 0 0 1px #fff, 0 0 0 3px #000, 0 0 0 4px #fff !important;
}

html,
body {
    overflow-x: hidden;
}

html {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}

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

img {
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}

body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 100vh;
    color: #242424;
    background-color: #fff;
}

.grid-container {
    width: 100%;
}

img,
svg,
iframe {
    max-width: 100%;
}

audio,
canvas,
iframe,
img,
svg,
video {
    vertical-align: middle;
}

fieldset {
    margin: 0;
    padding: 0;
    border: 0;
}

textarea {
    resize: vertical;
}

blockquote {
    margin: 0;
    padding-top: 0;
}

hr {
    margin: 2em 0;
    border-top: 0;
    border-bottom: 1px solid #242424;
}

ul,
ol {
    padding: 5px 0;
}

nav ul {
    margin: 0;
    padding: 0;
    font-size: 0;
    list-style-type: none;
}

nav ul li {
    display: inline-block;
    margin: 0;
    padding: 0;
    font-size: 1rem;
}

nav a {
    text-decoration: none;
}

code,
kbd,
pre,
samp {
    font-size: 1rem;
}

h1, .h1,
h2, .h2,
h3, .h3,
h4, .h4,
h5, .h5,
h6, .h6 {
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    line-height: 1.2;
}

h1, .h1 {
    font-size: 3.25rem;
}

h2, .h2 {
    font-size: 1.875rem;
}

h3, .h3 {
    font-size: 1.625rem;
}

.visuallyhidden {
    position: absolute;
    overflow: hidden;
    clip: rect(0 0 0 0);
    width: 1px;
    height: 1px;
    margin: -1px;
    padding: 0;
    border: 0;
}

.clearfix::before, .clearfix::after {
    display: table;
    content: ' ';
    -webkit-flex-basis: 0;
        -ms-flex-preferred-size: 0;
            flex-basis: 0;
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
}

.clearfix::after {
    clear: both;
}

.icon-wrapper {
    display: inline-block;
    vertical-align: middle;
    font-size: 0;
    line-height: 0;
}

::-moz-selection {
    color: #fefefe;
    background: #0057a0;
    text-shadow: none;
}

::selection {
    color: #fefefe;
    background: #0057a0;
    text-shadow: none;
}

:first-child {
    margin-top: 0;
}

:last-child {
    margin-bottom: 0;
}

ul,
ol {
    padding: 0;
}

select {
    padding-right: 3rem;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='12px' height='17px'%3E%3Cpath fill-rule='evenodd' fill='rgb(30, 30, 30)' d='M6.000,17.000 C6.214,16.992 6.462,16.899 6.619,16.745 L11.717,11.708 C12.009,11.365 12.130,10.711 11.792,10.330 C11.459,9.954 10.815,9.967 10.480,10.340 L6.900,13.882 L6.900,0.943 C6.900,0.422 6.497,-0.001 6.000,-0.001 C5.503,-0.001 5.100,0.422 5.100,0.943 L5.100,13.882 L1.520,10.340 C1.212,10.018 0.544,9.957 0.208,10.330 C-0.129,10.702 -0.021,11.381 0.282,11.708 L5.381,16.745 C5.556,16.917 5.761,17.000 6.000,17.000 L6.000,17.000 Z'/%3E%3C/svg%3E");
    background-position: right 1rem center;
    background-origin: border-box;
    background-size: 12px 17px;
}

.grid-x,
.grid-y {
    padding: 0;
}

.grid-x > li,
.grid-y > li {
    list-style-type: none;
}

.no-bullet {
    padding: 0;
}

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

.wp-caption {
    padding-bottom: 5px;
}

.wp-caption .wp-caption-text {
    font-size: 12px;
    line-height: 15px;
    padding-top: 5px;
}

.padded-content {
    padding-top: 280px;
}

.l-page-wrapper div:first-child {
    margin-top: 0px;
}

.acf-newsletter-wrapper {
    background-color: #0057a0;
    margin: 20px 0;
}

.acf-newsletter-wrapper .grid-margin-y {
    margin-top: 1rem;
}

.acf-newsletter-wrapper .negative-margin-top-10 {
    margin-top: -10px;
}

.acf-newsletter-wrapper button {
    border: #fff 1px solid;
    padding: 20px 30px 20px 15px;
    text-transform: none;
}

.tooltip-tippy {
    display: inline-block;
    border-bottom: 1px dotted black;
    font-weight: 500;
    cursor: help;
}

.tooltip-tippy:hover {
    color: #0057a0;
    border-color: #0057a0;
}

main.grid-container {
    margin-bottom: 70px;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.acf-content-wrapper {
    font-size: 16px;
    font-size: 1rem;
    line-height: 30px;
    line-height: 1.875rem;
    margin: 40px auto;
    max-width: 720px;
}

.acf-content-wrapper .intro {
    font-size: 1.375em;
    line-height: 1.2;
}

.acf-events-wrapper {
    max-width: none;
}

.acf-events-wrapper .grid-container {
    padding: 0;
}

.acf-events-wrapper .title {
    position: relative;
}

.acf-events-wrapper .title:before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    width: 70px;
    height: 100%;
    background: url("../svg/originals/calendar.svg") no-repeat center;
    background-size: contain;
    opacity: 0.11;
    z-index: -1;
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
    -webkit-filter: brightness(0) invert(1);
            filter: brightness(0) invert(1);
}

.acf-events-wrapper .latest-inner {
    border-radius: 20px;
}

.acf-events-wrapper .acf-events-block {
    margin: 40px auto;
}

.acf-events-wrapper .acf-events-block .card-content .card-title {
    color: #0060A9;
}

.acf-events-wrapper .acf-events-block .button {
    float: right;
}

.acf-text-wrapper {
    max-width: 900px;
    margin: 20px auto;
}

@media print, screen and (min-width: 48em) {
    .acf-text-wrapper {
        margin: 40px auto;
    }
}

.acf-text-wrapper img {
    width: 100%;
}

@media print, screen and (min-width: 48em) {
    .acf-text-wrapper .cell {
        margin-top: 20px;
        margin-bottom: 20px;
    }
}

.acf-tiles {
    max-width: 1600px;
    margin: 40px auto;
}

.acf-text-50-wrapper {
    max-width: 900px;
    margin: 20px auto;
}

@media print, screen and (min-width: 48em) {
    .acf-text-50-wrapper {
        margin: 40px auto;
    }
}

@media print, screen and (min-width: 48em) {
    .acf-text-50-wrapper .cell {
        margin-top: 0;
        margin-bottom: 20px;
    }
}

.acf-content-wrapper h1,
.acf-text-wrapper h1,
.acf-text-50-wrapper h1 {
    font-size: 2.125rem;
}

.acf-content-wrapper .intro p,
.acf-text-wrapper .intro p,
.acf-text-50-wrapper .intro p {
    font-size: 1.375rem;
    line-height: 1.2;
}

.acf-video-wrapper {
    max-width: 900px;
    margin: 20px auto;
}

@media print, screen and (min-width: 48em) {
    .acf-video-wrapper {
        margin: 40px auto;
    }
}

.acf-video-wrapper .embed-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%;
}

.acf-video-wrapper iframe,
.acf-video-wrapper object,
.acf-video-wrapper embed {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.acf-gallery-wrapper {
    position: relative;
    max-width: 900px;
    margin: 20px auto;
}

@media print, screen and (min-width: 48em) {
    .acf-gallery-wrapper {
        margin: 40px auto;
    }
}

.acf-gallery-wrapper img {
    width: 100%;
    max-width: none;
}

.acf-folders-wrapper {
    margin: 40px auto;
    padding: 16px;
}

.acf-folders-wrapper .folder {
    padding: 32px 0;
    border-bottom: 1px solid #b6b5b5;
}

.acf-folders-wrapper .folder:last-child {
    margin-bottom: 0;
    padding-bottom: 0;
    border-bottom: 0;
}

.acf-folders-wrapper .folder-meta {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}

@media screen and (min-width: 28.125em) {
    .acf-folders-wrapper .folder-meta {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.acf-folders-wrapper .folder-tag {
    font-weight: 600;
}

.acf-folders-wrapper .folder-date {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 1.4;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.acf-folders-wrapper .folder-title {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.4;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    color: #2b57a0;
}

@media screen and (min-width: 28.125em) {
    .acf-folders-wrapper .folder-title {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 25px;
        line-height: 1.5625rem;
    }
}

.acf-folders-wrapper .folder-content {
    display: none;
    margin: 1rem 0 0;
}

.acf-folders-wrapper .folder-trigger {
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.acf-folders-wrapper .folder-trigger .folder-trigger-icon {
    width: 17px;
    height: 17px;
    margin-left: 40px;
    display: block;
    position: relative;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}

.acf-folders-wrapper .folder-trigger .folder-trigger-icon::before, .acf-folders-wrapper .folder-trigger .folder-trigger-icon::after {
    content: "";
    display: block;
    background-color: #2b57a0;
    position: absolute;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.acf-folders-wrapper .folder-trigger .folder-trigger-icon::before {
    width: 2px;
    height: 17px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
}

.acf-folders-wrapper .folder-trigger .folder-trigger-icon::after {
    width: 17px;
    height: 2px;
    left: 50%;
    top: 50%;
    -webkit-transform: translate(-50%, -50%) scale(1, 1);
            transform: translate(-50%, -50%) scale(1, 1);
}

.acf-folders-wrapper .is-open .folder-trigger .folder-trigger-icon::before {
    content: "";
    display: block;
    background-color: #2b57a0;
    position: absolute;
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
            transform: translate(-50%, -50%) rotate(90deg);
}

.acf-folders-wrapper .is-open .folder-trigger .folder-trigger-icon::after {
    -webkit-transform: translate(-50%, -50%) scale(0, 0);
            transform: translate(-50%, -50%) scale(0, 0);
}

.acf-counters-wrapper {
    padding-top: .5rem;
    padding-bottom: .5rem;
    max-width: 900px;
}

@media print, screen and (min-width: 48em) {
    .acf-counters-wrapper {
        margin: 5rem auto .25rem;
    }
}

.acf-counters-wrapper ul.counters-list {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
}

@media screen and (min-width: 28.125em) {
    .acf-counters-wrapper ul.counters-list {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
    }
}

.acf-counters-wrapper li.counter {
    width: 100%;
    max-width: 260px;
    min-height: 190px;
    margin: 0 auto 1rem;
    background-color: #0057a0;
    padding: 1rem;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
}

@media screen and (min-width: 28.125em) {
    .acf-counters-wrapper li.counter {
        width: calc(50% - 20px);
        max-width: none;
        margin: 0 10px 1.5rem;
    }
}

@media print, screen and (min-width: 48em) {
    .acf-counters-wrapper li.counter {
        width: calc(25% - 20px);
        max-width: none;
        margin: 0 10px 1.5rem;
    }
}

.acf-counters-wrapper li.counter .prefix,
.acf-counters-wrapper li.counter .suffix {
    font-size: 1rem;
    color: #fff;
    line-height: 1;
    display: block;
}

.acf-counters-wrapper li.counter .number-group {
    margin-top: 3px;
    display: block;
    line-height: 1.2;
    font-size: 40px;
}

.acf-counters-wrapper li.counter .number {
    color: #fff;
    display: inline-block;
}

.acf-counters-wrapper li.counter .number-suffix {
    color: #fff;
    display: inline-block;
}

.acf-links-wrapper {
    max-width: 1160px;
    margin: 40px auto;
    padding: 40px 16px;
    background: #f6f5f3;
}

.acf-links-wrapper .links {
    max-width: 850px;
    margin: 0 auto;
}

.acf-links-wrapper .link-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.acf-links-wrapper .link-tag {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: right;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    color: #242424;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22px;
    line-height: 1.375rem;
}

.acf-links-wrapper .link-tag span {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}

.acf-links-wrapper .link-tag::before {
    content: "";
    display: block;
    width: 75px;
    height: 1px;
    margin: 0 24px 0 10px;
    border-bottom: 1px solid #0057a0;
}

.acf-links-wrapper .mobile-hidden {
    display: none;
}

@media print, screen and (min-width: 48em) {
    .acf-links-wrapper .mobile-hidden {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.acf-links-wrapper .button {
    margin-top: 16px;
}

.acf-linked-wrapper {
    max-width: 900px;
    margin: 20px auto;
}

.acf-linked-wrapper .linked-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 1rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.acf-linked-wrapper .linked-content {
    font-size: 16px;
    font-size: 1rem;
    line-height: 30px;
    line-height: 1.875rem;
}

.acf-linked-wrapper .linked-img-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.acf-linked-wrapper .linked-img-wrapper::after {
    content: "";
    display: block;
    z-index: -1;
    position: absolute;
    bottom: 0;
    left: -40px;
    width: 245px;
    height: 192px;
    background-color: #0057a0;
}

.acf-linked-wrapper .linked-img {
    width: 100%;
}

.acf-linked-wrapper .button {
    padding: 0;
    color: #0057a0;
    background: transparent;
}

.single-actualite .acf-text-wrapper {
    width: 720px;
}

.single-actualite .acf-text-50-wrapper {
    width: 720px;
}

.single-actualite .float-container {
    display: inline-block;
}

.single-actualite .float-container .float-right {
    float: right;
    width: 50%;
    margin: 0 0 10px 10px;
}

.single-actualite .float-container .float-left {
    float: left;
    width: 50%;
    margin: 0 20px 10px 0;
}

.background-color {
    position: relative;
    padding: 2rem;
}

.background-color::before {
    content: "";
    display: block;
    z-index: -1;
    position: absolute;
    top: 0;
    height: 100%;
    left: 50%;
    width: 100vw;
    background-color: inherit;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

.acf-images-side-by-side {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.acf-images-side-by-side .image-item {
    width: calc((100% / 3) - 15px);
    margin: 0 5px 10px;
    position: relative;
}

.acf-images-side-by-side .image-item.item-2x2 {
    width: calc((100% / 2) - 15px);
}

.acf-images-side-by-side .image-item .expand-item-img {
    position: absolute;
    right: 0;
    bottom: 4px;
    margin-left: 5px;
}

.acf-images-side-by-side .image-item .expand-item-img a {
    height: 30px;
    width: 30px;
}

.acf-images-side-by-side .image-item .expand-item-img a span {
    background-color: #0057a0;
}

.acf-images-side-by-side .image-item .expand-item-img a span:hover {
    opacity: 0.7;
}

.acf-images-side-by-side .image-item .expand-item-img a span svg {
    fill: white;
}

@media (max-width: 1024px) {
    .acf-images-side-by-side .image-item .expand-item-img {
        display: none;
    }
}

.banner-search {
    margin: 32px 20px 8px 20px;
    position: relative;
    width: calc(100% - 40px);
    max-width: 720px;
}

.banner-search .banner-search-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    z-index: 2;
}

.banner-search .banner-search-wrapper button {
    background: #fefefe;
}

.banner-search #rlvlive div {
    top: calc(100% + 5px) !important;
    left: 0 !important;
}

.banner-search .input-wrapper {
    width: 100%;
    max-width: 570px;
    position: relative;
}

.banner-search .input-wrapper button {
    position: absolute;
    right: 16px;
    top: 50%;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
    z-index: 2;
    cursor: pointer;
}

.banner-search .input-wrapper button .icon-loupe svg {
    fill: #242424;
}

.banner-search input[type="search"] {
    width: 100%;
    background: none;
    z-index: 2;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    margin: 0;
    padding: 24px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    color: #242424;
    font-weight: 400;
    background-color: #fff;
    font-size: 16px;
    font-size: 1rem;
    line-height: 19px;
    line-height: 1.1875rem;
}

.banner-search .btn-filters-panel {
    width: 110px;
    padding: 0 20px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    cursor: pointer;
    background-color: #f6f5f3;
    color: #0158a0;
    text-transform: uppercase;
    font-family: "Dosis", sans-serif;
    font-weight: 700;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-search .btn-filters-panel .icon-arrow-filters {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-left: 8px;
    -webkit-transform: rotate(0);
            transform: rotate(0);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-search .btn-filters-panel .icon-arrow-filters svg {
    fill: #0158a0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.banner-search .btn-filters-panel:hover, .banner-search .btn-filters-panel.is-open {
    color: #f6f5f3;
    background-color: #0158a0;
}

.banner-search .btn-filters-panel:hover svg, .banner-search .btn-filters-panel.is-open svg {
    fill: #f6f5f3;
}

.banner-search .btn-filters-panel.is-open .icon-arrow-filters {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.banner-search .filters-panel {
    width: 100%;
    padding: 20px;
    background-color: #f6f5f3;
    position: absolute;
    top: calc(100% + 4px);
    left: 50%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: translate(-50%, -10px);
            transform: translate(-50%, -10px);
    pointer-events: none;
    opacity: 0;
    z-index: 1;
    visibility: hidden;
}

@media print, screen and (min-width: 48em) {
    .banner-search .filters-panel {
        padding: 32px 48px 40px;
    }
}

@media print, screen and (min-width: 64em) {
    .banner-search .filters-panel {
        width: 965px;
    }
}

.banner-search .filters-panel.is-open {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    visibility: visible;
}

.banner-search .filters-panel .filters-panel-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}

@media print, screen and (min-width: 48em) {
    .banner-search .filters-panel .filters-panel-wrapper {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.banner-search .filters-panel .col {
    width: 100%;
}

.banner-search .filters-panel .col:first-child {
    width: 100%;
}

@media print, screen and (min-width: 48em) {
    .banner-search .filters-panel .col:first-child {
        max-width: 198px;
        margin-right: 30px;
    }
}

.banner-search .filters-panel .col .dates-filters {
    margin-bottom: 47px;
}

.banner-search .filters-panel .date-range input {
    background-color: #fff;
    border: 1px solid #818181;
}

.banner-search .filters-panel .filters-title {
    width: 100%;
    margin: 0 0 24px;
    padding-bottom: 15px;
    color: #242424;
    text-align: left;
    text-transform: uppercase;
    font-size: 16px;
    font-size: 1rem;
    line-height: 20px;
    line-height: 1.25rem;
    font-weight: 500;
    font-family: "Dosis", sans-serif;
    border-bottom: 1px solid #818181;
}

.banner-search .filters-panel .cat-filters,
.banner-search .filters-panel .types-filters {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
}

@media print, screen and (min-width: 48em) {
    .banner-search .filters-panel .cat-filters,
    .banner-search .filters-panel .types-filters {
        -webkit-column-count: 2;
           -moz-column-count: 2;
                column-count: 2;
    }
}

@media print, screen and (min-width: 64em) {
    .banner-search .filters-panel .cat-filters,
    .banner-search .filters-panel .types-filters {
        -webkit-column-count: 3;
           -moz-column-count: 3;
                column-count: 3;
    }
}

.banner-search .filters-panel .cat-filters li,
.banner-search .filters-panel .types-filters li {
    width: 100%;
    display: inline-block;
    margin: 0 15px 20px 0;
}

@media print, screen and (min-width: 48em) {
    .banner-search .filters-panel .cat-filters li,
    .banner-search .filters-panel .types-filters li {
        max-width: 185px;
    }
}

.banner-search .filters-panel .cat-filters li .checkmark-container,
.banner-search .filters-panel .types-filters li .checkmark-container {
    margin: 0;
    line-height: 1.2;
    text-align: left;
    display: block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
}

.banner-search .filters-panel .cat-filters li .checkmark-container::hover input ~ .checkmark,
.banner-search .filters-panel .types-filters li .checkmark-container::hover input ~ .checkmark {
    background-color: #c3c3c3;
}

.banner-search .filters-panel .cat-filters li input,
.banner-search .filters-panel .types-filters li input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.banner-search .filters-panel .cat-filters li input:checked ~ .checkmark::after,
.banner-search .filters-panel .types-filters li input:checked ~ .checkmark::after {
    opacity: 1;
}

.banner-search .filters-panel .cat-filters li input:focus ~ .checkmark,
.banner-search .filters-panel .types-filters li input:focus ~ .checkmark {
    outline: none;
}

[data-state="keydown"] .banner-search .filters-panel .cat-filters li input:focus ~ .checkmark, [data-state="keydown"]
.banner-search .filters-panel .types-filters li input:focus ~ .checkmark {
    -webkit-box-shadow: 0 0 0 1px #fff, 0 0 0 3px #000, 0 0 0 4px #fff !important;
            box-shadow: 0 0 0 1px #fff, 0 0 0 3px #000, 0 0 0 4px #fff !important;
}

.banner-search .filters-panel .cat-filters li .checkmark,
.banner-search .filters-panel .types-filters li .checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: #fff;
    border: 1px solid #818181;
}

.banner-search .filters-panel .cat-filters li .checkmark::after,
.banner-search .filters-panel .types-filters li .checkmark::after {
    content: "";
    position: absolute;
    top: 1px;
    left: 6px;
    width: 7px;
    height: 13px;
    border: 1px solid #242424;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    opacity: 0;
}

.banner-search .filters-panel .types-filters {
    -webkit-column-count: 1;
       -moz-column-count: 1;
            column-count: 1;
}

.banner-search .filters-panel .button-group {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
}

.banner-search .filters-panel .button-group button {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    cursor: pointer;
}

.banner-search .filters-panel .button-group button.reset-tags {
    margin-right: 30px;
    color: #242424;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 21px;
    line-height: 1.3125rem;
    text-decoration: underline;
}

.banner-search .filters-panel .button-group button.filter-btn {
    padding: 11px 18px;
    border: 1px solid #0158a0;
}

.banner {
    position: relative;
    margin: 0 -1rem 20px;
    color: #fefefe;
    background-image: url("../img/banner-csq.png");
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
}

@media print, screen and (min-width: 48em) {
    .banner {
        margin: 0;
        margin-bottom: 50px;
    }
}

.banner .banner-inner {
    z-index: 2;
    position: relative;
    max-width: 1060px;
    min-height: 325px;
    margin: 0 auto;
    padding: 1rem;
}

@media print, screen and (min-width: 48em) {
    .banner .banner-inner {
        min-height: 350px;
    }
}

.banner h1 {
    font-size: 38px;
    font-size: 2.375rem;
    line-height: 1.4;
    margin: 200px 0 0 0;
    text-shadow: 0 0 65px rgba(10, 10, 10, 0.55);
}

@media print, screen and (min-width: 48em) {
    .banner h1 {
        font-size: 42px;
        font-size: 2.625rem;
        line-height: 1.4;
        line-height: 1.2;
    }
}

.banner h1.smalltext {
    font-size: 18px;
    text-transform: uppercase;
}

.banner p {
    line-height: 1;
}

.banner .picture-credit {
    position: absolute;
    bottom: 0;
    right: 16px;
    padding: 0px 10px;
    background-color: #555555e8;
    font-size: 13px;
    font-size: 0.8125rem;
    line-height: 1.4;
}

@media print, screen and (min-width: 48em) {
    .banner .picture-credit {
        right: 0;
    }
}

.banner.lower-banner {
    min-height: 325px;
}

@media print, screen and (min-width: 48em) {
    .banner.lower-banner {
        min-height: 350px;
    }
}

.banner.lower-banner .banner-content {
    padding-top: 90px;
}

.banner.lower-banner .banner-text-wrapper {
    max-width: 720px;
    margin: 0 1em;
    margin-bottom: 10px;
}

@media print, screen and (min-width: 48em) {
    .banner.lower-banner .banner-text-wrapper {
        margin: 0 auto;
        margin-bottom: 10px;
    }
}

.banner.lower-banner h1 {
    margin: 250px 0 0 0;
}

.no-background {
    background-image: none;
}

.banner-desktop,
.banner-mobile,
.banner-mobile-small {
    z-index: -1;
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    width: 100%;
    height: 100%;
    position: absolute;
    background-image: url("../img/banner-csq.png");
}

@media screen and (min-width: 768px) {
    .banner-desktop {
        display: block;
    }
    .banner-mobile {
        display: none;
    }
    .banner-mobile-small {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .banner-desktop {
        display: none;
    }
    .banner-mobile {
        display: block;
    }
    .banner-mobile-small {
        display: none;
    }
    .always-show {
        display: block;
    }
}

@media screen and (max-width: 375px) {
    .banner-desktop {
        display: none;
    }
    .banner-mobile {
        display: none;
    }
    .banner-mobile-small {
        display: block;
    }
    .always-show {
        display: block;
    }
}

.breadcrumb {
    margin: 0 auto 32px auto;
    max-width: 720px;
    padding: 0;
    list-style: none;
    display: none;
}

@media print, screen and (min-width: 48em) {
    .breadcrumb {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-flex-wrap: wrap;
            -ms-flex-wrap: wrap;
                flex-wrap: wrap;
        -webkit-box-pack: start;
        -webkit-justify-content: flex-start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
    }
}

.breadcrumb li {
    line-height: 1;
    margin: 0 8px 10px 0;
    color: #242424;
    font-weight: 700;
}

.breadcrumb li .icon-wrapper {
    width: 4px;
    margin-right: 6px;
    display: inline-block;
}

.breadcrumb li .icon-wrapper svg {
    fill: #c3c3c3;
}

.breadcrumb li a {
    color: #000;
    font-weight: 400;
}

.breadcrumb li a:hover {
    text-decoration: underline;
}

.breadcrumb li.active {
    margin-right: 0;
    font-weight: 700;
}

.button {
    cursor: pointer;
    outline: none;
    text-transform: uppercase;
    padding: 0;
    margin: 0;
    background: none;
    border: 0;
    color: #0057a0;
    font-family: "Dosis", sans-serif;
    font-weight: 800;
    letter-spacing: 0.05em;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4;
}

.button .icon-wrapper {
    vertical-align: middle;
    margin-top: -2px;
    margin-left: 8px;
    fill: currentColor;
    -webkit-transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.button:hover .icon-wrapper {
    -webkit-transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
}

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

.button.right {
    float: right;
}

a:hover span.button {
    -webkit-transition: background-color 0.25s ease-out, color 0.25s ease-out;
    transition: background-color 0.25s ease-out, color 0.25s ease-out;
}

a:hover span.button.primary {
    background-color: #004680;
}

a:hover span.button.secondary {
    background-color: #5e5e5e;
}

a:hover span.button.success {
    background-color: #22bb5b;
}

a:hover span.button.warning {
    background-color: #cc8b00;
}

a:hover span.button.alert {
    background-color: #a53b2a;
}

a:hover span.button .icon-wrapper {
    -webkit-transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
}

.card-image {
    position: relative;
}

.card-image:hover .card-img-wrapper {
    background-color: #0057a0;
}

.card-image:hover .card-img-wrapper img {
    opacity: 0.5;
}

.card-image .card-img-wrapper, .card-image img {
    -webkit-transition: all 0.3s;
    /* Safari prior 6.1 */
    transition: all 0.3s;
}

.card-image .card-inner {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    padding: 30px 24px;
}

.card-image .card-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
    color: #fff;
}

.card-image .card-tag {
    display: inline-block;
    font-family: "Dosis", sans-serif;
    font-weight: 800;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22px;
    line-height: 1.375rem;
    border-bottom: solid 1px #fff;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.card-image img {
    width: 100%;
}

.card {
    position: relative;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}

.card:hover .card-img-wrapper {
    background-color: #0057a0;
}

.card:hover .card-img-wrapper img {
    opacity: 0.5;
}

.card:hover a, .card:hover .card-tag, .card:hover h3.h6 {
    color: #0057a0;
}

.card .card-img-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    overflow: hidden;
}

.card .card-img-wrapper img {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    min-width: 100%;
    min-height: 100%;
}

.card .card-img-wrapper, .card a, .card .card-tag, .card h3.h6 {
    -webkit-transition: all 0.3s;
    /* Safari prior 6.1 */
    transition: all 0.3s;
}

.card .card-inner {
    padding: 20px 0 0;
}

.card .card-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
}

.card .card-date {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.card .card-date::before {
    content: "";
    display: block;
    width: 56px;
    height: 1px;
    margin: 0 16px 0 0;
    border-bottom: 1px solid #b6b5b5;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
}

.card .card-date span {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    color: #242424;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22px;
    line-height: 1.375rem;
}

.card .read-more {
    text-transform: uppercase;
    display: block;
    color: #0057a0;
    font-weight: bold;
}

.card .read-more:before {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
}

.card .card-tag {
    font-family: "Dosis", sans-serif;
    font-weight: 800;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22px;
    line-height: 1.375rem;
    border-bottom: solid 1px #0057a0;
    color: #242424;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 12px;
}

.card a {
    color: #0a0a0a;
}

.card a .icon-wrapper {
    -webkit-transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
}

.card img {
    width: 100%;
}

.search-results .card .card-img-wrapper .card-img {
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 230px;
}

.search-results .card .list-item-category {
    margin-bottom: 15px;
    padding-bottom: 3px;
    display: inline-block;
    text-transform: uppercase;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 17px;
    line-height: 1.0625rem;
    font-family: "Dosis", sans-serif;
    font-weight: 700;
}

.search-results .card .list-item-category > a {
    border-bottom: 1px solid #0158a0;
}

.search-results .card .card-title {
    margin-bottom: 15px;
}

.search-results .card .card-date {
    margin: 16px 0 24px;
}

.slick-blocs-wrapper {
    position: relative;
}

@media print, screen and (min-width: 48em) {
    .slick-blocs-wrapper {
        margin: 0 40px;
    }
}

@media screen and (min-width: 81.25em) {
    .slick-blocs-wrapper {
        margin: 0;
    }
}

.slick-blocs-wrapper .slick-prev,
.slick-blocs-wrapper .slick-next {
    width: 45px;
    height: 45px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    position: absolute;
    top: 50%;
    z-index: 2;
    border: 1px solid #b6b5b5;
    cursor: pointer;
}

.slick-blocs-wrapper .slick-prev svg,
.slick-blocs-wrapper .slick-next svg {
    fill: #0057a0;
}

.slick-blocs-wrapper .slick-prev {
    left: 0;
    -webkit-transform: translate(-60px, -50%);
            transform: translate(-60px, -50%);
}

.slick-blocs-wrapper .slick-next {
    right: 0;
    -webkit-transform: translate(60px, -50%);
            transform: translate(60px, -50%);
}

.slick-blocs-wrapper .slick-slider {
    -webkit-user-select: text;
       -moz-user-select: text;
        -ms-user-select: text;
            user-select: text;
}

.carousel-blocs {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

@media print, screen and (min-width: 48em) {
    .carousel-blocs {
        display: block;
        -webkit-box-orient: unset;
        -webkit-box-direction: unset;
        -webkit-flex-direction: unset;
            -ms-flex-direction: unset;
                flex-direction: unset;
        -webkit-box-align: unset;
        -webkit-align-items: unset;
            -ms-flex-align: unset;
                align-items: unset;
    }
}

.carousel-blocs .slick-track {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
}

.carousel-blocs .carousel-bloc {
    max-width: 350px;
    height: inherit !important;
    margin: 0 auto 16px;
    background-color: #f6f5f3;
    position: relative;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
}

@media print, screen and (min-width: 48em) {
    .carousel-blocs .carousel-bloc {
        max-width: none;
        margin: 0 10px;
    }
}

.carousel-blocs .carousel-bloc .carousel-bloc-wrapper {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-align: center;
    padding: 40px 24px 32px;
}

.carousel-blocs .carousel-bloc .carousel-bloc-img {
    width: 100%;
    margin-bottom: 30px;
    text-align: center;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

@media print, screen and (min-width: 48em) {
    .carousel-blocs .carousel-bloc .carousel-bloc-img {
        height: 90px;
    }
}

.carousel-blocs .carousel-bloc .carousel-bloc-img img {
    max-height: 80px;
}

.carousel-blocs .carousel-bloc .carousel-bloc-title-wrapper {
    width: 100%;
}

@media print, screen and (min-width: 48em) {
    .carousel-blocs .carousel-bloc .carousel-bloc-title-wrapper {
        margin-bottom: 20px;
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: center;
        -webkit-align-items: center;
            -ms-flex-align: center;
                align-items: center;
    }
}

.carousel-blocs .carousel-bloc .carousel-bloc-title-wrapper .carousel-bloc-title {
    font-size: 25px;
    font-size: 1.5625rem;
    line-height: 30px;
    line-height: 1.875rem;
}

.carousel-blocs .carousel-bloc .carousel-bloc-text {
    margin-bottom: 20px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
}

@media print, screen and (min-width: 48em) {
    .carousel-blocs .carousel-bloc .carousel-bloc-text {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
        -webkit-box-align: start;
        -webkit-align-items: flex-start;
            -ms-flex-align: start;
                align-items: flex-start;
    }
}

.carousel-blocs .carousel-bloc .carousel-bloc-cta {
    text-transform: uppercase;
    font-weight: 700;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
    line-height: 1.375rem;
    text-align: center;
}

@media print, screen and (min-width: 48em) {
    .carousel-blocs .carousel-bloc .carousel-bloc-cta {
        height: 50px;
    }
}

.carousel-blocs .carousel-bloc .carousel-bloc-cta a {
    padding: 11px 16px 12px;
    display: block;
    background-color: #0158a0;
    color: #fff;
    font-family: "Dosis", sans-serif;
}

.single-event .event-infos {
    margin-bottom: 2em;
}

.single-event .event-info {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.single-event .event-info svg {
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.current-filters-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    margin-bottom: 42px;
}

.current-filters-wrapper .current-filters {
    margin: 0 -10px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-flow: row wrap;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.current-filters-wrapper .current-filter {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    border: 1px solid #9d9d9d;
    border-radius: 3px;
    padding: 11px 24px;
    margin: 5px;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 16px;
    line-height: 1rem;
}

.current-filters-wrapper .current-filter-remove {
    width: 12px;
    height: 12px;
    margin-left: 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.current-filters-wrapper .current-filter-remove svg {
    fill: #0158a0;
}

.current-filters-wrapper .reset-tags, .current-filters-wrapper .reset-link {
    display: inline-block;
    font-size: 14px;
    line-height: 19px;
    text-decoration: underline;
    padding: 7px 10px;
}

.current-filters-wrapper .reset-tags:hover, .current-filters-wrapper .reset-link:hover {
    text-decoration: none;
}

.results-header-filters {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    padding: 0 0 24px;
    border-bottom: 1px solid #242424;
}

@media print, screen and (min-width: 48em) {
    .results-header-filters {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.results-header-filters .header-search-title {
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
}

.results-header-filters .header-search-title h2 {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 24px;
    line-height: 1.5rem;
}

@media print, screen and (min-width: 48em) {
    .results-header-filters .header-search-title h2 {
        font-size: 30px;
        font-size: 1.875rem;
        line-height: 36px;
        line-height: 2.25rem;
    }
}

.results-header-filters .header-search-title h2 span {
    display: block;
}

@media print, screen and (min-width: 48em) {
    .results-header-filters .header-search-title h2 span {
        display: inline;
    }
}

@media print, screen and (min-width: 48em) {
    .results-header-filters .header-search-title {
        -webkit-box-flex: 1;
        -webkit-flex-grow: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
    }
}

.results-header-filters .orderby {
    display: none;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

@media print, screen and (min-width: 48em) {
    .results-header-filters .orderby {
        margin-bottom: 0;
    }
}

.results-header-filters .orderby .orderby-label {
    height: 45px;
    padding: 0 16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    background-color: #f6f5f3;
    color: #0158a0;
    cursor: pointer;
    background-color: #f6f5f3;
    color: #0158a0;
    text-transform: uppercase;
    font-family: "Dosis", sans-serif;
    font-weight: 700;
}

.results-header-filters .orderby .orderby-label .icon-search-filters {
    margin-left: 8px;
}

.results-header-filters .orderby .orderby-label .icon-search-filters svg {
    fill: #0158a0;
}

.results-header-filters .orderby .orderby-select-wrapper {
    width: 300px;
    padding: 33px 24px 20px;
    background-color: #f6f5f3;
    position: absolute;
    top: 100%;
    left: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: translate(0, -10px);
            transform: translate(0, -10px);
    pointer-events: none;
    opacity: 0;
    z-index: 10;
}

@media print, screen and (min-width: 48em) {
    .results-header-filters .orderby .orderby-select-wrapper {
        left: auto;
        right: 0;
    }
}

.results-header-filters .orderby .orderby-select-wrapper.is-open {
    opacity: 1;
    pointer-events: all;
    -webkit-transform: translate(0, 0);
            transform: translate(0, 0);
    visibility: visible;
}

.footer .cell-logo {
    -webkit-align-self: flex-start;
        -ms-flex-item-align: start;
            align-self: flex-start;
}

.footer a {
    -webkit-transition: all 100ms ease;
    transition: all 100ms ease;
    font-weight: 300;
    color: #000;
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.375rem;
}

.footer a:hover {
    -webkit-transition: all 100ms ease;
    transition: all 100ms ease;
    color: #0057a0;
}

.footer .current-item a {
    color: #0057a0;
}

.footer .logo-wrapper {
    max-width: 160px;
    margin-bottom: 16px;
    margin-bottom: 36px;
}

.footer .footer-primary {
    padding: 24px 0;
}

.footer .footer-primary h3 {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.footer .footer-primary p {
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.375rem;
    font-weight: 300;
}

.footer .footer-secondary {
    border-top: solid 1px #c3c3c3;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.4;
    padding: 16px 0;
}

.footer .footer-tertiary {
    border-top: solid 1px #c3c3c3;
}

.footer .footer-tertiary .partners {
    padding-top: 40px;
    padding-bottom: 40px;
}

.header {
    z-index: 99;
    position: relative;
    font-family: "Roboto", sans-serif;
}

.header .wrapper-newsletter {
    background-color: #0060a9;
}

.header .wrapper-newsletter .newsletter-box {
    position: relative;
}

.header .wrapper-newsletter .newsletter-box p {
    margin-bottom: 0;
    color: white;
}

.header .wrapper-newsletter .newsletter-box .newsletter-message {
    font-size: 1rem;
}

.header .wrapper-newsletter button.close-newsletterMessage {
    position: absolute;
    right: 50px;
    top: 0px;
    cursor: pointer;
}

.header .wrapper-newsletter button.close-newsletterMessage svg {
    fill: white;
}

.header .wrapper-alert {
    background: #f7ca55;
}

.header .alerts-box ul {
    list-style: none;
    margin: 0;
}

.header .alerts-box ul li {
    position: relative;
    padding: 5px 10px;
}

.header .alerts-box ul li .icon-warning {
    position: absolute;
    top: 5px;
}

.header .alerts-box ul li p {
    margin: 0 30px;
    display: inline-block;
}

.header .alerts-box ul li p .alert-title {
    font-weight: bold;
    font-size: 1.125rem;
}

.header .alerts-box ul li button {
    cursor: pointer;
}

.header .alerts-box ul li button.open-alert {
    position: absolute;
    font-weight: bold;
    right: 50px;
    top: 6px;
}

.header .alerts-box ul li button.open-alert:hover {
    text-decoration: underline;
}

.header .alerts-box ul li button.open-alert .icon-down-caret.opened svg {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.header .alerts-box ul li button.close-alert {
    position: absolute;
    right: 10px;
    top: 6px;
}

.header .alerts-box ul li .content-alert {
    display: none;
}

.header.is-menu-open::after {
    pointer-events: initial;
    opacity: 1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header .header-inner {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

@media print, screen and (min-width: 48em) {
    .header .header-inner {
        -webkit-box-align: stretch;
        -webkit-align-items: stretch;
            -ms-flex-align: stretch;
                align-items: stretch;
    }
}

.header .header-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-flow: column nowrap;
        -ms-flex-flow: column nowrap;
            flex-flow: column nowrap;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
}

@media print, screen and (min-width: 64em) {
    .header .header-flex {
        -webkit-box-pack: justify;
        -webkit-justify-content: space-between;
            -ms-flex-pack: justify;
                justify-content: space-between;
        margin-top: 24px;
    }
}

.header .site-logo {
    margin-top: 10px;
    margin-bottom: 10px;
    max-width: 76px;
    max-width: 120px;
}

@media print, screen and (min-width: 64em) {
    .header .site-logo {
        margin-top: 24px;
        margin-bottom: 0;
        max-width: 196px;
    }
}

.header .macsq-site-logo {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.header .macsq-site-logo > * {
    max-height: 60px;
    margin-right: 12px;
}

@media print, screen and (min-width: 48em) {
    .header .macsq-site-logo > * {
        max-height: 83px;
    }
}

.header .macsq-site-logo > *:last-child {
    margin-top: 10px;
    margin-right: 0;
}

.header .secondary-nav {
    padding-top: 0;
}

.header .secondary-nav a {
    font-size: 15px;
    font-size: 0.9375rem;
    line-height: 1.4;
    display: inline-block;
    padding: 6px 10px;
    -webkit-transition: all 100ms ease;
    transition: all 100ms ease;
    text-transform: uppercase;
    color: #000;
}

.header .secondary-nav a:hover {
    color: #0057a0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

@media print, screen and (min-width: 64em) {
    .header .secondary-nav a {
        padding: 6px 18px;
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 30px;
        line-height: 1.875rem;
    }
}

.header .secondary-nav .current-item a {
    color: #0057a0;
}

@media print, screen and (min-width: 64em) {
    .header .secondary-nav {
        padding-top: 0;
        margin-top: 0;
        margin-bottom: 0px;
        margin-right: 20px;
    }
}

.header .primary-nav {
    margin: 0;
}

@media print, screen and (min-width: 64em) {
    .header .primary-nav {
        margin: 20px 0;
    }
}

.header.fixed-menu {
    position: fixed;
    top: 0;
    width: 100%;
    background: white;
    border-bottom: 1px solid #686868;
}

.header.fixed-menu .header-inner {
    display: none;
}

.header.fixed-menu .primary-nav {
    margin: 0;
}

.header.fixed-menu .menu {
    border: none;
}

.header.fixed-menu .menu .logo-item {
    display: inherit;
}

.header.fixed-menu .menu .logo-item .site-logo {
    margin: 0;
    padding: 10px 10px 10px 0;
}

.header.fixed-menu .menu .logo-item .site-logo img {
    width: 75px;
}

.header.fixed-menu .menu .logo-item .site-logo.macsq-site-logo {
    display: block;
}

.header.fixed-menu .menu .logo-item .site-logo.macsq-site-logo img {
    width: 63px;
    margin-right: 2px;
}

.header.fixed-menu .menu .menu-item > a {
    padding: 23px;
}

.header .btn-menu {
    cursor: pointer;
    margin-left: 20px;
}

.header .mobile-wrapper {
    display: none;
    z-index: 99;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background-color: #fefefe;
}

@media print, screen and (min-width: 64em) {
    .header .mobile-wrapper {
        display: block !important;
        position: static;
    }
}

.header .mobile-wrapper .primary-nav,
.header .mobile-wrapper .secondary-nav,
.header .mobile-wrapper .social-nav {
    padding-top: 12px;
    padding-bottom: 12px;
}

@media print, screen and (min-width: 64em) {
    .header .mobile-wrapper .primary-nav,
    .header .mobile-wrapper .secondary-nav,
    .header .mobile-wrapper .social-nav {
        padding-top: 0;
        padding-bottom: 0;
        -webkit-box-pack: center;
        -webkit-justify-content: center;
            -ms-flex-pack: center;
                justify-content: center;
    }
}

.header .mobile-wrapper li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.header .mobile-wrapper a {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}

.header .menu {
    border-top: 0;
    border-bottom: 0;
}

@media print, screen and (min-width: 64em) {
    .header .menu {
        padding-right: 0;
        padding-left: 0;
        border-top: solid 1px #686868;
        border-bottom: solid 1px #686868;
    }
}

.header .menu .logo-item {
    display: none;
}

.header .menu .menu-item {
    border-top: solid 1px #686868;
}

.header .menu .menu-item > a {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
    text-transform: uppercase;
    padding: 6px 0;
    color: #000;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    position: relative;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding: 8px 10px;
    font-weight: normal;
}

@media print, screen and (min-width: 64em) {
    .header .menu .menu-item > a {
        padding: 16px 23px;
        border-top: 0;
    }
}

.header .menu .menu-item > a:hover, .header .menu .menu-item > a.current-item {
    color: #0057a0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.header .menu .menu-item.current-item > a {
    color: #0057a0;
}

.header .menu .menu-item:last-child {
    border-bottom: solid 1px #686868;
}

@media print, screen and (min-width: 64em) {
    .header .menu .menu-item:last-child {
        border-bottom: 0;
    }
}

@media print, screen and (min-width: 64em) {
    .header .menu .menu-item {
        border-top: 0;
    }
}

.header .menu .has-submenu > a::before {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: transparent;
}

.header .menu .has-submenu > a:hover:before {
    background: #0057a0;
}

.header .menu .active-parent.has-submenu > a {
    color: #0057a0;
}

.header .menu .active-parent.has-submenu > a::before {
    background: #0057a0;
}

.header .menu .is-open > a {
    color: #0057a0;
}

.header .submenu {
    display: none;
    width: 100vw;
    background: #fff;
    opacity: 1 !important;
}

@media print, screen and (min-width: 64em) {
    .header .submenu {
        margin: 8px -40px;
        padding: 12px 40px;
        position: absolute;
        top: 100%;
        left: 0;
        width: auto;
        min-width: 200px;
        margin: 0;
        padding: 0;
        opacity: 0;
        -webkit-box-shadow: 0 15px 20px -8px rgba(0, 0, 0, 0.5);
                box-shadow: 0 15px 20px -8px rgba(0, 0, 0, 0.5);
    }
}

.header .submenu .submenu-item > a {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4;
    color: #000;
    width: 100%;
    margin-left: 30px;
    text-transform: uppercase;
    padding: 6px 0;
}

.header .submenu .submenu-item > a:hover {
    color: #0057a0;
    -webkit-transition: all 100ms ease;
    transition: all 100ms ease;
}

@media print, screen and (min-width: 64em) {
    .header .submenu .submenu-item > a {
        padding: 10px 23px;
        margin-left: 0;
    }
}

.header .submenu .submenu-item.current-item > a, .header .submenu .submenu-item.active-parent > a {
    color: #0057a0;
}

.header .icon-down-caret {
    position: absolute;
    right: 0;
    top: calc(50% - 11px);
}

.header .icon-down-caret svg {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

@media print, screen and (min-width: 64em) {
    .header .icon-down-caret {
        position: relative;
        right: auto;
        top: auto;
    }
}

.header .is-open .icon-down-caret svg {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
}

.header .macsq-subscribe-menu {
    background-color: #f3816e;
    border-radius: 20px;
    padding: 8px 20px;
    margin-top: 16px;
}

.header .macsq-subscribe-menu a {
    color: #fefefe;
    text-transform: uppercase;
    font-weight: 500;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.header .macsq-subscribe-menu svg {
    margin-left: 12px;
    fill: #fefefe;
}

.header .icon-down-caret {
    position: absolute;
    right: 0;
    top: 0;
    height: 100%;
    width: 45px;
    background-color: #e5e9f5;
}

@media print, screen and (min-width: 64em) {
    .header .icon-down-caret {
        position: relative;
        right: auto;
        top: auto;
        height: auto;
        width: auto;
        background-color: transparent;
    }
}

.header .icon-down-caret svg {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    top: calc(50% - 11px);
    left: calc(50% - 14px);
    position: relative;
}

@media print, screen and (min-width: 64em) {
    .header .icon-down-caret svg {
        position: static;
        top: initial;
        left: initial;
    }
}

.header .menu .has-submenu > a::before {
    display: none;
}

@media print, screen and (min-width: 64em) {
    .header .menu .has-submenu > a::before {
        display: block;
    }
}

.header .macsq-menu-spacer {
    margin-bottom: 24px;
}

.header .menu .menu-item {
    border-top: none;
}

.header .menu .menu-item:last-child {
    border-bottom: none;
}

.header .menu .menu-item.current-item > a {
    color: #F3523F;
}

@media print, screen and (min-width: 64em) {
    .header .menu .menu-item.current-item > a {
        color: #0057a0;
    }
}

.header .menu .menu-item > a {
    font-size: 21px;
    font-size: 1.3125rem;
    line-height: 1.4;
    text-transform: none;
    font-weight: bold;
}

@media print, screen and (min-width: 64em) {
    .header .menu .menu-item > a {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 1.4;
        text-transform: uppercase;
        font-weight: normal;
    }
}

.header .menu .menu-item > a:hover, .header .menu .menu-item > a.current-item {
    background: #e5e9f5;
    color: #F3523F;
}

@media print, screen and (min-width: 64em) {
    .header .menu .menu-item > a:hover, .header .menu .menu-item > a.current-item {
        background: transparent;
        color: #0057a0;
    }
}

.header .menu .submenu {
    background: #e5e9f5;
}

@media print, screen and (min-width: 64em) {
    .header .menu .submenu {
        background: #fefefe;
    }
}

.header .menu .submenu .submenu-item > a {
    font-size: 19px;
    font-size: 1.1875rem;
    line-height: 1.4;
    text-transform: none;
    font-weight: bold;
}

@media print, screen and (min-width: 64em) {
    .header .menu .submenu .submenu-item > a {
        font-size: 16px;
        font-size: 1rem;
        line-height: 1.4;
        text-transform: uppercase;
        font-weight: normal;
    }
}

.header .menu .submenu .submenu-item > a:hover {
    background: #e5e9f5;
    color: #F3523F;
}

@media print, screen and (min-width: 64em) {
    .header .menu .submenu .submenu-item > a:hover {
        background: transparent;
        color: #0057a0;
    }
}

.hero-wrapper {
    margin-top: 0;
    margin-bottom: 0;
    background-size: cover, cover;
}

.hero-wrapper .hero-content {
    min-height: 360px;
    padding-bottom: 20px;
}

@media screen and (min-width: 92.5em) {
    .hero-wrapper .hero-content {
        min-height: 450px;
    }
}

.hero-wrapper h2 {
    color: #fefefe;
    font-size: 30px;
    font-size: 1.875rem;
    line-height: 30px;
    line-height: 1.875rem;
    line-height: 1.2 !important;
}

@media print, screen and (min-width: 48em) {
    .hero-wrapper h2 {
        font-size: 36px;
        font-size: 2.25rem;
        line-height: 1.4;
    }
}

@media print, screen and (min-width: 64em) {
    .hero-wrapper h2 {
        font-size: 42px;
        font-size: 2.625rem;
        line-height: 1.4;
    }
}

.hero-wrapper p {
    color: #fefefe;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4;
    margin-bottom: 20px;
}

@media print, screen and (min-width: 48em) {
    .hero-wrapper p {
        font-size: 18px;
        font-size: 1.125rem;
        line-height: 1.4;
    }
}

@media print, screen and (min-width: 64em) {
    .hero-wrapper p {
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 30px;
        line-height: 1.875rem;
    }
}

@media print, screen and (min-width: 64em) {
    .hero-wrapper {
        margin-top: 0;
        margin-bottom: 30px;
    }
}

.home-events {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.home-event {
    padding-top: 24px;
    padding-bottom: 24px;
}

@media print, screen and (min-width: 48em) {
    .home-event {
        width: calc(50% - 17px);
    }
}

.home-event:hover .home-event-title {
    color: #0057a0;
}

.home-event .home-event-title {
    -webkit-transition: all 0.3s;
    /* Safari prior 6.1 */
    transition: all 0.3s;
}

.home-event-link {
    display: inline-block;
}

.home-event-date {
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22px;
    line-height: 1.375rem;
    color: #0987c6;
    text-transform: uppercase;
    font-weight: 900;
    margin-bottom: 10px;
}

.home-event-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
    color: #242424;
}

.home-section {
    padding-top: 24px;
    padding-bottom: 60px;
}

.home-section.home-section--bg {
    background: #f6f5f3;
}

@media print, screen and (min-width: 48em) {
    .home-section {
        padding-top: 5px;
    }
}

.home-section-header {
    margin-bottom: 1rem;
}

.home-section-header h2 {
    margin-bottom: 0;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.4;
}

@media print, screen and (min-width: 48em) {
    .home-section-header h2 {
        font-size: 2rem;
    }
}

.macsq-home-section {
    margin-top: 40px;
}

.macsq-home-section .macsq-black {
    color: #0a0a0a !important;
}

.macsq-home-section .macsq-home-tag {
    padding-bottom: 0;
    margin-bottom: 0;
}

.macsq-home-section .macsq-home-header-section {
    display: block;
    text-align: right;
}

@media print, screen and (min-width: 48em) {
    .macsq-home-section .macsq-home-header-section {
        display: -webkit-box;
        display: -webkit-flex;
        display: -ms-flexbox;
        display: flex;
    }
}

.macsq-home-section .macsq-home-header-section .macsq-home-section-header {
    text-align: left;
    margin-right: 0px;
    position: relative;
}

@media print, screen and (min-width: 48em) {
    .macsq-home-section .macsq-home-header-section .macsq-home-section-header {
        margin-right: 20px;
    }
}

.macsq-home-section .macsq-home-header-section .macsq-home-section-header::before {
    content: "";
    display: block;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #27334a;
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
}

.macsq-home-section .macsq-home-header-section .macsq-home-section-header h2 {
    font-size: 3rem;
    font-weight: bold;
    padding: 20px;
}

.macsq-home-section .macsq-home-header-section .macsq-home-section-header .macsq-home-block-title1 {
    color: #FFB71A;
}

.macsq-home-section .macsq-home-header-section .macsq-home-section-header .macsq-home-block-title2 {
    color: #F3523F;
}

.macsq-home-section .macsq-home-header-section .macsq-subscribe-menu {
    text-align: left;
    background-color: #f3816e;
    border-radius: 20px;
    padding: 8px 20px;
    display: inline-block;
    margin-bottom: 24px;
}

@media print, screen and (min-width: 48em) {
    .macsq-home-section .macsq-home-header-section .macsq-subscribe-menu {
        display: block;
        margin-bottom: 0;
    }
}

.macsq-home-section .macsq-home-header-section .macsq-subscribe-menu a {
    color: #fefefe;
    text-transform: uppercase;
    font-weight: 500;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.macsq-home-section .macsq-home-header-section .macsq-subscribe-menu svg {
    margin-left: 12px;
    fill: #fefefe;
}

.macsq-home-section .macsq-home-header-section .macsq-subscribe-menu.macsq-subscribe-menu-alt {
    padding: 0;
    overflow: hidden;
    background-color: #27334a;
}

.macsq-home-section .macsq-home-header-section .macsq-subscribe-menu.macsq-subscribe-menu-alt .macsq-subscribe-menu-text {
    padding: 8px 8px 8px 20px;
    background-color: #f3816e;
}

.macsq-home-section .macsq-home-header-section .macsq-subscribe-menu.macsq-subscribe-menu-alt .macsq-subscribe-menu-icon {
    padding: 8px 20px 8px 8px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.macsq-home-section .container-spotlight > .macsq-spotlight-block {
    position: relative;
    position: relative;
    padding-left: 10px;
    padding-right: 10px;
}

.macsq-home-section .container-spotlight > .macsq-spotlight-block::before {
    content: "";
    display: block;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #e5e0e6;
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
}

.macsq-home-section .container-spotlight > .macsq-spotlight-block:before {
    margin-left: 10px;
    margin-right: 10px;
    margin-top: 30px;
}

.macsq-home-section .container-spotlight > .macsq-spotlight-block .event-plus {
    display: inline-block;
    position: relative;
    right: 0;
    color: #F3523F;
    border-radius: 50%;
    width: 50px;
    height: 50px;
    padding: 10px;
    border: 3px solid #F3523F;
}

.macsq-home-section .container-spotlight > .macsq-spotlight-block .event-plus:after {
    content: "\0002B";
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 40px;
    line-height: 40px;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
}

.macsq-home-section .container-spotlight > .macsq-spotlight-block .macsq-spotlight-block-image {
    text-align: center;
}

@media print, screen and (min-width: 48em) {
    .macsq-home-section .container-spotlight > .macsq-spotlight-block .macsq-spotlight-block-image {
        text-align: left;
    }
}

.macsq-home-section .container-spotlight > .macsq-spotlight-block .macsq-spotlight-block-text {
    margin-top: 0;
}

@media print, screen and (min-width: 48em) {
    .macsq-home-section .container-spotlight > .macsq-spotlight-block .macsq-spotlight-block-text {
        margin-top: 30px;
    }
}

.macsq-home-section .container-spotlight > .macsq-spotlight-block .macsq-spotlight-block-text h3 {
    font-size: 1.3rem;
    text-transform: uppercase;
    font-weight: 500;
}

.macsq-home-section .container-spotlight {
    margin-bottom: 24px;
}

@media print, screen and (min-width: 64em) {
    .macsq-home-section .container-spotlight {
        margin-bottom: 0;
    }
}

.macsq-home-section .container-latest {
    margin-top: 20px;
}

.macsq-home-section .container-latest .cell:first-child {
    border-top: 1px solid #b6b5b5;
}

@media print, screen and (min-width: 64em) {
    .macsq-home-section .container-latest > .flex-container {
        margin-left: 30px;
    }
}

.macsq-home-section .macsq-home-right {
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
}

.macsq-home-section .macsq-home-right h3 {
    font-size: 1.1rem;
    text-transform: uppercase;
    font-weight: 500;
}

.macsq-home-section img {
    border-radius: 20px;
}

.macsq-home-section .macsq-home-seeall-wrapper {
    text-align: right;
}

.macsq-home-section .macsq-home-seeall-wrapper .macsq-home-seeall {
    color: #27334a;
    background-color: #FFB71A;
    border-radius: 30px;
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.macsq-home-section .macsq-home-seeall-wrapper .macsq-home-seeall:after {
    content: "\0276F";
    color: #F3523F;
    padding-left: 8px;
}

.container-spotlight {
    -webkit-box-flex: 1 !important;
    -webkit-flex-grow: 1 !important;
        -ms-flex-positive: 1 !important;
            flex-grow: 1 !important;
}

.container-spotlight h2 {
    margin: 0;
}

.container-latest .cell {
    border-bottom: 1px solid #b6b5b5;
}

.container-latest .cell a {
    color: #0a0a0a;
}

.container-latest .button {
    margin: 1rem 0 0.5rem;
}

.magazine-link {
    display: block;
    margin-top: 68px;
}

.magazine-link .img-wrapper {
    position: relative;
}

.magazine-link .img-wrapper::before {
    content: "";
    background: #0057a0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    z-index: 1;
    margin-right: -21px;
    margin-top: -27px;
    margin-left: 115px;
    margin-bottom: -27px;
}

.magazine-link .img-wrapper img {
    position: relative;
    display: block;
    z-index: 2;
}

.latest-wrapper, .acf-events-wrapper {
    position: relative;
    max-width: 900px;
    margin: 60px auto;
    color: #fefefe;
}

.two-columns-alt .latest-wrapper:before, .two-columns-alt .acf-events-wrapper:before {
    display: none;
}

@media screen and (min-width: 75em) {
    .two-columns-alt .latest-wrapper:before, .two-columns-alt .acf-events-wrapper:before {
        display: block;
    }
}

.two-columns-alt .latest-wrapper .h2, .two-columns-alt .acf-events-wrapper .h2 {
    color: #000;
    padding: 50px 0 40px;
}

@media screen and (min-width: 75em) {
    .two-columns-alt .latest-wrapper .h2, .two-columns-alt .acf-events-wrapper .h2 {
        padding: 70px 0;
        color: #fff;
    }
}

.latest-wrapper::before, .acf-events-wrapper::before {
    content: "";
    display: block;
    z-index: -1;
    position: absolute;
    height: 225px;
    left: 50%;
    width: 100vw;
    background-color: #0057a0;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

.latest-wrapper .h2, .acf-events-wrapper .h2 {
    font-size: 38px;
    font-size: 2.375rem;
    line-height: 1.4;
    margin: 0;
    padding: 50px 0 40px;
}

@media print, screen and (min-width: 48em) {
    .latest-wrapper .h2, .acf-events-wrapper .h2 {
        padding: 70px 0;
    }
}

.latest-wrapper .icon-wrapper, .acf-events-wrapper .icon-wrapper {
    margin-right: 1rem;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}

.latest-wrapper .latest-inner, .acf-events-wrapper .latest-inner {
    margin: 0 -1rem;
    padding: 40px 16px;
    background: #fefefe;
    -webkit-box-shadow: 0 0 37px 0 rgba(10, 10, 10, 0.2);
            box-shadow: 0 0 37px 0 rgba(10, 10, 10, 0.2);
}

@media print, screen and (min-width: 48em) {
    .latest-wrapper .latest-inner, .acf-events-wrapper .latest-inner {
        margin: 0;
        padding: 15px 40px;
    }
}

.latest-wrapper .links, .acf-events-wrapper .links {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
}

.latest-wrapper .link-data, .acf-events-wrapper .link-data {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.latest-wrapper .link-title, .acf-events-wrapper .link-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
}

.latest-wrapper .link-tag, .acf-events-wrapper .link-tag {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: right;
    color: #242424;
    font-weight: 900;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
        -ms-flex-pack: end;
            justify-content: flex-end;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    text-transform: uppercase;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22px;
    line-height: 1.375rem;
}

.latest-wrapper .link-tag span, .acf-events-wrapper .link-tag span {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}

.latest-wrapper .link-tag::before, .acf-events-wrapper .link-tag::before {
    content: "";
    display: block;
    width: 75px;
    height: 1px;
    margin: 0 24px 0 10px;
    border-bottom: 1px solid #0057a0;
}

.latest-wrapper .always-hidden, .acf-events-wrapper .always-hidden {
    display: none;
}

.latest-wrapper .button, .acf-events-wrapper .button {
    margin-top: 32px;
}

.block-vedette {
    position: relative;
    margin-bottom: 32px;
}

@media print, screen and (min-width: 48em) {
    .block-vedette {
        padding-bottom: 50px;
        margin-bottom: 0;
    }
}

.block-vedette::before {
    content: "";
    display: block;
    z-index: -1;
    position: absolute;
    top: -245px;
    bottom: 0;
    left: 50%;
    width: 100vw;
    background: #f6f5f3;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

.block-list {
    margin: 48px -15px 0;
}

.block-list .card {
    margin-bottom: 72px;
    padding: 0;
}

.list-item {
    color: #242424;
}

.list-item a {
    color: inherit;
}

.list-item .content-img-wrapper {
    max-width: 392px;
}

.list-item .img-wrapper {
    margin-bottom: 1rem;
}

.list-item .img-wrapper img {
    width: 100%;
}

@media print, screen and (min-width: 48em) {
    .list-item .img-wrapper {
        margin: 1rem 0;
    }
}

.list-item .content-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    padding-bottom: 16px;
}

@media print, screen and (min-width: 48em) {
    .list-item .content-wrapper {
        padding-top: 16px;
        padding-bottom: 16px;
        padding-left: 32px;
    }
}

@media print, screen and (min-width: 64em) {
    .list-item .content-wrapper {
        padding-left: 40px;
    }
}

.list-item .content-inner {
    overflow: hidden;
    width: 100%;
    padding-bottom: 16px;
    border-bottom: 1px solid #b6b5b5;
}

.list-item .list-item-category {
    display: inline-block;
    font-family: "Dosis", sans-serif;
    font-weight: 800;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22px;
    line-height: 1.375rem;
    border-bottom: solid 1px #0057a0;
    color: #242424;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 24px;
}

.list-item .list-item-title-wrapper {
    margin-bottom: 16px;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.list-item .list-item-title {
    margin: 0;
    text-transform: none;
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 28px;
    line-height: 1.75rem;
}

.list-item .list-item-dossiers {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    height: 35px;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 22px;
    line-height: 1.375rem;
    color: #0057a0;
    text-transform: uppercase;
    font-weight: 900;
}

.list-item .list-item-excerpt {
    height: 100%;
    font-size: 16px;
    font-size: 1rem;
    line-height: 22px;
    line-height: 1.375rem;
}

.list-item:hover .img-wrapper {
    background-clip: content-box;
    background-color: #0057a0;
}

.list-item:hover .img-wrapper img {
    opacity: 0.5;
}

.list-item:hover .content-inner .list-item-title, .list-item:hover .content-inner .list-item-category {
    color: #0057a0;
}

.list-item .img-wrapper, .list-item .img-wrapper img, .list-item .content-inner .list-item-title, .list-item .content-inner .list-item-category {
    -webkit-transition: all 0.3s;
    /* Safari prior 6.1 */
    transition: all 0.3s;
}

.list-item-featured .img-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    padding: 0;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
        -ms-flex-align: start;
            align-items: flex-start;
}

.list-item-featured .content-inner {
    border: 0;
}

.list-item-featured .list-item-title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 32px;
    line-height: 2rem;
}

.list-item-featured .list-item-excerpt {
    font-size: 20px;
    font-size: 1.25rem;
    line-height: 28px;
    line-height: 1.75rem;
    margin-bottom: 16px;
}

.list-item-featured .content-wrapper {
    padding-left: 0;
}

@media print, screen and (min-width: 64em) {
    .list-item-featured .content-wrapper {
        padding-left: 40px;
    }
}

.list-item-featured .button {
    margin-top: 16px;
}

.list-item-event .date-wrapper {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    font-family: "Roboto", sans-serif;
    font-weight: 500;
    color: #0057a0;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 1rem 0;
    text-transform: uppercase;
    font-size: 14px;
    font-size: 0.875rem;
    line-height: 18px;
    line-height: 1.125rem;
}

@media print, screen and (min-width: 48em) {
    .list-item-event .date-wrapper {
        font-size: 14px;
        font-size: 0.875rem;
        line-height: 18px;
        line-height: 1.125rem;
        padding: 1rem 0;
    }
}

@media print, screen and (min-width: 64em) {
    .list-item-event .date-wrapper {
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 22px;
        line-height: 1.375rem;
    }
}

.list-item-event .date-wrapper span {
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

.list-item-event .date-wrapper::after {
    content: "";
    display: none;
    width: 68px;
    height: 1px;
    margin-left: 40px;
    border-bottom: 1px solid #b6b5b5;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}

@media print, screen and (min-width: 48em) {
    .list-item-event .date-wrapper::after {
        display: block;
    }
}

@media print, screen and (min-width: 48em) {
    .list-item-event .content-wrapper {
        padding-left: 40px;
    }
}

.list-item-event .content-inner {
    padding-bottom: 32px;
}

/*.vs-btn {
    @include rotated-background($background-color: $primary, $rotation: 0deg);
    display: inline-block;
    padding: 10px 14px;
    font-weight: 700;
    color: $background-dark;
    appearance: none;
    background-color: transparent;
    border: 0px;
    &:hover {
        @include rotated-background-hover($background-color: $background-color-lighter, $rotation: 2deg);
    }
}*/
.vs-btn-cover {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#vs-main-content {
    position: relative;
    /*padding-bottom: 50px;*/
}

.block__background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -2;
    overflow: hidden;
    background-color: #c9d8ef;
    background-image: -webkit-gradient(linear, left top, left bottom, from(#c9d8ef), to(#fefefe));
    background-image: linear-gradient(#c9d8ef, #fefefe);
}

.block__background__image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
}

#power-selector .block__background__image-fade {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

#power-selector .block__background__image {
    width: 100%;
}

#power-selector .block__background__image > img {
    width: 100%;
    height: auto;
}

#power-selector .block__background__overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
       object-fit: contain;
}

.page-header__container {
    position: relative;
}

.pager-header__background {
    display: block;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
    background-color: #27334a;
}

.page-header__title {
    /*font-size: 3rem;*/
    font-size: 2.4rem;
    line-height: 1.1;
    font-weight: 600;
}

@media print, screen and (min-width: 48em) {
    .page-header__title {
        font-size: 4.6rem;
    }
}

.page-header__subtitle {
    font-size: 1.3rem;
    color: #c9d8ef;
}

.page-header--with-filters {
    margin-bottom: -50px;
}

@media print, screen and (min-width: 48em) {
    .page-header--with-filters {
        margin-bottom: -60px;
    }
}

.page-header--with-filters .page-header__content-flex {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 20px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.page-header--with-filters .page-header__content-flex > div {
    margin-bottom: 12px;
}

.page-header--with-filters .page-header__content-flex > div:nth-child(2) p {
    color: #fefefe;
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 20px;
    text-align: center;
}

.page-header--with-filters .page-header__content-flex > div:nth-child(2) p:before {
    content: '\005B';
    color: #fefefe;
    font-size: 38px;
    font-weight: 500;
    margin-right: 12px;
}

.page-header--with-filters .page-header__content-flex > div:nth-child(2) p:after {
    content: '\005D';
    color: #fefefe;
    font-size: 38px;
    font-weight: 500;
    margin-left: 12px;
}

.vs-content {
    position: relative;
    padding-bottom: 40px;
}

.vs-container {
    margin-left: auto;
    margin-right: auto;
    width: calc(100% - 60px);
}

@media print, screen and (min-width: 64em) {
    .vs-container {
        width: 100%;
    }
}

.page-header__container.vs-container {
    padding: 40px 30px 80px;
}

.macsq-padder {
    height: 100px;
    margin-bottom: -60px;
    background-color: white;
    z-index: -1;
    position: relative;
}

.macsq-title1 {
    color: #FFB71A;
}

.macsq-title2 {
    color: #F3523F;
}

.macsq-spiral {
    position: absolute;
    right: 0;
    top: 120px;
}

.macsq-spiral-left {
    position: absolute;
    left: 0;
    top: -120px;
}

.listing {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 1fr;
    row-gap: 50px;
}

@media print, screen and (min-width: 48em) {
    .listing {
        grid-template-columns: 1fr 1fr;
    }
}

@media print, screen and (min-width: 48em) {
    .listing {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media screen and (min-width: 75em) {
    .listing {
        -webkit-column-gap: 35px;
           -moz-column-gap: 35px;
                column-gap: 35px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.listing .post-item {
    padding-left: 0px;
}

.listing .post-item .item-tax {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
}

.listing .post-item .item-tax:after {
    content: '';
    display: block;
    width: 89px;
    height: 3px;
    margin-top: 3px;
    margin-bottom: 7px;
}

.listing .post-item .post-item__title {
    font-size: 1.1rem;
    font-weight: normal;
}

.listing .post-item:nth-child(2) .item-tax:after, .listing .post-item:nth-child(5) .item-tax:after, .listing .post-item:nth-child(8n + 6) .item-tax:after, .listing .post-item:nth-child(8n + 8) .item-tax:after, .listing .post-item:nth-child(8n + 11) .item-tax:after, .listing .post-item:nth-child(8n + 13) .item-tax:after {
    background-color: #F3523F;
}

.listing .post-item:nth-child(2) .post-item__bottom-wrapper::before, .listing .post-item:nth-child(5) .post-item__bottom-wrapper::before, .listing .post-item:nth-child(8n + 6) .post-item__bottom-wrapper::before, .listing .post-item:nth-child(8n + 8) .post-item__bottom-wrapper::before, .listing .post-item:nth-child(8n + 11) .post-item__bottom-wrapper::before, .listing .post-item:nth-child(8n + 13) .post-item__bottom-wrapper::before {
    background: #27334a;
}

.listing .post-item:hover:nth-child(2) .post-item__bottom-wrapper::before, .listing .post-item:hover:nth-child(5) .post-item__bottom-wrapper::before, .listing .post-item:hover:nth-child(8n + 6) .post-item__bottom-wrapper::before, .listing .post-item:hover:nth-child(8n + 8) .post-item__bottom-wrapper::before, .listing .post-item:hover:nth-child(8n + 11) .post-item__bottom-wrapper::before, .listing .post-item:hover:nth-child(8n + 13) .post-item__bottom-wrapper::before {
    background: #FFB71A;
}

.listing .post-item:nth-child(1) .post-item__bottom-wrapper {
    -webkit-transform: translateY(0);
            transform: translateY(0);
    bottom: 0;
    padding: 15px 16px;
    color: #27334a;
}

.listing .post-item:nth-child(1) .post-item__bottom-wrapper::before {
    background-color: #FFB71A;
}

.listing .post-item:nth-child(1) .post-item__thumbnail-wrapper {
    padding-bottom: 90%;
}

.listing .post-item:nth-child(1) .post-item__title {
    font-size: 1.3rem;
    font-weight: normal;
}

.listing .post-item:nth-child(1) .post-item__title,
.entry-content .listing .post-item:nth-child(1) .post-item__title {
    margin: 0;
}

.listing .post-item:nth-child(1) .item-tax {
    text-transform: uppercase;
    font-size: 1rem;
    font-weight: bold;
}

.listing .post-item:nth-child(1) .item-tax:after {
    height: 5px;
    background-color: #F3523F;
}

.listing .post-item:nth-child(1):hover .post-item__bottom-wrapper {
    color: #FFB71A;
}

.listing .post-item:nth-child(1):hover .post-item__bottom-wrapper::before {
    background: #27334a !important;
}

@media print, screen and (min-width: 48em) {
    .listing .post-item:first-child {
        grid-column-end: 3;
        grid-column-start: 1;
        grid-row-end: 3;
        grid-row-start: 1;
    }
}

.listing .post-item:first-child .post-item__bottom-wrapper {
    right: 0%;
    left: 12%;
    bottom: -30px;
    right: -10px;
}

@media screen and (min-width: 75em) {
    .listing .post-item:first-child .post-item__bottom-wrapper {
        right: 8%;
        left: 6%;
    }
}

.post-item {
    padding: 0 30px 30px;
    position: relative;
}

@media print, screen and (min-width: 64em) {
    .post-item {
        padding: 0 10px 30px 14px;
    }
}

.post-item:hover .post-item__thumbnail-wrapper .plus-sign {
    opacity: 1;
    -webkit-transition: opacity 0.3s 0.1s;
    transition: opacity 0.3s 0.1s;
}

.post-item:hover .post-item__thumbnail-wrapper .plus-sign::before, .post-item:hover .post-item__thumbnail-wrapper .plus-sign::after {
    background-color: #fefefe;
}

.post-item:hover .post-item__thumbnail::before {
    opacity: 0.6;
    -webkit-transform: translateX(0);
            transform: translateX(0);
}

.post-item:hover .post-item__bottom-wrapper::before {
    background: #FFB71A;
}

.post-item__thumbnail-wrapper {
    overflow: hidden;
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 85%;
}

.post-item__thumbnail-wrapper .plus-sign {
    opacity: 0;
    pointer-events: none;
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 5.5rem;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
}

.post-item__thumbnail {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: gray;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 20px;
    overflow: hidden;
}

.post-item__thumbnail::before {
    content: "";
    display: block;
    pointer-events: none;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background: #27334a;
    -webkit-transform: translateX(-101%);
            transform: translateX(-101%);
    -webkit-transition: opacity 0.26667s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.26667s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.26667s;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.26667s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.post-item__content {
    color: white;
    position: relative;
}

.post-item__content .post-item__bottom-wrapper {
    right: -10px;
    bottom: -30px;
}

.post-item__partner-wrapper {
    position: absolute;
    top: 0;
    right: 10px;
    left: 0;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.post-item__partner-wrapper::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 8px;
    margin-top: -4px;
    background: #27334a;
}

.post-item__partner {
    display: inline-block;
    position: relative;
    margin: 0;
    padding: 5px 14px;
    font-size: 1.4rem;
    text-transform: uppercase;
    background: #27334a;
}

.item-tax:after {
    background-color: #FFB71A;
}

.post-item:hover .item-tax:after {
    background-color: #F3523F;
}

.post-item__bottom-wrapper {
    position: relative;
    position: absolute;
    z-index: 1;
    top: auto;
    right: 0;
    bottom: 0;
    left: 12%;
    padding: 10px 14px;
}

.post-item__bottom-wrapper::before {
    content: "";
    display: block;
    opacity: 0.95;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #F3523F;
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
}

.post-item__title {
    font-size: 1.3rem;
    font-weight: 400;
}

.post-item__title,
.entry-content .post-item__title {
    margin: 0;
}

.post-item--featured {
    padding: 0px;
}

@media print, screen and (min-width: 64em) {
    .post-item--featured {
        padding: 0px 30px;
    }
}

.post-item--featured .post-item__bottom-wrapper {
    position: relative;
    position: absolute;
    top: auto;
    right: 10%;
    bottom: 0;
    left: 10%;
    padding: 10px 16px;
    color: #27334a;
    -webkit-transform: translateY(35%);
            transform: translateY(35%);
}

.post-item--featured .post-item__bottom-wrapper::before {
    content: "";
    display: block;
    opacity: 0.95;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #F3523F;
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
}

.post-item--featured .post-item__bottom-wrapper::before {
    background: #F3523F !important;
}

.post-item--featured .post-item__title {
    font-size: 2.4rem;
    font-weight: 500;
}

.post-item--featured .post-item__title,
.entry-content .post-item--featured .post-item__title {
    margin: 0;
}

.post-item--featured:hover .post-item__bottom-wrapper {
    color: #F3523F;
}

.post-item--featured:hover .post-item__bottom-wrapper::before {
    background: #FFB71A !important;
}

.plus-sign {
    display: block;
    position: relative;
    width: 53px;
    height: 53px;
    border: 3px solid #fefefe;
    padding: 0px;
    border-radius: 50%;
}

.plus-sign::before, .plus-sign::after {
    content: "";
    display: block;
    position: absolute;
    background: #fefefe;
}

.plus-sign::before {
    top: 12px;
    right: 22px;
    bottom: 12px;
    left: 22px;
}

.plus-sign::after {
    top: 22px;
    right: 12px;
    bottom: 22px;
    left: 12px;
}

.plus-sign--thick::before {
    top: 12px;
    right: 22px;
    bottom: 12px;
    left: 22px;
}

.plus-sign--thick::after {
    top: 22px;
    right: 12px;
    bottom: 22px;
    left: 12px;
}

.macsq-home-seeall-wrapper {
    text-align: right;
    margin-top: 24px;
}

.macsq-home-seeall-wrapper .macsq-home-seeall {
    color: #27334a;
    background-color: #FFB71A;
    border-radius: 30px;
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.macsq-home-seeall-wrapper .macsq-home-seeall:after {
    content: "\0276F";
    color: #F3523F;
    padding-left: 8px;
}

.macsq-orange-row .block__background {
    background-color: #f3816e;
    background-image: none;
}

.macsq-orange-row .pager-header__background {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
    background-color: #FFB71A;
}

.macsq-orange-row .page-header__container.vs-container {
    padding: 30px 30px;
}

.macsq-orange-row .page-header--with-filters {
    margin-bottom: 30px;
    padding-top: 40px;
}

.macsq-orange-row .page-header--with-filters .page-header__content-flex {
    margin-bottom: 0;
}

.macsq-orange-row .page-header--with-filters .page-header__content-flex > div {
    margin-bottom: 0;
}

.macsq-orange-row .macsq-title1 {
    color: #27334a;
}

.macsq-orange-row .post-item {
    padding: 0 30px 0;
}

.macsq-orange-row .post-item .post-item__title {
    font-size: 1.1rem;
    font-weight: normal;
}

.macsq-orange-row .post-item .item-tax {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
}

.macsq-orange-row .post-item .item-tax:after {
    content: "";
    display: block;
    height: 5px;
    width: 89px;
    background-color: #fefefe;
    margin-top: 6px;
    margin-bottom: 10px;
}

.macsq-orange-row .post-item:first-child {
    grid-column-end: 1;
    grid-column-start: 1;
    grid-row-end: 1;
    grid-row-start: 1;
}

.macsq-orange-row .post-item:nth-child(1) .post-item__title {
    font-size: 1.1rem;
    font-weight: normal;
}

.macsq-orange-row .post-item:nth-child(1) .item-tax {
    text-transform: uppercase;
    font-size: 0.9rem;
    font-weight: bold;
}

.macsq-orange-row .post-item:nth-child(1) .post-item__thumbnail-wrapper {
    padding-bottom: 85%;
}

.macsq-orange-row .post-item__bottom-wrapper::before {
    content: none;
}

.macsq-orange-row .post-item__bottom-wrapper {
    position: static;
}

.macsq-orange-row .post-item__bottom-wrapper .item-tax__group,
.macsq-orange-row .post-item__bottom-wrapper .post-item__title {
    color: #fefefe;
}

.macsq-orange-row .slick-dots {
    list-style-type: none;
    margin-left: 30px;
    margin-top: 30px;
}

.macsq-orange-row .slick-dots li {
    display: inline-block;
    padding-right: 12px;
}

.macsq-orange-row .slick-dots li button {
    cursor: pointer;
    font-size: 0;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: rgba(255, 255, 255, 0.6);
    border-radius: 20px;
}

.macsq-orange-row .slick-dots li.slick-active button {
    background-color: white;
}

.macsq-video-row .block__background {
    background-color: #e5e0e6;
    background-image: none;
}

.macsq-video-row .pager-header__background {
    -webkit-transform: rotate(2deg);
            transform: rotate(2deg);
    background-color: #27334a;
}

.macsq-video-row .page-header__container.vs-container {
    padding: 30px 30px 20px;
}

.macsq-video-row .page-header--with-filters {
    margin-bottom: 60px;
    padding-top: 0px;
}

.macsq-video-row .page-header--with-filters .page-header__content-flex {
    margin-bottom: 0;
}

.macsq-video-row .page-header--with-filters .page-header__content-flex > div {
    /*margin-bottom: 0;*/
}

.macsq-video-row .macsq-title1 {
    color: #F3523F;
}

.macsq-video-row .macsq-title2 {
    color: #b7cbe8;
}

.macsq-video-row .listing {
    -webkit-column-gap: 55px;
       -moz-column-gap: 55px;
            column-gap: 55px;
}

.macsq-video-row .listing .post-item {
    padding: 0 30px 0;
}

.macsq-video-row .listing .post-item:nth-of-type(odd) {
    position: relative;
}

.macsq-video-row .listing .post-item:nth-of-type(odd)::before {
    content: "";
    display: block;
    opacity: 0.95;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #0060a9;
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
}

.macsq-video-row .listing .post-item:nth-of-type(even) {
    position: relative;
}

.macsq-video-row .listing .post-item:nth-of-type(even)::before {
    content: "";
    display: block;
    opacity: 0.95;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #f3816e;
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
}

.macsq-video-row .listing .post-item:first-child {
    grid-column-end: 1;
    grid-column-start: 1;
    grid-row-end: 1;
    grid-row-start: 1;
}

.macsq-video-row .listing .post-item:nth-child(1) .post-item__title {
    font-size: 1.1rem;
    font-weight: normal;
}

.macsq-video-row .listing .post-item:nth-child(1) .post-item__thumbnail-wrapper {
    padding-bottom: 85%;
}

.macsq-video-row .listing .post-item__thumbnail-wrapper {
    margin-top: -20px;
}

.macsq-video-row .listing .post-item__bottom-wrapper {
    position: static;
    padding-top: 12px !important;
    padding-bottom: 12px !important;
    padding-left: 0 !important;
    padding-right: 0 !important;
}

.macsq-video-row .listing .post-item__bottom-wrapper:before {
    content: none;
}

.macsq-video-row .listing .post-item__bottom-wrapper .item-tax__group,
.macsq-video-row .listing .post-item__bottom-wrapper .post-item__title {
    color: #fefefe !important;
    font-size: 18px !important;
    font-weight: bold !important;
}

.macsq-video-row .listing .post-item-source {
    text-transform: uppercase;
    font-size: 16px;
    margin-top: 12px;
}

.macsq-video-row .listing .post-item-source:after {
    content: '';
    display: block;
    width: 89px;
    height: 5px;
    margin-top: 8px;
    margin-bottom: 0px;
    background-color: #fefefe;
}

.macsq-video-row .listing .macsq-mediatype-icondate {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    margin-bottom: 12px;
}

.macsq-video-row .listing .macsq-mediatype-icondate .macsq-mediatype-icon {
    display: inline-block;
    width: 37px;
    height: 37px;
    background-color: #fefefe;
    border-radius: 50%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 12px;
}

.macsq-video-row .page-header__content-flex > div:nth-child(2) a {
    color: #27334a;
    background-color: #FFB71A;
    border-radius: 30px;
    display: inline-block;
    padding: 10px 20px;
    font-weight: bold;
    text-transform: uppercase;
}

.macsq-video-row .page-header__content-flex > div:nth-child(2) a:after {
    content: "\0276F";
    color: #F3523F;
    padding-left: 8px;
}

/* Footer partenaires Ma CSQ cette semaine */
.partnersmacsq {
    background-color: #e5e0e6;
    padding-top: 100px;
    overflow: hidden;
}

.partnersmacsq .grid-container {
    position: relative;
}

.partnersmacsq .grid-container:before {
    content: "";
    display: block;
    position: absolute;
    top: -50px;
    right: 20px;
    bottom: -200px;
    left: 20px;
    z-index: 1;
    background-color: #fefefe;
    padding-top: 100px;
    -webkit-transform: skewY(-3deg);
            transform: skewY(-3deg);
    border-radius: 20px;
}

.partnersmacsq .grid-container .partnersmacsqlist {
    position: relative;
    z-index: 2;
    padding: 10px 20px 20px;
}

/* Page single */
.macsq-single .grid-container {
    position: relative;
    padding-top: 0px;
}

.macsq-single .banner {
    margin-bottom: 0;
    z-index: 1;
    height: 174px;
    min-height: 174px;
    border-radius: 20px;
    overflow: hidden;
    margin: 0 0 20px;
}

@media print, screen and (min-width: 48em) {
    .macsq-single .banner {
        height: 254px;
        min-height: 254px;
    }
}

.macsq-single .macsq-single-terms {
    text-transform: uppercase;
    font-size: 18px;
    font-weight: normal;
    margin-bottom: 0;
}

.macsq-single h1 {
    font-size: 42px;
    font-weight: bold;
}

.macsq-single h1:after {
    content: '';
    display: block;
    width: 89px;
    height: 5px;
    margin-top: 8px;
    margin-bottom: 12px;
    background-color: #F3523F;
}

.macsq-single h2 {
    font-size: 32px;
    font-weight: bold;
}

.macsq-single h3 {
    font-size: 24px;
    font-weight: bold;
}

.macsq-single p {
    font-size: 18px;
}

.macsq-single .block__background__overlay {
    max-height: 100%;
    width: 100%;
}

.macsq-single .macsq-single-article .listing .post-item,
.macsq-single .macsq-single-article .listing .post-item:first-child {
    padding: 30px;
}

@media print, screen and (min-width: 48em) {
    .macsq-single .macsq-single-article .listing {
        grid-template-columns: 1fr 1fr;
    }
}

.macsq-single .l-page-wrapper > .acf-content-wrapper {
    background-color: #fefefe;
    border-radius: 20px;
    margin: 0px auto;
    padding: 40px 40px 40px;
}

.macsq-single .banner.lower-banner .banner-content {
    min-width: 100%;
}

.macsq-single .banner.lower-banner .banner-text-wrapper {
    max-width: 1180px;
}

.macsq-single .breadcrumb {
    max-width: 1180px;
    margin-top: 24px;
    margin-bottom: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.macsq-single .breadcrumb li {
    font-weight: normal;
    font-size: 0.8rem;
    margin-bottom: 0;
    color: #27334a;
}

.macsq-single .breadcrumb li a {
    color: #0060a9;
}

.macsq-single .acf-content-wrapper,
.macsq-single .acf-text-wrapper,
.macsq-single .acf-text-50-wrapper {
    width: 100%;
    max-width: 1180px;
}

.macsq-single .acf-content-wrapper .wp-video, .macsq-single .acf-content-wrapper video.wp-video-shortcode, .macsq-single .acf-content-wrapper .mejs-container, .macsq-single .acf-content-wrapper .mejs-overlay.load,
.macsq-single .acf-text-wrapper .wp-video,
.macsq-single .acf-text-wrapper video.wp-video-shortcode,
.macsq-single .acf-text-wrapper .mejs-container,
.macsq-single .acf-text-wrapper .mejs-overlay.load,
.macsq-single .acf-text-50-wrapper .wp-video,
.macsq-single .acf-text-50-wrapper video.wp-video-shortcode,
.macsq-single .acf-text-50-wrapper .mejs-container,
.macsq-single .acf-text-50-wrapper .mejs-overlay.load {
    width: 100% !important;
}

.macsq-single .acf-content-wrapper .wp-video, .macsq-single .acf-content-wrapper video.wp-video-shortcode,
.macsq-single .acf-text-wrapper .wp-video,
.macsq-single .acf-text-wrapper video.wp-video-shortcode,
.macsq-single .acf-text-50-wrapper .wp-video,
.macsq-single .acf-text-50-wrapper video.wp-video-shortcode {
    max-width: 100% !important;
}

.macsq-single .macsq-single-related-actualites h2 {
    padding-bottom: 6px;
    margin-bottom: 60px;
    border-bottom: 1px solid #0a0a0a;
    font-size: 2.625em;
}

.macsq-single .listing {
    -webkit-column-gap: 100px;
    -moz-column-gap: 100px;
    column-gap: 100px;
    grid-template-columns: 1fr;
}

@media print, screen and (min-width: 48em) {
    .macsq-single .listing {
        grid-template-columns: 1fr 1fr;
    }
}

@media print, screen and (min-width: 64em) {
    .macsq-single .listing {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

.macsq-single .listing .post-item {
    padding: 0 10px 60px 14px;
}

.macsq-single .listing .post-item .post-item__bottom-wrapper {
    padding: 20px 21px;
    right: -20px;
    bottom: -60px;
}

.macsq-single .listing .post-item .post-item__thumbnail-wrapper {
    padding-bottom: 85%;
}

.macsq-single .listing .post-item .post-item__title {
    font-size: 1.2rem;
    font-weight: bold;
    color: #27334a;
}

.macsq-single .listing .post-item .item-tax {
    font-size: 1.1rem;
    color: #27334a;
    font-weight: normal;
}

.macsq-single .listing .post-item .item-tax:after {
    width: 89px;
    height: 5px;
    background-color: #F3523F;
}

.macsq-single .listing .post-item:nth-child(2) .item-tax,
.macsq-single .listing .post-item:nth-child(2) .post-item__title {
    color: #27334a;
}

.macsq-single .listing .post-item:nth-child(2) .post-item__bottom-wrapper::before {
    background: #b7cbe8;
    opacity: 1;
}

.macsq-single .listing .post-item:nth-child(3) .item-tax,
.macsq-single .listing .post-item:nth-child(3) .post-item__title {
    color: #fefefe;
}

.macsq-single .listing .post-item:nth-child(3) .post-item__bottom-wrapper::before {
    background: #27334a;
    opacity: 1;
}

.macsq-single .listing .post-item:hover .item-tax,
.macsq-single .listing .post-item:hover .post-item__title {
    color: #fefefe !important;
}

.macsq-single .listing .post-item:hover:nth-child(2) .item-tax,
.macsq-single .listing .post-item:hover:nth-child(2) .post-item__title {
    color: #27334a !important;
}

.macsq-single .listing .post-item:hover:nth-child(2) .post-item__bottom-wrapper::before {
    background: #FFB71A;
}

.macsq-single .listing .post-item:hover:nth-child(3) .item-tax,
.macsq-single .listing .post-item:hover:nth-child(3) .post-item__title {
    color: #27334a !important;
}

.macsq-single .listing .post-item:hover:nth-child(3) .post-item__bottom-wrapper::before {
    background: #FFB71A;
}

.macsq-single .listing .post-item:first-child {
    grid-column-end: 1;
    grid-column-start: 1;
    grid-row-end: 1;
    grid-row-start: 1;
    padding: 0 10px 60px 14px;
}

.macsq-single .listing .post-item:first-child .post-item__bottom-wrapper {
    left: 12%;
    padding: 20px 21px;
    right: -20px;
    bottom: -60px;
}

.macsq-single .listing .post-item:first-child .post-item__bottom-wrapper:before {
    opacity: 1;
}

.macsq-single .listing .post-item:first-child .post-item__thumbnail-wrapper {
    padding-bottom: 85%;
}

.macsq-single .listing .post-item:first-child .post-item__title {
    font-size: 1rem;
    color: #27334a;
}

.macsq-single .listing .post-item:first-child .item-tax {
    font-size: 1.1rem;
    color: #27334a;
}

.macsq-single table {
    border-collapse: initial !important;
}

.macsq-single table tr:first-child th,
.macsq-single table tr:first-child td {
    background-color: #27334a !important;
    color: #fefefe !important;
}

.macsq-single table tr td {
    background-color: #efecf0;
    color: #27334a;
    padding: 10px 20px;
    border-left: 2px solid #fefefe;
}

.macsq-single table tr td:first-child {
    border-left: none;
}

.macsq-single table tr:nth-child(odd) td {
    background-color: #e5e0e6;
    color: #27334a;
}

.macsq-single table tr:first-child td:first-child {
    border-top-left-radius: 20px;
}

.macsq-single table tr:first-child td:last-child {
    border-top-right-radius: 20px;
}

.macsq-single table tr:last-child td:first-child {
    border-bottom-left-radius: 20px;
}

.macsq-single table tr:last-child td:last-child {
    border-bottom-right-radius: 20px;
}

.macsq-single .folder {
    border-bottom: none;
    padding: 12px 0;
}

.macsq-single .folder .folder-title:before {
    content: "\0276F";
    display: inline-block;
    color: #F3523F;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    margin-right: 12px;
}

.macsq-single .folder.is-open .folder-title:before {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg);
}

.macsq-single .folder .folder-trigger-icon {
    display: none;
}

.macsq-single .macsq-actualites-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.macsq-single .macsq-actualites-columns > div:nth-of-type(2) {
    display: none;
}

@media print, screen and (min-width: 48em) {
    .macsq-single .macsq-actualites-columns > div:nth-of-type(2) {
        display: block;
        width: 200px;
        margin-left: 4%;
    }
}

@media print, screen and (min-width: 64em) {
    .macsq-single .macsq-actualites-columns > div:nth-of-type(2) {
        display: block;
        width: 300px;
    }
}

.macsq-single .macsq-actualites-columns > div:nth-of-type(2) .macsq-side-image {
    background-size: cover;
    background-position: center;
    border-radius: 20px;
}

@media print, screen and (min-width: 48em) {
    .macsq-single .macsq-actualites-columns > div:nth-of-type(2) .macsq-side-image {
        width: 200px;
        height: 200px;
    }
}

@media print, screen and (min-width: 64em) {
    .macsq-single .macsq-actualites-columns > div:nth-of-type(2) .macsq-side-image {
        width: 300px;
        height: 300px;
    }
}

.macsq-single .macsq-actualites-columns > div:nth-of-type(2) .macsq-side-description {
    font-size: 14px;
    font-style: italic;
    margin-top: 24px;
    color: #7B7B7B;
}

/* Page liste */
.macsq-actualites .grid-container {
    position: relative;
    padding: 0;
}

.macsq-actualites .banner {
    background: none;
}

.macsq-actualites .banner .banner-inner {
    min-height: initial;
    z-index: 3;
    padding: 0;
    margin: 0;
}

.macsq-actualites .banner .macsq-subtitle {
    text-align: left;
    color: #27334a;
    text-transform: uppercase;
    margin-bottom: 8px;
    width: 100%;
}

.macsq-actualites .banner h1 {
    margin: 0 0 24px 0;
    text-align: left;
    width: 100%;
    color: #27334a;
    font-weight: bold;
}

.macsq-actualites .banner .banner-search-wrapper-wrap {
    width: 100%;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    background: #27334a;
    border-radius: 20px;
}

.macsq-actualites .banner .banner-search-wrapper {
    border-radius: 30px;
    overflow: hidden;
}

.macsq-actualites .banner .banner-search {
    margin-top: 42px;
    margin-bottom: 42px;
}

.macsq-actualites .banner .banner-search .filters-panel {
    max-height: initial;
    background-color: #fefefe;
    border-radius: 20px;
}

.macsq-actualites .banner .banner-search .filters-panel .filters-title {
    border-bottom: none;
    font-size: 1.125rem;
    margin-bottom: 12px;
}

.macsq-actualites .banner .banner-search .filters-panel input[type="date"] {
    border-radius: 20px;
}

.macsq-actualites .banner .banner-search .filters-panel .cat-filters li .checkmark,
.macsq-actualites .banner .banner-search .filters-panel .types-filters li .checkmark {
    border-radius: 5px;
}

.macsq-actualites .banner .banner-search .filters-panel .button-group {
    margin-top: 48px;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.macsq-actualites .banner .banner-search .filters-panel .button-group .reset-tags {
    border-radius: 30px;
    border: 1px solid #818181;
    color: #27334a;
    padding: 11px 18px;
    text-transform: uppercase;
    text-decoration: unset;
    font-size: 1rem;
    margin-bottom: 12px;
}

.macsq-actualites .banner .banner-search .filters-panel .button-group .reset-tags:after {
    content: "\0276F";
    color: #27334a;
    padding-left: 8px;
}

.macsq-actualites .banner .banner-search .filters-panel .button-group .filter-btn {
    border-radius: 30px;
    background: #0060a9;
    color: #fefefe;
    margin-bottom: 12px;
}

.macsq-actualites .banner .banner-search .filters-panel .button-group .filter-btn:after {
    content: "\0276F";
    color: #fefefe;
    padding-left: 8px;
}

.macsq-actualites .banner.banner.lower-banner {
    min-height: initial;
}

.macsq-actualites .current-filters-wrapper .current-filter {
    border-radius: 30px;
}

.macsq-actualites .block__background__overlay {
    max-height: 100%;
    width: 100%;
}

.macsq-actualites .l-page-wrapper > .acf-content-wrapper {
    background-color: #fefefe;
    border-radius: 20px;
    margin: 0px auto;
    padding: 5px 40px 40px;
}

@media print, screen and (min-width: 48em) {
    .macsq-actualites .l-page-wrapper > .acf-content-wrapper {
        padding: 40px 40px 40px;
    }
}

.macsq-actualites .banner.lower-banner .banner-content {
    min-width: 100%;
}

.macsq-actualites .banner.lower-banner .banner-text-wrapper {
    max-width: 1180px;
}

.macsq-actualites .breadcrumb {
    max-width: 1180px;
    margin-top: 24px;
    margin-bottom: 24px;
}

.macsq-actualites .breadcrumb li {
    font-weight: normal;
    font-size: 0.8rem;
    margin-bottom: 0;
    color: #27334a;
}

.macsq-actualites .breadcrumb li a {
    color: #0060a9;
}

.macsq-actualites .acf-content-wrapper,
.macsq-actualites .acf-text-wrapper,
.macsq-actualites .acf-text-50-wrapper {
    width: 100%;
    max-width: 1180px;
}

.macsq-actualites .card-img-wrapper {
    position: relative;
    z-index: 2;
    width: calc( 100% - 35px);
    margin-left: 10px;
    border-radius: 20px;
    overflow: hidden;
}

.macsq-actualites .post-item__thumbnail-wrapper {
    width: 90%;
    margin: 0 auto;
    z-index: 2;
    padding-bottom: 55%;
}

.macsq-actualites .cell.card {
    margin-bottom: 0;
}

.macsq-actualites .cell.card .card-inner {
    position: relative;
    top: -60px;
}

.macsq-actualites .cell.card .card-inner .plus-sign {
    margin-left: 12px;
    border-color: #F3523F;
}

.macsq-actualites .cell.card .card-inner .plus-sign::before, .macsq-actualites .cell.card .card-inner .plus-sign::after {
    background: #F3523F;
}

.macsq-actualites .cell.card .card-inner a {
    border-bottom: none;
}

.macsq-actualites .cell.card .card-inner .card-content {
    position: relative;
    z-index: 2;
    padding: 60px 30px 30px;
}

.macsq-actualites .cell.card .card-inner .list-item-category {
    font-weight: normal;
}

.macsq-actualites .cell.card .card-inner .card-title {
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 28px;
    line-height: 1.75rem;
}

.macsq-actualites .cell.card .card-inner .card-title:after {
    content: '';
    display: block;
    width: 81px;
    height: 3px;
    margin-top: 8px;
    margin-bottom: 12px;
    background-color: #F3523F;
}

.macsq-actualites .cell.card .card-inner .card-date-wrapper {
    margin-top: 24px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.macsq-actualites .cell.card .card-inner .card-date:before {
    content: unset;
}

.macsq-actualites .cell.card .card-inner .card-date:after {
    content: "";
    display: block;
    width: 56px;
    height: 1px;
    margin: 0 0 0 16px;
    border-bottom: 1px solid #fefefe;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
}

.macsq-actualites .cell.card .card-inner .card-date span {
    color: #fefefe;
}

.macsq-actualites .cell.card:nth-child(1) .card-inner,
.macsq-actualites .cell.card:nth-child(5) .card-inner,
.macsq-actualites .cell.card:nth-child(9) .card-inner,
.macsq-actualites .cell.card:nth-child(10) .card-inner {
    color: #fefefe;
    position: relative;
}

.macsq-actualites .cell.card:nth-child(1) .card-inner::before,
.macsq-actualites .cell.card:nth-child(5) .card-inner::before,
.macsq-actualites .cell.card:nth-child(9) .card-inner::before,
.macsq-actualites .cell.card:nth-child(10) .card-inner::before {
    content: "";
    display: block;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #27334a;
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
}

.macsq-actualites .cell.card:nth-child(1) .card-inner:before,
.macsq-actualites .cell.card:nth-child(5) .card-inner:before,
.macsq-actualites .cell.card:nth-child(9) .card-inner:before,
.macsq-actualites .cell.card:nth-child(10) .card-inner:before {
    z-index: 1;
}

.macsq-actualites .cell.card:nth-child(1) .card-inner a,
.macsq-actualites .cell.card:nth-child(5) .card-inner a,
.macsq-actualites .cell.card:nth-child(9) .card-inner a,
.macsq-actualites .cell.card:nth-child(10) .card-inner a {
    color: #fefefe;
}

.macsq-actualites .cell.card:nth-child(1) .card-inner .list-item-category,
.macsq-actualites .cell.card:nth-child(1) .card-inner .card-title,
.macsq-actualites .cell.card:nth-child(1) .card-inner .list-item-excerpt,
.macsq-actualites .cell.card:nth-child(5) .card-inner .list-item-category,
.macsq-actualites .cell.card:nth-child(5) .card-inner .card-title,
.macsq-actualites .cell.card:nth-child(5) .card-inner .list-item-excerpt,
.macsq-actualites .cell.card:nth-child(9) .card-inner .list-item-category,
.macsq-actualites .cell.card:nth-child(9) .card-inner .card-title,
.macsq-actualites .cell.card:nth-child(9) .card-inner .list-item-excerpt,
.macsq-actualites .cell.card:nth-child(10) .card-inner .list-item-category,
.macsq-actualites .cell.card:nth-child(10) .card-inner .card-title,
.macsq-actualites .cell.card:nth-child(10) .card-inner .list-item-excerpt {
    color: #fefefe;
}

.macsq-actualites .cell.card:nth-child(1) .card-inner .card-date:after,
.macsq-actualites .cell.card:nth-child(5) .card-inner .card-date:after,
.macsq-actualites .cell.card:nth-child(9) .card-inner .card-date:after,
.macsq-actualites .cell.card:nth-child(10) .card-inner .card-date:after {
    border-bottom: 1px solid #fefefe;
}

.macsq-actualites .cell.card:nth-child(1) .card-inner .card-date span,
.macsq-actualites .cell.card:nth-child(5) .card-inner .card-date span,
.macsq-actualites .cell.card:nth-child(9) .card-inner .card-date span,
.macsq-actualites .cell.card:nth-child(10) .card-inner .card-date span {
    color: #fefefe;
}

.macsq-actualites .cell.card:nth-child(2) .card-inner,
.macsq-actualites .cell.card:nth-child(6) .card-inner,
.macsq-actualites .cell.card:nth-child(7) .card-inner,
.macsq-actualites .cell.card:nth-child(11) .card-inner {
    position: relative;
}

.macsq-actualites .cell.card:nth-child(2) .card-inner::before,
.macsq-actualites .cell.card:nth-child(6) .card-inner::before,
.macsq-actualites .cell.card:nth-child(7) .card-inner::before,
.macsq-actualites .cell.card:nth-child(11) .card-inner::before {
    content: "";
    display: block;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #b7cbe8;
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
}

.macsq-actualites .cell.card:nth-child(2) .card-inner:before,
.macsq-actualites .cell.card:nth-child(6) .card-inner:before,
.macsq-actualites .cell.card:nth-child(7) .card-inner:before,
.macsq-actualites .cell.card:nth-child(11) .card-inner:before {
    z-index: 1;
}

.macsq-actualites .cell.card:nth-child(2) .card-inner .list-item-category a,
.macsq-actualites .cell.card:nth-child(2) .card-inner .card-title,
.macsq-actualites .cell.card:nth-child(2) .card-inner .list-item-excerpt,
.macsq-actualites .cell.card:nth-child(6) .card-inner .list-item-category a,
.macsq-actualites .cell.card:nth-child(6) .card-inner .card-title,
.macsq-actualites .cell.card:nth-child(6) .card-inner .list-item-excerpt,
.macsq-actualites .cell.card:nth-child(7) .card-inner .list-item-category a,
.macsq-actualites .cell.card:nth-child(7) .card-inner .card-title,
.macsq-actualites .cell.card:nth-child(7) .card-inner .list-item-excerpt,
.macsq-actualites .cell.card:nth-child(11) .card-inner .list-item-category a,
.macsq-actualites .cell.card:nth-child(11) .card-inner .card-title,
.macsq-actualites .cell.card:nth-child(11) .card-inner .list-item-excerpt {
    color: #27334a;
}

.macsq-actualites .cell.card:nth-child(2) .card-inner .card-date:after,
.macsq-actualites .cell.card:nth-child(6) .card-inner .card-date:after,
.macsq-actualites .cell.card:nth-child(7) .card-inner .card-date:after,
.macsq-actualites .cell.card:nth-child(11) .card-inner .card-date:after {
    border-bottom: 1px solid #27334a;
}

.macsq-actualites .cell.card:nth-child(2) .card-inner .card-date span,
.macsq-actualites .cell.card:nth-child(6) .card-inner .card-date span,
.macsq-actualites .cell.card:nth-child(7) .card-inner .card-date span,
.macsq-actualites .cell.card:nth-child(11) .card-inner .card-date span {
    color: #27334a;
}

.macsq-actualites .cell.card:nth-child(3) .card-inner,
.macsq-actualites .cell.card:nth-child(4) .card-inner,
.macsq-actualites .cell.card:nth-child(8) .card-inner,
.macsq-actualites .cell.card:nth-child(12) .card-inner {
    position: relative;
}

.macsq-actualites .cell.card:nth-child(3) .card-inner::before,
.macsq-actualites .cell.card:nth-child(4) .card-inner::before,
.macsq-actualites .cell.card:nth-child(8) .card-inner::before,
.macsq-actualites .cell.card:nth-child(12) .card-inner::before {
    content: "";
    display: block;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #FFB71A;
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
}

.macsq-actualites .cell.card:nth-child(3) .card-inner:before,
.macsq-actualites .cell.card:nth-child(4) .card-inner:before,
.macsq-actualites .cell.card:nth-child(8) .card-inner:before,
.macsq-actualites .cell.card:nth-child(12) .card-inner:before {
    z-index: 1;
}

.macsq-actualites .cell.card:nth-child(3) .card-inner .list-item-category a,
.macsq-actualites .cell.card:nth-child(3) .card-inner .card-title,
.macsq-actualites .cell.card:nth-child(3) .card-inner .list-item-excerpt,
.macsq-actualites .cell.card:nth-child(4) .card-inner .list-item-category a,
.macsq-actualites .cell.card:nth-child(4) .card-inner .card-title,
.macsq-actualites .cell.card:nth-child(4) .card-inner .list-item-excerpt,
.macsq-actualites .cell.card:nth-child(8) .card-inner .list-item-category a,
.macsq-actualites .cell.card:nth-child(8) .card-inner .card-title,
.macsq-actualites .cell.card:nth-child(8) .card-inner .list-item-excerpt,
.macsq-actualites .cell.card:nth-child(12) .card-inner .list-item-category a,
.macsq-actualites .cell.card:nth-child(12) .card-inner .card-title,
.macsq-actualites .cell.card:nth-child(12) .card-inner .list-item-excerpt {
    color: #27334a;
}

.macsq-actualites .cell.card:nth-child(3) .card-inner .card-date:after,
.macsq-actualites .cell.card:nth-child(4) .card-inner .card-date:after,
.macsq-actualites .cell.card:nth-child(8) .card-inner .card-date:after,
.macsq-actualites .cell.card:nth-child(12) .card-inner .card-date:after {
    border-bottom: 1px solid #27334a;
}

.macsq-actualites .cell.card:nth-child(3) .card-inner .card-date span,
.macsq-actualites .cell.card:nth-child(4) .card-inner .card-date span,
.macsq-actualites .cell.card:nth-child(8) .card-inner .card-date span,
.macsq-actualites .cell.card:nth-child(12) .card-inner .card-date span {
    color: #27334a;
}

@media screen and (max-width: 1023px) {
    .macsq-actualites .cell.card .card-inner .plus-sign {
        display: none;
    }
}

@media screen and (max-width: 767px) {
    .macsq-actualites .cell.card .card-inner .plus-sign {
        display: block;
    }
}

.macsq-pre-header-wrapper {
    -webkit-box-shadow: 0px 0px 16px #ccc;
            box-shadow: 0px 0px 16px #ccc;
}

.macsq-pre-header-wrapper .macsq-pre-header .site-logo {
    margin-top: 8px;
    margin-bottom: 8px;
    max-width: 196px;
    max-height: 48px;
}

.macsq-pre-header-wrapper .macsq-pre-header .site-logo > img {
    max-height: 48px;
}

.macsq-pre-header-wrapper .macsq-pre-header .header-flex {
    margin-top: 11px;
    margin-bottom: 11px;
}

/* Nouveaux styles formulaire pied de page */
.newsletter-wrapper.macsq-newsletter-block .macsq-newsletter-wrapper .footer-newsletter-form-wrapper {
    font-size: 18px;
    margin-top: 0;
}

.newsletter-wrapper.macsq-newsletter-block .macsq-newsletter-wrapper .footer-newsletter-form-wrapper .gform_title {
    color: #fefefe;
}

.newsletter-wrapper.macsq-newsletter-block .macsq-newsletter-wrapper .footer-newsletter-form-wrapper .gfield_label {
    color: #fefefe;
    font-weight: normal;
}

.newsletter-wrapper.macsq-newsletter-block .macsq-newsletter-wrapper .footer-newsletter-form-wrapper .ginput_container input,
.newsletter-wrapper.macsq-newsletter-block .macsq-newsletter-wrapper .footer-newsletter-form-wrapper .ginput_container_email input {
    border-radius: 20px;
    padding: 10px 20px;
}

.newsletter-wrapper.macsq-newsletter-block .macsq-newsletter-wrapper .footer-newsletter-form-wrapper .gfield_radio {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

.newsletter-wrapper.macsq-newsletter-block .macsq-newsletter-wrapper .footer-newsletter-form-wrapper .gfield_radio label {
    color: #fefefe;
    font-weight: normal;
}

.newsletter-wrapper.macsq-newsletter-block .macsq-newsletter-wrapper .footer-newsletter-form-wrapper .gform_wrapper.gravity-theme .gform_footer,
.newsletter-wrapper.macsq-newsletter-block .macsq-newsletter-wrapper .footer-newsletter-form-wrapper .gform_wrapper.gravity-theme .gform_page_footer {
    display: block;
}

.newsletter-wrapper.macsq-newsletter-block .macsq-newsletter-wrapper .footer-newsletter-form-wrapper .gform_button {
    padding: 8px 30px;
    display: inline-block;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 16px;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-right: 8px;
    background-color: #FFB71A;
    color: #27334a;
}

.newsletter-wrapper.macsq-newsletter-block .macsq-newsletter-wrapper .footer-newsletter-form-wrapper .gform_button:hover {
    color: #27334a;
}

.newsletter-wrapper.macsq-newsletter-block .macsq-newsletter-wrapper .footer-newsletter-form-wrapper .gform_button::after {
    content: "\0276F";
    color: #F3523F;
    padding-left: 8px;
}

.newsletter-wrapper.macsq-newsletter-block .macsq-newsletter-wrapper .footer-newsletter-form-wrapper .gform_footer {
    text-align: right;
}

/* Classes liens */
.macsq-btn-jaune,
.macsq-btn-bleu,
.macsq-btn-orangefonce,
.macsq-btn-bleufonce,
.macsq-btn-orangepale,
.macsq-btn-bleupale,
.macsq-btn-grisv2,
.macsq-btn-grisfonce,
.macsq-btn-gris,
.macsq-btn-grispale {
    padding: 4px 30px;
    display: inline-block;
    border: none;
    border-radius: 20px;
    font-weight: bold;
    font-size: 18px;
    text-transform: uppercase;
    margin-bottom: 12px;
    margin-right: 8px;
}

.macsq-btn-jaune.macsq-btn-arrow:after,
.macsq-btn-bleu.macsq-btn-arrow:after,
.macsq-btn-orangefonce.macsq-btn-arrow:after,
.macsq-btn-bleufonce.macsq-btn-arrow:after,
.macsq-btn-orangepale.macsq-btn-arrow:after,
.macsq-btn-bleupale.macsq-btn-arrow:after,
.macsq-btn-grisv2.macsq-btn-arrow:after,
.macsq-btn-grisfonce.macsq-btn-arrow:after,
.macsq-btn-gris.macsq-btn-arrow:after,
.macsq-btn-grispale.macsq-btn-arrow:after {
    content: "\0276F";
    color: #F3523F;
    padding-left: 8px;
}

.macsq-btn-jaune {
    background-color: #FFB71A;
    color: #27334a;
}

.macsq-btn-jaune:hover {
    color: #27334a;
}

.macsq-btn-bleu {
    background-color: #0060a9;
    color: #fefefe;
}

.macsq-btn-bleu:hover {
    color: #fefefe;
}

.macsq-btn-bleu.macsq-btn-arrow:after {
    color: #fefefe;
}

.macsq-btn-orangefonce {
    background-color: #F3523F;
    color: #fefefe;
}

.macsq-btn-orangefonce:hover {
    color: #fefefe;
}

.macsq-btn-orangefonce.macsq-btn-arrow:after {
    color: #fefefe;
}

.macsq-btn-bleufonce {
    background-color: #27334a;
    color: #fefefe;
}

.macsq-btn-bleufonce:hover {
    color: #fefefe;
}

.macsq-btn-bleufonce.macsq-btn-arrow:after {
    color: #fefefe;
}

.macsq-btn-orangepale {
    background-color: #f3816e;
    color: #27334a;
}

.macsq-btn-orangepale:hover {
    color: #27334a;
}

.macsq-btn-bleupale {
    background-color: #b7cbe8;
    color: #27334a;
}

.macsq-btn-bleupale:hover {
    color: #27334a;
}

.macsq-btn-grisv2 {
    background-color: #e5e0e6;
    color: #27334a;
}

.macsq-btn-grisv2:hover {
    color: #27334a;
}

.macsq-btn-grisfonce {
    background-color: #7b7b7b;
    color: #fefefe;
}

.macsq-btn-grisfonce:hover {
    color: #fefefe;
}

.macsq-btn-grisfonce.macsq-btn-arrow:after {
    color: #fefefe;
}

.macsq-btn-gris {
    background-color: #bebebe;
    color: #27334a;
}

.macsq-btn-gris:hover {
    color: #27334a;
}

.macsq-btn-grispale {
    background-color: #e4e4e4;
    color: #27334a;
}

.member-services {
    position: relative;
    padding: 0 10px 36px;
}

.member-services::before {
    content: "";
    background: #0057a0;
    position: absolute;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    display: block;
    z-index: 1;
    margin-right: 0;
    margin-top: 70px;
    margin-left: 0;
    margin-bottom: 0;
}

.member-services .grid-x {
    margin-left: -1px;
    margin-right: -1px;
}

@media print, screen and (min-width: 48em) {
    .member-services {
        padding: 0 20px 36px;
    }
}

@media print, screen and (min-width: 64em) {
    .member-services {
        padding: 0 65px 70px;
    }
}

.member-service {
    position: relative;
    display: block;
    margin: auto;
    z-index: 2;
    width: calc(50% - 2px);
}

.member-service:hover .member-service-text {
    color: #fff;
}

.member-service:hover .member-service-text .icon-wrapper {
    -webkit-transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    transition: all 150ms cubic-bezier(0.455, 0.03, 0.515, 0.955);
    -webkit-transform: translateX(4px);
            transform: translateX(4px);
}

@media print, screen and (min-width: 48em) {
    .member-service {
        width: calc(33% - 2px);
    }
}

.member-service-image {
    width: 100%;
}

.member-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.member-service-text {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 1rem;
    display: block;
    color: #fff;
    text-align: center;
    text-transform: uppercase;
    font-weight: 500;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 24px;
    line-height: 1.5rem;
    padding-left: 10px;
    padding-right: 10px;
}

.member-service-text .icon-wrapper {
    margin-bottom: 3px;
}

.member-service-text svg {
    fill: #fff;
}

@media print, screen and (min-width: 48em) {
    .member-service-text {
        bottom: 2rem;
        font-size: 20px;
        font-size: 1.25rem;
        line-height: 24px;
        line-height: 1.5rem;
    }
}

.more-services {
    background: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
}

.newsletter-wrapper {
    background-color: #0057a0;
    background-image: url("../img/banner-newsletter.png");
    background-repeat: no-repeat;
    background-position: left;
    background-size: cover;
}

.newsletter-wrapper .title {
    color: #fff;
    font-weight: normal;
    font-size: 24px;
    font-size: 1.5rem;
    line-height: 1.4;
    margin-bottom: 24px;
}

.newsletter-wrapper .content-wrapper {
    padding-top: 36px;
    padding-bottom: 24px;
}

.newsletter-wrapper .button {
    font-family: "Roboto", sans-serif;
    font-weight: normal;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4;
}

.newsletter-wrapper input,
.newsletter-wrapper select {
    background-color: #fff;
}

.newsletter-wrapper input:focus,
.newsletter-wrapper select:focus {
    background-color: #fff;
}

.newsletter-wrapper .folder {
    position: relative;
}

.newsletter-wrapper .folder-trigger {
    width: 100%;
    margin: 0;
    padding: 0.5rem;
    padding-right: 3rem;
    padding-right: 3rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: normal;
    line-height: 1.5;
    color: #0a0a0a;
    border: 0;
    border-radius: 0;
    background-color: #fff;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' width='12px' height='17px'%3E%3Cpath fill-rule='evenodd' fill='rgb(30, 30, 30)' d='M6.000,17.000 C6.214,16.992 6.462,16.899 6.619,16.745 L11.717,11.708 C12.009,11.365 12.130,10.711 11.792,10.330 C11.459,9.954 10.815,9.967 10.480,10.340 L6.900,13.882 L6.900,0.943 C6.900,0.422 6.497,-0.001 6.000,-0.001 C5.503,-0.001 5.100,0.422 5.100,0.943 L5.100,13.882 L1.520,10.340 C1.212,10.018 0.544,9.957 0.208,10.330 C-0.129,10.702 -0.021,11.381 0.282,11.708 L5.381,16.745 C5.556,16.917 5.761,17.000 6.000,17.000 L6.000,17.000 Z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-origin: border-box;
    background-size: 12px 17px;
    cursor: pointer;
    text-align: left;
}

@media print, screen and (min-width: 48em) {
    .newsletter-wrapper .folder-trigger {
        height: 2.4375rem;
    }
}

.newsletter-wrapper .folder-content {
    display: none;
    position: absolute;
    top: 100%;
    width: 100%;
    padding: 1rem;
    background-color: #fff;
}

.newsletter-wrapper .folder-content::before {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 50%;
    width: calc(100% - 16px);
    border-top: 1px solid #b6b5b5;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

.newsletter-wrapper .folder-content input[type="checkbox"] {
    display: none;
}

.newsletter-wrapper .folder-content input[type="checkbox"]:checked ~ label::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background: #0a0a0a;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
}

.newsletter-wrapper .folder-content label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 0;
    line-height: 3;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    line-height: 2.5;
}

.newsletter-wrapper .folder-content label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 16px;
    border: 1px solid #b6b5b5;
    border-radius: 1px;
    background: #fff;
}

.page-event-header {
    margin-bottom: 30px;
}

@media print, screen and (min-width: 48em) {
    .page-event-header {
        margin-bottom: 70px;
    }
}

.page-event-header .h2 {
    margin: 0;
    margin-right: 20px;
}

.page-event-header .filter-wrapper {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
    white-space: nowrap;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-top: 20px;
}

.page-event-header .filter-wrapper div {
    margin-right: 8px;
}

@media print, screen and (min-width: 48em) {
    .page-event-header .filter-wrapper {
        margin-top: 0;
    }
}

.pagination {
    margin: 50px auto 0;
}

.pagination .pages {
    margin: 0;
}

.pagination li {
    padding-left: 8px;
    padding-right: 8px;
}

.pagination span,
.pagination a {
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.4;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    padding: 4px 8px;
    color: #000;
}

.pagination span.is-active,
.pagination a.is-active {
    color: #0057a0;
    text-decoration: underline;
}

.pagination a {
    color: #0a0a0a;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pagination a:hover {
    opacity: 0.6;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pagination div {
    fill: #9d9d9d;
}

.pagination a.pagination-arrow {
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.pagination a.pagination-arrow.pagination-arrow-prev:hover {
    -webkit-transform: translate(-5px);
            transform: translate(-5px);
}

.pagination a.pagination-arrow.pagination-arrow-next:hover {
    -webkit-transform: translate(5px);
            transform: translate(5px);
}

.related-wrapper {
    padding-top: 24px;
    padding-bottom: 60px;
}

.related-wrapper.home-section--bg {
    background: #f6f5f3;
}

@media print, screen and (min-width: 48em) {
    .related-wrapper {
        padding-top: 60px;
    }
}

.related-header {
    margin-bottom: 1rem;
}

.related-header h2 {
    margin-bottom: 0;
    font-size: 22px;
    font-size: 1.375rem;
    line-height: 1.4;
}

@media print, screen and (min-width: 48em) {
    .related-header h2 {
        font-size: 2rem;
    }
}

.search-wrapper {
    outline: none;
    cursor: pointer;
    position: relative;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}

.search-wrapper input[type="search"] {
    z-index: 2;
    position: relative;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    width: 40px;
    height: 40px;
    margin: 0;
    padding: 0;
    padding-left: 36px;
    border: 2px solid #0057a0;
    border-radius: 20px;
    outline: none;
    cursor: pointer;
    background-color: transparent;
    background-image: url("../svg/originals/loupe.svg");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-wrapper input[type="search"]:focus {
    width: 150px;
    margin-right: 32px;
    background-position: 12px 50%;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    cursor: text;
}

.search-wrapper input[type="search"]:focus ~ button[type="reset"] {
    right: 0;
    opacity: 1;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.search-wrapper button[type="reset"] {
    position: absolute;
    top: 49%;
    right: 0;
    padding: 3px;
    opacity: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
    -webkit-transform: translateY(-50%);
            transform: translateY(-50%);
}

.search .l-content .block-list {
    margin: 48px -15px 0;
}

.search .l-content .block-list .card {
    margin-bottom: 72px;
    padding: 0;
}

.search .l-content .list-item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}

@media print, screen and (min-width: 64em) {
    .search .l-content .list-item {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
    }
}

.search .l-content .img-wrapper {
    width: 100%;
}

.search .l-content .content-wrapper {
    padding: 0;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
}

@media print, screen and (min-width: 64em) {
    .search .l-content .content-wrapper {
        padding: 1rem 0 1rem 30px;
    }
}

@media screen and (min-width: 75em) {
    .search .l-content .content-wrapper {
        padding-left: 50px;
    }
}

.search .l-content .list-item-title-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
    -webkit-flex-direction: column-reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
}

.search .l-content .l-content-wrapper {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
}

@media print, screen and (min-width: 48em) {
    .search .l-content .l-content-wrapper {
        -webkit-flex-wrap: nowrap;
            -ms-flex-wrap: nowrap;
                flex-wrap: nowrap;
    }
}

.search .l-content .l-block-sidebar {
    width: 100%;
}

@media print, screen and (min-width: 48em) {
    .search .l-content .l-block-sidebar {
        width: auto;
    }
}

.article-share-wrapper {
    max-width: 720px;
    margin: 60px auto;
}

.article-share-wrapper ul {
    border: 1px solid #0a0a0a;
}

.article-share-wrapper li {
    border-right: 1px solid #0a0a0a;
}

.article-share-wrapper li:last-child {
    border-right: 0;
}

.article-share-wrapper a {
    display: block;
    width: 100%;
    padding: 16px 24px;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.article-share-wrapper a:hover {
    fill: #0057a0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

.side-nav {
    background-clip: content-box;
}

@media print, screen and (min-width: 64em) {
    .side-nav {
        max-width: 440px;
    }
}

.side-nav.fixed-sidemenu {
    position: fixed;
    top: 100px;
    width: inherit;
}

@media (max-width: 1024px) {
    .side-nav {
        padding-top: 20px;
    }
}

.side-nav.withHeaderFixed {
    top: 100px !important;
}

.side-nav-list {
    background: #f6f5f3;
    border-bottom: solid 3px #242424;
}

.side-nav-list-item {
    border-top: solid 1px #0057a0;
}

.side-nav-list-item.side-nav-list-item--open > a {
    background: #0057a0;
    color: #fefefe;
}

.side-nav-list-item > a {
    display: inline-block;
    padding: 16px;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
    line-height: 1.375rem;
    color: #242424;
    font-weight: 500;
    width: 100%;
}

.side-nav-sublist-item {
    border-bottom: solid 1px #b6b5b5;
}

.side-nav-sublist-item > a {
    display: inline-block;
    padding: 16px 0;
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
    line-height: 1.375rem;
    font-weight: 500;
    color: #242424;
    margin: 0 16px;
    width: calc(100% - 30px);
}

.side-nav-sublist-item:last-child {
    border-bottom: 0;
}

.side-nav-sublist-item:hover {
    background-color: #e8e8e8;
}

.side-nav-sublist-item.active-child {
    border-left: 5px solid #0057a0;
    background-color: #e8e8e8;
}

.side-nav-subsublist-item > a {
    display: inline-block;
    padding: 8px 0 8px 16px;
    margin: 0 16px;
    font-size: 16px;
    font-size: 1rem;
    line-height: 24px;
    line-height: 1.5rem;
    font-weight: 400;
    color: #242424;
}

.side-nav-subsublist-item > a:hover {
    color: #0057a0;
}

.side-nav-subsublist-item > a.current {
    color: #0057a0;
}

.side-nav-subsublist-item:first-child > a {
    padding-top: 0;
}

.side-nav-subsublist-item:last-child {
    padding-bottom: 10px;
}

.sidebar {
    width: 100%;
    margin: 1rem 0;
    padding: 16px;
    background-color: #f6f5f3;
}

@media print, screen and (min-width: 48em) {
    .sidebar {
        width: 300px;
        margin-right: 30px;
    }
}

@media screen and (min-width: 75em) {
    .sidebar {
        margin-right: 50px;
    }
}

.sidebar .sidebar-title {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
}

.sidebar .icon-filters {
    margin-right: 8px;
    fill: #0057a0;
}

.sidebar .folder-trigger {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    margin: 0;
    font-family: "Dosis", sans-serif;
    text-transform: uppercase;
    cursor: pointer;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.sidebar .folder-trigger::after {
    content: "-";
    display: inline-block;
    width: 20px;
}

.sidebar .folder-content {
    margin-top: 8px;
}

.sidebar .folder {
    margin-top: 16px;
    padding: 16px 0;
    border-top: 1px solid #b6b5b5;
    border-bottom: 1px solid #b6b5b5;
}

.sidebar .folder ~ .folder {
    margin-top: -1px;
}

.sidebar .folder.is-open .folder-trigger::after {
    content: "+";
}

.sidebar input[type="checkbox"] {
    display: none;
}

.sidebar input[type="checkbox"]:checked ~ label::after {
    content: "";
    display: block;
    position: absolute;
    width: 20px;
    height: 20px;
    background: #0a0a0a;
    -webkit-transform: scale(0.6);
            transform: scale(0.6);
}

.sidebar label {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    position: relative;
    margin: 0;
    line-height: 3;
    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.sidebar label::before {
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    margin-right: 16px;
    border: 1px solid #b6b5b5;
    border-radius: 1px;
    background: #fefefe;
}

.sidebar .button-group {
    margin-top: 1em;
}

.sidebar .button-group button {
    margin: 0;
}

.sidebar .button-group button[type="reset"] {
    outline: none;
    text-decoration: underline;
}

.slick-arrows {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-right: 10px;
}

.slick-arrow {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex;
    cursor: pointer;
    padding: 8px 5px 7px 0;
}

.slick-arrow:focus {
    outline: none;
}

.slick-arrow:hover {
    opacity: 0.5;
}

.slick-slide {
    outline: none;
}

.slick-disabled {
    fill: #9d9d9d;
    cursor: default;
}

.slick-pagination {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    position: absolute;
    right: 0;
    margin-top: 4px;
}

.slick-pagination span {
    color: #0057a0;
}

.acf-gallery-wrapper .slick-slide {
    margin-right: 2em;
}

.acf-gallery-wrapper .slick-list {
    overflow: visible !important;
    margin-right: -2em;
}

.acf-gallery-wrapper .slick-description {
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.4;
    margin-top: 5px;
    font-family: "Roboto", sans-serif;
    opacity: 0;
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
}

@media print, screen and (min-width: 48em) {
    .acf-gallery-wrapper .slick-description {
        max-width: calc(100% - 140px);
    }
}

.acf-gallery-wrapper .slick-active .slick-description {
    opacity: 1;
    -webkit-transition: all 300ms ease 300ms;
    transition: all 300ms ease 300ms;
    -webkit-transform: translateY(0);
            transform: translateY(0);
}

.acf-gallery-wrapper .slick-infos {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 22px;
    line-height: 1.375rem;
    position: static;
    right: 0;
    bottom: 0;
    width: 100%;
    margin-top: 10px;
    margin-right: 0;
    -webkit-transition: all 300ms ease;
    transition: all 300ms ease;
}

@media print, screen and (min-width: 48em) {
    .acf-gallery-wrapper .slick-infos {
        position: absolute;
        width: auto;
        margin-top: 0;
    }
}

.recent-news-wrapper {
    display: none;
    margin: 0 -1rem;
    background: #f6f5f3;
}

@media print, screen and (min-width: 48em) {
    .recent-news-wrapper {
        margin: 0;
    }
}

.recent-news-wrapper .slick-news {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}

.recent-news-wrapper .slick-tag {
    font-weight: 600;
}

.recent-news-wrapper .slick-date {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.recent-news-wrapper .slick-date::before {
    content: "";
    display: block;
    width: 75px;
    height: 1px;
    margin: 0 24px 0 10px;
    border-bottom: 1px solid #b6b5b5;
    -webkit-flex-shrink: 1;
        -ms-flex-negative: 1;
            flex-shrink: 1;
}

.recent-news-wrapper .slick-date span {
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
}

.recent-news-wrapper .slick-link {
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.recent-news-wrapper .slick-link:hover {
    text-decoration: line-through;
}

.recent-news-wrapper .slick-slide {
    padding: 1em;
}

.recent-news-wrapper .slick-infos {
    position: relative;
    padding: 0 1em 1em;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
}

@media print, screen and (min-width: 64em) {
    .recent-news-wrapper .slick-infos {
        display: none;
    }
}

.recent-news-wrapper .slick-pagination {
    position: absolute;
    left: 50%;
    -webkit-transform: translateX(-50%);
            transform: translateX(-50%);
}

.recent-news-wrapper .slick-arrows {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

.js-slides {
    height: 450px;
    margin-left: 0;
    z-index: 80;
}

.js-slides .cycle-slide {
    width: 100%;
    height: 100%;
}

.js-slides .cycle-slide.with-text::after {
    position: absolute;
    z-index: 92;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    content: '';
    background: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.7)), color-stop(15%, rgba(0, 0, 0, 0.7)), to(rgba(0, 0, 0, 0)));
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.7) 15%, rgba(0, 0, 0, 0) 100%);
}

.with-slides {
    position: relative;
}

.js-slide-caption {
    font-size: 3rem;
    font-weight: bold;
    line-height: 3rem;
    position: absolute;
    z-index: 95;
    bottom: 30px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    text-align: center;
    color: white;
}

.js-slide-caption .subtitle {
    font-size: 1.5rem;
    line-height: 1.5rem;
    display: block;
    text-align: center;
}

.slides-control {
    position: relative;
    z-index: 91;
    width: 100%;
    margin-top: 5px;
    margin-left: 0;
    text-align: center;
}

.slides-control li {
    position: relative;
    position: relative;
    bottom: 0;
    display: inline-block;
    width: 280px;
    height: 66px;
    -webkit-transition: bottom .25s;
    transition: bottom .25s;
    border: 2px solid rgba(255, 255, 255, 0);
    border-radius: 0;
    -webkit-box-sizing: content-box;
            box-sizing: content-box;
}

.slides-control li.active {
    border: 2px solid #0057a0;
    border-radius: 0;
}

.slides-control li button {
    position: absolute;
    z-index: 95;
    bottom: 10px;
    left: 0;
    width: 100%;
    padding: 0 5px;
    text-align: center;
    color: white;
}

.wrapper-title.js-swipe-slides {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%;
    z-index: 90;
}

.wrapper-title.js-swipe-slides a {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 93;
    display: block;
}

@media only screen and (max-width: 767px) {
    .cycle-slide {
        background-size: contain !important;
    }
}

@media only screen and (max-width: 450px) {
    .slides-control li {
        width: 100px;
        height: 70px;
    }
    .slides-control li button {
        font-size: .7rem;
    }
    .js-slide-caption {
        font-size: 1.5rem;
        line-height: 1.5rem;
    }
    .js-slide-caption .subtitle {
        font-size: 1rem;
        line-height: 1.5rem;
    }
}

.social-nav {
    border-top: solid 1px #686868;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    list-style: none;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
        -ms-flex-pack: justify;
            justify-content: space-between;
}

@media print, screen and (min-width: 64em) {
    .social-nav {
        border-top: 0;
        margin-left: -10px;
        margin-right: 20px;
    }
}

.social-nav li {
    margin-left: 10px;
    margin-right: 10px;
    text-align: center;
}

@media print, screen and (min-width: 64em) {
    .social-nav li {
        width: auto;
    }
}

.macsq-menu-mobile-socials {
    text-align: center;
}

.macsq-menu-mobile-socials .macsq-social-nav {
    position: relative;
    padding: 12px 24px;
    width: auto;
    display: inline-block;
}

.macsq-menu-mobile-socials .macsq-social-nav::before {
    content: "";
    display: block;
    opacity: 1;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: -1;
    background: #b7cbe8;
    -webkit-transform: rotate(-2deg);
            transform: rotate(-2deg);
    -webkit-transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s;
    transition: opacity 0.4s, transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), background-color 0.4s, -webkit-transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border-radius: 20px;
}

.macsq-menu-mobile-socials .macsq-social-nav li {
    display: inline-block;
    margin-left: 12px;
}

.macsq-menu-mobile-socials .macsq-social-nav li:first-child {
    margin-left: 0;
}

.macsq-menu-mobile-socials .macsq-social-nav svg {
    fill: #0661a9;
}

.videos-bloc {
    margin: 0 -16px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
}

@media print, screen and (min-width: 48em) {
    .videos-bloc {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -webkit-flex-direction: row;
            -ms-flex-direction: row;
                flex-direction: row;
    }
}

.videos-bloc .video-bloc {
    width: 100%;
    max-width: 350px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-flex: 1;
    -webkit-flex-grow: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    margin: 0 auto 16px;
    position: relative;
    background-size: cover;
    aspect-ratio: 361 / 250;
}

@media print, screen and (min-width: 48em) {
    .videos-bloc .video-bloc {
        max-width: none;
        margin: 0 16px;
    }
}

.videos-bloc .video-bloc .icon-play {
    border-radius: 55px;
    position: relative;
    z-index: 3;
    -webkit-box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.11);
            box-shadow: 0px 0px 15px 10px rgba(0, 0, 0, 0.11);
    background-color: rgba(0, 0, 0, 0.11);
}

.videos-bloc .video-bloc .icon-play svg {
    fill: #fff;
}

.videos-bloc .video-bloc::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: #0057a0;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.videos-bloc .video-bloc:hover::before {
    opacity: .5;
}

.videos-bloc .video-bloc-img {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
}

.videos-bloc .video-bloc-img img {
    width: 100%;
    -webkit-box-flex: 0;
    -webkit-flex-grow: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
}

/* =WordPress Core
-------------------------------------------------------------- */
.alignnone {
    margin: 5px 20px 20px 0;
}

.aligncenter,
div.aligncenter {
    display: block;
    margin: 5px auto 5px auto;
}

.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.alignright {
    float: right;
    margin: 5px 0 20px 20px;
}

a img.alignnone {
    margin: 5px 20px 20px 0;
}

a img.alignleft {
    float: left;
    margin: 5px 20px 20px 0;
}

a img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.wp-caption {
    background: #fff;
    border: 1px solid #f0f0f0;
    max-width: 96%;
    /* Image does not overflow the content area */
    padding: 5px 3px 10px;
    text-align: center;
}

.wp-caption.alignnone {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignleft {
    margin: 5px 20px 20px 0;
}

.wp-caption.alignright {
    margin: 5px 0 20px 20px;
}

.wp-caption img {
    border: 0 none;
    height: auto;
    margin: 0;
    max-width: 98.5%;
    padding: 0;
    width: auto;
}

.wp-caption p.wp-caption-text {
    font-size: 11px;
    line-height: 17px;
    margin: 0;
    padding: 0 4px 5px;
}

/* Text meant only for screen readers. */
.screen-reader-text {
    border: 0;
    clip: rect(1px, 1px, 1px, 1px);
    -webkit-clip-path: inset(50%);
            clip-path: inset(50%);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute !important;
    width: 1px;
    word-wrap: normal !important;
    /* Many screen reader and browser combinations announce broken words as they would appear visually. */
}

.screen-reader-text:focus {
    background-color: #eee;
    clip: auto !important;
    -webkit-clip-path: none;
            clip-path: none;
    color: #444;
    display: block;
    font-size: 1em;
    height: auto;
    left: 5px;
    line-height: normal;
    padding: 15px 23px 14px;
    text-decoration: none;
    top: 5px;
    width: auto;
    z-index: 100000;
    /* Above WP toolbar. */
}

.wpcf7-form {
    padding-bottom: 2em;
    border-bottom: 1px solid #0a0a0a;
}

.wpcf7-form label {
    font-size: 18px;
    font-size: 1.125rem;
    line-height: 1.4;
    margin-top: 0.5rem;
    margin-bottom: 1.2rem;
    font-family: "Roboto", sans-serif;
    font-weight: 700;
}

.wpcf7-form label > span {
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.4;
    font-weight: 400;
}

.wpcf7-form input[type="file"] {
    display: none;
}

.js .inputfile {
    z-index: -1;
    position: absolute;
    overflow: hidden;
    width: 0.1px;
    height: 0.1px;
    opacity: 0;
}

.inputfile + .file-label {
    overflow: hidden;
    max-width: 80%;
    padding: 4px 0;
    font-family: "Roboto", sans-serif;
    font-size: 1.25rem;
    font-weight: 700;
    font-weight: 400;
    white-space: nowrap;
    text-transform: uppercase;
    text-overflow: ellipsis;
    cursor: pointer;
}

.no-js .inputfile + .file-label {
    display: none;
}

.inputfile:focus + .file-label,
.inputfile.has-focus + .file-label {
    outline: 1px dotted #000;
    outline: -webkit-focus-ring-color auto 5px;
}

.inputfile + .file-label svg {
    vertical-align: middle;
    margin-top: -0.25em;
    margin-left: 0.25em;
    fill: currentColor;
}

.inputfile + .file-label {
    color: #0057a0;
}

.inputfile:focus + .file-label,
.inputfile.has-focus + .file-label,
.inputfile + .file-label:hover {
    color: #003b6d;
}

/*# sourceMappingURL=app.css.map */
