/*
 * HTML5 Boilerplate
 *
 * What follows is the result of much research on cross-browser styling.
 * Credit left inline and big thanks to Nicolas Gallagher, Jonathan Neal,
 * Kroc Camen, and the H5BP dev community and team.
 */

/* ==========================================================================
   Base styles: opinionated defaults
   ========================================================================== */

html,
button,
input,
select,
textarea {
	color: #222;
}

body {
	font-size: .9em;
	line-height: 1.4;
	background-color: #000000;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select:none;
	-o-user-select:none;
	user-select:none;
}
button,
select,
input:focus,
select:focus,
textarea:focus,
button:focus {
	outline: none;
}

/*
 * Remove text-shadow in selection highlight: h5bp.com/i
 * These selection declarations have to be separate.
 * Customize the background color to match your design.
 */

::-moz-selection {
	background: rgba(0, 0, 0, .8);
	color: #FFFFFF;
}

::selection {
	background: rgba(0, 0, 0, .8);
	color: #FFFFFF;
}

/*
 * A better looking default horizontal rule
 */

hr {
	display: block;
	height: 1px;
	border: 0;
	border-top: 1px solid #ccc;
	margin: 1em 0;
	padding: 0;
}

/*
 * Remove the gap between images and the bottom of their containers: h5bp.com/i/440
 */

img {
	vertical-align: middle;
}

/*
 * Remove default fieldset styles.
 */

fieldset {
	border: 0;
	margin: 0;
	padding: 0;
}

/*
 * Allow only vertical resizing of textareas.
 */


ul, li {
  list-style-type:none;
  list-style-position: outside;
  margin-left: -40px;
}

a:link{   
  text-decoration:none;
  color: #000000;
}
a:hover{
  /*color:#2F4B8A !important;*/ 
}
strong{
  font-family: 'fontSA', arial, helvetica, verdana, sans-serif;
  color:#FFFFFF !important;
  font-weight: normal;
  font-size: 1.1em;
}
.normal{
  font-family: 'fontNormal', arial, helvetica, verdana, sans-serif;
  font-weight: bolder;
  font-size: 1em;
  opacity: 1;
}
/* ==========================================================================
   Chrome Frame prompt
   ========================================================================== */

.chromeframe {
	margin: 0.2em 0;
	background: #ccc;
	color: #000;
	padding: 0.2em 0;
}

/* ==========================================================================
   Author's custom styles
   ========================================================================== */
/*
 Notas:
  - Para el cálculo de las medidas en 'em' se ha utilizado la referencia de 16 px por 1 em.
 */

/* ==========================================================================
   FUENTES
   ========================================================================== */
  
@font-face {
	font-family: 'fontNormal';
	src: url('../fonts/arial.eot');
	src: url('../fonts/arial.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/arial.woff2') format('woff2'),
		 url('../fonts/arial.woff') format('woff'),
		 url('../fonts/arial.ttf') format('truetype'),
		 url('../fonts/arial.svg#source_sans_proregular') format('svg');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'fontSA';
	src: url('../fonts/arkitech_light-webfont.eot');
	src: url('../fonts/arkitech_light-webfont.eot?#iefix') format('embedded-opentype'),
		 url('../fonts/arkitech_light-webfont.woff2') format('woff2'),
		 url('../fonts/arkitech_light-webfont.woff') format('woff'),
		 url('../fonts/arkitech_light-webfont.ttf') format('truetype'),
		 url('../fonts/arkitech_light-webfont.svg#source_sans_proregular') format('svg');
	font-weight: normal;
	font-style: normal;
}

.lt-ie9{
  font-family: 'fontNormal', arial, helvetica, verdana, sans-serif;
}

html{
  font-family: 'fontNormal', arial, helvetica, verdana, sans-serif;
  font-size: 1em;
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
}


/* ==========================================================================
   LAYOUT GENERAL
   ========================================================================== */
  

.texto{
  color: #FFFFFF;
  font-size: 1em;
  cursor: default;
  font-weight: normal;
}

.espacioP{
  margin-top: 20px;
  margin-bottom: 20px;
}


/* ==========================================================================
   Copyright
   ========================================================================== */
#copyright{
  position: fixed;
  right: 15px;
  top: 100%;
  -webkit-transform: translateY(20px);
  -ms-transform: translateY(20px);
  transform: translateY(20px);
  font-size: 0.75em;
  color: #444444;
  -webkit-transition: all .5s;
  transition: all .5s;
  opacity: 0;
}
#copyright:hover, .copyright:focus{
  color: #FFFFFF;
  text-shadow: 1px 1px #000000;
}


/* ==========================================================================
   Load
   ========================================================================== */
#loading{
  position: fixed;
  top: 50%;
  left: 50%;
  width: 420px;
  height: 420px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  text-align: center;

  

}
.loadTxt{
  position: relative;
  top: 270px;
  font-family: 'fontSA', arial, helvetica, verdana, sans-serif;
  font-size: .55em;
  color: #FFFFFF;
  text-transform: lowercase;
  -webkit-animation: flashLoad .2s linear infinite;
  -moz-animation: flashLoad .2s linear infinite;
  -ms-animation: flashLoad .2s linear infinite;
  -o-animation: flashLoad .2s linear infinite;
  animation: flashLoad .2s linear infinite;
}

/**/
@-webkit-keyframes flashLoad {
  0% {
	opacity: 1;
  }
  50% {
	opacity: .2;
  }
  100% {
	opacity: 1;
  }
}
@keyframes flashLoad {
  0% {
	opacity: 1;
  }
  50% {
	opacity: .2;
  }
  100% {
	opacity: 1;
  }
}


/* ==========================================================================
   HOME
   ========================================================================== */

body div#multimediaContent #videoHome{
  position: fixed;
  top: 0;
  left: 0; /* Corregido: -2px puede causar scroll horizontal */
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}
#multimediaContent{

	
}
#home{
  position: absolute;
  width: auto;
}

#textura{
  position: fixed;
  width: 100%;
  height: 100%;
  /*background: url("..img/textura2.png") repeat fixed center; */
  background: url(../img/textura2.png) repeat scroll 0px 0px transparent;
}

#infoInfe{
  /*background: url(../img/borrarYourmailOut.png) no-repeat scroll 0px 0px transparent;*/
  /*width: 491px;*/
  position: fixed;
  top: 100%;
  left: 15px;
  margin-top: -50px;
  opacity: 0;
  display: none;
  display: inline;
}



#subNews{
  font-family: 'fontSA', arial, helvetica, verdana, sans-serif;
  font-size: .5em;
  color: #FFFFFF;
  text-shadow: 1px 1px #000000;
  text-transform: lowercase;
}

.btnIco{
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border:none;
  margin-right: 5px;
  background-color: rgba(19, 41, 52, .35);
  -webkit-transition: all .3s;
  transition: all .3s;
}
.btnIco:hover, .btnIco:focus{
  background-color: rgba(19, 41, 52, .8);
}

.btnIcoImg{
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0px;
}
.btnIcoTxt{
  position: absolute;
  top: -20px;
  font-family: 'fontSA', arial, helvetica, verdana, sans-serif;
  font-size: .5em;
  color: #FFFFFF;
  text-shadow: 1px 1px #000000;
  text-transform: lowercase;
  text-align: center;
  width: 150px;
  -webkit-transition: all .3s;
  transition: all .3s;
}

.btnIco:hover span, .btnIco:focus span{
  opacity: 1;
}
.icoPosX1{
  left: -50px;
  opacity: 0;
}
.icoPosX2{
  left: -5px;
  opacity: 0;
}
.icoPosX3{
  left: 47px;
  opacity: 0;
}
#imgFonHome img{
  position: fixed;
  top: 0px;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  opacity: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-transition: all 1s;
  transition: all 1s;
}

/* ==========================================================================
   NAVEGACIÓN
   ========================================================================== */

nav{
  position: fixed;
  left: 50%;
  top: 50%;
  margin: -365px 0px 0px -350px;
}
section{
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);; 
}
footer{
  -webkit-transition: all .8s;
  transition: all .8s;

}

#btnCerrar{
  position: fixed !important;
  top: 50%;
  left: 50%;
  margin-top: -12px;
  -webkit-transform: translateX(480px);
  -ms-transform: translateX(480px);
  transform: translateX(480px);
  opacity: 0;
  display: none;
}

#btnCerrarTop{
  position: fixed;
  right: 0px;
  opacity: 0;
  display: none;
}

.aniBloq{
  position: fixed;
  border-radius: 50%;
}

.contMenu{
  position: absolute;
  width: 350px;
  height: 350px;
  top: 215px;
  left: 175px;
  -webkit-transition: all .8s;
  transition: all .8s;
  border-radius: 50%;
  background-color: rgba(19, 41, 52, 0);
  
  text-align: center;
}
.contMenu .marca {
  position: absolute;
  top: -7px;
  left: 0px;
  width: 100%;
  /* margin-top: -25px; */
  -webkit-transition: all 1.8s;
  transition: all 1s;
  /* text-align: center; */
  -webkit-animation: blinking 2s infinite;
  -moz-animation: blinking 2s infinite;
  -ms-animation: blinking 2s infinite;
  -o-animation: blinking 2s infinite;
  animation: blinking 2s infinite;
}
@-webkit-keyframes blinking {
  0% { opacity: 1; }
  50% { opacity: .4; }
  100% { opacity: 1; }
}


@keyframes blinking {
  0% { opacity: 1; }
  50% { opacity: .4; }
  100% { opacity: 1; }
}
.contMenu:hover .marca, .contMenu:focus .marca, .ios_hover_menu{
  display: none;
 } 
#marca_band {
  position: fixed;
  top: 10px;
  left: 20px;
  width: 80px;
  height: auto;
  pointer-events: none;
  display: block;
  z-index: 2000;
}
.contMenu img{
  width: 100%;
  margin-top: -25px;
  -webkit-transition: all 1.8s;
  transition: all 1.8s;
}
.contMenu:hover img, .contMenu:focus img{
  opacity: 0;
  -webkit-transition: all .1s;
  transition: all .1s;
}
.contMenu ul a{
  pointer-events: none; /* solución iOS modernos */
  transition-delay: 1s;
}
.contMenu:hover ul a, .contMenu:focus ul a{
  pointer-events: all;
}
.contMenu ul li{
  font-family: 'fontSA', arial, helvetica, verdana, sans-serif;
  font-size: 1em;
  color: #FFFFFF;
  text-shadow: 1px 1px #000000;
  text-transform: uppercase;
  margin-left: 4px;
  margin-top: 30px;
  position: absolute;
  top: 150px;
  width: 100%;
  opacity: 0;
  -webkit-transition: all .6s;
  transition: all .6s;
  cursor: pointer;
  visibility: hidden;
}

.contMenu:hover ul li, .contMenu:focus ul li, .contMenu:hover ul p img, .contMenu:focus ul p img{
  visibility: visible;
  opacity: 1;
  -webkit-transition: all .4s;
  transition: all .4s;
}


.contMenu:hover ul .bloqMen1, .contMenu:focus ul .bloqMen1{
  top: 20px;
}
.contMenu:hover ul .bloqMen2, .contMenu:focus ul .bloqMen2{
  top: 70px;
}
.contMenu:hover ul .bloqMen3, .contMenu:focus ul .bloqMen3{
  top: 120px;
}
.contMenu:hover ul .bloqMen4, .contMenu:focus ul .bloqMen4{
  top: 170px;
}

.bloqMen1:hover, .bloqMen1:focus, .bloqMen2:hover, .bloqMen2:focus, .bloqMen3:hover, .bloqMen3:focus, .bloqMen4:hover, .bloqMen4:focus, .bloqMen5:hover, .bloqMen5:focus, .bloqMen6:hover, .bloqMen6:focus  {
  color: #6e7b82;
  text-shadow: none;
  /*text-decoration: line-through;*/
}

.contMenu ul p img{
  position: absolute;
  top: 280px;
  left: 170px;
  width: 20px;
  height: 20px;
  opacity: 0;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  -ms-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

.contMenu:hover ul .bloqNet1, .contMenu:focus ul .bloqNet1{
  left: 80px;
}
.contMenu:hover ul .bloqNet2, .contMenu:focus ul .bloqNet2{
  left: 110px;
}
.contMenu:hover ul .bloqNet3, .contMenu:focus ul .bloqNet3{
  left: 140px;
}
.contMenu:hover ul .bloqNet4, .contMenu:focus ul .bloqNet4{
  left: 170px;
}
.contMenu:hover ul .bloqNet5, .contMenu:focus ul .bloqNet5{
  left: 200px;
}
.contMenu:hover ul .bloqNet6, .contMenu:focus ul .bloqNet6{
  left: 230px;
}
.contMenu:hover ul .bloqNet7, .contMenu:focus ul .bloqNet7{
  left: 260px;
}

.bloqNet1, .bloqNet2, .bloqNet3, .bloqNet4, .bloqNet5, .bloqNet6, .bloqNet7 {
  -webkit-transition: all .2s;
  transition: all .2s;
}
.bloqNet1:hover, .bloqNet1:focus, .bloqNet2:hover, .bloqNet2:focus, .bloqNet3:hover, .bloqNet3:focus, .bloqNet4:hover, .bloqNet4:focus, .bloqNet5:hover, .bloqNet5:focus, .bloqNet6:hover, .bloqNet6:focus, .bloqNet7:hover, .bloqNet7:focus {
  -webkit-transform: scale(1.6);
  -ms-transform: scale(1.6);
  transform: scale(1.6);
}

.menuFondo{
  position: fixed;
  top: 50%;
  left: 50%;
  width: 3500px;
  height: 3500px;
  margin-left: -1750px;
  margin-top: -1750px;
  /*background-color: rgba(19, 41, 52, .35);*/
  background-color: rgba(0, 0, 0, 0.8);
  border-radius: 50%;
  mix-blend-mode: multiply;
  -webkit-transition: all 600ms cubic-bezier(0.39, 0.575, 0.565, 1);
  transition: all 600ms cubic-bezier(0.39, 0.575, 0.565, 1);
}
.rotExt-null, .rotInt-null{
  display: none;
}

.rotExt {
  position: fixed;
  -webkit-animation: rotating 41s linear infinite;
  -moz-animation: rotating 41s linear infinite;
  -ms-animation: rotating 41s linear infinite;
  -o-animation: rotating 41s linear infinite;
  animation: rotating 41s linear infinite;
  pointer-events: none;
}

.rotInt {
  position: fixed;
  -webkit-animation: rotatingLow 20s linear infinite;
  -moz-animation: rotatingLow 20s linear infinite;
  -ms-animation: rotatingLow 20s linear infinite;
  -o-animation: rotatingLow 20s linear infinite;
  animation: rotatingLow 20s linear infinite;
  pointer-events: none;
}


.rotLin {
  position: absolute;
  left: 135px;
  top: 135px;
  mix-blend-mode: add;
  pointer-events: none;    
}

.ani1{
  -webkit-animation: rotatingLow 10s linear infinite;
  -moz-animation: rotatingLow 10s linear infinite;
  -ms-animation: rotatingLow 10s linear infinite;
  -o-animation: rotatingLow 10s linear infinite;
  animation: rotatingLow 10s linear infinite;
  -webkit-mix-blend-mode: multiply;
  mix-blend-mode: multiply;
}
.ani2{
  -webkit-animation: rotating 17s linear infinite;
  -moz-animation: rotating 17s linear infinite;
  -ms-animation: rotating 17s linear infinite;
  -o-animation: rotating 17s linear infinite;
  animation: rotating 17s linear infinite;
   -webkit-background-blend-mode: multiply;
  mix-blend-mode: multiply;
}
.ani3{
  -webkit-animation: rotatingLow 6s linear infinite;
  -moz-animation: rotatingLow 6s linear infinite;
  -ms-animation: rotatingLow 6s linear infinite;
  -o-animation: rotatingLow 6s linear infinite;
  animation: rotatingLow 6s linear infinite;
  -webkit-background-blend-mode: multiply;
  mix-blend-mode: multiply;
}
.ani4{
  -webkit-animation: rotating 10s linear infinite;
  -moz-animation: rotating 10s linear infinite;
  -ms-animation: rotating 10s linear infinite;
  -o-animation: rotating 10s linear infinite;
  animation: rotating 10s linear infinite;
  -webkit-background-blend-mode: multiply;
  mix-blend-mode: multiply;
}
.ani5{
  -webkit-animation: rotatingLow 10s linear infinite;
	-moz-animation: rotatingLow 10s linear infinite;
	-ms-animation: rotatingLow 10s linear infinite;
	-o-animation: rotatingLow 10s linear infinite;
	animation: rotatingLow 10s linear infinite;
}
.ani6{
  -webkit-animation: rotating 30s linear infinite;
  -moz-animation: rotating 30s linear infinite;
  -ms-animation: rotating 30s linear infinite;
  -o-animation: rotating 30s linear infinite;
  animation: rotating 30s linear infinite;
}
.ani7{
  -webkit-animation: rotating 10s linear infinite;
  -moz-animation: rotating 10s linear infinite;
  -ms-animation: rotating 10s linear infinite;
  -o-animation: rotating 10s linear infinite;
  animation: rotating 10s linear infinite;
}
.ani8{
  -webkit-animation: rotating 17s linear infinite;
  -moz-animation: rotating 17s linear infinite;
  -ms-animation: rotating 17s linear infinite;
  -o-animation: rotating 17s linear infinite;
  animation: rotating 17s linear infinite;
}
.ani9{
  -webkit-animation: rotatingLow 36s linear infinite;
  -moz-animation: rotatingLow 36s linear infinite;
  -ms-animation: rotatingLow 36s linear infinite;
  -o-animation: rotatingLow 36s linear infinite;
  animation: rotatingLow 36s linear infinite;
}
.ani10{
  -webkit-animation: rotating 43s linear infinite;
  -moz-animation: rotating 43s linear infinite;
  -ms-animation: rotating 43s linear infinite;
  -o-animation: rotating 43s linear infinite;
  animation: rotating 43s linear infinite;
}


.rotBg {
  position: fixed;
  left: 50%;
  margin: -325px 0px 0px -657px;
  -webkit-animation: rotatingLow 10s linear infinite;
  -moz-animation: rotatingLow 10s linear infinite;
  -ms-animation: rotatingLow 10s linear infinite;
  -o-animation: rotatingLow 10s linear infinite;
  animation: rotatingLow 10s linear infinite;
  pointer-events: none;
}
/**/
@-webkit-keyframes rotating /* Safari and Chrome */ {
  from {
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  to {
	-ms-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}
@keyframes rotating {
  from {
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  to {
	-ms-transform: rotate(360deg);
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
  }
}
/**/
@-webkit-keyframes rotatingLow /* Safari and Chrome */ {
  from {
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  to {
	-ms-transform: rotate(-360deg);
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
  }
}
@keyframes rotatingLow {
  from {
	-ms-transform: rotate(0deg);
	-webkit-transform: rotate(0deg);
	transform: rotate(0deg);
  }
  to {
	-ms-transform: rotate(-360deg);
	-webkit-transform: rotate(-360deg);
	transform: rotate(-360deg);
  }
}


/**/
@-webkit-keyframes eliminarOut /* Safari and Chrome */ {
  from{
	top: 0px;
  }
  to {
	opacity: 0;
	width: 1px;
	height: 1px;
  }
}
@keyframes eliminarOut {
  from{
	top: 0px;
  }
  to {
	opacity: 0;
	width: 1px;
	height: 1px;
  }
}

/**/
@-webkit-keyframes eliminarIn /* Safari and Chrome */ {
  from{
	top: 0px;
  }
  to {
	opacity: 0;
	width: 1px;
	height: 1px;
  }
}
@keyframes eliminarIn {
  from{
	top: 0px;
  }
  to {
	opacity: 0;
	width: 30px;
	height: 30px;
  }
}

#menuMoviles{
  position: fixed;
  top: -60px;
  width: 100%;
  background-color: rgba(0, 0, 0, .8);
  text-align: center;
  font-family: 'fontSA', arial, helvetica, verdana, sans-serif;
  color:#FFFFFF;
  font-weight: normal;
  font-size: .9em;
  padding-top: 15px;
  padding-bottom: 15px;  
  -webkit-transition: all 1s;
  transition: all 1s;
  cursor: pointer;
}


/* ==========================================================================
   ABOUT
   ========================================================================== */

#aboContenido{
  width: 1000px;
  height: 1000px;
  border-radius: 50%;
  overflow: hidden;
  color: #FFFFFF;
  opacity: 0;
  display:none;
}
#aboFondo{
  opacity: 0;
  background: rgb(19, 41, 52);
  border-radius: 50%;
}

#aboMarca{
  position: absolute;
  top: -200px;
  width: 644px;
  margin-left: -250px;
  opacity: 0;
}
#aboBloqText{
  position: relative;
  top: -750px;
  left: 440px;
  width: 380px;
}

article h1 {
  opacity: 0;
}
article h2 {
  opacity: 0;
  padding-top: 40px;
}
article h3 {
  opacity: 0;
  padding-top: 80px;
}


/* ==========================================================================
   CONTACTO
   ========================================================================== */

#conContenido{
  position: relative;
  top: 40px;
  width: 644px;
  height: auto;
  padding-top: 70px;
  opacity: 0;
  display: none;
}
.imgSA{
  position: relative;
  top: -70px;
  opacity: 0;
}
#conContenido img, #conContenido form{
  width: 100%;
}
#conBloqNet{
  opacity: 0;
}
#conBloqNet p img{
  position: absolute;
  margin-top: 7px;
  width: 20px;
  height: 20px;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  -ms-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

#conBloqNet .bloqNet1, #conBloqNet .bloqNet2, #conBloqNet .bloqNet3, #conBloqNet .bloqNet4, #conBloqNet .bloqNet5, #conBloqNet .bloqNet6, #conBloqNet .bloqNet7{
  left: 0px;
}

#formDatos{

}
.forCajaText{
  font-family: 'fontSA', arial, helvetica, verdana, sans-serif;
  color:#FFFFFF;
  font-weight: normal;
  font-size: .75em;
  margin-top: 50px;
  opacity: 0;
}
.inputTextCorto{
  width: 235px;
  height: 28px;
  background-color: rgba(255, 255, 255, .15);
  border: none;
  color: #FFFFFF;
  padding-left: 5px;
  padding-right: 5px;
  margin-top: 60px;
  opacity: 0;
}

.listMensaje{
  width: 98%;
  height: 180px;
  background-color: rgba(255, 255, 255, .15);
  border: none;
  resize: none;
  color: #FFFFFF;
  padding: 1%;
  margin-top: 70px;
  opacity: 0;
}
#btnEnvio, #btnEnvioSub{
  height: 32px;
  font-family: 'fontSA', arial, helvetica, verdana, sans-serif;
  color:#FFFFFF;
  font-weight: normal;
  font-size: .75em;
  border: 1px #FFFFFF solid;
  background-color: transparent;
  opacity: 0;
}
#btnEnvio{
  position: absolute;
  right: 0px;
  width: 145px;
}
#btnEnvioSub{
  width: 102.5%;
  margin-top: 30px;
}
#btnEnvio:hover, #btnEnvio:focus, #btnEnvioSub:hover, #btnEnvioSub:focus{
  background-color: rgba(19, 41, 52, .8);
}

#cajaAviso, #cajaAvisoSub{
  text-align: center;
  color: #FFFFFF;
  font-size: 1.4em;
}
#cajaAviso{
  margin-top: 120px;
}
#cajaAvisoSub{
  margin-top: 40px;
}
.inputTextError{
  border: 1px solid #FF0000;
}
.inputBorderError{
  border: 1px solid #FF0000 !important;
}
/* ==========================================================================
   SUSCRIPCIÓN
   ========================================================================== */
#subContenido{
  position: relative;
  top: 0px;
  width: 360px;
  height: auto;
  padding-top: 70px;
  opacity: 0;
  display: none;
  font-family: 'fontNormal', arial, helvetica, verdana, sans-serif;
  color:#FFFFFF;
  font-weight: normal;
  font-size: 1em;
}
#btnEnvioSub{
  opacity: 0;
}
#subContenido p{
  margin-top: 20px;
  opacity: 0;
}
#formDatosSub .forCajaText{
  margin-top: 50px;
  opacity: 0;
}
#formDatosSub .inputTextCorto{
  margin-top: 40px;
  opacity: 0;
}
#subContenido a{
  color: #FFFFFF;
}
#subContenido a:hover, #subContenido a:focus{
  text-decoration: underline;
}
/* ==========================================================================
   FULL SCREEN
   ========================================================================== */
#fullScreen{
  position: fixed;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, .9);
  -webkit-transition: all 1s;
  transition: all 1s;
  opacity: 0;
  display: none;
}


#fullIfrMus{
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-100px) translateY(-200px);
  -ms-transform: translateX(-100px) translateY(-200px);
  transform: translateX(-100px) translateY(-200px);
}
#conDinamico{
  position: fixed;
  left: 50%;
  top: 50%;
}
.fullTxtInfo{
  position: absolute;
  left: 50%;
  top: 50%;
  width: 420px;
  height: auto;
  text-align: center;
  font-family: 'fontSA', arial, helvetica, verdana, sans-serif;
  color:#FFFFFF;
  font-weight: normal;
  font-size: .9em;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
#fullBloqNet{
  position: absolute;
  top: 100px;
  width: 420px;
  text-align: left;
  font-family: 'fontSA', arial, helvetica, verdana, sans-serif;
  color:#FFFFFF;
  font-weight: normal;
  font-size: .9em;
}
#fullBloqNet p img{
  padding: 0px 10px 0px 10px;
  float: left;
  width: 30px;
  height: 30px;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  -ms-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

/* ==========================================================================
   MUSIC
   ========================================================================== */
#musContenido{
  position: absolute;
  /*width: 100%;*/
  text-align: center;
  top: 50%;
  left: 50%;
  -webkit-transition: all .8s;
  transition: all .8s;
  -webkit-transform: translateX(-50%) translateY(-260px);
  -ms-transform: translateX(-50%) translateY(-260px);
  transform: translateX(-50%) translateY(-260px);
  opacity: 0;
  display: none;
}


.btnMusica{ 
  width: 520px;
  height: 520px;
  padding: 0px;
  border:none;
  border-radius: 50%;
  background-color: transparent;
  opacity: 0;
  display: block;
}
.btnMusica img{
  width: 100%;
  position: initial;
  top: 0px;
}
.musMaskClip{
  position: relative;
  width: 100%;
  height: 100%;
  top: 0px;
  border: none;
  overflow: hidden;
}
.musCover{
  position: absolute;
  width: 320px;
  height: 320px;
  margin-top: -420px;
  margin-left: 100px;
  border-radius: 50%;
  background-color:transparent;
  background-size: cover;
  overflow: hidden;
  -webkit-transition: all .5s;
  transition: all .5s;
  border: 1px rgba(19, 41, 52, 0) solid;
}
.btnMusica:hover .musCover, .btnMusica:focus .musCover{
  margin-top: -519px;
  margin-left: 0px;
  border: 100px rgba(19, 41, 52, .35) solid;
}

#musBloqNet{
  position: relative;
  top: -50px;
  left: 200px;
  width: 150px;
  text-align: center;
}
#musBloqNet p img{
  padding: 0px 10px 0px 10px;
  float: left;
  width: 25px;
  height: 25px;
  -webkit-transition: all .6s;
  -moz-transition: all .6s;
  -ms-transition: all .6s;
  -o-transition: all .6s;
  transition: all .6s;
}

#musBloqNet .bloqNet1, #musBloqNet .bloqNet2, #musBloqNet .bloqNet3{
}



/* ==========================================================================
   VIDEO
   ========================================================================== */


#vidContenido{
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transition: all .8s;
  transition: all .8s;
  -webkit-transform: translateX(-50%) translateY(-140px);
  -ms-transform: translateX(-50%) translateY(-140px);
  transform: translateX(-50%) translateY(-140px);
  opacity: 0;
  display: none;
}
.btnVideo{
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background-color: transparent;
  padding: 0px;
  margin-top: 300px;
  margin-bottom: 300px;
  overflow: hidden;
  border: 10px transparent solid;
  -webkit-transition: all .8s;
  transition: all .8s;
  opacity: 0;
}

.btnVideo:hover, .btnVideo:focus{
  width: 450px;
  height: 450px;
  opacity: 1 !important;
  margin-top: 50px;
  margin-bottom: 50px;
}

#vidContenido p{
  text-align: center;
}
.btnVideo img{
  width: 100%;
  height: 100%;
}

.vidTit{
  position: relative;
  left: 0px;
  top: -55%;
  width: 100%;
  text-align: center;
  font-family: 'fontSA', arial, helvetica, verdana, sans-serif;
  color:#FFFFFF;
  font-weight: normal;
  font-size: .9em;
  -webkit-transition: all .8s;
  transition: all .8s;
}
.btnVideo:hover .vidTit, .btnVideo:focus .vidTit{
  font-size: 1.6em;
}

iframe, #vidClip{
  position: absolute;
  width: 95%;
  height: 95%;
  left: 2.5%;
  top: 2.5%;
}



/*-- responsive-design --*/
@media (max-width:670px){
  section{
	top: 140px;
	left: 0px;
	position: absolute;
  -webkit-transform: none;
  -ms-transform: none;
	transform: none;
	width: 100%;
  }
  #aboContenido{
	padding: 2.5%;
	width: 95%;
	height: auto;
	border-radius: inherit;
  }
  #aboFondo{
	display: none;
  }
  #aboMarca{
	position: static;
	width: 95%;
	margin-left: 0px;
  }
  #aboBloqText{
	position: static;
	width: auto;

  }

  .btnMusica{
	width: 320px;
	height: 320px;
  }
  .musMaskClip .rotInt{
	top: -320px !important;
  }

  .musCover{
	width: 210px;
	height: 210px;
	margin-top: -265px;
	margin-left: 55px;
  }

  .btnMusica:hover .musCover, .btnMusica:focus .musCover{
	margin-top: -320px;
	margin-left: 0px;
	border: 55px rgba(19, 41, 52, .35) solid;
  }
  
  #conContenido{
	width: 95%;
	padding: 2.5%;
	top: 0px;
  }
  .inputTextCorto {
	width: 98%;
  }
  #btnEnvio {
	width: 95%;
	left: 2.5%;
  }
  #conBloqNet {
	margin-top: 60px;
	position: relative;
	left: 0px;
  }
  #subContenido{
	position: absolute;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
  }

}

@media (max-width:430px){
  .contMenu img{
    width: 89%;
    margin-top: -10px;
  }
  #subContenido{
	top: -80px;
	left: 2.5%;
	width: 92%;
	-webkit-transform: none;
	-ms-transform: none;
	transform: none;
  }
    #copyright{
        visibility: hidden;
    }
    #infoInfe {
        left: 50%;
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        transform: translateX(-50%);
    }
}
