@import url('https://fonts.googleapis.com/css?family=Gothic+A1|Orbitron');
/*
font-family: 'Orbitron', sans-serif;
font-family: 'Gothic A1', sans-serif;
*/

html {
	width: 100%;
	height: 100%;
	overflow-x: hidden;
	margin: 0;
	padding: 0;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: antialiased;
}
* {
	margin: 0;
	padding: 0;
	/*font-family: "Arima Madurai", "Trebuchet MS", Arial, Helvetica, sans-serif;*/
	box-sizing: border-box;

}
ol, ul {
	list-style: none;
}
a {
	text-decoration: none;
}
body {
	font-size: 100%;
	margin: 0;
	padding: 0;
	height: 100%;
}
/*--- para verse bien nada más --*/
body {
	
	font-family: "Gothic A1", Arial;
}

h4 {
	font-size: 25px;
	line-height: 30px;
}
img {
	width: 100%
}

/*  ------------------------  */





#intro {
    z-index: 2;
    position: absolute;
    width: 100%;
	
	display: flex;
	 justify-content: center;
	 align-items: center;
	flex-direction: column;
	padding:30px 15px;
	min-width: 400px;
	margin: 0 50%;
  transform: translateX(-50%);
}

#intro p {
    padding: 2px;
    color: #fff;
    font-size: 1rem;
	text-align: center
}
#intro  img {
	-webkit-filter: drop-shadow( 0px 0px 1px rgba(0, 0, 0, .2));
	filter: drop-shadow( 0px 0px 1px rgba(0, 0, 0, .2));
	height: 35px;
	
	
}

.svg-defs {
	position: fixed;
	opacity: 0;
	pointer-events: none;
	left: -200vw;
	font-size: 0;
  }

.social{
	margin-top: 20px;
	display: flex;
	flex-direction: row;
}
.social a {
    display: block;
    text-align: center;
	font-size: 1.0rem;
	color: #fff;
}

.colorfx {
	-webkit-transition: all 1s;
	transition: all .7s;
	fill:#fff;
	color:#fff;
}

.colorfx:hover {
	fill:#00FFFB;
	color:#00FFFB;

}
#intro span {
	color: #fff;
	display: inline-block;
	width: 1.5rem;
	height: 2rem;
	margin: 0px 11px;
	/*-webkit-transition: all 1s;
	transition: all .7s;*/
}
#intro span svg {
	width: 100%;
  height: 100%;
  /*-webkit-transition: all 1s;
  transition: all .7s;*/
}

/*#intro a span svg {fill:#fff;}
#intro a:hover span svg { fill:#00FFFB; }*/


/*----------*/

#container {
	 position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
	overflow: hidden;
	background-color:#646F6F;
	display: flex;
	justify-content: center;
    align-items: center;
	
}


#multipleslides {
	position:relative;
	overflow:hidden;
	width: 100%;
	height: 100%;
	display: block;
	-webkit-transition: height .5s; /* Safari prior 6.1 */
  	transition: height .5s;
	/*background-color: aqua;*/
	}

#multipleslides img {
	/*width:100%;*/
	/*display: block;
	max-width: none;*/
	display: none;
	}
#multipleslides div div {
	background-size: cover;
	background-position: center;
	height: 100%;
	background-repeat: no-repeat;
}

.animate { 
	width: 100%;
	height: 100%;
	position: absolute;
	left: 50%;
	top: 50%;
	
	transform: scale(1.0, 1.0) translate(-50%, -50%);

	opacity: 0;
}
.zoomin {
	-webkit-animation-name: zoomIn;
  	-webkit-animation-duration: 3.0s;	
	-webkit-animation-fill-mode: forwards;
	-webkit-animation-timing-function: linear;

  	animation-name: zoomIn;
  	animation-duration: 3.0s;	
	animation-fill-mode: forwards;
	animation-timing-function: linear;
	
}
.fadeout {
  	-webkit-animation-name: fadeOut;
  	-webkit-animation-duration: 1s;	
	-webkit-animation-fill-mode: forwards;
	
  	animation-name: fadeOut;
  	animation-duration: 1s;	
	animation-fill-mode: forwards;
	animation-timing-function: linear;


}

/* Safari 4.0 - 8.0 */
@-webkit-keyframes zoomIn {
  0% {	
	  transform: scale(1.0, 1.0) translate(-50%, -50%);
	  opacity: 1;
	}
  33% {	
	  opacity: 1;
	}
  100% {	
	  transform: scale(1.1, 1.1) translate(-45%, -45%);
	  opacity: 1;
	}
}

/* Standard syntax */
@keyframes zoomIn {
  0% {	
	  transform: scale(1.0, 1.0) translate(-50%, -50%);
	  opacity: 1;
	}
  33% {	
	  opacity: 1;
	}
  100% {	
	  transform: scale(1.1, 1.1) translate(-45%, -45%);
	  opacity: 1;
	}
}
@-webkit-keyframes fadeOut {
	  0% {	
		  transform: scale(1.1, 1.1) translate(-45%, -45%);
		  opacity: 1;
		}
	  100% {	
		  transform: scale(1.133, 1.133) translate(-43.35%, -43.35%);
		  opacity: 0;
		}
}

/* Standard syntax */
@keyframes fadeOut {
  0% {	
	  transform: scale(1.1, 1.1) translate(-45%, -45%);
	  opacity: 1;
	}
  100% {	
	  transform: scale(1.133, 1.133) translate(-43.35%, -43.35%);
	  opacity: 0;
	}
}

/*----------------------*/

@media (max-width: 768px) {
	
		}


@media (max-width: 400px) {
	
	
	#intro {
    width: 100%;
	min-width:auto;

	
}
	
}

