/* noto sans */
@font-face {
    font-family: 'NS';
    font-display: swap;
    src: local('Noto Sans CJK KR'), local('NotoSansCJKkr-Regular'), url('../fonts/NotoSans-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'NS';
    font-display: swap;
    src: local('Noto Sans CJK KR'), local('NotoSansCJKkr-Medium'), url('../fonts/NotoSans-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
}

@font-face {
    font-family: 'CM';
    font-display: swap;
    src: local('Cormorant Garamond Medium'), local('CormorantGaramond-Medium'), url('../fonts/CormorantGaramond-Medium.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ----------GLOBAL STYLES------------ */

:root {
    /* (fullwidth - left padding - right padding) divide into grids of 6 and multiply into 4 */
    /* --single-grid: calc((100vw - 80px - 80px) / 6); */

    /* content area is 100vw minus 80px on both sides. while single grid is 1/10 of content area */
    --single-grid: calc((100vw - 80px - 80px) / 10);
    --side-gutter: 80px;
}

* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    word-break: keep-all;

    /* -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; */
}

.isIE11 .scroller-proxy {
    height: auto;
    overflow: hidden;
}

html {
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: transparent;
    outline: none;
}

html,
body {
    overscroll-behavior: none;
}
body {
    background-color: white;
    font-size: 14px;
    font-weight: 500;
    font-family: 'CM', 'sans-serif';
    /* letter-spacing: -0.02em; */
    transition: 0.5s background-color ease-in-out;
}
body.no-overflow {
    overflow: hidden !important;
}
body.bg-blue {
    background-color: #98afc7;
}
ul,
li {
    list-style: none;
    padding: 0;
    margin: 0;
}

a {
    text-decoration: none;
    color: inherit;
}
img {
    vertical-align: bottom;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    margin: 0;
}

video {
    width: 100%;
}

section {
    overflow: hidden;
}

/* ---TYPOGRAPHY------------- */

.p-25 {
    font-size: 25px;
    line-height: 1.4;
    letter-spacing: -0.02em;
    font-family: 'NS';
    font-weight: 500;
}
.p-16 {
    font-size: 16px;
    line-height: 1.375;
    letter-spacing: -0.02em;
    font-family: 'NS';
    font-weight: 500;
}
.p-14 {
    font-size: 14px;
    line-height: 1.7;
    letter-spacing: -0.02em;
    font-family: 'NS';
    font-weight: 400;
}

.p-13 {
    font-size: 13px;
    font-family: 'NS';
    font-weight: 400;
}
.p-12 {
    font-size: 12px;
    font-family: 'NS';
    font-weight: 400;
    line-height: 1.888;
}

.t-350 {
    font-size: 350px;
    line-height: 0.4;
    letter-spacing: -0.02em;
}

.t-220 {
    font-size: 220px;
    /* line-height: 0.633; */
    letter-spacing: -0.02em;
}
.t-150 {
    font-size: 150px;
    /* line-height: 0.9333; */
    letter-spacing: -0.02em;
}
.t-100 {
    font-size: 100px;
    line-height: 0.8;
    letter-spacing: -0.02em;
}
.t-80 {
    font-size: 80px;
    line-height: 0.9;
    letter-spacing: -0.02em;
}
.t-60 {
    font-size: 60px;
    line-height: 0.9;
    letter-spacing: -0.02em;
}
.t-18 {
    font-size: 18px;
    line-height: 1.211;
}

.t-16 {
    font-size: 16px;
    line-height: 1.312;
}

/* ------------------------ */

.is-delay {
    display: none;
    width: 0;
    height: 0;
    pointer-events: none;
    cursor: none;
    z-index: -9999;
}

.scroller-proxy {
    width: 100vw;
    height: 100vh;
    overflow: auto;
    margin: 0;
}

body.open-menu {
    overflow: hidden;
}
.isIE11 {
    max-width: 100vw;
    -ms-overflow-x: hidden;
    overflow-x: hidden;
}

.maxed-0 {
    width: calc(var(--single-grid) * 10);
    /* max-width: 1706px; */
    margin: 0 auto;
}
.maxed-1 {
    width: calc(var(--single-grid) * 8);
    /* max-width: 1706px; */
    margin: 0 auto;
}

.isIE11 .maxed-0 {
    width: calc(100vw - 160px);
}
.isIE11 .maxed-1 {
    width: calc(100vw - 160px - 160px);
}

.contents-wrap {
    /* padding-bottom: 240px; */
}

/* .padding-80 {
    padding: 0 80px;
} */

.top-padding {
    padding-top: 100px;
}

.final-third {
    margin-left: calc(var(--single-grid) * 6);
}
.isIE11 .final-third {
    margin-left: 60%;
}

.cta-button {
    position: relative;
    width: 100%;
    margin-top: 40px;
    /* cursor: pointer; */
}
.section-intro .cta-button {
    margin-bottom: 50px;
}
.cta-button .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: black;
    transform-origin: left;
    transform: scaleX(0);
}
.isIE11 .cta-button .line {
    transform: scaleX(1);
}
.cta-text {
    padding: 10px 0;
    display: block;
}
.cta-scribble-wrap {
    position: absolute;
    right: 0%;
    bottom: -10px;
}

/* -----------CONTENT STYLES------------- */

/*** HEADER NAV ***/
.header-top {
    position: fixed;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    padding: 30px 0;
    z-index: 5;
}
.header-top {
    display: flex;
    justify-content: space-between;
}
.menu-logo {
    transition: 0.3s ease-in-out opacity;
}
.menu-logo a {
    display: block;
}
.menu-logo path {
    transition: 0.3s ease-in-out fill;
}
.footer-logo {
    display: none;
}
.menu-right {
    display: flex;
}
.menu-item {
    display: flex;
    align-items: center;
    margin-top: -6px;
    transition: 0.3s ease-in-out opacity;
}
.menu-item_with_underline {
    position: relative;
}
.menu-item_with_underline:after {
    content: '';
    position: absolute;
    bottom: 11px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: black;
    transition: 0.3s ease-in-out width;
}
.menu-item_with_underline:hover:after {
    width: 100%;
}
.menu-trigger {
    margin-left: 60px;
    cursor: pointer;
}
.trigger-icon {
    position: relative;
    height: 100%;
    width: 34px;
    margin-left: 18px;
    top: 1px;
}
.trigger-text {
    transition: 0.3s ease-in-out opacity;
}
.trigger-line {
    position: absolute;
    display: block;
    width: 34px;
    height: 1px;
    background: black;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: 0.3s ease-in-out transform, 0.3s ease-in-out background-color;
}
.open-menu .trigger-line {
    background: white;
}
.trigger-line-0 {
    transform: translateX(-50%) translateY(-50%) translateY(-3px);
}
.trigger-line-1 {
    transform: translateX(-50%) translateY(-50%) translateY(3px);
}
.open-menu .trigger-line-0 {
    transform: translate(-50%, -50%) rotate(45deg);
}
.open-menu .trigger-line-1 {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.open-menu .trigger-text,
.open-menu .menu-item:not(.menu-trigger) {
    opacity: 0;
    pointer-events: none;
}
.open-menu .menu-logo path {
    fill: white;
}

.overlay-social-links {
    position: fixed;
    bottom: 64px;
    right: var(--side-gutter);
    display: flex;
    z-index: 1;
}
.isIE11 .overlay-social-links {
    right: 80px;
}
.overlay-social-links a {
    margin-left: 25px;
    position: relative;
    display: inline-block;
}
.overlay-social-links a:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: white;
    width: 0;
    transition: 0.3s ease-in-out width;
}
.overlay-social-links a:hover:after {
    width: 100%;
}

/*** MENU OVERLAY ***/

.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #98afc7;
    color: white;
    z-index: 4;
    opacity: 0;
    pointer-events: none;

    visibility: hidden;
}

.safe-to-show .menu-overlay {
    visibility: visible;
}
.open-menu .menu-overlay {
    /* opacity: 1; */
    pointer-events: auto;
}
.menu-overlay > .inner {
    position: relative;
    z-index: 1;
    height: 100%;
}
.menu-overlay ul {
    position: absolute;
    top: 50%;
    transform: translateY(-55%);
    left: 0;
    display: flex;
    flex-direction: column;
}
.overlay-menu-item {
    position: relative;
    margin-bottom: 30px;
}
.overlay-menu-item a {
    display: block;
    position: relative;
    width: 100%;
    height: 100%;
}
.overlay-menu-item .item-index {
    position: absolute;
    top: 0;
}
.overlay-menu-item .item-text {
    display: inline-block;
    padding-left: 25px;
    padding-top: 25px;
}
.overlay-menu-item .item-text span {
    transition: opacity 0.4s cubic-bezier(0.45, 0, 0.55, 1);
}
.hover-ul .item-text span {
    opacity: 0.45;
}
.hover-ul .overlay-menu-item.show .item-text span {
    opacity: 1;
}

/****** COMPONENTS ******/

/*** SCRIBBLE ***/

.scribble {
    opacity: 0;
    transition: 1s opacity ease-in-out;
}
.isIE11 .scribble {
    opacity: 1;
}
.scribble.show-scribble {
    opacity: 1;
}
.scribble-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(255, 255, 255, 0.01) 0%, rgba(255, 255, 255, 1) 40%);
    transform: scaleX(1.5);
    transform-origin: right;
    transition: 1s transform ease-in-out;
}
.show-scribble .scribble-mask {
    transform: scaleX(0);
}
.isIE11 .scribble-mask {
    display: none;
}
.scribble img {
    opacity: 0;
    transition: 1s opacity ease-in-out;
}
.show-scribble img {
    opacity: 1;
}
.isIE11 .scribble img {
    opacity: 1;
}

/*** COMPONENT - SCRIBBLE CIRCLE ***/

.typo-image {
    position: relative;
    height: 0px;
    padding-bottom: 72%;
    width: 100%;
}
.grid-cta .typo-image {
    padding-bottom: 80%;
}
.typo-image .mask_paths path {
    stroke: #005fac;
}
.typo-image svg {
    position: absolute;
    width: auto;
    height: 100%;
    opacity: 0;
}
.typo-image mask {
    fill: #fff;
}
.mask_paths path {
    stroke: #fff;
    fill: transparent;
}
.scribble-circle-wrap {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-20%, -25%);
    width: 100%;
}
.typo-image-wrap {
    position: absolute;
    top: 0;
    left: 0;
    transform: translate(-20%, -25%);
    width: 100%;
    pointer-events: none;
}
.single-line .typo-image-wrap {
    transform: translate(5%, -15%) rotate(5deg) scaleY(0.85);
    width: 500px;
}
.single-line .typo-image-wrap svg {
    /* width: 100%; */
    height: 80%;
}

.menu-overlay .typo-image-wrap {
    transform: translate(7%, -5%) rotate(0deg) scaleY(0.85);
    width: 400px;
}

.grid-cta .typo-image-wrap {
    transform: translate(-20%, -10%);
}
[data-barba-namespace='index'] .section-outro .cta-button .path-element {
    stroke: white;
}
.menu-overlay .path-element {
    stroke: white !important;
}

/*** TDB SET ***/

.tdb-set {
    display: flex;
    flex-direction: column;
    /* max-width: 400px; */
}
.tdb-title {
    margin-top: 12px;
    margin-bottom: 35px;
}
.tdb-set .hide-at-first {
    opacity: 0;
}
.isIE11 .tdb-set .hide-at-first {
    opacity: 1;
}

/*** IMAGE MASK ***/

.image-inner {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.image-mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 170%;

    background: linear-gradient(-180deg, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0.001) 90%);
    transform-origin: top;
}
.isIE11 .image-mask {
    display: none;
}
/****** SECTIONS ******/

/*** SECTION - INTRO BLOCK ***/

.section-intro {
    margin-bottom: 230px;
    overflow: visible;
}
.wrap-index .section-intro {
    margin-bottom: 100px;
}
.section-intro .single-line-2 {
    overflow: hidden;
}

/*** SECTION - LINE STACK ***/
.section-outro .text-stack-set {
    pointer-events: none;
}

.can-interact.text-stack-set,
.isIE11 .section-outro .text-stack-set {
    pointer-events: auto;
}
.single-line {
    position: relative;
    height: 11.4vw;
    z-index: 2;
    visibility: hidden;
}
.safe-to-show .single-line {
    visibility: visible;
}

.repeating-outro .single-line,
.product-intro .single-line {
    height: 145px;
}
.single-line .line-underline {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0px;
    transform: translateX(-50%);
    width: 100%;
    height: 1px;
    background-color: black;
}
.single-line .line-overline {
    top: 0;
    bottom: auto;
}
.wrap-index .section-outro .line-underline {
    background-color: white;
}

.single-line .maskblock {
    position: absolute;
    left: 0%;
    bottom: -1px;
    transform: translateY(100%);
    width: 100%;
    height: 10vw;
    background-color: white;
    z-index: 2;
    opacity: 1;
    transform-origin: top;
    transition: 0.5s background-color ease-in-out;
}
.isIE11 .maskblock {
    display: none;
}
.bg-blue .wrap-index .section-outro .maskblock {
    background-color: #98afc7;
}

.single-line .line-text-wrap {
    display: inline-block;

    line-height: 1;
    position: relative;
    top: 0px;
}
.single-line .line-text-wrap:not(.repeating-outro.section-outro .t-150):not(.product-intro .t-150) {
    font-size: 11.46vw;
}
.repeating-outro .line-text-wrap {
    padding-left: 34px;
}

.wrap-index .section-intro .single-line-0 .line-text-wrap {
    transform: translateX(9vw);
}
.wrap-index .section-intro .single-line-2 .line-text-wrap {
    transform: translateX(17vw);
}
.scribble-intro-wrap {
    position: absolute;
    top: 50%;
    right: 0;
    display: flex;
    transform: translate(80%, -100%);
    /* transform: translate(50%, -100%); */
}
.wrap-index .scribble-intro-wrap {
    width: calc(var(--single-grid) * 0.8);
}
.wrap-list .scribble-intro-wrap {
    width: calc(var(--single-grid) * 0.5);
    transform: translate(50%, -60%);
}
.wrap-about .scribble-intro-wrap {
    transform: translate(70%, -80%);
    width: calc(var(--single-grid) * 0.9);
}
.wrap-visit .scribble-intro-wrap {
    transform: translate(60%, -60%);
    width: calc(var(--single-grid) * 0.9);
}
.isIE11 .wrap-visit .scribble-intro-wrap {
    transform: translate(60%, -110%);
    /* width: calc(var(--single-grid) * 0.9); */
}

.scribble-intro-wrap img {
    width: 100%;
    height: intrinsic;
}
.badge-intro-wrap {
    position: absolute;
    top: 0;
    right: 0;
    display: flex;
    transform: translate(75%, -60%);
    width: 14vw;
}
.badge-intro-wrap img {
    width: 100%;
}
.intro-video-wrap video {
    width: 70vw;
}
.isIE11 .intro-video-wrap video {
    width: 100%;
}

/*** SECTION - INTRO SLIDER ***/
.index-intro-slider {
    margin-top: -4vw;
}
.swiper-slide {
    background-color: white;
}

.swiper-wrapper .swiper-slide:first-child .pagination-prev {
    opacity: 0.3;
    pointer-events: none;
}
.swiper-wrapper .swiper-slide:last-child .pagination-next {
    opacity: 0.3;
    pointer-events: none;
}
.pagination-divider {
    position: relative;
    top: 2px;
}
.intro-video-wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 36%;
    overflow: hidden;
    margin-top: 0;
}
.intro-video-wrap video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    object-fit: cover;
}

.slide-pagination {
    display: flex;
    align-items: center;
    font-size: 18px;
}
.slider-text-wrap {
    width: calc(var(--single-grid) * 3);
    /* margin-left: calc(var(--single-grid) * 6); */
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    padding-bottom: 15px;
}

.slide-pagination > div,
.slide-pagination > span {
    display: flex;
    align-items: center;
}
.slide-pagination > span {
    padding: 5px;
}
.pagination-arrow {
    position: relative;
    top: 2px;
    padding: 5px;
    cursor: pointer;
}

/*** SHOP BUTTON ***/

.menu-shop {
    position: fixed;
    bottom: 80px;
    right: var(--side-gutter);
    z-index: 4;
    transition: 0.2s ease-in-out opacity;
}
.isIE11 .menu-shop {
    right: 80px;
}
.footer-active .menu-shop {
    opacity: 0;
    pointer-events: none;
}
.shop-trigger {
    position: relative;
    cursor: pointer;
    border: 1px solid black;
    border-radius: 50%;
}
.shop-trigger > span {
    transition: 0.2s ease-in-out opacity;
}
.shop-trigger .trigger-text-open {
    padding: 7px 40px;
    display: block;
}
.open-shop.menu-shop .trigger-text-open {
    opacity: 0;
}
.shop-trigger .trigger-text-close {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0;
}
.open-shop.menu-shop .trigger-text-close {
    opacity: 1;
}
.shop-li-group {
    position: absolute;
    top: -20px;
    right: 0;
    transform: translateY(-100%);
    width: 285px;
    text-align: right;
}
.shop-li {
    position: relative;
    margin-bottom: 15px;
    padding-bottom: 5px;
    /* opacity: 0; */
    pointer-events: none;
}
.open-shop.menu-shop .shop-li {
    pointer-events: auto;
    /* opacity: 1; */
}
.shop-li .line {
    content: '';
    position: absolute;
    right: 0;
    bottom: 0;
    width: 100%;
    height: 1px;
    background-color: black;
    transform-origin: right;
}

.scrollmore-mobile {
    position: fixed;
    bottom: 30px;
    left: var(--side-gutter);
    display: none;
    pointer-events: none;
    z-index: 3;
    transition: 0.3s opacity ease-in-out;
}
.scrollmore-mobile.hide {
    opacity: 0;
}

/*** SECTIONS - UNDERLAYS ***/

.underlay-spacer {
    height: 100vh;
}
.underlay {
    position: relative;
    height: 120vh;
    /* border-top: 1px solid red; */
    /* border-bottom: 3px solid red; */
}
.underlay .underlay-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.underlay-scribble-wrap {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60vw;
    max-width: 1140px;
}
.underlay-scribble-wrap img {
    width: 100%;
}

.wrap-list .underlay-scribble-wrap {
    width: 50vw;
}
.wrap-list .underlay-scribble-wrap img,
.wrap-product .underlay-scribble-wrap img {
    transform: translateY(3vw);
}

.underlay-scribble-wrap .underlay-label {
    position: absolute;
    bottom: -20px;
    right: 0;
    font-size: 50px;
    color: white;
}

/*** SECTION - ROLLING TEXT ***/

.section-rollingtext {
    width: 100%;
    overflow: hidden;
}
.rollingtext {
    display: block;
    font-size: 18vw;
    line-height: 1.05;
    white-space: nowrap;
    letter-spacing: -0.03em;
    transform: translateX(0vw);
    margin-top: 3vw;
    backface-visibility: hidden;
}
.isIE11 .wrap-product .rollingtext {
    font-size: 16vw;
}
.isIE11 .wrap-about .rollingtext {
    font-size: 12.4vw;
}
.rollingline {
    width: 100%;
    height: 1px;
    background-color: black;
}

/*** SECTION - PRODUCT GRID ***/

.section-product-grid {
    /* min-height: 500vh; */
}
.section-product-grid > .inner {
    display: flex;
    flex-wrap: wrap;
}
.product-grid-offset {
    margin-bottom: 180px;
}
.grid-item-title {
    margin-left: calc(var(--single-grid) * 5);
    margin-top: 190px;
    min-width: 400px;
}
.isIE11 .grid-item-title {
    margin-left: 66%;
}
.wrap-list .grid-item-title {
    margin-bottom: 200px;
    margin-top: 0;
}
.product-grid-only-wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
}
.grid-item-product {
    width: calc(var(--single-grid) * 3);
    margin-bottom: 200px;
}
.isIE11 .grid-item-product {
    width: 25%;
    margin-right: 5%;
}
.product-grid-offset .grid-item-product:nth-child(1) {
    margin-top: -3vw;
}

.product-grid-offset .grid-item-product:nth-child(2) {
    margin-top: 28vw;
}
.product-grid-offset .grid-item-product:nth-child(3) {
    margin-top: -10vw;
}
.isIE11 .product-grid-offset .grid-item-product:nth-child(1),
.isIE11 .product-grid-offset .grid-item-product:nth-child(2),
.isIE11 .product-grid-offset .grid-item-product:nth-child(3) {
    margin-top: 0;
}
.grid-image-wrap {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 129%;
    /* overflow: hidden; */
}
.grid-image-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.grid-product-shadow-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.grid-item-product .grid-product-shadow-wrap img {
    transition: transform 0.8s cubic-bezier(0.45, 0, 0.55, 1), opacity 0.8s cubic-bezier(0.45, 0, 0.55, 1);
}
.grid-item-product .grid-product-img {
    transition: transform 0.8s cubic-bezier(0.45, 0, 0.55, 1);
}
.grid-item-product:hover .grid-product-shadow-wrap img {
    transform: translate(10px, 25px);
    opacity: 0.6;
}
.grid-item-product:hover .grid-product-img {
    transform: scale(1.05);
}
.grid-product-mask {
    position: absolute;
    width: 100%;
    height: 0%;
    padding-bottom: 180%;
    background: linear-gradient(-180deg, rgba(255, 255, 255, 1) 60%, rgba(255, 255, 255, 0.01) 100%);
    transform-origin: top;
}
.isIE11 .grid-product-mask {
    display: none;
}
.grid-description-wrap {
    display: flex;
    flex-direction: column;
}
.grid-index-wrap {
    position: relative;
    width: max-content;
    display: block;
    overflow: hidden;
}
.grid-index {
    width: 30px;
    margin-bottom: 10px;
    margin-top: 30px;
}
.grid-index-mask {
    position: absolute;
    width: 200%;
    height: 100%;
    top: 0;
    left: 0;
    transform: translateX(-50%);
    /* background: linear-gradient(0deg, rgb(255, 255, 255) 50%, rgba(255, 255, 255, 0.01) 100%); */
    background-color: white;
    transition: 0.5s background-color ease-in-out;
}
.isIE11 .grid-index-mask {
    display: none;
}
.bg-blue .grid-index-mask {
    background-color: #98afc7;
}
.grid-text-line {
    position: relative;
}
.grid-text-line .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: black;
    transform-origin: left;
}
.grid-text-line .line-text {
    display: block;
    padding: 10px 0;
    overflow: hidden;
}
.grid-text-line .line-text span {
    display: block;
}
.grid-cta {
    align-self: flex-end;
}
.grid-cta .cta-text {
    display: block;
    position: relative;
}

/*** SECTION - OUTRO ***/

.section-outro {
    padding-top: 100px;
}
.section-outro > .inner {
    position: relative;
}
.repeating-outro.section-outro {
    padding-top: 165px;
}
.wrap-index .section-outro {
    /* background-color: #98afc7; */
}
.section-outro:not(.repeating-outro) .single-line {
    margin-bottom: 1.5vw;
}
/* .section-outro.repeating-outro .single-line {
    margin-bottom: 0px;
} */
.wrap-index .section-outro .single-line {
    color: white;
}
.section-outro .single-line {
    display: flex;
}
.wrap-index .section-outro .single-line-1 .line-text-wrap {
    margin-left: auto;
}
.scribble-num-wrap {
    position: absolute;
    top: 1vw;
    left: 0;
    display: flex;
}
.wrap-index .section-outro .single-line-1 .scribble-num-wrap {
    left: -2vw;
}
.scribble-num-wrap img {
    opacity: 1;
}
.wrap-index .section-outro .scribble-mask {
    background: linear-gradient(90deg, rgba(152, 175, 199, 0.01) 0%, rgba(152, 175, 199, 1) 40%);
}
.section-outro .scribble-outro-wrap {
    position: absolute;
    top: 0;
    right: 0;
    width: calc(var(--single-grid) * 1.5);
    transform: translateY(-62%);
}
.scribble-outro-wrap .scribble-outro {
    width: 100%;
}

.section-outro:not(.repeating-outro) .outro-images {
    display: flex;
    flex-direction: row;
    width: 100%;
    margin-top: 180px;
}
.section-outro:not(.repeating-outro) .outro-image-0 {
    width: calc(var(--single-grid) * 6);
    margin-right: calc(var(--single-grid) * 0.4);
    margin-top: 10vw;
}
.isIE11 .section-outro:not(.repeating-outro) .outro-image-0 {
    width: 60%;
    margin-right: 5%;
}
.repeating-outro .outro-image {
    margin-left: auto;
    margin-right: 0;
    margin-top: 180px;
    margin-bottom: 350px;
    width: calc(var(--single-grid) * 8);
}
.isIE11 .repeating-outro .outro-image {
    width: 80%;
}
.outro-image-1 {
    width: calc(var(--single-grid) * 4);
}
.isIE11 .outro-image-1 {
    width: 35%;
}
.outro-image {
    position: relative;
}
.outro-image img {
    width: 100%;
}
.outro-image .slogan-svg {
    width: calc(var(--single-grid) * 1);
    position: absolute;
    bottom: 0;
    left: 0;
}
.isIE11 .outro-image .slogan-svg {
    width: 10%;
}

.wrap-index .outro-image .image-mask {
    background: linear-gradient(-180deg, rgba(152, 175, 199, 1) 70%, rgba(152, 175, 199, 0.01) 100%);
}

.wrap-index .outro-image .image-mask-2 {
    background: linear-gradient(-180deg, rgba(255, 255, 255, 1) 70%, rgba(255, 255, 255, 0.01) 100%);
    transition: 0.5s opacity ease-in-out;
}
.bg-blue .image-mask-2 {
    opacity: 0;
}
.outro-scribble-wrap {
    position: absolute;
    right: 0%;
    bottom: 0;
    width: calc(var(--single-grid) * 2.6);
    transform: translate(40%, 50%);
    z-index: 1;
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}
.outro-scribble-wrap.show-scribble {
    clip-path: inset(0 0 0 0);
}
.isIE11 .outro-scribble-wrap {
    clip-path: none;
}
.section-outro .tdb-set {
    color: white;
    /* margin-left: calc(var(--single-grid) * 6); */
    margin-top: 230px;
    margin-bottom: 250px;
}
.section-outro .cta-button .line {
    background-color: white;
}

.outro-arrow {
    width: 24px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
}

.section-outro .single-line a {
    width: 100%;
}

/*** PAGE LISTS ****/

.section-tests {
    /* min-height: 500vh; */
}
.intro-banner-wrap {
    overflow: hidden;
    height: 0;
    padding-bottom: 38.9%;
    position: relative;
    margin-top: 40px;
    z-index: 2;
}
.intro-banner-wrap img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/*** PAGE - ABOUT ***/

.wrap-about .section-intro {
    margin-bottom: 20px;
}

.wrap-about .intro-banner-wrap {
    margin-top: -4vw;
    z-index: 1;
}
.isIE11 .intro-banner-wrap {
    padding-bottom: 47%;
}
.wrap-about .section-intro .single-line .maskblock {
    background-color: transparent;
}

.wrap-about .badge-intro-wrap {
    width: calc(var(--single-grid) * 1.5);
    /* transform: translate(10%, -55%) rotate(-35deg); */
    transform: translate(0%, -50%) rotate(-0deg);
    clip-path: inset(0 100% 0 0);
    transition: clip-path 0.6s ease-out;
}
.wrap-about .show.badge-intro-wrap {
    clip-path: inset(0 0 0 0);
}
.isIE11 .wrap-about .badge-intro-wrap {
    clip-path: none;
}

.wrap-about .badge-intro-wrap img {
    transform: rotate(35deg);
}

.wrap-about .tdb-set {
    /* max-width: calc(var(--single-grid) * 3); */
}

.section-about-content .image-about-wrap {
    position: relative;
}
.section-about-content .image-wrap {
    overflow: hidden;
    position: relative;
}
.section-about-content .image-wrap img {
    width: 100%;
}

.section-about-content.image-text > .inner {
    display: flex;
}

.sac-0 {
    margin-top: 330px;
    margin-bottom: 100px;
}
.sac-0 > .inner {
    /* overflow-x: hidden; */
}
.sac-1 {
    margin-top: 120px;
}
.sac-2 {
    margin-top: 520px;
    margin-bottom: 150px;
}
.sac-4 {
    margin-top: 150px;
    margin-bottom: 300px;
}

.sac-0 .tdb-title {
    position: relative;
    display: inline-block;
    width: max-content;
}

.sac-1 .image-about-wrap {
    width: calc(var(--single-grid) * 7 + var(--side-gutter));
    margin-left: auto;
}
.isIE11 .sac-1 .image-about-wrap {
    width: 66.66%;
}
.sac-2 .image-about-wrap {
    width: calc(var(--single-grid) * 5);
    margin-right: calc(var(--single-grid) * 1);
    margin-top: 100px;
}
.isIE11 .sac-2 {
    margin-bottom: 350px;
}
.isIE11 .sac-2 .image-about-wrap {
    width: 50%;
    margin-top: 0;
    margin-right: 10%;
}
.isIE11 .sac-2 .tdb-set {
    margin-top: 100px;
}
.sac-3 .image-about-wrap {
    width: calc(var(--single-grid) * 10 + var(--side-gutter));
    margin-left: calc(var(--side-gutter) * -1);
}

.section-about-content .scribble-about-image {
    position: absolute;
    bottom: 0;
    z-index: 2;
}
.sac-1 .scribble-about-image {
    width: calc(var(--single-grid) * 3.5);
    transform: translate(-30%, 60%);
}
.sac-2 .scribble-about-image {
    width: calc(var(--single-grid) * 3);
    transform: translate(30%, 60%);
    right: 0;
}
.sac-3 .scribble-about-image {
    width: calc(var(--single-grid) * 3);
    transform: translate(50%, 60%);
    left: 0;
}

.section-about-content .image-wrap:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 8vw;
    background: linear-gradient(0deg, white, rgba(255, 255, 255, 0.01));
    z-index: 2;
}

.underlay-about {
    margin-bottom: 190px;
}

.section-about-features {
    margin-bottom: 195px;
}
.section-about-features .tdb-set {
    margin-bottom: 125px;
    margin-left: calc(var(--single-grid));
    position: relative;
}
.isIE11 .section-about-features .tdb-set {
    margin-left: 10%;
}
.section-about-features .tdb-num {
    width: 35px;
    position: absolute;
    top: 0;
    left: 0;
    transform: translateY(-70%);
}

/*** PAGE - VISIT ***/

.wrap-visit .section-intro {
    margin-bottom: 60px;
}

.wrap-visit .intro-banner-wrap {
    padding-bottom: 48.25%;
}
.wrap-visit .lu42-building {
    position: absolute;
    right: 0;
    left: auto;
    top: 20%;
    width: 75%;
    object-position: top;
}

.wrap-visit .section-banner {
    position: relative;
    overflow: visible;
}
.scribble-lu42 {
    position: absolute;
    bottom: 0;
    left: 0;
    width: calc(var(--single-grid) * 6);
    max-width: 1000px;
    z-index: 2;
    transform: translateY(50%);
    clip-path: inset(0 100% 0 0);
    transition: clip-path 1.3s cubic-bezier(0.65, 0, 0.35, 1);
}

.scribble-lu42.show-scribble {
    clip-path: inset(0 0 0 0);
}
.isIE11 .scribble-lu42 {
    clip-path: none;
}

.contact-intro {
    position: relative;
    z-index: 2;
    margin-bottom: 145px;
}
.contact-details {
    margin-top: 145px;
    margin-bottom: 255px;
}
.phone-num {
    margin-bottom: 7px;
}
.visit-email {
    position: relative;
}
.visit-email:after {
    content: '';
    position: absolute;
    bottom: 8px;
    left: 0;
    width: 0%;
    height: 1px;
    background-color: black;
    transition: 0.3s width ease-in-out;
}

.visit-email:hover::after {
    width: 100%;
}
.contact-info {
    margin-top: 80px;
}
.single-contact-info {
    margin-bottom: 50px;
}
.info-title {
    position: relative;
    margin-bottom: 20px;
    overflow: hidden;
    max-width: 500px;
}
.info-title span {
    display: block;
    padding: 7px 0;
}
.info-title .line {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: black;
    transform-origin: left;
}
.info-links {
    display: flex;
    flex-direction: column;
}
.info-links .a-wrap {
    display: flex;
    align-items: center;
    margin-bottom: 6px;
}
.info-links .link-logo {
    margin-right: 6px;
    width: 16px;
    position: relative;
    top: 0px;
}
.info-links .link-arrow {
    margin-left: 6px;
    position: relative;
    top: -1px;
}

.single-location {
    margin-bottom: 60px;
}
.single-location:last-child {
    margin-bottom: 0;
}
.address-title {
    font-weight: 700;
    display: block;
    margin-bottom: 7px;
}

/*** FOOTER ***/

main[data-barba-namespace='index'] footer {
    background-color: #98afc7;
    color: white;
}
footer > .inner {
    position: relative;
}
footer .line {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: black;
}
[data-barba-namespace='index'] footer .line {
    background-color: white;
}

.footer-text {
    margin-bottom: 60px;
}
.footer-text span {
    font-size: 10.4vw;
    letter-spacing: -0.03em;
    white-space: nowrap;
}
.footer-letter1 {
    margin-right: -1vw;
}
.footer-footer {
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}
.footer-left {
    display: flex;
}
.footer-right {
    display: flex;
    align-items: center;
}
.single-footer-info {
    font-size: 12px;
    font-family: 'NS';
}
.single-footer-info a {
    font-weight: 400;
}
.footer-left .single-footer-info {
    margin-right: 20px;
}
.footer-right .single-footer-info {
    margin-left: 30px;
}
.footer-right .single-footer-info a {
    font-weight: 500;
    position: relative;
}

main[data-barba-namespace='index'] .footer-right .single-footer-info a:after {
    background-color: white;
}

.footer-info-label {
    font-weight: 500;
    margin-right: 3px;
}
.footer-info-text {
    opacity: 0.7;
}
.family-site-trigger {
    display: flex;
    align-items: center;
    cursor: pointer;
    position: relative;
}
.family-trigger-arrow {
    margin-left: 5px;
    transition: 0.3s transform ease-in-out;
}
main:not([data-barba-namespace='index']) .family-trigger-arrow path {
    fill: black;
}
.open-family .family-trigger-arrow {
    transform: translateY(-1px) rotate(180deg);
}

.family-site-menu {
    position: absolute;
    bottom: 34px;
    left: -19px;
    background-color: white;
    color: black;
    border-radius: 9px;
    padding: 20px 40px 20px 20px;
    box-shadow: 0px 0px 9px rgba(0, 0, 0, 0.2);
    opacity: 0;
    pointer-events: none;
    transform: translateY(15px);
    transition: 0.3s opacity ease-in-out, 0.3s transform ease-in-out;
}
.open-family .family-site-menu {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.family-site-menu li {
    position: relative;
    display: inline-block;
}
.family-site-menu li:not(:last-child) {
    margin-bottom: 15px;
}
.family-site-menu li:after {
    content: '';
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: black;
    width: 0;
    transition: 0.3s ease-in-out width;
}
.family-site-menu li:hover:after {
    width: 100%;
}

/* -----------MEDIA QUERIES------------- */

/* breakpoint - large size desktop */
@media screen and (min-width: 1920px) {
    .contact-intro .tdb-title {
        margin-bottom: 55px;
    }
    .contact-intro .t-60 {
        font-size: 80px;
    }
}

/* breakpoint - large size desktop */
@media screen and (max-width: 1920px) {
    .footer-text span {
        font-size: 10.2vw;
    }
}

@media screen and (max-width: 1600px) {
    .footer-text span {
        font-size: 10.1vw;
    }
}

/* breakpoint - small height desktop */
@media screen and (min-width: 1024px) and (max-height: 1000px) {
    .menu-overlay ul {
        transform: translateY(-50%);
    }
    .menu-overlay .t-150 {
        font-size: 120px;
        padding-top: 0;
    }
    .menu-overlay .typo-image-wrap {
        width: 280px;
    }
}

@media screen and (max-width: 1440px) {
    :root {
        --single-grid: calc((100vw - 40px - 40px) / 10);
        --side-gutter: 40px;
    }

    .wrap-visit .contact-intro .tdb-set {
        /* margin-left: auto; */
        /* max-width: 100%; */
        /* width: max-content; */
    }
    .contact-intro .t-60 {
        font-size: 40px;
    }

    .t-100 {
        font-size: 80px;
    }

    .sac-2 {
        margin-bottom: 0px;
    }

    .repeating-outro .single-line,
    .product-intro .single-line {
        height: 122px;
    }
    .repeating-outro .line-text-wrap {
        font-size: 120px;
    }

    .footer-text span {
        font-size: 10.2vw;
    }
    .footer-left .single-footer-info {
        margin-right: 15px;
    }
    .footer-right .single-footer-info {
        margin-left: 15px;
    }
}
@media screen and (max-width: 1280px) {
    .footer-text span {
        font-size: 10.4vw;
    }
    .underlay-scribble-wrap .underlay-label {
        font-size: 32px;
    }

    .overlay-menu-item .item-text {
        font-size: 130px;
        padding-top: 5px;
    }
    .menu-overlay .typo-image-wrap {
        width: 300px;
    }

    .footer-right .single-footer-info {
        margin-left: 20px;
    }
    .footer-left .footer-info-text {
        display: block;
        margin-top: 5px;
    }
}

/* breakpoint - landscape tablet + very small desktop */
@media screen and (max-width: 1080px) {
    .maxed-1 {
        /* width: calc(var(--single-grid) * 9); */
    }
    .menu-overlay > .inner {
        width: calc(var(--single-grid) * 9);
    }

    .t-150 {
        font-size: 120px;
    }
    .t-100 {
        font-size: 70px;
    }

    .section-intro {
        margin-bottom: 130px;
    }

    .section-intro {
        margin-bottom: 60px;
    }

    .grid-item-title {
        min-width: auto;
    }
    .wrap-list .grid-item-title {
        margin-bottom: 120px;
    }
    .tdb-set,
    .slider-text-wrap {
        max-width: none;
    }
    .cta-scribble-wrap {
        width: 140px;
        bottom: -3px;
    }
    .cta-scribble-wrap .scribble-itself {
        width: 100%;
    }

    .grid-item-product {
        width: calc(var(--single-grid) * 3.5);
        /* margin-bottom: 100px; */
    }
    .product-grid-offset .grid-item-product:nth-child(2) {
        margin-top: 25vw;
    }
    .product-grid-offset .grid-item-product:nth-child(3) {
        margin-top: -33vw;
    }

    .repeating-outro .single-line,
    .product-intro .single-line {
        height: 125px;
    }
    .single-line .typo-image-wrap {
        transform: translate(5%, -10%) rotate(5deg) scaleY(0.9);
        width: 400px;
    }

    .wrap-index .section-outro .scribble-num-wrap {
        left: -1vw;
        top: 0;
        width: 30px;
    }
    .wrap-index .section-outro .scribble-num-wrap img {
        width: 100%;
    }
}

@media screen and (max-width: 1024px) {
    .maxed-1 {
        width: calc(var(--single-grid) * 10);
    }

    .overlay-menu-item {
        margin-bottom: 40px;
    }
    .overlay-menu-item .item-text {
        font-size: 110px;
        line-height: 0.9;
    }
    .overlay-menu-item .item-index {
        left: -10px;
    }
    .overlay-menu-item .item-index {
        left: -40px;
        top: -10px;
    }

    .wrap-list .scribble-intro-wrap {
        width: calc(var(--single-grid) * 0.7);
    }

    .product-grid-offset,
    .section-product-grid {
        margin-bottom: 100px;
    }
    .grid-item-product {
        width: calc(var(--single-grid) * 4);
        margin-bottom: 50px;
    }
    .grid-item-title {
        margin-left: calc(var(--single-grid) * 6);
        margin-top: 100px;
    }
    .product-grid-offset .grid-item-product:nth-child(1) {
        margin-top: -20vw;
    }
    .product-grid-offset .grid-item-product:nth-child(3) {
        margin-top: -52vw;
    }

    .tdb-set,
    .slider-text-wrap {
        width: calc(var(--single-grid) * 4);
    }

    .section-outro .scribble-outro-wrap {
        width: calc(var(--single-grid) * 2);
    }

    .repeating-outro.section-outro {
        padding-top: 105px;
    }
    .repeating-outro .single-line,
    .product-intro .single-line {
        height: 80px;
    }
    .repeating-outro .line-text-wrap {
        font-size: 80px;
    }
    .repeating-outro .outro-image {
        margin-top: 100px;
        margin-bottom: 150px;
    }

    .single-line .typo-image-wrap {
        width: 250px;
    }

    footer > .inner {
        padding-top: 40px;
        display: block;
    }

    .footer-text {
        display: none;
    }

    .footer-logo {
        display: block;
        /* width: 150px; */
        margin-bottom: 40px;
    }

    .footer-footer {
        flex-direction: column;
    }

    .footer-left {
        flex-direction: column;
    }
    .footer-right {
        flex-wrap: wrap;
    }

    .footer-left .single-footer-info {
        margin-right: 10px;
        margin-bottom: 15px;
    }
    .footer-right .single-footer-info {
        margin-left: 10px;
    }

    .footer-left .footer-info-text {
        display: inline;
        margin-top: 0;
    }

    .footer-right .single-footer-info {
        order: 2;
        margin-left: 0;
        margin-right: 20px;
    }
    .footer-right .family-site-trigger {
        order: 0;
        display: block;
        margin-bottom: 100px;
        width: 100%;
    }

    .family-site-menu {
        left: -5px;
    }
    .family-site-menu ul {
        display: flex;
        flex-direction: column;
    }

    main[data-barba-namespace='index'] footer path {
        fill: white;
    }

    .section-about-content .mob-no {
        display: none;
    }
}

/* breakpoint - portrait tablet + landscape mobile phone */
@media screen and (max-width: 768px) {
    .no-smoothscroll .scroller-proxy {
        height: auto;
        overflow: hidden;
    }
    :root {
        /* --single-grid: calc(100vw - 50px); */
        /* --side-gutter: 0; */
    }

    .menu-right a,
    .menu-trigger .trigger-text {
        display: none;
    }

    .wrap-index .scribble-intro-wrap {
        width: calc(var(--single-grid) * 1.5);
    }

    .menu-overlay ul {
        top: 180px;
        transform: none;
    }
    .overlay-menu-item .item-text {
        font-size: 60px;
        padding-left: 0;
        padding-top: 0;
    }
    .item-index img {
        width: 30px;
    }
    .overlay-menu-item .item-index {
        top: -5px;
    }
    .menu-overlay .typo-image-wrap {
        width: 200px;
    }

    .overlay-social-links {
        bottom: 40px;
        right: auto;
        left: var(--side-gutter);
    }
    .overlay-social-links a:first-child {
        margin-left: 0;
    }
}

/* breakpoint - mobile phone */
@media screen and (max-width: 720px) {
    .final-third {
        margin-left: calc(var(--single-grid) * 4);
    }
    .tdb-set,
    .slider-text-wrap {
        width: calc(var(--single-grid) * 6);
    }
}

/* breakpoint - mobile phone */
@media screen and (max-width: 570px) {
    :root {
        --single-grid: calc((100vw - 25px - 25px) / 10);
        --side-gutter: 25px;
    }

    .t-100 {
        font-size: 40px;
    }
    .t-60 {
        font-size: 40px;
    }
    .p-16 {
        font-size: 15px;
    }
    .p-14 {
        font-size: 13px;
    }

    .menu-logo svg {
        width: 67px;
    }

    .menu-overlay > .inner {
        width: calc(var(--single-grid) * 10);
    }
    .menu-overlay ul {
        top: 110px;
    }
    .overlay-menu-item a {
        display: flex;
        flex-direction: column;
    }
    .overlay-menu-item .item-index {
        position: relative;
        left: 0;
    }
    .overlay-menu-item .item-text {
        font-size: 50px;
    }

    .shop-li-group {
        width: 185px;
    }
    .menu-shop {
        bottom: 30px;
    }
    .shop-trigger {
        width: 80px;
    }
    .shop-trigger > span {
        font-size: 14px;
    }
    .shop-trigger .trigger-text-open {
        padding: 7px 24px;
    }

    .item-index img {
        width: 25px;
    }

    .menu-overlay .typo-image-wrap {
        width: 200px;
        transform: translate(0%, -10%) rotate(5deg) scaleY(0.7);
    }
    .menu-overlay ul li:last-child .typo-image-wrap {
        width: 150px;
        transform: translate(0%, 0%) rotate(0deg) scaleY(1);
    }
    .overlay-social-links a {
        margin-left: 20px;
    }

    .rollingtext {
        margin-top: 40px;
        font-size: 49vw;
    }

    .product-grid-only-wrap {
        margin-top: 115px;
    }
    .grid-item-title {
        width: 100%;
    }

    .single-line {
        height: auto;
    }
    .wrap-index .section-outro .single-line-1 .line-text-wrap {
        margin-left: 0;
    }
    .wrap-index .section-outro .line-text-wrap {
        font-size: 62px !important;
        margin-top: 20px;
    }
    .wrap-index .section-outro .scribble-num-wrap {
        top: -23px;
        left: 0 !important;
    }
    .section-outro:not(.repeating-outro) .single-line {
        margin-bottom: 20px;
    }
    .wrap-list .scribble-intro-wrap {
        width: calc(var(--single-grid) * 1.3);
        transform: translate(61%, -95%);
    }
    .wrap-index .section-intro .single-line .line-text-wrap {
        font-size: 50px !important;
    }
    .wrap-index .section-intro .single-line-0 .line-text-wrap,
    .wrap-index .section-intro .single-line-2 .line-text-wrap {
        transform: none;
    }
    .wrap-index .section-intro .single-line-1 {
        display: flex;
    }
    .wrap-index .section-intro .single-line-1 .line-text-wrap {
        margin-left: auto;
    }

    .badge-intro-wrap {
        display: none;
    }

    .index-intro-slider {
        margin-top: 50px;
    }
    .intro-video-wrap {
        padding-bottom: 130%;
    }
    .intro-video-wrap video {
        height: 100%;
    }

    .underlay-scribble-wrap,
    .wrap-list .underlay-scribble-wrap {
        width: 85vw;
    }
    .underlay-scribble-wrap .underlay-label {
        font-size: 30px;
        right: auto;
        left: 50%;
        transform: translateX(-50%);
        width: 100%;
        text-align: center;
        bottom: -30px;
    }

    .final-third {
        margin-left: 0;
    }
    .grid-item-title {
        margin-left: 0;
    }
    .tdb-set,
    .slider-text-wrap {
        width: 100%;
    }
    .cta-scribble-wrap {
        width: 100px;
    }

    .product-grid-offset .grid-item-product {
        margin-top: 0 !important;
        /* width: 100%; */
    }

    .wrap-list .intro-banner-wrap {
        padding-bottom: 100%;
    }
    .wrap-list .intro-banner-wrap img {
        object-position: 30%;
    }
    .wrap-list .grid-item-title {
        margin-bottom: 0;
    }

    .single-line .typo-image-wrap {
        width: 120px;
        transform: translate(25%, -10%) rotate(5deg) scaleY(0.9);
    }

    /** mobile - visit **/
    .wrap-visit .scribble-intro-wrap {
        width: calc(var(--single-grid) * 3);
        transform: translate(80%, -95%);
    }
    .wrap-visit .contact-intro .tdb-set {
        margin-left: 0;
    }
    .contact-info {
        margin-top: 60px;
    }

    .contact-intro .tdb-title {
        font-size: 36px;
    }
    .wrap-visit .intro-banner-wrap {
        padding-bottom: 86.25%;
    }
    .scribble-lu42 {
        width: calc(var(--single-grid) * 7);
    }
    .wrap-visit .lu42-building {
        width: 90%;
        top: 40%;
    }
    .info-title {
        margin-bottom: 23px;
    }
    .single-location {
        margin-bottom: 40px;
    }
    .contact-details {
        margin-top: 100px;
        margin-bottom: 70px;
    }

    /** mobile - about **/

    .wrap-about .intro-banner-wrap {
        margin-top: -5vw;
        padding-bottom: 128%;
    }
    .wrap-about .intro-banner-wrap img {
        right: 0;
        left: auto;
        object-position: 70% 50%;
    }
    .wrap-about .section-intro .line-text-wrap {
        font-size: 67px !important;
    }
    .wrap-about .scribble-intro-wrap {
        width: calc(var(--single-grid) * 3.2);
    }
    .wrap-about .rollingtext {
        font-size: 38vw;
    }
    .sac-0 {
        margin-top: 80px;
        margin-bottom: 0;
    }
    .sac-1 {
        margin-top: 80px;
        margin-bottom: 0;
    }
    .sac-2 {
        margin-top: 160px;
        margin-bottom: 250px;
    }

    .sac-1 .image-about-wrap {
        width: calc(var(--single-grid) * 10 + var(--side-gutter));
    }
    .sac-1 .scribble-about-image {
        right: 0;
        width: calc(var(--single-grid) * 5);
    }

    .section-about-content.image-text > .inner {
        flex-direction: column;
    }
    .sac-2 .tdb-set {
        order: 0;
    }
    .sac-2 .image-about-wrap {
        order: 1;
        width: calc(var(--single-grid) * 10);
        margin-right: 0;
        margin-left: 0;
        margin-top: 70px;
    }
    .sac-2 .scribble-about-image {
        left: 0;
        right: auto;
        width: calc(var(--single-grid) * 5);
        transform: translate(10%, 60%);
    }
    .sac-2 .tdb-title {
        font-size: 43px;
    }

    .section-about-features {
        margin-bottom: 155px;
    }
    .section-about-features .tdb-set {
        margin-left: 0;
        margin-bottom: 45px;
    }
    .section-about-features .tdb-title {
        margin-top: 0;
    }
    .underlay-about {
        margin-bottom: 70px;
    }

    .sac-3 .image-about-wrap {
        width: 100%;
        margin-left: 0;
    }
    .sac-3 .image-about-wrap .image-wrap img {
        height: 250px;
        object-fit: cover;
    }
    .sac-3 .scribble-about-image {
        width: calc(var(--single-grid) * 5);
        transform: translate(0, 60%);
        left: calc(var(--side-gutter) * 1);
    }
    .sac-4 {
        margin-bottom: 80px;
    }

    .single-line .line-text-wrap {
        font-size: 40px;
    }
    .wrap-visit .section-intro .line-text-wrap {
        font-size: 67px !important;
    }
    .wrap-list .section-intro .single-line .line-text-wrap {
        font-size: 67px !important;
    }

    .repeating-outro .single-line {
        height: 42px;
    }
    main[data-barba-namespace='list'] .repeating-outro {
        padding-top: 70px;
    }

    .wrap-index .outro-scribble-wrap {
        display: none;
    }

    .wrap-index .outro-images {
        flex-direction: column !important;
        margin-top: 80px !important;
    }
    .wrap-index .outro-image-0 {
        order: 1;
        width: 100% !important;
        margin-left: auto;
        margin-right: calc(var(--side-gutter) * -1) !important;
        margin-top: 45px;
    }
    .wrap-index .outro-image-1 {
        order: 0;
        width: 100%;
        margin-left: calc(var(--side-gutter) * -1) !important;
    }
    .wrap-index .section-outro .tdb-set {
        margin-top: 50px;
        margin-bottom: 180px;
    }
    .wrap-index .tdb-set .cta-button {
        width: max-content;
    }
    .cta-text:not(.product-grid-only-wrap .cta-text) {
        padding-right: 140px;
        padding-bottom: 3px;
    }
    .repeating-outro .scribble-num-wrap img {
        width: 27px;
    }
    .repeating-outro .outro-arrow {
        width: 15px;
    }

    .repeating-outro .outro-image {
        width: calc(var(--single-grid) * 10 + var(--side-gutter));

        margin-top: 60px;
        margin-bottom: 90px;
    }
    .section-outro .scribble-outro-wrap {
        display: none;
    }

    .scrollmore-mobile {
        display: block;
    }
    .page-product .scrollmore-mobile {
        opacity: 0;
    }
}

/* breakpoint - mobile phone */
@media screen and (max-width: 321px) {
}
/*# sourceMappingURL=common.css.map */
