/* FONTS */
@font-face {
    font-family: 'Manrope';
    src: url('../font/Manrope/Manrope-Regular.eot');
    src: url('../font/Manrope/Manrope-Regular_-iefix.eot') format('embedded-opentype'),
         url('../font/Manrope/Manrope-Regular.woff') format('woff2'),
         url('../font/Manrope/Manrope-Regular.woff') format('woff'),
         url('../font/Manrope/Manrope-Regular.ttf') format('truetype'),
         url('../font/Manrope/Manrope-Regular.svg') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Manrope';
    src: url('../font/Manrope/Manrope-Medium.eot');
    src: url('../font/Manrope/Manrope-Medium_-iefix.eot') format('embedded-opentype'),
         url('../font/Manrope/Manrope-Medium.woff') format('woff2'),
         url('../font/Manrope/Manrope-Medium.woff') format('woff'),
         url('../font/Manrope/Manrope-Medium.ttf') format('truetype'),
         url('../font/Manrope/Manrope-Medium.svg') format('svg');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'iconfont';
    src: url('../font/iconfont/iconfont.eot');
    src: url('../font/iconfont/iconfont.eot') format('embedded-opentype'),
         url('../font/iconfont/iconfont.ttf') format('truetype'),
         url('../font/iconfont/iconfont.woff') format('woff'),
         url('../font/iconfont/iconfont.svg') format('svg');
    font-weight: normal;
    font-style: normal;
}
.ic {
    font-family: 'iconfont' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.ic-close:before {
    content: "\e900";
}
.ic-arrow-left:before {
    content: "\e901";
}
.ic-arrow-right:before {
    content: "\e902";
}
.ic-arrow-up:before {
    content: "\e903";
}
.ic-arrow-down:before {
    content: "\e904";
}
.ic-arrow-up-right:before {
    content: "\e905";
}
.ic-info:before {
    content: "\e906";
}
.ic-caret-left:before {
    content: "\e907";
}
.ic-caret-right:before {
    content: "\e908";
}
.ic-caret-up:before {
    content: "\e909";
}
.ic-caret-down:before {
    content: "\e90a";
}


/* RESET */
:root {
    --color-body-bg: #000000;
    --color-body: #ffffff;
    --color-gray: #808080;
    --font-size-2xs: 10px;
    --font-size-xs: 12px;
    --font-size-sm: 14px;
    --font-size-md: 16px;
    --font-size-lg: 18px;
    --font-size-xl: 20px;
    --font-size-2xl: 30px;
    --font-size-3xl: 40px;
    --icon-size: 30px;
    --line-height-xs: 1;
    --line-height-sm: 1.2;
    --line-height-md: 1.6;
    --spacing-3xs: 5px;
    --spacing-2xs: 10px;
    --spacing-xs: 15px;
    --spacing-sm: 20px;
    --spacing-md: 25px;
    --spacing-lg: 50px;
    --font-body: 'Manrope', sans-serif;
    --weight-regular: normal;
    --weight-bold: 500;
    --font-size-body: var(--font-size-md);
    --line-height-body: var(--line-height-md);
    --spacing-container: var(--spacing-lg);
    --logo-height: 34px;
    --header-height: calc(var(--logo-height) + var(--spacing-container)*2);
    --cta-shadow: 0 -0.5px 0 0 inset;
    --duration: .3s;
    --duration-x2: .8s;
}

::-webkit-scrollbar {
    width: 0px;
    overflow: hidden;
}

::-moz-selection {
    background: var(--color-body);
    color: var(--color-body-bg);
}
::selection {
    background: var(--color-body);
    color: var(--color-body-bg);
}

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

article, aside, figcaption, figure, picture, footer, header, hgroup, main, nav, section {
    display: block;
}
html {
    font-family: sans-serif;
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
}
body {
    margin: 0;
    width: 100%;
    height: 100vh;
    height: calc(var(--vhFlexible, 1vh) * 100);
    overflow: hidden;
    position: relative;
    background: var(--color-body-bg);
    color: var(--color-body);
    opacity: 0;
    will-change: opacity;
    transition: opacity 1.3s;
}
h1, h2, h3, h4, h5, h6 {
    margin: 0;
    font: inherit;
    line-height: inherit;
    color: inherit;
}
p {
    margin: 0;
}
strong {
    font-weight: var(--weight-bold);
}
address {
    font-style: normal;
}
ul,ol {
    list-style: none;
}
ul,ol,li {
    margin: 0;
    padding: 0;
}
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;
}
button {
    -webkit-appearance: none;
    box-shadow: none;
    outline: 0;
    border-radius: 0;
    border: 0;
    background: none;
    padding: 0;
    margin: 0;
    min-width: 0;
    font: inherit;
    line-height: inherit;
    text-transform: inherit;
    text-align: inherit;
    letter-spacing: inherit;
    text-indent: inherit;
    color: inherit;
}
img {
    border: 0;
    outline: 0;
    height: auto;
    width: auto;
    max-width: 100%;
    vertical-align: middle;
}
figure {
    margin: 0;
}
table {
    width: 100%;
    border-collapse: collapse;
}
th,td {
    font-weight: inherit;
    text-align: inherit;
}
iframe {
    border: 0;
}
[tabindex="-1"]:focus {
    outline: 0 !important;
}


/* TRANSITION */
a, 
button, 
img, 
video,
.container {
    transition: var(--duration);
}


/* TEXT STYLE */
body {
    font-family: var(--font-body);
    font-size: var(--font-size-body);
    line-height: var(--line-height-body);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.size-3xs {
    font-size: var(--font-size-3xs);
}
.size-xs {
    font-size: var(--font-size-xs);
}
.size-sm {
    font-size: var(--font-size-sm);
}
.size-md {
    font-size: var(--font-size-md);
}
.size-lg {
    font-size: var(--font-size-lg);
}
.size-xl {
    font-size: var(--font-size-xl);
    line-height: var(--line-height-sm);
}
.size-2xl {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-sm);
}
.size-3xl {
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-sm);
}


/* CTA */
html.no-touchevents a:hover {
    color: var(--color-gray);
}

.link-overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 10;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 0;
}

.explore {
    display: inline-flex;
    align-items: baseline;
    font-size: var(--font-size-3xl);
    line-height: var(--line-height-sm);
}
.explore > * {
    display: inline-block;
    vertical-align: top;
}
.explore > *:not(:first-child) {
    margin-left: var(--spacing-sm);
}
.explore > .ic {
    font-size: 56%;
}


/* GENERAL */
.container {
    width: 100%;
    padding-left: var(--spacing-container);
    padding-right: var(--spacing-container);
    padding-left: max(var(--spacing-container),env(safe-area-inset-left));
    padding-right: max(var(--spacing-container),env(safe-area-inset-right));
}

.object,
.object-fit {
    display: block;
    overflow: hidden;
    position: relative;
}
.object > * {
    display: block;
    width: 100%;
    margin: auto;
}
.object-fit > * {
    display: block;
    margin: 0 auto;
    width: calc(100% + 1px);
    height: calc(100% + 1px);
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    position: absolute;
    top: 0; 
    left: 0;
}
.object-fit:before {
    content: "";
    display: block;
    width: 100%;
}
.object-overlay {
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    z-index: 1;
    top: 0; 
    bottom: 0;
    left: 0;
    right: 0;
}

.entry-content > *:not(:first-child) {
    margin-top: var(--spacing-sm);
}


/* HEADER */
#header {
    width: 100%;
    position: fixed;
    z-index: 100;
    top: 0;
    left: 0;
    pointer-events: none;
}
#header a,
#header button {
    pointer-events: auto;
}

.h-nav {
    display: grid;
    grid-template-columns: auto auto;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    height: var(--header-height);
}

.h-brand {
    grid-row: 1;
    grid-column: 1;
}
.h-brand .brand {
    display: inline-block;
    vertical-align: top;
    line-height: 1;
}
.h-brand .brand .logo {
    display: block;
    width: auto;
    height: var(--logo-height);
}

.h-info {
    grid-row: 1;
    grid-column: 2;
}
.h-info .ctrl {
    display: inline-block;
    vertical-align: top;
    line-height: 1;
}
.h-info .ctrl .ic {
    font-size: var(--icon-size);
    vertical-align: top;
}


/* PAGE */
#page {
    width: 100%;
    height: 100%;
    overflow: hidden;
    padding-top: var(--header-height);
    background-color: #000;
    background-image: linear-gradient(180deg, #040404, #080808), linear-gradient(180deg, #000, #080808);
    background-repeat: no-repeat;
    background-size: cover;
}

#main {
    position: relative;
    width: 100%;
    height: 100%;
}

/* PLUGIN:POPUP */
[class*="open-popup-"] {
    cursor: pointer;
}
.mfp-bg, 
.mfp-content {
    transition: var(--duration);
    opacity: 0;
}
.mfp-bg {
    background: var(--color-body-bg);
    z-index: 9998;
}
.mfp-bg.mfp-ready {
    opacity: 0.9;
}
.mfp-bg.mfp-removing {
    opacity: 0;
}
.mfp-wrap {
    z-index: 9999;
}
.mfp-wrap.mfp-ready .mfp-content {
    opacity: 1;
}
.mfp-wrap.mfp-removing .mfp-content {
    opacity: 0;
}
.mfp-container {
    padding: 0;
    position: fixed;
    max-height: 100%;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
}
.mfp-zoom-out-cur {
    cursor: default;
}
button.mfp-close,
button.mfp-close:active,
.modal-dismiss,
.mfp-iframe-holder .mfp-close, 
.mfp-image-holder .mfp-close {
    font-family: inherit;
    font-size: 0;
    line-height: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    width: auto;
    height: auto;
    padding: 0;
    opacity: 1 !important;
    color: inherit !important;
    background: none !important;
    border-radius: 0;
    overflow: hidden;
    position: fixed;
    z-index: 10;
    bottom: auto;
    left: auto;
    top: var(--spacing-container);
    right: var(--spacing-container);
    right: max(var(--spacing-container),env(safe-area-inset-right));
}
button.mfp-close:hover,
.modal-dismiss:hover,
.mfp-iframe-holder .mfp-close:hover, 
.mfp-image-holder .mfp-close:hover {
    color: inherit !important;
    background: none !important;
}
html.no-touchevents button.mfp-close:hover,
html.no-touchevents .modal-dismiss:hover,
html.no-touchevents .mfp-iframe-holder .mfp-close:hover, 
html.no-touchevents .mfp-image-holder .mfp-close:hover {
    color: var(--color-gray) !important;
}
button.mfp-close:before,
.modal-dismiss:before {
    font-family: 'iconfont';
    content: "\e900";
    font-size: var(--icon-size);
    font-weight: normal;
    line-height: 1;
    color: inherit;
    display: block;
    width: auto;
    height: auto;
    padding: 0;
    overflow: hidden;
}


/* PLUGIN:SLIDER */
.swiper-container {
    width: 100%;
}
.swiper-wrapper {
    will-change: transform;
}

[class*="swiper-button-"] {
    outline: none;
    margin: 0;
    padding: var(--spacing-md) max(var(--spacing-container),env(safe-area-inset-right));
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: auto;
    height: 100%;
    border-radius: 0;
    overflow: visible;
    color: inherit;
    line-height: 1;
    position: absolute;
    z-index: 10;
    top: 50%;
    transform: translateY(-50%);
    transition: var(--duration);
    cursor: pointer;
}
html.no-touchevents [class*="swiper-button-"]:hover {
    color: var(--color-gray);
}
.swiper-button-prev {
    left: 0;
}
.swiper-button-next {
    right: 0;
}
[class*="swiper-button-"]:after {
    font-family: 'iconfont';
    font-size: var(--icon-size);
    color: inherit;
    opacity: 1;
    position: relative;
}
.swiper-button-prev:after {
    content: "\e907";
}
.swiper-button-next:after {
    content: "\e908";
}
.swiper-button-disabled {
    opacity: 0 !important;
}
.swiper-container.fix [class*="swiper-button-"] {
    top: 0 !important;
    transform: none !important;
}


/* SCREEN */
.aw-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
}
.aw-container > * {
    width: 100%;
}
.aw-container > .aw-screen {
    flex: 1;
    display: flex;
    align-items: center;
}

.aw-screen {
    position: relative;
}
.aw-screen .aw {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}
.aw-screen .aw .cover {
    width: 100%;
}
.aw-screen .aw .scene {
    position: relative;
    height: -webkit-max-content;
    height: -moz-max-content;
    height: max-content;
    width: -webkit-max-content;
    width: -moz-max-content;
    width: max-content;
    max-width: 70%;
    margin: 0 auto;
    cursor: pointer;
}
.aw-screen .aw .scene > .object-fit {
    width: 96%;
    height: 96%;
    border-radius: 50vw 50vw 0 0;
    overflow: hidden;
    position: absolute;
    z-index: 0;
    top: 50%;
    left: 50%;
    pointer-events: none;
    transform: translate(-50%,-50%);
    will-change: opacity, transform;
}
.aw-screen .aw .scene > .object-fit:before {
    height: 100%;
}
.aw-screen .aw .scene > .object-fit > video {
    opacity: 0;
}
.aw-screen .aw .frame {
    position: relative;
    z-index: 1;
    display: block;
    margin: 0 auto;
    width: 240px;
    width: initial; /* FIX SAFARI */
    max-width: 100%;
    max-height: 60vh;
    -o-object-fit: contain;
    object-fit: contain;
    will-change: opacity, transform;
    pointer-events: none;
}
.aw-screen .swiper-container {
    overflow: visible;
    padding: 0 var(--spacing-container);
    cursor: default !important;
}
.aw-screen .swiper-slide {
    width: calc(100%/5) !important;
    height: auto !important;
    cursor: default;
}
.aw-screen .swiper-slide .aw .link-overlay {
    z-index: -1;
    pointer-events: none;
    transition-delay: 1s;
}
.aw-screen .swiper-slide.current .aw .link-overlay {
    z-index: 10;
    pointer-events: auto;
}
.aw-screen .swiper-slide-active .aw .scene > .object-fit > video {
    opacity: 1;
    transition-delay: 0.4s;
}
.aw-screen *[class*="swiper-gradient"] {
    height: 100vh;
    height: calc(var(--vhFlexible, 1vh) * 100);
    position: fixed;
    z-index: 1;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.aw-screen .swiper-gradient {
    width: 100%;
    left: 0;
    right: 0;
    /* background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 20%, transparent 50%, rgba(0, 0, 0, 0.65) 80%); */
    background-image: linear-gradient(90deg, rgba(0,0,0,1) 0%, rgba(0,0,0,0.65) 10%, transparent 50%, rgba(0,0,0,0.65) 90%, rgba(0,0,0,1) 100%);
    
}
.aw-screen .swiper-gradient-prev,
.aw-screen .swiper-gradient-next {
    width: calc((100%/5)*2 + var(--spacing-container)*2);
}
.aw-screen .swiper-gradient-prev {
    left: 0;
    right: auto;
    background-image: linear-gradient(90deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}
.aw-screen .swiper-gradient-next {
    left: auto;
    right: 0;
    background-image: linear-gradient(270deg, rgba(0,0,0,0.9) 0%, rgba(0,0,0,0) 100%);
}
.aw-screen .swiper-floor {
    display: block;
    height: auto;
    width: 100%;
    margin: 0 auto;
    position: absolute;
    z-index: 0;
    top: 100%;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    pointer-events: none;
}
.aw-screen .swiper-floor .floor {
    display: block;
    width: 100%;
    -webkit-box-reflect: below -1px linear-gradient(to bottom, rgba(0,0,0,0.0), rgba(0,0,0,1));
}
.aw-screen .swiper-floor .floor img {
    display: block;
    width: 100%;
    height: auto;
    -webkit-mask-box-image: -webkit-linear-gradient(-90deg, transparent 0%, white var(--spacing-2xs));
}
.aw-screen .swiper-floor .floor[data-aw] {
    display: none;
}

.aw-desc {
    position: relative;
    z-index: 1;
    text-align: center;
}
.aw-desc .aw .caption {
    width: 100%;
    padding: var(--spacing-sm) var(--spacing-container) var(--spacing-container);
    position: relative;
    z-index: 3;
}
.aw-desc .aw .entry-title {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-sm);
}
.aw-desc .aw .entry-explore {
    color: var(--color-gray);
    margin-top: 0.25em;
}
.aw-desc .aw .entry-explore a {
    box-shadow: var(--cta-shadow);
    color: inherit;
}
html.no-touchevents .aw-desc .aw .entry-explore a:hover {
    color: var(--color-body);
}
.aw-desc .aw-desc-space {
    opacity: 0 !important;
    pointer-events: none !important;
}
.aw-desc .aw[data-aw] {
    width: 100%;
    height: auto;
    position: absolute;
    z-index: 1;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: none;
}

.aw-screen .swiper-wrapper {
    transition-timing-function: ease-in-out !important;
}
.aw-desc .aw[data-aw] > *,
.aw-screen .swiper-floor .floor[data-aw] > *{
    opacity: 0;
    transition: 1650ms cubic-bezier(0.33, 1, 0.68, 1);
}
.aw-desc .aw[data-aw].enabled > *,
.aw-screen .swiper-floor .floor[data-aw].enabled > * {
    opacity: 1;
}


/* PLAYER */
#player {
    position: fixed;
    top: 100%;
    left: 50%;
    transform: translate(-50%,0%);
}
#player iframe {
    background: #000;
}
.player-loader,
.player-loader .loader {
    display: block;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    line-height: 1;
    will-change: opacity, transform;
}
.player-loader {
    position: absolute;
    z-index: 99;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    border: 3px solid rgba(255,255,255,0.3);
    transition: var(--transition);
    pointer-events: none;
    opacity: 0;
}
.player-loader.loading {
    opacity: 1;
}
.player-loader .loader {
    position: absolute;
    top: 50%;
    left: 50%;
    display: block;
    width: 100px;
    height: 100px;
    border: 3px solid #FFF;
    border-bottom-color: transparent;
    -webkit-animation: rotation 1s linear infinite;
    animation: rotation 1s linear infinite;
}
@-webkit-keyframes rotation {
    0% { transform: translate(-50%,-50%) rotate(0deg);}
    100% { transform: translate(-50%,-50%) rotate(360deg);}
}
@keyframes rotation {
    0% { transform: translate(-50%,-50%) rotate(0deg);}
    100% { transform: translate(-50%,-50%) rotate(360deg);}
}


/* INFO */
.popup-info,
.popup-info .info-container,
.popup-info .info-block {
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.popup-info .info-container {
    display: flex;
}
.popup-info .info-block {
    flex: 1;
    position: relative;
    -webkit-mask-box-image: -webkit-linear-gradient(-90deg, transparent 0%, white var(--spacing-container));
}
.popup-info .info-wrap {
    width: 100%;
    height: 100%;
    overflow: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-mask-box-image: -webkit-linear-gradient(90deg, transparent 0%, white var(--spacing-container));
}
.popup-info .info-inner {
    padding: var(--spacing-container);
}
.popup-info .info-inner > *:not(:first-child) {
    margin-top: var(--spacing-container);
}
.popup-info .info-block:not(:last-child):after {
    content: "";
    display: block;
    width: 1px;
    height: calc(100% - var(--spacing-container)*2);
    background: #4d4d4d;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}
.popup-info .info-block:first-child .info-inner {
    padding-left: calc(var(--spacing-container)*2);
}
.popup-info .info-block:last-child .info-inner {
    padding-right: calc(var(--spacing-container)*2);
}
.popup-info .entry-header {
    min-height: -webkit-fit-content;
    min-height: -moz-fit-content;
    min-height: fit-content;
}
.popup-info .entry-header > *:not(:first-child) {
    margin-top: var(--spacing-2xs);
}
.popup-style-info .mfp-container {
    width: 100%;
    height: 100%;
    overflow: hidden;
    -webkit-overflow-scrolling: unset;
}
.popup-style-info .mfp-content {
    width: 100%;
    height: 100%;
    overflow: hidden;
}


/* GUIDE */
#guide {
    width: 100%;
    height: 100%;
    overflow: hidden;
    background: #000;
    position: fixed;
    z-index: 9999999999;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    display: none;
}

.guide-container {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr auto 1fr;
    grid-gap: var(--spacing-container) 0;
    text-align: center;
    padding: var(--spacing-container);
}
.guide-container .entry-icon {
    grid-row: 2;
    align-self: center;
    line-height: 1;
}
.guide-container .entry-icon img {
    display: inline-block;
    vertical-align: top;
    width: 33.3333333333%;
}
.guide-container .entry-content {
    align-self: flex-end;
    grid-row: 3;
}

@media (orientation:portrait) {

    html.is-device #guide {
        display: block;
    }

}

/* ADVICE */
.advice-background {
    display: block;
    width: 100%;
    height: 100%;
    position: fixed;
    z-index: 0;
    top: 0;
    left: 0;
    pointer-events: none;
}
.advice-background:before {
    height: 100%;
}
.advice-container {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: 1fr auto 1fr;
    grid-gap: var(--spacing-sm) 0;
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
}
.advice-container .entry-title {
    font-size: var(--font-size-2xl);
    line-height: var(--line-height-sm);
}
.advice-container .entry-icon {
    display: block;
    width: 74px;
    line-height: 1;
}
.advice-container .entry-icon > * {
    display: block;
    width: 100%;
    height: auto;
}
.advice-container .entry-explore {
    line-height: 1;
}
.advice-container .entry-explore .ic {
    display: block;
    font-size: var(--icon-size);
    transition: var(--duration);
}
.advice-header {
    grid-row: 1;
    align-self: center;
}
.advice-body {
    grid-row: 2;
    align-self: center;
}
.advice-body > .entry-content {
    width: 320px;
    max-width: 100%;
    min-width: 75%;
    margin-left: 0;
    margin-right: auto;
}
.advice-body > *:not(:first-child) {
    margin-top: var(--spacing-sm);
}
.advice-footer {
    grid-row: 3;
    align-self: end;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--spacing-sm) 0;
    border-top: 1px solid;
    color: inherit !important;
}



/* MEDIA QUERIES */
@media (orientation:portrait) {

    #page.advice-page {
        background-image: url('../img/advice-bg-p.jpg');
    }
    
}

@media (orientation:landscape) {

    #page.advice-page {
        background-image: url('../img/advice-bg-l.jpg');
        padding-top: var(--spacing-container);
    }

    .advice-container {
        width: 50%;
        margin-left: auto;
    }
    .advice-header {
        align-self: start;
    }

}

@media (max-width:1024px),
(orientation:landscape) and (max-height:700px) {
    
    :root {
        --spacing-container: var(--spacing-sm);
    }
    
}

@media (max-width:991px),
(orientation:landscape) and (max-width:991px),
(orientation:landscape) and (max-height:700px) {
    
    :root {
        --font-size-2xs: 8px;
        --font-size-xs: 10px;
        --font-size-sm: 12px;
        --font-size-md: 14px;
        --font-size-lg: 16px;
        --font-size-xl: 18px;
        --font-size-2xl: 20px;
        --font-size-3xl: 24px;
        --icon-size: 20px;
        --logo-height: 30px;
        --font-size-body: var(--font-size-sm);
    }
    .size-xl {
        line-height: inherit;
    }
    
}


@media (orientation:portrait) and (max-width:1024px) { 

    .popup-info .info-container {
        flex-direction: column;
    }
    .popup-info .info-inner {
        padding: var(--spacing-container) !important;
    }
    .popup-info .info-block:not(:last-child):after {
        height: 1px;
        width: calc(100% - var(--spacing-container)*2);
        margin: 0 auto;
        position: absolute;
        left: 0;
        right: 0;
        top: auto;
        bottom: 0;
        transform: translateY(-50%);
        pointer-events: none;
    }
    .popup-info .entry-header {
        height: auto !important;
    }

}


@media (orientation:portrait) and (max-width:991px) { 

    .aw-screen .swiper-slide {
        width: calc(100%/2) !important;
    }
    .aw-screen .swiper-gradient {
        background-image: linear-gradient(90deg, rgba(0, 0, 0, 0.65) 0%, transparent 33%, transparent 66%, rgba(0, 0, 0, 0.65) 100%);
    }
    .aw-screen .swiper-gradient-prev,
    .aw-screen .swiper-gradient-next {
        width: calc((50%/2) + var(--spacing-container)*2);
    }
    .aw-screen .swiper-floor {
        width: 220%;
    }

    #page.advice-page {
        font-size: var(--font-size-lg);
    }
    #page.advice-page {
        --font-size-2xl: 28px;
        --font-size-3xl: 30px;
    }

}


@media (orientation:landscape) and (max-width:991px),
(orientation:landscape) and (max-height:700px) { 

    :root {
        --icon-size: 20px;
        --logo-height: 17px;
    }

}

@media (orientation:landscape) and (max-height:700px) { 
    
    .aw-screen .aw .frame {
        max-height: 50vh;
    }

    .aw-desc .aw .caption,
    .aw-desc .aw .entry-title small {
        font-size: var(--font-size-xs);
    }
    .aw-desc .aw .entry-title {
        font-size: var(--font-size-md);
    }

}


/* FIX:STYLE */
.a-left { text-align: left !important;}
.a-right { text-align: right !important;}
.a-center { text-align: center !important;}
.hidden { display: none !important;}

html.is-device.is-chrome,
html.is-device.is-chrome body, 
html.is-device.is-chrome #page {
    min-height: -webkit-fill-available;
}

#page {
    -webkit-user-select: none !important;
    -moz-user-select: none !important;
    -ms-user-select: none !important;
    user-select: none !important;
}