body, html {
    overflow: hidden;
    user-select: none;
}
@media (hover: none) {
    body {
        cursor: none !important;
    }
}
#container {
    background: #000;
    position: absolute;
    inset: 0;
    overflow: hidden;
}
.page {
    position: absolute;
    inset: 0;
    background-color: #000;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    background-position: center;
    z-index: 3;
    transition: 500ms clip-path cubic-bezier(0, 0, 1, 1.3), 100ms 400ms opacity linear;
    -webkit-tap-highlight-color: transparent;
}
.page-main {
    z-index: 1
}
.page.page-top {
    z-index: 3;
}
.page:not(.page-main) {
    clip-path: circle(var(--marker-size, 1.25vmax) at var(--clip-page-x) var(--clip-page-y));
    cursor: pointer;
    opacity: 0;
}
.page.page-active {
    clip-path: circle(100% at var(--clip-page-x) var(--clip-page-y));
    transition: 600ms clip-path cubic-bezier(1, 0, 0.6, 1);
    opacity: 1;
}
.marker-title {
    position: absolute;
    background: transparent;
    z-index: 2;
    cursor: pointer;
}
.langs {
    position: absolute;
    right: 70px;
    bottom: 40px;
    display: flex;
    z-index: 5;
    gap: 20px;
}
.langs .lang {
    width: 90px;
    height: 60px;
    background: transparent no-repeat center/100% 100%;
    cursor: pointer;
    border: 2px solid #FFF;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}
/*.marker-title {
    background: #F005;
}
.page:not(.page-main) {
    opacity: 0.4;
}
* {
    transition: none !important;
}*/