@charset "utf-8";
/* CSS Home Document for Moving Pixels Design */

/********* MPD Styles **********/
body {
	color: #232323;
	font: 100%/140% 'Armata', Arial, sans-serif;
	background-color: #fff;
	margin: 0 0 60px 0; /* sticky bottom margin = footer height */
}
html {
	/* sticky footer */
    position: relative;
    min-height: 100%;
	overflow-y: scroll;
}
a:link {
	color: #232323;
	text-decoration: none;
	padding: 1%;	
	-webkit-transition: all .2s ease-in-out;
	transition: all .2s ease-in-out;
}
a:visited {
	text-decoration: none;
	color: #232323;
}
a:hover {
/*	text-decoration: none;
	color: #cccccc; */
	color: #fff;
	background-color: #2ccc00;
}
a:active {
	text-decoration: none;
	color: #cccccc;
	background-color: transparent;
}
a:focus {
	text-decoration: none;
	color: #cccccc;
	background-color: transparent;
}
h2 {
	font-size: 22px;
	color: #E6E6E6;
	font-weight: normal;
	margin-bottom: 4px;
	margin-left: 8px;
	text-shadow: -1px 1px 1px rgba(0, 0, 0, 0.5);
}
img {
  display: block;
  max-width: 100%;
  height: auto;	
}
/********** Page Layout **************/
.container {
	max-width: 990px;
	margin: 0 auto;
}
header {
	padding-top: 28px;
	padding-bottom: 10px;
	background: #FFFFFF;
}
#logo-hm {
	width: 480px;
}
#logo-mobile {
  display: none;
}
.mobile-alt h2 {
	display: none;	
}
/******* nav menu *******/
.nav-bg {
	padding-top: 10px;
	padding-bottom: 2%;
	border-bottom: 1px solid #cccccc;
	background-color: #333;		
}
.nav-bar {
	position: relative;
}
/********** body ************/
.moving {
	position: relative;
	width: 100%;
	background: #fff url(../images/bg-moving.jpg);
	background-size: cover;
	overflow: hidden;
	-webkit-animation-name: bg-1;
	        animation-name: bg-1;
	-webkit-animation-duration: 18s;
	        animation-duration: 18s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
	z-index: -1;
}
.pixels {
	position: relative;
	width: 100%;
	background: #fff url(../images/bg-pixels.jpg);
	background-size: cover;
	overflow: hidden;
	-webkit-animation-name: bg-2;
	        animation-name: bg-2;
	-webkit-animation-duration: 22s;
	        animation-duration: 22s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
	z-index: -1;
}
.design {
	position: relative;
	width: 100%;
	background: #fff url(../images/bg-design.jpg);
	background-size: cover;
	overflow: hidden;
	-webkit-animation-name: bg-1;
	        animation-name: bg-1;
	-webkit-animation-duration: 20s;
	        animation-duration: 20s;
	-webkit-animation-iteration-count: infinite;
	        animation-iteration-count: infinite;
	-webkit-animation-timing-function: linear;
	        animation-timing-function: linear;
	z-index: -1;
}

@-webkit-keyframes bg-1 {
	0% { background-position: 0 0; }
	100% { background-position: 100% 0%; }
}

@keyframes bg-1 {
	0% { background-position: 0 0; }
	100% { background-position: 100% 0%; }
}
@-webkit-keyframes bg-2 {
	0% { background-position: 100% 0%; }
	100% { background-position: 0% 0%; }
}
@keyframes bg-2 {
	0% { background-position: 100% 0%; }
	100% { background-position: 0% 0%; }
}
.body-screen {
	max-width: 800px;
	margin-top: 4%;
	padding-bottom: 3%;	
	margin-right: auto;
	margin-left: auto;
}
.body-text1 {
	float: left;
	margin-left: 10px;
	width: 50%;
	background-image: url(../images/pixels-hm.png);
	background-repeat: no-repeat;
	background-size: 24%;
}
.body-text1 p {
	text-align: justify;
	padding-top: 4%;
	padding-left: 12%;
	z-index: 100;
}
.body-text2 {
	float: right;
	margin-right: 10px;
	width: 44%;
	background-image: url(../images/asterisk.png);
	background-repeat: no-repeat;
	background-size: 18%;	
}
.body-text2 p {
	text-align: left;
	font-style: italic;
	padding-top: 6%;
	padding-left: 10%;
	z-index: 100;
}
footer {
	position: absolute;
    left: 0;
    bottom: 0;
    height: 60px; /* Sticky footer height = body margin */
    width: 100%;
	padding-top: 12px;	
	background: #333;
	border-top: 1px solid #cccccc;
}
.logo-block {
	position: absolute;
	top: -22px;	
}
.copyright {
	color: #cccccc;
	font-family: Verdana, Geneva, sans-serif;
	font-size: 80%;
	float: right;
	padding-top: 4px;
}
/********** Misc Styles **************/
.clear {
	clear: both;
	height: 0;
	font-size: 1px;
	line-height: 0;
}
.green {
	color: #34f600;	
}
.img-responsive {
	max-width: 100%;
	height: auto;
}
.img-right {
	float: right;
	margin-left: 10px;
}
.italic {
	font-style: italic;
}
