@media screen and (min-width: 1168px) {

    :root {
        --nav-h: 2.5vw;
        --fb-top: auto;
        --fb-left: auto;
        --fb-width: auto;
        --fb-height: auto;
    }

    body,
    html {
        margin: 0;
        padding: 0;
        width: 100%;
        background-color: white;
        overflow-x: hidden;
        height: 100%;
    }

    .box-one {
        position: relative;
        width: calc(100vw - 72px);
        height: calc(100vh - 72px);
        margin: 36px;
        border-radius: 54px;
        overflow: hidden;
        display: flex;
        flex-direction: column;
        justify-content: space-evenly;
        align-items: center;
    }

    .box-one video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
    }

    .glory-vector {
        position: absolute;
        left: 50%;
        bottom: 40%;
        transform: translateX(-50%);
        width: 70vw;
        height: auto;
    }

    .universe-vector {
        position: absolute;
        top: calc(60% + 5vw);
        left: 50%;
        width: 40vw;
        transform: translateX(-50%);
        height: auto;
    }

    .glory-vector svg,
    .universe-vector svg {
        width: 100%;
        height: auto;
        display: block;
    }

    .glory-vector svg path,
    .universe-vector svg path {
        fill: white;
        stroke: white;
        stroke-width: 36px;
    }

    .box-one .navbar {
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 9.6vw;
        width: auto;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 103;
        pointer-events: none;
        transition: transform 0.9s ease;
    }

    body.menu-is-open .box-one .navbar {
        transform: translateY(36px);
    }

    .box-one .navbar .menu-stick {
        position: relative;
        top: 0;
        left: 0;
        transform: none;
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        z-index: 104;
        cursor: pointer;
        pointer-events: auto;
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        -webkit-touch-callout: none;
        outline: none;
    }

    .box-one .navbar .menu-stick span:first-child {
        position: relative;
        left: auto;
        transform: none;
        width: 18%;
        height: var(--nav-h);
        background: white;
        border-radius: 9999px;
        transition: width .45s ease;
    }

    .box-row {
        display: flex;
        justify-content: center;
    }

    .box-three,
    .box-four {
        flex: 1;
        overflow: hidden;
        position: relative;
        width: calc(50vw - 54px);
        height: calc(50vw - 54px);
        border-radius: 54px;
        margin-bottom: 36px;
        overflow: hidden;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .holo-text {
        position: absolute;
        bottom: 8vh;
        left: 50%;
        transform: translateX(-50%);
        width: 75%;
        height: 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
        text-align: center;
        color: whitesmoke;
        font-family: "Inter", sans-serif;
        font-size: 1vw;
        font-style: normal;
        font-weight: 200;
        line-height: normal;
    }

    .holo-vector {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -125%);
        height: 8vw;
        width: auto;
    }

    .earth-vector svg,
    .holo-vector svg {
        display: block;
        height: 100%;
        width: auto;
    }

    .earth-vector svg path,
    .holo-vector svg path {
        fill: white;
        stroke: white;
        stroke-width: 36px;
    }

    .earth-vector {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, 25%);
        height: 8vw;
        width: auto;
    }

    .gorkem-link {
        position: absolute;
        width: 100%;
        height: 100%;
        overflow: hidden;
        border-radius: 54px;
        z-index: 99;
    }

    .gor-vector {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, -125%);
        height: 8vw;
        width: auto;
    }

    .gor-vector svg {
        display: block;
        height: 100%;
        width: auto;
    }

    .gor-vector svg path {
        fill: white;
        stroke: white;
        stroke-width: 36px;
    }

    .kem-vector {
        position: absolute;
        left: 50%;
        top: 50%;
        transform: translate(-50%, 25%);
        height: 8vw;
        width: auto;
    }

    .kem-vector svg {
        display: block;
        height: 100%;
        width: auto;
    }

    .kem-vector svg path {
        fill: white;
        stroke: white;
        stroke-width: 36px;
    }

    .gorkem-text {
        position: absolute;
        bottom: 8vh;
        left: 50%;
        transform: translateX(-50%);
        width: 75%;
        height: 5%;
        display: flex;
        flex-direction: column;
        justify-content: center;
        flex-shrink: 0;
        text-align: center;
        color: whitesmoke;
        font-family: "Inter", sans-serif;
        font-size: 1vw;
        font-style: normal;
        font-weight: 200;
        line-height: normal;
    }

    .box-four>img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        object-position: center 20%;
        border-radius: 54px;
        display: block;
    }

    .box-three video {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 54px;
        display: block;
    }

    .box-three {
        margin-right: 18px;
        margin-left: 36px;
    }

    .box-four {
        margin-right: 36px;
        margin-left: 18px;
    }

    body.menu-is-open .box-one .navbar .menu-stick span:first-child {
        width: 45%;
        transform: none;
    }

    .menu-overlay {
        position: fixed;
        inset: 0;
        z-index: 100;
        background: #111;
        transform: translateY(-100%);
        display: flex;
        justify-content: flex-start;
        align-items: stretch;
        overflow: hidden;
        visibility: hidden;
        transition: transform .6s cubic-bezier(.77, 0, .175, 1), visibility 0s linear .6s;
        overscroll-behavior: contain;
        touch-action: pan-y;
    }

    html.menu-is-open,
    body.menu-is-open {
        overflow: hidden;
        position: fixed;
        width: 100%;
    }

    body.menu-is-open .menu-overlay {
        transform: translateY(0);
        visibility: visible;
        transition: transform .6s cubic-bezier(.77, 0, .175, 1), visibility 0s;
    }

    .overlay-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        width: 100%;
        height: 100%;
        overflow-y: auto;
        -webkit-overflow-scrolling: touch;
        box-sizing: border-box;
        text-align: center;
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .overlay-content>* {
        opacity: 0;
        transform: translateY(20px);
        transition: opacity .45s cubic-bezier(.4, 0, .2, 1),
            transform .45s cubic-bezier(.4, 0, .2, 1);
        will-change: opacity, transform;
    }

    body.menu-is-open .overlay-content>*:nth-child(1) {
        transition-delay: .05s;
    }

    body.menu-is-open .overlay-content>*:nth-child(2) {
        transition-delay: .10s;
    }

    body.menu-is-open .overlay-content>*:nth-child(3) {
        transition-delay: .15s;
    }

    body.menu-is-open .overlay-content>*:nth-child(4) {
        transition-delay: .20s;
    }

    body.menu-is-open .overlay-content>*:nth-child(5) {
        transition-delay: .25s;
    }

    body.menu-is-open .overlay-content>*:nth-child(6) {
        transition-delay: .30s;
    }

    body.menu-is-open .overlay-content>*:nth-child(7) {
        transition-delay: .35s;
    }

    body.menu-is-open .overlay-content>*:nth-child(8) {
        transition-delay: .40s;
    }

    html.menu-is-open {
        overflow: hidden;
    }

    .box-one .navbar .menu-stick {
        -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
        -webkit-touch-callout: none;
        outline: none;
    }

    .box-one .navbar .menu-stick,
    .box-one .navbar .menu-stick * {
        -webkit-user-select: none;
        user-select: none;
        pointer-events: auto;
    }

    .box-one .navbar .menu-stick:focus {
        outline: none;
    }

    .module-one-link,
    .module-two-link,
    .module-three-link,
    .module-four-link {
        display: inline-block;
        width: 100%;
        height: 100%;
        border-radius: 63px;
        text-decoration: none;
        z-index: 103;
    }

    .modules-row {
        display: flex;
        gap: 72px;
        width: calc(100vw - 144px);
        height: auto;
        align-items: center;
    }

    .modules-row .module-two,
    .modules-row .module-three,
    .modules-row .module-four {
        flex: 1 1 1;
        width: 100%;
        background: #D9D9D9;
    }

    .module-one {
        position: relative;
        width: calc(100vw - 144px);
        margin-bottom: 72px;
        height: 50vh;
        border-radius: 63px;
        box-sizing: border-box;
        flex: 0 0 50vh;
        background: #D9D9D9;
        z-index: 102;
    }

    body.menu-is-open .overlay-content>* {
        opacity: 1;
        transform: translateY(0);
    }

    .module-two,
    .module-three,
    .module-four {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        width: calc(100vw - 144px);
        margin-left: auto;
        margin-right: auto;
        border-radius: 63px;
        height: calc(50vh - 216px);
        background-color: #D9D9D9;
        z-index: 102;
    }

    a {
        text-decoration: none;
    }

    .backdrop {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.9);
        z-index: 98;
        opacity: 0;
        visibility: hidden;
        transition: opacity 0.9s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s linear 0.6s;
    }

    body.menu-is-open .backdrop {
        opacity: 1;
        visibility: visible;
        transition: opacity 0.6s cubic-bezier(0.77, 0, 0.175, 1), visibility 0s linear 0s;
    }
}