html {
	height: 100% !important;
}

body {
	background:#fff;
	font: normal 18px "Open Sans", arial, sans-serif;
	font-weight: 300;
	height: 100%;
	color: #545454;
	height: 100% !important;
	line-height: 30px;
	margin: 0 0 0 0;
}

body a {
	color: #969696;
	text-decoration: none;
}

body a:hover {
	color: #000;
	-webkit-transition: all 1s ease;
	-moz-transition: all 1s ease;
	-o-transition: all 1s ease;
	transition: all 1s ease;
}

html, body {
  overflow-x: hidden;
  overflow-y: auto;
}

@media only screen and (min-width: 375px) {
	html, body {
		overflow-y: hidden;
	}
}

body {
  position: relative;
}

.wrapper {
	-webkit-transition: all .1s ease;
	-moz-transition: all .1s ease;
	-o-transition: all .1s ease;
	transition: all .1s ease;
	height: 100vh;
	width: 100vw;
	margin: 0;
	padding: 0;
}

.splash {
	padding-top: 15vh;
}

@media (min-width: 1200px) {
	.splash {
		padding-top: 20vh;
	}
}

.flip-card {
 	background-color: transparent;
	width: 11vw;
	height: 11vw;
	min-width: 133px;
	min-height: 133px;
 	perspective: 1000px;
 	margin: 0 auto 50px auto;
}

.flip-card img {
	width: 11vw;
	height: 11vw;
	min-width: 133px;
	min-height: 133px;
}

.flip-card-inner {
 	position: relative;
 	width: 100%;
 	height: 100%;
 	text-align: center;
 	transition: transform 0.8s;
 	transform-style: preserve-3d;
}

.flip-card:hover .flip-card-inner {
 	transform: rotateY(180deg);
}

.flip-card-front, .flip-card-back {
 	position: absolute;
 	width: 100%;
 	height: 100%;
 	-webkit-backface-visibility: hidden;
 	backface-visibility: hidden;
}

.flip-card-back {
 	background-color: none;
 	color: white;
 	transform: rotateY(180deg);
}

.line {
	height: 1px;
	width: 100%;
	background-color: white;
	margin-top: 0px;
	box-shadow: 1px 1px 1px #F2F2F2;
}

.splash_init {
	font-size: 80%;
	padding: 50px 5% 25px 5%;
}

@media (min-width: 480px) {
	.splash_init {
		padding: 50px 15% 25px 15%;
	}
}

@media (min-width: 768px) {
	.splash_init {
		padding: 50px 20% 25px 20%;
		max-width: 800px;
		margin: auto;
	}
}

.splash_init p {
	padding: 0 0 0 0;
	margin: 0 0 0 0;
	text-align: center;
}


