/* Vertical Parallax Slides Base Styles */
.ce-vps-wrapper {
    position: relative;
    width: 100%;
    --vps-dark: #242423;
}

.ce-vps-slide {
    display: flex;
    align-items: stretch;
    height: 100vh;
    overflow: hidden;
    position: relative;
}

.ce-vps-col {
    flex-basis: 50%;
    width: 50%;
    height: 100%;
}

.ce-vps-col.col--1 {
    position: relative;
    z-index: 2;
}

.ce-vps-col.col--2 {
    position: relative;
    overflow: hidden;
    z-index: 1;
}

/* Content Layout */
.ce-vps-content {
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    overflow: hidden;
    height: 100%;
    padding: 6vw 6vw 10vw;
}

.ce-vps-title {
    margin: 0 0 2vw;
    font-size: 11vw;
    line-height: 1;
    letter-spacing: -0.8vw;
    color: var(--vps-dark);
}

.ce-vps-content-wrap {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.ce-vps-txt {
    max-width: 22vw;
    margin-left: 32px;
    order: 2;
    font-size: 1.1vw;
}

/* Link Styling */
.ce-vps-link {
    position: relative;
    order: 1;
    display: flex;
    justify-content: flex-end;
    width: 75px;
    height: 53px;
}

.ce-vps-link-circ {
    width: 53px;
    height: 53px;
    border-radius: 50%;
    border: 1px solid var(--vps-dark);
}

.ce-vps-link-line {
    position: absolute;
    top: 25px;
    left: 0;
    width: 64px;
    height: 3px;
    background: var(--vps-dark);
}

/* Image Parallax Container */
.ce-vps-image-wrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 160%;
    /* Extra height for move */
}

.ce-vps-img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

/* Split Line Reveal Fix */
.line__inner {
    display: block;
    will-change: transform;
}

/* Responsive */
@media all and (max-width: 1024px) {
    .ce-vps-title {
        font-size: 14vw;
    }

    .ce-vps-txt {
        font-size: 2vw;
        max-width: 35vw;
    }
}

@media all and (max-width: 768px) {
    .ce-vps-slide {
        display: block;
    }

    .ce-vps-col {
        width: 100%;
        height: 100vh;
    }

    .ce-vps-col.col--2 {
        position: absolute;
        top: 0;
        left: 0;
        z-index: 0;
    }

    .ce-vps-col.col--1 {
        background: rgba(255, 255, 255, 0.7) !important;
    }

    .ce-vps-content {
        width: 100%;
        padding: 20vw 10vw;
    }

    .ce-vps-content-wrap {
        flex-direction: column;
        align-items: flex-start;
    }

    .ce-vps-txt {
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 5vh;
    }
}