:root {
    --dark: #242423;
}

html {
    box-sizing: border-box;
}

*,
*:before,
*:after {
    box-sizing: inherit;
}

html,
body {
    min-height: 100vh;
}

body {
    background-color: white;
    font-size: 14px;
    color: var(--dark);
    line-height: 1.3;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.logo,
h1,
h2 {
    margin: 0;
    line-height: 1;
    font-weight: 400;
}

p {
    margin: 0;
}

.stage {
    position: relative;
    background: white;
    visibility: hidden;
}

/*  ========================================================================== 
    Nav Header
    ========================================================================== */
.header {
    position: fixed;
    left: 40px;
    top: 24px;
    z-index: 100;
    display: flex;
}

@media all and (max-width: 768px) {
    .header {
        display: block;
        left: 24px;
    }
}

.logo {
    font-size: 27px;
    letter-spacing: -1px;
}

.nav-btn,
.nav-btn__svg {
    width: 56px;
    height: 30px;
}

.nav-btn {
    display: block;
    margin: -2px 0 0 56px;
}

@media all and (max-width: 768px) {
    .nav-btn {
        margin: 18px 0 0 -6px;
    }
}

.nav-btn__svg {
    pointer-events: none;
}

/*  ========================================================================== 
    Intro
    ========================================================================== */
.intro,
.footer {
    height: 100vh;
}

.intro {
    position: relative;
    padding: 5vw;
    background: #c0d7d8;
    overflow: hidden;
}

.intro__content {
    position: absolute;
    right: 8%;
    bottom: 15%;
    z-index: 3;
}

@media all and (max-width: 768px) {
    .intro__content {
        right: auto;
    }
}

.intro__title {
    font-size: 9vw;
    overflow: hidden;
    letter-spacing: -1.2vw;
    padding-left: 4.3vw;
}

@media all and (max-width: 768px) {
    .intro__title {
        margin-bottom: 5vh;
    }
}

.intro__img {
    position: absolute;
    width: 35%;
    max-width: 390px;
    height: auto;
}

@media all and (max-width: 768px) {
    .intro__img {
        width: 75vw;
    }
}

.intro__img--1 {
    z-index: 2;
    left: 10%;
    bottom: 35%;
}

@media all and (max-width: 768px) {
    .intro__img--1 {
        left: 50%;
        bottom: 50vh;
        display: none;
    }
}

.intro__img--2 {
    z-index: 1;
    left: 25%;
    bottom: 40%;
}

@media all and (max-width: 768px) {
    .intro__img--2 {
        left: 70%;
        bottom: 60vh;
    }
}

.intro__txt {
    max-width: 45vw;
    margin-left: 25vw;
    font-size: 30px;
}

@media all and (max-width: 768px) {
    .intro__txt {
        max-width: 80vw;
        margin-left: 5vw;
    }
}

/*  ========================================================================== 
    Slides
    ========================================================================== */
.slide {
    display: flex;
    align-items: stretch;
    height: 100vh;
    overflow: hidden;
}

.slide:nth-of-type(even) {
    background: #c4cdc4;
}

@media all and (max-width: 768px) {
    .slide {
        display: block;
        position: relative;
    }
}

/*  Columns
    ========================================================================== */
.col {
    flex-basis: 50%;
}

@media all and (max-width: 768px) {
    .col {
        display: block;
        width: 100%;
        height: 100vh;
    }
}

.col--1 {
    position: relative;
    z-index: 1;
}

@media all and (max-width: 768px) {
    .col--1 {
        position: relative;
        z-index: 1;
    }
}

.col--2 {
    position: relative;
    overflow: hidden;
}

@media all and (max-width: 768px) {
    .col--2 {
        position: absolute;
        z-index: 0;
        left: 0;
        top: 0;
    }
}

/*  ========================================================================== 
    Column Content
    ========================================================================== */
.col__content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
    height: 100%;
    padding: 4vw;
}

@media all and (max-width: 768px) {
    .col__content {
        width: 80%;
    }
}

.col__content--1 {
    background: #d8c0c0;
}

@media all and (max-width: 768px) {
    .col__content--1 {
        background: rgba(216, 192, 192, 0.9);
    }
}

.col__content--2 {
    background: #cdd5e0;
}

@media all and (max-width: 768px) {
    .col__content--2 {
        background: rgba(205, 213, 224, 0.9);
    }
}

.col__content--3 {
    background: #f3d3b0;
}

@media all and (max-width: 768px) {
    .col__content--3 {
        background: rgba(243, 211, 176, 0.9);
    }
}

.col__content--4 {
    background: #f8e9e6;
}

@media all and (max-width: 768px) {
    .col__content--4 {
        background: rgba(248, 233, 230, 0.9);
    }
}

.col__content--5 {
    background: #d1e2ec;
}

@media all and (max-width: 768px) {
    .col__content--5 {
        background: rgba(209, 226, 236, 0.9);
    }
}

.col__content--6 {
    background: #d7cec5;
}

@media all and (max-width: 768px) {
    .col__content--6 {
        background: rgba(215, 206, 197, 0.9);
    }
}

/*  Column Content
    ========================================================================== */
.col__content-title {
    margin: 0 0 2vw;
    font-size: clamp(30px, 3vw, 42px);
}

.col__content-title.small {
    margin: 0 0 2vw;
    font-size: clamp(16px, 1.5vw, 1.1vw);
}

@media all and (max-width: 768px) {
    .col__content-title {
        margin: 0 0 4vw;
        font-size: 25px;
    }
}

.col__content-wrap {
    display: flex;
    justify-content: flex-end;
}

@media all and (max-width: 768px) {
    .col__content-wrap {
        flex-direction: column;
    }
}

.col__content-txt {
    max-width: 22vw;
    order: 2;
    margin-left: 32px;
}

@media all and (max-width: 768px) {
    .col__content-txt {
        order: 1;
        max-width: 100vw;
        margin: 0;
        font-weight: 600 !important;
    }
}

.slide-link {
    position: relative;
    order: 1;
    display: flex;
    justify-content: flex-end;
    width: 75px;
    height: 53px;
}

.slide-link>* {
    pointer-events: none;
}

@media all and (max-width: 768px) {
    .slide-link {
        order: 2;
        align-self: flex-end;
    }
}

.slide-link__circ {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    border: 1px solid var(--dark);
}

.slide-link__line {
    position: absolute;
    top: 25px;
    left: 0;
    width: 64px;
    height: 3px;
    background: var(--dark);
}

.line {
    overflow: hidden;
}

.line:nth-of-type(even) {
    margin-top: -0.4vw;
}

.line__inner {
    display: block;
}

/* Slide prev / next nav */
.slide__scroll-nav {
    position: absolute;
    right: -65px;
    bottom: 3.5vw;
    display: flex;
    flex-direction: row;
    gap: 8px;
    z-index: 5;
}

/* Slide prev / next nav */
.slide__scroll-nav.static {
    right: 10px;
    bottom: 10px;
}


.slide__scroll-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 70px;
    height: 80px;
    background: #ffffff;
    border-radius: 10px;
    text-decoration: none;
    border: 0;
    color: #111111;
    cursor: pointer;
    overflow: hidden;
    transition: background 0.3s ease;
}

a.slide__scroll-btn.slide__scroll-btn--prev {
    position: relative;
    left: 20px;
}

.slide__scroll-btn:hover {
    background: #f0f0f0;
}

.slide__scroll-arrow {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    display: block;
}

@media all and (max-width: 768px) {
    .slide__scroll-nav {
        position: absolute;
        right: auto;
        left: initial;
        right: -3vw;
        bottom: 60px;
        transform: translateX(-50%);
        gap: 12px;
    }

    .slide__scroll-nav.static {
        left: initial;
        right: -3vw;
        bottom: 60px;
    }

    .slide__scroll-btn {
        width: 48px;
        height: 48px;
    }
}

/*  ========================================================================== 
    Column Image
    ========================================================================== */
.col__image-wrap {
    position: absolute;
    left: 0;
    width: 100%;
    height: 160vh;
}

.img {
    -o-object-fit: cover;
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/*  ========================================================================== 
    Footer
    ========================================================================== */
.footer {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    background: #cecece;
}

.footer__link {
    font-size: 5vw;
    color: var(--dark);
    text-decoration: none;
}

.footer__link-top {
    position: absolute;
    left: 50%;
    bottom: 100px;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    background: var(--dark);
    font-size: 18px;
    color: white;
    text-decoration: none;
}

.footer__link-top-line {
    position: absolute;
    top: -50px;
    left: 50%;
    width: 1px;
    height: 50px;
    background: var(--dark);
}

.footer__copyright {
    position: absolute;
    left: 50%;
    bottom: 24px;
    transform: translateX(-50%);
}

/* =========================================================
   Intro scroll-to-slide-1 long arrow
   ========================================================= */
.intro__scroll-link {
    position: absolute;
    left: 50%;
    bottom: 32px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
    color: var(--dark);
    text-decoration: none;
    z-index: 5;
    cursor: pointer;
    overflow: hidden;
}

.intro__scroll-line {
    width: 1px;
    height: 60px;
    background: var(--dark);
    transform-origin: top center;
    transition: transform 0.6s ease;
}

.intro__scroll-arrow {
    width: 14px;
    height: 20px;
    margin-top: 6px;
    transition: transform 0.4s ease;
}

.intro__scroll-link:hover .intro__scroll-line {
    transform: scaleY(1.4);
    transform-origin: top center;
}

.intro__scroll-link:hover .intro__scroll-arrow {
    transform: translateY(5px);
}

@media all and (max-width: 768px) {
    .intro__scroll-link {
        /* display: none; */
        left: 82%;
        bottom: 100px
    }

    strong {
        font-weight: 800 !important;
    }
}

.wp-block-columns {
    width: 100%;
}

mark {
    text-shadow: 0 0 55px #c0d7d8, 0 0 15px #c0d7d8, 0 0 15px #c0d7d8;
}

video {
    height: 100vh !important;
    object-fit: cover;
}

.table_ {
    height: 12.4vw;
}

html {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    overflow-x: hidden;
}