
#landingPageBackground {
	height: 100%;
	min-height:100%;
	width: 100%;
	position: fixed;
	z-index: 1;
	top: 0;
	left: 0;
	background-color: #000000;
}

#landingPage {
	height: 100%;
	min-height:100%;
	width: 100%;
	position: fixed;
	z-index: 2;
	top: 0;
	left: 0;
	overflow-y: hidden;
	background: url("img/landing-0.jpg") no-repeat center center fixed;
	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	transition: all 1s ease;
	-webkit-animation: fade 4s infinite;
	-moz-animation: fade 4s infinite;
	-o-animation: fade 4s infinite;
	animation: fade 4s infinite;	
}

@media (min-width: 320px) {
	#landingHeader {
		width: 100%;
		height: 80px;
		background-color: rgba(0,0,0, 0.7);
		font-size: 35px;
		font-family: Georgia, 'Times New Roman', Times, serif;
		color: #bdbdbd;
		text-align: center;
		padding: 30px;
	}
}

@media (min-width: 858px) {
	#landingHeader {
		width: 100%;
		height: 80px;
		background-color: rgba(0,0,0, 0.7);
		font-size: 65px;
		font-family: Georgia, 'Times New Roman', Times, serif;
		color: #bdbdbd;
		text-align: center;
		padding: 30px;
	}
}

#landingTextEnButton {
	font-size: 20px;
	font-family: Georgia, 'Times New Roman', Times, serif;
	color: #bdbdbd;
	text-align: center;
	padding: 30px;
	margin: auto;
}

#landingButtonDiv {
	margin-top: 30px;
}

#landingButton {
	background-color:transparent;
	border-radius:40px;
	border:2px solid #bdbdbd;
	cursor:pointer;
	color:#bdbdbd;
	font-family:Georgia;
	font-size:21px;
	font-weight:bold;
	padding:14px 55px;
	text-decoration:none;
	margin-top: 20px;
	margin: auto;
}

#landingButton:hover {
	background-color:rgba(0,0,0, 0.7);
	border: 2px solid rgba(0,0,0, 0.7);
}

#landingImageMarkers {
	position: absolute;
	left: 20px;
	bottom: 20px;
}

.landingImageMarker {
	width: 40px;
	height: 40px;
	margin: 10px;
	background-color: rgba(0,0,0, 0.5);
	transition: all 1s ease;
}

.landingImageMarker.active {
	width: 42px;
	height: 42px;
	margin: 10px;
	background-color: rgba(255,255,255, 0.5);
	transition: all 1s ease;
}

/* loading icon */
.centerScreen {
	position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -50px;
    margin-left: -50px;
    width: 100px;
    height: 100px;	
	width: 100px;
	margin: auto;
}

.lds-facebook {
	display: inline-block;
	position: relative;
	width: 80px;
	height: 80px;
  }
  .lds-facebook div {
	display: inline-block;
	position: absolute;
	left: 8px;
	width: 16px;
	background: #fff;
	animation: lds-facebook 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
  }
  .lds-facebook div:nth-child(1) {
	left: 8px;
	animation-delay: -0.24s;
  }
  .lds-facebook div:nth-child(2) {
	left: 32px;
	animation-delay: -0.12s;
  }
  .lds-facebook div:nth-child(3) {
	left: 56px;
	animation-delay: 0;
  }
  @keyframes lds-facebook {
	0% {
	  top: 8px;
	  height: 64px;
	}
	50%, 100% {
	  top: 24px;
	  height: 32px;
	}
  }
