.desktop {
    display: block;
}

.tablet {
    display: none;
}

.mobile {
    display: none;
}

h1, h2, h3, h4, h5 {
    position: relative;
    text-transform:  uppercase;
    line-height: 1.1;
    margin: 0 0 0.25em 0;
    color: #ff24ff;
    z-index: 2;
}

h1:before, h1:after,
h2:before, h2:after,
h3:before, h3:after,
h4:before, h4:after,
h5:before, h5:after {
    content: attr(title);
    position: absolute;
    top: 0;
    left: 0;
    pointer-events: none;
}

h1:before,
h2:before,
h3:before,
h4:before,
h5:before {
    z-index: 1;
    top: 0;
    left: 0;
    color: rgba(255,255,255,.8);
    filter: blur(3px);
}

h1:after,
h2:after,
h3:after,
h4:after,
h5:after {
    z-index: -1;
    top: 0.04em;
    left: 0;
    color: rgba(192,1,221,1);
    text-shadow: 0 0 0em rgba(0,0,0,1);
}

h1 {
    font-size: 5em;
}

h2 {
    font-size:  4em;
}

h3 {
    color:  white;
    font-size:  2.5em;
}

.effect {
    background-color: #fc32fa;
    color: transparent;
    /* text-shadow: 0px 0px 12px #fff; */
    /* -webkit-text-stroke: 1px #fc6ffc; */
    text-shadow: 0 0 14px #ffdefe;
    -webkit-background-clip: text;
       -moz-background-clip: text;
            background-clip: text;
}

html {
    background: #17081f;
    color: #fff;
    font-family: 'Jost', sans-serif;
    font-size: 16px;
    line-height: 1.4;
}

.bold {
    font-family: 'Jost', sans-serif;
    line-height: 1.5;
}

html, body {
    margin: 0;
    padding: 0;
}

p {
    font-size: 1.25em;
    margin: 0;
}

.section {
    display: flex;
    justify-content: center;
    width: 100%;
}

.content {
    max-width: 1900px;
    position: relative;
    width: 100%;
}

.video-play {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 70%;
    height: 70%;
}

.video-play .img-holder {
    background: url(../img/video-play.png)no-repeat center;
    height: 100%;
    width: 100%;
}

a:hover .video-play .img-holder{
    animation: 500ms pulse infinite;
}

@keyframes pulse {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(0.95);
    }
    100% {
        transform: scale(1);
    }
}

.hero {
    background: url(../img/hero-bg.jpg) #17081f no-repeat center;
    background-size: contain;
    height: 50vw;
    position: relative;
    min-height: 30rem;
    max-height: 800px;
}

.hero:after {
    background: url(../img/hero-gradient.png) repeat-x;
    bottom: 0;
    content: '';
    height: 188px;
    left: 0;
    position: absolute;
    width: 100%;
}

.hero .content {
    display:flex;
}

.hero .content:before,
.hero .content:after {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#17081f+0,17081f+100&1+0,0+100 */
    background: -moz-linear-gradient(left,  rgba(23,8,31,1) 0%, rgba(23,8,31,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(23,8,31,1) 0%,rgba(23,8,31,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(23,8,31,1) 0%,rgba(23,8,31,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#17081f', endColorstr='#0017081f',GradientType=1 ); /* IE6-9 */

    content:'';
    height: 100%;
    position: absolute;
    top: 0;
    width: 100px;
}

.hero .content:before {
    left: 0;
}

.hero .content:after {
    right: 0;
    transform: scaleX(-1);
}

.hero .item-left {
    align-items: flex-end;
    display: flex;
    justify-content: flex-end;
    overflow: hidden;
    width: 50%;
}

.hero .item-left img {
    height: auto;
    width: 90%;
}

.hero .item-right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 50%;
    padding: 2rem;
}

.hero .item-right .platforms {
    display: flex;
    z-index: 10;
    margin-top: 1rem;
}

.hero .item-right .platforms img{
    height: 100%;
    width: auto;
}

.hero .item-right .platforms .platform-logo {
    cursor:pointer;
    height: 75px;
}

.hero .item-right .platforms .platform-logo:nth-child(1) {
    margin-right: 2em;
}

.hero .item-right img {
    transition: 300ms transform;
    width: 100%;
}

.hero .item-right .platform-logo:hover img {
    transform: scale(0.9);
}

.hero .separator {
    background: url(../img/separator.jpg) repeat-x;
    bottom: 0;
    height: 0.625rem;
    position: absolute;
    width: 100%;
    z-index: 1;
    box-shadow: 0 0 15px 5px #e592e7
}

.content-container {
    align-items: center;
    background: url(../img/content-bg-alt.jpg)no-repeat center;
    background-size:cover;
    flex-direction: column;
    overflow:hidden;
    padding: 4rem 0;
    position: relative;
}

.content-container .coin {
    position: absolute;
}

.content-container .coin.coin1 {
    left: 50%;
    height: 268px;
    top:120px;
    transform: translateX(-910px);
    width: 268px;
}

.content-container .coin.coin1 .coin-img{ 
    background: url(../img/Coin_1.png)no-repeat center;
    background-size: contain;
    height: 100%;
    width: 100%;
}

.content-container .coin.coin2 {
    left: 50%;
    height: 268px;
    top:81px;
    transform: translateX(620px);
    width: 268px;
}

.content-container .coin.coin2 .coin-img{ 
    background: url(../img/Coin_2.png)no-repeat center;
    background-size: contain;
    height: 100%;
    width: 100%;
}

.content-container .coin.coin3 {
    left: 50%;
    height: 512px;
    top:35%;
    transform: translateX(440px);
    width: 512px;
}

.content-container .coin.coin3 .coin-img{ 
    background: url(../img/Coin_3.png)no-repeat center;
    background-size: contain;
    height: 100%;
    width: 100%;
}

.content-container .coin.coin4 {
    left: 50%;
    height: 182px;
    top:61%;
    transform: translateX(-920px);
    width: 182px;
}

.content-container .coin.coin4 .coin-img{ 
    background: url(../img/Coin_4.png)no-repeat center;
    background-size: contain;
    height: 100%;
    width: 100%;
}

.content-container .coin.coin5 {
    left: 50%;
    height: 400px;
    top:67%;
    transform: translateX(280px);
    width: 400px;
}

.content-container .coin.coin5 .coin-img{ 
    background: url(../img/Coin_5.png)no-repeat center;
    background-size: contain;
    height: 100%;
    width: 100%;
}

.content-container .coin.coin6 {
    left: 50%;
    height: 400px;
    top:84%;
    transform: translateX(-1030px);
    width: 400px;
}

.content-container .coin.coin6 .coin-img{ 
    background: url(../img/Coin_6.png)no-repeat center;
    background-size: contain;
    height: 100%;
    width: 100%;
}

.content-container .coin.coin7 {
    left: 50%;
    height: 260px;
    top:88%;
    transform: translateX(650px);
    width: 260px;
}

.content-container .coin.coin7 .coin-img{ 
    background: url(../img/Coin_7.png)no-repeat center;
    background-size: contain;
    height: 100%;
    width: 100%;
}

.content-container .title-header {
    align-items: center;
    display: flex;
    flex-direction: column;
    position: relative;
    width: calc(100% - 8rem);
    padding: 0 4rem;
}

.content-container .title-header h2 {
    text-align: center;
}

.content-container .title-header .description {
    margin: 0 auto 1em;
    text-align:  center;
}

.content-container .carousel {
    align-items: center;
    display: flex;
    justify-content: center;
    margin-top: 3rem;
    opacity: 0;
    position: relative;
    transition: 500ms opacity;
}

.content-container .carousel.show {
    opacity: 1 !important;
}

.content-container .carousel .items {
    width: 73%;
}

.content-container .carousel .item {
    display: flex;
    flex-direction: column;
    position: relative;
    width: 30%;
}

.content-container .carousel .item.inaccessible {
    opacity: 0.5;
    pointer-events: none;
}

.content-container .carousel .item .item-object {
    position: relative;
}

.content-container .carousel .item .item-label {
    margin-top: 1rem;
    opacity: 0;
    transition: 500ms transform;
    transform: translate3d(0, -200%, 0);
}

.content-container .carousel .item.slick-current .item-label,
.content-container .carousel .item.prev .item-label ,
.content-container .carousel .item.next .item-label  {
    opacity: 1;
}

.content-container .carousel .item.slick-current .item-label {
    transform: translate3d(0, 0, 0);
}

.content-container .carousel .item .item-object .phone{
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
}

.content-container .carousel .item .item-object .phone.phone-frame-left{
    left: 0;
    height: 100%;
    transform: scaleX(1.18) translateX(-6px);
    transform-origin: 0 50%;
    transition: 200ms transform;
    width: 100%;
}

.content-container .carousel .item .item-object .phone.phone-frame-left img{
    height: 100%;
}

.content-container .carousel .item .item-object .phone.phone-frame-right{
    left: 0;
    height: 100%;
    transform: scaleX(1.18) translateX(6px);
    transform-origin: 100% 50%;
    transition: 200ms transform;
    width: 100%;
}

.content-container .carousel .item .item-object .phone.phone-frame-right img{
    height: 100%;
}

.content-container .carousel .item .item-object {
    opacity: 0;
    position: relative;
    transform: perspective(1400px) rotateY(-125deg) scale(0.4);
    transform-origin: 50% 50%;
    transition: transform 300ms 50ms, opacity 50ms 25ms;
}

/*
    STRAIGHT-ON
*/

.content-container .carousel .item.slick-current .item-object {
    opacity: 1;
    position: relative;
    transform: perspective(1400px) rotateY(0deg) scale(1);
    transition: transform 300ms, opacity 400ms 200ms;
}

.content-container .carousel .item.slick-current .item-object .phone.phone-frame{
    opacity: 1;
}

.content-container .carousel .item.slick-current .item-object .phone.phone-frame-left{
    opacity:0;
    transform: scaleX(1);
}

.content-container .carousel .item.slick-current .item-object .phone.phone-frame-right{
    opacity:0;
    transform: scaleX(1);
}

/*
    LEFT ANGLE
*/

.content-container .carousel .item.prev .item-object {
    opacity: 1;
    transform: perspective(1400px) rotateY(-65deg) scale(0.8);
    transition: transform 300ms, opacity 400ms 200ms;

}

.content-container .carousel .item.prev .item-object .phone.phone-frame{
    opacity: 0;
}

.content-container .carousel .item.prev .item-object .phone.phone-frame-left{
    opacity:1;
    transform: scaleX(1.17);
}

.content-container .carousel .item.prev .item-object .phone.phone-frame-right{
    opacity:0;
    transform: scaleX(1);
}

/*
    RIGHT ANGLE
*/

.content-container .carousel .item.next .item-object {
    opacity: 1;
    transform: perspective(1400px) rotateY(65deg) scale(0.8);
    transition: transform 300ms, opacity 400ms 200ms;

}

.content-container .carousel .item.next .item-object .phone.phone-frame{
    opacity: 0;
}

.content-container .carousel .item.next .item-object .phone.phone-frame-left{
    opacity:0;
    transform: scaleX(1);
}

.content-container .carousel .item.next .item-object .phone.phone-frame-right{
    opacity:1;
    transform: scaleX(1.17);
}

.content-container .carousel .item .item-object .game {
    position: relative;
    width: 100%;
}

.content-container .carousel .item .item-object .phone img,
.content-container .carousel .item .item-object .game img {
    width: 100%;
}

.content-container .carousel .item .item-label {
    transform: translate3d(0, -200%, 0);
}

.content-container .carousel .item .item-label p {
    text-align: center;
}

.content-container .carousel .nav {
    align-items: center;
    display: flex;
    justify-content: space-between;
    height: 100px;
    left: 50%;
    pointer-events: none;
    position: absolute;
    top: 50%;
    transform: translate3d(-50%, -50%, 0);
    width: 73%;
}

.content-container .carousel .nav .arrow { 
    align-items: center;
    background: url(../img/carousel-arrow.png)no-repeat;
    background-size: cover;
    display: flex;
    flex-direction: column;
    height: 100px;
    justify-content: center;
    pointer-events: auto;
    position: relative;
    transition: 300ms transform;
    width:100px;
}

.content-container .carousel .nav .arrow.prev.slick-disabled,
.content-container .carousel .nav .arrow.next.slick-disabled{
    pointer-events: none;
    transform: scale(0);
}

.content-container .carousel .nav .arrow.next {
    transform: scaleX(-1);
}

.content-container .carousel .nav .arrow .arrow-icon {
    height: 25%;
    position: relative;
    transform: translate3d(3px, -2px, 0);
    transform-origin: 50% 100%;
    transition: 250ms transform;
    width: 25%;

}

.content-container .carousel .nav .arrow:hover .arrow-icon {
    transform: translate3d(3px, -2px, 0) scale(1.2);
}

.content-container .carousel .nav .arrow .arrow-icon:before,
.content-container .carousel .nav .arrow .arrow-icon:after {
    background: #4a1165;
    border-radius: 0 6px 6px 0;
    content: '';
    height: 6px;
    left: 0%;
    position: absolute;
    width: 100%;
}

.content-container .carousel .nav .arrow .arrow-icon:before {
    top: calc(50% - 1px);
    transform-origin: 0 0;
} 
.content-container .carousel .nav .arrow .arrow-icon:after {
    top: calc(50% + 1px);
    transform-origin: 0 100%;
} 

.content-container .carousel .nav .arrow .arrow-icon:before {
    transform: rotate(45deg);
}

.content-container .carousel .nav .arrow .arrow-icon:after {
    transform: rotate(-45deg);
}

.content-container .left-justified,
.content-container .right-justified {
    display: flex;
    justify-content: center;
    margin-top: 5rem;
}

.content-container .left-justified img {
    width: 32%;
    height: auto;
}

.content-container img.glow {
    -webkit-filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 0.5));
    filter: drop-shadow(0px 0px 20px rgba(255, 255, 255, 1));
}

.content-container .left-justified .bullet-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-left: 3rem;
    width: 36%;
}

.content-container .left-justified .bullet-copy>* {
    width: 100%;
}

.content-container .right-justified {
    margin-bottom: 6rem;
}

.content-container .right-justified a {
    position: relative;
    width: 49%;
}

.content-container .right-justified img {
    width: 100%;
    position:  absolute;
    top:  50%;
    transform:  translateY(-50%);
}

.content-container .right-justified .bullet-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 19%;
    min-width: 15rem;
    margin-right: 3rem;
}

.content-container .right-justified .bullet-copy img {
    margin-left: 0;
    width: 100%;
}

.content-container .right-justified .bullet-copy>*  {
    width: 100%;
}

.section.sticky {
    background: #160031;
    overflow: hidden;
    position: -webkit-sticky;
    position: sticky;
    bottom: 0;
    z-index: 20;
}

.section.sticky .content {
    align-items: center;
    background: url(../img/sticky-bg.jpg) no-repeat center;
    background-size: cover;
    display: flex;
    flex-direction: column;
    overflow: visible;
    padding: 2rem;
}

.section.sticky .content:before,
.section.sticky .content:after {
    /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#160031+0,160031+100&1+0,0+100 */
    background: -moz-linear-gradient(left,  rgba(22,0,49,1) 0%, rgba(22,0,49,0) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(left,  rgba(22,0,49,1) 0%,rgba(22,0,49,0) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to right,  rgba(22,0,49,1) 0%,rgba(22,0,49,0) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#160031', endColorstr='#00160031',GradientType=1 ); /* IE6-9 */

    content: '';
    height: 100%;
    position: absolute;
    top: 0;
    width: 100px;
}

.section.sticky .content:before {
    left: 0;
}

.section.sticky .content:after {
    right: 0;
    transform: scaleX(-1);
}

.section.sticky .content .bg-art {
    left: 0;
    overflow:visible;
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.section.sticky .content .bg-art .bg-char {
    vertical-align: top;
    width: 100%;
}

.section.sticky .content .bg-art .bg-coin-bleed-1 {
    position:absolute;
    right: 0;
    top: 0;
    transform: translate3d(34%, -35%, 0);
    width: 10%;
}

.section.sticky .content .bg-art .bg-coin-bleed-2 {
    position:absolute;
    right: 0;
    bottom: 0;
    transform: translate3d(-1%, 54%, 0);
    width: 9%;
}

.section.sticky .content .download-text {
    position: relative;
    width: 34%;
    z-index: 1;
}

.section.sticky h3 {
    text-align: center;
}

.section.sticky .platforms {
    align-items: center;
    display: flex;
    justify-content: center;
    position: relative;
    margin-top: 1rem;
}

.section.sticky .platforms .platform-logo:nth-child(2) {
    margin-left: 4rem;
}

.section.sticky .platforms .platform-logo img {
    height: 80px;
    transition: 300ms transform;
}

.section.sticky .platforms .platform-logo:hover img {
    transform: scale(0.95);
}

footer.section {
    background: #190030;
    color: #fff;
    flex-direction: column;
}

footer.section a:active,
footer.section a:visited,
footer.section a:link {
    color: #fff;
    text-decoration: none;
}

footer .footer-section {
    align-items: center;
    display: flex;
    justify-content: space-between;
    padding: 2rem;
    width: calc(100% - 4rem);
}

footer .footer-section .left {
    display:flex;
}

footer .footer-section .right {
    display:flex;
}

footer .footer-section .right img {
    height: 56px;
}

footer .footer-section .right .logo {
    align-items: center;
    display: flex;
    justify-content: center;
}

footer .footer-section .right .logo:nth-child(2) {
    margin-left: 40px;
}

footer .footer-section:nth-child(2) {
    align-items: flex-start;
    border-top: 1px solid #500A69;
    flex-direction: column;
}

footer .footer-section ul {
    font-size: 12px;
    list-style-type: none;
    margin: 0;
    padding: 0;
}

footer .footer-section ul li {
    line-height: 2;
}

footer .footer-section ul:nth-child(2) {
    margin-left: 40px;
}

footer .footer-section p {
    font-size: 12px;
}

@media (max-width: 1900px){
    .hero {
        background-size: cover;
    }
    
    .hero .content:before,
    .hero .content:after { 
        display:none;
    }

    .hero .item-right img {
        width: 37vw;
    }

    .content-container .coin.coin1 {
        height: 13vw;
        top:8%;
        transform: translate3d(-52vw, 0, 0);
        width: 13vw;
    }
    
    .content-container .coin.coin2 {
        height: 13vw;
        top: 6%;
        transform: translate3d(36vw, 0, 0);
        width: 13vw;
    }
    
    .content-container .coin.coin3 {
        height: 27vw;
        top:35%;
        transform: translate3d(24vw, 0, 0);
        width: 27vw;
    }
    
    .content-container .coin.coin4 {
        height: 9.6vw;
        top:61%;
        transform: translate3d(-47vw, 0, 0);
        width: 9.6vw;
    }
    
    .content-container .coin.coin5 {
        height: 21vw;
        top:67%;
        transform: translate3d(14vw, 0, 0);
        width: 21vw;
    }
    
    .content-container .coin.coin6 {
        height: 21vw;
        top:84%;
        transform: translate3d(-54vw, 0, 0);
        width: 21vw;
    }
    
    .content-container .coin.coin7 {
        height: 13vw;
        top:88%;
        transform: translate3d(37vw, 0, 0);
        width: 13vw;
    }

    .section.sticky .content {
        background-size: cover;
    }

    .section.sticky .platforms .platform-logo:nth-child(2) {
        margin-left: 3vw;
    }

    .section.sticky .platforms .platform-logo img {
        height: 4rem;
    }
}

@media (max-width: 1600px){
    h1 {
        font-size: 4.5em
    }

    h2 {
        font-size: 3.25em
    }
}

@media (max-width: 1350px){
    h1 {
        font-size: 3.75em;
    }

    h2 {
        font-size: 3em
    }

    .hero .item-right .platforms .platform-logo {
        height: 55px;
    }

    .content-container .right-justified .bullet-copy {
        width: 22%;
    }
}

@media (max-width: 1040px){
    .hero h1 {
        font-size: 3em;
    }

    .hero .item-right .platforms .platform-logo {
        height: 55px;
    }

    .content-container .right-justified .bullet-copy {
        width: 26%;
    }
}

@media (max-width: 860px){
    .hero .item-right .platforms .platform-logo {
        height: 42px;
    }
}

@media (max-width: 768px){
    .desktop {
        display: none;
    }
    
    .tablet {
        display: block;
    }

    .mobile {
        display: none;
    }

    .hero {
        height: auto;
        max-height: unset;
    }

    .hero:after {
        content: none;
    }

    .hero .content {
        display: block;
        justify-content: center;
    }

    .hero .item-left {
        left: 20vw;
        position: absolute;
        top: 6vw;
        width:60vw;
    }

    .hero .item-left img {
        height: auto;
        width: 75%;
        margin: 0 auto;
    }

    .hero .item-right {
        align-items: center;
        margin: 64vw auto 0;
        overflow: hidden;
        padding-bottom: 10vw;
        position: relative;
        width: calc(100% - 2rem);
        padding-right: 1rem;
        padding-left: 1rem;
    }

    .hero .item-right:before,
    .hero .item-right:after {
        content: '';
        position:absolute;
        width: 100%
    }

    .hero .item-right:before {
        background: rgba(0, 0, 0, 1);
        height: 100%;
        position: absolute;
        top: 25vw;
    }

    .hero .item-right:after {
        height:25vw;
        position: absolute;
        top: 0;
        /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#000000+0,000000+100&0+0,1+100 */
        background: -moz-linear-gradient(top,  rgba(0,0,0,0) 0%, rgba(0,0,0,1) 100%); /* FF3.6-15 */
        background: -webkit-linear-gradient(top,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* Chrome10-25,Safari5.1-6 */
        background: linear-gradient(to bottom,  rgba(0,0,0,0) 0%,rgba(0,0,0,1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#000000',GradientType=0 ); /* IE6-9 */
    }

    .hero .item-right .header-text, 
    .hero .item-right p, 
    .hero .item-right .platforms {
        margin-left: auto;
        max-width: unset;
        position: relative;
        z-index: 1;
    }

    .hero .item-right .header-text {
        margin-left: 0px;
    }

    .hero .item-right p,
    .hero .item-right h1 {
        text-align: center;
    }

    .hero .item-right .platforms {
        justify-content: center;
        margin-left: 0;
    }

    .hero .item-right .platforms .platform-logo {
        height: 11vw;
    }

    .content-container h2,
    .content-container h2:after,
    .content-container h2:before {
        text-align: center;
        width: auto;
        margin-left: 0;
        margin-right: 0;
    }

    .content-container .coin.coin1 {
        height: 23vw;
        top: 11%;
        transform: translate3d(-55vw, 0, 0);
        width: 23vw;
    }
    
    .content-container .coin.coin2 {
        height: 17vw;
        top: 9%;
        transform: translate3d(38vw, 0, 0);
        width: 17vw;
    }
    
    .content-container .coin.coin3 {
        height: 32vw;
        top:31%;
        transform: translate3d(30vw, 0, 0);
        width: 32vw;
    }
    
    .content-container .coin.coin4 {
        height: 28.6vw;
        top: 45.5%;
        transform: translate3d(-62vw, 0, 0);
        width: 28.6vw;
    }
    
    .content-container .coin.coin5 {
        height: 29vw;
        top: 45%;
        transform: translate3d(14vw, 0, 0);
        width: 29vw;
    }
    
    .content-container .coin.coin6 {
        height: 51vw;
        top: 91.5%;
        transform: translate3d(-66vw, 0, 0);
        width: 51vw;
    }
    
    .content-container .coin.coin7 {
        height: 13vw;
        top:88%;
        transform: translate3d(37vw, 0, 0);
        width: 13vw;
    }


    .content-container .title-header {
        margin: 0;
        padding: 0 2rem;
        width: calc(100% - 4rem);
    }

    .content-container .title-header .description {
        margin: 20px auto;
        text-align: center;
        width: calc( 100% - 50px);
    }

    .content-container .carousel{
        flex-direction: column;
    }

    .content-container .carousel .items {
        width: 100%;
    }

    .slick-slider .slick-list {
        padding: 0 !important;
    }

    .content-container .carousel .slick-dots {
        display: flex;
        justify-content: center;
        list-style-type: none;
        padding: 0;
        pointer-events: None;
    }

    .content-container .carousel .slick-dots li{
        background: #838383;
        border-radius: 50%;
        display: inline-block;
        height: 15px;
        margin-left: 20px;
        overflow: hidden;
        width: 15px;

        transition: 250ms background, 250ms box-shadow;
    }

    .content-container .carousel .slick-dots li:nth-child(1){
        margin-left: 0;
    }

    .content-container .carousel .slick-dots li.slick-active{
        background: #fffdff;
        box-shadow:
        0 0 15px 5px #fffdff
    }

    .content-container .carousel .slick-dots li button{
        display: none;
    }
/*
    .content-container .carousel .nav{
        left: auto;
        max-width: 450px;
        position: relative;
        top: auto;
        transform: none;
        width: 100%;
    }
*/
    .content-container .carousel .nav{
        width: 96%;
    }

    .content-container .carousel .nav .dot-container {
        display: none;
    }

    .content-container .left-justified {
        display: flex;
        flex-direction: column-reverse;
    }

    .content-container .left-justified img {
        margin-left: 15px;
        width: calc( 100% - 30px);
    }

    .content-container .left-justified .bullet-copy {
        margin: 0 0 2rem 0;
        padding: 0 2rem;
        width: calc(100% - 4rem);
    }

    .content-container .left-justified .bullet-copy p {
        text-align: center;
    }

    .content-container .right-justified {
        flex-direction: column;
    }

    .content-container .right-justified .bullet-copy {
        margin: 0 0 2rem 0;
        padding: 0 2rem;
        width: calc(100% - 4rem);
    }

    .content-container .right-justified .bullet-copy p {
        text-align: center;
    }

    .content-container .right-justified a {
        margin-left: 1rem;
        position: relative;
        width: calc( 100% - 2rem );
        padding-top: 56.4%;
    }

    .content-container .right-justified img {
        width: 100%;
        top: 0;
        transform: none;
    }

    .section.sticky .content {
        padding: 2em;
    }

    .section.sticky .content .bg-art {
        display: none;
    }

    footer .footer-section .right img {
        height: 4vw;
    }

    footer .footer-section:nth-child(2) {
        align-items: center;
    }

    footer .footer-section p,h1,h2,h3 {
        text-align: center;
    }

}

@media (max-width: 501px){

    .desktop {
        display: none;
    }
    
    .tablet {
        display: none;
    }

    .mobile {
        display: block;
    }


    .content-container .carousel .nav .arrow {
        height: 12vw;
        width: 12vw;
    }

    .content-container .carousel .nav .arrow .arrow-icon:before, 
    .content-container .carousel .nav .arrow .arrow-icon:after {
        height:0.8vw;
        top: 50% !important;
    }

    .content-container .carousel .nav .arrow:hover .arrow-icon {
        transform: translate3d(3px, -2px, 0);
    }

    .hero .item-left {
        left: 1rem;
        width: calc( 100% - 2rem ); 
    }

    .hero .item-right {
        margin: 105vw auto 0;
    }

    .hero .item-right:before {
        top: 45vw;
    }

    .hero .item-right:after {
        height: 45vw;
    }

    .hero .item-right .platforms {
        align-items: center;
        flex-direction: column;
    }

    .hero .item-right .platforms .platform-logo {
        height: auto;
        width: 252px;
    }

    .hero .item-right .platforms .platform-logo:nth-child(1) {
        margin-right: 0;
    }

    .hero .item-right .platforms img {
        height: auto;
        width: 100%;
    }

    .content-container .title-header img {
        width: calc( 100% - 150px );
    }

    .content-container .title-header .description {
    }

    .content-container .carousel {
        margin-top: 0;
    }

    .content-container .carousel .item {
        align-items: center;
    }

    .content-container .carousel .item .item-object {
        width: 68%;
    }

    .content-container .left-justified .bullet-copy {
        align-items: center;
    }

    .content-container .left-justified .bullet-copy img {
        margin-left: 0;
        width: 86%;
    }

    .content-container .left-justified .bullet-copy p {
    }

    .content-container .right-justified .bullet-copy {
        align-items: center;
    }

    .content-container .right-justified .bullet-copy img {
        width: calc( 100% - 110px );
    }

    .section.sticky h1 {
        font-size: 3.5vw;
    }

    .section.sticky .platforms .platform-logo img {
    }

    footer .footer-section {
        flex-direction: column;
    }

    footer .footer-section .left {
        flex-direction: column;
        margin-top: 4vw;
    }

    footer .footer-section ul:nth-child(2) {
        margin-left: 0;
    }

    footer .footer-section ul li {
        text-align: center;
    }

    footer.section a:active, 
    footer.section a:visited, 
    footer.section a:link {
        font-size: 12px;
    }

    footer .footer-section .right {
        margin-top: 1em;
    }

    footer .footer-section .right img {
        height: 7vw;
    }
}