* {
    box-sizing:border-box;
}
body {
    font-family: 'Work Sans',sans-serif;
    font-weight: 300;
    padding: 5.5rem 0 0;
    margin: 0;
    color: #323232;
    cursor:pointer;
}
html, body {
    font-size:16px;
}
@media screen and (max-width:768px){
    html, body {
        font-size:12px;
    }
}

header {
    background-color: #f0f0f0;
    color: #fff;
    padding: 0.75rem 0.5rem;
    text-align: left;
    position: fixed;
    top:0;
    width: 100%;
    z-index: 10000;
    box-shadow: 0 0 3px rgba(0,0,0,0.2);
    box-sizing: border-box;
}
@media screen and (max-width:768px){
    header {
        padding-bottom:1.25rem;

    }
}
b,.bold {
    font-weight: 600;
}
.ltbold {
    font-weight: 500;
}
.small {
    font-size: 0.8rem;
}
a {
    color:#6b2c90;
}
a.button {
    display: inline-block;
    background-color: #6b2c90;
    border-radius: 3px;
    color: #fff;
    text-decoration: none;
    margin-top: 0.5rem;
    padding: 1.15rem 1.15rem;
    text-align: center;
    font-weight: 500;
    transition:background 0.3s ease-in-out;
    line-height: 1;
}
a.button:hover {
    background-color:rgb(141, 21, 179);
}
p.buttons>a {margin-right:1.45rem;}
p.buttons>a:last-of-type {margin-right:0;}

a.docs {
    display: inline-block;
    color: #6b2c90;
    text-decoration: none;
    padding: 1.15rem 0 1.15rem 2.65rem;
    text-align: left;
    font-weight: 500;
    background-image:url(/assets/img/ICdocs.svg);
    background-repeat:no-repeat;
    background-size:auto 55%;
    background-position:center left;
}
h1,h2,h3,h4,h5,p{
    position:relative;
    z-index:1;
}
h1,h2 {margin:0 0 2rem;}
h1 {font-weight: 100;font-size: 2.5rem;line-height: 1;}
h2 {font-weight: 600;font-size: 2rem;}
h3 {font-weight:500;}
p,li {font-size:1rem;line-height: 1.66;margin: 2.5rem 0;}
p.bold {margin-bottom:0;}
p.bold + p {margin-top:0;}
.clear {
    clear:both;
}
header .logo{
    background-image: url(/assets/img/merge-logo-purple.svg);
    background-size: 75%;
    background-repeat: no-repeat;
    display:inline-block;
    width: 10rem;
    height: 4rem;
    background-position: center;
    overflow: hidden;
    vertical-align: middle;
    margin-right: 0.5rem;
}
.logo>span:not([class]){
    display:none;
    visibility: hidden;
}
nav:not(.top) {
    background-color: #6b2c90;
    color: #fff;
    padding: 0.1rem 0.25rem 0.5rem 1.5rem;
    text-align: left;
    box-shadow:0 0 3px rgba(0,0,0,0.2);
    box-sizing: border-box;
}
@media screen and (max-width:768px){
    body {
        padding:5rem 0 0;
    }
    nav:not(.top) {
        padding:0.5rem 1rem 0.5rem;
    }
}
nav>.breadcrumb>h1 {
    font-weight: 100;
    font-size: 1.5rem;
    margin: 1rem 0;
}
nav.top {
    background:none;
    display:inline-block;
}
nav.sticky:not(.top){
    width:100%;
    position:fixed;
    top: 2rem;
    z-index: 3;
}
nav.top>a:first-child {
    margin-left: 3rem;
}
nav.top>a {
    font-weight:400;
    text-decoration:none;
    padding: 1rem 1rem 2rem;
}
body.home a.home,
body.moonshot a.moonshot,
body.cube a.cube,
body.fund a.fund{
    border:0;
    border-bottom:4px solid #eb39ed;
    -moz-border-image: -moz-linear-gradient(45deg,  #76089d 0%, #eb39ed 100%); /* FF3.6-15 */
    -webkit-border-image: -webkit-linear-gradient(45deg,  #76089d 0%,#eb39ed 100%) 50 5; /* Chrome10-25,Safari5.1-6 */
    border-image: linear-gradient(45deg,  #76089d 0%,#eb39ed 100%) 50% 5%; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}
header>.right {
    float:right;
    padding: 0;
    position: relative;
}
.search-form {
    display:inline-block;
    position: absolute;
    overflow:hidden;
    right: 4.5rem;
    top: 0;
}
.search-form>input {
    border:0;
    -webkit-appearance:none;
    font-family: 'Work Sans',sans-serif;
    font-size: 1rem;
    margin-left:4.15rem;
    padding: 1.4rem 0.5rem;
    position:relative;
    z-index:1;
}
.search-form:before {
    content:" ";
    display:block;
    position:absolute;
    background:#fff;
    width:4rem;
    height:10rem;
    transform:rotate(45deg);
    z-index:0;
}
.search-form:after {
    position:absolute;
    content:"\f002";
    font-family:'mergevr';
    font-size:1.25rem;
    color:#af94be;
    top:1.25rem;
    right:1rem;
    z-index:2;
}
.avatar {
    display:inline-block;
    background: #fff;
    width: 2rem;
    height: 2rem;
    padding: 1rem;
    overflow:hidden;
    position:relative;
    transition: background 0.3s ease-in-out;
}
.avatar>span{
    visibility:hidden;
}
.avatar:before {
    color: #af94be;
    position:absolute;
    top: 1.05rem;
    left: 1.25rem;
    font-family:'mergevr';
    font-size: 1.5rem;
    content:"\e901";
    transition: color 0.3s ease-in-out;
}
.avatar:hover {
    background:#6b2c90;
}
.avatar:hover:before {
    color:#fff;
}
body:not(.docs) .content {
    padding:1rem 1rem 2rem;
    background:#6b2c90;
    background-image:url(/assets/img/BGpurple.svg);
    background-size:cover;
    position:relative;
    overflow: hidden;
}

body:not(.docs) .content>div {
    background:#fff;
    max-width:85%;
    margin:3rem auto;
    padding: 4rem 5rem;
    position: relative;
    text-align: left;
    box-shadow: 0 3px 15px rgba(0,0,0,0.6);
}
body:not(.docs) .content>div:first-of-type {
    z-index:1;
}
body.product .content:before {
    content:"";
    position:absolute;
    width: 100%;
    height: 100vw;
    background: url(/assets/img/BGproduct.svg);
    background-size: 100% auto;
    background-repeat: no-repeat;
    background-position: center -20rem;
    right: 0;
    top: 0;
    z-index:0;
}
.home .content>div>h1:first-of-type:after {
    pointer-events: none;
    content:"";
    display:block;
    position:absolute;
    background-repeat:no-repeat;
    background-size:contain;
    height:500%;
    right: 0;
    top: 0;
}

.home .content>div.intro>h1:first-of-type:after {
    background-image:url(/assets/img/GRterminal.png);
    width: 31.75%;
}

.home .content>div.products>h1:first-of-type:after {
    background-image:url(/assets/img/BGmainstream.svg);
    width: 49%;
    right: -4rem;
    top: -6rem;
}

.content {
    width:100%;
    padding-bottom: 6rem;
    box-sizing: border-box;
    position: relative;
    z-index: 1;
}

.content>.splash{
    text-align: center;
    width:100%;
    background-image: url(/assets/img/BGsplash.png);
    background-size: contain;
}
.content>.splash.cube{
    background-image: url(/assets/img/BGsplash-h.png);
}
.content>.splash>a>img{
    width: 100%;
    max-width: 960px;
    display: block;
    margin: 0 auto;
}

body:not(.docs) .content>div>.footer {
    position: relative;
    background:#f0f0f0;
    color:#676767;
    padding: 3rem 4rem;
    margin: 5rem -5rem -4rem;
}
.icon>span:not([class]){
    display:none;
}
span.icon {
    display:inline-block;
    height:1.25rem;
    width:1rem;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:left center;
    vertical-align:middle;
    margin:0 0 0 0.25rem
}
.icon.ios {width:1.5rem;background-image:url(/assets/img/ICios.svg);}
.icon.android {width:1rem;background-image:url(/assets/img/ICandroid.svg);}
.icon.unity {width:1rem;background-image:url(/assets/img/ICunity.svg);}
.icon.google-vr {width:1.25rem;background-image:url(/assets/img/ICgoogle-vr.svg);}
.icon.webvr {width:2.5rem;background-image:url(/assets/img/ICwebvr.svg);}
.icon.a-frame {width: 2rem;height: 2rem;background-image:url(/assets/img/ICa-frame.svg);}
.icon.htc-vive {width: 1.25rem;background-image:url(/assets/img/IChtc-vive.svg);}
.icon.oculus {width: 3.5rem;background-image:url(/assets/img/ICoculus.svg);}
.icon.samsung-gear {width: 3rem;background-image:url(/assets/img/ICsamsung-gear.svg);}

div>.inner{
    max-width: 960px;
    margin:0 auto;
    text-align: center;
    /* padding:0 0 5rem; */
    position: relative;
}
div.video>.innner{
    padding:0;
}
.video iframe {
    position: absolute;
    width:100%;
    height:100%;
    top: 0;
    left: 0;
}
div#mc_embed_signup {
    width:100%;
    /*background: #f0f0f0;*/
    text-align: center;
    padding: 1rem 0 2rem;
}
div#mc_embed_signup >form{
    max-width:960px;
    margin: 0 auto;
}

input {
    -webkit-appearance: none;
    -webkit-border-radius:0;
}

input#mc-embedded-subscribe {
    font-family:'Work Sans',sans-serif;
    width: 100%;
    border:1px solid #6b2c90;
    background: #6b2c90;
    color: #fff;
    padding: 1rem 0.5rem;
    font-size: 1rem;
    text-transform: uppercase;
    cursor: pointer;
    transition:all 0.3s ease-in-out;
    box-sizing:border-box;
}
input#mc-embedded-subscribe:hover {
    color:#6b2c90;
    background:#fff;
}

#mc_embed_signup_scroll input[type=text],#mc_embed_signup_scroll input[type=email] {
    width: 33%;
    margin: 0 0 0.5rem;
    font-family:'Work Sans',sans-serif;
    font-weight:300;
    font-size: 1rem;
    padding: 1rem 0.5rem;
    box-sizing:border-box;
    border:0;
    border: 1px solid #dbdbdb;
}
#mc_embed_signup_scroll input[type=text]:first-of-type{
    float:left;
}
#mc_embed_signup_scroll input[type=email]:last-of-type{
    float:right;
}
@media screen and (max-width:960px){
    #mc_embed_signup_scroll {
        width: 98%;
        margin:0 auto;
    }
}
.video {
    width:100%;
    background: #f0f0f0;
}
.video>.inner>.aspect-lock {
    width:100%;
    padding-bottom:56.25%;
    overflow: hidden;
    position: relative;
}
.video >.aspect-lock>iframe {
    width:100%;
    height:100%;
    position:absolute;
    top: 0;
    left: 0;
}
.content-with-sidebar>.content>.inner>.video.right {
    width: 50%;
    float: right;
    margin: 1rem 0 1rem 1rem;
    position: relative;
    z-index: 2;
}
@media screen and (max-width: 500px) {
  .content-with-sidebar>.content>.inner>.video.right {
      width: 100%;
    }
}
.compatible {
    text-align:center;
}
.compatible>img{
    max-height: 6rem;
    height:auto;
    margin: 0 1rem;
}
@media screen and (max-width:768px){
    .compatible>img{
        max-height:4rem;
    }
}
.ml-logo {
    margin-left:1rem;
    max-width: 10rem;
}
footer {
    background:#efefef;
    padding: 3rem 1rem 2rem;
    text-align: center;
    position: relative;
    border-top: 1px solid #e0e0e0;
}
footer > p{
    margin:0 0 0.25rem;
    color:#6b2c90;
}
.fine-print {
    font-size:70%;
}
.content-with-sidebar{
    display:table-row;
    position: relative;
}
.sidebar {
    display: table-cell;
    box-sizing:border-box;
    width:30%;
    overflow: hidden;
    padding-bottom: 10rem;
    position: absolute;
    top: 9.75rem;
    max-width:30%;
    transition:max-width 0.3s ease-in-out;
    z-index: 5;
}
.sidebar.hide {max-width:0%;}
@-moz-document url-prefix() {
  .sidebar {
     top:2rem;
  }
}
.sidebar.sticky {
    top: 6.25rem;
    height: 100%;
    position: fixed;
    overflow-y: auto;
}
.sidebar>ul {
    background:#f0f0f0;
    margin:1.5rem;
    min-width:20rem;
    padding: 1rem;
    position: relative;
}
.content-column-wrap {
    display:table;
    width:100%;
}
.content-with-sidebar>.content{
    display: table-cell;
    box-sizing:border-box;
    width: 70%;
    background: #fff;
    position: relative;
}
.content-with-sidebar>.content.sticky{
    padding-top: 4.9rem;
}
.content-with-sidebar>.content>.inner{
    width: 100%;
    box-sizing: border-box;
    text-align:left;
    max-width: none;
    padding: 3rem;
}

@media screen and (max-width:768px){
    .sidebar {
        width:33%;
    }
    .sidebar>ul{
        padding:0 1rem;
    }
    .content-with-sidebar>.content {
        width:66%;
    }
    .content-with-sidebar>.content>.inner{
    }
}

.content-with-sidebar>.content>.inner>a[id]{
    display:inline-block;
    visibility:hidden;
    padding-top:7rem;
}

.content-with-sidebar>.content h1 {
    font-size:3rem;
    font-weight:200;
    margin-bottom:0;
}
.content-with-sidebar>.content h2 {
    font-weight:600;
}
.content-with-sidebar>.content h2.memtitle {
    font-weight:400;
    padding-bottom:1rem;
    border-bottom:2px solid #f0f0f0;
}
.content-with-sidebar>.content h4 {
    color:rgb(94, 94, 94);
    font-weight:600;
    margin:0 0 1rem;
}

.callout {
    padding: 1rem;
    background: #f7f2f7;
    display: inline-block;
}

p.callout {
    margin: 1rem 0;
}

.sidebar li {
    margin:0;
    list-style:none;
    line-height:2;
    border-bottom:1px solid #e0e0e0;
}
.sidebar li:last-of-type {
    border:0;
}
.sidebar li>a{
    display: block;
    padding:0.5rem 0;
}
.sidebar a {
    text-decoration:none;
}
.sidebar >ul>li>ul{
    padding-left: 0;
    position: relative;
}
.sidebar li.folder:before {
    content:"\f054";
    cursor: pointer;
    font-family:'mergevr';
    padding-right:0.5rem;
    color:#6b2c90;
    transition:all 0.3s ease-in-out;
    position: absolute;
    left: 0.5rem;
    transform-origin: 20% 40%;
    top: 0.5rem;
}
.sidebar li.folder.open:before {
    transform:rotate(90deg);
}
.sidebar li {
    list-style-type:none;
    font-weight:300;
    font-size:1rem;
    max-height: 3rem;
    overflow: hidden;
    padding-left: 2rem;
    transition: max-height 0.3s ease-in-out;
    position: relative;
}

.sidebar li.title {
    max-height: none;
    padding: 0 1rem;
    margin: 0 -1rem;
    background: #6a2d90;
    color: #fff;
}

.sidebar li.title:first-child{
    margin:-1rem -1rem 0;
}

.sidebar >ul>li>ul>li {
    padding:0;
    list-style-type:circle;
}
.sidebar li.title>h3 {
    padding: 1rem 0;
    margin: 0;
    font-weight: 300;
}
.sidebar::-webkit-scrollbar{
    height:4px;
    width:4px;
}

.sidebar::-webkit-scrollbar-thumb{
    background: rgba(0,0,0,.26);
}
.section-link {
    font-weight:300;
    text-decoration:none;
    padding:1rem;
}
.mlabels {
    font-size:90%;
}
.mlabels>.mlabel{
    padding:0 0.25rem;
    margin:0 0.25rem;
    background:#f0f0f0;
}
.memdoc {
    position:relative;
}
.memdoc > p {
    font-weight:400;
    position:relative;
}
.memdoc>p:nth-child(2){
    padding: 1rem 1rem 1rem 2.5rem;
    border:1px solid #f0f0f0;
    border-top: 2.25rem solid #af94be;
    font-weight: 300;
}
.memdoc>p:nth-child(2):after{
    content:"Returns";
    font-size:1rem;
    font-weight:400;
    color:#fff;
    position:absolute;
    top:-1.75rem;left:0.5rem;
}
dl {
    border:1px solid #f0f0f0;
    border-top:0;
    margin:0;
}
dt{
    background:#af94be;
    padding:0.5rem;
    font-weight:400;
    color:#fff;
}
dd{
    padding:1rem 0;
    line-height:2;
}
code {
    padding:0.25rem;
    background:#f0f0f0;
}
.emphasis{
    background: #f0f0f0;
    padding: 1rem;
    font-weight: 400
}
.license-disclaimer {
    background: #e6ffe7;
    padding: 1rem;
    margin-bottom: 0.5rem;
}
input.license-agree {
    -webkit-appearance:checkbox;
}
.disabled {
    opacity:0.7;
}

.left-half {
    padding-right: 45%;
    max-width: 100%;
}

.columns {
    width:100%;
}
.column.third {
    width: 33%;
}
.column.half {
    width: 50%;
}
.column.third:nth-of-type(1) {
    float:left;
    padding-right:1rem;
}
.column.third:nth-of-type(2) {
    float:left;
    padding:0 0.5rem;
}
.column.third:nth-child(3) {
    float:right;
    padding-left:1rem;
}

.column>p{
    margin: 1rem 0 0;
}
.product.columns {
    position:relative;
    padding-bottom:4.5rem;
}
.product.column a.button {
    position:absolute;
    bottom:0;
}

.product h2 {
    margin: 0;
}
.product h2 {
    text-align:center;
    width:100%;
}
.product h2 > a {
    display: block;
    overflow:hidden;
    text-indent:-9999rem;
    width: 100%;
    padding: 1.6em 0;
    margin: 3rem auto 1rem;
    background-size:contain;
    background-repeat:no-repeat;
}
.product>h2>a>span {
    visibility: hidden;
}
.product.cube>h2 {
    text-align: right;
}
.product.moonshot>h2 {
    text-align:left;
}

.product.cube h2>a{
    background-image:url(/assets/img/product-cube.png);
    background-size:contain;
    background-position: left;
}
@media only screen and (min-width: 2500px) {
  .product.cube h2>a {
    background-size: 45% auto;
  }
}
.product.moonshot h2>a{
    background-image:url(/assets/img/product-moonshot.png);
    background-size: 83% auto;
    background-position:left;
}
.product.vrstart h2>a{
    background-image:url(/assets/img/product-miniverse.png);
    background-size: 100% auto;
    background-position:left;
}
body:not(.docs) .content>div.fund
 {
    background-image:url(/assets/img/BGfund.png);
    background-size: 37%;
    background-repeat:no-repeat;
    background-position:100.5% top;
    overflow:hidden;
    position:relative;
}
img.parallax-shapes {
    position:absolute;
    right:0;
    z-index:0;
}
.fund>img.parallax-shapes:nth-of-type(1) {top: 8rem;right:0%;max-width:31%;}
.fund>img.parallax-shapes:nth-of-type(2) {top: 10.5rem;right:-15%;max-width:55%;}
.fund>img.parallax-shapes:nth-of-type(3) {top: 14rem;right: 18%;max-width: 21%;}

.fund>h1.logo {
    display:inline-block;
    padding-top: 21.5rem;
    background:url(/assets/img/Merge-ARVR-fund-logo.svg);
    background-size: 45% auto;
    background-repeat:no-repeat;
    margin:-1.5rem 0 1rem;
}
.fund>p.requirements {
    margin-top:3.125rem;
}
.fund>p.guidelines {
    margin-top:4.375rem;
}

body:not(.docs) .content>div.moonjam
 {
    background-image:url(/assets/img/BGmoonjam.svg);
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center right;
    overflow:hidden;
    position:relative;
}

.moonjam>img.parallax-shapes:nth-of-type(1) {top: 3.5rem;right: -1%;max-width: 60%;}

.cube h1.logo {
    display:inline-block;
    padding-top: 10.5rem;
    background:url(/assets/img/cube-logo.svg);
    background-size: 27.5% auto;
    background-repeat:no-repeat;
    margin: 0;
}
.cube img.parallax-shapes:nth-of-type(1) {top: 19.5rem;right: 4.5rem;max-width: 33%;z-index:0;}
.cube img.parallax-shapes:nth-of-type(2) {top: -1.25rem;right: 6rem;max-width: 28%;z-index:1;}

.moonshot h1.logo {
    display:inline-block;
    padding-top: 7.5rem;
    background:url(/assets/img/moonshot-logo.svg);
    background-size: 51% auto;
    background-repeat:no-repeat;
    margin: 0.75rem 0 0;
}
.moonshot img.parallax-shapes:nth-of-type(1) {top: 20rem;right: 3rem;max-width: 40%;z-index:0;}
.moonshot img.parallax-shapes:nth-of-type(2) {top: 9.5rem;right: 5.75rem;max-width: 34%;z-index:1;}

.heart {
    color:#ed39c5;
}

header .mobile-nav {
    display:none;
}

.fund ul {
    list-style-type:none;
    margin:0;padding:0;
}

li.icon {
    padding-left:4rem;
    padding-top:0.25rem;
    position:relative;
}

li.icon:before {
    content:"";
    display:inline-block;
    position:absolute;
    width:3rem;
    height:3rem;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    left:0;
    top:0;
}


li.icon.doc:before {background-image:url(/assets/img/ICdoc.svg);}
li.icon.budget:before {background-image:url(/assets/img/ICbudget.svg);}
li.icon.team:before {background-image:url(/assets/img/ICteam.svg);}
li.icon.folio:before {background-image:url(/assets/img/ICfolio.svg);}

li.icon.age:before {background-image:url(/assets/img/ICage.svg);}
li.icon.merge-product:before {background-image:url(/assets/img/ICmerge-product.svg);}
li.icon.design:before {background-image:url(/assets/img/ICdesign.svg);}
li.icon.merge-sdk:before {background-image:url(/assets/img/ICmerge-sdk.svg);}
li.icon.arvr:before {background-image:url(/assets/img/ICarvr.svg);}
li.icon.edu:before {background-image:url(/assets/img/ICedu.svg);}
li.icon.content-icon:before {background-image:url(/assets/img/ICcontent.svg);}

.levitate{-webkit-animation:fadeInDown 3s 1,levitate 3s infinite;-moz-animation:fadeInDown 3s 1,levitate 3s infinite}
@-webkit-keyframes fadeInDown {
0%{-webkit-transform:translate3d(0,-50px,0);opacity:0}
100%{-webkit-transform:translate3d(0,10px,0);opacity:1}
}
@-moz-keyframes fadeInDown {
0%{-moz-transform:translate3d(0,-50px,0);opacity:0}
100%{-moz-transform:translate3d(0,10px,0);opacity:1}
}
@-webkit-keyframes levitate {
0%{-webkit-transform:translate3d(0,-5px,0)}
50%{-webkit-transform:translate3d(0,0,0)}
100%{-webkit-transform:translate3d(0,-5px,0)}
}
@-moz-keyframes levitate {
0%{-moz-transform:translate3d(0,-5px,0)}
50%{-moz-transform:translate3d(0,3px,0)}
100%{-moz-transform:translate3d(0,-5px,0)}
}

.content-with-sidebar>.docs-toggle >span:not([class]){
    display:none;
}

@media (max-width:900px){
    .sidebar {
        max-width:0%;
    }
    .sidebar.show {
        max-width:100%;
        width:50%;
    }
    .sidebar>ul {
        box-shadow:0 2px 10px rgba(0,0,0,0.5);
    }
    .content-with-sidebar>.content {
        width:100%;
        padding-left:4rem;
        position:relative;
    }
    .content-with-sidebar>.docs-toggle {
        background:#6b2c90;
        background-image:url(/assets/img/ICdocs-toggle.svg);
        background-size:75%;
        background-repeat:no-repeat;
        background-position:center center;
        border-radius:3px;
        color:#fff;
        cursor:pointer;
        display:block;
        width:5rem;
        height:5rem;
        position:fixed;
        left:1rem;
        top:10.5rem;
        z-index: 2;
        transition:all 0.15s ease-in-out;
        text-align: center;
    }
    .content-with-sidebar>.sidebar.sticky + .docs-toggle{
        top:6.5rem;
    }
    .content-with-sidebar>.docs-toggle.hide {
        opacity: 0;
    }
    .home .content>div>h1:first-of-type:after {
        display:block;
        position:relative;
        min-height:20rem;
        right: auto;
        top: auto;
    }
    .home .content>div.products>h1:first-of-type:after {
        right: auto;
        top: auto;
    }
    .home .content>div:not(.fund)>h1:first-of-type:after {
        background-position:center center;
        width: 70%;
        margin: 2rem auto 0;
    }
    .home .content>div.fund>h1:first-of-type:after {
        display:none;
    }
    .home .content>div:not(.fund) .left-half {
        padding-right:0;
    }
    body.product .content:before {
        background-position:center -10rem;
    }
    body.product h1.logo {
        padding-top:7rem;
    }
    .moonshot h1.logo {
        background-size: 55% auto;
    }
    .cube h1.logo {
        background-size:37% auto;
    }
    body.product .content>.inner>.left-half {
        padding-right:0;
    }
    body.product img.parallax-shapes {
        display:none;
    }
}

@media (max-width:768px) {

    header {
        height:5rem;
    }
    header .mobile-nav {
        display:inline-block;
        position:absolute;
        z-index:9999;
        top:0;
        right:0;
        padding:1.5rem;
    }
    header .mobile-nav > span {
        display:none;
    }
    header .mobile-nav:before {
        font-size:2rem;
        content:"\f0c9";
        display:inline-block;
        font-family:'mergevr';
        color:#6b2c90;
    }
    header.open { /*show*/
        overflow:visible;
        height:100%;
        background:rgba(255, 255, 255, 0);
    }
    header.open .mobile-nav:before {
        content:"\f00d";
    }
    nav.top {
        background: rgba(255, 255, 255, 0.95);
        position:absolute;
        width:100%;
        height:100%;
        top: 0;
        left: 0;
        padding-top: 4rem;
        opacity:0;
        pointer-events: none;
    }
    nav.sticky:not(.top) {
        top:0.5rem;
    }
    header.open nav.top {
        pointer-events: all;
        opacity:1;
        transition:opacity 0.3s ease-in-out;
    }
    nav.top>a:first-child {
        margin:0;
    }
    nav.top > a {
        display:block;
        text-align:center;
        font-size:2rem;
        padding:1.5rem;
    }
    div:not(.fund) > .left-half {
        padding-right:0;
    }
    .fund>img.parallax-shapes:nth-of-type(1) {top: 1rem;right:0%;max-width:31%;}
    .fund>img.parallax-shapes:nth-of-type(2) {top: 3.5rem;right:-15%;max-width:55%;}
    .fund>img.parallax-shapes:nth-of-type(3) {top: 1rem;right: 18%;max-width: 21%;}
    .column.third,
    .column.half {
        width: 100%;
    }
    .column.third:nth-of-type(1) {
        float:left;
        padding:0;
    }
    .column.third:nth-of-type(2) {
        float:left;
        padding:0;
    }
    .column.third:nth-child(3) {
        float:right;
        padding:0;
    }
    .product.columns {
        position:relative;
        padding-bottom:0;
    }
    .product.column a.button {
        position:relative;
        bottom:auto;
        margin-top:1rem;
    }
    .product.cube h2>a {
        background-size:26% auto;
    }
    .product.moonshot h2>a {
        background-size:40% auto;
    }
    .product.vrstart h2>a {
        background-size: 50% auto;
    }
    .fund>h1.logo {
        background-position:left 2rem;
        background-size:70% auto;
    }
    .cube h1.logo {
        background-size:32% auto;
    }
}
@media (max-width:580px){
    div.fund > .left-half {
        padding-right:0;
    }
    .product h2 > a {
        margin:1rem 0;
    }
    .product.cube h2>a {
        background-size:35% auto;
    }
    .product.moonshot h2>a {
        background-size:60% auto;
    }
    .product.vrstart h2>a {
        background-size: 65% auto;
    }
    body:not(.docs) .content>div.fund {
        background:#fff;
    }

    body:not(.docs) .content>div.fund .parallax-shapes {
        display:none;
    }
    .fund>h1.logo {
        background-position:1.35rem top;
        background-size:90% auto;
    }
    .moonshot h1.logo {
        background-size: 85% auto;
    }
    .cube h1.logo {
        background-size:45% auto;
    }
    .sidebar.show {
        max-width:100%;
        width:60%;
    }
    body.product .content:before {
        background-position:center 0;
    }
}
@media (max-width:480px){
    body:not(.docs) .content>div {
        padding:3rem
    }
    body:not(.docs) .content>div>.footer {
        margin:3rem -3rem -3rem;
    }
    .home .content>div:not(.fund)>h1:first-of-type:after {
        width: 100%;
    }
    .product.cube h2>a {
        background-size:38% auto;
    }
    .product.moonshot h2>a {
        background-size:70% auto;
    }
    .product.vrstart h2>a {
        background-size: 85% auto;
    }
    .fund>h1.logo {
        background-position:-0.4rem top;
        padding-top:16rem;
    }
    .sidebar.show {
        max-width:100%;
        width:70%;
    }
}
@media (max-width:420px){
    .product.cube h2>a {
        background-size:53% auto;
    }
    .moonshot h1.logo {
        background-size: 100% auto;
    }
    .cube h1.logo {
        background-size:60% auto;
    }
}

.ggjl-modal {
    position: fixed;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.8);
    width: 100%;
    height: 100%;
    z-index: 100000;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease-in-out;
}
.ggjl-modal.show {
    opacity: 1;
    pointer-events: all;
}
.ggjl-modal>.inner {
    width: 95%;
    max-width: 600px;
    background: #fff;
    padding: 0.5rem 1rem;
    margin: 10vh auto;
    opacity: 0;
    transform: translate3d(0,-50%,0);
    transition: all 0.3s ease-in-out;
}
.ggjl-modal.show>.inner {
    opacity:1;
    transform:translate3d(0,0,0);
}
.ggjl-modal>.inner>.close {
    position: absolute;
    right: 1rem;
}
.ggjl-modal>.inner>p {
    margin: 0 0 2rem;
}
.ggjl-modal>.inner>textarea {
    width: 100%;
    max-width: 100%;
    height: 7rem;
    margin-bottom: 1rem;
    font-size: 1rem;
}

@media screen and (max-width: 1280px){
    body.product.cube p.buttons {
        max-width: 60%;
    }
    body.product.cube p.buttons a.docs{
        margin-top:2rem;
    }
}
