:root {
    /* vw of 1500px */
    --font-body: Helvetica, "thongterm", sans-serif;
    --font-heading: "Glossy Display", "Plaimanas07_Beta", serif;
    --font-heading-strong: "TitlingGothicFBWideBold", "Plaimanas07_Beta", sans-serif;
    --font-featured: "Oaklinn", serif;
    --weight-normal: normal;
    --weight-bold: bold;

    --line-height-xxs: 0.8;
    --line-height-xs: 1;
    --line-height-md: 1.2;
    --line-height-lg: 1.4;

    --font-size-xs: min(0.8vw, 12px);
    --font-size-sm: min(0.9333333333vw, 14px);
    --font-size-md: min(1.2vw, 18px);
    --font-size-lg: min(1.4666666667vw, 22px);
    --font-size-h6: min(1.6666666667vw, 25px);
    --font-size-h5: min(2.4vw, 36px);
    --font-size-h4: min(2.8vw, 42px);
    --font-size-h3: min(3.3333333333vw, 54px);
    --font-size-h2: min(4.5333333333vw, 68px);
    --font-size-h1: min(5.3333333333vw, 80px);
    --font-size-xl: min(6.2666666667vw, 94px);
    --font-size-xxl: min(6.6666666667vw, 100px);

    --spacing-xxs: 0.3vw;
    --spacing-xxs-minus: -0.3vw;
    --spacing-xs: 0.7vw;
    --spacing-xs-minus: -0.7vw;
    --spacing-sm: 1.3vw;
    --spacing-sm-minus: -1.3vw;
    --spacing-md: 2.7vw;
    --spacing-md-minus: -2.7vw;
    --spacing-lg: 5.3vw;
    --spacing-lg-minus: -5.3vw;

    --input-height: min(3.3vw, 56px);
    --input-spacing-y: 0vw;
    --input-spacing-x: 0vw;
    --input-background: #fff;

    --border-width: 0;
    --border-radius: 0;

    --color-blue: #0024ff;
    --color-error: #ff0000;
    --color-body-light: #666666;

    --duration: 0.4s;
    --duration-fast: 0.2s;
    --timing-function: cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/*=== Reset ===*/
*,
*:before,
*:after {
    box-sizing: border-box;
}
::-webkit-scrollbar {
    width: 0px;
    overflow: hidden;
}

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

html,
body {
    background: #000;
}

html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    margin: 0;
    position: relative;
    min-height: 100svh;
    -webkit-animation-name: pageAnimation;
    animation-name: pageAnimation;
    -webkit-animation-duration: var(--duration);
    animation-duration: var(--duration);
    -webkit-animation-timing-function: var(--timing-function);
    animation-timing-function: var(--timing-function);
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    -webkit-animation-fill-mode: forwards;
    animation-fill-mode: forwards;
}
@-webkit-keyframes pageAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
@keyframes pageAnimation {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
    font-size: inherit;
    font-weight: inherit;
    line-height: inherit;
}

p {
    margin: 0;
}

address {
    font-style: normal;
}

ul,
ol {
    list-style: none;
}
ul,
ol,
li {
    margin: 0;
    padding: 0;
}

table {
    width: 100%;
    border-collapse: collapse;
}
th,
td {
    font-weight: inherit;
}

a {
    color: inherit;
}
a,
a:hover,
a:focus {
    outline: 0;
    text-decoration: none;
}
a[href^="tel"] {
    white-space: nowrap;
}
a[href^="mailto"] {
    word-break: break-word;
}

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

button,
input,
textarea,
select,
.ui-datepicker select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    box-shadow: none;
    background: none;
    border-radius: 0;
    border: 0;
    outline: 0;
    padding: 0;
    margin: 0;
    min-width: 0;
    font: inherit;
    line-height: normal;
    text-transform: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-indent: inherit;
    color: inherit;
}

img,
figure,
picture,
iframe,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
}
img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}
img:not(.img-flexible) {
    width: auto;
}

[tabindex="-1"]:focus {
    outline: 0 !important;
}

canvas {
    margin: 0 auto;
}

/*=== Color ===*/
.c-blue {
    color: var(--color-blue) !important;
}
.c-error {
    color: var(--color-error) !important;
}
.c-body-light {
    color: var(--color-body-light) !important;
}

/*=== Text ===*/
body {
    font-family: var(--font-body);
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
}
small {
    font-size: 87.5%;
}
strong {
    font-weight: var(--weight-bold);
}

.size-xs,
.entry-data,
.entry-table .td-name small,
.breadcrumb {
    font-size: var(--font-size-xs);
    line-height: var(--line-height-md);
}
.size-sm {
    font-size: var(--font-size-sm);
    line-height: var(--line-height-md);
}
.size-md {
    font-size: var(--font-size-md);
    line-height: var(--line-height-md);
}
.size-lg,
.entry-table .td-name,
#main ul.products li.product .woocommerce-loop-product__title,
#main ul.products li.product .price {
    font-size: var(--font-size-lg);
    line-height: var(--line-height-md);
}
.size-h6,
.entry-table .td-total {
    font-size: var(--font-size-h6);
    line-height: var(--line-height-md);
}
.size-h5,
#main .product-layout .price {
    font-size: var(--font-size-h5);
    line-height: var(--line-height-xs);
}
.size-h4,
.team-container {
    font-size: var(--font-size-h4);
    line-height: var(--line-height-xs);
}
.size-h3 {
    font-size: var(--font-size-h3);
    line-height: var(--line-height-xs);
}
.size-h2,
#main ul.products li.product .category {
    font-size: var(--font-size-h2);
    line-height: var(--line-height-xs);
}
.size-h1 {
    font-size: var(--font-size-h1);
    line-height: var(--line-height-xs);
}
.size-xl {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-xs);
}
.size-xxl {
    font-size: var(--font-size-xxl);
    line-height: var(--line-height-xs);
}

.fix-text-em em {
    line-height: var(--line-height-xs);
}

.font-body,
.post h1,
.post h2,
.post h3,
.post h4,
.post h5,
.post h6 {
    font-family: var(--font-body);
}

.font-heading,
:is(h1, h2, h3, h4, h5, h6),
.entry-table .td-total {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: normal;
    line-height: var(--line-height-xxs);
}
.font-heading strong {
    font-family: var(--font-heading-strong);
    font-style: normal;
    font-weight: normal;
    font-size: 0.88em;
}
.font-heading small {
    font-size: 0.64em;
}
.font-heading small strong {
    font-size: 1em;
}

.font-heading em,
.fix-text-em em,
:is(h1, h2, h3, h4, h5, h6) em,
#main ul.products li.product .price,
#main .product-layout .price {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: normal;
}

.font-dbheavent {
    font-family: "db_heaventregular";
    font-style: normal;
    font-weight: normal;
}

.font-oaklinn,
#main ul.products li.product .category {
    font-family: "Oaklinn";
    font-style: normal;
    font-weight: normal;
}

.line-height-xs {
    line-height: var(--line-height-xs) !important;
}

/*=== Transition ===*/
a,
button,
img,
label {
    transition-property: color, opacity;
    transition-duration: var(--duration);
    will-change: opacity;
}

/*========== General ==========*/
#page {
    position: relative;
    width: 100%;
    min-height: 100svh;
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: 100%;
    background: #fff;
    overflow: clip;
}

.container {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    max-width: calc(100% - var(--spacing-md) * 2);
}
.container.md {
    max-width: min(82vw, 1344px);
}
.container.sm {
    max-width: min(57vw, 924px);
}

.brand {
    display: inline-block;
    vertical-align: top;
    line-height: 1;
}

.logosvg {
    position: relative;
    display: block;
    width: 4vw; /*60px*/
    margin: auto;
}
.logosvg:before {
    content: "";
    display: block;
    padding-bottom: 83.75%;
}
.logosvg > svg {
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

.menu {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

.image {
    display: block;
    overflow: hidden;
}
.image > img,
.image > video,
.image > iframe {
    display: block;
    width: 100%;
    height: auto;
}
.object-fit {
    position: relative;
    display: block;
    overflow: hidden;
}
.object-fit:before {
    content: "";
    display: block;
}
.object-fit > img,
.object-fit > video,
.object-fit > iframe {
    display: block;
    margin: 0 auto;
    width: calc(100% + 2px);
    height: calc(100% + 2px);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0;
    left: 0;
}

.bg-img {
    background-repeat: no-repeat;
    background-position: center center;
    background-size: cover;
}
.no-touchevents .bg-img.fixed {
    background-attachment: fixed;
}

.social {
    display: inline-flex;
    flex-wrap: wrap;
    align-items: center;
    vertical-align: top;
    line-height: 1;
}
.social > *:not(:last-child) {
    margin-bottom: 0 !important;
    margin-right: var(--spacing-sm);
}
.social .ic {
    font-size: var(--font-size-lg);
    display: block;
    padding: 1px;
    margin: -1px;
}

.iframe-container {
    position: relative;
    overflow: hidden;
    padding-top: 56.25%;
}
.iframe-container iframe {
    outline: 0;
    border: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.map-container {
    width: 100%;
    position: relative;
    overflow: hidden;
}
.map-container:before {
    content: "";
    display: block;
    width: 100%;
}
.map-container .mockup,
.map-container .mockup img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}
.map-container iframe {
    outline: 0;
    border: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

/*=== Form - START ===*/
input,
textarea,
select {
    display: block;
    width: 100%;
    padding: 10px 20px;
    height: var(--input-height);
    color: inherit;
    border: 1px solid;
    border-radius: var(--border-radius);
    background: none;
}
textarea {
    display: block;
    overflow: auto;
    width: 100% !important;
    min-width: 100%;
    max-width: 100%;
    min-height: 164px;
    padding-top: 1em;
    resize: none;
}
input:focus,
textarea:focus,
select:focus {
    position: relative;
    z-index: 1;
}

/* Select - START */
.select {
    position: relative;
}
.select select {
    line-height: normal;
    padding-right: var(--input-height);
    text-overflow: "";
    cursor: pointer;
}
.select:after {
    font-family: "iconfont";
    content: "\e904";
    font-size: var(--font-size-xs);
    font-weight: normal;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    vertical-align: top;
    text-align: right;
    width: var(--input-height);
    height: 100%;
    padding-right: var(--spacing-sm);
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}
.select2-parent:after {
    display: none;
}
.select2-rendered__match {
    text-decoration: underline;
}
.select2-close-mask {
    border: 0;
    margin: 0;
    padding: 0;
    display: block;
    position: fixed;
    left: 0;
    top: 0;
    min-height: 100%;
    min-width: 100%;
    height: auto;
    width: auto;
    opacity: 0;
    z-index: 99;
    background-color: #fff;
    filter: alpha(opacity=0);
}
.select2-hidden-accessible {
    border: 0 !important;
    clip: rect(0 0 0 0) !important;
    -webkit-clip-path: inset(50%) !important;
    clip-path: inset(50%) !important;
    height: 1px !important;
    overflow: hidden !important;
    padding: 0 !important;
    position: absolute !important;
    width: 1px !important;
    white-space: nowrap !important;
}
.select2-container {
    position: relative;
    display: block;
    width: 100%;
    margin: 0;
}
.select2-dropdown {
    display: block;
    width: 100%;
    margin: -2px 0;
    padding: 15px 20px;
    position: absolute;
    z-index: 1051;
    left: -100000px;
    border-radius: var(--border-radius);
    border: 1px solid !important;
    background: #fff;
    color: #000;
    box-sizing: border-box;
    transition: border-color var(--duration);
    overflow: hidden;
}
.select2-container--open .select2-dropdown {
    left: 0;
}
.select2-results {
    display: block;
}
.select2-results__options {
    list-style: none;
    margin: 0;
    padding: 0;
}
.select2-results__option {
    padding: 0;
}
.select2-results__option:not(:last-child) {
    margin-bottom: var(--spacing-xxs);
}
.select2-results__option[aria-selected] {
    cursor: pointer;
}
.select2-search--dropdown {
    display: block;
    padding: var(--spacing-xs) var(--spacing-sm);
}
.select2-search--dropdown .select2-search__field {
    padding: var(--spacing-xxs) var(--spacing-sm);
    width: 100%;
    height: var(--input-height);
    box-sizing: border-box;
}
.select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}
.select2-search--dropdown.select2-search--hide {
    display: none;
}
.select2-container--default .select2-selection--single {
    outline: 0;
    display: block;
    height: var(--input-height);
    border-radius: var(--border-radius);
    background: none;
    border: 1px solid;
    overflow: hidden;
    cursor: pointer;
    transition: border-color var(--duration);
}
.select2-container--default .select2-selection--single .select2-selection__rendered {
    display: block;
    padding: 0 var(--input-height) 0 var(--spacing-sm);
    max-width: 100%;
    width: 100%;
    height: 100%;
    line-height: calc(var(--input-height) - 2px);
    color: inherit;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.select2-container--default .select2-selection--single .select2-selection__rendered[title] {
    background-color: transparent;
}
.select2-container--default .select2-selection--single .select2-selection__clear {
    position: relative;
    cursor: pointer;
    float: right;
}
.select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: var(--color-body-light);
}
.select2-container--default .select2-selection--single .select2-selection__arrow,
.select2-container--default .select2-selection--single .select2-selection__clear {
    position: absolute;
    top: 0px;
    right: 0px;
    z-index: 1;
    display: block;
    width: var(--input-height);
    height: 100%;
    font-size: var(--font-size-xs);
    text-align: center;
    padding-right: 0;
    cursor: pointer;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: 0;
    margin: 0;
    position: static;
    top: auto;
    left: auto;
    display: block;
    width: 100%;
    height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:before,
.select2-container--default .select2-selection--single .select2-selection__clear:before {
    font-family: "iconfont";
    font-size: inherit;
    font-weight: normal;
    line-height: normal;
    display: inline-flex;
    align-items: center;
    justify-content: flex-end;
    text-align: right;
    padding-right: var(--spacing-sm);
    vertical-align: top;
    width: 100%;
    height: 100%;
}
.select2-container--default .select2-selection--single .select2-selection__arrow b:before {
    content: "\e904";
}
.select2-container--default .select2-selection--single .select2-selection__clear:before {
    content: "\e900";
}
.select2-container--default.select2-container--disabled .select2-selection--single {
    background-color: #eee;
    cursor: default;
}
.select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none;
}
.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
    display: none;
}
.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
    border: 0;
}
.select2-container--default.select2-container--open.select2-container--above .select2-selection--single {
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.select2-container--default.select2-container--open.select2-container--below .select2-selection--single {
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
}
.select2-container--default .select2-search--dropdown .select2-search__field {
    border: 1px solid;
}
.select2-container--default .select2-search--inline {
    float: left;
}
.select2-container--default .select2-search--inline .select2-search__field {
    box-sizing: border-box;
    border: none;
    padding: 0;
    font-size: 100%;
    margin-top: var(--spacing-xxs);
    background: transparent;
    border: none;
    outline: 0;
    box-shadow: none;
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}
.select2-container--default .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
    -webkit-appearance: none;
    appearance: none;
}
.select2-container--default .select2-results > .select2-results__options {
    max-height: 45vh;
    overflow-y: auto;
    list-style: none;
    padding-left: 0;
}
.select2-container--default .select2-results__option {
    padding: 1px 0;
}
.select2-container--default .select2-results__option[role="group"] {
    padding: 0;
}
.select2-container--default .select2-results__option[aria-disabled="true"] {
    color: inherit;
    opacity: 0.4;
}
.select2-container--default .select2-results__option[aria-selected="true"],
.select2-container--default .select2-results__option[data-selected="true"] {
    background: none;
}
.select2-container--default .select2-results__option--highlighted[aria-selected] {
    background: none;
    color: inherit;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.select2-container--default .select2-results__option[aria-selected="true"] {
    background: none;
    color: inherit;
    font-weight: var(--weight-bold);
    text-decoration: none;
}
.select2-container--default .select2-results__group {
    display: block;
    padding: 0;
    cursor: default;
}
/* Select - END */

/* Checkbox & Radio - START */
.choice,
.woocommerce-form__label-for-checkbox {
    position: relative;
    line-height: 1;
    display: inline-flex;
}
.choice > span,
.woocommerce-form__label-for-checkbox > span {
    position: relative;
    display: inline-block;
    -webkit-touch-callout: none;
}
.choice > input,
.woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox {
    position: absolute !important;
    z-index: -1000 !important;
    overflow: hidden !important;
    clip: rect(0 0 0 0) !important;
    height: 1px !important;
    width: 1px !important;
    margin: -1px !important;
    padding: 0 !important;
    border: 0 !important;
    background: none !important;
}
.choice input + span,
.woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox + span {
    display: inline-block;
    vertical-align: baseline;
    text-align: left;
    color: inherit;
    line-height: normal;
    height: auto;
    min-height: 14px;
    min-width: 14px;
    padding-left: 24px;
    cursor: pointer;
}
.choice input + span:before,
.woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox + span:before {
    content: "";
    width: 14px;
    height: 14px;
    background-color: transparent;
    border: 1px solid;
    border-radius: var(--border-radius);
    position: absolute;
    left: 0;
    top: 0;
}
.choice input + span:after,
.woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox + span:after {
    content: "";
    margin: 0;
    height: auto;
    width: auto;
    padding: 0;
    border: 5px solid;
    position: absolute;
    left: 2px;
    top: 2px;
    opacity: 0;
}
.choice input:checked + span:after,
.woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox:checked + span:after {
    opacity: 1;
}
.choice input[type="radio"] + span:before,
.choice input[type="radio"] + span:after,
.woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox[type="radio"] + span:before,
.woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox[type="radio"] + span:after {
    border-radius: 50%;
}
.choice input + span:before,
.choice input + span:after,
.woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox + span:before,
.woocommerce-form__label-for-checkbox > .woocommerce-form__input-checkbox + span:after {
    margin-top: 2px;
}
/* Checkbox & Radio - END */

.fields {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: var(--spacing-sm-minus);
}
.fields + .fields {
    margin-top: var(--spacing-sm);
}
.field {
    width: 100%;
    margin-bottom: var(--spacing-sm);
}
.field.focusin {
    position: relative;
    z-index: 2;
}

.fields-cta {
    position: relative;
    margin-top: var(--spacing-md);
}

.fields-cta .ajax-loader {
    display: block !important;
    margin: 0 !important;
    left: 0 !important;
    top: calc(100% + var(--spacing-xs)) !important;
}
.fields-cta.a-center .ajax-loader {
    margin: 0 auto !important;
    right: 0 !important;
}

.wpcf7 .wpcf7-form-control-wrap {
    display: block !important;
}
.wpcf7 .wpcf7-not-valid-tip {
    color: var(--color-error) !important;
    font-size: var(--font-size-xs) !important;
    position: absolute !important;
    left: 0 !important;
    width: 100% !important;
    font-weight: inherit !important;
    margin: 3px 0 0 !important;
}
.wpcf7 .wpcf7-response-output {
    margin-top: var(--spacing-md) !important;
}

.field.type-flex {
    display: flex;
}
.field.type-flex > *:not(:last-child) {
    margin-right: -1px;
}
.field.type-flex .input {
    flex: 1;
}

.input {
    position: relative;
    text-align: left;
}

.input-label {
    padding: 0;
    border-radius: 0;
    position: relative;
    display: flex;
    align-items: center;
    min-height: var(--input-height);
}

.label {
    padding: 0;
    border-radius: 0;
    position: relative;
    display: block;
}
.label:not(.anim) {
    font-weight: var(--weight-bold);
    margin-bottom: var(--spacing-xs);
}
.label.anim {
    color: var(--color-body-light);
    display: block;
    height: auto;
    width: 100%;
    max-width: 100%;
    line-height: normal;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    padding: 0 21px;
    position: absolute;
    z-index: 1;
    left: 0;
    top: 12px;
    pointer-events: none;
}
.label.anim.fade {
    top: 0;
    height: var(--input-height);
    display: flex;
    align-items: center;
}
.label.anim:not(.fixed) {
    transition-property: opacity, visibility;
}
.input.filled .label.anim:not(.fixed) {
    opacity: 0;
    visibility: hidden;
}
.input.filled .label.anim.fixed {
    opacity: 0;
    visibility: hidden;
}

.input.filled input,
.input.filled textarea,
.input.filled select,
.select2-container--default .select2-selection--single .select2-selection__rendered {
}
.input.filled input[type="password"] {
    letter-spacing: 1px;
}

.input input:-internal-autofill-selected,
.input textarea:-internal-autofill-selected,
.input select:-internal-autofill-selected {
    font-weight: var(--weight-bold);
    color: inherit;
}
.input input:disabled,
.input textarea:disabled,
.input select:disabled,
.select2-container--default.select2-container--disabled .select2-selection--single {
    cursor: default;
    opacity: 0.3;
}
.input input[type="checkbox"]:disabled,
.input input[type="radio"]:disabled {
    background-color: transparent;
}
.input :-ms-input-placeholder {
    font-weight: normal;
    font-style: normal;
    color: var(--color-body-light) !important;
    opacity: 1 !important;
}
.input ::-webkit-input-placeholder {
    font-weight: normal;
    font-style: normal;
    color: var(--color-body-light) !important;
    opacity: 1 !important;
}
.input ::-moz-placeholder {
    font-weight: normal;
    font-style: normal;
    color: var(--color-body-light) !important;
    opacity: 1 !important;
}
.input.filled :-ms-input-placeholder {
    font-weight: normal;
    font-style: normal;
    color: var(--color-body-light) !important;
    opacity: 1 !important;
}
.input.filled ::-webkit-input-placeholder {
    font-weight: normal;
    font-style: normal;
    color: var(--color-body-light) !important;
    opacity: 1 !important;
}
.input.filled ::-moz-placeholder {
    font-weight: normal;
    font-style: normal;
    color: var(--color-body-light) !important;
    opacity: 1 !important;
}
.input ::-ms-clear {
    display: none;
    width: 0;
    height: 0;
}
.input ::-ms-reveal {
    display: none;
    width: 0;
    height: 0;
}
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    border-style: none;
    padding: 0;
}
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
    outline: 0;
}
input::-webkit-contacts-auto-fill-button {
    display: none !important;
    visibility: hidden;
    pointer-events: none;
}
input:-webkit-autofill,
textarea:-webkit-autofill,
select:-webkit-autofill {
    box-shadow: 0 0 0px 1000px #fff inset;
    -webkit-transition: 5000s ease 0s;
    transition: 5000s ease 0s;
}
input[type="number"] {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
    appearance: textfield;
}
input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    appearance: none;
    margin: 0;
}

/* Upload File */
.custom-file-upload-hidden {
    display: none;
    visibility: hidden;
    position: absolute;
    left: -9999px;
}
.custom-file-upload {
    display: flex;
    align-items: center;
}
.file-upload-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
}
.file-upload-wrapper .file-upload-action {
    line-height: 1;
    width: auto;
    display: flex;
    align-items: center;
    cursor: pointer;
}
.file-upload-wrapper .file-upload-button {
    display: inline-flex;
    align-items: center;
    vertical-align: top;
    height: var(--input-height);
    min-width: 0;
    background: #000;
    color: #fff;
    margin-left: 10px;
    text-transform: uppercase;
}
.file-upload-wrapper .file-upload-button:hover {
    background: #4b4b4b;
    color: #fff;
}

/* wpcf7 */
div.wpcf7 .ajax-loader {
    position: absolute;
    left: 100%;
}
div.wpcf7 .wpcf7-not-valid-tip {
    color: #dc3232;
    font-size: 12px;
    position: absolute;
    left: 0;
}
div.wpcf7 .wpcf7-response-output {
    margin: 30px 0 0;
    padding: 0;
    border: 0;
}

/*========== CTAs ==========*/
.button {
    position: relative;
    z-index: 1;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-family: var(--font-heading-strong);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-xxs);
    text-transform: uppercase;
    white-space: nowrap;
    vertical-align: top;
    width: auto;
    max-width: 100%;
    min-width: 13vw;
    height: var(--input-height);
    padding: 0 var(--spacing-sm);
    color: inherit;
    border: 1px solid;
    border-radius: var(--border-radius);
    background: none;
    transition: var(--duration) var(--timing-function);
}
.button .th {
    font-size: 1.8em;
}
.button:hover,
.button.active {
    background: #000;
    border-color: #000;
    color: #fff;
}

.entry-content .button {
    opacity: 1 !important;
    text-decoration: none !important;
}

.explore,
.explore:hover,
.button[class*="font-heading"],
.entry-header .entry-title,
.entry-content a,
.contact-box.type-map a,
.tutorial .entry-title {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.explore:hover,
.entry-content a:hover,
.categories-wrapper a:hover {
    opacity: 0.2;
}

/*========== Post ==========*/
.entry > *:not(:first-child) {
    margin-top: var(--spacing-md);
}
.entry-header.type-grid {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-gap: var(--spacing-xs) var(--spacing-sm);
}
.entry-header.type-grid > *:not(:first-child) {
    margin-top: 0 !important;
}
.entry-header.type-grid .entry-title {
    grid-row: 1;
    grid-column: 1;
}
.entry-header.type-grid .entry-data {
    grid-row: 2;
    grid-column: 1;
}
.entry-header.type-grid .entry-total {
    grid-row: 1 / span 2;
    grid-column: 2;
}

.entry-header .entry-title:not(:first-child),
.entry-content > *:not(:first-child),
.entry-content .wp-block-column > *:not(:first-child) {
    margin-top: var(--spacing-xs);
}
.entry-content li:not(:first-child),
.entry-info > *:not(:first-child) {
    margin-top: var(--spacing-xxs);
}

.entry-content {
    line-height: var(--line-height-lg);
}
.entry-content ol {
    list-style-type: decimal;
    padding-left: 1.35em;
}
.entry-content ul {
    list-style-type: disc;
    padding-left: 1.35em;
}
.entry-content figure {
    overflow: hidden;
}
.entry-content figcaption {
    margin: var(--spacing-xs) 0 0 !important;
    font-size: var(--font-size-xs);
    text-transform: uppercase;
}
.entry-content .wp-block-image {
    width: 100%;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.entry-content .wp-block-image img {
    display: block;
    margin-left: auto;
    margin-right: auto;
    height: auto;
}
.entry-content .wp-block-image:not(.alignfull):not(.alignwide) img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}
.entry-content [class*="wp-block-"] {
    list-style: none;
    padding: 0;
    max-width: 100%;
    margin: 0;
}
.entry-content [class*="wp-block-"] li {
    margin: 0 auto !important;
}
.entry-content * + [class*="wp-block-"],
.entry-content [class*="wp-block-"] + * {
    margin-top: var(--spacing-md);
}
.entry-content [class*="wp-block-"]:first-child {
    margin-top: 0 !important;
}
.entry-content [class*="wp-block-"]:last-child {
    margin-bottom: 0 !important;
}
.entry-content [class*="wp-block-"].alignfull,
.entry-content .wp-block-gallery {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !important;
}
.entry-content [class*="wp-block-"].alignfull + .wp-block-gallery,
.entry-content .wp-block-gallery + [class*="wp-block-"].alignfull {
    margin-top: 0;
}
.entry-content .size-full {
    width: 100% !important;
    max-width: 100% !important;
    margin-left: auto !important;
    margin-right: auto !important;
}
.entry-content .wp-block-embed__wrapper {
    display: block;
    position: relative;
    padding-top: 56.25%;
}
.entry-content .wp-block-embed__wrapper iframe {
    display: block;
    outline: 0;
    border: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.entry-content .video-player {
    display: block;
    position: relative;
}
.entry-content .video-player:before {
    content: "";
    display: block;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}
.entry-content .video-player iframe {
    display: block;
    outline: 0;
    border: 0;
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.entry-data {
    font-weight: var(--weight-bold);
    text-transform: uppercase;
}
.entry-data .ic:before {
    font-size: 171.4%;
}
.entry-data [class*="ic"] {
    vertical-align: middle;
}
.entry-data [class*="ic"] + [class*="ic"] {
    margin-left: 5px;
}

.entry-table tr > * {
    vertical-align: baseline;
}
.entry-table tr:not(:first-child) > * {
    padding-top: var(--spacing-md);
}

.entry-table .td-name a {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}
.entry-table .td-name small {
    font-weight: var(--weight-bold);
    text-transform: uppercase;
}
.entry-table .td-total {
    white-space: nowrap;
}

/*=== Function : Tab ===*/
.tab {
    position: relative;
}
.tab .control a.active {
    pointer-events: none;
}
.tab-content {
    position: relative;
    height: 0;
    opacity: 0;
    overflow: hidden;
    pointer-events: none;
    padding: 0 !important;
    margin: 0 !important;
}
.tab-content.active {
    height: auto;
    opacity: 1;
    overflow: visible;
    pointer-events: auto;
}

/*=== Function : Accordion ===*/
.accordion .entry-title {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}
.accordion .entry-title:after {
    font-family: "iconfont";
    content: "\e904";
    font-size: 9px;
    line-height: 1;
    margin-left: 8px;
}
.accordion.active .entry-title:after {
    content: "\e90b";
}
.accordion .entry-content {
    display: none;
}

/*=== Plugin : Splitting ===*/
[data-splitting] {
    display: inline-block;
    vertical-align: top;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
[data-splitting] :is(.word, .char) {
    width: auto;
    display: inline-block;
    white-space: nowrap;
}

/*=== Plugin : liMarquee ===*/
[data-limarquee].mWrap {
    transition: height var(--duration) var(--timing-function);
}
[data-limarquee].mWrap .mMove,
[data-limarquee].mWrap .mItem {
    display: inline-block !important;
    vertical-align: top !important;
    width: auto !important;
}
[data-limarquee] .cloneContent {
    padding: 0 !important;
}
[data-limarquee-wrapper] {
    display: inline-grid;
    grid-auto-flow: column;
    grid-auto-columns: -webkit-max-content;
    grid-auto-columns: max-content;
    vertical-align: top;
}
[data-limarquee-wrapper] > [data-limarquee-item] {
    display: inline-block;
    vertical-align: top;
    margin-right: var(--spacing-md);
}

/*========== Popup ==========*/
[class*="open-popup-"] {
    cursor: pointer;
}
.mfp-bg,
.mfp-content {
    transition: var(--duration);
}
.mfp-bg,
.mfp-wrap .mfp-content {
    opacity: 0;
}
.mfp-bg.mfp-ready {
    opacity: 1;
}
.mfp-bg.mfp-removing {
    opacity: 0;
}
.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}
.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}
.mfp-bg {
    background: none;
    background-color: rgba(0, 0, 0, 0.85);
    z-index: 9998;
}
.mfp-wrap {
    color: #000;
    z-index: 9999;
}
.mfp-container {
    padding-left: 0;
    padding-right: 0;
    position: fixed;
    max-height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
button.mfp-close,
.modal-dismiss,
.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
    background: none !important;
    display: inline-block;
    width: auto;
    height: auto;
    padding: 0;
    font-family: sans-serif;
    font-size: 0;
    line-height: 1;
    opacity: 1;
    position: fixed;
    z-index: 10;
    color: inherit;
}
button.mfp-close:hover,
.modal-dismiss:hover,
.mfp-iframe-holder .mfp-close:hover,
.mfp-image-holder .mfp-close:hover {
    color: inherit !important;
}
button.mfp-close,
button.mfp-close:active,
.modal-dismiss,
.mfp-iframe-holder .mfp-close,
.mfp-image-holder .mfp-close {
    left: auto;
    bottom: auto;
    top: -1px;
    right: -1px;
    width: auto;
    padding: 0;
}
button.mfp-close:before,
.modal-dismiss:before {
    display: inline-block;
    vertical-align: top;
    font-family: "iconfont";
    content: "\e900";
    font-size: var(--font-size-lg);
    font-weight: normal;
    line-height: 1;
}
.popup-ctrl {
    font-size: 0;
    line-height: 0;
    position: fixed;
    z-index: -99999;
    top: 100%;
}
.popup-style-modal.mfp-bg.mfp-ready {
    opacity: 0;
}
.popup-style-modal .modal-dismiss {
    position: absolute;
    top: 0;
    right: 0;
    padding: var(--spacing-xs) var(--spacing-xs) 0 0;
}
.modal-container {
    display: flex;
    align-items: center;
    justify-content: center;
}
.modal-image {
    position: relative;
    width: 100%;
    height: 100vh;
    height: calc(var(--vhFlexible, 1vh) * 100);
    margin: 0 auto;
    background: #fff;
    padding: calc((var(--spacing-xs) * 2) + var(--font-size-lg)) 0;
}
.modal-image .image {
    display: block;
    width: 100%;
    height: 100%;
}
.modal-image .image > *:not(script) {
    display: block;
    margin: 0 auto;
    width: 100%;
    height: 100%;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
}

/*========== Slider ==========*/
.swiper-wrapper {
    will-change: transform;
}
.swiper-button {
    z-index: 10;
    outline: none;
    margin: 0;
    width: auto;
    height: auto;
    border: 0;
    border-radius: 0;
    background: none;
    color: inherit;
    line-height: 1;
    justify-content: center;
    top: 50%;
    transform: translateY(-50%);
}
.swiper-button:hover {
    color: inherit;
}
.swiper-button:after {
    font-family: "iconfont";
    font-size: 28px;
    font-weight: normal;
    color: inherit;
    opacity: 1;
}
.swiper-button-prev:after {
    content: "\e905";
}
.swiper-button-next:after {
    content: "\e906";
}
.swiper-button-prev {
    left: 0;
}
.swiper-button-next {
    right: 0;
}
.swiper-button-disabled {
    opacity: 0.25 !important;
}
.swiper-buttons {
    display: inline-flex;
    align-items: center;
    vertical-align: top;
    position: relative;
    z-index: 2;
    padding: 0;
    margin: 0 -7px;
    line-height: 1;
}
.swiper-buttons .swiper-button {
    position: static;
    transform: none;
}
.swiper-buttons > *:not(:last-child) {
    margin-right: 18px;
}

.swiper-pagination {
    padding: 0;
    display: flex;
    font-size: inherit;
    line-height: 1;
    text-align: inherit;
    counter-reset: bullet-counter;
}
.swiper-pagination-bullet {
    margin: 0 !important;
    width: auto !important;
    height: auto !important;
    outline: none;
    border: 0;
    border-radius: 0;
    background: none;
    font-size: inherit;
    vertical-align: top;
    opacity: 1;
}
.swiper-pagination-bullet:only-child {
    display: none !important;
}
.swiper-pagination-bullet:not(:last-child) {
    margin-right: 20px !important;
}
.swiper-pagination-bullet:after {
    counter-increment: bullet-counter;
    content: "0" counter(bullet-counter);
    display: block;
    margin: 5px 0 0;
}
.swiper-pagination-bullet:before {
    content: "";
    display: block;
    width: 10px;
    height: 10px;
    margin: 0 auto;
    border-radius: 50%;
    background: #fff;
    overflow: hidden;
    opacity: 0;
    transition: var(--duration);
}
.bg-white .swiper-pagination-bullet:before {
    background: #000;
}
.swiper-pagination-bullet-active {
    background: none;
    opacity: 1;
}
.swiper-pagination-bullet-active:before {
    opacity: 1;
}

.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 15px;
}
.swiper-container:not(.swiper-container-initialized) .swiper-button,
.swiper-container:not(.swiper-container-initialized) .swiper-pagination {
    display: none !important;
}
.swiper-container-fade .swiper-slide {
    width: 100% !important;
    opacity: 0 !important;
}
.swiper-container-fade .swiper-slide-active {
    opacity: 1 !important;
}
.swiper-container.fix .swiper-button {
    top: 0;
    transform: none;
}
.swiper-container *[class*="swiper-autoplay"] {
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
    cursor: pointer;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 3;
    transition: var(--duration);
    display: none;
}
.swiper-container *[class*="swiper-autoplay"]:hover {
    background-color: #000;
}
.swiper-container *[class*="swiper-autoplay"]:before {
    font-family: "iconfont";
    font-size: var(--font-size-xs);
}
.swiper-container .swiper-autoplay-play:before {
    content: "\e933";
}
.swiper-container .swiper-autoplay-pause:before {
    content: "\e936";
}
.swiper-container.autoplay .swiper-autoplay-pause {
    display: block;
}

/*========== Video ==========*/
.video {
    position: relative;
    line-height: 0;
}
.video video {
    display: block;
    width: 100%;
    background-color: rgba(0, 0, 0, 1);
}
.video .ctrl {
    cursor: pointer;
}
.video .ctrls {
    position: absolute;
    z-index: 3;
    right: 0;
    top: 0;
}
.video .ctrls .ctrl {
    cursor: pointer;
    display: block;
    width: 30px;
    height: 30px;
    line-height: 30px;
    text-align: center;
    background-color: rgba(0, 0, 0, 0.4);
    color: #fff;
}
.video .ctrls .ctrl:hover {
    color: inherit;
}
.video .ctrls .ctrl:before {
    font-family: "iconfont";
    font-size: var(--font-size-xs);
    line-height: 1;
}
.video .ctrls .ctrl.play:before {
    content: "\e933";
}
.video .ctrls .ctrl.pause:before {
    content: "\e936";
}
.video .ctrls .ctrl.mute:before {
    content: "\e937";
}
.video .ctrls .ctrl.unmute:before {
    content: "\e938";
}
.video .ctrls .ctrl.fullscreen:before {
    content: "\e939";
}
.video .ctrls-overlaid {
    width: auto;
    height: auto;
    position: absolute;
    z-index: 3;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.video .ctrls-overlaid .ctrl:not(:hover) {
    opacity: 0.9;
}
.video .ctrls-overlaid .ctrl:before {
    font-family: "iconfont";
    font-size: var(--font-size-xxl);
    line-height: 1;
}
.video .ctrls-overlaid .ctrl.play:before {
    content: "\e911";
}
.video video[muted] ~ .ctrls .ctrl.unmute,
.video video[autoplay] ~ .ctrls .ctrl.play,
.video video[autoplay] ~ .ctrls-overlaid,
.video video:not([muted]) ~ .ctrls .ctrl.mute,
.video video:not([autoplay]) ~ .ctrls,
.video video:not([autoplay]) ~ .ctrls .ctrl.pause {
    display: none;
}
.video video::-webkit-media-controls,
.video:not([controls]) .ctrls {
    display: none !important;
}

/*========== INTRO ==========*/
#intro {
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    background: #fff;
    color: #000;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    opacity: 0;
    pointer-events: none;
    will-change: opacity;
    transition: opacity 0.6s var(--timing-function);
}
#intro.working {
    opacity: 1;
    pointer-events: auto;
}
#intro.faded-out {
    opacity: 0;
    pointer-events: none;
    z-index: -999999;
}
#intro > * {
    width: 100%;
}
#intro .sc-heading.font-heading:not([class*="size-"]) {
    font-size: min(14.953271028vw, 64px);
    line-height: var(--line-height-xxs);
}
#intro .sc-heading.font-heading:not([class*="size-"]) > strong {
    font-size: min(9.3457943925vw, 40px);
}
#intro .sc-heading.font-heading:not([class*="size-"]) > strong:not(:last-child) {
    margin-bottom: 0.08em;
}
#intro .sc-heading.font-heading:not([class*="size-"]) [data-splitting] {
    display: block;
}
#intro .sc-heading.font-heading:not([class*="size-"]) [data-splitting] :is(.word, .char) {
    display: inline-block;
    vertical-align: top;
    overflow: visible;
}

#intro + #page {
    opacity: 0;
    will-change: opacity;
    transition: opacity 1s var(--timing-function) 0.5s;
}
#intro + #page.faded-in {
    opacity: 1;
}

html.has-intro:not(.ready),
html.has-intro:not(.ready) body {
    height: 100%;
    overflow: hidden;
}

html.has-intro #cookie-law-info-bar {
    opacity: 1;
    will-change: opacity;
    transition: opacity 1s var(--timing-function) 0.5s;
}
html.has-intro:not(.ready) #cookie-law-info-bar {
    opacity: 0 !important;
}

/*========== HEADER ==========*/
#header {
    width: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    padding-top: var(--spacing-md);
    pointer-events: none;
}
.header-nav {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
}
.header-brand,
.header-contact,
.header-menu-ctrl {
    grid-row: 1;
    line-height: 1;
    position: relative;
    z-index: 101;
    pointer-events: auto;
}

.header-brand {
    grid-column: 2;
    justify-self: center;
}
.header-brand #logo_threejs {
    --size: 7vw;
}
.header-brand #logo_threejs,
.header-brand #logo_threejs canvas,
.header-brand #logo_threejs > div {
    width: var(--size) !important;
    height: var(--size) !important;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
html.no-touchevents .header-brand #logo_threejs + .logosvg {
    opacity: 1;
}
html.no-touchevents.loaded-three .header-brand #logo_threejs + .logosvg {
    opacity: 0;
}
html.touchevents .header-brand #logo_threejs {
    display: none !important;
}

.header-contact {
    grid-column: 3;
    justify-self: end;
}
.header-menu-ctrl {
    grid-column: 1;
}
.header-menu {
    display: none;
    height: 100dvh;
    min-height: 0 !important;
    width: 100vw;
    max-width: 100vw;
    margin: 0 calc(50% - 50vw);
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    overflow: hidden;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.header-menu .scroller {
    width: auto;
    max-width: none;
    height: 100%;
    padding: 0 25px 0 0;
    margin-right: -25px;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.header-menu .scroller-container {
    min-height: 100%;
    display: flex;
    align-items: center;
}
.header-menu .menu {
    font-size: var(--font-size-h1);
    line-height: var(--line-height-xxs);
    text-align: center;
    flex-direction: column;
    text-transform: uppercase;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 100%;
    margin: 0 auto;
    opacity: 0;
    pointer-events: none;
    transition: 1s var(--timing-function) 0.3s;
}
.header-menu .menu.active {
    opacity: 1;
    pointer-events: auto;
}
.header-menu .menu a {
    position: relative;
}
.header-menu .menu a > i {
    font-style: normal;
    line-height: normal;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    margin: 0 0.2em;
    transition-property: color, opacity;
    transition-duration: var(--duration);
    will-change: opacity;
}
.header-menu .menu a > i:first-child {
    right: 100%;
}
.header-menu .menu a > i:last-child {
    left: 100%;
}
.header-menu .menu:hover a {
    opacity: 0.2;
}
.header-menu .menu:hover a > i {
    opacity: 0;
}
.header-menu .menu:hover a:hover {
    opacity: 1;
}
.header-menu .menu:hover a:hover > i {
    opacity: 1;
    transition: var(--duration);
}

/*========== FOOTER ==========*/
#footer {
    width: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}
.footer-nav {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-md);
}
.footer-nav > *:not(:last-child) {
    margin-bottom: var(--spacing-lg);
}
.footer-nav .menu > li {
    display: block;
    position: relative;
    padding: 0.2em;
    margin: -0.2em;
}
.footer-nav .menu > li:not(:last-child):after {
    content: "/";
    margin: 0;
}
.footer-nav .menu > li[data-hover]:before {
    content: attr(data-hover);
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}
.footer-nav .menu > li[data-hover]:hover:before {
    opacity: 1;
    transition: var(--duration);
}
.footer-nav .menu > li[data-hover]:hover > a {
    opacity: 0.05;
}
.footer-nav .legal {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
}
.footer-nav .copyright-marquee {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}
.footer-nav .copyright-marquee .mItem {
    display: inline !important;
    padding: 0.2em calc(var(--spacing-md) / 2);
}

/*========== FILTER ==========*/
#filter {
    width: 100%;
    position: fixed;
    z-index: 97;
    top: 0;
    left: 0;
    padding-top: var(--spacing-md);
    pointer-events: none;
}
#filter a,
#filter button {
    pointer-events: auto;
}

.fn-container {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    grid-gap: 0 calc(var(--spacing-lg) * 2);
}
.fn-container .fn {
    max-width: 21.3vw;
    min-width: 21.3vw;
    display: flex;
    grid-gap: var(--spacing-xxs);
}
.fn-container .fn.left {
    grid-column: 1;
    justify-self: start;
    justify-content: flex-start;
}
.fn-container .fn.center {
    grid-column: 2;
    justify-self: center;
    justify-content: center;
}
.fn-container .fn.right {
    grid-column: 3;
    justify-self: end;
    justify-content: flex-end;
}
.fn .input,
.fn .select {
    width: 100%;
    max-width: 100%;
}

.woo-multi-currency {
    opacity: 0 !important;
}
.fn .currency-ctrl .woo-multi-currency {
    position: relative !important;
    top: auto !important;
    bottom: auto !important;
    left: auto !important;
    right: auto !important;
    transform: none !important;
    width: auto !important;
    z-index: unset !important;
    font: inherit !important;
    opacity: 1 !important;
}
.fn .currency-ctrl .woo-multi-currency .wmc-list-currencies {
    width: auto !important;
    display: flex !important;
    font: inherit !important;
}
.fn .currency-ctrl .woo-multi-currency .wmc-list-currencies > *:not(:first-child):before {
    content: "/";
    margin: 0 2px 0 5px;
}
.fn .currency-ctrl .woo-multi-currency .wmc-list-currencies .wmc-currency {
    width: auto !important;
    height: auto !important;
    display: block !important;
    background: none !important;
    text-transform: inherit !important;
    letter-spacing: normal !important;
    z-index: unset !important;
    font: inherit !important;
    margin: 0 !important;
    transition: var(--duration) var(--timing-function) !important;
    position: relative !important;
}
.fn .currency-ctrl .woo-multi-currency .wmc-list-currencies .wmc-currency > a {
    opacity: 0;
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.fn .currency-ctrl .woo-multi-currency .wmc-list-currencies .wmc-currency span:not(.wmc-active-title) {
    float: none !important;
    color: inherit !important;
    text-decoration: inherit !important;
    text-align: inherit !important;
    line-height: inherit !important;
    width: auto !important;
}
.fn .currency-ctrl .woo-multi-currency .wmc-list-currencies .wmc-currency .wmc-active-title,
.fn .currency-ctrl .woo-multi-currency .wmc-list-currencies .wmc-sidebar-open {
    display: none !important;
}
.fn .currency-ctrl .woo-multi-currency .wmc-list-currencies .wmc-currency.wmc-active {
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 2px;
}

.categories-wrapper.calc {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: var(--spacing-md) calc(var(--spacing-md) - var(--spacing-xs));
}
.categories-container:not(:last-child),
.categories-wrapper:not(:last-child) {
    margin-bottom: var(--spacing-md);
}
.categories-wrapper li:not(:last-child) {
    margin-bottom: var(--spacing-xxs);
}
.categories-wrapper small {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: normal;
    font-size: inherit;
    line-height: inherit;
}
.categories-wrapper .choice input + span:before,
.categories-wrapper .choice input + span:after {
    top: 0.3em;
    margin-top: 0;
}
.categories-wrapper .choice input + span:after {
    margin-top: 2px;
}
.categories-title {
    text-transform: uppercase;
}
.categories-title:not(:last-child) {
    margin-bottom: var(--spacing-xs);
}
.categories-cta {
    display: flex;
    align-items: center;
    grid-gap: var(--spacing-sm);
}

/*========== PANEL ==========*/
*[data-panel-ctrl] {
    cursor: pointer;
}
.panel {
    position: fixed;
    z-index: 99;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: none;
}
.panel section {
    opacity: 0;
    pointer-events: none;
    transition: 1s var(--timing-function) 0.3s;
}
.panel.active section {
    opacity: 1;
    pointer-events: auto;
}
.panel .sc-inner {
    padding-top: var(--spacing-md);
    padding-bottom: 0;
}
.panel .sc-container > *:not(:last-child) {
    margin-bottom: 0;
}
.panel .sc-scroller {
    overflow: hidden;
}
.panel.active .sc-scroller {
    -webkit-mask-box-image: -webkit-linear-gradient(transparent 0%, white var(--spacing-md));
}
.panel .sc-scroller-wrap {
    width: auto;
    max-width: none;
    height: 100%;
    padding: 0 25px 0 0;
    margin-right: -25px;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
}
.panel .sc-scroller-inner {
    padding-top: var(--spacing-md);
    padding-bottom: var(--spacing-lg);
}
.panel-enabled {
    overflow: hidden !important;
}
.panel-close .ic {
    font-size: var(--font-size-xs);
}

/*========== MAIN ==========*/
main,
section {
    width: 100%;
    position: relative;
    z-index: 1;
}

#main {
    overflow: hidden;
}

/* SECTION */
.sc-inner {
    width: 100%;
    padding-top: var(--spacing-lg);
    padding-bottom: var(--spacing-lg);
}
.sc-inner.padding-y-header {
    padding-top: calc(var(--spacing-lg) + var(--header-height, 0px));
    padding-bottom: calc(var(--spacing-lg) + var(--header-height, 0px));
}
.sc-inner.padding-top-header {
    padding-top: calc(var(--spacing-lg) + var(--header-height, 0px));
}
.sc-inner.padding-bottom-header {
    padding-bottom: calc(var(--spacing-lg) + var(--header-height, 0px));
}
.sc-inner.spacing-top-md {
    padding-top: var(--spacing-md);
}

.sc-container:not(:first-child) {
    margin-top: var(--spacing-lg);
}
:is(.sc-container, .sc-intro, .sc-headline, .sc-content, .sc-gallery, .sc-row) > *:not(:first-child) {
    margin-top: var(--spacing-md);
}
.sc-container .margin-top-sc:not(:first-child) {
    margin-top: var(--spacing-lg) !important;
}
.sc-container .margin-top-xs:not(:first-child) {
    margin-top: var(--spacing-xs) !important;
}

.sc-label {
    position: relative;
    z-index: 1;
}
.sc-label.pull:not(:last-child) {
    margin-bottom: -0.05em;
}

.sc-function {
    position: relative;
    z-index: 3;
}

.sc-layout {
    position: relative;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: var(--spacing-lg) calc(var(--spacing-md) - var(--spacing-xs));
}
.sc-layout .sc-sidebar {
    grid-column: 1;
}
.sc-layout .sc-detail {
    grid-column: 2 / span 3;
}

.sc-columns {
    --gap-x: calc(var(--spacing-md) - var(--spacing-xs));
    --gap-y: var(--spacing-md);
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    grid-gap: var(--gap-y) var(--gap-x);
}
.sc-columns > .sc-column {
    width: 100%;
}

.sc-grid-row {
    --flexible-height: 0px;
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    transition: min-height var(--duration) var(--timing-function);
}
.sc-grid-row.h-vh {
    min-height: 100vh;
}
.sc-grid-row.h-lvh {
    min-height: 100lvh;
}
.sc-grid-row.h-svh {
    min-height: 100svh;
}
.sc-grid-row.h-dvh {
    min-height: 100dvh;
}
.sc-grid-row > .sc-inner {
    flex: 1;
    display: flex;
    flex-direction: column;
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 3;
}
.sc-grid-row > .sc-inner > .sc-container {
    flex: 1;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr auto 1fr;
    grid-gap: var(--spacing-md) 0;
}
.sc-grid-row > .sc-inner > .sc-container > * {
    position: relative;
}
.sc-grid-row > .sc-inner > .sc-container > *:not(:first-child) {
    margin-top: 0;
}
.sc-grid-row > .sc-inner > .sc-container > *[data-row="top"] {
    grid-row: 1;
    align-self: flex-start;
}
.sc-grid-row > .sc-inner > .sc-container > *[data-row="middle"] {
    grid-row: 2;
    align-self: center;
}
.sc-grid-row > .sc-inner > .sc-container > *[data-row="bottom"] {
    grid-row: 3;
    align-self: flex-end;
}
.sc-grid-row > .sc-inner > .sc-container[data-row-total="1"] {
    grid-template-rows: 1fr;
    grid-gap: 0;
}
.sc-grid-row > .sc-inner > .sc-container[data-row-total="1"] > * {
    grid-row: auto;
}
.sc-grid-row > .sc-inner > .sc-container[data-row-align="center"] {
    grid-template-rows: unset;
    align-items: center;
}
.sc-grid-row > .sc-inner > .sc-container[data-row-align="center"] > * {
    grid-row: unset;
    align-self: unset;
}

.sc-billboard {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.sc-billboard > * {
    width: 100%;
}
.sc-billboard > .sc-inner {
    width: 100%;
    position: relative;
    z-index: 2;
}
.sc-billboard > .sc-cover {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    overflow: hidden;
}
.sc-billboard > .sc-cover,
.sc-billboard > .sc-cover .object-fit,
.sc-billboard > .sc-cover .object-fit::before {
    height: 100%;
}
.sc-billboard-flex {
    display: flex;
}
.sc-billboard-flex > .sc-billboard {
    flex: 1;
}

.sc-tiles {
    display: flex;
    flex-direction: column;
}
.sc-tiles > .sc-tile {
    width: 100%;
}
.sc-tiles > .sc-tile-cover {
    position: relative;
}
.sc-tiles > .sc-tile-cover .sc-cover .object-fit::before {
    aspect-ratio: 344/430;
}

section > section:not(:last-child) > .sc-inner {
    padding-bottom: 0;
}

/* MODULES */
.breadcrumb {
    margin: 0;
    color: inherit;
    font-weight: var(--weight-bold);
    line-height: inherit;
}
.breadcrumb > * {
    color: inherit;
    font: inherit;
    line-height: inherit;
    text-decoration: none;
}

.client-wrapper {
    display: flex;
    align-items: center;
    line-height: 1;
}
.client-wrapper .client {
    padding: 0 calc(var(--spacing-xs) * 3);
}
.client-wrapper .client a {
    display: block;
    text-decoration: none;
    box-shadow: none;
}
.client-wrapper .client img {
    display: block;
    margin: 0 auto;
    height: 100px;
    width: auto;
    max-width: 180px !important;
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center;
    object-position: center;
    -webkit-filter: grayscale(1);
    filter: grayscale(1);
}

.client-marquee {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}
.client-marquee .client-wrapper {
    display: inline-flex;
    vertical-align: top;
}

.work .entry-featured {
    margin: 0 !important;
    font-family: var(--font-featured);
    font-style: normal;
    font-weight: normal;
    font-size: var(--font-size-h2);
    line-height: var(--line-height-xxs);
    width: 100%;
    text-align: centerz;
    position: absolute;
    z-index: 1;
    left: 0;
    top: var(--spacing-sm);
    pointer-events: none;
}
.work .entry-category {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: normal;
    font-size: var(--font-size-h6);
    line-height: var(--line-height-xxs);
    text-transform: uppercase;
}
.work .entry-title {
    font-family: var(--font-heading);
    font-style: normal;
    font-weight: normal;
    font-size: var(--font-size-h4);
    line-height: var(--line-height-xxs);
    text-transform: uppercase;
}
.work .entry-data {
    font-family: var(--font-heading-strong);
    font-style: normal;
    font-weight: normal;
    font-size: var(--font-size-xs);
    line-height: var(--line-height-xs);
    text-transform: uppercase;
}
.work .link-overlay {
    opacity: 0 !important;
    display: block;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.work-featured {
    position: relative;
}
.work-featured .work {
    display: block;
    position: relative;
    transition: none !important;
    transform: none !important;
}
.work-featured .work:not(:last-child) {
    margin-bottom: calc(var(--spacing-lg) * 2);
}
.work-featured .work .meta {
    width: 55vw;
    padding: var(--spacing-md) 0;
    margin: 0 auto;
    text-align: center;
    transition: opacity 1s var(--timing-function);
    will-change: opacity;
}
.work-featured .work .scene {
    position: absolute;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
.work-featured .work .scene .meta {
    position: -webkit-sticky;
    position: sticky;
    top: 40%;
}
.work-featured .work[class*="c-"] .scene {
    color: #000 !important;
    mix-blend-mode: normal !important;
}

.work-container,
.blog-container,
.tutorial-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-gap: var(--spacing-lg) calc(var(--spacing-md) - var(--spacing-xs));
}

.work-container .work,
.blog-container .blog {
    position: relative;
    display: block;
    text-align: center;
}
.work-container .work .object-fit > *:not(script),
.work-marquee .work .object-fit > *:not(script),
.blog-container .blog .image > *:not(script) {
    transform: scale(1);
    transition: 1.4s;
}
.work-container .work .object-fit:hover > *:not(script),
.work-marquee .work:hover .object-fit > *:not(script),
.blog-container .blog .image:hover > *:not(script) {
    transform: scale(1.07);
}

.work-container .work > *:not(:last-child) {
    margin-bottom: calc(var(--spacing-md) - var(--spacing-xs));
}
.work-container .work .meta > *:not(:last-child) {
    margin-bottom: var(--spacing-xxs);
}
.work-container .work .object-fit:before {
    padding-bottom: 177.7777777778%; /*1080x1920px*/
}
.work-container .work .cover {
    position: relative;
}
.work-container .work .cover > .cover--default {
    transition: 1s;
}
.work-container .work .cover:hover > .cover--default:not(:last-child) {
    opacity: 0;
    transition: 0.1s;
}
.work-container .work .cover > .cover--hover {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    pointer-events: none;
    transition: 0.1s;
}
.work-container .work .cover > .cover--hover .object-fit > *:not(script) {
    -o-object-fit: contain;
    object-fit: contain;
    transform: scale(1) !important;
}
.work-container .work .cover:hover > .cover--hover {
    opacity: 1;
    transition: 1s;
}

.work-stories {
    position: relative;
}
.work-stories .work .object-fit:before {
    height: 100vh;
    height: calc(var(--vh, 1vh) * 100);
}
.work-stories .work {
    position: relative;
    display: block;
}
.work-stories .work .meta {
    display: flex;
    justify-content: space-between;
    align-items: last baseline;
    width: 100%;
    text-align: left;
    position: absolute;
    z-index: 1;
    padding: 0 var(--spacing-sm);
    left: 0;
    bottom: calc(var(--spacing-md) - var(--spacing-xs));
}
.work-stories .work .entry-featured {
    width: 100%;
    text-align: center;
    position: absolute;
    z-index: 1;
    left: 0;
    top: auto;
    bottom: calc((var(--spacing-md) - var(--spacing-xs)) * 2);
    pointer-events: none;
}
.work-stories .work .entry-title {
    white-space: nowrap;
    max-width: 100%;
    padding: 1px 0;
    overflow: hidden;
    text-overflow: ellipsis;
}
.work-stories .work .entry-data {
    text-align: right;
    line-height: var(--line-height-xs);
}
.work-stories .swiper-slide {
    background: #000;
}
.work-stories .swiper-button {
    width: 50vw;
    height: 100%;
    top: 0;
    transform: none;
}
.work-stories .swiper-button-prev {
    left: 0;
}
.work-stories .swiper-button-next {
    right: 0;
}
.work-stories .swiper-button:after {
    display: none;
}
.work-stories .swiper-pagination {
    width: auto;
    text-align: right;
    position: absolute;
    z-index: 3;
    bottom: calc(var(--spacing-md) - var(--spacing-xs));
    right: var(--spacing-sm);
    left: auto;
    padding: 4px 0;
    pointer-events: none;
}
.work-stories .swiper-progress {
    position: absolute;
    z-index: 3;
    left: 0;
    right: 0;
    bottom: var(--spacing-xs);
    width: calc(100% - var(--spacing-sm));
    margin: 0 auto;
    height: 2px;
    background-color: rgba(255, 255, 255, 0.2);
    mix-blend-mode: difference;
    pointer-events: none;
}

#stories + .wp-pagenavi {
    width: 0;
    height: 0;
    opacity: 0;
    overflow: hidden;
    position: fixed;
    z-index: -99999;
    top: 100%;
}
#stories-progress {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 100%;
    background-color: #fff;
}
#stories-guide {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 99999;
    top: 0;
    left: 0;
    transition: 0.8s ease;
    background-color: rgba(0, 0, 0, 0.7);
    color: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    will-change: opacity, transform;
    cursor: pointer;
}
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    #stories-guide {
        background-color: rgba(0, 0, 0, 0.7);
        -webkit-backdrop-filter: saturate(180%) blur(10px);
        backdrop-filter: saturate(180%) blur(10px);
    }
}
#stories-guide .guide-container {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    align-items: center;
    height: 100%;
}
#stories-guide .guide {
    height: 100%;
    display: flex;
    align-items: center;
    text-transform: uppercase;
    font-size: var(--font-size-lg);
    line-height: 1;
    white-space: nowrap;
}
#stories-guide .guide > *:not(:last-child) {
    margin-right: var(--spacing-xs);
}
#stories-guide .guide .ic {
    width: var(--spacing-sm);
}
#stories-guide .guide .ic-name {
    flex: 1;
    font-family: var(--font-heading);
    font-weight: normal;
    font-style: normal;
    font-size: var(--font-size-h6);
    line-height: var(--line-height-xxs);
}
#stories-guide .guide .ic-name strong {
    font-family: var(--font-heading-strong);
    font-weight: normal;
    font-style: normal;
    font-size: 65%;
    display: inline-block;
    margin-bottom: 0.3em;
}
#stories-guide .guide:not(:last-child) {
    border-right: 2px dashed rgba(255, 255, 255, 0.4);
}
#stories-guide .guide.left {
    padding-left: var(--spacing-xs);
}
#stories-guide .guide.right {
    padding-right: var(--spacing-xs);
    text-align: right;
}
.stories-guide-enabled {
    overflow: hidden !important;
}
html:not(.stories-guide-enabled) #stories-guide {
    pointer-events: none;
}

html.stories-html,
html.stories-html body,
html.stories-html #page {
    height: 100%;
    min-height: 0;
    overflow: hidden;
}
html.stories-html #page {
    grid-template-rows: 1fr !important;
}
html.stories-html #page #footer {
    display: none !important;
}
html.stories-html .work-stories .work .entry-featured,
html.stories-html .work-stories .work .meta,
html.stories-html .work-stories .swiper-pagination,
html.stories-html .work-stories .swiper-progress,
html.stories-html:not(.header-menu-enabled) .stories-page #header,
html.stories-html:not(.header-menu-enabled) .stories-page #filter {
    color: inherit !important;
    mix-blend-mode: normal !important;
}
html.stories-html:not(.header-menu-enabled) .stories-page #header:not(:hover),
html.stories-html:not(.header-menu-enabled) .stories-page #header:not(:hover) a,
html.stories-html:not(.header-menu-enabled) .stories-page #filter:not(:hover),
html.stories-html:not(.header-menu-enabled) .stories-page #filter:not(:hover) a {
    transition: none;
}
html.stories-html:not(.header-menu-enabled) .stories-page.fixwhite {
    color: #fff;
}
html.stories-html:not(.header-menu-enabled) .stories-page.fixblack {
    color: #000;
}
html.stories-html:not(.header-menu-enabled) .stories-page.fixblack #header svg {
    fill: inherit;
}
html.stories-html .stories-page.fixblack .work-stories .swiper-progress {
    background-color: rgba(0, 0, 0, 0.2);
}
html.stories-html .stories-page.fixblack #stories-progress {
    background-color: #000;
}

.work-marquee {
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    overflow: hidden;
}
.work-marquee .work-wrapper {
    display: inline-flex;
    vertical-align: top;
}
.work-marquee .work {
    position: relative;
    width: max(13.6243386243vw, 210px);
    white-space: normal;
}
.work-marquee .work .cover {
    position: relative;
    color: #fff;
}
.work-marquee .work .cover .object-fit::before {
    padding-bottom: 177.7777777778%;
}
.work-marquee .work .cover .object-overlay {
    padding: var(--spacing-xs);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}
.work-marquee .work .entry-title {
    font-family: var(--font-heading-strong);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-xs);
    text-shadow: 0 2px 2px rgba(0, 0, 0, 0.65);
    text-align: inherit;
}

*[data-section="work-grid"] .work-container {
    grid-template-columns: repeat(2, 1fr);
    grid-gap: 0;
}
*[data-section="work-grid"] .work-container .work {
    z-index: 1;
}
*[data-section="work-grid"] .work-container .work > *:not(:last-child),
*[data-section="work-grid"] .work-container .work .meta > *:not(:last-child) {
    margin-bottom: 0 !important;
}
*[data-section="work-grid"] .work-container .work .meta {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 3px;
    padding-bottom: var(--spacing-xs);
}
*[data-section="work-grid"] .work-container .work .meta .entry-category {
    display: none !important;
}
*[data-section="work-grid"] .work-container .work:before {
    content: "";
    width: 100%;
    height: 25%;
    display: block;
    position: absolute;
    z-index: 2;
    bottom: 0;
    left: 0;
    right: 0;
    pointer-events: none;
}
*[data-section="work-grid"] .work-container .work.c-black:before {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 100%);
}
*[data-section="work-grid"] .work-container .work.c-white:before {
    background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
}

.blog-container .blog {
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
}
.blog-container .blog > *:not(:last-child) {
    margin-bottom: calc((var(--spacing-md) - 10px) / 2);
}
.blog-container .blog .meta > *:not(:last-child) {
    margin-bottom: var(--spacing-xxs);
}
.blog-container .blog .entry-data {
    text-transform: none;
    font-weight: normal;
}

.tutorial {
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
    text-align: center;
}
.tutorial > * {
    width: 100%;
}
.tutorial > *:not(:last-child) {
    margin-bottom: var(--spacing-xs);
}
.tutorial .object-fit:before {
    padding-bottom: 66.7857142%;
}
.tutorial .meta {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.tutorial .entry-title {
    flex: 1;
}
.tutorial .entry-data {
    margin-top: var(--spacing-xxs);
}
.tutorial-container.related .tutorial:not(:nth-child(-n + 4)) {
    display: none;
}

.contact-box {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    text-align: left;
    line-height: 1;
    border: 1px solid;
    padding: calc(var(--spacing-xs) + 4px) var(--spacing-sm) var(--spacing-xs);
}
.contact-box:not(:last-child) {
    margin-bottom: var(--spacing-xxs);
}
.contact-box > *:not(:first-child) {
    margin-left: var(--spacing-xxs);
}

.billboard-animate {
    position: relative;
}
.billboard-animate .sc-inner {
    width: 100%;
    position: absolute;
    z-index: 1;
    bottom: 0;
    left: 0;
    padding: 0 0 calc(var(--spacing-md) - var(--spacing-xs));
}
.billboard-animate .sc-headline > *:not(:last-child) {
    margin-bottom: var(--spacing-xs);
}
.billboard-animate .sc-heading {
    text-transform: uppercase;
}
.billboard-animate .sc-cover .object-fit:before {
    padding-bottom: 51%;
}
.billboard-animate .sc-cover,
.billboard-animate .sc-cover .object-fit,
.billboard-animate .sc-cover .object-fit > *:not(script) {
    transition: 1s cubic-bezier(0, 0.55, 0.45, 1) 0.1s;
}
.billboard-animate .sc-cover {
    -webkit-filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.4));
    filter: drop-shadow(0 10px 10px rgba(0, 0, 0, 0.4));
}
.billboard-animate .sc-cover .object-fit {
    -webkit-clip-path: polygon(40.5% 20.5%, 59.5% 20.5%, 59.5% 86.5%, 40.5% 86.5%);
    clip-path: polygon(40.5% 20.5%, 59.5% 20.5%, 59.5% 86.5%, 40.5% 86.5%);
}
.billboard-animate .sc-cover .object-fit > *:not(script) {
    transform: scale(0.8);
}
.billboard-animate.animated .sc-cover {
    -webkit-filter: none;
    filter: none;
}
.billboard-animate.animated .sc-cover .object-fit {
    -webkit-clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}
.billboard-animate.animated .sc-cover .object-fit > *:not(script) {
    transform: scale(1);
}

.team-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.team-container > li {
    position: relative;
}
.team-container > li .name-position {
    position: relative;
    z-index: 0;
    display: block;
    padding: 0 0.17em;
}
.team-container > li .name-position.clone {
    min-width: var(--width, 0px);
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
    pointer-events: none;
}
.team-container > li > .business-card {
    width: min(42vw, 420px);
    height: auto;
    aspect-ratio: 3.5/2;
    position: absolute;
    z-index: 1;
    opacity: 0;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: none;
    will-change: transform, opacity;
    pointer-events: none;
    overflow: hidden;
}
.team-container > li > .business-card .object-fit,
.team-container > li > .business-card .object-fit:before {
    width: 100%;
    height: 100%;
    transition: none;
}
.team-container > li > .business-card .object-fit > :is(img, video) {
    background-color: rgba(0, 0, 0, 0);
    font-size: 0px;
    opacity: 0;
    border: 0;
    outline: none;
    transition: none;
}
.team-container > li > .business-card .object-fit > :is(img, video).active {
    opacity: 1;
}
html.no-touchevents .team-container > li.has-img:hover .name-position {
    cursor: none;
}
html.touchevents .team-container > li > .business-card {
    display: none !important;
}

#slogan .sc-headline > *:not(:first-child) {
    margin-top: 0;
}

#single-blog .sc-headline > *:not(:last-child) {
    margin-bottom: var(--spacing-xxs);
}
#single-blog .sc-headline > .sc-heading:not(:last-child) {
    margin-bottom: var(--spacing-sm);
}
#single-blog .entry-content > *:not([class*="wp-block"]) {
    max-width: 55vw;
    margin-left: auto;
    margin-right: auto;
}

#push {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(50vh - var(--spacing-lg));
    margin: 0 !important;
    pointer-events: none;
}

/* Page: Contact */
.contact-info .entry-info > *:not(:first-child) {
    margin-top: var(--spacing-xs);
}
.contact-info .entry-info a {
    display: inline-block;
}
.contact-info .entry-info a:hover {
    opacity: 0.6;
}
.contact-info > .entry-explore:not(:first-child) {
    margin-top: var(--spacing-sm);
}

*[data-section="contact-info"] .sc-billboard > .sc-inner {
    padding-bottom: var(--spacing-md);
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.92) 100%);
}
*[data-section="contact-info"] .sc-billboard > .sc-cover {
    height: 100lvh;
    -webkit-mask-box-image: -webkit-linear-gradient(90deg, transparent 0%, white var(--spacing-md));
    opacity: 0.8;
}

/* Page: Linktree */
html.linktree-html *:is(body, #page) {
    background: #000;
    color: #fff;
}
*[data-section="linktree"] {
    font-family: var(--font-body);
    font-size: 14px;
    line-height: 1.5;
}
*[data-section="linktree"] * {
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
*[data-section="linktree"] .sc-inner {
    padding: 64px 16px 32px;
}
*[data-section="linktree"] .sc-container {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
}
*[data-section="linktree"] .sc-container > *:not(:last-child),
*[data-section="linktree"] .sc-content > *:not(:last-child) {
    margin-bottom: 32px;
}
*[data-section="linktree"] .sc-container > .sc-brand:not(:last-child) {
    margin-bottom: 16px;
}
*[data-section="linktree"] .sc-headline > *:not(:last-child) {
    margin-bottom: 0;
}
*[data-section="linktree"] .sc-brand .brand {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 96px;
    height: 96px;
    background: #fff;
    border-radius: 50%;
    overflow: hidden;
}
*[data-section="linktree"] .sc-brand .brand .logo {
    -webkit-filter: brightness(0);
    filter: brightness(0);
    display: block;
    margin: 0 auto;
    width: 60%;
    height: auto;
}
*[data-section="linktree"] .sc-heading {
    font-size: 20px;
    font-weight: bold;
}
*[data-section="linktree"] .linktree-container {
    display: flex;
    flex-direction: column;
    grid-gap: 16px;
}
*[data-section="linktree"] .linktree-container > * {
    width: 100%;
}
*[data-section="linktree"] .linktree-title {
    font-size: 16px;
    font-weight: bold;
}
*[data-section="linktree"] .linktree-button {
    text-decoration: none !important;
    box-shadow: none !important;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    height: 53px;
    color: rgba(255, 255, 255, 1);
    background-color: rgba(41, 41, 41, 1);
    border: 2px solid rgba(41, 41, 41, 1);
    border-radius: 50vw;
    padding: 0 16px;
    transition: var(--duration) var(--timing-function);
}
*[data-section="linktree"] .linktree-button:hover {
    color: rgba(255, 255, 255, 1);
    background-color: rgba(41, 41, 41, 0);
    border-color: rgba(255, 255, 255, 1);
}
*[data-section="linktree"] .social {
    grid-gap: 8px 16px;
}
*[data-section="linktree"] .social > *:not(:last-child) {
    margin: 0;
}
*[data-section="linktree"] .social .ic {
    font-size: 24px;
    font-weight: normal;
}

/* Page: Shopify */
#main.shopify-main {
    position: relative;
    overflow: clip;
}

html.shopify-html:not(.header-menu-enabled) .header-brand .brand {
    opacity: 0 !important;
    pointer-events: none !important;
}

#logo-shopify-x-plaimanas {
    width: min(27vw, 410px);
    height: calc(var(--header-height) - var(--spacing-md));
    -o-object-fit: contain;
    object-fit: contain;
    -o-object-position: center center;
    object-position: center center;
    position: fixed;
    z-index: 97;
    left: 50%;
    top: var(--spacing-md);
    transform: translateX(-50%);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

#shopify-cta {
    position: -webkit-sticky;
    position: sticky;
    z-index: 97;
    bottom: 0;
    left: 0;
    width: calc(100% - var(--spacing-md));
    margin: 0 auto;
    height: auto;
    padding: var(--spacing-sm) 0;
}
#shopify-cta > .button {
    width: 100%;
}

*[data-section="shopify-intro"] {
    position: relative;
    z-index: 1;
    width: 100%;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
*[data-section="shopify-intro"] .shopify-intro-message {
    text-align: center;
    overflow: hidden;
}
*[data-section="shopify-intro"] .shopify-intro-message .sc-inner {
    padding-top: calc(var(--header-height) + var(--spacing-md));
    padding-bottom: var(--spacing-md);
}
*[data-section="shopify-intro"] .shopify-intro-message .swiper-container {
    overflow: visible;
}
*[data-section="shopify-intro"] .shopify-intro-message .swiper-pagination {
    display: flex;
    align-items: flex-end;
    justify-content: center;
    grid-gap: var(--spacing-xs);
    bottom: 6px;
    transform: translateY(calc(100% + var(--spacing-md) / 2));
}
*[data-section="shopify-intro"] .shopify-intro-message .swiper-pagination-bullet {
    margin: 0 !important;
    color: inherit !important;
    opacity: 0.5 !important;
}
*[data-section="shopify-intro"] .shopify-intro-message .swiper-pagination-bullet-active {
    opacity: 1 !important;
}
*[data-section="shopify-intro"] .shopify-intro-message .swiper-pagination-bullet::before {
    width: 6px !important;
    height: 6px !important;
    background: currentColor !important;
    opacity: 1 !important;
}
*[data-section="shopify-intro"] .shopify-intro-message .swiper-pagination-bullet::after {
    display: none !important;
}
*[data-section="shopify-intro"] .shopify-intro-cover .sc-cover .object-fit::before {
    aspect-ratio: 344/430;
}
*[data-section="shopify-intro"] .shopify-intro-client {
    padding: var(--spacing-xs) 0;
}
*[data-section="shopify-intro"] .shopify-intro-client .client-wrapper .client img {
    height: 70px;
}

*[data-section="shopify-featured"] .shopify-featured-title {
    list-style: none;
    padding: 0;
    margin: 0;
}
*[data-section="shopify-featured"] .shopify-featured-title > li {
    --icon-width: 1.33em;
    padding-left: calc(var(--icon-width) + var(--spacing-xxs));
    position: relative;
    cursor: pointer;
    transition: var(--duration) var(--timing-function);
}
*[data-section="shopify-featured"] .shopify-featured-title > li:before {
    content: "";
    display: block;
    width: var(--icon-width);
    height: var(--icon-width);
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none"><path d="M12 0.625C5.728 0.625 0.625 5.728 0.625 12C0.625 18.272 5.728 23.375 12 23.375C18.272 23.375 23.375 18.272 23.375 12C23.375 5.728 18.272 0.625 12 0.625ZM12 2.375C17.3261 2.375 21.625 6.67387 21.625 12C21.625 17.3261 17.3261 21.625 12 21.625C6.67387 21.625 2.375 17.3261 2.375 12C2.375 6.67387 6.67387 2.375 12 2.375ZM11.37 6.39475L6.39563 11.37L5.76562 12L6.39563 12.63L11.3717 17.6052L12.63 16.375L9.13 12.875H18.125V11.125H9.13L12.63 7.625L11.37 6.39475Z" fill="white"/></svg>');
    background-repeat: no-repeat;
    background-size: 100% auto;
    background-position: center center;
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--duration) var(--timing-function);
}
*[data-section="shopify-featured"] .shopify-featured-title > li:not(:first-child) {
    margin-top: var(--spacing-xs);
}
*[data-section="shopify-featured"] .shopify-featured-title > li:not(.is-active) {
    padding-left: 0;
}
*[data-section="shopify-featured"] .shopify-featured-title > li:not(.is-active):before {
    opacity: 0;
}
*[data-section="shopify-featured"] .entry-content > *:not(:first-child) {
    margin-top: var(--spacing-sm);
}
*[data-section="shopify-featured"] .buttons {
    display: grid;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 100%;
    grid-template-columns: repeat(2, minmax(13.2275132275vw, 1fr));
    grid-gap: var(--spacing-xs);
}
*[data-section="shopify-featured"] .buttons > .button {
    width: 100%;
}

/*=== backdrop-filter ===*/
#backdrop-filter,
#panel-backdrop-filter {
    position: fixed;
    z-index: 98;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.9);
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    pointer-events: none;
    will-change: opacity, transform;
    display: none;
}
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    #backdrop-filter,
    #panel-backdrop-filter {
        /* background-color: rgba(255,255,255,0.1); */ /* bug for safari v18 (12/2024) */
        -webkit-backdrop-filter: saturate(100%) blur(50px);
        backdrop-filter: saturate(100%) blur(50px);
    }
}

/*=== Fix Style ===*/
.c-black {
    color: #000000 !important;
}
.c-white {
    color: #ffffff !important;
}
.bg-black {
    background-color: #000000 !important;
}
.bg-white {
    background-color: #ffffff !important;
}
.a-left {
    text-align: left !important;
}
.a-right {
    text-align: right !important;
}
.a-center {
    text-align: center !important;
}
.margin-0 {
    margin: 0 !important;
}
.margin-top-0 {
    margin-top: 0 !important;
}
.margin-bottom-0 {
    margin-bottom: 0 !important;
}
.padding-0 {
    padding: 0 !important;
}
.padding-top-0 {
    padding-top: 0 !important;
}
.padding-bottom-0 {
    padding-bottom: 0 !important;
}
.nowrap {
    white-space: nowrap !important;
}
.pre-wrap {
    white-space: pre-wrap !important;
}
.uppercase {
    text-transform: uppercase !important;
}
.hidden {
    display: none !important;
}
.overflow-hidden {
    overflow: hidden !important;
}
.overflow-visible {
    overflow: visible !important;
}
.fullwidth {
    width: 100% !important;
}
.alignfull {
    width: 100vw !important;
    max-width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    margin-right: calc(50% - 50vw) !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;
}

/*=== Animate ===*/
.animated {
    -webkit-animation-duration: 1s;
    animation-duration: 1s;
}
.animated.fadeIn {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

@-webkit-keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 1vw, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 1vw, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate,
.intro-animate,
.menu-animate {
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

:is(.staggerChar, .intro-staggerChar) .char {
    padding: 0 0.2em;
    margin: 0 -0.2em;
    display: inline-block;
    position: relative;
    transform-origin: center center 0.2em;
    will-change: transform, opacity;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

/*=== BUNDLE CSS ===*/
img,
.button,
.choice > span,
.woocommerce-form__label-for-checkbox > span,
.select2-selection--single,
.select2-results__option,
.mfp-close,
#header,
#footer,
#intro,
#stories-guide,
#cookie-law-info-bar {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

@supports (mix-blend-mode: difference) {
    .blend-mode,
    #header,
    .work-featured .work .scene,
    .work-featured .work .marquee-container,
    .work .entry-featured,
    .work-stories .work .meta,
    .work-stories .swiper-pagination,
    .billboard-animate .sc-inner {
        color: #fff;
        mix-blend-mode: difference;
    }
    #header svg {
        fill: #fff;
    }
}

/*=== FIX COLOR ===*/
html:not(.theme-default) #page.fix-black #header,
html:not(.theme-default) #page.fix-black #filter,
#page.fix-black .billboard-animate .sc-inner {
    color: #000 !important;
    mix-blend-mode: normal !important;
}
html:not(.theme-default) #page.fix-black #header svg {
    fill: #000 !important;
}
html:not(.theme-default) #page.fix-black #header canvas {
    -webkit-filter: brightness(0);
    filter: brightness(0);
}
html:not(.theme-default):not(.header-menu-enabled, .panel-enabled) #page.fix-white #header,
html:not(.theme-default) #page.fix-white #filter,
#page.fix-white .billboard-animate .sc-inner {
    color: #fff !important;
    mix-blend-mode: normal !important;
}
html:not(.theme-default):not(.header-menu-enabled, .panel-enabled) #page.fix-white #header svg {
    fill: #fff !important;
}
html:not(.theme-default):not(.header-menu-enabled, .panel-enabled) #page.fix-white #header canvas {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

body.bg-black #page {
    background-color: #000;
}
body.bg-black .header-menu {
    color: #000;
}
body.bg-black :is(.button, .button.active) {
    background: #fff;
    border-color: #fff;
    color: #000;
}
body.bg-black :is(.button:hover) {
    background: #000;
    border-color: #000;
    color: #fff;
}
body.bg-black .footer-nav .menu > li[data-hover]:hover > a {
    opacity: 0.1;
}
body.bg-black .client img {
    -webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}

/* UPDATE:2023:START */
*[data-fn="switcher"] {
    height: 1em;
    overflow: visible;
}
.switcher {
    display: flex;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    border-radius: 10px;
    padding: 2px;
    overflow: hidden;
    background-color: rgba(239, 239, 239, 0.09);
    position: relative;
    z-index: 3;
    top: 50%;
    transform: translateY(-50%);
}
.switcher a {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: auto;
    height: auto;
    border-radius: 8px;
    overflow: hidden;
    padding: 0.3em 0.8em;
    white-space: nowrap;
    pointer-events: auto;
}
.switcher a.active {
    background-color: rgba(239, 239, 239, 0.09);
}

html.stories-html .stories-page .switcher {
    background-color: rgba(239, 239, 239, 0.9);
    color: #000;
}
html.stories-html .stories-page .switcher a.active {
    background-color: rgba(239, 239, 239, 0.1);
    color: #000;
}

#switcher-bar {
    height: 1em;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    overflow: visible;
    position: fixed;
    z-index: 97;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    margin-top: var(--spacing-md);
    line-height: normal;
    pointer-events: none;
}
#switcher-bar .switcher {
    background-color: rgba(239, 239, 239, 0.5);
    -webkit-backdrop-filter: saturate(100%) blur(50px) !important;
    backdrop-filter: saturate(100%) blur(50px) !important;
}
#switcher-bar .switcher a.active {
    background-color: rgba(0, 0, 0, 0.05);
    -webkit-backdrop-filter: saturate(100%) blur(50px) !important;
    backdrop-filter: saturate(100%) blur(50px) !important;
}

*[data-section="work-story"] .work-stories .work {
    height: 100vh;
    height: calc(var(--vhFlexible, 1vh) * 100);
}
*[data-section="work-story"] .work-stories .work .object-fit,
*[data-section="work-story"] .work-stories .work .object-fit:before {
    height: 100%;
}
*[data-section="work-story"] .work-stories .work.c-black {
    background: #fff !important;
}
*[data-section="work-story"] .work-stories .work.c-white {
    background: #000 !important;
}

#stories-msg {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--spacing-sm);
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 999999;
    top: 0;
    left: 0;
    transition: 0.2s ease;
    background: #fff;
    color: #000;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    will-change: opacity;
    opacity: 0;
    pointer-events: none;
}
@media (orientation: landscape) {
    html.is-mobile #stories-msg {
        opacity: 1;
        pointer-events: auto;
    }
}
/* UPDATE:2023:END */

.post-password-form {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}
.post-password-form > p {
    text-wrap: balance;
}
.post-password-form > p:not(:last-child) {
    margin-bottom: var(--spacing-sm);
}
.post-password-form > p:empty {
    display: none;
}
.post-password-form label {
    display: block;
    font-weight: var(--weight-bold);
    margin-bottom: 0;
}
.post-password-form label input {
    display: block;
    margin-top: var(--spacing-xs);
}
.post-password-form [type="submit"] {
    background: #000 !important;
    border-color: #000 !important;
    color: #fff !important;
    font-family: var(--font-heading-strong);
    font-size: var(--font-size-sm);
    line-height: var(--line-height-xxs);
    text-transform: uppercase;
}

/*=== Media Queries ===*/
@media (min-width: 576px) {
    .visible-mobile-portrait {
        display: none !important;
    }
}

/* @media (min-width: 1681px) {
    *[data-section="work-grid"] .work-container {
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
        width: calc(100vw - var(--spacing-md) * 2);
        max-width: calc(100vw - var(--spacing-md) * 2);
        margin-left: calc(50% - (100vw - var(--spacing-md) * 2) / 2);
        margin-right: calc(50% - (100vw - var(--spacing-md) * 2) / 2);
    }
    *[data-section="work-grid"] .work-container > * {
        width: min(18.5005952381vw, 310px);
    }
} */

@media (min-width: 1025px), (max-width: 1024px) and (orientation: landscape) {
    .visible-device-portrait {
        display: none !important;
    }

    /* Footer */
    .footer-nav .copyright.marquee-container {
        position: fixed;
        z-index: -99999;
        top: 200%;
        opacity: 0;
        pointer-events: none;
    }

    /* Section */
    .sc-layout .sc-sidebar .sc-fixed {
        position: -webkit-sticky;
        position: sticky;
        top: calc(var(--spacing-md) * 3);
    }

    .sc-tiles {
        flex-direction: row;
    }
    .sc-tiles > .sc-tile {
        width: 50%;
    }
    .sc-tiles > .sc-tile-cover .sc-cover {
        height: -webkit-fit-content;
        height: -moz-fit-content;
        height: fit-content;
        position: -webkit-sticky;
        position: sticky;
        top: 0;
    }
    .sc-tiles > .sc-tile-content {
        align-self: center;
    }
    .sc-tiles > .sc-tile-content > .sc-inner + .sc-inner {
        padding-top: 0;
    }

    .sc-alternate > .sc-tiles:nth-child(odd) > .sc-tile-cover,
    .sc-alternate > .sc-tiles:nth-child(even) > .sc-tile-content {
        order: -1;
    }
    .sc-alternate > .sc-tiles:nth-child(even) > .sc-tile-content:not(.align-default) {
        text-align: right;
    }
    .sc-alternate > .sc-tiles:nth-child(even) > .sc-tile-content:not(.align-default) .shopify-featured-title > li {
        padding-right: calc(var(--icon-width) + var(--spacing-xxs));
    }
    .sc-alternate > .sc-tiles:nth-child(even) > .sc-tile-content:not(.align-default) .shopify-featured-title > li:before {
        transform: translateY(-50%) rotate(180deg);
        left: auto;
        right: 0;
    }
    .sc-alternate > .sc-tiles:nth-child(even) > .sc-tile-content:not(.align-default) .shopify-featured-title > li:not(.is-active) {
        padding-right: 0;
    }
    .sc-alternate > .sc-tiles:nth-child(even) > .sc-tile-content:not(.align-default) .buttons {
        margin-left: auto;
        margin-right: 0;
    }
    .sc-alternate > .sc-tiles:nth-child(even) > .sc-tile-content:not(.align-default) .buttons > .button:nth-child(odd):last-child {
        grid-column-start: 2;
    }

    /* Modules */
    .work-featured .work .scene {
        position: static !important;
        color: #000 !important;
        mix-blend-mode: normal !important;
    }
    .work-featured .work .scene .meta {
        position: static !important;
        padding-bottom: 0 !important;
    }

    /* *[data-section="work-grid"] .work-container .work {
        color: inherit !important;
    } */

    *[data-section="work-grid"] .work-container {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        /* grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); */
        display: flex;
        flex-wrap: wrap;
        justify-content: center;
    }
    *[data-section="work-grid"] .work-container > .work {
        width: calc(100% / 4);
    }

    .us-service.sc-billboard > .sc-inner {
        padding-top: var(--spacing-md);
        padding-bottom: var(--spacing-md);
    }
    .us-service.sc-billboard > .sc-cover {
        transition: var(--duration-fast) var(--timing-function);
    }
    .us-service.sc-billboard:hover > .sc-cover {
        opacity: 0.4;
    }
    .us-service.sc-billboard:not(:hover) .sc-content {
        display: none;
    }
    .us-service.sc-billboard .sc-content .animate {
        visibility: visible !important;
        -webkit-animation: none !important;
        animation: none !important;
    }

    *[data-section="contact-info"] .sc-columns > .sc-column {
        width: calc(50% - var(--gap-x));
        align-self: first baseline baseline;
    }
    *[data-section="contact-info"] .sc-columns > .sc-column:nth-child(even) {
        text-align: right;
    }
    *[data-section="contact-info"] .sc-explore:not(:first-child) {
        margin-top: var(--spacing-sm);
    }

    /* Page: Shopify */
    *[data-section="shopify-intro"] {
        width: 100%;
        min-height: 100lvh;
        display: grid;
        grid-template-columns: repeat(2, 50%);
        grid-template-rows: 1fr auto 1fr;
    }
    *[data-section="shopify-intro"] .shopify-intro-message {
        grid-row: 2;
        grid-column: 1;
        align-self: center;
    }
    *[data-section="shopify-intro"] .shopify-intro-message .swiper-pagination {
        margin: 0 !important;
        position: static !important;
        top: auto !important;
        bottom: auto !important;
        left: auto !important;
        right: auto !important;
        transform: none !important;
    }
    *[data-section="shopify-intro"] .shopify-intro-message .sc-container > *:not(:first-child),
    *[data-section="shopify-intro"] .shopify-intro-message .swiper-pagination-bullet:first-child {
        margin-top: var(--spacing-lg) !important;
    }
    *[data-section="shopify-intro"] .shopify-intro-cover {
        width: 50%;
        height: 100%;
        position: absolute;
        z-index: -1;
        right: 0;
        top: 0;
    }
    *[data-section="shopify-intro"] .shopify-intro-cover .sc-cover {
        position: -webkit-sticky;
        position: sticky;
        top: 0;
        right: 0;
    }
    *[data-section="shopify-intro"] .shopify-intro-cover .sc-cover .object-fit::before {
        height: 100lvh;
    }
    *[data-section="shopify-intro"] .shopify-intro-client {
        grid-row: 3;
        grid-column: 1 / span 2;
        align-self: flex-end;
    }
}

@media (max-width: 1024px) and (orientation: portrait) {
    :root {
        --font-size-xs: 1.3vw;
        --font-size-sm: 1.4vw;
        --font-size-md: 1.8vw;
        --font-size-lg: 2.6vw;
        --font-size-h6: 2.9vw;
        --font-size-h5: 4.2vw;
        --font-size-h4: 4.4vw;
        --font-size-h3: 4.9vw;
        --font-size-h2: 6.3vw;
        --font-size-h1: 7.8vw;
        --font-size-xl: 9.1vw;
        --font-size-xxl: 10.9vw;

        --spacing-xxs: 0.7vw;
        --spacing-xxs-minus: -0.7vw;
        --spacing-xs: 1.3vw;
        --spacing-xs-minus: -1.3vw;
        --spacing-sm: 2.6vw;
        --spacing-sm-minus: -2.6vw;
        --spacing-md: 5.2vw;
        --spacing-md-minus: -5.2vw;
        --spacing-lg: 10.4vw;
        --spacing-lg-minus: -10.4vw;

        --input-height: 6.5vw;
    }

    .hidden-device-portrait {
        display: none !important;
    }
    .padding-top-0-device-portrait {
        padding-top: 0 !important;
    }

    .a-center-device-portrait {
        text-align: center;
    }

    /* General */
    .container,
    .container.md,
    .container.sm {
        max-width: calc(100% - var(--spacing-md));
    }

    .logosvg {
        width: var(--spacing-md);
    }

    /* Form */
    .field.type-flex .cta .button {
        min-width: 0;
    }

    /* Header */
    .header-brand #logo_threejs {
        --size: calc(var(--spacing-md) * 2);
    }

    .header-menu-enabled {
        overflow: hidden !important;
    }

    /* Footer */
    .footer-nav {
        padding-bottom: var(--spacing-sm);
    }
    .footer-nav > *:not(:last-child),
    .footer-nav .legal > *:not(:last-child) {
        margin-bottom: var(--spacing-md);
    }
    .footer-nav .directory > *:not(:last-child) {
        margin-bottom: var(--spacing-xs);
    }
    .footer-nav .menu > li:not(:last-child) {
        margin-bottom: calc(var(--spacing-xxs) - 0.2em);
    }
    .footer-nav .menu > li:not(:last-child):after {
        display: none;
    }
    .footer-nav .menu {
        flex-direction: column;
    }
    .footer-nav .menu > li {
        width: -webkit-max-content;
        width: -moz-max-content;
        width: max-content;
        max-width: 100%;
    }
    .footer-nav .menu > li[data-hover]:before {
        content: attr(data-hover);
        position: static;
        width: auto;
        height: auto;
        display: inline-block;
        vertical-align: middle;
        opacity: 1 !important;
        pointer-events: auto;
        margin-right: var(--spacing-xs);
    }
    .footer-nav .menu > li[data-hover]:hover > a {
        opacity: 0.2;
    }
    .footer-nav .legal {
        text-align: center;
        display: block;
        width: 100%;
    }
    .footer-nav .copyright.marquee-container .marquee3k__copy {
        padding: 0 var(--spacing-sm);
    }

    /* Filter */
    .fn-container {
        grid-gap: 0 var(--spacing-sm);
    }
    .fn-container .fn {
        max-width: 100%;
    }
    .fn-container.portrait-change .fn {
        grid-column: auto !important;
        justify-self: normal !important;
    }

    .categories-wrapper.calc {
        grid-template-columns: 100%;
        grid-gap: var(--spacing-xxs) 0;
    }

    /* Section */
    .sc-gallery {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    .sc-gallery > *:not(:last-child) {
        margin-bottom: var(--spacing-sm);
    }

    .sc-layout {
        grid-template-columns: 100%;
        grid-gap: var(--spacing-md) 0;
    }
    .sc-layout > * {
        grid-column: auto !important;
    }

    .sc-grid-row.re-h-auto {
        min-height: 0;
    }
    .sc-grid-row.re-h-md {
        min-height: 125vw;
    }

    .sc-billboard-flex {
        flex-direction: column;
    }

    /* Modules */
    .client-wrapper .client img {
        max-height: 144px;
    }

    .work.c-black .video video {
        background-color: rgba(0, 0, 0, 0.4);
    }

    .work-featured {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    .work-featured .work:not(:last-child) {
        margin-bottom: 0;
    }
    .work-featured .work .marquee-container {
        position: absolute;
        z-index: 1;
        left: 0;
        bottom: 0;
        width: 100%;
        height: auto;
        padding: var(--spacing-sm) 0;
    }
    .work-featured .work .marquee-container .entry-title {
        padding: 0 calc(var(--spacing-sm) * 3);
    }

    .work-featured .work .scene {
        /* display: none !important; */
        align-items: flex-end;
    }
    .work-featured .work[class*="c-"] .scene {
        color: inherit !important;
        mix-blend-mode: normal !important;
    }
    .work-featured .work .scene .meta {
        position: static;
        width: 100%;
        padding: var(--spacing-sm);
    }
    .work-featured .work .scene .entry-title {
        font-size: var(--font-size-h2);
        margin-bottom: 0;
    }
    .work-featured .work .scene .entry-desc {
        display: none !important;
    }

    .work-container,
    .blog-container {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
        grid-template-columns: repeat(3, 1fr);
        grid-gap: var(--spacing-md) 0;
    }
    .work-container .meta,
    .blog-container .meta {
        padding-left: var(--spacing-sm);
        padding-right: var(--spacing-sm);
    }

    /* *[data-section="work-grid"] .work-container {
        grid-template-columns: repeat(2, 1fr);
        grid-gap: 0;
    }
    *[data-section="work-grid"] .work-container .work {
        z-index: 1;
    }
    *[data-section="work-grid"] .work-container .work > *:not(:last-child),
    *[data-section="work-grid"] .work-container .work .meta > *:not(:last-child) {
        margin-bottom: 0 !important;
    }
    *[data-section="work-grid"] .work-container .work .meta {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 3;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 3px;
        padding-bottom: var(--spacing-xs);
    }
    *[data-section="work-grid"] .work-container .work .meta .entry-category {
        display: none !important;
    }
    *[data-section="work-grid"] .work-container .work:before {
        content: "";
        width: 100%;
        height: 25%;
        display: block;
        position: absolute;
        z-index: 2;
        bottom: 0;
        left: 0;
        right: 0;
        pointer-events: none;
    }
    *[data-section="work-grid"] .work-container .work.c-black:before {
        background: linear-gradient(0deg, rgba(255, 255, 255, 0.75) 0%, rgba(255, 255, 255, 0) 100%);
    }
    *[data-section="work-grid"] .work-container .work.c-white:before {
        background: linear-gradient(0deg, rgba(0, 0, 0, 0.75) 0%, rgba(0, 0, 0, 0) 100%);
    } */

    .billboard-animate .sc-cover .object-fit:before {
        padding-bottom: 0%;
        height: 100vh;
        height: calc(var(--vh, 1vh) * 100);
    }

    .team-container {
        font-size: var(--font-size-h5);
    }
    .team-container .letters {
        white-space: nowrap;
    }

    .tutorial-container {
        grid-template-columns: 100%;
        grid-gap: var(--spacing-sm) 0;
    }
    .tutorial {
        flex-direction: row;
        text-align: left;
    }
    .tutorial > *:not(:last-child) {
        margin-bottom: 0;
        margin-right: var(--spacing-xs);
    }
    .tutorial .object-fit {
        width: 36.72vw;
    }

    .post .entry-cover {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }

    #single-blog .entry-content > *:not([class*="wp-block"]) {
        max-width: none;
    }
    #single-blog .entry-content > *[class*="wp-block"] {
        width: 100vw;
        max-width: 100vw;
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    #single-blog .entry-content * + [class*="wp-block-"],
    #single-blog .entry-content [class*="wp-block-"] + * {
        margin-top: var(--spacing-sm);
    }

    .us-service.sc-billboard {
        background: none !important;
        color: #000 !important;
    }
    .us-service.sc-billboard > .sc-inner {
        padding-top: var(--spacing-sm);
    }
    .us-service.sc-billboard > .sc-cover {
        position: relative;
        top: auto;
        bottom: auto;
        left: auto;
        right: auto;
        width: 100%;
        aspect-ratio: 344/430;
    }
    .us-main > *[data-section="service"]:not(:last-child) .us-service.sc-billboard:last-child > .sc-inner:last-child {
        padding-bottom: 0;
    }

    .team-container > li .name-position > em {
        display: block;
    }

    #main.contact-main {
        overflow: visible;
    }
    *[data-section="contact-info"] .sc-billboard > .sc-cover {
        opacity: 0.8;
    }
    *[data-section="contact-info"] .sc-billboard .sc-column:first-child {
        min-height: calc(100svh - (var(--spacing-lg) + var(--header-height, 0px)) - var(--gap-y));
        display: flex;
        flex-direction: column;
        justify-content: flex-end;
    }
    *[data-section="contact-info"] [contact-cta] {
        position: -webkit-sticky;
        position: sticky;
        z-index: 10;
        bottom: calc(var(--spacing-md) / 2);
        left: 0;
        right: 0;
    }
    *[data-section="contact-info"] [contact-cta] .button {
        width: 100%;
        font-size: var(--font-size-md);
    }

    /* Page: Shopify */
    #logo-shopify-x-plaimanas {
        width: min(47vw, 410px);
    }
    *[data-section="shopify-featured"] .shopify-featured-title > li:before {
        transform: translateY(-50%) rotate(-90deg);
    }
    *[data-section="shopify-featured"] .sc-tiles > .sc-tile-content:not(:last-child) > .sc-inner {
        padding-bottom: var(--spacing-md);
    }
    *[data-section="shopify-featured"] .sc-tiles > .sc-tile-content:not(:first-child) > .sc-inner {
        padding-top: var(--spacing-md);
    }
    *[data-section="shopify-featured"] .a-center-device-portrait .buttons {
        margin-left: auto;
        margin-right: auto;
    }
    *[data-section="shopify-featured"] .buttons > .button:only-child {
        grid-column: span 2;
    }
    *[data-section="shopify-featured"] .sc-inner.move-on-resize {
        padding-bottom: 0;
    }
    *[data-section="shopify-featured"] ~ [data-section="shopify-project"] {
        padding-top: calc(var(--spacing-lg) - var(--spacing-sm));
    }
    #main.shopify-main {
        padding-bottom: calc(var(--spacing-lg) - var(--spacing-md) - var(--spacing-sm));
    }
}

@media (max-width: 575px) and (orientation: portrait) {
    :root {
        --font-size-xs: 2.3vw;
        --font-size-sm: 2.4vw;
        --font-size-md: 3.3vw;
        --font-size-lg: 4.7vw;
        --font-size-h6: 5.1vw;
        --font-size-h5: 7.5vw;
        --font-size-h4: 7.9vw;
        --font-size-h3: 8.9vw;
        --font-size-h2: 11.2vw;
        --font-size-h1: 13.2vw;
        --font-size-xl: 16.4vw;
        --font-size-xxl: 19.6vw;

        --spacing-xxs: 1.2vw;
        --spacing-xxs-minus: -1.2vw;
        --spacing-xs: 2.3vw;
        --spacing-xs-minus: -2.3vw;
        --spacing-sm: 4.7vw;
        --spacing-sm-minus: -4.7vw;
        --spacing-md: 9.3vw;
        --spacing-md-minus: -9.3vw;
        --spacing-lg: 18.7vw;
        --spacing-lg-minus: -18.7vw;

        --input-height: 11.7vw;
    }

    .hidden-mobile-portrait {
        display: none !important;
    }
    .padding-top-0-mobile-portrait {
        padding-top: 0 !important;
    }

    .a-left-mobile {
        text-align: left !important;
    }
    .a-right-mobile {
        text-align: right !important;
    }
    .a-center-mobile {
        text-align: center !important;
    }

    /* Filter */
    .fn-container.portrait-change {
        grid-template-columns: 100%;
        grid-gap: var(--spacing-sm) 0;
    }

    /* Modules */
    .client-wrapper .client > img {
        height: 23.4vw;
        min-width: 21vw;
    }

    .work-container,
    .blog-container {
        grid-template-columns: 100%;
    }

    .billboard-animate .sc-heading {
        font-size: var(--font-size-h2);
    }

    .contact-box {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        min-height: var(--input-height);
        padding: var(--spacing-xs);
    }
    .contact-box > *:not(:first-child) {
        margin-left: 0;
        margin-top: var(--spacing-xxs);
    }
    .contact-box.type-call .entry-desc {
        display: none;
    }

    /* Page: Shopify */
    *[data-section="shopify-featured"] .buttons {
        width: 100%;
        grid-template-columns: 100%;
    }
    *[data-section="shopify-featured"] .buttons > .button:only-child {
        grid-column: unset;
    }
}

@media (min-width: 1441px) {
    *[data-section="work-grid"] .work-container > .work {
        width: calc(100% / 5);
    }
}

/*=== COOKIE LAW ===*/
#cookie-law-info-bar {
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    min-height: 0 !important;
    margin: 0 auto !important;
    padding: 20px var(--spacing-md) !important;
    position: fixed !important;
    z-index: 99 !important;
    bottom: 0 !important;
    left: 0 !important;
    right: 0 !important;
    box-shadow: none !important;
    border: 0 !important;
    background: #000 !important;
    color: #fff !important;
    font-size: 14px !important;
    line-height: inherit !important;
    text-transform: none !important;
    text-align: left !important;
}
@supports ((-webkit-backdrop-filter: none) or (backdrop-filter: none)) {
    #cookie-law-info-bar {
        background: rgba(0, 0, 0, 0.15) !important;
        -webkit-backdrop-filter: saturate(100%) blur(50px) !important;
        backdrop-filter: saturate(100%) blur(50px) !important;
    }
}
#cookie-law-info-bar > span,
#cookie-law-info-bar .cli-bar-container {
    display: block !important;
}
#cookie-law-info-bar .cli-bar-container {
    position: relative;
}
#cookie-law-info-bar .cli-bar-message a,
#cookie-law-info-bar .cli-plugin-main-link,
#cookie-law-info-bar .cli-bar-btn_container > *,
#cookie-law-info-bar > span > a:not(.cli-plugin-button) {
    text-decoration: underline !important;
    display: inline !important;
    font-size: inherit;
    line-height: inherit;
    text-transform: inherit;
    white-space: nowrap;
    color: inherit !important;
}
#cookie-law-info-bar .cli-bar-message a:hover,
#cookie-law-info-bar .cli-plugin-main-link:hover,
#cookie-law-info-bar .cli-bar-btn_container > *:hover,
#cookie-law-info-bar > span > a:not(.cli-plugin-button):hover {
    color: #fff !important;
}
#cookie-law-info-bar .cli-bar-btn_container {
    margin: 0;
    width: 275px;
    max-width: 100%;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 12px;
    text-transform: uppercase;
    position: static;
}
#cookie-law-info-bar .cli-bar-btn_container > * {
    margin: 0 !important;
}
#cookie-law-info-bar .cli-bar-btn_container #cookie_action_close_header,
#cookie-law-info-bar > span > #cookie_action_close_header {
    text-decoration: none !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    width: 100%;
    max-width: 100%;
    height: 35px;
    padding: 0 20px;
    color: #fff !important;
    border: 1px solid #fff !important;
    background: none !important;
    font-size: inherit;
    font-weight: inherit;
    text-transform: uppercase;
}
#cookie-law-info-bar .cli-bar-btn_container #cookie_action_close_header:hover,
#cookie-law-info-bar > span > #cookie_action_close_header:hover {
    color: #000 !important;
    border-color: #fff !important;
    background: #fff !important;
}
#cookie-law-info-bar .cli-bar-btn_container #cookie_action_close_header_reject,
#cookie-law-info-bar .cli-bar-btn_container .cli_settings_button {
    font-size: 12px;
    margin: 15px 15px 0;
}
@media (min-width: 992px) {
    #cookie-law-info-bar .cli-bar-container {
        display: flex !important;
        align-items: center;
        justify-content: space-between;
    }
    #cookie-law-info-bar .cli-bar-container > *:not(:last-child) {
        margin-right: 40px;
    }
    #cookie-law-info-bar .cli-bar-btn_container {
        margin-top: 0 !important;
    }
    #cookie-law-info-bar > span {
        position: relative;
        padding-right: calc(275px + var(--spacing-md));
    }
    #cookie-law-info-bar > span > #cookie_action_close_header {
        width: 275px;
        margin: 0 !important;
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
    }
}
@media (max-width: 991px) {
    #cookie-law-info-bar {
        text-align: center !important;
    }
    #cookie-law-info-bar .cli-bar-btn_container,
    #cookie-law-info-bar > span > #cookie_action_close_header {
        width: 100%;
        margin: 20px 0 0 !important;
    }
    #cookie-law-info-bar .cli-bar-btn_container #cookie_action_close_header {
        margin: 0 auto;
    }
}

/*=== Other ===*/
#jp-relatedposts {
    display: none !important;
}
