/*!
Project: mudrikarchitekti
Version: 0.0.0
*/
@charset "UTF-8";
:root {
    --font: neue-haas-unica, sans-serif;
    --font-secondary: var(--font);
    --font-size: 20px;
    --line-height: 1.3;
    --paragraph-spacing: 1.5rem;
    --font-size-sm: 14px;
    --font-size-lg: 18px;
    --h0: 60px;
    --h1: 40px;
    --h2: 30px;
    --h3: 25px;
    --h4: 20px;
    --h5: 16px;
    --h6: 14px;
    --color: #000;
    --bg-color: #ffffff;
    --primary: #0079bf;
    --primary-dark: #00598c;
    --secondary: #b00400;
    --secondary-dark: #7d0300;
    --light: #f2f2f2;
    --dark: #212529;
    --gray-light: #f2f2f2;
    --gray: #999;
    --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);
    --gutter-x: 30px;
    --gutter-y: 30px;
    --container-width: 100%;
    --container-padding: 30px;
    --section-padding: 100px;
    --border-radius: 0;
}

:root {
    --breakpoint: xxl;
}

@media (max-width: 1799.98px) {
    :root {
        --breakpoint: xl;
    }
}

@media (max-width: 1279.98px) {
    :root {
        --breakpoint: lg;
    }
}

@media (max-width: 991.98px) {
    :root {
        --breakpoint: md;
    }
}

@media (max-width: 767.98px) {
    :root {
        --breakpoint: sm;
    }
}

@media (max-width: 575.98px) {
    :root {
        --breakpoint: xs;
    }
}

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;
}

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;
}

.apply-formatting > *:last-child {
    margin-bottom: 0;
}

.apply-formatting h2,
.apply-formatting h3,
.apply-formatting h4,
.apply-formatting h5,
.apply-formatting h6 {
    margin-top: calc(var(--paragraph-spacing) * 1.5);
}

.apply-formatting p {
    margin-bottom: var(--paragraph-spacing);
}

.apply-formatting a:not(.button) {
    color: var(--color);
    text-decoration: underline;
}

.apply-formatting a:not(.button):hover {
    text-decoration: none;
}

.apply-formatting ul {
    margin-bottom: var(--paragraph-spacing);
}

.apply-formatting ul li {
    position: relative;
    padding-left: 20px;
    margin-bottom: 5px;
}

.apply-formatting ul li:last-child {
    margin-bottom: 0;
}

.apply-formatting ul li:before {
    content: '';
    position: absolute;
    width: 5px;
    height: 5px;
    left: 0;
    top: .6em;
    background-color: var(--primary);
    border-radius: 50%;
}

.apply-formatting ol {
    counter-reset: ol-counter;
    margin-bottom: var(--paragraph-spacing);
}

.apply-formatting ol li {
    position: relative;
    counter-increment: ol-counter;
    padding-left: 20px;
    margin-bottom: 5px;
}

.apply-formatting ol li:last-child {
    margin-bottom: 0;
}

.apply-formatting ol li:before {
    content: counter(ol-counter) ") ";
    position: absolute;
    top: 0;
    left: 0;
}

.apply-formatting hr {
    display: block;
    width: 100%;
    height: 0;
    border: 1px solid var(--border-color);
    border-width: 1px 0 0 0;
    margin: var(--paragraph-spacing) 0;
}

.apply-formatting img {
    width: 100%;
    margin-bottom: var(--paragraph-spacing);
}

.apply-formatting .video-wrapper {
    margin-bottom: var(--paragraph-spacing);
}

.glightbox-container {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999999 !important;
    overflow: hidden;
    -ms-touch-action: none;
    touch-action: none;
    -webkit-text-size-adjust: 100%;
    -moz-text-size-adjust: 100%;
    -ms-text-size-adjust: 100%;
    text-size-adjust: 100%;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    outline: none;
    overflow: hidden;
}

.glightbox-container.inactive {
    display: none;
}

.glightbox-container .gcontainer {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 9999;
    overflow: hidden;
}

.glightbox-container .gslider {
    -webkit-transition: -webkit-transform 0.4s ease;
    transition: -webkit-transform 0.4s ease;
    transition: transform 0.4s ease;
    transition: transform 0.4s ease, -webkit-transform 0.4s ease;
    height: 100%;
    left: 0;
    top: 0;
    width: 100%;
    position: relative;
    overflow: hidden;
    display: -webkit-box !important;
    display: -ms-flexbox !important;
    display: flex !important;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
}

.glightbox-container .gslide {
    width: 100%;
    position: absolute;
    opacity: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    opacity: 0;
}

.glightbox-container .gslide.current {
    opacity: 1;
    z-index: 99999;
    position: relative;
}

.glightbox-container .gslide.prev {
    opacity: 1;
    z-index: 9999;
}

.glightbox-container .gslide-inner-content {
    width: 100%;
}

.glightbox-container .ginner-container {
    position: relative;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    max-width: 100%;
    margin: auto;
    height: 100vh;
}

.glightbox-container .ginner-container.gvideo-container {
    width: 100%;
}

.glightbox-container .ginner-container.desc-bottom, .glightbox-container .ginner-container.desc-top {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.glightbox-container .ginner-container.desc-left, .glightbox-container .ginner-container.desc-right {
    max-width: 100% !important;
}

.gslide iframe, .gslide video {
    outline: none !important;
    border: none;
    min-height: 165px;
    -webkit-overflow-scrolling: touch;
    -ms-touch-action: auto;
    touch-action: auto;
}

.gslide:not(.current) {
    pointer-events: none;
}

.gslide-image {
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.gslide-image img {
    max-height: 100vh;
    display: block;
    padding: 0;
    float: none;
    outline: none;
    border: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    max-width: 100vw;
    width: auto;
    height: auto;
    -o-object-fit: cover;
    object-fit: cover;
    -ms-touch-action: none;
    touch-action: none;
    margin: auto;
    min-width: 200px;
}

.desc-top .gslide-image img, .desc-bottom .gslide-image img {
    width: auto;
}

.desc-left .gslide-image img, .desc-right .gslide-image img {
    width: auto;
    max-width: 100%;
}

.gslide-image img.zoomable {
    position: relative;
}

.gslide-image img.dragging {
    cursor: -webkit-grabbing !important;
    cursor: grabbing !important;
    -webkit-transition: none;
    transition: none;
}

.gslide-video {
    position: relative;
    max-width: 100vh;
    width: 100% !important;
}

.gslide-video .gvideo-wrapper {
    width: 100%;
    /* max-width: 160vmin; */
    margin: auto;
}

.gslide-video::before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 0, 0, 0.34);
    display: none;
}

.gslide-video.playing::before {
    display: none;
}

.gslide-video.fullscreen {
    max-width: 100% !important;
    min-width: 100%;
    height: 75vh;
}

.gslide-video.fullscreen video {
    max-width: 100% !important;
    width: 100% !important;
}

.gslide-inline {
    background: #fff;
    text-align: left;
    max-height: calc(100vh - 40px);
    overflow: auto;
    max-width: 100%;
}

.gslide-inline .ginlined-content {
    padding: 20px;
    width: 100%;
}

.gslide-inline .dragging {
    cursor: -webkit-grabbing !important;
    cursor: grabbing !important;
    -webkit-transition: none;
    transition: none;
}

.ginlined-content {
    overflow: auto;
    display: block !important;
    opacity: 1;
}

.gslide-external {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: 100%;
    min-width: 100%;
    background: #fff;
    padding: 0;
    overflow: auto;
    max-height: 75vh;
    height: 100%;
}

.gslide-media {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    width: auto;
}

.zoomed .gslide-media {
    -webkit-box-shadow: none !important;
    box-shadow: none !important;
}

.desc-top .gslide-media, .desc-bottom .gslide-media {
    margin: 0 auto;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.gslide-description {
    position: relative;
    -webkit-box-flex: 1;
    -ms-flex: 1 0 100%;
    flex: 1 0 100%;
}

.gslide-description.description-left, .gslide-description.description-right {
    max-width: 100%;
}

.gslide-description.description-bottom, .gslide-description.description-top {
    margin: 0 auto;
    width: 100%;
}

.gslide-description p {
    margin-bottom: 12px;
}

.gslide-description p:last-child {
    margin-bottom: 0;
}

.zoomed .gslide-description, .glightbox-button-hidden {
    display: none;
}

/*
   * Description for mobiles
   * something like facebook does the description
   * for the photos
  */
.glightbox-mobile .glightbox-container .gslide-description {
    height: auto !important;
    width: 100%;
    background: transparent;
    position: absolute;
    bottom: 0;
    padding: 19px 11px;
    max-width: 100vw !important;
    -webkit-box-ordinal-group: 3 !important;
    -ms-flex-order: 2 !important;
    order: 2 !important;
    max-height: 78vh;
    overflow: auto !important;
    background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.75)));
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.75) 100%);
    -webkit-transition: opacity 0.3s linear;
    transition: opacity 0.3s linear;
    padding-bottom: 50px;
}

.glightbox-mobile .glightbox-container .gslide-title {
    color: #fff;
    font-size: 1em;
}

.glightbox-mobile .glightbox-container .gslide-desc {
    color: #a1a1a1;
}

.glightbox-mobile .glightbox-container .gslide-desc a {
    color: #fff;
    font-weight: bold;
}

.glightbox-mobile .glightbox-container .gslide-desc * {
    color: inherit;
}

.glightbox-mobile .glightbox-container .gslide-desc string {
    color: #fff;
}

.glightbox-mobile .glightbox-container .gslide-desc .desc-more {
    color: #fff;
    opacity: 0.4;
}

.gdesc-open .gslide-media {
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    opacity: 0.4;
}

.gdesc-open .gdesc-inner {
    padding-bottom: 30px;
}

.gdesc-closed .gslide-media {
    -webkit-transition: opacity 0.5s ease;
    transition: opacity 0.5s ease;
    opacity: 1;
}

.greset {
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
}

.gabsolute {
    position: absolute;
}

.grelative {
    position: relative;
}

.glightbox-desc {
    display: none !important;
}

.glightbox-open {
    overflow: hidden;
}

.gloader {
    height: 25px;
    width: 25px;
    -webkit-animation: lightboxLoader 0.8s infinite linear;
    animation: lightboxLoader 0.8s infinite linear;
    border: 2px solid #fff;
    border-right-color: transparent;
    border-radius: 50%;
    position: absolute;
    display: block;
    z-index: 9999;
    left: 0;
    right: 0;
    margin: 0 auto;
    top: 47%;
}

.goverlay {
    width: 100%;
    height: calc(100vh + 1px);
    position: fixed;
    top: -1px;
    left: 0;
    background: #000;
    will-change: opacity;
}

.glightbox-mobile .goverlay {
    background: #000;
}

.gprev, .gnext, .gclose {
    z-index: 99999;
    cursor: pointer;
    width: 26px;
    height: 44px;
    border: none;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}

.gprev svg, .gnext svg, .gclose svg {
    display: block;
    width: 25px;
    height: auto;
    margin: 0;
    padding: 0;
}

.gprev.disabled, .gnext.disabled, .gclose.disabled {
    opacity: 0.1;
}

.gprev .garrow, .gnext .garrow, .gclose .garrow {
    stroke: #fff;
}

.gbtn.focused {
    outline: 2px solid #0f3d81;
}

iframe.wait-autoplay {
    opacity: 0;
}

.glightbox-closing .gnext, .glightbox-closing .gprev, .glightbox-closing .gclose {
    opacity: 0 !important;
}

/*Skin */
.glightbox-clean .gslide-description {
    background: #fff;
}

.glightbox-clean .gdesc-inner {
    padding: 22px 20px;
}

.glightbox-clean .gslide-title {
    font-size: 1em;
    font-weight: normal;
    font-family: arial;
    color: #000;
    margin-bottom: 19px;
    line-height: 1.4em;
}

.glightbox-clean .gslide-desc {
    font-size: 0.86em;
    margin-bottom: 0;
    font-family: arial;
    line-height: 1.4em;
}

.glightbox-clean .gslide-video {
    background: #000;
}

.glightbox-clean .gprev, .glightbox-clean .gnext, .glightbox-clean .gclose {
    background-color: rgba(0, 0, 0, 0.75);
    border-radius: 4px;
}

.glightbox-clean .gprev path, .glightbox-clean .gnext path, .glightbox-clean .gclose path {
    fill: #fff;
}

.glightbox-clean .gprev {
    position: absolute;
    top: -100%;
    left: 30px;
    width: 40px;
    height: 50px;
}

.glightbox-clean .gnext {
    position: absolute;
    top: -100%;
    right: 30px;
    width: 40px;
    height: 50px;
}

.glightbox-clean .gclose {
    width: 35px;
    height: 35px;
    top: 15px;
    right: 10px;
    position: absolute;
}

.glightbox-clean .gclose svg {
    width: 18px;
    height: auto;
}

.glightbox-clean .gclose:hover {
    opacity: 1;
}

/*CSS Animations*/
.gfadeIn {
    -webkit-animation: gfadeIn 0.5s ease;
    animation: gfadeIn 0.5s ease;
}

.gfadeOut {
    -webkit-animation: gfadeOut 0.5s ease;
    animation: gfadeOut 0.5s ease;
}

.gslideOutLeft {
    -webkit-animation: gslideOutLeft 0.3s ease;
    animation: gslideOutLeft 0.3s ease;
}

.gslideInLeft {
    -webkit-animation: gslideInLeft 0.3s ease;
    animation: gslideInLeft 0.3s ease;
}

.gslideOutRight {
    -webkit-animation: gslideOutRight 0.3s ease;
    animation: gslideOutRight 0.3s ease;
}

.gslideInRight {
    -webkit-animation: gslideInRight 0.3s ease;
    animation: gslideInRight 0.3s ease;
}

.gzoomIn {
    -webkit-animation: gzoomIn 0.5s ease;
    animation: gzoomIn 0.5s ease;
}

.gzoomOut {
    -webkit-animation: gzoomOut 0.5s ease;
    animation: gzoomOut 0.5s ease;
}

@-webkit-keyframes lightboxLoader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes lightboxLoader {
    0% {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@-webkit-keyframes gfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes gfadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes gfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes gfadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@-webkit-keyframes gslideInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-60%, 0, 0);
        transform: translate3d(-60%, 0, 0);
    }
    to {
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes gslideInLeft {
    from {
        opacity: 0;
        -webkit-transform: translate3d(-60%, 0, 0);
        transform: translate3d(-60%, 0, 0);
    }
    to {
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes gslideOutLeft {
    from {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        -webkit-transform: translate3d(-60%, 0, 0);
        transform: translate3d(-60%, 0, 0);
        opacity: 0;
        visibility: hidden;
    }
}

@keyframes gslideOutLeft {
    from {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        -webkit-transform: translate3d(-60%, 0, 0);
        transform: translate3d(-60%, 0, 0);
        opacity: 0;
        visibility: hidden;
    }
}

@-webkit-keyframes gslideInRight {
    from {
        opacity: 0;
        visibility: visible;
        -webkit-transform: translate3d(60%, 0, 0);
        transform: translate3d(60%, 0, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@keyframes gslideInRight {
    from {
        opacity: 0;
        visibility: visible;
        -webkit-transform: translate3d(60%, 0, 0);
        transform: translate3d(60%, 0, 0);
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
        opacity: 1;
    }
}

@-webkit-keyframes gslideOutRight {
    from {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        -webkit-transform: translate3d(60%, 0, 0);
        transform: translate3d(60%, 0, 0);
        opacity: 0;
    }
}

@keyframes gslideOutRight {
    from {
        opacity: 1;
        visibility: visible;
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
    to {
        -webkit-transform: translate3d(60%, 0, 0);
        transform: translate3d(60%, 0, 0);
        opacity: 0;
    }
}

@-webkit-keyframes gzoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 1;
    }
}

@keyframes gzoomIn {
    from {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 1;
    }
}

@-webkit-keyframes gzoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}

@keyframes gzoomOut {
    from {
        opacity: 1;
    }
    50% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    to {
        opacity: 0;
    }
}

@media (min-width: 769px) {
    .glightbox-container .ginner-container {
        width: auto;
        height: auto;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
        -ms-flex-direction: row;
        flex-direction: row;
    }
    .glightbox-container .ginner-container.desc-top .gslide-description {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .glightbox-container .ginner-container.desc-top .gslide-image {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .glightbox-container .ginner-container.desc-top .gslide-image img {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .glightbox-container .ginner-container.desc-left .gslide-description {
        -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
        order: 0;
    }
    .glightbox-container .ginner-container.desc-left .gslide-image {
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }
    .gslide-image img {
        max-height: 97vh;
        max-width: 100%;
    }
    .gslide-image img.zoomable {
        cursor: -webkit-zoom-in;
        cursor: zoom-in;
    }
    .zoomed .gslide-image img.zoomable {
        cursor: -webkit-grab;
        cursor: grab;
    }
    .gslide-inline {
        max-height: 95vh;
    }
    .gslide-external {
        max-height: 100vh;
    }
    .gslide-description.description-left, .gslide-description.description-right {
        max-width: 275px;
    }
    .glightbox-open {
        height: auto;
    }
    .goverlay {
        background: rgba(0, 0, 0, 0.92);
    }
    .glightbox-clean .gslide-media {
        -webkit-box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
        box-shadow: 1px 2px 9px 0px rgba(0, 0, 0, 0.65);
    }
    .glightbox-clean .description-left .gdesc-inner, .glightbox-clean .description-right .gdesc-inner {
        position: absolute;
        height: 100%;
        overflow-y: auto;
    }
    .glightbox-clean .gprev, .glightbox-clean .gnext, .glightbox-clean .gclose {
        background-color: rgba(0, 0, 0, 0.32);
    }
    .glightbox-clean .gprev:hover, .glightbox-clean .gnext:hover, .glightbox-clean .gclose:hover {
        background-color: rgba(0, 0, 0, 0.7);
    }
    .glightbox-clean .gprev, .glightbox-clean .gnext {
        top: 45%;
    }
}

@media (min-width: 992px) {
    .glightbox-clean .gclose {
        opacity: 0.7;
        right: 20px;
    }
}

@media screen and (max-height: 420px) {
    .goverlay {
        background: #000;
    }
}

.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: 900px;
}

@media (max-width: 767.98px) {
    .container {
        --container-padding: 15px;
    }
}

.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);
}

.row > * {
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    width: 100%;
    padding-left: calc(var(--gutter-x) / 2);
    padding-right: calc(var(--gutter-x) / 2);
    margin-top: var(--gutter-y);
}

.col-1 {
    width: 8.33333%;
}

.col-2 {
    width: 16.66667%;
}

.col-3 {
    width: 25%;
}

.col-4 {
    width: 33.33333%;
}

.col-5 {
    width: 41.66667%;
}

.col-6 {
    width: 50%;
}

.col-7 {
    width: 58.33333%;
}

.col-8 {
    width: 66.66667%;
}

.col-9 {
    width: 75%;
}

.col-10 {
    width: 83.33333%;
}

.col-11 {
    width: 91.66667%;
}

.col-12 {
    width: 100%;
}

@media (max-width: 1799.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);
        }
    } */
}

.section.bg-light {
    --section-bg: var(--light);
}

.section.bg-light + .section.bg-light {
    margin-top: calc(var(--section-padding) * -1);
}

.section:not([class*='bg-']) + .section:not([class*='bg-']) {
    margin-top: calc(var(--section-padding) * -1);
}

.content-wrapper > .section:first-child {
    padding-top: 10px;
}

@media (max-width: 991.98px) {
    :root {
        --section-padding: 80px;
    }
}

@media (max-width: 575.98px) {
    :root {
        --section-padding: 60px;
    }
}

/* .wrapper{
    display: flex;
    flex-direction: column;
    min-height: 100vh;
} */
.content-wrapper {
    padding-top: var(--content-wrapper-pt);
}

:root {
    --header-height: calc(var(--container-padding) * 2.5);
    --header-logo-height: 40px;
    --menu-spacing: 25px;
    --current-color: var(--bg-color);
}

.header {
    position: fixed;
    z-index: 1000;
    top: 0;
    left: 0;
    width: 100%;
    background-color: transparent;
    color: var(--current-color);
    transform: translate3d(0, 0, 0);
}

.header__inner .container {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
    height: var(--header-height);
}

.header__logo {
    font-weight: 700;
}

.header__nav {
    margin-left: auto;
}

.header__nav ul {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-align: center;
    align-items: center;
}

.header__nav li {
    margin-right: var(--menu-spacing);
}

.header__nav li:last-child {
    margin-right: 0;
}

.header__nav a {
    display: block;
    border-bottom: 2px solid transparent;
}

.header__nav a:hover {
    opacity: .6;
    transition-duration: .3s;
}

.header__nav a.is-active {
    border-color: var(--current-color);
    line-height: 1.2;
}

.header__expander {
    display: none;
    position: relative;
    z-index: 1001;
    margin-left: auto;
    margin-right: calc(var(--container-padding) * -1);
    height: var(--header-height);
    width: calc(35px + (var(--container-padding) * 2));
    cursor: pointer;
    -webkit-user-select: none;
    -ms-user-select: none;
    user-select: none;
    transition-duration: .3s;
}

.header__expander .hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 18px;
    margin-left: -15px;
    margin-top: -9px;
}

.header__expander .hamburger span,
.header__expander .hamburger span:before,
.header__expander .hamburger span:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #fff;
    top: 8px;
    border-radius: 0px;
}

.header__expander .hamburger span:before,
.header__expander .hamburger span:after {
    transform-origin: 50% 50%;
    transition: top .3s .5s ease, transform .3s ease, width .3s 0s;
}

.header__expander .hamburger span:before {
    content: '';
    height: 100%;
    top: -8px;
}

.header__expander .hamburger span:after {
    content: '';
    height: 100%;
    top: 8px;
}

.header__expander .hamburger.is-active span, .header.is-expanded .header__expander .hamburger span {
    transition: background .3s 0s ease;
    background: transparent !important;
}

.header__expander .hamburger.is-active span:before, .header.is-expanded .header__expander .hamburger span:before,
.header__expander .hamburger.is-active span:after,
.header.is-expanded .header__expander .hamburger span:after {
    transition: top .3s ease, transform .3s .5s ease, width .3s 0s;
    top: 0;
    width: 30px;
}

.header__expander .hamburger.is-active span:before, .header.is-expanded .header__expander .hamburger span:before {
    transform: rotate3d(0, 0, 1, 45deg);
}


.header__expander .hamburger.is-active span:after,
.header.is-expanded .header__expander .hamburger span:after {
    transform: rotate3d(0, 0, 1, -45deg);
}

.header__expander:hover {
    opacity: .75;
}

.header ~ .content-wrapper {
    --content-wrapper-pt: var(--header-height);
}

.header--dark {
    --current-color: var(--color);
}

.header--dark .hamburger {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 30px;
    height: 18px;
    margin-left: -15px;
    margin-top: -9px;
}

.header--dark .hamburger span,
.header--dark .hamburger span:before,
.header--dark .hamburger span:after {
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    top: 8px;
    border-radius: 0px;
}

.header--dark .hamburger span:before,
.header--dark .hamburger span:after {
    transform-origin: 50% 50%;
    transition: top .3s .5s ease, transform .3s ease, width .3s 0s;
}

.header--dark .hamburger span:before {
    content: '';
    height: 100%;
    top: -8px;
}

.header--dark .hamburger span:after {
    content: '';
    height: 100%;
    top: 8px;
}

.header--dark .hamburger.is-active span, .header--dark .header.is-expanded .header__expander .hamburger span, .header.is-expanded .header__expander .header--dark .hamburger span {
    transition: background .3s 0s ease;
    background: transparent !important;
}

.header--dark .hamburger.is-active span:before, .header--dark .header.is-expanded .header__expander .hamburger span:before, .header.is-expanded .header__expander .header--dark .hamburger span:before,
.header--dark .hamburger.is-active span:after,
.header--dark .header.is-expanded .header__expander .hamburger span:after,
.header.is-expanded .header__expander .header--dark .hamburger span:after {
    transition: top .3s ease, transform .3s .5s ease, width .3s 0s;
    top: 0;
    width: 30px;
}

.header--dark .hamburger.is-active span:before, .header--dark .header.is-expanded .header__expander .hamburger span:before, .header.is-expanded .header__expander .header--dark .hamburger span:before {
    transform: rotate3d(0, 0, 1, 45deg);
}


.header--dark .hamburger.is-active span:after,
.header--dark .header.is-expanded .header__expander .hamburger span:after,
.header.is-expanded .header__expander .header--dark .hamburger span:after {
    transform: rotate3d(0, 0, 1, -45deg);
}

@media (max-width: 991.98px) {
    :root {
        --header-height: calc(var(--container-padding) * 2.5);
    }
    .header {
        transition-duration: .5s;
    }
    .header__nav {
        display: none;
        position: absolute;
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: 100vh;
        overflow: auto;
        background-color: var(--bg-color);
    }
    .header__nav ul {
        display: block;
    }
    .header__nav li {
        display: block;
        margin-right: 0;
    }
    .header__nav a {
        display: block;
        width: 100%;
        text-align: left;
        line-height: 60px;
        margin: 0 var(--container-padding);
    }
    .header__nav a:hover {
        border: none;
        line-height: 60px;
    }
    .header__nav a.is-active {
        border: none;
        line-height: 60px;
    }
    .header__expander {
        display: block;
    }
    .header.is-expanded {
        background-color: var(--bg-color);
        --current-color: var(--color);
        transition-duration: 0s;
    }
}

@media (max-width: 767.98px) {
    :root {
        --header-height: calc(var(--container-padding) * 1.75);
    }
}

.footer {
    margin-top: auto;
}

.footer__link {
    display: none;
}

.footer__link:hover {
    opacity: 0.75;
}

.footer__copyright {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-pack: justify;
    justify-content: space-between;
    margin: 70px 0 var(--container-padding);
    font-size: var(--h5);
}

.footer__copyright p {
    margin: 0;
}

.footer__copyright-left span {
    color: var(--gray);
    border-left: 1px solid var(--gray);
    margin-left: 10px;
    padding-left: 10px;
}

.footer__copyright-right a:hover {
    opacity: 0.6;
    transition-duration: .3s;
}

.footer--link .footer__link {
    display: block;
    margin-top: var(--container-padding);
}

@media (max-width: 991.98px) {
    .footer__copyright-left span {
        display: none;
    }
}

@media (max-width: 767.98px) {
    .footer__copyright {
        font-size: 12px;
    }
    .footer--link .footer__link {
        font-size: 16px;
    }
}

.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%;
}

.info-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #cecece;
    z-index: 9000;
    transform: translate3d(0, 0, 0);
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    padding: 10px 0 0;
    text-align: center;
    color: #333;
}

.info-bar p {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 10px;
}

.info-bar p + p {
    margin-left: 20px;
    margin-bottom: 0;
}

.info-bar a {
    display: inline-block;
    padding: 10px 20px;
    transition-duration: .3s;
    color: #333;
    border: 1px solid #333;
    margin-bottom: 10px;
    text-decoration: none;
}

.info-bar a:hover {
    border-color: var(--gray-dark);
    background-color: var(--gray-dark);
    color: #fff;
    text-decoration: none;
}

.info-bar a + a {
    margin-left: 5px;
}

.info-bar .ok {
    background-color: var(--gray-dark);
    color: #fff;
    font-weight: 700;
}

.cookie-bar {
    display: none;
    background-color: var(--gray-light);
    color: var(--color);
}

.cookie-bar a {
    color: var(--color);
    border-color: var(--color);
}

.cookie-bar a:hover {
    border-color: var(--color);
    background-color: var(--color);
}

.cookie-bar .ok:hover {
    border-color: var(--primary);
    background-color: var(--primary);
}

.icon {
    display: block;
    width: 20px;
    height: 20px;
}

.icon svg {
    width: 100%;
    height: 100%;
}

.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;
    /* svg{
        fill: currentColor;
        margin-right: em(10);
    } */
}

.button:hover {
    --button-bg-color: var(--primary-dark);
    text-decoration: none;
}

/* .button--primary{
    @include button--primary;
}

.button--secondary{
    @include button--secondary;
} */
/* .button--outline{
    @include button--outline;
} */
.wide-images-wrapper {
    position: relative;
    height: 100%;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-direction: column;
    flex-direction: column;
}

.wide-img-wrapper {
    position: fixed;
    top: 0;
    width: 100%;
}

.wide-img-wrapper:nth-child(1) {
    z-index: 9;
}

.wide-img-wrapper:nth-child(2) {
    z-index: 8;
}

.wide-img-wrapper:nth-child(3) {
    z-index: 7;
}

.wide-img-wrapper:nth-child(4) {
    z-index: 6;
}

.wide-img-wrapper:nth-child(5) {
    z-index: 5;
}

.wide-img-wrapper:nth-child(6) {
    z-index: 4;
}

.wide-img-wrapper:nth-child(7) {
    z-index: 3;
}

.wide-img-wrapper:nth-child(8) {
    z-index: 2;
}

.wide-img-wrapper:nth-child(9) {
    z-index: 1;
}

.wide-img-wrapper:nth-child(10) {
    z-index: 0;
}

.wide-img {
    position: relative;
}

.wide-img__img {
    height: 100vh;
}

.wide-img__veil {
    position: absolute;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0.15;
    background-color: var(--color);
}

.wide-img__content {
    position: absolute;
    bottom: 0;
    color: var(--bg-color);
}

.wide-img__content p {
    margin-bottom: var(--container-padding);
}

@media (max-width: 767.98px) {
    .wide-img__content {
        font-size: 16px;
    }
}

.card {
    height: 100%;
    margin-left: auto;
    margin-right: auto;
}

.card__inner {
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    -ms-flex-line-pack: center;
    align-content: center;
    height: 100%;
}

.card__inner a {
    width: 100%;
}

.card__inner a:hover .card__img {
    opacity: 0.6;
    transition-duration: .3s;
}

.card__img {
    background-color: var(--img-bg);
    transition-duration: .3s;
}

.card__title {
    font-size: var(--h4);
    font-weight: 400;
    margin-top: 10px;
    margin-bottom: 0;
    justify-self: left;
}

.card p {
    font-size: var(--h4);
    margin-bottom: 0;
    color: var(--gray);
}

.card--portrait {
    width: var(--max-width);
}

.card--landscape-full {
    width: var(--max-width);
}

@media (max-width: 991.98px) {
    .card {
        --max-width: 100%;
    }
}

.link-cards__nav {
    position: fixed;
    color: var(--gray);
}

.link-cards__nav .is-active, .link-cards__nav li:hover {
    color: var(--color);
}

.link-cards__nav a {
    cursor: pointer;
}

.link-cards__pushed-link {
    position: fixed;
    bottom: var(--container-padding);
}

.link-cards .moved {
    bottom: 9%;
    transition-duration: .1s;
}

.link-cards > .row {
    padding-right: var(--gutter-x);
}

@media (max-width: 991.98px) {
    .link-cards__nav {
        position: static;
        width: 100%;
        overflow-x: scroll;
        overflow-y: hidden;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    .link-cards__nav::-webkit-scrollbar {
        display: none;
    }
    .link-cards__nav li {
        display: block;
        margin-right: 12px;
        white-space: nowrap;
        z-index: +10;
    }
    .link-cards__nav li:last-child {
        margin-right: 0;
    }
    .link-cards__pushed-link {
        position: static;
    }
    .link-cards__inner {
        width: 100%;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-pack: center;
        justify-content: center;
        margin: 0 auto;
    }
    .link-cards > .row {
        padding-right: calc(var(--gutter-x) / 2);
    }
}

@media (max-width: 767.98px) {
    .link-cards > .row {
        padding-right: 0;
    }
    .link-cards__inner {
        -ms-flex-pack: start;
        justify-content: start;
    }
}

.gallery > .row {
    padding: 0 calc(var(--gutter-x) / 2);
}

@media (max-width: 767.98px) {
    .gallery .row {
        --gutter-x: 0px;
        --gutter-y: 0px;
    }
    .gallery .card {
        margin-top: 40px;
    }
}

.detail-wrapper {
    --margin-bottom: 31px;
    --icon-width: 27px;
}

.detail__credits > * {
    font-weight: 400;
}

.detail__icon {
    width: var(--icon-width);
    margin-bottom: var(--margin-bottom);
}

.detail__icon svg {
    max-width: var(--icon-width);
    max-height: var(--icon-width);
}

.detail__separator {
    margin-bottom: var(--margin-bottom);
}

.detail__separator p {
    font-size: var(--h5);
    color: var(--gray);
    margin-bottom: 0;
}

.detail__separator p:last-child {
    color: var(--color);
}

.detail__content span {
    display: none;
}

.detail__images {
    margin-top: -230px;
}

.detail__images .card {
    margin-bottom: 30px;
    --max-width: 100%;
}

.detail__images .card:last-child {
    margin-bottom: 0;
}

.detail__images .card a:hover {
    cursor: url("../images/cursor.svg") 1 1, pointer;
}

.detail__images .card a:hover .card__img {
    opacity: 1;
}

.detail__article {
    margin-bottom: 10px;
    width: 85%;
    font-size: var(--h5);
}

.detail__article p {
    margin-bottom: 0;
}

.detail__title {
    font-size: var(--h4);
    margin-bottom: 0;
}

.detail__subtitle {
    font-size: var(--h4);
    color: var(--gray);
}

.detail__link {
    font-size: var(--h5);
    border-bottom: 1px solid var(--color);
}

.detail__link:hover {
    opacity: 0.75;
    transition-duration: .25s;
}

@media (max-width: 767.98px) {
    .detail__content .row {
        -ms-flex-direction: column-reverse;
        flex-direction: column-reverse;
    }
}

@media (max-width: 991.98px) {
    .detail__images {
        margin-top: 0;
    }
}

@media (max-width: 1799.98px) {
    .detail__article {
        width: 100%;
    }
}

.contact__info {
    position: fixed;
    font-size: var(--h4);
}

.contact__separator {
    margin-bottom: 50px;
}

.contact__separator p {
    margin-bottom: 0;
}

.contact__link span {
    margin-right: 10px;
}

.contact__link a {
    border-bottom: 1px solid var(--color);
}

.contact__link a:hover {
    opacity: 0.75;
    transition-duration: .25s;
}

.contact__img {
    margin-bottom: 30px;
    transition-duration: .3s;
}

.contact__small-img {
    width: 80px;
}

@media (max-width: 991.98px) {
    .contact__info {
        margin-bottom: 50px;
    }
}

@media (max-width: 767.98px) {
    .contact__info {
        margin-bottom: 30px;
    }
    .contact__small-img {
        width: 65px;
    }
}

[data-emergence=hidden] * {
    opacity: 0;
    top: 30px !important;
}

[data-emergence=visible] * {
    opacity: 1;
    top: 0 !important;
    transition-duration: .6s;
}

[data-emergence=hidden] .cover, [data-emergence=visible] .cover {
    background-color: var(--bg-color);
}

.glightbox-container .goverlay {
    background-color: white;
}

.glightbox-container .gcontainer {
    padding: 25px 0;
}

.glightbox-container .gslide-media {
    box-shadow: none;
}

.glightbox-container .gbtn {
    background-color: transparent;
    opacity: 1;
}

.glightbox-container .gbtn:hover {
    background-color: transparent;
}

.glightbox-container .gbtn:hover svg g path {
    fill: var(--gray);
}

.glightbox-container .gbtn:hover svg g g path {
    fill: var(--gray);
}

.glightbox-container .gbtn.disabled svg g path {
    fill: var(--gray-light);
}

.glightbox-container .gbtn svg g path {
    fill: var(--color);
}

.glightbox-container .gbtn svg g g path {
    fill: var(--color);
}

.list {
    min-height: calc(var(--vh, 1vh) * 100);
}

.list__item {
    display: -ms-flexbox;
    display: flex;
    border-bottom: 1px solid var(--gray);
    padding: 10px 0;
}

.list__item:last-child {
    border-bottom: none;
}

.list__nav {
    position: fixed;
    color: var(--gray);
}

.list__nav:hover {
    color: var(--color);
}

.list__title {
    margin-bottom: 0;
}

.list__perex {
    margin-left: auto;
    margin-bottom: 0;
    color: var(--gray);
}

@media (max-width: 991.98px) {
    .list__nav {
        position: static;
    }
}

@media (max-width: 767.98px) {
    .list__perex {
        text-align: right;
    }
}

.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: 1799.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: 1799.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-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;
}

/*# sourceMappingURL=style.css.map */
