@charset "UTF-8";

/* Global Content Formatting and Styles */
/** * Eric Meyer's Reset CSS v2.0 (http://meyerweb.com/eric/tools/css/reset/) * http://cssreset.com */html, body, div, span, applet, object, iframe,h1, h2, h3, h4, h5, h6, p, blockquote, pre,a, abbr, acronym, address, big, cite, code,del, dfn, em, img, ins, kbd, q, s, samp,small, strike, strong, sub, sup, tt, var,b, u, i, center,dl, dt, dd, ol, ul, li,fieldset, form, label, legend,table, caption, tbody, tfoot, thead, tr, th, td,article, aside, canvas, details, embed, figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary,time, mark, audio, video {	margin: 0;	padding: 0;	border: 0;	font-size: 100%;	font: inherit;	vertical-align: baseline;}/* HTML5 display-role reset for older browsers */article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {	display: block;}body {	line-height: 1;}ol, ul {	list-style: none;}blockquote, q {	quotes: none;}blockquote:before, blockquote:after,q:before, q:after {	content: '';	content: none;}table {	border-collapse: collapse;	border-spacing: 0;}


.body {
	width: 100vw;
	min-width: 100vw;
	height: 100%;
	position: relative;	
	font-family: "tablet-gothic", sans-serif;
	
	font-weight: 400;
	font-size: 16px;
	overflow-x: hidden; 
	
	/*margin-bottom-bottom: 24px;*/
	/*background-color: #abacad;*/
	/*color: #000;*/
}
.html .body {
	margin: 0;
	padding: 0;
}
.debtop {
	display: block;
	width: 100%;
	height: 60px;
	background-color: rgb(255, 0, 0);
	position: fixed;
	z-index: 100;
	font-size: .8em;
	font-weight: bold;
}
.debtop h3{
	position: relative;
	top: 12px;
	left: 12px;
}

#header {
	position: relative;
	height: 760px;
	width: 100%;
	background-color: rgb(255, 0, 00);
	/*margin-bottom: 3em;*/	
	overflow-x: hidden;
	animation:load_up .5s forwards;
	-webkit-animation:load_up .5s ease-out forwards;
}
	@keyframes load_up{
	from{opacity: .5; top: -200px;}
	to{opacity: 1; top: 0px;}
}
	@-webkit-keyframes load_up{
	from{opacity: .5; top: -200px;}
	to{opacity: 1; top: 0px;}
}
#header h1{
	position: absolute;
	top: 33%;
	left: 19%;
	padding-right: 20%; 
}
#header img{
	position: absolute;
	top: 33%;
	left: 10%;
	display: block;
	width: 100px;
	max-width: 100px;
	height: auto;
	opacity: .15;
}
#header h3{
	position: relative;
	top: 40px;
	left: 2%;
	color: #fff;
	font-weight: 600;
}


.gray {
	color: rgb(230, 230, 230);
}
.congrats {
	font-size: 24px;
}
#header .cert h5{
	position: relative;
	left: 8%;
	bottom: -40%;
	color: gray;	
}
#header .cert:hover a{
	transition: all .2s;
	color: #fff;
}

#header .cert {
	position: absolute;
	left: 44.45%;
	bottom: 8%;
	display: block;
	width: 160px;
	max-width: 160px;
	height: 160px;
	background-image:url(../img/cert.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: 0px -160px;
}	
   #header .cert:hover {
	background-position: 0px 0px;
	color: #fff;
}
.quote {
	display: block;
	width: 200px;
	max-width: 200px;
	height: 400px;
}
/**********************************************************************************************
								PROMO STRIP
**********************************************************************************************/
#promo{
	display: block;
	width: 100%;
	height: auto;
	background-color: #000;
	padding: 24px 0px 24px 0px;
}
#promo p { 
	display: block;
	width: 90%;
	position: relative;	
	color: #fff;
	font-size: 18px;
	line-height: 32px;
	font-weight: 100;	
	margin-left: auto;
	margin-right: auto;
	letter-spacing: .04em;

}
#promo span {
	font-size: 36px;
	line-height: 42px;
	color: rgb(255, 140, 12);
	letter-spacing: .06em;
}
/**********************************************************************************************
								WINNERS LIST
**********************************************************************************************/
#winnerslist{
	display: none;
	width: 100%;
	background-color: #6e6e6e;
	color: #000;
	line-height: 24px;
	border-collapse: collapse;
}
#winnerslist p{
	padding-left: 0px;
}
#winnerslist h3{
	color: rgb(255, 140, 12);
	padding: 20px 0px 10px 60px;

}
#winnerslist table{
	width: 90%;
	margin-left: 5%;

}
#winnerslist table thead tr{
	color: #000;
	border-bottom: 1px solid #000;
	height: 12px;
	text-transform: uppercase;
}
#winnerslist table tbody tr{
	border-bottom: 1px solid #000;
	line-height: 24px;
	margin-bottom: 24px;
}
#winnerslist td{
	padding: 24px;
}
#winnerslist td:first-child{
	padding-left: 0px;
}
#seeMe{
	display: block;
	cursor: pointer;
}
#winnerslist img{
	margin-left: 2px;
	width: 60%;
	height: 60%;
}

/*ROW 1*********************/
.row1 {
	position: relative;
	opacity: .4; 
	width: 100%;
	height: 770px;
	overflow: hidden;
	margin-bottom: 0em;
	transition: opacity 2s;
	/*background-color: rgb(180, 180, 0);*/
	background-image: 
	linear-gradient(rgba(180, 180, 0, 1), rgba(120, 120, 0, .9));
	    
    animation:load_down 1s forwards;
	-webkit-animation:load_down 1s ease-out forwards;
}
	@keyframes load_down{
	from{top: 200px;}
	to{top: 0px;}
}
	@-webkit-keyframes load_down{
	from{top: 200px;}
	to{top: 0px;}
}
.row1:hover {
	opacity: 1;
}
.col1_left {
	position: relative;
	top: 0px;
	width: 96%;
	height: 900px;
	margin: 0% 2% 0% 2%;
}
.col1_left h2{
	color: #fff;
	font-weight: 100;
}
/*photo credit*/
.col1_left p{
	font-size: 12px;
	position: relative;
	left: 2.5%;
	top: 120px;
	color: #fff;
}
.block {
	display: block;
	float: none;
	position: relative;
	top: 2%;
	left: 2%;
	width: 96%;
}

.debpic {
	display: block;
	float: left;
	margin: 2% 1% 0% 2%;
	width: 31%;
	height: auto;
	/*overflow: hidden;*/
}
.debpic img {
	position: relative;
	top: 0px;
	width:  100%;
	max-width: 100%;
	height: auto;
}


.caption h5 {
	position: relative;
	top: 64px;
	left: 0px;
	font-weight: 400;
}
h2 span {
	font-weight: normal;
	color: #fff;
	transition: color .7s;
}
.row1:hover h2 span{
	color: rgb(80, 80, 80);
}

/*ROW2***********************/
.row2 {
	position: relative;
	overflow: hidden;
	width: 100%;
	height: 600px;	
	margin-bottom: 0em;
	opacity: .3;
	transition: all 1.2s ease-in-out;
}
.row2:hover {
	opacity: 1;
}
.col2_left {
	float: left;
	position: relative;
	width: 26%;
	height: 600px;
	overflow: hidden;
	z-index: 10;
}
.col2_left .jerrypic{
	position: relative;
	top: 0px;
	left: 0px;
	display: block;
	width: 100%;
	max-width: 100%;
	height: 600px;
	overflow: hidden;
}
.col2_left .jerrypic img{
	position: absolute;
	left: -140px;
	top: -20px;
	display: block;
	width: 630px;
	height: 630px;
}
.pointleft{
	display: block;
	width: 30px;
	height: auto;
	position: relative;
	top: 185px;
	left: 94%;
	z-index: 100;
}
.col2_center {
	position: relative;
	display: block;
	width: 50%;
	height: 650px;
	float: left;
	background-image: 
	linear-gradient(rgba(255, 140, 12, 1), rgba(225, 120, 8, 1));

}
.col2_center img {
	position: absolute;
	top: 23px;
	left: -15px;
	display: block;
	width: auto;
	height: 125px;
	opacity: .15;
}

.col2_center .caption{
	display: block;
	position: relative;
	left: 4%;
	top: 79px;
	color: #000;
}
.blurb {
	position: absolute;
	top: 6%;
	left: 4%;
	padding: 0% 3% 0% 0%;
	line-height: 3.8rem;
}
.col2_right {
	position: relative;
	display: block;
	width: 24%;
	height: 650px;
	margin: 0% 0% 0% 0%;
	float: left;
	background-color: black;
	overflow: hidden;	
}
.col2_right h4{
	position: relative;
	left: 8%;
	top: 145px;
	color: #fff;
} 
.col2_right img{
	position: relative;
	display: block;
	width: 280px;
	height: auto;
	left: 8%;
	top: 10%;
	opacity: .8;
}
/*hero*************************************************/
.hero {
	position: relative;
	left: 0px;
	top: 0px;
	display: block;
	margin: auto; 
	width: 100%;
	height: 800px;
	overflow-x: hidden;	
	opacity: .4;
	transition: all 1.2s ease-in-out;
	background-color: rgb(255, 0, 0);
}
.hero:hover{
	opacity: 1;
}
.hero li{
	position: relative;
	top: 3rem;
	left: 55px;
	display: block;
	width: 88%;
	font-size: 1.8em;
	line-height: 1.4;
	padding-bottom: .5em;
	color: black;
	text-indent: -.55em;
}
.hero li:before {
	position: relative;
	top: 10px;
	left: -1.2em;
	content:"";
	display: block;
	float: left;
	height: .6em;
	width: .6em;
	background-color: #fff;
	/*margin-right: -24px;*/
}

.hero .cert h5{
	position: relative;
	left: 8%;
	bottom: -40%;
	color: gray;	
}
.hero .cert:hover a{
	transition: all .2s;
	color: #fff;
}

.hero .cert {
	position: absolute;
	left: 59%;
	bottom: -38%;
	display: block;
	width: 160px;
	max-width: 160px;
	height: 160px;
	background-image:url(../img/cert.svg);
	background-size: 100%;
	background-repeat: no-repeat;
	background-position: 0px -160px;
}
.hero .cert:hover {
	background-position: 0px 0px;
	color: #fff;
}
#list_top1, #list_top2, #newstop, #clients_top, #contact_top {
	position: relative;
	left: 0%;
	top: 0%;
	display: block;
	width: 100%;
	max-width: 100%;	
	height: 80px;	
	background-color: #000;
}
.col1h {
	float: left;
	position: relative;
	width: 76%;
	height: 570px;
	margin: 0% 0% 0% 0% ;
	/*background-color: blue;*/
}
.col2h {
	float: left;
	position: relative;
	top: 0px;
	width: 23.9%;
	height: 800px;
	background-color: rgb(255, 0, 0);
	margin-left: 0%;
	overflow: hidden;
	border-left-style: dotted;
	border-left-width: 1px;
	border-color: #fff;
}
.list-top{
	position: relative;
	left: 0%;
	top: 0%;
	display: block;
	width: 100%;
	max-width: 100%;	
	height: 80px;	
	background-color: #000;
}
.hero h4{
	position: relative;
	line-height: 5rem;
	display: block;
	width: 100%;
	color: #fff;
	text-align: center;
}

.point1 {
	position: relative;
	left: 48%;
	top: -4px;
	display: block;
	width: 40px;
	height: auto;
}
/********************************** CLIENTS AND CONTACT************************************************/
#clients {
	display: none;
}
#contact {
	display: none;
}

/*ROW3*************************************************/
.row3 {
	clear: both;
	position: relative;
	opacity: .4;
	left: 0px;
	top: 0px;
	margin: auto;
	display: block;
	width: 100%;
	height: 1050px;
	margin-bottom: 0rem;
	background-color: #fff;
	transition: opacity 2s;
	z-index: 20;
	overflow-x: hidden;
}
.row3:hover {
	opacity: 1;	
}
.row3:hover #social1 {
	opacity: 1;
}

.col3_left {
	float: left;
	position: relative;
	top: 0px;
	width: 24%;
	height: 1050px;
	background-image: 
	linear-gradient(rgba(255, 140, 12, 1), rgba(225, 120, 8, 1));
	overflow: hidden;	
}
.col3_left .blurb img{
	position: absolute;
	left: -20px;
	top: 395px;
	display: block;
	width: auto;
	height: 125px;
	opacity: .2;
}
.col3_left .blurb {
	position: absolute;
	top: 1.5%;
	padding: 2% 2% 2% 2%;
}
.picbox {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 385px;
	overflow: hidden;
	background-color: blue;
}
.picbox img{
	position: relative;
	top: -90px;
	left: -100px;
	width: 525px;
	max-width: 525px;
	height: auto;
}
.col3_center {
	position: relative;
	top: 0px;
	display: block;
	width: 52%;
	height: 1050px;
	opacity: 1;
	margin-left: 0%;
	float: left;
	z-index: 2;
	overflow: auto;
}
.col3_center #newstop {
	position: relative;
	left: 0%;
	top: 0%;
	display: block;
	width: 100%;
	max-width: 100%;
	height: 80px;	
}
#newstop h4{
	display: block;
	width: 100%;
	height: 70px;
	position: relative;
	top: 0%;
	left: 0%;
	text-align: center;
	color: #fff;
	line-height: 5rem;
	z-index: 20;
	background-color: #000;
}
#newstop_content {
	display: block;
	width: 94%;
	height: auto;
	overflow: auto;
	margin: 0% 3% 0% 3%;
	padding-right: 22px;
}


/*awards news*/
.story h3{
	color: rgb(80, 80, 80);
	font-size: 1.9rem;
	position: relative;
	font-weight: 600;
	margin-top: 24px;
}	
.story h4{
	display: block;
	height: auto;
	color: rgb(50, 50, 50);
	padding-bottom: 28px;
	position: relative;
	border-bottom-style: dashed;
	border-bottom-width: 2px;
	border-bottom-color: rgb(50, 50, 50);
}

.col3_right {
	float: left;
	position: relative;
	top: 0px;
	width: 24%;
	height: 1050px;
	background-color: rgb(180, 180, 0);
	margin-left: 0%;
	overflow: hidden;
}
.col3_right .blurb {
	top: 1.4%;
	padding: 2% 2% 2% 2%;
}
.col3_right .blurb img{
	position: absolute;
	left: -20px;
	top: 395px;
	display: block;
	width: auto;
	height: 125px;
	opacity: .15;
}
.picbox_right {
	display: block;
	width: 100%;
	max-width: 100%;
	height: 385px;
	overflow: hidden;
}
.picbox_right img{
	position: relative;
	top: -40px;
	left: -95px;
	width: 500px;
	max-width: 500px;
	height: 500px;
}


/*footer*******************************************************/
.footer{
	position: relative;
	top: 0%;
	width: 100%;
	height: 200px; 
	background-color: rgb(80, 80, 80);
	color: #fff;
	overflow-x: hidden;
	/*border-top-color: black; border-top-style: solid; border-width: 1px;*/
}
.footer p {
	display: block;
	float: left;
	position: relative;
	top: 16px;
	text-align: left;
	padding-left: 26px;
/*	font-size: 18px;
	line-height: 18px;*/
	letter-spacing: 0.05em;
	color: #abacad;
}
.footer span {
	font-size: 1.8em;
	line-height: 1.3;
	color: rgb(255, 0, 0);
}
.footer a{
	color: #abacad;
}

#socialfoot {
	position: relative;
	display: block;
	left: 26px;
	top: 24px;
	width: 225px;
	height: 30px;
	margin: 0;
}
.twit {	
	padding-top: 18px;
}
.design {
	font-size: .7em;
	position: relative;
	left: -26px;
	top: 12px;
	clear: both;
}


/*TYPE STYLING*/
a {
	text-decoration: none;
	color: #000;
}
.clear {
	clear: both;
}
span {
	color: gray;
}

h1 {
	font-size: 3.5em;
	line-height: 1.3;
}
h2 {
	font-size: 3em;
	line-height: 1.3;
}
h3 {
	font-size: 2.5em;
	line-height: 1.3;
}
h4 {
	font-size: 1.8em;
	line-height: 1.3;
}
h5 {
	font-size: 1.5rem;
	line-height: 1.3;
}
p {
	font-size: 1.2em;
	line-height: 1.5;
}


/*MISC*/

/*clearfix*/
.group:after {
  content: "";
  display: table;
  clear: both;
}

/*COLORS*/
.yellow{
	rgb(255, 249, 148)
}
.orange{
	rgb(232, 133, 12)	
}
.red {
	rgb(255, 0, 0)
}
.purple {
	rgb(125, 12, 232)
}
.blue {
	rgb(13, 133, 255)
}

/*SLIDESHOW FOR INDEX PAGE******************************************************************/
#mainslide{
	display: block;
	position:relative;
	top: 30px;
	left: 200px;
/*	float: left;*/
	width: 100%;
	max-width: 100%;
	height: auto;
	background-color: gray;
}
#mainslide p{
	font-size: 1.8rem;
	text-transform: uppercase;
	line-height: 2.2rem;
	letter-spacing: .2rem;
	position: absolute;
	left: -150px;
	bottom: 5px;
	color: gray;
}
#slideshow {  
    position: relative; 
    z-index: 2; 
}
#slideshow img{
	width: 66%;
	max-width: 66%;
	height: 66%;
}

#slideshow > div { 
    position: absolute; 
    top: -30px; 
    left: 0px; 
}
#textslide{
	position: fixed;
	top: 95px;
	left: 0px;
	display: block;
	padding-left: 210px;
	float: right;
	width: 100%;
	max-width: 100%;
	color: #eee;
	height: 30px;
	background-image: 
	linear-gradient(rgba(0, 165, 0, 1), rgba(0, 80, 0, .8));
	z-index: 20;
}
#textslide h2{
	font-family: Tablet Gothic;
	font-size: 1.3rem;
	text-transform: uppercase;
	line-height: 1.9rem;
	letter-spacing: .2rem;
}
#slideshow2 {  
    position: relative; 
    z-index: 0; 
}
#slideshow2 img{
	width: 80%;
	max-width: 80%;
	height: auto;
}
#slideshow2 > div { 
    position: absolute; 
    top: 0px; 
    left: 0px; 
}
	

