/* Definición de variables */
:root{
    --bg-color: #282828;
    --bg-color-alt: #3f3f3f;
    --bg-color-alpha: rgba(40,40,40,0.6);
    --general-color: #ffffff;
    --menu-color: #ffffff;
    --menu-active: #ff3333;
    --box-bg: #1e1e1e;
    --shadow: 0px 0px 10px rgba(0,0,0,.4);
    
    --box-color: #cccccc;
    
    --input-color: #ffffff;
    --btn-color: #ffffff;
    
    --iframe-bg: #000000;
    
    --social-media-color: #ffffff;
    
    --bg-responsive-contact: rgba(0,0,0,.3);
    
    --slider-nav: #ffffff;
    --slider-nav-active: #282828;

    --overlay-header: rgba(0,0,0,.4);
}

/* Estilos generales */
html, body{
    position: relative;
    margin: 0;
    color: var(--general-color);
    background-color: var(--bg-color);
    font-family: 'Fira Sans', sans-serif;
    max-height: 100%;
    -webkit-overflow-scrolling: touch;
}

body{
    display: flex;
    flex-direction: column;
    line-height: 1.5em;
}

html.disable-scroll, body.disable-scroll{
    overflow-y: hidden;
}

*[data-scroll]{
    position: absolute;
    top: -60px;
    left: 0;
}

*[data-scroll=about-us]{
    top: -80px;
}

*[data-scroll=contact]{
    top: -20px;
}

/* Menu */
.menu{
    position: fixed;
    display: flex;
    width: 100%;
    height: 60px;
    background-color: var(--bg-color);
    box-shadow: var(--shadow);
    z-index: 99;
    transition: all 0.2s ease-in-out;
}

.menu.hide{
    background-color: var(--bg-color-alpha);
}

.menu > .container{
    position: relative;
    display: flex;
    width: 1000px;
    margin: auto;
}

.menu > .container >.logo{
    height: 58px;
    width: 200px;
    background-image: url(/assets/images/logo.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.menu > .container > .links{
    position: relative;
    display: flex;
    flex-direction: row;
    flex: 1;
    justify-content: flex-end;
    align-items: center;
    color: var(--menu-color);
    text-transform: capitalize;
}

.menu > .container > .links > div{
    position: relative;
    display: flex;
    align-items: center;
    height: 100%;
    margin-left: 20px;
    cursor: pointer;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
    transition: color 0.1s ease-in-out, opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.menu > .container > .links > div.active{
    color: var(--menu-active);
}

.menu > .container > .links > div::after{
    position: absolute;
    display: block;
    content: '';
    width: 0;
    height: 0;
    left: calc( 50% - 10px );
    bottom: 0px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid var(--menu-active);
    opacity: 0;
    transition: opacity 0.2s ease-in-out;
}

.menu > .container > .links > div.active::after{
    opacity: 1;
}

.menu > .container > .open{
    display: none;
    flex: 1;
    flex-direction: row-reverse;
    align-items: center;
    width: 30px;
    font-size: 1.5em;
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    -webkit-tap-highlight-color: transparent;
}

.menu > .container > .open > div{
    display: flex;
    justify-content: flex-end;
    position: absolute;
    cursor: pointer;
    transition: opacity 0.1s ease-in-out, transform 0.2s ease-in-out;
}

.menu > .container > .open.active > div:nth-child(1){
    transform: rotate(45deg);
    opacity: 0;
}

.menu > .container > .open > div:nth-child(2){
    transform: rotate(-45deg);
    opacity: 0;
}

.menu > .container > .open.active > div:nth-child(2){
    opacity: 1;
    transform: rotate(0deg);
}

/* Secciones */
.section{
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    background-attachment: fixed;
    background-size: cover;
    background-repeat: no-repeat;
}

/* Caja contenedora */
.box{
    position: relative;
    display: flex;
    flex-direction: column;
    width: 350px;
    background-color: var(--box-bg);
    padding: 40px;
    box-shadow: var(--shadow);
}

.box.transparent{
    background-color: transparent;
    box-shadow: none;
}

.box > h2{
    text-align: center;
    margin: 0px;
}

.box > p{
    text-align: justify;
    color: var(--box-color);
    margin: 0px;
}

.section > .container{
    display: flex;
    flex-direction: column;
    position: relative;
    width: 1000px;
    margin: 0px auto;
}

.section.horizontal{
    flex-direction: row;
    min-height: 400px;
    background-color: var(--menu-active);
    overflow: hidden;
}

/* Slider */
.slider{
    display: flex;
    flex-direction: row;
}

.slider > .slide{
    display: flex;
    flex-direction: row;
    flex: 1;
    width: 100vw;
}

.slider > .slide > [data-half=left]{
    background-color: var(--iframe-bg);
}

.slider > .slide > [data-half=left], .slider > .slide > [data-half=right]{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.slider > .slide > [data-half=left] > iframe{
    width: 100%;
    height: 100%;
    background-color: var(--iframe-bg);
}

.slider > .slide > [data-half=left] > iframe[inline]{
    position: fixed;
    bottom: 10px;
    right: 10px;
    width: 250px;
    height: auto;
    z-index: 99;
    padding: 0px 5px;
    background-color: var(--iframe-bg);
    -webkit-animation: iframe_inline 0.2s 1;
    animation: iframe_inline 0.2s 1;
}

.slider > .slide > [data-half=right] > .container{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px;
    max-width: 400px;
}

.slider > .slide > [data-half=right] > .container > .title{
    font-weight: 600;
}
    
.slider > .slide > [data-half=right] > .container > .separator{
    width: 250px;
}
    
.slider > .slide > [data-half=right] > .container > .content{
    font-size: 0.8em;
    text-align: justify;
}
    
.slider > .slide > [data-half=right] > .container > .subtitle{
    margin-bottom: 15px;
}
    
    
.slider > .slide > [data-half=right] > .social{
    position: absolute;
    top: 20px;
    right: 10px;
}

.slider-nav{
    position: absolute;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    bottom: 0;
    width: 50vw;
    height: 50px;
    right: 0px;
}

.slider-nav > div{
    width: 20px;
    height: 20px;
    background-color: var(--slider-nav);
    border-radius: 20px;
    cursor: pointer;
    transition: background-color 1s ease-in-out;
}

.slider-nav > div:not(:first-child){
    margin-left: 10px;
}
   
.slider-nav > div.active{
    background-color: var(--slider-nav-active);
}

.slider-arrows{
    position: absolute;
    display: grid;
    grid-auto-flow: column;
    justify-content: space-between;
    align-items: center;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.slider-arrows > div{
    display: grid;
    justify-content: center;
    font-size: 3em;
    height: 48px;
    width: 48px;
    cursor: pointer;
    transition: transform 0.2s ease-in-out 0s;
}

.slider-arrows > div:hover, .slider-arrows > div:active{
    transform: scale(1.1);
}

.slider-arrows > div > *{
    cursor: pointer;
}
    
/* Home */
.section[data-section=home]{
    background-image: url('/assets/images/home.jpg');
    justify-content: flex-end;
}

.section[data-section=home] > .overlay{
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: var(--overlay-header);
}

.section[data-section=home] > .logo{
    position: relative;
    width: 200px;
    height: 200px;
    margin-top: 50px;
    margin-bottom: 50px;
    background-image: url(/assets/images/logo_white.png);
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}

.section[data-section=home] > .box{
    margin-bottom: -100px;
}

.section[data-section=home] > .social{
    display: flex;
    justify-content: flex-end;
    position: relative;
    width: 1000px;
    margin-top: 100px;
    font-size: 2em;
}

.section[data-section=home] > .social > div{
    margin-left: 20px;
    margin-right: 0px;
    text-align: right;
    width: initial;
    height: 30px;
}

/* Sección Home - Game */
.section[data-section=game]{
    margin-top: 150px;
    margin-bottom: 150px;
}

.section[data-section=game] > .container > .games{
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 20px;
    flex: 1;
    justify-content: space-around;
    justify-items: center;
}

.section[data-section=game] > .container > .games > .game{
    width: 150px;
    min-height: 100px;
    padding: 10px 20px;
    border-radius: 4px;
    background-color: rgba(0,0,0,.02);
    text-decoration: none;
    color: #ffffff;
    transition: background-color 0.4s ease-in-out, box-shadow 0.4s ease-in-out;
}

.section[data-section=game] > .container > .games > .game:hover{
    background-color: rgba(0,0,0,.05);
    box-shadow: 0px 5px 10px rgba(0,0,0,.15);
}

.section[data-section=game] > .container > .games > .game > .img{
    width: 150px;
    height: 150px;
    margin-bottom: 30px;
    background-size: contain;
    border-radius: 150px;
    transition: transform 0.2s ease-in-out 0s, box-shadow 0.2s ease-in-out 0s;
}

.section[data-section=game] > .container > .games > .game:hover > .img{
    box-shadow: var(--shadow);
    transform: scale(1.02,1.02);
}

.section[data-section=game] > .container > .games > .game > .content{
    font-size: 0.7em;
    text-align: justify;
    line-height: 1.5em;
    margin-bottom: 15px;
    text-decoration: none;
    color: #ffffff;
}

.section[data-section=game] > .container > .games > .game > .logo{
    width: 150px;
    height: 50px;
    margin-bottom: 15px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
}

.section[data-section=game] > .container > .games > .game > .web{
    font-size: 0.7em;
    text-align: center;
    color: var(--menu-active);
}

.section[data-section=game] > .container > .games > .game > .web > a{
    color: var(--menu-active);
    text-decoration: none;
}

.section[data-section=game] > .container > .games > .game > .platforms{
    justify-content: space-evenly;
    margin-top: 10px;
}

.section[data-section=game] > .container > .games > .game > .platforms > div{
    margin: 0px;
}

/* Imagenes particulares por c/juego en Home */
.section[data-section=game] > .container > .games > .game[data-game=hexland] > .img{
    background-image: url(/assets/images/games/hexland/main.png);
}

.section[data-section=game] > .container > .games > .game[data-game=causa] > .img{
    background-image: url(/assets/images/games/causa/main.png);
}

.section[data-section=game] > .container > .games > .game[data-game=hegemony] > .img{
    background-image: url(/assets/images/games/hegemony/main.png);
}

.section[data-section=game] > .container > .games > .game[data-game=careta] > .img{
    background-image: url(/assets/images/games/careta/main.png);
}

.section[data-section=game] > .container > .games > .game[data-game=dreamhealer] > .img{
    background-image: url(/assets/images/games/dreamhealer/main.png);
}

.section[data-section=game] > .container > .games > .game[data-game=cuddlequest] > .img{
    background-image: url(/assets/images/games/cuddlequest/main.png);
}

.section[data-section=game] > .container > .games > .game[data-game=hawkandpuma] > .img{
    background-image: url(/assets/images/games/hawkandpuma/main.png);
}

.section[data-section=game] > .container > .games > .game[data-game=astralshot] > .img{
    background-image: url(/assets/images/games/astralshot/main.png);
}

.section[data-section=game] > .container > .games > .game[data-game=hexland] > .logo{
    background-image: url(/assets/images/games/hexland/logo_white.png);
}

.section[data-section=game] > .container > .games > .game[data-game=causa] > .logo{
    background-image: url(/assets/images/games/causa/logo_white.png);
}

.section[data-section=game] > .container > .games > .game[data-game=hegemony] > .logo{
    background-image: url(/assets/images/games/hegemony/logo_white.png);
}

.section[data-section=game] > .container > .games > .game[data-game=careta] > .logo{
    background-image: url(/assets/images/games/careta/logo_white.png);
}

.section[data-section=game] > .container > .games > .game[data-game=dreamhealer] > .logo{
    background-image: url(/assets/images/games/dreamhealer/logo_white.png);
}

.section[data-section=game] > .container > .games > .game[data-game=cuddlequest] > .logo{
    background-image: url(/assets/images/games/cuddlequest/logo_white.png);
}

.section[data-section=game] > .container > .games > .game[data-game=hawkandpuma] > .logo{
    background-image: url(/assets/images/games/hawkandpuma/logo_white.png);
}

.section[data-section=game] > .container > .games > .game[data-game=astralshot] > .logo{
    background-image: url(/assets/images/games/astralshot/logo_white.png);
}

/* Sección Game Slider */
.section[data-section=game-slider]{
    align-items: inherit;
}

/* Sección Social Media */
.section[data-section=media] > .container{
    align-items: center;
}

.section[data-section=media] > .container > .set{
    display: flex;
    flex-direction: column;
    flex-direction: row;
    justify-content: space-between;
    width: 700px;
    margin-bottom: 50px;
}

.section[data-section=media] > .container > .set > .social-media{
    width: 320px;
    height: 420px;
    border-radius: 5px;
    overflow: hidden;
}

/* Sección Equipos */
.section[data-section=team]{
    background-color: var(--bg-color-alt);
}

.section[data-section=team] > .container > .members{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px;
    flex: 1;
    justify-content: space-between;
    max-width: 700px;
    margin: 0px auto;
    margin-bottom: 100px;
}

.section[data-section=team] > .container > .members > .member{
    position: relative;
    display: flex;
    justify-content: center;
    width: 150px;
    border-radius: 5px 5px 0px 0px;
    background-color: var(--bg-color);
}

.section[data-section=team] > .container > .members > .member::before{
    position: absolute;
    display: block;
    content: '';
    width: 0;
    height: 0;
    left: calc( 50% - 75px );
    bottom: 0px;
    border-left: 75px solid transparent;
    border-right: 75px solid transparent;
    border-bottom: 30px solid var(--bg-color-alt);
}

.section[data-section=team] > .container > .members > .member::after{
    position: absolute;
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    left: calc( 50% - 5px );
    bottom: 22px;
    background-color: var(--menu-active);
    transform: rotate(45deg);
}

.section[data-section=team] > .container > .members > .member > .content{
    padding: 15px;
}

.section[data-section=team] > .container > .members > .member > .content > .name{
    font-size: 0.8em;
    text-align: center;
    margin: 0px;
}

.section[data-section=team] > .container > .members > .member > .content > .img{
    position: relative;
    width: 100px;
    height: 100px;
    margin: auto auto 20px auto;
    background-size: contain;
    background-repeat: no-repeat;
    border-radius: 100px;
    transition: transform 0.2s ease-in-out 0s, box-shadow 0.2s ease-in-out 0s;
}

.section[data-section=team] > .container > .members > .member > .content > .img::after{
    display: block;
    content: '';
    position: absolute;
    top: -5px;
    right: -5px;
    bottom: -5px;
    left: -5px;
    border: 1px solid var(--menu-active);
    border-radius: 100px;
}

.section[data-section=team] > .container > .members > .member > .content > ul{
    margin: 0px 0px 40px 0px;
    list-style: none;
    padding: 0;
    text-align: center;
    font-size: 0.7em;
    line-height: 1em;
}

.section[data-section=team] > .container > .members > .member[data-member=maureen] > .content > .img{
    background-image: url(/assets/images/team/maureen.jpg);
}

.section[data-section=team] > .container > .members > .member[data-member=ignacio] > .content > .img{
    background-image: url(/assets/images/team/ignacio.jpg);
}

.section[data-section=team] > .container > .members > .member[data-member=nicolas] > .content > .img{
    background-image: url(/assets/images/team/nicolas.jpg);
}

.section[data-section=team] > .container > .members > .member[data-member=teodoro] > .content > .img{
    background-image: url(/assets/images/team/teodoro.jpg);
}

.section[data-section=team] > .container > .members > .member[data-member=elias] > .content > .img{
    background-image: url(/assets/images/team/elias.jpg);
}

.section[data-section=team] > .container > .members > .member[data-member=brayan] > .content > .img{
    background-image: url(/assets/images/team/brayan.jpg);
}

/* Sección de contacto */
.section[data-section=contact] > .contact-box{
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 600px;
    margin: 50px 0px;
    padding: 50px;
    background-color: var(--bg-color-alt);
}

.section[data-section=contact] > .contact-box > .box{
    padding: 0px;
}

.section[data-section=contact] > .contact-box > .box{
    padding: 0px;
}

.section[data-section=contact] > .contact-box > .form{
    display: flex;
    flex-direction: column;
    width: 100%;
}

.section[data-section=contact] > .contact-box > .form > .sets{
    display: flex;
    flex-direction: column;
    margin-bottom: 10px;
}

.section[data-section=contact] > .contact-box > .form > .sets.half{
    flex-direction: row;
    align-items: flex-start;
}

.section[data-section=contact] > .contact-box > .form > .sets > .set{
    display: flex;
    flex-direction: column;
    flex: 1;
}

.section[data-section=contact] > .contact-box > .form > .sets.half > .set:nth-child(1){
    padding: 0px 50px 0px 0px;
}

.section[data-section=contact] > .contact-box > .form > .sets > .set > .title{
    font-size: 0.8em;
    margin-bottom: 5px;
}

.section[data-section=contact] > .contact-box > .form > .sets > .set > input, .section[data-section=contact] > .contact-box > .form > .sets > .set > textarea{
    border: none;
    resize: none;
    color: var(--input-color);
    background-color: var(--bg-color);
    outline: none;
}

.section[data-section=contact] > .contact-box > .form > .sets > .set > input, .section[data-section=contact] > .contact-box > .form > .sets > .set > textarea{
    padding: 10px;
}

.section[data-section=contact] > .contact-box > .form > .sets > .set > textarea{
    height: 100px;
}

.section[data-section=contact] > .contact-box > .form > .sets.footer > .set:nth-child(1){
    font-size: 0.8em;
}

.section[data-section=contact] > .contact-box > .form > .sets.footer > .set:nth-child(2){
    align-items: flex-end;
}

.section[data-section=contact] > .contact-box > .form > .sets.footer > .set[name=submit] > .g-recaptcha{
    margin-bottom: 10px;
}

/* Footer */
.footer{
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    font-size: 0.8em;
    color: var(--box-color);
    margin: 20px 0px;
}

/* Botones */
.button{
    display: flex;
    justify-content: center;
    color: var(--btn-color);
    background-color: var(--menu-active);
    padding: 5px 20px;
    min-width: 100px;
    cursor: pointer;
}

.button > span:nth-child(1), .button.toggle > span:nth-child(2){
    display: block;
}

.button > span:nth-child(2), .button.toggle > span:nth-child(1){
    display: none;
}

/* Separador */
.separator{
    position: relative;
    height: 1px;
    margin: 25px 0px;
    background-color: var(--general-color);
}

.separator::before{
    position: absolute;
    left: calc( 50% - 5px );
    bottom: -25px;
    width: 10px;
    height: 10px;
    content: '';
    margin-bottom: 20px;
    background-color: var(--general-color);
    transform: rotate(45deg);
}

/* Redes sociales */
.social, .platforms{
    position: relative;
    display: flex;
    flex-direction: row;
}

.social > div, .platforms > div{
    width: 20px;
    height: 20px;
    border-radius: 10px;
    color: var(--social-media-color);
}

.social > div:not(:last-child), .platforms > div:not(:last-child){
    margin-right: 10px;
}

.social > div a, .platforms > div a{
    color: var(--social-media-color);
    cursor: pointer;
}

/* Instagram */
.eapps-instagram-feed{
    overflow: scroll!important;
    background-color: var(--social-media-color)!important;
    height: 420px!important;
}

/* Loader */
.loader{
    position: fixed;
    display: flex;
    flex-direction: column;
    align-items: center;
    bottom: 0px;
    padding-bottom: 20px;
    left: 0px;
    right: 0px;
    height: 64px;
    pointer-events: none;
    opacity: 0;
    
    background: -moz-linear-gradient(top, rgba(0,0,0,0) 0%, rgba(0,0,0,0.5) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(0,0,0,0) 0%,rgba(0,0,0,0.5) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    
    transition: opacity 0.2s ease-in-out, transform 0.2s ease-in-out;
}

.loader.active{
    opacity: 1;
    pointer-events: all;
}

.loader > .container{
    display: flex;
    justify-content: center;
    align-items: center;
    flex: 1;
    padding: 0px 20px;
    border-radius: 5px;
    background-color: var(--box-bg);
    box-shadow: 0px 10px 10px rgba(0,0,0,.5);
    opacity: 0;
    transform: translateY( 50px );
    transition: opacity 0.4s ease-in-out, transform 0.4s ease-in-out;
}

.loader.active > .container{
    opacity: 1;
    transform: translateY( 0px );
}

.loader > .container::before{
    display: flex;
    content: '';
    width: 44px;
    height: 45px;
    border-radius: 45px;
    box-shadow: var(--shadow);
    background: url(/assets/images/loader.png) left center;
    -webkit-animation: loader 0.4s steps(4) infinite;
    animation: loader 0.4s steps(4) infinite;
}

.loader > .container > span{
    margin-left: 10px;
    color: var(--box-color);
}


/* Responsivo */
@media( max-width: 999px ){
    
    .menu > .container{
        width: 90%;
    }
    
    .section > .container{
        width: 90%;
        flex-wrap: wrap;
    }
    
    .section[data-section=home] > .social{
        width: 90%;
    }

    .section[data-section=game] > .container > .games{
        grid-template-columns: repeat(3,1fr);
    }
    
}

@media( max-width: 760px ){
    
    .menu > .container > .open{
        display: flex;
    }    
    
    .menu > .container > .links{
        flex-direction: column;
        position: fixed;
        top: 60px;
        left: 0;
        right: 0;
        bottom: -60px;
        padding-bottom: 60px;
        pointer-events: none;
        opacity: 0;
        background-color: var(--bg-color);
        transition: opacity 0.4s ease-in-out;
    }
    
    .menu > .container > .links{
        pointer-events: none;
    }
    
    .menu > .container > .links.active{
        opacity: 1;
    }
    
    .menu > .container > .links > div{
        justify-content: center;
        margin: 0px;
        width: 100%;
        font-weight: 600;
        font-size: 1.5em;
        opacity: 0;
        transform: scale(1.2,1.2) translate(0px,-10px);
        pointer-events: none;
    }
    
    .menu > .container > .links > div:nth-child(2n){
        transform: scale(0.8,0.8) translate(0px,-10px);
    }
    
    .menu > .container > .links.active > div{
        opacity: 1;
        transform: scale(1,1) translate(0px,0px);
        pointer-events: all;
    }
    
    .menu > .container > .links > div.active::after{
        display: none;
    }
    
    .section[data-section=media] > .container > .set{
        justify-content: center;
        flex-wrap: wrap;
        width: 90%;
        margin-bottom: 0px;
    }
    
    .section[data-section=media] > .container > .set > .social-media{
        margin-bottom: 50px;
    }
    
    .section[data-section=contact] > .contact-box{
        width: 70%;
        padding: 20px;
        background: transparent;
    }
    
    .section[data-section=contact] > .contact-box > .form > .sets.half{
        flex-direction: column;
        align-items: initial;
    }
    
    .section[data-section=contact] > .contact-box > .form > .sets.half > .set:nth-child(1){
        padding: 0px;
        margin-bottom: 10px;
    }
    
    .section[data-section=contact] > .contact-box > .form > .sets.half.footer{
        flex-direction: column-reverse;
    }
    
    .section[data-section=contact] > .contact-box > .form > .sets.half.footer > [name=submit] > .button{
        flex: 1;
        width: calc( 100% - 40px );
        margin-bottom: 20px;
        min-height: 50px;
        font-size: 1.em;
        align-items: center;
    }
    
    .section[data-section=contact] > .contact-box > .form > .sets > .set > input, .section[data-section=contact] > .contact-box > .form > .sets > .set > textarea{
        background-color: var(--bg-responsive-contact);
    }
    
    .section[data-section=contact] > .contact-box > .form > .sets.footer > .set:nth-child(2){
        align-items: center;
    }
    
}

@media( max-width: 700px ){
    
    .section[data-section=team] > .container > .members{
        grid-template-columns: repeat(2, 1fr);
        max-width: 500px;
    }

    .section[data-section=game] > .container > .games{
        grid-template-columns: repeat(2,1fr);
    }
    
}

@media( max-width: 660px ){
    
    .section[data-section=home]{
        background-attachment: scroll;
        background-repeat: no-repeat;
        background-position: -120px 0px;
    }
    
    .section[data-section=home] > .social{
        position: relative;
        justify-content: center;
        font-size: 2em;
    }
    
    .section[data-section=home] > .social > div{
        width: 40px;
        height: 40px;
        text-align: center;
    }
    
    .slider > .slide{
        flex-direction: column;
    }
    
    .slider > .slide > [data-half=left], .slider > .slide > [data-half=right]{
        justify-content: flex-start;
    }
    
    .slider > .slide > [data-half=left]{
        min-height: 250px;
        max-height: 250px;
    }
    
    .slider > .slide > [data-half=left] > iframe[inline]{
        right: calc( 50% - 130px );
    }
    
    .slider > .slide > [data-half=right]{
        flex-direction: column;
    }
    
    .slider > .slide > [data-half=right] > .container{
        padding-top: 20px;
        padding-bottom: 0px;
        margin-bottom: 20px;
    }
    
    .slider > .slide > [data-half=right] > .social{
        position: relative !important;
        margin-bottom: 60px;
        top: auto;
        right: auto;
    }
    
    .slider > .slide > [data-half=right] > .social > div{
        width: 40px;
        height: 40px;
        font-size: 2em; 
        text-align: center;
    }
    
    .slider > .slide > [data-half=right] > .social > div:not(:last-child){
        margin-right: 20px;
    }
    
    .slider-nav{
        width: 100vw;
    }
    
    .section[data-section=game]{
        margin-bottom: 50px;
    }
     
}

@media( max-width: 550px ){
    
    .loader{
        height: 100vh;
        z-index: 999;
        padding-bottom: 0px;
    }

    .loader > .container{
        width: 100%;
        flex-direction: column;
        background-color: var(--bg-color);
        transform: translateY( 0px );
    }
    
    .loader > .container > span{
        margin-left: 0px;
        margin-top: 10px;
    }        
    
    .section[data-section=team] > .container > .members{
        max-width: 350px;
    }

    .section[data-section=game] > .container > .games{
        grid-template-columns: 1fr;
    }

    .section[data-section=game] > .container > .games > .game{
        width: 100%;
        background-color: rgba(0,0,0,.05);
        box-shadow: 0px 5px 10px rgba(0,0,0,.15);
        padding: 20px;
    }

    .section[data-section=game] > .container > .games > .game{
        width: 100%;
        background-color: rgba(0,0,0,.05);
        box-shadow: 0px 5px 10px rgba(0,0,0,.15);
        padding: 20px;
    }
    
    .section[data-section=game] > .container > .games > .game > .img{
        margin: auto auto 30px auto;
    }
    
    .section[data-section=game] > .container > .games > .game > .logo{
        margin: auto auto 15px auto;
    }
    
    .section[data-section=game] > .container > .games > .game > .content{
        font-size: 0.8em;
    }
    
}

@media( max-width: 420px ){
    
    .box{
        width: 280px;
        padding: 40px 25px;
    }
    
    .section[data-section=contact] > .contact-box > .form > .sets.footer > .set[name=submit] > .g-recaptcha{
        transform: scale(0.85);
    }
    
}

@media( max-width: 420px ){
    .section[data-section=team] > .container > .members{
        grid-template-columns: 1fr;
    }
}

/* Animaciones */

/* Safari 4.0 - 8.0 */
@-webkit-keyframes loader {
    to{
        background-position: -176px;
    }
}

/* Standard syntax */
@keyframes loader {
    to{
        background-position: -176px;
    }
}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes iframe_inline {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}

/* Standard syntax */
@keyframes iframe_inline {
    from{
        opacity: 0;
    }
    to{
        opacity: 1;
    }
}