body {
    margin: 0;
}

.mobile-nav {
    display: none;
}

.split-scroll {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: clip;
}

.full-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background-color: #fff;
    z-index: 8;
    overflow: hidden;
    transition: all 1.5s;
}

.split-scroll .split-left, .split-scroll .split-right {
    position: absolute;
    top: 0;
    height: 100vh;
    width: 50vw;
    overflow-y: auto;
    transition: all 1.5s;
}

.split-scroll .split-left {
    left: 0;
}

.split-scroll .split-right {
    right: 0;
}

.full-slide.active {
    top: 0;
}

.full-slide.out {
    top: -100vh;
}

.split-left.active {
    top: 0;
}

.split-left.lower, .split-right.lower {
    top: 100vh;
}

.split-right.upper, .split-left.upper {
    top: -100vh;
}

.blue {
    background-color: #0505b8;
}

.green {
    background-color: #009200;
}

.red {
    background-color: #dd0303;
}

.yellow {
    background-color: #e2d408;
}

.navigation-dots {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 20;
}

.navigation-dots .dot {
    width: 15px;
    height: 15px;
    border-radius: 50%;
    background-color: #ccc;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.navigation-dots .dot.active {
    background-color: #333;
}
