/*!
Project: sonda
Version: 0.0.0
*/
@charset "UTF-8";
/* TYPEKIT */
:root {
    --breakpoint: xxl;
    --font: Futura PT, 'Segoe UI', Arial, Helvetica, 'Helvetica Neue', sans-serif;
    --font-secondary: var(--font);
    --font-size: 16px;
    --line-height: 1.5;
    --paragraph-spacing: 1.5rem;
    --font-size-xs: 1rem;
    --font-size-sm: 1.125rem;
    --font-size-md: 1.562rem;
    --font-size-lg: 2.188rem;
    --font-size-xl: 2.5rem;
    --font-regular: 400;
    --font-medium: 500;
    --font-bold: 700;
    --h0: 60px;
    --h1: 40px;
    --h2: 30px;
    --h3: 25px;
    --h4: 20px;
    --h5: 16px;
    --h6: 14px;
    --color: #fff;
    --bg-color: #000;
    --primary: #84A38E;
    --primary-dark: #266256;
    --secondary: #F2DA9B;
    --secondary-dark: #ecc96e;
    --light: #f2f2f2;
    --dark: #050504;
    --gray-light: #f2f2f2;
    --gray: #8D8D8D;
    --gray-dark: #666;
    --border-color: #dfdfdf;
    --img-bg: var(--gray-light);
    --green: #7ab573;
    --orange: #f6b036;
    --red: #de594a;
    --info: var(--light);
    --success: var(--green);
    --warning: var(--orange);
    --error: var(--red);
    --spacing: 8px;
    --gutter-x: 30px;
    --gutter-y: 30px;
    --container-width: 100%;
    --container-padding: 52px;
    --section-padding: 100px;
    --border-radius: 0;
}

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

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

@media (max-width: 991.98px) {
    :root {
        --breakpoint: md;
        --section-padding: 50px;
    }
}

@media (max-width: 767.98px) {
    :root {
        --breakpoint: sm;
        --paragraph-spacing: 1rem;
    }
}

@media (max-width: 575.98px) {
    :root {
        --breakpoint: xs;
        --section-padding: 30px;
    }
}

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

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

ol,
ul {
    list-style: none;
}

q,
blockquote {
    quotes: none;
}

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

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

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

[tabindex='-1']:focus:not(:focus-visible) {
    outline: 0 !important;
    /* stylelint-disable-line declaration-no-important */
}

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

button {
    cursor: pointer;
}

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

svg {
    display: block;
    fill: currentColor;
}

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

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

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

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

@media (max-width: 991.98px) {
    :root {
        --container-padding: 32px;
        --font-size: 15px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --gutter-x: 12px;
        --gutter-y: 12px;
        --container-padding: 22px;
    }
}

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

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

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

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

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

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

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

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

a {
    color: currentColor;
    text-decoration: none;
    /* &:active{
        outline: none;
        -moz-outline-style: none;
    } */
}

b,
strong {
    font-weight: 700;
}

i,
em {
    font-style: italic;
}

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

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

.apply-formatting {
    /* blockquote{
        margin-bottom: var(--paragraph-spacing);

        p{
            @include text-lg;
            padding-left: 30px;
            border-left: 3px solid var(--primary);
        }

        footer{
            @include text-sm;
            padding-left: 30px;

            &:before{
                content: '— ';
            }
        }
    } */
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

/**
 * Owl Carousel v2.3.4
 * Copyright 2013-2018 David Deutsch
 * Licensed under: SEE LICENSE IN https://github.com/OwlCarousel2/OwlCarousel2/blob/master/LICENSE
 */
.owl-carousel {
    display: none;
    width: 100%;
    -webkit-tap-highlight-color: transparent;
    /* position relative and z-index fix webkit rendering fonts issue */
    position: relative;
    z-index: 1;
}

.owl-carousel .owl-stage {
    position: relative;
    -ms-touch-action: pan-Y;
    touch-action: manipulation;
    -moz-backface-visibility: hidden;
    /* fix firefox animation glitch */
}

.owl-carousel .owl-stage:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.owl-carousel .owl-stage-outer {
    position: relative;
    overflow: hidden;
    /* fix for flashing background */
    -webkit-transform: translate3d(0px, 0px, 0px);
    transform: translate3d(0px, 0px, 0px);
}

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item {
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
}

.owl-carousel .owl-item {
    position: relative;
    min-height: 1px;
    float: left;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
    opacity: .5;
    transition: all .5s ease;
}

.owl-carousel .owl-item.active {
    opacity: 1;
    transition: all .5s ease;
}

.owl-carousel .owl-item img {
    display: block;
    width: 100%;
}

.owl-carousel .owl-nav.disabled,
.owl-carousel .owl-dots.disabled {
    display: none;
}

.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next,
.owl-carousel .owl-dot {
    cursor: pointer;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next,
.owl-carousel button.owl-dot {
    background: none;
    color: inherit;
    border: none;
    padding: 0 !important;
    font: inherit;
}

.owl-carousel.owl-loaded {
    display: block;
}

.owl-carousel.owl-loading {
    opacity: 0;
    display: block;
}

.owl-carousel.owl-hidden {
    opacity: 0;
}

.owl-carousel.owl-refresh .owl-item {
    visibility: hidden;
}

.owl-carousel.owl-drag .owl-item {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.owl-carousel.owl-grab {
    cursor: move;
    cursor: grab;
}

.owl-carousel.owl-rtl {
    direction: rtl;
}

.owl-carousel.owl-rtl .owl-item {
    float: right;
}

.owl-carousel .animated {
    animation-duration: 1000ms;
    animation-fill-mode: both;
}

.owl-carousel .owl-animated-in {
    z-index: 0;
}

.owl-carousel .owl-animated-out {
    z-index: 1;
}

.owl-carousel .fadeOut {
    animation-name: fadeOut;
}

@keyframes fadeOut {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.owl-height {
    transition: height 500ms ease-in-out;
}

/* .owl-carousel {

    .owl-item {

        .owl-lazy {
                opacity: 0;
                transition: opacity 400ms ease;
        }

        .owl-lazy[src^=""], .owl-lazy:not([src]) {
            max-height: 0;
        }

        img.owl-lazy {
            transform-style: preserve-3d;
        }
    }
} */
/* .owl-carousel {

    .owl-video-wrapper {
        position: relative;
        height: 100%;
        background: #000;
    }

    .owl-video-play-icon {
        position: absolute;
        height: 80px;
        width: 80px;
        left: 50%;
        top: 50%;
        margin-left: -40px;
        margin-top: -40px;
        background: url("../img/play-button.svg") no-repeat;
        cursor: pointer;
        z-index: 1;
        -webkit-backface-visibility: hidden;
        transition: transform 100ms ease;
    }

    .owl-video-play-icon:hover {
        transform: scale(1.3, 1.3);
    }

    .owl-video-playing .owl-video-tn,
    .owl-video-playing .owl-video-play-icon {
        display: none;
    }

    .owl-video-tn {
        opacity: 0;
        height: 100%;
        background-position: center center;
        background-repeat: no-repeat;
        background-size: contain;
        transition: opacity 400ms ease;
    }

    .owl-video-frame {
        position: relative;
        z-index: 1;
        height: 100%;
        width: 100%;
    }
} */
.owl-dots {
    display: block;
    width: 100%;
    position: absolute;
    bottom: 1.25em;
    left: 0;
    text-align: center;
    height: 0.9375em;
}

.owl-dot {
    position: relative;
    width: 0.9375em;
    height: 0.9375em;
    display: inline-block;
    margin: 0 0.46875em;
    transition-duration: 0.2s;
}

.owl-dot span {
    display: block;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    transition-duration: 0.2s;
}

.owl-dot.active span {
    background-color: #fff;
}

.film-strip-wrapper {
    overflow: hidden;
}

.film-strip {
    width: 100%;
    position: relative;
}

.film-strip__slides .owl-stage-outer {
    overflow: visible;
}

.film-strip__nav {
    position: absolute;
    z-index: 2;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    padding: 0 var(--container-padding);
    pointer-events: none;
}

.film-strip__nav .slider-nav__button {
    pointer-events: all;
    border: none;
    color: #fff;
    height: 40px;
    width: 40px;
    -ms-flex-align: center;
    align-items: center;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
    -ms-flex-pack: center;
    justify-content: center;
    background: transparent;
    border-radius: 50%;
}

.film-strip__nav .slider-nav__button:hover {
    background-color: var(--primary-dark);
}

.film-strip__nav .slider-nav__button--next {
    margin-left: auto;
}

.film-strip-slide {
    height: 590px;
}

.film-strip-slide__img {
    height: 100%;
}

.film-strip-slide__img:before {
    padding-top: var(--aspect-ratio, 50%);
}

@media (max-width: 1279.98px) {
    .film-strip-slide {
        height: 490px;
    }
    .film-strip-slide:before {
        padding-top: var(--aspect-ratio, 64%);
    }
}

@media (max-width: 991.98px) {
    .film-strip-slide {
        height: 460px;
    }
    .film-strip-slide:before {
        padding-top: var(--aspect-ratio, 100%);
    }
}

@media (max-width: 767.98px) {
    .film-strip-slide {
        height: 280px;
    }
}

@media (max-width: 575.98px) {
    .film-strip-slide {
        height: 220px;
    }
}

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

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

.container--sm {
    --container-width: 760px;
}

.container--md {
    --container-width: 1024px;
}

.container--lg {
    --container-width: 1190px;
}

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

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

.col-1 {
    width: 8.33333%;
}

.col-2 {
    width: 16.66667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33333%;
}

.col-5 {
    width: 41.66667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33333%;
}

.col-8 {
    width: 66.66667%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33333%;
}

.col-11 {
    width: 91.66667%;
}

.col-12 {
    width: 100%;
}

@media (max-width: 1399.98px) {
    .xl\:col-1 {
        width: 8.33333%;
    }
    .xl\:col-2 {
        width: 16.66667%;
    }
    .xl\:col-3 {
        width: 25%;
    }
    .xl\:col-4 {
        width: 33.33333%;
    }
    .xl\:col-5 {
        width: 41.66667%;
    }
    .xl\:col-6 {
        width: 50%;
    }
    .xl\:col-7 {
        width: 58.33333%;
    }
    .xl\:col-8 {
        width: 66.66667%;
    }
    .xl\:col-9 {
        width: 75%;
    }
    .xl\:col-10 {
        width: 83.33333%;
    }
    .xl\:col-11 {
        width: 91.66667%;
    }
    .xl\:col-12 {
        width: 100%;
    }
}

@media (max-width: 1279.98px) {
    .lg\:col-1 {
        width: 8.33333%;
    }
    .lg\:col-2 {
        width: 16.66667%;
    }
    .lg\:col-3 {
        width: 25%;
    }
    .lg\:col-4 {
        width: 33.33333%;
    }
    .lg\:col-5 {
        width: 41.66667%;
    }
    .lg\:col-6 {
        width: 50%;
    }
    .lg\:col-7 {
        width: 58.33333%;
    }
    .lg\:col-8 {
        width: 66.66667%;
    }
    .lg\:col-9 {
        width: 75%;
    }
    .lg\:col-10 {
        width: 83.33333%;
    }
    .lg\:col-11 {
        width: 91.66667%;
    }
    .lg\:col-12 {
        width: 100%;
    }
}

@media (max-width: 991.98px) {
    .md\:col-1 {
        width: 8.33333%;
    }
    .md\:col-2 {
        width: 16.66667%;
    }
    .md\:col-3 {
        width: 25%;
    }
    .md\:col-4 {
        width: 33.33333%;
    }
    .md\:col-5 {
        width: 41.66667%;
    }
    .md\:col-6 {
        width: 50%;
    }
    .md\:col-7 {
        width: 58.33333%;
    }
    .md\:col-8 {
        width: 66.66667%;
    }
    .md\:col-9 {
        width: 75%;
    }
    .md\:col-10 {
        width: 83.33333%;
    }
    .md\:col-11 {
        width: 91.66667%;
    }
    .md\:col-12 {
        width: 100%;
    }
}

@media (max-width: 767.98px) {
    .sm\:col-1 {
        width: 8.33333%;
    }
    .sm\:col-2 {
        width: 16.66667%;
    }
    .sm\:col-3 {
        width: 25%;
    }
    .sm\:col-4 {
        width: 33.33333%;
    }
    .sm\:col-5 {
        width: 41.66667%;
    }
    .sm\:col-6 {
        width: 50%;
    }
    .sm\:col-7 {
        width: 58.33333%;
    }
    .sm\:col-8 {
        width: 66.66667%;
    }
    .sm\:col-9 {
        width: 75%;
    }
    .sm\:col-10 {
        width: 83.33333%;
    }
    .sm\:col-11 {
        width: 91.66667%;
    }
    .sm\:col-12 {
        width: 100%;
    }
}

@media (max-width: 575.98px) {
    .xs\:col-1 {
        width: 8.33333%;
    }
    .xs\:col-2 {
        width: 16.66667%;
    }
    .xs\:col-3 {
        width: 25%;
    }
    .xs\:col-4 {
        width: 33.33333%;
    }
    .xs\:col-5 {
        width: 41.66667%;
    }
    .xs\:col-6 {
        width: 50%;
    }
    .xs\:col-7 {
        width: 58.33333%;
    }
    .xs\:col-8 {
        width: 66.66667%;
    }
    .xs\:col-9 {
        width: 75%;
    }
    .xs\:col-10 {
        width: 83.33333%;
    }
    .xs\:col-11 {
        width: 91.66667%;
    }
    .xs\:col-12 {
        width: 100%;
    }
}

.section {
    padding-top: var(--section-padding);
    padding-bottom: var(--section-padding);
    background-color: var(--section-bg);
    /* &.bg-primary{
        --section-bg: var(--primary);
        color: #fff;

        & + &{
            margin-top: calc(var(--section-padding) * -1);
        }
    } */
    /* &.border-top{
        margin-top: 0 !important;
    }

    &.border-bottom{

        & + .section{
            margin-top: 0 !important;
        }
    } */
}

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

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

/* .wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
} */
.ratio {
    position: relative;
    width: 100%;
}

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

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

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

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

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

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

/* .cover{

    &--tl > img{
        object-position: top left;
    }
    &--tc > img{
        object-position: top center;
    }
    &--tr > img{
        object-position: top right;
    }
    &--cl > img{
        object-position: center left;
    }
    &--cc > img{
        object-position: center center;
    }
    &--cr > img{
        object-position: center right;
    }
    &--bl > img{
        object-position: bottom left;
    }
    &--bc > img{
        object-position: bottom center;
    }
    &--br > img{
        object-position: bottom right;
    }
} */
.video-wrapper {
    position: relative;
    width: 100%;
    background-color: #000;
}

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

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

.error-message {
    width: 100%;
    height: 100vh;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: center;
    justify-content: center;
    -ms-flex-align: center;
    align-items: center;
    position: relative;
    text-align: center;
}

.error-message__inner {
    z-index: 10;
}

.error-message__img {
    position: absolute;
    bottom: 0;
}

.error-message h1 {
    font-size: 80px;
}

.error-message p {
    font-size: var(--font-size-md);
    max-width: 280px;
    margin-bottom: 4rem;
}

.error-message a {
    font-size: var(--font-size-sm);
    font-weight: var(--font-medium);
    text-transform: uppercase;
}

.error-message .button {
    background-color: #266256;
    border-radius: 28px;
    padding: 7px 40px;
}

.icon {
    display: -ms-flexbox;
    display: flex;
    width: 20px;
    height: 20px;
}

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

.button {
    position: relative;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: center;
    justify-content: center;
    min-height: var(--button-height, 50px);
    border: none;
    border-radius: 0;
    text-decoration: none;
    -webkit-appearance: none;
    appearance: none;
    padding: 10px 30px;
    background-color: var(--button-bg-color, var(--primary));
    color: var(--button-color, #fff);
    transition-duration: .3s;
}

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

/* @mixin button--primary{
    --button-color: #fff;
    --button-bg-color: var(--primary);

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

.button--primary{
    @include button--primary;
} */
/* @mixin button--secondary{
    --button-color: #fff;
    --button-bg-color: var(--secondary);

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

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

    &:hover{
        --button-color: #fff;
        --button-bg-color: var(--color);
    }
}

.button--outline{
    @include button--outline;
} */
.s2022-cookie-bar {
    --padding: 35px;
    --cookie-background-color: #fff;
    --cookie-text-color: #000;
    --cookie-title-color: #fff;
    --cookie-button-color:  #000;
    --cookie-button-text-color: #fff;
    --cookie-switch-color:  #000;
    --cookie-button-outline-color:  #000;
    --cookie-border-color: rgb(204, 204, 204);
    --title-size: 20px;
    --text-size: 16px;
    --button-text-size: 16px;
    --title-fw: 700;
    --text-fw: 400;
    --anchor-fw: 500;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9000;
    width: 100%;
    height: fit-content;
    background-color: var(--cookie-background-color);
}

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

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

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

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

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

@media (max-width: 575.98px) {
    .s2022-cookie-bar {
        --title-size: 16px;
        --text-size: 14px;
        --button-text-size: 14px;
    }
}

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

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

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

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

.s2022-cookie-bar .cb-button--outline:hover {
    background-color: var(--cookie-button-color);
    border: 1px solid var(--cookie-button-color);
    color: var(--cookie-button-text-color);
}

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

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

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

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

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

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

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

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

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

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

.s2022-cookie-bar__link {
    text-decoration: underline;
    transition: opacity 0.3s;
}

.s2022-cookie-bar__link:hover {
    opacity: 0.7;
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 991.98px) {
    .s2022-cookie-bar__basic {
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }
    .s2022-cookie-bar__info {
        width: 100%;
        margin-bottom: var(--padding);
    }
    .s2022-cookie-bar__advanced {
        width: 60vw;
    }
    .s2022-cookie-bar__buttons {
        width: 100%;
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
}

@media (max-width: 767.98px) {
    .s2022-cookie-bar__advanced .cb-button {
        margin-bottom: 0;
    }
}

@media (max-width: 575.98px) {
    .s2022-cookie-bar__basic {
        padding: var(--padding);
    }
    .s2022-cookie-bar__basic p {
        width: 100%;
        padding: 0;
    }
    .s2022-cookie-bar__info {
        -ms-flex-pack: start;
        justify-content: flex-start;
    }
    .s2022-cookie-bar__advanced {
        top: 0;
        left: 0;
        transform: translate(0, 0);
        height: 100%;
        max-height: 100%;
        width: 100%;
        z-index: +1;
    }
    .s2022-cookie-bar__advanced .cb-button {
        margin-top: auto;
    }
    .s2022-cookie-bar__option {
        min-height: 25%;
        width: 100%;
    }
    .s2022-cookie-bar__buttons {
        width: 100%;
    }
    .s2022-cookie-bar__buttons * {
        font-size: 16px;
    }
}

.hamburger {
    --hamburger-width: 40px;
    --hamburger-height: 24px;
    --hamburger-stroke-width: 4px;
    --hamburger-stroke-radius: 0;
    --hamburger-color: currentColor;
    --hamburger-px: 0px;
    --hamburger-py: 0px;
    position: relative;
    display: block;
    width: calc(var(--hamburger-width) + (var(--hamburger-px) * 2));
    height: calc(var(--hamburger-height) + (var(--hamburger-py) * 2));
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.hamburger__inner, .hamburger__inner:before, .hamburger__inner:after {
    display: block;
    position: absolute;
    width: var(--hamburger-width);
    height: var(--hamburger-stroke-width);
    background: #fff;
    border-radius: var(--hamburger-stroke-radius);
    transition: top .3s .5s ease, transform .3s ease, background .3s ease;
}

.hamburger__inner {
    top: 50%;
    left: 50%;
    margin-top: calc(var(--hamburger-stroke-width) * -.5);
    margin-left: calc(var(--hamburger-width) * -.5);
}

.hamburger__inner:before {
    content: '';
    top: calc((var(--hamburger-height) * -.5) + (var(--hamburger-stroke-width) * .5));
}

.hamburger__inner:after {
    content: '';
    top: calc((var(--hamburger-height) * .5) - (var(--hamburger-stroke-width) * .5));
}

.hamburger.is-active .hamburger__inner {
    transition: background .3s 0s ease;
    background: transparent !important;
}

.hamburger.is-active .hamburger__inner:before, .hamburger.is-active .hamburger__inner:after {
    top: 0;
    transition: top .3s ease, transform .3s .5s ease, background .3s ease;
}

.hamburger.is-active .hamburger__inner:before {
    transform: rotate3d(0, 0, 1, 45deg);
}

.hamburger.is-active .hamburger__inner:after {
    transform: rotate3d(0, 0, 1, -45deg);
}

.header-mobile {
    display: none;
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--dark);
    transform: translate3d(0, 0, 0);
    transition: transform .5s;
}

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

.header-mobile__logo {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-negative: 0;
    flex-shrink: 0;
    -ms-flex-direction: column;
    flex-direction: column;
    height: var(--header-top-height);
}

.header-mobile__logo .icon {
    width: 110px;
    height: 45px;
    margin: auto 0;
}

.header-mobile__actions {
    margin-left: auto;
}

.header-mobile__expander {
    padding: 0;
    color: inherit;
    background-color: transparent;
    border: none;
    border-radius: 0;
    -webkit-appearance: none;
    appearance: none;
    margin-right: calc(var(--container-padding) * -1);
}

.header-mobile__expander .hamburger {
    --hamburger-px: var(--container-padding);
    --hamburger-color: var(--primary);
    height: var(--header-height);
}

.header-mobile__menu {
    display: none;
    width: 100%;
    overflow: auto;
    text-align: right;
    overscroll-behavior: none;
}

.menu-mobile__primary {
    padding: 15px 0;
}

.menu-mobile__primary > li > a {
    position: relative;
    display: block;
    padding: 10px var(--container-padding);
    font-size: 1.26rem;
    color: var(--light);
    text-transform: uppercase;
}

.menu-mobile__primary > li > a:hover, .menu-mobile__primary > li > a.is-active {
    font-weight: var(--font-bold);
}

.menu-mobile__primary > li > a.lang {
    color: var(--primary-dark);
}

.menu-mobile__primary .menu-mobile__submenu {
    display: none;
}

.lang-switch-mobile__selected {
    padding: 20px var(--container-padding);
    font-size: 18px;
    color: var(--color);
    border-bottom: 1px solid var(--border-color);
    cursor: pointer;
}

.lang-switch-mobile__selected:hover {
    color: var(--primary);
}

.lang-switch-mobile__selected svg {
    display: inline-block;
    vertical-align: -2px;
    width: 15px;
    height: 15px;
    margin-right: 10px;
    color: var(--gray);
}

.lang-switch-mobile__dropdown {
    display: none;
    padding: 15px 0;
    column-count: 2;
    overflow: hidden;
}

.lang-switch-mobile__dropdown li {
    width: 50%;
}

.lang-switch-mobile__dropdown a {
    display: inline-block;
    width: 100%;
    padding: 8px var(--container-padding);
    font-size: 18px;
    color: var(--gray);
}

.lang-switch-mobile__dropdown a:hover, .lang-switch-mobile__dropdown a.is-active {
    color: #000;
}

.lang-switch-mobile.is-expanded .lang-switch-mobile__dropdown {
    display: block;
}

.dev-iphone .menu-mobile {
    padding-bottom: 44px;
}

.dev-iphone .menu-mobile:after {
    background-image: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.9) 100%);
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 44px;
    pointer-events: none;
}

@media (max-width: 1279.98px) {
    .header-mobile {
        display: block;
    }
}

@media (max-width: 575.98px) {
    .header-mobile__logo .icon {
        width: 110px;
        height: 45px;
    }
}

:root {
    --header-height: 80px;
}

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, black, #00000063);
    transform: translate3d(0, 0, 0);
    transition: all .4s ease-in-out;
}

.header__logo .icon {
    height: 52px;
    width: 126px;
}

.header__nav-primary > ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.header__nav-primary > ul > li > a {
    line-height: var(--header-height);
    transition-duration: 0.3s;
    font-size: var(--font-size-md);
    text-transform: uppercase;
}

.header__nav-primary > ul > li:hover > a {
    font-weight: var(--font-bold);
}

.header__nav-primary > ul > li.is-active {
    font-weight: var(--font-bold);
}

.header__nav-primary svg {
    width: 118px;
    height: 30px;
}

.header.is-scrolled {
    transform: translateY(calc(var(--header-top-height) * -1));
}

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

/* Headroom plugin */
.headroom {
    will-change: transform;
    transition: transform 200ms linear;
}

.headroom--pinned {
    transform: translateY(0%);
}

.headroom--unpinned {
    transform: translateY(-100%);
}

@media (max-width: 1279.98px) {
    :root {
        --header-height: 80px;
    }
    .header {
        display: none;
    }
}

@media (max-width: 575.98px) {
    :root {
        --header-height: 70px;
    }
}

.footer {
    margin-top: calc(var(--gutter-x) * 3);
    position: relative;
    min-height: 90vh;
    display: -ms-flexbox;
    display: flex;
}

.footer__background {
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 100%;
}

.footer__background__img {
    height: 100%;
    width: 100%;
}

.footer__background__img::before {
    padding-top: var(--aspect-ratio, 45%);
}

.footer__content {
    position: absolute;
    height: 100%;
    width: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    z-index: 1;
    background: linear-gradient(180deg, black, transparent);
}

.footer__top {
    padding-top: var(--section-pt);
}

.footer__header {
    margin-bottom: calc(var(--gutter-x) * 2);
}

.footer__header p {
    text-transform: uppercase;
    font-size: var(--font-size-xl);
    margin: 0 auto;
}

.footer__contact {
    padding: 0 10.625em;
}

.footer__contact__title {
    color: var(--primary);
}

.footer__contact p,
.footer__contact a {
    line-height: 2rem;
    font-size: var(--font-size-md);
}

.footer__bottom {
    margin-top: 0;
    position: relative;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: end;
    align-items: flex-end;
    min-height: 100%;
    padding-bottom: var(--gutter-x);
}

.footer__bottom__img {
    position: absolute;
    bottom: 0;
    left: calc(70% - 73px);
    height: 15.625em;
    width: 9.125em;
    margin-bottom: -2%;
}

.footer__copyright {
    margin-bottom: 0;
    letter-spacing: 1px;
}

.footer__copyright a,
.footer__copyright small {
    font-size: .85rem;
    display: inline-block;
    padding-right: .5rem;
    margin-left: .5rem;
}

.footer__copyright a {
    text-decoration: underline;
}

.footer__copyright small:first-of-type {
    margin-left: 0;
}

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

@media (max-width: 991.98px) {
    .footer__copyright.--right {
        text-align: left;
    }
}

.footer__copyright.--right a,
.footer__copyright.--right small {
    padding-right: 0;
    margin-left: 0;
}

.footer__copyright a {
    transition: all 0.3s ease-in-out;
}

.footer__copyright a:hover {
    transition: all 0.3s ease-in-out;
    color: #fff;
}

.social-media {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-bottom: -10px;
}

.social-media__icon svg {
    width: 43px;
    height: 43px;
    color: #fff;
}

@media (max-width: 1279.98px) {
    .footer__contact {
        padding: unset;
    }
}

@media (max-width: 991.98px) {
    .footer-widget__title:after {
        width: 100%;
    }
    .footer-widget:last-of-type .footer-widget__title:after {
        width: 100%;
    }
    .footer-widget__inner:before {
        display: none;
    }
    .footer__bottom {
        height: 35vh;
    }
}

@media (max-width: 767.98px) {
    .footer__bottom__img {
        display: none;
    }
}

.heading__secondary {
    margin-bottom: calc(var(--gutter-x) * 3);
}

.heading__inner {
    padding: 0 10.625em;
}

.heading__content {
    margin: 0 auto;
    max-width: 50em;
    text-align: right;
}

.heading__content p {
    color: var(--primary);
    font-size: var(--font-size-xl);
    font-weight: var(--font-regular);
}

.heading__content p:first-of-type {
    text-align: left;
    color: var(--primary-dark);
}

.heading__content p:nth-of-type(2) {
    font-weight: var(--font-bold);
}

.heading__content p:last-of-type {
    font-size: var(--font-size-sm);
}

.heading .--left {
    margin-left: 0;
}

.heading .--right {
    margin-right: 0;
}

.heading__title {
    font-size: var(--font-size-lg);
    text-transform: uppercase;
}

.heading.margin-top {
    margin-top: calc(var(--section-padding)*1.5);
}

.heading + .gallery {
    padding-top: var(--section-padding);
}

@media (max-width: 991.98px) {
    .heading p {
        font-size: var(--font-size-lg);
    }
    .heading__inner {
        padding: 0;
    }
    .heading__content {
        text-align: left;
        line-height: 1.5rem;
    }
    .heading__content p {
        font-size: var(--font-size-md);
    }
    .heading__content p:last-of-type {
        font-size: var(--font-size-xs);
    }
    .heading__secondary {
        margin-bottom: 0;
        margin-top: var(--gutter-x);
    }
}

.contact__map-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    max-height: 600px;
}

.contact__map-wrapper::before {
    padding-top: var(--aspect-ratio, 54%);
}

.contact__map {
    position: absolute;
    top: 0;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: var(--navy-dark);
}

.gallery {
    margin-bottom: 6rem;
    overflow-x: hidden;
}

.gallery__grid {
    width: calc(100% + 5%);
    margin-left: -2%;
    /*
        &__grid {
            margin: calc(var(--section-padding) * 1.5) 0;
            display: grid;
            // grid-template-columns: repeat(auto-fill, minmax(800px, 1fr));
            grid-template-columns: 1fr 1fr;
            gap: 0;
            row-gap: 2rem;
            grid-auto-columns: auto;
            grid-auto-flow: row dense;
    
       
            &__cell {
                margin-right: 8%;
    
                &.aside {
                    margin-left: 4%;
                    margin-top: 8%;
                }
                &.full {
                    margin: 4% 0;
                    grid-column: 1 / 3;
                    max-width: 1640px;
                }
            }
*/
}

.gallery__grid__cell {
    margin-bottom: 4%;
    padding-left: 2%;
    padding-right: 2%;
}

.gallery__grid__cell.sizer {
    width: 50%;
    position: absolute;
    opacity: 0;
    z-index: -1;
    margin: 0;
    height: 0;
}

.gallery__grid__cell.regular {
    width: 50%;
}

.gallery__grid__cell.aside {
    width: 50%;
    padding-top: 2%;
    padding-left: 6%;
}

.gallery__grid__cell.full {
    width: 100%;
    max-width: 1640px;
}

.gallery__grid img {
    width: 100%;
    height: auto;
}

@media (max-width: 575.98px) {
    .gallery {
        column-gap: 0.3125em;
        margin-bottom: calc(var(--section-padding) * .6);
    }
    .gallery__item__high {
        margin-left: 0;
    }
    .gallery__item__inner:last-of-type img {
        margin: 0.3125em 0 0 0;
    }
}

.hero {
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    min-height: 95vh;
    margin-bottom: 10rem;
}

.hero__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-line-pack: center;
    align-content: center;
    min-height: 95vh;
    height: 100%;
    box-shadow: rgba(0, 0, 0, 0.95) 0px -50px 36px -28px inset;
    position: relative;
}

.hero__content {
    padding-bottom: calc(var(--section-padding)*2);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -ms-flex-align: center;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 1;
    height: 100%;
    width: 100%;
    margin: auto;
    padding-top: 70px;
}

.hero__content .indent {
    text-indent: 3rem;
}

.hero__content :not(.indent) {
    margin-bottom: 0;
}

.hero__content p {
    font-size: var(--font-size-md);
}

.hero__content video {
    padding-right: var(--section-padding);
}

.hero__background {
    width: 100%;
    height: 100%;
    position: absolute;
    bottom: 0;
    opacity: 1;
}

.hero__background__clip {
    position: absolute;
    -webkit-backdrop-filter: blur(15px);
    backdrop-filter: blur(15px);
    -webkit-clip-path: url(#sondaText);
    clip-path: url(#sondaText);
    background-color: rgba(255, 255, 255, 0.05);
    width: 100%;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    bottom: -10px;
}

.hero__background__clip:before {
    padding-top: var(--aspect-ratio, 21%);
}

.hero__background img img, .hero__background svg img {
    max-height: 930px;
}

.hero__bottom {
    position: absolute;
    width: 100%;
    bottom: 0;
}

.hero__bottom img {
    opacity: .2;
}

.hero__video {
    position: absolute;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
}

.hero__video video {
    position: absolute;
    right: 0;
    bottom: 0;
    max-width: 100%;
    max-height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
}

@media (max-width: 1279.98px) {
    .hero__background {
        top: 0;
    }
}

@media (max-width: 991.98px) {
    .hero {
        margin-bottom: 4rem;
    }
    .hero__content {
        padding-bottom: calc(var(--section-padding)*7);
    }
}

@media (max-width: 767.98px) {
    .hero__background__clip {
        width: auto;
        min-width: 95vh;
        transform-origin: bottom right;
        transform: rotate(-90deg) translateX(100%);
        right: 0;
        bottom: 0;
    }
    .hero__video video {
        position: absolute;
        right: -15%;
        bottom: -15%;
        min-width: 1400px;
        height: 100%;
        z-index: 10;
    }
    .hero__content {
        text-align: left;
        padding-left: var(--container-padding);
    }
}

@media (max-width: 575.98px) {
    .hero__content {
        padding-bottom: calc(var(--section-padding)*12);
    }
    .hero__video video {
        right: -28%;
    }
}

@media (max-width: 380px) {
    .hero__video video {
        right: -40%;
        bottom: -20%;
    }
}

.info-panel {
    margin-bottom: 3rem;
}

.info-panel__content {
    max-width: 660px;
}

.info-panel__title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-medium);
}

.info-panel__main {
    font-size: var(--font-size-lg);
    line-height: 2.3rem;
}

.info-panel__aside {
    font-size: var(--font-size-md);
    max-width: 458px;
    margin-left: calc(50% - 227px);
}

.info-panel__img.circled img {
    margin-bottom: 4rem;
    margin-left: 18%;
    padding: 4%;
}

.info-panel__img.circled::after {
    content: "";
    background-image: url("../../public/images/kruh.svg");
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    margin-left: 18%;
}

.info-panel__img::before {
    padding-top: var(--aspect-ratio, 100%);
}

@media (max-width: 991.98px) {
    .info-panel {
        line-height: 1.5rem;
    }
    .info-panel__main {
        max-width: none;
        font-size: var(--font-size-md);
    }
    .info-panel__aside {
        max-width: none;
        margin-left: 0;
        font-size: var(--font-size-sm);
    }
    .info-panel__content {
        text-align: left;
        max-width: none;
        margin-top: calc(var(--gutter-x) * 2);
    }
    .info-panel__content:first-of-type {
        margin-top: 0;
    }
    .info-panel__title {
        font-size: var(--font-size-lg);
    }
}

@media (max-width: 767.98px) {
    .info-panel__main {
        line-height: 1.9rem;
    }
    .info-panel__aside {
        line-height: 1.3rem;
    }
}

@media (max-width: 575.98px) {
    .info-panel__content {
        margin-top: 0;
    }
}

.--fivefive {
    padding-bottom: calc(var(--section-padding) * 2);
}

.--fivefive__img {
    max-width: 27.0625em;
    margin: 0 auto;
}

.--fivefive__img > div::before {
    padding-top: var(--aspect-ratio, 107%);
}

.--fivefive__img img {
    width: 100%;
}

.--fivefive__content {
    max-width: 660px;
    text-align: right;
}

.--fivefive__title {
    font-size: var(--font-size-xl);
    font-weight: var(--font-medium);
}

.--fivefive__main {
    font-size: var(--font-size-lg);
    line-height: 2.3rem;
}

.--eightfour__desc {
    font-size: var(--font-size-md);
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
    -ms-flex-align: end;
    align-items: flex-end;
    text-align: right;
    line-height: 1.8rem;
}

.--eightfour__desc p {
    max-width: 18.75em;
    margin-bottom: 5rem;
}

.--eightfour__img img {
    margin: 0 auto;
}

.--eightfour__img > div::before {
    padding-top: var(--aspect-ratio, 62.66%);
}

.--full {
    width: 90%;
    max-width: 1400px;
}

@media (max-width: 1279.98px) {
    .--fivefive {
        padding-bottom: var(--section-padding);
    }
    .--fivefive__content {
        max-width: unset;
        text-align: left;
    }
    .--eightfour__desc {
        margin-bottom: 2rem;
        -ms-flex-align: start;
        align-items: flex-start;
        text-align: left;
    }
    .--eightfour__desc p {
        max-width: none;
        margin-bottom: 2rem;
    }
    .--eightfour__img {
        margin-bottom: 3rem;
    }
}

@media (max-width: 991.98px) {
    .--fivefive__title {
        font-size: var(--font-size-lg);
    }
    .--fivefive__main {
        font-size: var(--font-size-md);
        line-height: 1.9rem;
    }
    .--eightfour__desc {
        line-height: 1.9rem;
    }
}

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

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

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

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

.gx-sm {
    --gutter-x: 15px;
}

.gx-lg {
    --gutter-x: 60px;
}

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

.gy-sm {
    --gutter-y: 15px;
}

.gy-lg {
    --gutter-y: 60px;
}

.d-block {
    display: block !important;
}

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

.d-none {
    display: none !important;
}

@media (max-width: 1399.98px) {
    .xl\:d-block {
        display: block !important;
    }
    .xl\:d-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .xl\:d-none {
        display: none !important;
    }
}

@media (max-width: 1279.98px) {
    .lg\:d-block {
        display: block !important;
    }
    .lg\:d-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .lg\:d-none {
        display: none !important;
    }
}

@media (max-width: 991.98px) {
    .md\:d-block {
        display: block !important;
    }
    .md\:d-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .md\:d-none {
        display: none !important;
    }
}

@media (max-width: 767.98px) {
    .sm\:d-block {
        display: block !important;
    }
    .sm\:d-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .sm\:d-none {
        display: none !important;
    }
}

@media (max-width: 575.98px) {
    .xs\:d-block {
        display: block !important;
    }
    .xs\:d-flex {
        display: -ms-flexbox !important;
        display: flex !important;
    }
    .xs\:d-none {
        display: none !important;
    }
}

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

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

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

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

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

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

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

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

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

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

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

@media (max-width: 1399.98px) {
    .xl\:order-first {
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }
    .xl\:order-last {
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
}

@media (max-width: 1279.98px) {
    .lg\:order-first {
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }
    .lg\:order-last {
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
}

@media (max-width: 991.98px) {
    .md\:order-first {
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }
    .md\:order-last {
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
}

@media (max-width: 767.98px) {
    .sm\:order-first {
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }
    .sm\:order-last {
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
}

@media (max-width: 575.98px) {
    .xs\:order-first {
        -ms-flex-order: -1 !important;
        order: -1 !important;
    }
    .xs\:order-last {
        -ms-flex-order: 1 !important;
        order: 1 !important;
    }
}

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

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

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

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

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

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

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

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

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

.h1 {
    font-size: var(--h1);
}

.h2 {
    font-size: var(--h2);
}

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

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

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

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

.text-xs {
    font-size: var(--font-size-xs);
}

.text-sm {
    font-size: var(--font-size-sm);
}

.text-md {
    font-size: var(--font-size-md);
}

.text-lg {
    font-size: var(--font-size-lg);
}

.text-xl {
    font-size: var(--font-size-xl);
}

@media (max-width: 991.98px) {
    .text-sm {
        font-size: var(--font-size-xs);
    }
    .text-md {
        font-size: var(--font-size-sm);
    }
    .text-lg {
        font-size: var(--font-size-md);
    }
    .text-xl {
        font-size: var(--font-size-lg);
    }
}

.text-regular {
    font-weight: var(--font-regular);
}

.text-medium {
    font-weight: var(--font-medium);
}

.text-bold {
    font-weight: var(--font-bold);
}

/*# sourceMappingURL=style.css.map */
