/* Reset */

	* {
		margin: 0;
		padding: 0;
		border: 0;
		font-size: 100%;
		font: inherit;
		vertical-align: baseline;
	}

/* Basic */

	body, input, select, textarea {
		color: #fff;
		font-family: 'Source Sans Pro', sans-serif;
		font-size: 15pt;
		font-weight: 300 !important;
		letter-spacing: -0.025em;
		line-height: 1.75em;
	}

	a {
		color: inherit;
		text-decoration: none;
	}

/* Wrapper */


	@keyframes wrapper {
		0% {
			opacity: 0;
		}

		100% {
			opacity: 1;
		}
	}

	#wrapper {
		animation: wrapper 1s forwards;
		height: 100%;
		opacity: 0;
		position: fixed;
		width: 100%;
	}

	#bg {
        background: rgba(47, 68, 108, 0.79);
		height: 100%;
	}

/* Main */

	#main {
		height: 100%;
		position: fixed;
		text-align: center;
		top: 0;
		width: 100%;
	}

		#main:before {
			content: '';
			display: inline-block;
			height: 100%;
			vertical-align: middle;
		}

/* Header */

	@keyframes header {
		0% {
			transform: translate3d(0,1em,0);
			opacity: 0;
		}

		100% {
			transform: translate3d(0,0,0);
			opacity: 1;
		}
	}


	@keyframes nav-icons {
		0% {
			transform: translate3d(0,1em,0);
			opacity: 0;
		}

		100% {
			transform: translate3d(0,0,0);
			opacity: 1;
		}
	}

	#header {
		animation: header 1s 1.25s forwards;
		display: inline-block;
		opacity: 0;
		position: relative;
		text-align: center;
		top: -1em;
		vertical-align: middle;
		width: 90%;
	}

		#header h2 {
			font-size: 4.35em;
			font-weight: 900;
			letter-spacing: -0.035em;
			line-height: 1em;
            cursor: default;
		}

		#header h1 {
			font-size: 1.75em;
			margin: 0.75em 0 0.25em 0;
			opacity: 0.75;
            cursor: default;
		}

		#header nav {
			margin: 1.5em 0 0 0;
		}

			#header nav li {
				animation: nav-icons 0.5s ease-in-out forwards;
				display: inline-block;
				height: 5.35em;
				line-height: 5.885em;
				opacity: 0;
				position: relative;
				top: 0;
				width: 5.35em;
			}

				#header nav li:nth-child(1) {
					animation-delay: 2.25s;
				}

				#header nav li:nth-child(2) {
					animation-delay: 2.5s;
				}

				#header nav li:nth-child(3) {
					animation-delay: 2.75s;
				}

			#header nav a {
				border: 0;
				display: inline-block;
			}

				#header nav a:before {
					transition: all 0.2s ease-in-out;
					border-radius: 100%;
					border: solid 1px #fff;
					display: block;
					font-size: 1.75em;
					height: 2.5em;
					line-height: 2.5em;
					position: relative;
					text-align: center;
					top: 0;
					width: 2.5em;
				}

				#header nav a:hover {
					font-size: 1.1em;
				}

				#header nav a:hover:before {
				    background-color: rgba(255, 255, 255, 0.175);
				    color: #fff;
				}

				#header nav a span {
					display: none;
				}

/* Footer */

	#footer {
		background-image: -moz-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5) 75%);
		background-image: -webkit-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5) 75%);
		background-image: -ms-linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5) 75%);
		background-image: linear-gradient(top, rgba(0,0,0,0), rgba(0,0,0,0.5) 75%);
		bottom: 0;
		cursor: default;
		height: 6em;
		left: 0;
		line-height: 8em;
		position: absolute;
		text-align: center;
		width: 100%;
	}

/* Wide */

	@media screen and (max-width: 1680px) {
			body, input, select, textarea {
				font-size: 13pt;
			}
/* Normal */

	@media screen and (max-width: 1280px) {
			body, input, select, textarea {
				font-size: 12pt;
			}

/* Mobile */

	@media screen and (max-width: 736px) {
			body {
				min-width: 320px;
			}

			body, input, select, textarea {
				font-size: 11pt;
			}

	/* Header */

		#header h2 {
			font-size: 2.5em;
		}

		#header h1 {
			font-size: 1em;
		}

		#header nav {
			font-size: 1em;
		}

			#header nav a:hover {
				font-size: 1em;
			}

			#header nav a:active {
				font-size: 1em;
			} }
