/* ============================================== */
/* VARIABLES */
/* ============================================== */

:root{
    --color-violet: #7138f9;
    --color-violet-hover: #5f34c3;
    --color-green: #71ecb9;
    --color-black: #121119;/*Bg packs grid*/
    --color-dark: #1a1827;/*Bg site*/
    --color-grey: #8e829f;/*"Grey" font*/
    --grad-dark: linear-gradient(66.63deg, #1F2030 5.61%, #373752 94.69%);
    --color-glow-blue: #00e3ff;
    --color-glow-green: #00FBB2;
    --color-glow-light: #a771ec;
    --color-glow-strong: #ad00ff;

    --header-h: 60px;

    --loader-delay: 1.3s;
}

/* ============================================== */
/* COLORS */
/* ============================================== */

.c-violet{
    background-color: var(--color-violet);
}
.c-grad-dark{
    background: var(--grad-dark);
}
.tc-green{
    color: var(--color-green);
}
.tc-violet{
    color: var(--color-violet);
}

/* ============================================== */
/* FONTS */
/* ============================================== */

.f-teko{
    font-family: 'Teko', sans-serif;
}

/* ============================================== */
/* BUTTONS */
/* ============================================== */


.btn.c-trans-violet{
    background: linear-gradient(to bottom, #5DC7F5, rgba(0, 0, 0, 0.1));
    box-shadow: 0px 14px 24px -15px rgba(84, 255, 245, 0.53);
}
.btn.c-trans-violet::before{
    --size: calc(100% - 1px);
    content: '';
    width: var(--size);
    height: var(--size);
    display: block;
    position: absolute;
    top: 1px;
    left: 1px;
    border-radius: inherit;
    background: linear-gradient(to bottom, var(--color-violet), rgba(113, 56, 249, 0.1));
    transition: opacity 0.2s ease;
}
.btn.c-trans-violet .btn-text{
    z-index: 1;
}
.btn.c-trans-violet:hover::before{
    opacity: 0;
}
.btn.c-green{
    background-color: var(--color-green);
}
.btn.c-green:hover{
    background-color: var(--color-glow-green);
}

.btn.binance{
    background: #111111;
}

.btn.coinbase{
    background: #3259a5;
}

.btn.binance,
.btn.coinbase{
    position: relative;
    width: 200px;
    height: 50px;
    border-radius: 5px;
}

.btn.binance:hover,
.btn.coinbase:hover{
    transition: 0.2s ease;
    opacity: 0.7;
}

.btn.binance:after,
.btn.coinbase:after{
    position: absolute;
    width: 120px;
    height: 25px;
    top:50%;
    left: 50%;
    transform: translate(-50%, -50%);
    margin: 0;
    padding: 0;
}

.btn.binance:after{
    content: url("./../../images/icons/body/Binance.svg");
}
.btn.coinbase:after{
    content: url("./../../images/icons/body/Coinbase.svg");
}

@media only screen and (max-width: 768px){
    .btn {
        font-size: 1rem;
    }
}

/* ============================================== */
/* IMAGES */
/* ============================================== */

.shadow{
    height: 100%;
    width: auto;
    top: 0;
    z-index: -1;
}
.shadow.right{
    right: 50%;
}
.shadow.left{
    left: 50%;
}

/* ============================================== */
/* UTILITIES */
/* ============================================== */

.d-block{
    display: block;
}
.d-inline{
    display: inline;
}
.obj-cover{
    object-fit: cover;
    height: 100%;
}
.uppercase{
    text-transform: uppercase;
}
.lowercase{
    text-transform: lowercase;
}
.abs{
    position: absolute;
}
.of-hidden{
    overflow: hidden;
}
.as-list{
    list-style-type: disc;
    padding-left: 1em;
}
.h-100vh{
    height: auto;
    min-height: 100vh;
}
.fs-small{
    font-size: 0.8rem;
}
@media only screen and (min-width: 1081px){
    .w-45{
        width: 45%; 
    }
}
@media only screen and (max-width: 1080px){
    .med-h-60vh{
        height: auto;
        min-height: 60vh;
    }
}
@media only screen and (min-width: 769px) and (max-width: 1080px){
    .block-box .wrapper{
        width: 60%;
    }
    .block-box--img{
        width: 40%;
    }
    .block-box{
        align-items: flex-start;
    }
}
@media only screen and (min-width: 769px){
    .small-show{
        display: none;
    }
}
@media only screen and (max-width: 768px){
    .small-hide{
        display: none; 
    }
    .small-h-30vh{
        height: auto;
        min-height: 30vh;
    }
    .block-content{
        padding-left: 20px;
        padding-right: 20px;
    }
}
@media only screen and (max-width: 420px){
    .small-col-2{
        grid-template-columns: repeat(1,1fr); 
    }
}

/* ============================================== */
/* FLYERS */
/* ============================================== */

.p-flyer{
    width: min(80%, 480px);
}
@media only screen and (max-width: 1440px){
    .p-flyer{
        width: min(80%, 380px);
    }
}
#popup-close, #popupf-close{
    --size: 30px;
    background-color: var(--color-violet);
    color: #fff;
    width: var(--size);
    height: var(--size);
    border-radius: 50%;
    font-weight: 700;
    line-height: 1;
    cursor: pointer;
    top: 8px;
    right: 8px;
    transition-property: background-color, color;
    transition: 0.1s linear;
  }
  #popup-close:hover, #popupf-close{
    background-color: var(--color-violet-hover);
  }

/* ============================================== */
/* HERO */
/* ============================================== */

.hero-title{
    line-height: 0.85;
    text-shadow: 0px 6px 20px rgba(89, 228, 228, 0.28);
}
@media only screen and (min-width: 1081px){
    .hero-title{
        --fs-h1: 5rem;
    }
}
@media only screen and (min-width: 1441px){
    .hero-title{
        --fs-h1: 6rem;
    }
}

.hero--subject{
    bottom: 0;
    left: 30%;
    width: 58%;
}
.hero--dots-up{
    top: 22%;
    left: 46%;
}
.hero--dots-down{
    bottom: 15%;
    right: 14%;
}

@media only screen and (max-width: 1080px){
    .bg-overlay.dark-violet{
        background-color: #2a1953;
        opacity: 0.6;
    }
    .block-box-bg .wrapper{
        padding-top: var(--header-h);
    }
    .hero-title{
        --fs-h1: 3.6rem;
    }
    .hero--subject{
        width: 80%;
        left: 10%;
    }
    .hero--dots-up, .hero--dots-down{
        max-width: 100px;
    }
    .hero--dots-up{
        top: 15%;
        left: 10%;
    }
    .hero--dots-down{
        bottom: 8%;
        right: 12%;
    }
}

@media only screen and (max-width: 768px){
    .hero-title{
        --fs-h1: 3rem;
    }
    .hero-text{
        display: none;
    }
    .hero--subject{
        width: 100%;
        left: 0;
    }
    .hero--dots-up, .hero--dots-down{
        max-width: 60px;
    }
}

/* ============================================== */
/* VIDEOS */
/* ============================================== */

.section-videos{
    --lat: calc((100vw - 1440px) * 0.5);
    padding: 150px var(--lat) 80px var(--lat);
}

@media only screen and (min-width: 1024px){
    .center-track .slick-track{
        margin: 0 auto;
    }
}

.video-pp::after{
    content: url(../../images/icons/body/play.svg);
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 1;
    transition: transform 0.25s ease;
    pointer-events: none;
}
.video-pp:hover::after{
    transform: translate(-50%, -50%)scale3d(1.3,1.3,1);
}
.bg-videos{
    --g-op: 0.5;
    background: linear-gradient(rgba(26, 24, 39, var(--g-op)),rgba(26, 24, 39, var(--g-op))),
                no-repeat center top/100% url(../../images/body/vids_bg.png);
}

.popup-video{
    position: fixed;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0,0,0,0.8);
    z-index: 99999999;
}
.popup-video:not(.open){
    display: none;
}
.frame-video{
    max-width: 800px;
    aspect-ratio: 16 / 9;
}

@media only screen and (max-width: 768px){
    .section-videos{
        padding: 60px 0 30px;
    }
}

/* ============================================== */
/* ECOSYSTEM */
/* ============================================== */

.ecosystem-title{
    max-width: 50ch;
}
.ecosystem-text{
    max-width: 70ch;
}
.eco-ico{
    margin-right: 20px;
}

@media only screen and (max-width: 768px){
    .eco-ico{
        width: 50px;
        margin-right: 10px;
    }
}

/* ============================================== */
/* STAKING */
/* ============================================== */

.staking-bg{
    bottom: 10%;
    left: 0;
    opacity: 0.08;
    mix-blend-mode: screen;
    pointer-events: none;
}

/* ============================================== */
/* MODELS */
/* ============================================== */

.models-title{
    max-width: 38ch;
}
.models-title:lang(es){
    max-width: 48ch;
}
.table{
    border-collapse: collapse;
    --table-br: 10px;
}
.thead{
    padding: 20px 10px;
    background-color: #373752;
}
.thead:first-child{
    width: 320px;
}
.tchar{
    --t-pd: 2em;
    padding-left: var(--t-pd);
    padding-right: var(--t-pd);
}
.thead:first-child{
    border-top-left-radius: var(--table-br);
}
.thead:last-child{
    border-top-right-radius: var(--table-br);
}
.table tr:last-child td:first-child{
    border-bottom-left-radius: var(--table-br);
}
.table tr:last-child td:last-child{
    border-bottom-right-radius: var(--table-br);
}
.table td{
    background-color: #1F2030;
    height: 70px;
}
.table tr:nth-child(even) td{
    background-color: var(--color-black);
}

@media only screen and (max-width: 768px){
    .table-container{
        overflow-x: scroll;
    }
    .thead:first-child{
        min-width: 320px;
    }
    .thead{
        min-width: 260px;
    }
    .tchar{
        --t-pd: 1em;
    }
}

/* ============================================== */
/* PLANS */
/* ============================================== */

.plan{
    border: 1px solid #393939;
    box-shadow: 0px 16px 80px rgba(0, 0, 0, 0.25);
}

/* ============================================== */
/* BINARY */
/* ============================================== */

.binary-bg{
    top: 0;
    left: 0;
    mix-blend-mode: lighten;
    opacity: 0.2;
    z-index: -1;
}
@media only screen and (min-width: 421px){
    .binary-half{
        width: 70%;
        margin-left: auto;
        margin-right: auto;
    }
    .binary-half:not(:last-child){
        margin-bottom: -40px;
    }
}

/* ============================================== */
/* CASH OUT */
/* ============================================== */

.cashout-container{
    box-shadow: 0px 15px 80px rgba(0, 0, 0, 0.81);
}
.cashout-container::before{
    content: '';
    background-color: var(--color-violet);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    display: block;
    position: absolute;
    top: -10%;
    left: 5%;
    opacity: 0.5;
    filter: blur(100px);
    z-index: -1;
}
.cashout-img{
    border-radius: 10px 0 0 10px;
}
@media only screen and (max-width: 768px){
    .cashout-img{
        border-radius: 10px 10px 0 0;
        height: 180px;
    }
    .small-p-20{
        padding: 20px;
    }
}

/* ============================================== */
/* NFT */
/* ============================================== */

.nft-title{
    max-width: 24ch;
}
@media only screen and (min-width: 1081px){
    .nft-title{
        --fs-h2: 3.5rem;
    }
}
@media only screen and (min-width: 1441px){
    .nft-title{
        --fs-h2: 4rem;
    }
}

/* ============================================== */
/* GLADIATORS */
/* ============================================== */

@media only screen and (min-width: 1081px){
    .gladiators-title{
        --fs-h2: 2.6rem;
    }
}
@media only screen and (min-width: 1441px){
    .gladiators-title{
        --fs-h2: 3rem;
    }
}
.gladiator-banner{
    object-fit: contain;
    opacity: 0.18;
}
.cta-title{
    font-size: 4.6rem;
    line-height: 1;
    text-shadow: 0px 7px 16px #000000;
    transform: translateY(80px);
}
@media only screen and (max-width: 1080px){
    .cta-title{
        font-size: 3.6rem;
    }
}
@media only screen and (max-width: 768px){
    .cta-title{
        font-size: 2.6rem;
        transform: translateY(0);
        margin-top: 3em;
    }
}
@media only screen and (max-width: 480px){
    .cta-title{
        font-size: 1.8rem;
    }
}
.modes-title{
    max-width: 45ch;
}

/* ============================================== */
/* CASINOS */
/* ============================================== */

.double-down{
    bottom: 0;
    left: 15%;
    z-index: -1;
}

/* ============================================== */
/* TECH */
/* ============================================== */

.bg-tech{
    opacity: 0.15;
    mix-blend-mode: lighten;
}
.tech-overlay{
    background: linear-gradient(to top, var(--color-dark), transparent 20%, transparent 80%, var(--color-dark));
}

/* ============================================== */
/* ACADEMY */
/* ============================================== */

.academy-title{
    max-width: 36ch;
}
.academy-teaser--img{
    margin-right: 1em;
}
.academy-teaser--text{
    max-width: 30ch;
}

/* ============================================== */
/* GLOWS */
/* ============================================== */

.glow{
    opacity: 0.1;
    filter: blur(100px);
    border-radius: 50%;
    z-index: -1;
}
.g-center{
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
}
.g-experience{
    width: 80%;
    height: 70%;
    background-color: var(--color-glow-light);
}
.g-nft{
    width: 120%;
    aspect-ratio: 1;
    background-color: var(--color-glow-blue);
}
.g-marketplace{
    width: 80%;
    height: 70%;
    background-color: var(--color-glow-strong);
}
.g-table{
    width: 100%;
    height: 20%;
    background-color: var(--color-glow-blue);
    bottom: 0;
    left: 0;
    filter: blur(50px);
    opacity: 0.2;
}
.g-footer{
    width: 100%;
    height: 80vh;
    z-index: -1;
    bottom: 0;
    left: 0;
}
.g-footer::before{
    content: '';
    width: 70%;
    height: 80%;
    display: block;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.1;
    position: absolute;
    bottom: -20%;
    left: 15%;
    background-color: var(--color-glow-light);
}

#popup, #compensation-popup{
    position: fixed;
    background-color: rgba(0,0,0,0.9);
    top: 0;
    left: 0;
    opacity: 0;
}
#popup{
    width: 100%;
    height: 100%;
    animation: popup 0.2s 2s linear forwards;
    z-index: 9000000000;
}
#compensation-popup{
    width: 0;
    height: 0;
    z-index: -10;
    pointer-events: none;
    animation: popup 0.2s linear forwards;
}
#compensation-popup.open{
    width: 100%;
    height: 100%;
    z-index: 9000000000;
    opacity: 1;
    pointer-events: all;
}
#popup.close{  display: none;  }
.popup-content{
    width: min(80%, 800px);
}
@keyframes popup {
    to{opacity: 1;}
}

/* ============================================== */
/* ANIMATIONS */
/* ============================================== */

@keyframes tranOp {
	to{
		transform: translate3d(0,0,0);
		opacity: 1;
	}
}
@keyframes show {
	to{
		opacity: 1;
	}
}
.tran-op{
	--d: 0s;
	transform: translate3d(var(--dist-x), var(--dist-y), 0);
	opacity: 0;
}
.opacity{
  --d: 0s;
  opacity: 0;
}
.animated.tran-op{
	animation: tranOp 0.5s var(--d) ease-out forwards;
}
.animated.opacity{
	animation: show 0.5s var(--d) ease-out forwards;
}

/*-Hero-*/

.hero--dots-up, .hero--dots-down, .hero--subject{
    animation: tranOp 0.5s calc(var(--loader-delay) + var(--d)) ease-out forwards;
}
.hero--subject{
    --d: 0s;
    --dist-x: 0;
    --dist-y: 60px;
}
.hero--dots-up{
    --dist-x: -30px;
    --dist-y: 0;
    --d: 0.2s;
}
.hero--dots-down{
    --dist-x: 30px;
    --dist-y: 0;
    --d: 0.4s;
}

/*-Scroll-*/
.eco-item{
    --dist-x: 0;
    --dist-y: 30px;
}
.shadow{
    --dist-y: 0;
    --d: 0.4s;
}
.block-img-left, .block-img-right{
    --d: 0.2s;
}
.shadow.right, .block-img-left{
    --dist-x: -30px;
}
.shadow.left, .block-img-right{
    --dist-x: 30px;
}
.plan{
    --dist-x: 30px;
    --dist-y: 0;
}
.planets, .step{
    --dist-x: 0;
    --dist-y: 30px;
}
@media only screen and (min-width: 421px) and (max-width: 768px){
    :is(.plan, .planets, .step):nth-child(2n+2){
        --d: 0.2s;
    }
}
@media only screen and (min-width: 769px){
    :is(.plan, .planets, .step):nth-child(4n+2){
        --d: 0.2s;
    }
    :is(.plan, .planets, .step):nth-child(4n+3){
        --d: 0.4s;
    }
    :is(.plan, .planets, .step):nth-child(4n+4){
        --d: 0.6s;
    }
    .step:nth-child(5){
        --d:0.8s;
    }
}
.market-img{
    --dist-x: 0;
    --dist-y: 40px;
}
.double-down{
    --dist-x: 0;
    --dist-y: -40px;
}