@import url(https://fonts.googleapis.com/css?family=Barlow:100,200,300,400,500,600,700,800,900);
@import url(https://fonts.googleapis.com/css?family=Open+Sans:400,500,700,800);


body, html{
    background-color: #FBFBFB;
    font-family: "Open Sans", "Helvetica Neue", sans-serif;
    padding: 0;
    margin: 0;
    box-sizing: border-box;
    overflow-y: auto;
    overflow-x: hidden;
}

*{
    box-sizing: border-box;
    cursor: default;
}

:root{
    --blacc: #1A1A1A;
    --purple-gradient: linear-gradient(90deg, rgba(107,74,239,1) 0%, rgba(184,73,235,1) 100%);
    --green-gradient: linear-gradient(90deg, #7BDBD1 0%, #8EEF5E 100%);
    --red-gradient: linear-gradient(90deg, #FE9800 0%, #F32A54 100%);
}


button.brand{
    font-family: "Barlow";
    color: #fff;
    font-weight: 700;
    text-transform: uppercase;
    border-radius: 40px;
    padding: 10px 30px;
    border: none;
    background: #6b4aef;
    background: var(--purple-gradient);
    box-shadow: 0px 2px 10px 0px rgba(175,73,236,0.45);
    cursor: pointer;
}

nav{
    display: flex;
    justify-content: space-between;
    align-items: center;
}


nav > a {
    margin-right: 20px;
}


header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between; 
    padding: 20px 15px;
    position: fixed;
    top: 0;
    left: 0;
    transition: 200ms background;
    z-index: 10;
}

.headerLink{
    cursor: pointer;
    font-family: "Barlow";
    color: #5B5B5B;
    text-decoration: none;
    text-transform: uppercase;
    font-weight: 700;
    font-size: 1.1rem;
}

.headerLogo{
    height: 35px;
}

#whiteLogo{
    display: none;
}

#heroBlackout{
    background-color: var(--blacc);
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    opacity: 0;
    transition: 100ms opacity;
    pointer-events: none;
}

.heroPanel{
    height: 100vh;
    width: 100vw;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.heroHeading{
    font-family: "Barlow";
    text-transform: uppercase;
    font-size: 2.5vw;
    margin-bottom: 1vw;
}

.heroContent{
    display: flex;
}

.heroCopy{
    flex: 1;
    width: 40vw;
    max-width: 900px;
}

.heroVideo{
    flex: 1;
}

.heroVideo > iframe{
    width: 40vw;
    height: 20vw;
    max-width: 900px;
    max-height: 450px;
}

.heroCopy > h1{
    font-family: "Barlow";
    text-transform: uppercase;
    font-size: 55px;
    margin-bottom: 10px;
}

.heroCopy > p{
    font-size: 22px;
}

.heroCopy > .creditCopy{
    font-size: 14px;
}

.heroCopy > .brand{
    margin-right: 5px;
}

#brandVideo{
    background: var(--blacc);
    box-shadow: none;
    display: none;
}


.chatBubble{
    background-color: var(--blacc);
    color: #fff;
    border-radius: 2.5vw 0px 2.5vw 2.5vw;
    padding: .65vw 1vw;
    padding-left: 1.6vw;
    line-height: 1.4vw;
    font-size: .9vw;
    margin-bottom: .5vw;
}

#smileEmoji{
    width: 1.1vw;
    display: inline;
    position: relative;
    top: .2vw;
    margin-left: .1vw;
}

#morePrompt{
    position: absolute;
    bottom: 0;
    display: inline-flex;
    flex-direction: column;
    text-transform: uppercase;
    color: var(--blacc);
    font-size: 20px;
    font-family: "Barlow";
    font-weight: bold;
    align-items: center;
    margin-bottom: 25px;
    animation: MoveUpDown 2s ease-in-out infinite;
    cursor: pointer !important;
    padding: 5px;
    transition: 300ms 4s opacity;
    opacity: 0;
}

#morePrompt > img{
    margin-top: 3px;
    width: 12px;
    cursor: pointer !important;
}

#morePrompt > span{
    cursor: pointer !important;
}

/* video panel */
#videoPanel{
    padding-top: 0;
    background-color: var(--blacc);
}

#videoPanel > h3{
    text-transform: uppercase;
    font-family: "Barlow";
    color: var(--blacc);
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 0;
}

#introVideo{
    padding-bottom: 30px;
    width: 100%;
    background-color: var(--blacc);
}

#introVideo > iframe{
    max-height: 45vmin;
    max-width: 90vmin;
    height: 45vmin;
    width: 90vmin;
}


/* block content panel */
#blockPanel{
    display: flex;
    justify-content: space-between;
    max-width: 1500px;
    margin: auto;
    padding-top: 2vh;
    margin-bottom: 5vh;
}

#blockPanel > .featureBlock{
    padding: 50px;
}

#blockPanel > .featureBlock > h3{
    text-transform: uppercase;
    font-family: "Barlow";
    color: var(--blacc);
    font-size: 25px;
}

/* conent panel */
#contentHeading{
    width: 100%;
    background: var(--blacc);
    color: #fff;
    font-family: "Barlow";
    font-size: 40px;
    padding: 80px 0px;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
    padding-bottom: 70px;
}

.contentPanel{
    padding-top: 5vh;
    text-align: center;
}

.featureCard{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 100px;
}

.reverseCard{
    flex-direction: row-reverse;
}

.featureCopy{
    margin-right: 100px;
    width: 350px;
    text-align: left;
}


.reverseCard > .featureCopy{
    margin-right: 0;
    margin-left: 100px;
}

.featureHeading{
    text-transform: uppercase;
    font-family: "Barlow";
    color: var(--blacc);
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 0;
    
}

.featureSub{
    margin-top: 0;
    font-size: 19px;
    font-weight: bold;
    color: #383838;
    text-transform: uppercase;
    font-family: "Barlow";
    margin-bottom: 10px;
}

.featureMain{
    font-size: 15px;
    line-height: 23px;
}

.featureVideo{
    height: 250px;
    width: auto;
    box-shadow: 2px 2px 8px #00000031;
}

/* preregister panel */
#preRegisterHeading{
    width: 100%;
    background: var(--blacc);
    color: #fff;
    font-family: "Barlow";
    font-size: 40px;
    padding: 50px 0px;
    padding-bottom: 0;
    text-align: center;
    text-transform: uppercase;
    margin-top: 0;
    margin-bottom: 0;
}

.preRegisterPanel{
    background: var(--blacc);
    width: 100%;
    padding: 30px;
    padding-bottom: 120px;
    text-align: center;
}

.preRegisterPanel > p {
    color: #fff;
    width: 100%;
    text-align: center;
}

form{
    width: 750px;
    max-width: 90vw;
    margin: auto;
    padding: 80px 30px;
    display: flex;
    flex-direction: column;
}

label{
    color: #fff;
    display: flex;
    flex-direction: column;
    align-items: center;
}

label > .label{
    font-size: 19px;
    font-weight: bold;
    color: #FFFFFF;
    text-transform: uppercase;
    font-family: "Barlow";
    margin-bottom: 8px;
    text-align: left;
    width: 100%;
}

label > input{
    width: 100%;
    font-size: 1.2rem;
    padding: 10px;
    border-radius: 5px;
    border: 1px solid var(--blacc);
}

#largeCTA{
    align-self: flex-end;
    font-size: 1.5rem;
    margin-top: 40px;
    transition: 150ms transform;
}

/* footer */
footer{
    background: var(--blacc);
    color: #fff;
    text-align: center;
    padding: 10px;
}

footer > .footerLine > a {
    color: #fff;
    text-decoration: none;
    cursor: pointer;
    display: inline-block;
}

.footerLine{
    padding-bottom: 5px;
    padding-top: 5px;
    position: relative;
}

.footerLine > a > img{
    height: 20px;
    width: 20px;
    margin: 5px;
    cursor: pointer;
}

#screenshotPanel{
    display: flex;
    max-width: 1500px;
    justify-content: center;
    align-items: center;
    margin: auto;
    width: 90vw;
    padding: 40px;
    margin-bottom: 60px;
}

#screenshotContainer{
    flex: 1;
    padding-right: 40px;
}

#infoCol{
    width: 350px;
    min-width: 350px;
    text-align: left;
}

#screenshot{
    width: 100%;
    height: auto;
    margin-bottom: 30px;
    pointer-events: none;
}

.infoTile{
    margin-bottom: 30px;
}

.infoTile > h3{
    font-family: "Barlow";
    font-size: 35px;
    text-transform: uppercase;
    margin-bottom: 0;
    margin-top: 0;
}

.infoTile > p{
    margin-top: 5px;
    font-size: 15px;
    line-height: 23px;
}

@media screen and (max-width: 2100px) {
    .heroCopy > h1{
        font-size: 2.4vw;
    }
    
    .heroCopy > p{
        font-size: 1vw;
    }
}

@media screen and (max-width: 1800px) {
    .heroCopy{
        width: 45vw;
    }
    
    .heroVideo > iframe{
        width: 45vw;
        height: 22.5vw;
    }
    
    .heroCopy > h1{
        font-size: 2.4vw;
    }
    
    .heroCopy > p{
        font-size: 20px;
    }
    
    .chatBubble{
        font-size: 15px;
        border-radius: 45px 0px 45px 45px;
        padding: 11.5px 18px;
        padding-left: 28px;
        line-height: 25px;
        margin-bottom: 9;
    }
    
    #smileEmoji{
        width: 18px;
        display: inline;
        position: relative;
        top: 4px;
        margin-left: 3px;
    }
}


@media screen and (max-width: 1500px) {
    #blockPanel > .featureBlock{
        padding: 30px;
    }
    
    .heroCopy{
        width: 47vw;
    }
    
    .heroVideo > iframe{
        width: 47vw;
        height: 23.5vw;
    }
    
    .heroCopy > h1{
        font-size: 2.4vw;
    }
    
    .heroCopy > p{
        font-size: 18px;
    }
    
}


@media screen and (max-width: 1300px) {
    .heroHeading{
        font-size: 35px;
        margin-bottom: 13px;
    }
    
    #blockPanel{
        flex-direction: column;
        align-items: center;
    }
    
    #blockPanel > .featureBlock{
        max-width: 800px;
    }

    #screenshotPanel{
        flex-direction: column;
    }

    #screenshotContainer{
        padding-right: 0;
    }

    #infoCol{
        width: 100%;
        display: flex;
        flex-flow: wrap;
        justify-content: space-around;
    }

    .infoTile{
        padding: 15px;
        text-align: center;
        width: 35%;
    }
}

@media screen and (max-width: 1200px) {
    #screenshotPanel{
        padding: 0;
    }

    .infoTile{
        width: 45%;
    }
}


@media screen and (max-width: 1050px) {
    .featureVideo{
        height: 200px;
        width: auto;
    }
    
    
    .heroCopy{
        width: 90vw;
    }
    
    .heroCopy > h1{
        font-size: 25px;
    }
    
    .heroVideo{
        display: none;
    }
    
    #brandVideo{
        display: inline-block;
    }
    
    .heroCopy > p{
        font-size: 17px;
    }
}


@media screen and (max-width: 950px) {
    .heroHeading{
        font-size: 25px;
        margin-bottom: 8px;
    }
    
    .chatBubble{
        font-size: 13px;
        border-radius: 35px 0px 35px 35px;
        padding: 10px 15px;
        padding-left: 22px;
        line-height: 20px;
        margin-bottom: 9;
    }
    
    #contentHeading, #preRegisterHeading{
        font-size: 30px;
    }

    .infoTile{
        width: 500px;
        max-width: 95vw;
    }
}

@media screen and (max-width: 900px) {
    
    .featureCard{
        flex-direction: column;
        width: 90%;
        margin: auto;
        margin-bottom: 50px;
    }
    
    .featureCopy, .reverseCard > .featureCopy{
        margin-right: 0;
        margin-left: 0;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .featureVideo{
        align-self: flex-start;
    }
    
    form{
        width: 100%;
    }
    
    nav > .headerLink{
        font-size: 1rem;
    }
    
    
}

@media screen and (max-width: 720px) {
    
    .heroHeading{
        text-align: right;
        max-width: 80vw;
    }
    
    .headerLogo{
        height: 29px;
    }
    
    
    .hideOnMobile{
        display: none;
    }
}

@media screen and (max-width: 550px) {
    .featureVideo{
        width: 100%;
        height: auto;
    }
    
    .featureHeading{
        font-size: 33px;
    }
}

@media screen and (max-width: 500px) {
    #contentHeading, #preRegisterHeading{
        font-size: 25px;
    }
}



/* animation classes */


@keyframes MoveUpDown {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-30%);
    }
}

.chat-message-pop {
    -webkit-animation: chat-message-pop 0.6s cubic-bezier(0.175, 0.885, 0.320, 1) both;
    animation: chat-message-pop 0.6s cubic-bezier(0.175, 0.885, 0.320, 1) both;
}

#bubble1{
    animation-delay: 1600ms;
    transition: 500ms 2900ms border-radius ease-out;
}

#bubble2{
    animation-delay: 3000ms;
}



@-webkit-keyframes chat-message-pop {
    0% {
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
    }
}

@keyframes chat-message-pop {
    0% {
        -webkit-transform: translateX(10%);
        transform: translateX(10%);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0;
    }
    100% {
        -webkit-transform: translateX(0%);
        transform: translateX(0%);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
    }
}


/* ----------------------------------------------
* Generated by Animista on 2020-12-8 21:46:25
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */

/**
* ----------------------------------------
* animation swing-in-top-fwd
* ----------------------------------------
*/


.swing-in-top-fwd {
    -webkit-animation: swing-in-top-fwd 0.7s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
    animation: swing-in-top-fwd 0.7s cubic-bezier(0.175, 0.885, 0.320, 1.275) both;
    animation-delay: 500ms;
}


@-webkit-keyframes swing-in-top-fwd {
    0% {
        -webkit-transform: rotateX(-100deg);
        transform: rotateX(-100deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
    }
}
@keyframes swing-in-top-fwd {
    0% {
        -webkit-transform: rotateX(-100deg);
        transform: rotateX(-100deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 0;
    }
    100% {
        -webkit-transform: rotateX(0deg);
        transform: rotateX(0deg);
        -webkit-transform-origin: top;
        transform-origin: top;
        opacity: 1;
    }
}
