@charset "utf-8";
/* CSS Document */

html {
	min-height: 100%;
	margin-bottom: 1px;
}
body {
	margin: 0px auto;
	text-align: center;
}
h1 {
	font-family: Arial, Helvetica, sans-serif;
	font-size: 18px;
	color: #5b5b5b;
	font-weight: lighter;
}
h1 a {
	text-decoration: none;
	color: #5b5b5b;
}
h1 a:hover {
	text-decoration: none;
	color: #1956c6;
}
h2 {
	font-family: Verdana;
	font-size: 18px;
}
.clear {
	clear: both;
	margin: 0px;
	padding: 0px;
}
.smalltext {
	font-family: Verdana;
	font-size: 11px;
	color: #999999;
	margin: 0px;
	padding: 0px;
	line-height: 12px;
}
.smalltext a {
	text-decoration: underline;
	color: #999999;
}
.smalltext a:hover {
	text-decoration: underline;
	color: #1956c6;
}
.ls1 {
	font-family: Verdana;
	font-size: 12px;
	color: #cccccc;
}
.ls1 a {
	text-decoration: underline;
	color: #999999;
}
.ls1 a:hover {
	text-decoration: underline;
	color: #1956c6;
}
/*   image hover */
.contain {
	position: relative;
	width: auto;
}
.contain:hover .img {
	opacity: 0.4;
}
.contain:hover .mid {
	opacity: 1;
}
.img {
	opacity: 1;
	display: block;
	width: auto;
	height: auto;
	transition: .5s ease;
	backface-visibility: hidden;
	align-items: center;
}
.mid {
	transition: .5s ease;
	opacity: 0;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	text-align: center;
}
/*
.ctxt {
  background-color: transparent;
  color: #5b5b5b;
  font-size: 16px;
  padding: 16px 32px;
}
*/


/* not used */

#nav-home {
	float: left;
	margin: 0px;
	padding: 0px;
	width: 816px;
	height: 30px;
	background-color: #ffffff;
}
#nav {
	float: left;
	width: auto;
	padding-left: 43px;
	font-family: Arial, Helvetica, sans-serif, 宋体;
	font-size: 14px;
	color: #cccccc;
	text-align: left;
	margin: 0px;
	letter-spacing: 5px;
}
#nav ul, li {
	list-style: none;
	display: inline;
	padding: 0px;
	margin: 0px;
	font-size: 12px;
}
#nav b {
	font-weight: normal;
	color: #999999;
}
#nav a {
	text-decoration: none;
	color: #666666;
}
#nav a:hover {
	text-decoration: underline;
	color: #1956c6;
}


/*///////////////////////////// Animate Head * ferdranda version //////////////////////////////// */


header {
	align-items: center;
	display: flex;
	font-size: 18px;
	padding-top: 70px;
	height: 55vh;
	justify-content: center;
	overflow: hidden;
	position: relative;
	text-align: center;
	transform-style: preserve-3d;
	perspective: 100px;
	margin-bottom: 0px auto;
}
header:before {
	animation: fade-slide-down 2s .5s cubic-bezier(0, 0.5, 0, 1) forwards;
	background: linear-gradient(to bottom, rgba(1,0,0,0), rgba(0,0,0,.4)),  url(../images/bg-grey.gif) no-repeat bottom;
	background-size: cover;
	content: "";
	opacity: 0%;
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	z-index: -1;
}
header:after {
	animation: rotate-up .5s .5s cubic-bezier(0, 0.5, 0, 1) forwards;
	background: #ffffff;
	margin-bottom: 0px;
	padding-bottom: 0px;
	clear: none;
	content: "";
	height: 40rem;
	left: -5%;
	position: absolute;
	right: -5%;
	top: 95%;
	transform-origin: 0 0;
	z-index: 0;
}
.header-content {
	margin-bottom: 0px;
}
.header-title, .header-subtitle {
	color: #fff;
	margin: 0px, 0px, 0px, 0px
}
.header-subtitle {
	text-transform: none;
	margin-bottom: 13rem;
	color: #272727;
}
.header-button {
	transform: translateZ(.1px);
	position: relative;
	z-index: 10;
}
.animate-pop-in {
	animation: pop-in .6s cubic-bezier(0, 0.9, 0.3, 1.2) forwards;
	opacity: 0;
}
.rocky-dashed {
	animation-delay: .6s;
	margin-bottom: 0px;
}
.header-title {
	animation-delay: .8s;
}
.header-subtitle {
	animation-delay: 1s;
}
.header-button {
	animation-delay: 1.1s;
}


/* Animations */

@keyframes fade-slide-down {
 0% {
 opacity: 0;
 transform: translateY(-4rem);
}
 100% {
 opacity: 1;
 transform: none;
}
}
 @keyframes pop-in {
 0% {
 opacity: 0;
 transform: translateY(-4rem) scale(.8);
}
 100% {
 opacity: 1;
 transform: none;
}
}
 @keyframes rotate-up {
 100% {
 transform: rotateZ(-4deg);
}
}
