body {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0;
    font-family: inter, sans-serif;
    font-size: 18px;
    color: #20252D;
    background-color: #F2F2F2;
    overflow-x: hidden;
}
*::-webkit-scrollbar {
    display: none;
}
* {
    -ms-overflow-style: none;  /* IE and Edge */
    scrollbar-width: none;  /* Firefox */
}
*::selection {
    background: #20252D;
    color: #f2f2f2;
}
*::-moz-selection {
    background: #20252D;
    color: #f2f2f2;
}
*::-webkit-selection {
    background: #20252D;
    color: #f2f2f2;
}
a {
    color: inherit;
    text-decoration: underline;
    cursor: pointer;
}
a + svg {
    display: inline-block;
}
#logo {
    margin-bottom: -4px;
}
#scrollbar {
    position: fixed;
    right: 0;
    top: 0;
    height: 100%;
    width: 40px;
    z-index: 3;
}
#scrollbar_track {
    position: absolute;
    top: 50%;
    right: 20px;
    box-sizing: border-box;
    height: calc(100% - 40px);
    max-height: 400px;
    min-height: 20px;
    width: 20px;
    transform: translate(300%, -50%);
    border-radius: 10px;
    border: 1px solid #20252d;
    transition: transform .4s cubic-bezier(0.68, 0, 0.77, 0);
}
#scrollbar_track.visible {
    transform: translate(0%, -50%);
    transition: transform .4s cubic-bezier(0.23, 1, 0.320, 1);
}
#scrollbar_thumb {
    position: absolute;
    box-sizing: border-box;
    height: 80px;
    max-height: 20%;
    min-height: 20px;
    width: 100%;
    border-radius: 10px;
    background-color: #20252d;
    cursor: pointer;
}
#content {
    position: relative;
    margin: -40px auto 0 auto;
    padding: 40px 0 40px 0;
    opacity: 0;
    transition: opacity .7s cubic-bezier(0.95, 0.05, 0.795, 0.035);
    background-color: #F2F2F2;
    overflow: hidden;
}
#header {
    position: relative;
    margin-top: 70px;
    width: 1300px;
    z-index: 2;
}
#header svg {
    cursor: pointer;
}
#header_title {
    display: flex;
    flex-direction: row;
    align-items: end;
    justify-content: center;
    height: 80px;
}
#header_title > * {
    flex-shrink: 0;
}
#header_subtitle {
    width: 200px;
    text-align: right;
}
#header_subtitle_2 {
    width: 200px;
}
#header_title div {
    margin: 0 32px -2px 32px;
    font-size: 12px;
    letter-spacing: 4px;
}
#header_buttons {
    display: flex;
    flex-direction: row;
    justify-content: center;
    height: 100px;
}
#header_buttons .button_mount {
    margin: 30px 38px 0px;
}
#hamburger {
    display: none;
    position: absolute;
    top: calc(100% + 6px);
    right: 0%;
    height: 40px;
    width: 40px;
    cursor: pointer;
}
#hamburger div {
    position: absolute;
    height: 2px;
    width: 32px;
    transform-origin: 0 50%;
    background-color: #20252D;
    transition: transform .3s cubic-bezier(0.23, 1, 0.320, 1);
}
#hamburger div:nth-child(1) {
    top: 6px;
    left: 4px;
    transform: scaleX(100%);
    transform-origin: 0% 50%;
    transition-delay: .3s;
}
#hamburger div:nth-child(2) {
    top: 18px;
    left: 4px;
    transform: scaleX(100%);
    transform-origin: 0% 50%;
    transition-delay: .4s;
}
#hamburger div:nth-child(3) {
    top: 30px;
    left: 4px;
    transform: scaleX(100%);
    transform-origin: 0% 50%;
    transition-delay: .5s;
}
#hamburger div:nth-child(4) {
    top: 32.5px;
    left: -6px;
    width: 40px;
    transform: rotate(45deg) scaleX(0%);
    transform-origin: 100% 50%;
}
#hamburger div:nth-child(5) {
    top: 4px;
    left: -6px;
    width: 40px;
    transform: rotate(-45deg) scaleX(0%);
    transform-origin: 100% 50%;
    transition-delay: .1s;
}
#hamburger.open div:nth-child(1) {
    transform: scaleX(0%);
    transform-origin: 100% 50%;
    transition-delay: 0s;
}
#hamburger.open div:nth-child(2) {
    transform: scaleX(0%);
    transform-origin: 100% 50%;
    transition-delay: .1s;
}
#hamburger.open div:nth-child(3) {
    transform: scaleX(0%);
    transform-origin: 100% 50%;
    transition-delay: .2s;
}
#hamburger.open div:nth-child(4) {
    top: 4.2px;
    left: 5.8px;
    transform: rotate(45deg) scaleX(100%);
    transform-origin: 0% 50%;
    transition-delay: .3s;
}
#hamburger.open div:nth-child(5) {
    top: 32.4px;
    left: 5.8px;
    transform: rotate(-45deg) scaleX(100%);
    transform-origin: 0% 50%;
    transition-delay: .4s;
}
#hamburger_menu {
    display: none;
    flex-direction: column;
    position: absolute;
    align-items: flex-end;
    top: calc((100vw - 40px) * .16 + 100px);
    left: 50%;
    width: calc(100vw - 84px);
    padding-top: 40px;
    transform: translateX(-50%);
    z-index: 2;
}
#hamburger_menu .button_mount {
    margin-bottom: 20px;
    transform: translateX(200%);
    opacity: 0;
    transition: transform .4s cubic-bezier(0.23, 1, 0.320, 1), opacity .4s cubic-bezier(0.23, 1, 0.320, 1);
}
#hamburger_menu span {
    margin-top: 48px;
    transform: translateX(200%);
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
    opacity: 0;
    transition: transform .4s cubic-bezier(0.23, 1, 0.320, 1), opacity .4s cubic-bezier(0.23, 1, 0.320, 1);
}
#socials {
    display: flex;
    flex-direction: row;
    justify-items: right;
    margin-top: 20px;
}
#socials .button_mount {
    margin-left: 20px;
}
.button_mount {
    position: relative;
    height: 40px;
    width: 40px;
}
.button {
    position: absolute;
    box-sizing: border-box;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 22px;
    border: 1px solid #20252D55;
    cursor: pointer;
    overflow: hidden;
    background-color: white;
    user-select: none;
    text-decoration: none;
    filter: drop-shadow(0px 3px 3px #20252d55);
}
.button .simple_fill {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: white;
    mix-blend-mode: difference;
    opacity: 0;
}
.button:hover .simple_fill {
    opacity: 1;
}
.button canvas, .button .lighten, .button .darken {
    position: absolute;
    top: 50%;
    left: 50%;
    height: 100%;
    width: 100%;
    transform: translate(-50%, -50%);
}
.button canvas {
    background-color: black;
    mix-blend-mode: difference;
    filter: blur(5px) contrast(100);
    transform: translate(-50%, -50%) rotate(60deg);
}
.lighten {
    height: 100%;
    width: 100%;
    background-color: #20252D;
    mix-blend-mode: lighten;
}
.darken {
    height: 100%;
    width: 100%;
    background-color: #F2F2F2;
    mix-blend-mode: darken;
}
.button.text {
    height: 40px;
    width: fit-content;
    padding: 12px 18px 12px 24px;
    letter-spacing: 4px;
    font-size: 12px;
    text-transform: uppercase;
    text-align: center;
    color: black;
    white-space: nowrap;
    transition: height .1s linear, padding .1s linear, margin-top .1s linear, font-weight .6s cubic-bezier(0.19, 1, 0.22, 1);
}
.button.text:hover {
    height: 44px;
    padding: 14px 20px 14px 26px;
    font-weight: 600;
}
.button.text:active {
    height: 40px;
    padding: 12px 18px 12px 24px;
    font-weight: 500;
    transition: none;
}
.button.circle {
    height: 40px;
    width: 40px;
    transition: height .1s linear, width .1s linear;
}
.button.circle:hover {
    height: 42px;
    width: 42px;
}
.button.circle:active {
    height: 40px;
    width: 40px;
    transition: none;
}
.button_mount svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}
#page_transition, #image_expand_bg {
    position: fixed;
    height: 100vh;
    width: 100vw;
    pointer-events: none;
    user-select: none;
    background-color: #000000;
    z-index: 1;
    overflow: hidden;
    mix-blend-mode: lighten;
}
#image_expand_bg {
    background-color: #FFFFFF;
    mix-blend-mode: darken;
    z-index: 4;
}
#page_transition canvas, #image_expand_bg canvas {
    position: absolute;
    top: 50%;
    left: 50%;
    background-color: #000000;
    transform: translate(-50%, -50%) rotate(60deg);
    filter: blur(10px) contrast(100);
}
#image_expand_bg div:not(.lighten) {
    width: 100%;
    height: 0%;
    background-color: #20252D;
    transition: height 1s cubic-bezier(0.23, 1, 0.320, 1);
}
#image_expand {
    display: none;
    position: sticky;
    top: 0;
    left: 0;
    height: 0px;
    width: 100vw;
    z-index: 5;
}
#image_expand_bar {
    position: absolute;
    display: none;
    flex-direction: row;
    left: 50%;
    bottom: -80px;
    height: 40px;
    transform: translateX(-50%);
    transition: bottom 1s cubic-bezier(0.23, 1, 0.320, 1);
}
#zoom {
    display: flex;
    flex-direction: row;
    box-sizing: border-box;
    height: 40px;
    padding: 0px 30px;
    margin-right: 10px;
    background-color: #F2F2F2;
    border-radius: 20px;
    border: 1px solid #20252D55;
    user-select: none;
    filter: drop-shadow(0px 3px 3px #20252d55);
}
#zoom .label {
    margin-top: 12px;
}
#zoom_minus {
    margin: 18px 20px 0px 20px;
}
#zoom_plus {
    margin: 11px 0px 0px 20px;
}
#zoom_track {
    position: relative;
    margin-top: 9px;
    box-sizing: border-box;
    height: 20px;
    width: 260px;
    border-radius: 10px;
    border: 1px solid #20252d;
}
#zoom_thumb {
    position: absolute;
    box-sizing: border-box;
    top: 0px;
    left: 0px;
    margin-top: -1px;
    height: 20px;
    width: 60px;
    border-radius: 10px;
    background-color: #20252d;
    cursor: pointer;
}
#image_expand .frame {
    transform: translate(-50%, -50%);
}
#image_expand_bg canvas {
    filter: blur(10px) contrast(100) invert();
}
#image_expand_blob1 {
    display: none;
    position: absolute;
    top: 0px;
    left: 0px;
    height: 360px;
    width: 100vw;
    z-index: -1;
    pointer-events: none;
}
#image_expand_blob2 {
    display: none;
    position: absolute;
    top: max(400px, calc(100vh - 360px));
    left: 0px;
    height: 360px;
    width: 100vw;
    z-index: -1;
    pointer-events: none;
}
#image_expand_blob1 svg, #image_expand_blob2 svg {
    position: absolute;
    height: 200%;
    width: 100%;
    z-index: 1;
}
#blob1_svg {
    top: 0;
    transform: translateY(-50%);
    transition: transform 3s cubic-bezier(0.23, 1, 0.320, 1);
}
#blob2_svg {
    bottom: 0;
    transform: translateY(50%);
    transition: transform 3s cubic-bezier(0.23, 1, 0.320, 1);
}
.frame {
    user-select: none;
    transition: auto;
    background-color: #20252D;
}
.frame video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}
.frame img {
    position: absolute;
    top: 50%;
    left: 50%;
}
.frame .button_mount {
    position: absolute;
    right: 20px;
    bottom: 20px;
}
.frame .button {
    transform: translate(-50%, -50%) scale(100%);
    transition: transform .2s cubic-bezier(0.23, 1, 0.320, 1);
}
#img_placeholder {
    opacity: 0;
}
.display_text {
    font-size: 64px;
    letter-spacing: -2px;
    font-weight: 900;
    text-transform: uppercase;
}
.label {
    font-size: 12px;
    letter-spacing: 4px;
    text-transform: uppercase;
}
.text_block {
    max-width: 520px;
    font-size: 18px;
    line-height: 28px;
}
.text_block span {
    display: inline-block;
    opacity: 0;
}
.mask {
    position: absolute;
    user-select: none;
    animation: mask_slide 1s cubic-bezier(0.25, 0.46, 0.2, 1) forwards;
}
.mask_fill {
    position: absolute;
    height: 100%;
    width: 0%;
    overflow: hidden;
    animation: mask_fill 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}
.shadow {
    animation: mask_fill 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards, shadow_fade 2s linear forwards;
    filter: contrast(0) brightness(200);
}
.mask_content {
    position: absolute;
    width: fit-content;
    transform-origin: 0 0;
    white-space: nowrap;
}
@keyframes mask_slide {
    from {
        transform: translateX(600px) rotate(-30deg);
    } to {
        transform: translateX(0px) rotate(-30deg);
    }
}
@keyframes mask_fill {
    from {
        width: 0%;
    } to {
        width: 100%;
    }
}
@keyframes shadow_fade {
    from {
        opacity: 1;
    } to {
        opacity: 0;
    }
}
@keyframes fadeUp {
    from {
        transform: translateY(100%);
        opacity: 0;
    } to {
        transform: translateY(0%);
        opacity: 1;
    }
}
.mount {
    position: relative;
    height: 200px;
    width: 260px;
    margin: 0px 65px;
    transform: translateY(200%);
    opacity: 0;
}
.mount .item, .mount a {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    height: 100%;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: height .5s cubic-bezier(0.23, 1, 0.320, 1), width .5s cubic-bezier(0.23, 1, 0.320, 1), margin .5s cubic-bezier(0.23, 1, 0.320, 1);
    filter: drop-shadow(0px 4px 4px #20252d55);
}
.mount .item_text {
    position: absolute;
    top: calc(100% + 16px);
    width: 260px;
    font-size: 16px;
    transition: top .5s cubic-bezier(0.23, 1, 0.320, 1);
}
.mount .item_text .title {
    text-transform: uppercase;
    line-height: 24px;
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 4px;
}
.mount .item:hover, .mount a:hover {
    height: 240px;
    width: 390px;
}
.mount .item img,  .mount .item video{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition: opacity .5s;
}
.blobs {
    overflow: hidden;
    mix-blend-mode: darken;
    user-select: none;
    z-index: 0;
}
.blobs.invert {
    mix-blend-mode: lighten;
}
.blobs canvas {
    position: absolute;
    top: -100px;
    left: -100px;
    height: calc(100% + 200px);
    width: calc(100% + 200px);
    background-color: white;
    mix-blend-mode: multiply;
    filter: blur(6px) brightness(.62) contrast(300);
}
.blobs div {
    height: 100%;
    width: 100%;
    background-color: #20252D;
    mix-blend-mode: lighten;
}
.blobs img {
    position: absolute;
}
.stasis {
    display: block !important;
    position: absolute;
    opacity: 0;
}
@media (max-width: 989px) { /*mobile*/
    #content {
        width: calc(100% - 84px);
        margin: -40px auto 0 auto;
        padding: 40px 42px 40px 42px;
    }
    #header {
        margin-top: 40px;
        margin-bottom: 60px;
        width: calc(100vw - 84px);
    }
    #header_title {
        display: block;
        height: fit-content;
    }
    #header_title div {
        margin: 0;
    }
    #header svg {
        width: 100%;
        height: auto;
        flex-shrink: 0;
        object-fit: cover;
    }
    #header_subtitle {
        position: absolute;
        top: calc(100% + 10px);
        left: 0px;
        text-align: left;
    }
    #header_subtitle_2 {
        display: none;
    }
    #header_buttons {
        display: none;
    }
    #hamburger {
        display: block;
    }
    #scrollbar {
        display: none;
    }
    .display_text {
        font-size: calc((100vw - 84px) / 318px * 42px);
        letter-spacing: calc((100vw - 84px) / 318px * -2px);
    }
    .text_block {
        position: relative;
        width: 100%;
    }
    .text_block span {
        display: inline;
    }
    .mount {
        width: 100%;
        height: calc((100vw - 84px) / 318px * 240px);
        margin: 0 0 120px 0 !important;
    }
    .mount .item img {
        position: relative;
        height: 100%;
        width: 100%;
        top: 0;
        left: 0;
        object-fit: cover;
        transform: none;
    }
    .mount .item video {
        display: none;
    }
    .mount .item:hover {
        height: inherit;
        width: inherit;
    }
    .mount .item:hover img {
        opacity: 1;
    }
    .frame video {
        height: auto;
        width: 100%;
    }
}
@media (min-width: 990px) { /*desktop narrow*/
    #content {
        width: 910px;
    }
    #header {
        width: 910px;
    }
    .text_block {
        position: absolute;
    }
    .frame video {
        height: 100%;
        width: auto;
    }
}
@media (min-width: 1380px) { /*full desktop*/
    #content {
        width: 1300px;
    }
    #header {
        width: 1300px;
    }
}