body, html {
	height: 100%
}
a.logo-mag {
    background: url('https://multimedia.mag.elcomercio.pe/elementos-comunes/img/logo-mag.png') no-repeat 0 0;
    background-position-x: 0px;
    background-position-y: 0px;
    background-size: auto;
    background-size: 95%;
    height: 30px;
    width: 65px;
    background-position: 0px 0px;
}
.boton-especiales {
    text-decoration: none;
    position: absolute;
    display: inline-block;
    text-indent: 0 !important;
    margin: 0 0 0 9px;
    color: #fff;
    font: 700 13px/13px Arial;
    padding-top: 10px;
}
body {
	font-style: normal;
    font-weight: normal;
    margin: 0;
    padding: 0;
    -webkit-font-smoothing:antialiased;
    -moz-osx-font-smoothing: grayscale;
	-webkit-tap-highlight-color: rgba(0,0,0,0);

    background: url(../img/bg-planet.jpg) repeat-x;
    /* background: repeat-x; */
    background-position: top;
    background-size: 100%;
    background-color: black;
}

/*rotar rapido*/
@-webkit-keyframes rotatinspeed /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
@keyframes rotatinspeed {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.rotatingspeed {
  -webkit-animation: rotatinspeed 10s linear infinite;
  -moz-animation: rotatinspeed 10s linear infinite;
  -ms-animation: rotatinspeed 10s linear infinite;
  -o-animation: rotatinspeed 10s linear infinite;
  animation: rotatinspeed 10s linear infinite;
}
/* fin rotar rapido*/

/*rotar inverso*/
@-webkit-keyframes rotatinginverso /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotatinginverso {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(-360deg);
    -moz-transform: rotate(-360deg);
    -webkit-transform: rotate(-360deg);
    -o-transform: rotate(-360deg);
    transform: rotate(-360deg);
  }
}
.rotatinginverso {
  -webkit-animation: rotatinginverso 120s linear infinite;
  -moz-animation: rotatinginverso 120s linear infinite;
  -ms-animation: rotatinginverso 120s linear infinite;
  -o-animation: rotatinginverso 120s linear infinite;
  animation: rotatinginverso 120s linear infinite;
}
/* fin rotar inverso*/

/*rotar*/
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.rotating {
  -webkit-animation: rotating 120s linear infinite;
  -moz-animation: rotating 120s linear infinite;
  -ms-animation: rotating 120s linear infinite;
  -o-animation: rotating 120s linear infinite;
  animation: rotating 120s linear infinite;
}
/* fin rotar*/

@keyframes saturar {
  from {
    -ms-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  to {
    -ms-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    -o-transform: rotate(360deg);
    transform: rotate(360deg);
  }
  0%, 100% {
  filter: saturate(100%);
  }
  50% {
    filter: saturate(200%);
  }

}
.saturar {
  -webkit-animation: saturar 120s linear infinite;
  -moz-animation: saturar 120s linear infinite;
  -ms-animation: saturar 120s linear infinite;
  -o-animation: saturar 120s linear infinite;
  animation: saturar 120s linear infinite;
}

.myescalar {
  animation: myescalar 1s linear 0s infinite;
}

@keyframes myescalar {
  0% {
      opacity: 1;
      transform: scale(1);
  }
  50% {
      opacity: 1;
      transform: scale(1.03);
  }
  100% {
      opacity: 1;
      transform: scale(1);
  }
}

/*levitar*/
.levitar {
  animation: levitar 3s linear infinite;
  position: relative;
}
@keyframes levitar {
  0%, 100% {
    bottom: 0;
    left: 0;
  }
  50% {
    bottom: 50px;
    left: 20px;
  }
  0%, 100% {
  filter: brightness(100%);
  }
  50% {
  filter: brightness(170%);
  }
}
/* fin levitar*/


/*mover*/
.object {
  animation: MoveUpDown 2s linear infinite;
  position: relative;
  left: -10%;
}

@keyframes MoveUpDown {
  0%, 100% {
    bottom: 0;
    left: -15%;
  }
  50% {
    bottom: 20px;
    left: -20%;
  }
}
/* fin mover*/

/*mover*/
.object2 {
    animation: MoveUpDown2 4s linear infinite;
    position: relative;
    left: 27%;
    top: 10%;
}
@keyframes MoveUpDown2 {
  0%, 100% {
    top: 0;
  }
  50% {
    top: 100px;
  }
}
/* fin mover*/
a.btn-escalar{
    transition: transform .2s; /* Animation */
    transform: scale(1.0); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
a.btn-escalar:hover{
  transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

/* fin mover*/
img.btn-escalar{
    transition: transform .2s; /* Animation */
    transform: scale(1.0); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}
img.btn-escalar:hover{
  transform: scale(1.2); /* (150% zoom - Note: if the zoom is too large, it will go outside of the viewport) */
}

img.tierra {
    position: relative;
    top: -33%;
}
.luna {
    position: absolute;
    max-width: 20%;
    top: 11%;
    left: 80%;
}
.meteoro {
    position: absolute;
    max-width: 23%;
    top: 12%;
    left: 3%;
}
.sateliteball {
    position: absolute;
    max-width: 35%;
    top: 48%;
    left: 3%;
}
.satelite {
    position: absolute;
    max-width: 57%;
    top: 25%;
    left: 42%;
}

p.btn-jugar {
    color: white;
    padding-top: 10px;
    text-align: center;
    font: 1rem/1.0 'exobold';
}

.ajuste-heros-m{
    max-width: 600px;
    margin: 0 auto;
    display: block
}

.marte {
    position: absolute;
    max-width: 35%;
    top: 60%;
    right: 0%;
}
.agujero {
    position: absolute;
    max-width: 35%;
    top: 65%;
    left: 6%;
}
.satelito {
    position: absolute;
    max-width: 30%;
    top: 68%;
    right: 5%;
}
.saturno {
    position: absolute;
    max-width: 30%;
    top: 75%;
    left: 6%;
}
.sol {
    position: absolute;
    max-width: 100%;
    top: 80%;
    left: 0;
}

.mision-1{
    position: absolute;
    max-width: 47%;
    top: 13%;
    left: 45%;
}
.mision-2{
    position: absolute;
    max-width: 47%;
    top: 33%;
    left: 5%;
}
.mision-3{
    position: absolute;
    max-width: 47%;
    top: 51%;
    left: 48%;
}
.box-astronautas {
    position: absolute;
    height: 100px;
    margin: 0px auto 0 auto;
}
.scrollContainer::-webkit-scrollbar {
    display: none;  /* Ocultar scroll */
}

@font-face {
    font-family: 'exobold';
    src: url('https://d1ts5g4ys243sh.cloudfront.net/proyectos_especiales_prod/especiales/marvel-dc-demuestra-cuando-sabes-resolviendo-estas-trivias-comics-mcu-ucm-dceu-nndd-ecvisual-ecpm/fonts/exo-bold.woff2') format('woff2'),
         url('https://d1ts5g4ys243sh.cloudfront.net/proyectos_especiales_prod/especiales/marvel-dc-demuestra-cuando-sabes-resolviendo-estas-trivias-comics-mcu-ucm-dceu-nndd-ecvisual-ecpm/fonts/exo-bold.woff') format('woff');
}
@font-face {
    font-family: 'exoregular';
    src: url('https://d1ts5g4ys243sh.cloudfront.net/proyectos_especiales_prod/especiales/marvel-dc-demuestra-cuando-sabes-resolviendo-estas-trivias-comics-mcu-ucm-dceu-nndd-ecvisual-ecpm/fonts/exo-regular.woff2') format('woff2'),
         url('https://d1ts5g4ys243sh.cloudfront.net/proyectos_especiales_prod/especiales/marvel-dc-demuestra-cuando-sabes-resolviendo-estas-trivias-comics-mcu-ucm-dceu-nndd-ecvisual-ecpm/fonts/exo-regular.woff') format('woff');
}
@font-face {
    font-family: 'magicdreams';
    src: url('https://d1ts5g4ys243sh.cloudfront.net/proyectos_especiales_prod/especiales/marvel-dc-demuestra-cuando-sabes-resolviendo-estas-trivias-comics-mcu-ucm-dceu-nndd-ecvisual-ecpm/fonts/magic-dreams.woff2') format('woff2'),
         url('https://d1ts5g4ys243sh.cloudfront.net/proyectos_especiales_prod/especiales/marvel-dc-demuestra-cuando-sabes-resolviendo-estas-trivias-comics-mcu-ucm-dceu-nndd-ecvisual-ecpm/fonts/magic-dreams.woff') format('woff');
}
@font-face {
    font-family: 'pixeledregular';
    src: url('https://d1ts5g4ys243sh.cloudfront.net/proyectos_especiales_prod/especiales/marvel-dc-demuestra-cuando-sabes-resolviendo-estas-trivias-comics-mcu-ucm-dceu-nndd-ecvisual-ecpm/fonts/pixeled-webfont.woff2') format('woff2'),
         url('https://d1ts5g4ys243sh.cloudfront.net/proyectos_especiales_prod/especiales/marvel-dc-demuestra-cuando-sabes-resolviendo-estas-trivias-comics-mcu-ucm-dceu-nndd-ecvisual-ecpm/fonts/pixeled-webfont.woff') format('woff');
}

h1 {
    text-align: center;
    color: white;
    padding: 50px 0px 0px 0px;
    margin: 0px auto;
    max-width: 74%;
    font: 2.0rem/1.0 'exobold';
    font-weight: bold;
}
    h1 span {
        color: #00E5A3;
    }

h2 {
    font-size: 1rem;
    text-align: center;
    color: white;
    padding: 0px 5px;
   
    font: 1.4rem/1.0 'exobold';
    max-width: 420px;
    margin: 0 auto;
}
    h2 span {
    font-family: 'exobold';
    /*color: #00E5A3;*/
}

h3 {
    text-align: left;
    color: white;
    margin: 0px;
    font: 0.8rem/1.2 'exoregular';
}

.cont-bolas {
    display: flex;
    margin: 0px auto;
    max-width: 10px;
    width: 100%;
    text-align: center;
    padding-right: 30px;
}

    .cont-bolas img{
        margin: auto 2px ;
    }

.text-1 {
    position: absolute;
    top: 7%;
    left: 50%;
    margin-left: -25%;
    width: 50%;
}
    .text-1 p{
        text-align: center;
        color: white;
        margin: 0px;
        font: 1.0rem/1.2 'exoregular' !important;
    }
    .text-1 p span{
        text-align: left;
        color: white;
        margin: 0px;
        font: 1.0rem/1.2 'exobold' !important;
    }

.text-2 {
    position: absolute;
    top: 23.3%;
    left: 50%;
    margin-left: -25%;
    width: 50%;
}
    .text-2 p{
        text-align: left;
        color: white;
        margin: 0px;
        font: 1.0rem/1.2 'exoregular' !important;
    }
    .text-2 p span{
        text-align: left;
        color: white;
        margin: 0px;
        font: 1.0rem/1.2 'exobold' !important;
    }

.text-3 {
    position: absolute;
    top: 43.8%;
    left: 50%;
    margin-left: -25%;
    width: 50%;
}
    .text-3 p{
        text-align: left;
        color: white;
        margin: 0px;
        font: 1.0rem/1.2 'exoregular' !important;
    }
    .text-3 p span{
        text-align: left;
        color: white;
        margin: 0px;
        font: 1.0rem/1.2 'exobold' !important;
    }



p span.color-amarillo{
   color: #ffd623;
}
p span.color-celeste{
   color: #00e7d7;
}
p span.color-morado{
   color: #ff83de;
}
p span.color-azul{
   color: #0e8ff8;
}

.touchonly {
	display: none;
}
html.touch .touchonly {
	display: block;
}
.noselect * {
	user-select: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
}
.doselect * {
	user-select: auto;
	-webkit-user-select: auto;
	-khtml-user-select: auto;
	-moz-user-select: auto;
	-o-user-select: auto;
}

.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}

.clearfix {
    display: inline-block;
}

html[xmlns] .clearfix {
    display: block;
}

* html .clearfix {
    height: 1%;
}

.clear{
	clear: both;
}
.main{
	margin: 0 auto;
	max-width: 1000px;
	position: relative;
}

	.portada-home{
		/*background: url(/marvel-dc-demuestra-cuando-sabes-resolviendo-estas-trivias-comics-mcu-ucm-dceu-nndd-xvisual/img/bg-portada.gif) no-repeat center top;
    	background-size: cover;*/
    	height: 30%;
    	position: relative;
	}
    .portada-home h1{
        margin-bottom: 5px;
    }
    .portada-home h2{
        font: 1.0rem/1.2 'exoregular' !important
    }
	.portada{
		/*background: url(/marvel-dc-demuestra-cuando-sabes-resolviendo-estas-trivias-comics-mcu-ucm-dceu-nndd-xvisual/img/bg-portada.gif) no-repeat center top;
    	background-size: cover;*/
    	height: 100%;
    	position: relative;
	}
		.dato-ganancia{
			background: url(../img/bg-dato-ganancia.jpg) no-repeat center top;
			background-size: cover;
		}

	.bloque-dos{
		background: url(../img/bg-combis.png) no-repeat center bottom;
    	background-size: 100%;
    	height: 100%;
    	text-align: center;

    	display: -moz-box;
	    -moz-box-pack: center;
	    -moz-box-align: center;
	    display: -webkit-box;
	    -webkit-box-pack: center;
	    -webkit-box-align: center;
	}

		.box-combi{
			display: inline-block;
    		margin: 20px auto;
    		vertical-align: top;
    		width: 100%;
		}
			.combi-1 {		 	
			  	background: url('../img/combi-1-1.gif') top center no-repeat;
			  	background-size: 100%; 
			  	height: 91px;
			  	margin: 0 auto;
			  	width: 225px;
			}
				.sombra-1{
					display: block;
					margin: 0 auto;
					width: 225px;
				}
			.combi-2 {		 	
			  	background: url('../img/combi-1-2.gif') top center no-repeat;
			  	background-size: 100%; 
			  	height: 101px;
			  	margin: 0 auto;
			  	width: 270px;
			}
				.sombra-2{
					display: block;
					margin: 0 auto;
					width: 290px;
				}
			.combi-3 {		 	
			  	background: url('../img/combi-1-3.gif') top center no-repeat;
			  	background-size: 100%; 
			  	height: 83px;
			  	margin: 0 auto;
			  	width: 315px;
			}
				.sombra-3{
					display: block;
					margin: 0 auto;
					width: 335px;
				}
			.box-combi span{
				color: #fff;
				display: block;
				font: 1em/1.2 'pixeledregular';
				margin: 4px auto;
				text-align: center;
				text-transform: uppercase;
			}
		.texto-1,
		.texto-3,
		.texto-4,
		.texto-5,
		.texto-6{
			display: inline-block;
		    margin: 0 auto;
		    width: 95%;
		}
			.texto-3{
				margin-top: 10px;
			}
		.calles{
			background: url('../img/bg-estrellaso.png') top center repeat-y;
			background-size: 100%;
		}
		.combis-dato-1,
		.combis-dato-2,
		.combis-dato-3,
		.combis-dato-4{
			width: 50%;
		}
			.combis-dato-2{
				margin-top: -150px;
			}
			.combis-dato-3{
				margin-top: -120px;
			}	
		.calles-dos{
			background: url('../img/bg-calles-2.jpg') bottom center no-repeat;
			background-size: 100%;
    		height: 220px;
    		width: 100%;
		}
		.calles-tres{
			background: url('../img/bg-calles-3.jpg') top center no-repeat;
			background-size: 100%;
    		height: 100%;
    		width: 100%;
		}

        .logo-dc-up {
            display: block;
            margin: 0px auto 10px auto;
            max-width: 37px;
            width: 100%;
        }
        .logo-marvel-up {
            display: block;
            margin: 0px auto 10px auto;
            max-width: 70px;
            width: 100%;
        }
        .logo-dc-up {
            display: block;
            margin: 0px auto 10px auto;
            max-width: 40px;
            width: 100%;
        }
        .btn-jugar {
            display: block;
            margin: 0px auto 10px auto;
            max-width: 120px;
            width: 100%;
            cursor: pointer;
        }


.cierre{
	background: url(../img/cierre.gif) no-repeat center center;
    background-size: cover;
    height: 100%;
}
.creditos{
    height: 60%;
    position: relative;
    text-align: center;

    display: -moz-box;
	-moz-box-pack: center;
	-moz-box-align: center;
	display: -webkit-box;
	-webkit-box-pack: center;
	-webkit-box-align: center;
}
        .box-credito {
            color: #000;
            display: inline-block;
            font: 0.8em/1.5 'exoregular';
            margin: 20px auto 10px auto;
            text-transform: unset;
            vertical-align: top;
            width: 20%;
        }
		.box-credito h4{
			margin: 2px auto;
		}
		.rojo{
			color: #fa5657;
		}
		.blanco{
			color: white;
		}

.scroll-downs {
    position: absolute;
    bottom: -50%;
    height: 55px;
    left: 0;
    margin: auto;
    right: 0;
    top: 0;
    width: 34px;
}
.mousey {
    background: #060606;
    border: 1px solid #ffffff42;
    border-radius: 20px;
    box-sizing: content-box;
    height: 35px;
    opacity: 1;
    padding: 10px 15px;
    width: 3px;
}
.scroller {
  	background-color: #000;
  	border-radius: 25%;
  	height: 10px;
  	width: 3px;

  	animation-name: scroll;
  	animation-duration: 2.2s;
  	animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  	animation-iteration-count: infinite;
}
@keyframes scroll {
  	0% { opacity: 0; }
  	10% { transform: translateY(0); opacity: 1; }
 	100% { transform: translateY(15px); opacity: 0;}
}
#header{
    margin-bottom: 50px;
    width: 100%;
}
    .header-comercio{   
        padding: 5px 0;
        position: relative;
        text-align: left;
        width: 100%;
        z-index: 9999999;
    }
        .ctn-header-comercio{
            margin: 0 auto;     
            max-width: 1024px;
        }
            .ctn-header-comercio a{
                display: inline-block;                
                text-indent: -9999px;
            }
                a.logo-comercio{
                    background: url(../img/logo-comercio.png) no-repeat 0 0;
                    background-size: 100%;                    
                    height: 30px;
                    margin-left: 10px;
                    margin-top: 10px;
                    width: 110px;
                }
                #social{
                    float: right;
                }
                     #social ul{
                        display: inline-block;
                        margin: 0 auto;
                        padding: 0;
                        vertical-align: middle;
                    }
                        #social ul li{
                            display: inline-block;
                            margin: 0 3px;
                            vertical-align: middle;
                        }
                            #social ul li a{
                                height: 36px;
                                width: 36px;
                            }
						        #fb{
						            background-size: 100%;
						            background: url(../img/fb-icon.png) no-repeat 0 0;
						            border: none;
						            display: inline-block;
						            height: 36px;
						            text-indent: -9999px;
						            width: 36px;
						        }
						        #wst{
						            background-size: 100%;
						            background: url(../img/wst-icon.png) no-repeat 0 0;
						            border: none;
						            display: none;
						            height: 36px;
						            text-indent: -9999px;
						            width: 36px;
						        }
						        #tw{
						            background-size: 100%;
						            background: url(../img/tw-icon.png) no-repeat 0 0;
						            border: none;
						            display: inline-block;
						            height: 36px;
						            text-indent: -9999px;
						            width: 36px;
						        } 
a.sonido{
	background: url(../img/sonido-off.png) no-repeat 0 0;
	background-size: 100%; 
	height: 30px;
	position: absolute;
	right: 20px;
	text-indent: -9999px;
	top: 55px;
	width: 30px;
	z-index: 20;
}
	a.sonido.active{
		background: url(../img/sonido-on.png) no-repeat 0 0;
		background-size: 100%;
	}
#social-footer{
    bottom: 5px;
    margin: 0 auto;
    padding: 0;
    position: absolute;
    text-align: center;
    width: 100%;
}
	#social-footer li a.facebook,
	#social-footer li a.wst,
	#social-footer li a.tw{
		display: block;
		text-indent: -99999px;
	}
		#social-footer li a.facebook{
			background-position-x: 2px; 
		}
		#social-footer li a.wst{
			background-position-x: -65px; 
		}

.box-desktop{
	background: rgba(0, 0, 0, 0.90);
	display: block;
    height: 100%;
    position: fixed;
    width: 100%;
    z-index: 999999999;
}
	.ctn{
		height: 112px;
	    bottom: 0;
	    left: 0;
	    margin: auto;
	    max-width: 400px;
	    position: absolute;
	    right: 0;
	    top: 0;
	}
		.btn-cerrar{
			background: #fff;
			border: 2px solid #000;
		    color: #000;
		    cursor: pointer;
		    font: 1em/13px 'pixeledregular';
		    height: 20px;
		    padding: 10px;
		    position: absolute;
		    right: -10px;
		    text-align: center;
		    top: -20px;
		    z-index: 100;
		}
		.box-desktop img{
			bottom: 0;
			left: 0;
			margin: auto;
			max-width: 400px;
			position: absolute; 
	        right: 0;     
	        top: 0; 
		}
.niveles{
    width: 100%;
    margin-bottom: 20px;
    display:inline-block;

}
.niveles .nivel{
    width: 240px;
    float: left;
    text-transform: uppercase;
    position: relative;
}
.niveles .nivel:last-child{
    float: right;
}
.nivel img{
    width: 240px;
    height: 147px;
}
.nivel{
    text-decoration: none;
}
.nivel h3{
    text-align: center;
}
.nivel .cont-text{
    position: absolute;
    top: 0;
    left: 50%;
    top: 46%;
    width: 150px;
    transform: translate(-50%, -50%);
}
.nivel h3 img{
    width: inherit;
    height: inherit;
    position: relative;
    top: 10px;
}
.nivel h4{
    text-align: left;
    color: white;
    margin: 0px;
    font: 0.7rem/1.2 'exoregular';
    position: absolute;
    bottom: 6px;
    left: 20px;
}
.nivel:last-child h4{
    left: inherit;
    right: 20px;
}
.text-1 p {
    padding-top: 20px;
}
@media only screen and (min-width: 640px){
    img.rotating.tierra {
        top: -170% !important;
    }
}    
@media only screen and (max-width: 640px){
    h1 {
        font: 1.19rem/1.06 'exobold' !important;
    }
    .portada-home h2 {
        font: 0.8rem/1.2 'exoregular' !important;
        padding: 0rem 2.05rem;
    }   
    .nivel{
        margin-bottom: 20px;
    }
    img.tierra {
    top: -15%;
    }
    .text-5 {
        left: 0%;
    }
    .box-astronautas {
        padding-top: 20px;
    }
    #wst{
        display: inline-block;
    }
    .box-desktop{
    	display: none;
    }
    /*CC7*/
    #example-wrapper.scrollContainer .scrollContent, #wrapper3.scrollContainer .scrollContent {
    margin-top: 100px !important;
    }
    .box-credito {
    width: 40% !important;
    }
}