html
{
    overflow-x: hidden;
}

body
{
    margin: 0;
    font-family: Arial;
    background-color: #212121;
    color: #fff;
}

h2
{
    font-size: 2.0rem;
}

.noselect
{
    -webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Old versions of Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome, Edge, Opera and Firefox */
}

.ContentSeparator
{
    height: 3px;
    background: #2a2a2a;
    /*height: 9px;
        background: #333;
        background: linear-gradient(180deg, rgb(33, 33, 33) 0%, rgb(55, 55, 55) 50%, rgb(33, 33, 33) 100%);*/
}

/*
    PAGE TOP
*/
#PageTopDecoration
{
    background: linear-gradient(180deg, rgb(55, 55, 55) 20%, rgb(33, 33, 33) 80%);
    width: 100%;
    height: 6.25em;
    display: block;
    position: absolute;
}

.PageWrapper
{
    max-width: 100vw;
    margin-left: auto;
    margin-right: auto;
    padding-left: 25px;
    padding-right: 25px;
}

#PageNavbar
{
    height: 3.125em;
    display: flex;
}

    #PageNavbar div a
    {
        text-decoration: none;
        color: #fff;
    }

/*
    HERO CONTAINER
*/

#HeroContainer
{
    display: inline-block;
    position: relative;
    padding: 0 0 2em 0;
}

#HeroAppTagline
{
    text-align: center;
    position: relative;
    top: -40px;
    left: 80vw;
    opacity: 0;
    transition: 0.4s;
    margin-top: 10px;
}

.HeroAppTaglineTarget
{
    opacity: 1 !important;
    left: 0px !important;
}

.AppDownloadImageContainer
{
    display: inline-block;
    padding: 0 10px;
}

.AppDownloadImage
{
    width: 70vw;
}

#HeroAppDownloadApple
{
    align-items: center;
    display: inline-block;
    justify-content: center;
    color: #fff;
    position: relative;
}

#HeroAppDownloadGoogle
{
    margin-top: 2em;
    align-items: center;
    display: inline-block;
    justify-content: center;
    color: #fff;
    position: relative;
}

/*
    COLLECTION CONTAINER
*/

#CollectionsContainer
{
    display: inline-block;
    width: 100%;
}

#BrandCollectionContainer
{
    padding-top: 1.5em;
    padding-bottom: 0.75em;
}

#BrandCollection
{
    display: flex;
    align-items: center;
    justify-content: center;
}

    #BrandCollection img + img
    {
        margin-left: 15px;
    }

.BrandLogo
{
    width: 30vw;
    height: auto;
    border-radius: 10px;
    box-shadow: 8px 8px 15px #101010bf;
}

#BrandCollectionDescription
{
    display: grid;
    align-content: center;
    justify-items: center;
    text-align: center;
    padding-top: 0.8em;
    padding-bottom: 1.2em;
    text-align: center;
}

/*
    WAX CONTAINER
*/

#WAXContainer
{
    display: inline-block;
}

#WAXLogoContainer
{
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 1.5em;
    padding-bottom: 0.75em;
}

#WAXLogo
{
    width: 30vw;
    height: auto;
    border-radius: 10px;
    box-shadow: 8px 8px 15px #101010bf;
}

#WAXDescriptionContainer
{
    display: grid;
    align-content: center;
    justify-items: center;
    padding-top: 0.8em;
    text-align: center;
}

/*
    ROAD MAP
*/

#RoadmapContainer
{
    display: inline-block;
    padding: 1.5em 0;
}

#RoadmapLine
{
    width: 100%;
    height: 5px;
    border: solid white 1px;
    border-radius: 10px;
    background: #fff;
}

#RoadmapDescription
{
    width: 50%;
    display: grid;
    align-content: center;
    justify-items: center;
    line-height: 1.5;
}

.RoadmapEntry
{
    position: relative;
    padding: 1.4em;
    width: 80%;
    border-radius: 5px;
    background: #3c3c3c;
    box-shadow: 8px 8px 15px #101010bf;
}

    .RoadmapEntry p
    {
        font-weight: bold;
        margin-top: 0;
    }

.RoadmapDate
{
    margin-top: 1em !important;
    margin-bottom: 0;
    position: absolute;
    bottom: 20px;
}

#Roadmap
{
    display: flex;
    flex-flow: column;
    align-items: center;
}

#Roadmap div + div
{
    margin-top: 1em;
}

/*
    FOOTER
*/

#Footer
{
    position: relative;
    align-items: center;
    justify-content: center;
    background: #000;
    height: 550px;
}

    #Footer a
    {
        text-decoration: none;
        color: #fff;
        margin-left: 2vw;
        margin-right: 2vw;
    }

#FooterLinkContainer
{
    height: 200px;
}

    #FooterLinkContainer a
    {
        font-size: 1.2rem;
    }

#FooterLogoContainer
{
    display: flex !important;
}

#Footer div
{
    text-align: center;
    display: grid;
    align-items: center;
    justify-content: center;
}

    #Footer div img
    {
        width: 150px;
        padding: 20px 0;
    }

#FooterXCLogo
{
    height: 100px;
}

#FooterXPLogo
{
    height: 150px;
}

#FooterCopyrightContainer
{
    height: 50px;
    font-size: 0.8rem;
}

#FunctionalityWrapper
{
    padding: 24px 0;
}

.Func_Container
{
    display: grid;
    grid-template-columns: 50% 50%;
    justify-items: center;
    align-items: center;
    padding: 10vh 0;
}

.XC_Vid
{
    height: 70vh;
}

.NonMobileContent
{
    display: block;
}

.MobileContent
{
    display: none;
}

@media (min-width: 320px)
{
    body
    {
        font-size: 1.1rem;
    }

    h2
    {
        font-size: 1.3rem;
    }

    .NavbarButton
    {
        /*float: right;*/
        background: rgba(51, 51, 51, 0.00);
        transition: 0.2s;
        -webkit-transition: 0.2s;
        position: relative;
        right: 0;
        align-items: center;
        display: flex;
        padding: 0px 10px 0px 10px;
        /*margin-left: auto;*/
        cursor: pointer;
        flex: 1;
        justify-content: center;
    }

        .NavbarButton + .NavbarButton
        {
            /*margin-left: 0;*/
        }

        .NavbarButton:hover
        {
            background: #00a86e;
        }

    

    #HeroAppLogo
    {
        opacity: 0;
        padding-top: 30px;
        transition: 0.7s;
        -webkit-transition: 0.7s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #HeroAppLogo img
        {
            width: 80vw;
        }

    #HeroAppName
    {
        font-size: 6.5vw;
        position: relative;
        right: 30vw;
        transition: 0.4s;
        -webkit-transition: 0.4s;
        margin-bottom: 0;
        margin-top: 0;
        padding-top: 50px;
        display: flex;
    }

    .HeroAppNameChar
    {
        opacity: 0;
        transition: 0.2s;
        -webkit-transition: 0.2s;
        display: flex;
        justify-content: center;
        justify-items: center;
        align-content: center;
        align-items: center;
    }

    .Dash
    {
        padding-bottom: 25px;
        padding-right: 10px;
    }

    #HeroAppDescription
    {
        opacity: 0;
        transition: 0.4s;
        -webkit-transition: 0.4s;
        padding: 0.9375em 0.3125em 2.2em 0.3125em;
        background-color: rgba(33, 33, 33, 0.82);
        border-radius: 0px 0.625em 0.625em 0px;
        margin-top: -1.25em;
    }

    #HeroAppDownloadHint
    {
        transition: 0.4s;
        -webkit-transition: 0.4s;
        opacity: 0;
        margin-top: 0px;
        padding: 10px 0px 5px 0px;
    }

    .HighlightText
    {
        color: #00a86e;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin: 30px 0 50px 0;
    }

    #HeroAppDownloadsContainer
    {
        display: grid;
        margin-top: 15px;
        justify-content: center;
        justify-items: center;
    }

    .AppDownloadHover
    {
        width: 100%;
        height: 100%;
        transition: 0.2s;
        -webkit-transition: 0.2s;
        opacity: 0;
        background: #00a86e;
        /*background: linear-gradient(180deg, rgba(55,55,55,1) 0%, rgba(0,168,110,1) 40%, rgba(0,168,110,1) 60%, rgba(55,55,55,1) 100%);*/
        border-radius: 5px;
        position: absolute;
    }

        .AppDownloadHover:hover
        {
            opacity: 1;
        }

    #HeroAppImage
    {
        position: absolute;
        width: 100%;
        height: 400px;
        top: 9.5em;
        animation: float 1.5s ease-in-out alternate-reverse infinite;
        z-index: -1;
        background-image: url("Images/HeroBanner.png");
        background-repeat: no-repeat;
        background-size: 70%;
        background-position: center;
    }

    

    #SupportContainer
    {
    }

    #PressContainer
    {
    }

    #SNSContainer
    {
        height: 90px;
        display: block;
    }

    #SNSImageContainer
    {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .SNS_IMG img
    {
        width: 50px;
        height: auto;
        margin-left: 2vw;
        margin-right: 2vw;
    }
}

@media (min-width: 481px)
{
    body
    {
        font-size: 1.5rem;
    }

    .NavbarButton
    {
        /*float: right;*/
        background: rgba(51, 51, 51, 0.00);
        transition: 0.2s;
        -webkit-transition: 0.2s;
        position: relative;
        right: 0;
        align-items: center;
        display: flex;
        padding: 0px 10px 0px 10px;
        /*margin-left: auto;*/
        cursor: pointer;
        flex: 1;
        justify-content: center;
    }

        .NavbarButton + .NavbarButton
        {
            /*margin-left: 0;*/
        }

        .NavbarButton:hover
        {
            background: #00a86e;
        }

    #HeroAppLogo
    {
        opacity: 0;
        padding-top: 30px;
        transition: 0.7s;
        -webkit-transition: 0.7s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #HeroAppLogo img
        {
            width: 70vw;
        }

    #HeroAppName
    {
        font-size: 6.5vw;
        position: relative;
        right: 30vw;
        transition: 0.4s;
        -webkit-transition: 0.4s;
        margin-bottom: 0;
        margin-top: 0;
        padding-top: 50px;
        display: flex;
    }

    .HeroAppNameChar
    {
        opacity: 0;
        transition: 0.2s;
        -webkit-transition: 0.2s;
        display: flex;
        justify-content: center;
        justify-items: center;
        align-content: center;
        align-items: center;
    }

    .Dash
    {
        padding-bottom: 25px;
        padding-right: 10px;
    }

    #HeroAppDescription
    {
        opacity: 0;
        transition: 0.4s;
        -webkit-transition: 0.4s;
        padding: 60px 5px 90px 5px;
        background-color: rgba(33, 33, 33, 0.82);
        border-radius: 0px 10px 10px 0px;
    }

    #HeroAppDownloadHint
    {
        transition: 0.4s;
        -webkit-transition: 0.4s;
        opacity: 0;
        margin-top: 30px;
        padding: 10px 0px 5px 0px;
    }

    .HighlightText
    {
        font-size: 1.2rem;
        color: #00a86e;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin: 30px 0 50px 0;
    }

    #HeroAppDownloadsContainer
    {
        display: grid;
        margin-top: 15px;
        justify-content: center;
    }

    .AppDownloadHover
    {
        width: 100%;
        height: 100%;
        transition: 0.2s;
        -webkit-transition: 0.2s;
        opacity: 0;
        background: #00a86e;
        /*background: linear-gradient(180deg, rgba(55,55,55,1) 0%, rgba(0,168,110,1) 40%, rgba(0,168,110,1) 60%, rgba(55,55,55,1) 100%);*/
        border-radius: 5px;
        position: absolute;
    }

        .AppDownloadHover:hover
        {
            opacity: 1;
        }

    #HeroAppImage
    {
        position: absolute;
        width: 100%;
        height: 400px;
        top: 16.8em;
        animation: float 1.5s ease-in-out alternate-reverse infinite;
        z-index: -1;
        background-image: url("Images/HeroBanner.png");
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    #SupportContainer
    {
    }

    #PressContainer
    {
    }

    #SNSContainer
    {
        height: 150px;
        display: block;
    }

    #SNSImageContainer
    {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .SNS_IMG img
    {
        width: 64px;
        height: 64px;
        margin-left: 2vw;
        margin-right: 2vw;
    }
}

@media (min-width: 641px)
{
    body
    {
        font-size: 2.5rem;
    }

    .NavbarButton
    {
        float: right;
        background: rgba(51, 51, 51, 0.00);
        transition: 0.2s;
        -webkit-transition: 0.2s;
        position: relative;
        right: 0;
        align-items: center;
        display: flex;
        padding: 0px 10px 0px 10px;
        margin-left: auto;
        cursor: pointer;
    }

        .NavbarButton + .NavbarButton
        {
            margin-left: 0;
        }

        .NavbarButton:hover
        {
            background: #00a86e;
        }

    #HeroAppLogo
    {
        opacity: 0;
        padding-top: 30px;
        transition: 0.7s;
        -webkit-transition: 0.7s;
        display: flex;
        align-items: center;
        justify-content: center;
    }

        #HeroAppLogo img
        {
            width: 100%;
        }

    #HeroAppName
    {
        font-size: 6.5vw;
        position: relative;
        right: 30vw;
        transition: 0.4s;
        -webkit-transition: 0.4s;
        margin-bottom: 0;
        margin-top: 0;
        padding-top: 50px;
        display: flex;
    }

    .HeroAppNameChar
    {
        opacity: 0;
        transition: 0.2s;
        -webkit-transition: 0.2s;
        display: flex;
        justify-content: center;
        justify-items: center;
        align-content: center;
        align-items: center;
    }

    .Dash
    {
        padding-bottom: 25px;
        padding-right: 10px;
    }

    #HeroAppDescription
    {
        opacity: 0;
        transition: 0.4s;
        -webkit-transition: 0.4s;
        padding: 10px 5px 5px 5px;
        margin-top: 20%;
        background-color: rgba(33, 33, 33, 0.82);
        border-radius: 0px 10px 10px 0px;
    }

    #HeroAppDownloadHint
    {
        transition: 0.4s;
        -webkit-transition: 0.4s;
        opacity: 0;
        margin-top: 5vh;
        padding: 10px 0px 5px 0px;
    }

    .HighlightText
    {
        font-size: 2.0rem;
        color: #00a86e;
        font-weight: bold;
        width: 100%;
        text-align: center;
        margin: 30px 0 50px 0;
    }

    #HeroAppDownloadsContainer
    {
        display: grid;
        margin-top: 5vh;
        justify-content: center;
    }

    .AppDownloadHover
    {
        width: 100%;
        height: 100%;
        transition: 0.2s;
        -webkit-transition: 0.2s;
        opacity: 0;
        background: #00a86e;
        border-radius: 5px;
        position: absolute;
    }

        .AppDownloadHover:hover
        {
            opacity: 1;
        }

    #HeroAppImage
    {
        background-image: url("Images/HeroBanner.png");
        position: absolute;
        width: 100%;
        height: 40vw;
        top: 31vh;
        animation: float 1.5s ease-in-out alternate-reverse infinite;
        z-index: -1;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    #SupportContainer
    {
    }

    #PressContainer
    {
    }

    #SNSContainer
    {
        height: 250px;
        display: block;
    }

    #SNSImageContainer
    {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .SNS_IMG img
    {
        width: 15vw;
        height: auto;
        margin-left: 2vw;
        margin-right: 2vw;
    }
}

@media (min-width: 768px)
{
    body
    {
        font-size: 1.8rem;
    }

    #HeroAppImage
    {
        position: absolute;
        width: 100%;
        height: 70vw;
        top: 13em;
        animation: float 1.5s ease-in-out alternate-reverse infinite;
        z-index: -1;
        background-image: url("Images/HeroBanner.png");
        background-repeat: no-repeat;
        background-size: 70%;
        background-position: center;
    }

    .AppDownloadImage
    {
        width: 55vw;
    }

    .SNS_IMG img
    {
        width: 10vw;
    }

    #FooterLinkContainer a
    {
        font-size: 1.8rem;
    }

    #FooterCopyrightContainer
    {
        font-size: 1.2rem;
    }
}

/*
@media (min-width:1025px)
{

}
*/

@media (min-width: 961px)
{
    #PageTopDecoration
    {
        background: linear-gradient(180deg, rgb(55, 55, 55) 20%, rgb(33, 33, 33) 80%);
        width: 100%;
        height: 100px;
        display: block;
        position: absolute;
    }

    #PageBottomDecoration
    {
        padding-left: 150px;
        padding-right: 150px;
        height: 100%;
        width: 101vw;
        display: block;
        position: absolute;
        bottom: 0;
        /*background: linear-gradient(180deg, rgb(33, 33, 33) 0%,rgb(40, 40, 40) 50%, rgb(40, 40, 40) 100%);*/
        background: #000;
        z-index: -1;
        left: -200px;
    }

    .PageWrapper
    {
        max-width: 65vw;
        margin-left: auto;
        margin-right: auto;
        padding-left: 150px;
        padding-right: 150px;
    }

    #PageNavbar
    {
        height: 8vh;
        /*background: #212121;
        background: linear-gradient(180deg, rgb(55, 55, 55) 20%, rgb(33, 33, 33) 80%);*/
        display: flex;
    }

        #PageNavbar div a
        {
            text-decoration: none;
            color: #fff;
        }

    .NavbarButton
    {
        float: right;
        background: rgba(51, 51, 51, 0.00);
        transition: 0.2s;
        -webkit-transition: 0.2s;
        position: relative;
        right: 0;
        align-items: center;
        display: flex;
        padding: 0px 10px 0px 10px;
        margin-left: auto;
        cursor: pointer;
        flex: 0;
        font-size: 1rem;
    }

        .NavbarButton + .NavbarButton
        {
            margin-left: 0;
        }

        .NavbarButton:hover
        {
            background: #00a86e;
        }

    #HeroContainer
    {
        height: 850px;
        position: relative;
    }

    #HeroAppLogo
    {
        display: block;
        opacity: 0;
        padding-top: 30px;
        transition: 0.2s;
        -webkit-transition: 0.2s;
    }

        #HeroAppLogo img
        {
            width: min-content;
        }

    #HeroAppName
    {
        font-size: 6.5vw;
        position: relative;
        right: 30vw;
        transition: 0.4s;
        -webkit-transition: 0.4s;
        margin-bottom: 0;
        margin-top: 0;
        padding-top: 50px;
        display: flex;
    }

    .HeroAppNameChar
    {
        opacity: 0;
        transition: 0.2s;
        -webkit-transition: 0.2s;
        display: flex;
        justify-content: center;
        justify-items: center;
        align-content: center;
        align-items: center;
    }

    .Dash
    {
        padding-bottom: 25px;
        padding-right: 10px;
    }

    #HeroAppTagline
    {
        position: relative;
        top: -40px;
        left: 50vw;
        opacity: 0;
        transition: 0.4s;
        margin-top: 10px;
        text-align: left;
    }

    .HeroAppTaglineTarget
    {
        left: 165px !important;
        font-size: 1.5rem;
    }

    #HeroAppDescription
    {
        opacity: 0;
        transition: 0.4s;
        -webkit-transition: 0.4s;
        padding: 10px 0px 5px 25px;
        margin: 0 500px 0 0;
        background-color: rgba(33, 33, 33, 0.82);
        border-radius: 0px 10px 10px 0px;
    }

    #HeroAppDownloadHint
    {
        transition: 0.4s;
        -webkit-transition: 0.4s;
        opacity: 0;
        margin-top: 35px;
        padding: 10px 0px 5px 25px;
    }

    .HighlightText
    {
        color: #00a86e;
        font-size: 1rem;
        font-weight: bold;
        margin: 0;
        text-align: left;
    }

    #HeroAppDownloadsContainer
    {
        display: flex;
        margin-top: 15px;
        justify-content: left;
        justify-items: left;
    }

    #HeroAppDownloadApple
    {
        width: 250px;
        height: 75px;
        border-radius: 5px;
        margin: 15px 0px 5px 15px;
        align-items: center;
        display: flex;
        justify-content: center;
        color: #fff;
        position: relative;
    }

    .AppDownloadImageContainer
    {
        display: block;
        width:100%;
    }

    .AppDownloadImage
    {
        width: 100%;
    }

    #HeroAppDownloadGoogle
    {
        width: 250px;
        height: 75px;
        border-radius: 5px;
        margin: 15px 0px 5px 15px;
        align-items: center;
        display: flex;
        justify-content: center;
        color: #fff;
        position: relative;
    }

        #HeroAppDownloadGoogle a
        {
            padding: 0;
        }

    .AppDownloadHover
    {
        width: 100%;
        height: 100%;
        transition: 0.2s;
        -webkit-transition: 0.2s;
        opacity: 0;
        background: #00a86e;
        /*background: linear-gradient(180deg, rgba(55,55,55,1) 0%, rgba(0,168,110,1) 40%, rgba(0,168,110,1) 60%, rgba(55,55,55,1) 100%);*/
        border-radius: 5px;
        position: absolute;
    }

        .AppDownloadHover:hover
        {
            opacity: 1;
        }

    #HeroAppImage
    {
        background-image: url("Images/HeroBanner.png");
        position: absolute;
        width: 60%;
        height: 80%;
        top: 10%;
        right: 0;
        animation: float 1.5s ease-in-out alternate-reverse infinite;
        z-index: -1;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    #CollectionsContainer
    {
        height: 50vh;
        display: flex;
    }

    #BrandCollectionContainer
    {
        width: 50%;
    }

    #BrandCollection
    {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

        #BrandCollection img + img
        {
            margin-left: 15px;
        }

    .BrandLogo
    {
        width: 200px;
        height: auto;
        border-radius: 10px;
    }

    #BrandCollectionDescription
    {
        width: 50%;
        display: grid;
        align-content: center;
        justify-items: center;
    }

    #SupportContainer
    {
    }

    #PressContainer
    {
    }

    #WAXContainer
    {
        height: 50vh;
        display: flex;
    }

    #WAXLogoContainer
    {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    #WAXLogo
    {
        width: 200px;
        height: auto;
        border-radius: 10px;
    }

    #WAXDescriptionContainer
    {
        width: 50%;
        display: grid;
        align-content: center;
        justify-items: center;
        line-height: 1.5;
        text-align: left;
    }

    #RoadmapContainer
    {
        height: 50vh;
        display: block;
    }

    #RoadmapLine
    {
        width: 100%;
        height: 5px;
        border: solid white 1px;
        border-radius: 10px;
        background: #fff;
    }

    #Roadmap
    {
        width: 100%;
        display: grid;
        grid-template-columns: 50% 50%;
        align-items: center;
        justify-content: center;
        height: 100%;
        justify-items: center;
        align-content: center;
    }

    #RoadmapDescription
    {
        width: 50%;
        display: grid;
        align-content: center;
        justify-items: center;
        line-height: 1.5;
    }

    #SNSContainer
    {
        height: 250px;
        display: block;
    }

    #SNSImageContainer
    {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .SNS_IMG img
    {
        width: 64px;
        height: 64px;
        margin-left: 2vw;
        margin-right: 2vw;
    }

    #Footer
    {
        height: 365px;
    }

    #FooterLinkContainer
    {
        display: flex !important;
        height: 50px;
    }

    #Footer div
    {
        display: grid;
        align-items: center;
        justify-content: center;
    }

        #Footer div img
        {
            width: 250px;
            padding: 20px 0;
        }

    #FooterLinkContainer
    {
        margin-top: 20px;
    }

        #FooterLinkContainer a
        {
            font-size: 1.5rem;
        }

    .ContentSeparator
    {
        height: 9px;
        background: #333;
        background: linear-gradient(180deg, rgb(33, 33, 33) 0%, rgb(55, 55, 55) 50%, rgb(33, 33, 33) 100%);
    }
}

@media screen and (orientation: landscape)
{
    body
    {
        font-size: 1rem;
    }

    #PageTopDecoration
    {
        background: linear-gradient(180deg, rgb(55, 55, 55) 20%, rgb(33, 33, 33) 80%);
        width: 100%;
        height: 100px;
        display: block;
        position: absolute;
    }

    #PageBottomDecoration
    {
        padding-left: 150px;
        padding-right: 150px;
        height: 100%;
        width: 101vw;
        display: block;
        position: absolute;
        bottom: 0;
        /*background: linear-gradient(180deg, rgb(33, 33, 33) 0%,rgb(40, 40, 40) 50%, rgb(40, 40, 40) 100%);*/
        background: #000;
        z-index: -1;
        left: -200px;
    }

    .PageWrapper
    {
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
        padding-left: 150px;
        padding-right: 150px;
    }

    #PageNavbar
    {
        height: 8vh;
        /*background: #212121;
        background: linear-gradient(180deg, rgb(55, 55, 55) 20%, rgb(33, 33, 33) 80%);*/
        display: flex;
    }

        #PageNavbar div a
        {
            text-decoration: none;
            color: #fff;
        }

    .NavbarButton
    {
        float: right;
        background: rgba(51, 51, 51, 0.00);
        transition: 0.2s;
        -webkit-transition: 0.2s;
        position: relative;
        right: 0;
        align-items: center;
        display: flex;
        padding: 0px 10px 0px 10px;
        margin-left: auto;
        cursor: pointer;
        flex: 0;
        font-size: 1rem;
    }

        .NavbarButton + .NavbarButton
        {
            margin-left: 0;
        }

        .NavbarButton:hover
        {
            background: #00a86e;
        }

    #HeroContainer
    {
        height: 850px;
        position: relative;
    }

    #HeroAppLogo
    {
        display: block;
        opacity: 0;
        padding-top: 30px;
        transition: 0.2s;
        -webkit-transition: 0.2s;
    }

        #HeroAppLogo img
        {
            width: min-content;
        }

    #HeroAppName
    {
        font-size: 6.5vw;
        position: relative;
        right: 30vw;
        transition: 0.4s;
        -webkit-transition: 0.4s;
        margin-bottom: 0;
        margin-top: 0;
        padding-top: 50px;
        display: flex;
    }

    .HeroAppNameChar
    {
        opacity: 0;
        transition: 0.2s;
        -webkit-transition: 0.2s;
        display: flex;
        justify-content: center;
        justify-items: center;
        align-content: center;
        align-items: center;
    }

    .Dash
    {
        padding-bottom: 25px;
        padding-right: 10px;
    }

    #HeroAppTagline
    {
        position: relative;
        top: -40px;
        left: 50vw;
        opacity: 0;
        transition: 0.4s;
        margin-top: 10px;
        text-align: left;
    }

    .HeroAppTaglineTarget
    {
        left: 165px !important;
        font-size: 1.5rem;
    }

    #HeroAppDescription
    {
        opacity: 0;
        transition: 0.4s;
        -webkit-transition: 0.4s;
        padding: 10px 0px 5px 25px;
        margin: 0 500px 0 0;
        background-color: rgba(33, 33, 33, 0.82);
        border-radius: 0px 10px 10px 0px;
    }

    #HeroAppDownloadHint
    {
        transition: 0.4s;
        -webkit-transition: 0.4s;
        opacity: 0;
        margin-top: 35px;
        padding: 10px 0px 5px 25px;
    }

    .HighlightText
    {
        color: #00a86e;
        font-size: 1rem;
        font-weight: bold;
        margin: 0;
        text-align: left;
        width: 400px;
    }

    #HeroAppDownloadsContainer
    {
        display: flex;
        margin-top: 15px;
        justify-content: left;
        justify-items: left;
    }

    #HeroAppDownloadApple
    {
        width: 250px;
        height: 75px;
        border-radius: 5px;
        margin: 15px 0px 5px 15px;
        align-items: center;
        display: flex;
        justify-content: center;
        color: #fff;
        position: relative;
    }

    .AppDownloadImageContainer
    {
        display: block;
        width: 100%;
    }

    .AppDownloadImage
    {
        width: 100%;
    }

    #HeroAppDownloadGoogle
    {
        width: 250px;
        height: 75px;
        border-radius: 5px;
        margin: 15px 0px 5px 15px;
        align-items: center;
        display: flex;
        justify-content: center;
        color: #fff;
        position: relative;
    }

        #HeroAppDownloadGoogle a
        {
            padding: 0;
        }

    .AppDownloadHover
    {
        width: 100%;
        height: 100%;
        transition: 0.2s;
        -webkit-transition: 0.2s;
        opacity: 0;
        background: #00a86e;
        /*background: linear-gradient(180deg, rgba(55,55,55,1) 0%, rgba(0,168,110,1) 40%, rgba(0,168,110,1) 60%, rgba(55,55,55,1) 100%);*/
        border-radius: 5px;
        position: absolute;
    }

        .AppDownloadHover:hover
        {
            opacity: 1;
        }

    #HeroAppImage
    {
        background-image: url("Images/HeroBanner.png");
        position: absolute;
        width: 60%;
        height: 80%;
        top: 10%;
        right: 0;
        animation: float 1.5s ease-in-out alternate-reverse infinite;
        z-index: -1;
        background-repeat: no-repeat;
        background-size: contain;
        background-position: center;
    }

    #CollectionsContainer
    {
        height: 50vh;
        display: flex;
    }

    #BrandCollectionContainer
    {
        width: 50%;
    }

    #BrandCollection
    {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

        #BrandCollection img + img
        {
            margin-left: 15px;
        }

    .BrandLogo
    {
        width: 200px;
        height: auto;
        border-radius: 10px;
    }

    #BrandCollectionDescription
    {
        width: 50%;
        display: grid;
        align-content: center;
        justify-items: center;
    }

    #SupportContainer
    {
    }

    #PressContainer
    {
    }

    #WAXContainer
    {
        height: 50vh;
        display: flex;
    }

    #WAXLogoContainer
    {
        width: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        height: 100%;
    }

    #WAXLogo
    {
        width: 200px;
        height: auto;
        border-radius: 10px;
    }

    #WAXDescriptionContainer
    {
        width: 50%;
        display: grid;
        align-content: center;
        justify-items: center;
        line-height: 1.5;
        text-align: left;
    }

    #Functionality
    {
        /*display: grid;
        grid-template-columns: 50% 50%;
        grid-auto-flow: row dense;
        grid-gap: 1em 1em;*/
        padding: 50px 0;
        display: flex;
        font-size: 1.3rem;
    }

    #FunctionContainerLeft .Func_Desc
    {
        height: 550px;
    }

    #FunctionContainerRight .Func_Desc
    {
        height: 450px;
    }

    #Functionality .Func_Vid + .Func_Vid
    {
        margin-top: 75px;
    }

    .Func_Vid
    {
        margin-top: 0px;
        grid-row: auto / span 2;
        display: grid;
        justify-content: center;
        height: 650px;
    }

    .XC_Vid
    {
        height: 650px;
    }

    .Func_Desc
    {
        display: grid;
        align-content: center;
        justify-content: center;
    }

    .Func_Desc ul li + li
    {
        margin-top: 5px;
    }

    #RoadmapContainer
    {
        height: 30vh;
        display: block;
    }

    #RoadmapLine
    {
        width: 100%;
        height: 5px;
        border: solid white 1px;
        border-radius: 10px;
        background: #fff;
    }

    #Roadmap
    {
        width: 100%;
        display: grid;
        grid-template-columns: 50% 50%;
        align-items: center;
        justify-content: center;
        height: 100%;
        justify-items: center;
        align-content: center;
    }

        #Roadmap div + div
        {
            margin-top: 0em;
        }

    .RoadmapEntry
    {
        height: 100%;
    }

    #RoadmapDescription
    {
        width: 50%;
        display: grid;
        align-content: center;
        justify-items: center;
        line-height: 1.5;
    }

    #SNSContainer
    {
        height: 130px;
        display: block;
    }

    #SNSImageContainer
    {
        display: flex;
        justify-content: center;
        align-items: center;
        height: 100%;
    }

    .SNS_IMG img
    {
        width: 64px;
        height: 64px;
        margin-left: 2vw;
        margin-right: 2vw;
    }

    #Footer
    {
        height: 250px;
        padding-top: 30px;
    }

    #FooterLinkContainer
    {
        display: flex !important;
        height: 50px;
        margin-top: 0px;
    }

        #FooterLinkContainer a
        {
            font-size: 1.0rem;
        }

    #Footer div
    {
        display: grid;
        align-items: center;
        justify-content: center;
    }

    #FooterLogoXC
    {
        width: 200px !important;
        padding: 20px 0 !important;
    }

    #FooterLogoXPLUS
    {
        width: 150px !important;
        padding: 20px 0 !important;
    }

    #FooterXPLogo
    {
        height: 125px;
    }

    #FooterCopyrightContainer
    {
        font-size: 1.0rem;
    }

    .ContentSeparator
    {
        height: 9px;
        background: #333;
        background: linear-gradient(180deg, rgb(33, 33, 33) 0%, rgb(55, 55, 55) 50%, rgb(33, 33, 33) 100%);
    }
}

@media screen and (orientation: portrait)
{
    .MobileContent
    {
        display: block;
    }

    .NonMobileContent
    {
        display: none;
    }

    .Func_Container
    {
        display: block;
        padding: 5vh 0;
    }

    .Func_Desc
    {
        text-align: center;
    }

    .Func_Vid
    {
        margin-top: 50px;
        display: grid;
        justify-content: center;
    }

    .RoadmapDate
    {
        position: relative;
        bottom: 0;
    }
}

@keyframes float
{
    0%
    {
        transform: translateY(-.25vh);
    }

    100%
    {
        transform: translateY(.25vh);
    }
}