@charset "UTF-8";


@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url("/HelveticaNowDisplay-Regular.woff2") format("woff2");
    font-weight: 400;
    font-display: swap;
    font-style: normal;
    font-named-instance: 'Regular';
}


@font-face {
    font-family: 'HelveticaNowDisplay';
    src: url("/HelveticaNowDisplay-ExtraBold.woff2") format("woff2");
    font-weight: 700;
    font-display: swap;
    font-style: normal;
    font-named-instance: 'Extra Bold';
}



*,
h1,
h2,
h3,
h4,
h5,
h6,
a {
    margin: 0;
    padding: 0;
    text-decoration: none;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

*,
::after,
::before {
    box-sizing: border-box
}

:root {
    --accent-color: #6876ff;
    --accent-color-dark: #5562d2;
    --accent-color-light: #6876ff;
    --color-red: #de2d2d;
    --color-green: #3dc226;
    --color-orange: #e7842d;
    --generic-element-margin: 32px;
}

@media(min-width: 900px) {
    :root {
        --app-height: 100vh;
        --app-border-radius: 0;
    }
}

@media(max-width: 700px) {
    :root {
        --generic-element-margin: 16px;
    }
}

::-moz-selection {
    color: #ffffff;
    background: var(--accent-color);
}

::selection {
    color: #ffffff;
    background: var(--accent-color);
}

h2 {
    position: relative;
    display: block;
    line-height: 1.25;
    font-size: 42px;
    margin: 0 0 27px 0;
    cursor: default;
}

@media(max-width: 700px) {
    h2 {
        font-size: 28px;
    }
}

p {
    position: relative;
    display: block;
    line-height: 1.5;
    margin: 0;
    color: #999999;
    cursor: default;
}


body {
    margin: 0;
    font-family: "HelveticaNowDisplay", -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, "Helvetica Neue", Arial, "HelveticaNowDisplay", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    font-size: 17px;
    font-weight: 400;
    line-height: 1.25;
    text-align: left;
    background: #000000;
    overflow: hidden;
    width: 100%;
    height: 100vh;
}

img,
video {
    pointer-events: none;
}

body > bg {
    position: absolute;
    display: block;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
}

body > bg > content {
    position: relative;
    display: flex;
    height: 100%;
}

body > bg > content::before {
    position: relative;
    display: block;
    flex: 1 1 100%;
    min-width: 700px;
    content: '';
}

body > bg > content > video {
    position: relative;
    display: block;
    height: 100%;
    width: auto;
    margin: 0;
    padding: 0;
    flex-shrink: 0;
    flex-grow: 0;
}

@media(max-width: 500px) {
    body > bg > content > video {
        position: absolute;
        left: 0;
        top: -55vw;
        width: 100vw;
        height: auto;
        transform: rotate(-90deg);
    }
}


body > content {
    position: relative;
    display: block;
    width: 100%;
    height: 100%;
}

body > content > logowrap {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
    padding: 102px;
}

body > content > logowrap > img {
    position: relative;
    display: block;
    height: 64px;
    width: auto;
    margin: 0;
    padding: 0;
}

@media(max-width: 700px) {
    body > content > logowrap > img {
        height: 52px;
    }
}

@media(max-width: 500px) {
    body > content > logowrap > img {
        height: 46px;
    }
}

body > content > info {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    margin: 0;
    padding: 102px;
    opacity: 0;
}

@media(max-width: 980px) {
    body > content > info {
        padding: 52px;
    }
}

body > content > info > logowrap {
    position: absolute;
    left: 0;
    bottom: 0;
    padding: 102px;
    display: block;
    color: #ffffff;
}

@media(max-width: 980px) {
    body > content > info > logowrap {
        padding: 52px;
    }
}

body > content > info > logowrap > a {
    position: relative;
    display: block;
    margin: 0;
    padding: 0;
    text-decoration: none;
}

body > content > info > logowrap > a > img {
    position: relative;
    display: block;
    height: 32px;
    width: auto;
    margin: 0;
    padding: 0;
}


body > content > info > logowrap > p {
    margin: 16px 0 0 0;
    font-size: 12px;
    color: #666666;
}

body > content > info > content {
    position: relative;
    display: block;
    width: 100%;
    max-width: 600px;
    color: #ffffff;
}