/* 

	http://meyerweb.com/eric/tools/css/reset/ 
	v2.0 | 20110126
	License: none (public domain)
	
*/

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;
}

/*
 * Clearfix: contain floats
 *
 * For modern browsers
 * 1. The space content is one way to avoid an Opera bug when the
 *    `contenteditable` attribute is included anywhere else in the document.
 *    Otherwise it causes space to appear at the top and bottom of elements
 *    that receive the `clearfix` class.
 * 2. The use of `table` rather than `block` is only necessary if using
 *    `:before` to contain the top-margins of child elements.
 */

.clearfix:before,
.clearfix:after {
    content: " "; /* 1 */
    display: table; /* 2 */
}

.clearfix:after {
    clear: both;
}

/* 

	HERE WE GO 
	
*/
html{
	font-size: 16px;
	background-size: cover;
}
body {
    color: #4a4a4a;
    font-size: 1em;
    line-height: 1.4em;
    background: #000 url(../images/bg_main.jpg) no-repeat ;
    margin: 0 auto;
    color: #fff;
    font-family: 'Lato', 'Arial', sans-serif;
    font-weight: lighter;
}
h1{
	font-size: 32px;
	line-height: 1.7em;
	text-transform: uppercase;
}
h2{
	font-size: 24px;
	text-transform: uppercase;
}
a{
	color: #fff;
	text-decoration: none;
}

a:hover{
	text-decoration: underline;
}

#maincontent{
    text-align: center;
    width: 100%;
    display: table;
    background: transparent url(img/bg_gradient.png) repeat-x bottom;
}

#maincontent .content{
	display: table-cell;
    vertical-align: middle;
}

/* #maincontent .logo{
	width: 300px;
	display: inline-block;
	vertical-align: middle;
	text-align: left; 
}*/
.logo{

}

.socialcontainer{
	display: block;
	margin: 0 auto;
	width: 160px;
	height: 60px;
}
.social{
	margin-top: 65px;
}

.social li{
	display: block;
	float: left;
	margin: 0 10px;
}

.social li a{
	display: block;
	text-decoration: none;
	width: 60px;
	height: 60px;
	background: transparent url(img/sprite.png) no-repeat 0 0;
	text-indent: -9999px;
	font-size: 0;
	line-height: 0;
	margin: 0 auto;
}

.social li.facebook a{background-position: 0 0;}
.social li.twitter a{background-position: -60px 0;}
.social li.instagram a{background-position: -120px 0;}
.social li.vimeo a{background-position: -180px 0;}
.social li.googleplus a{background-position: -240px 0;}

.social li:hover{
	transform: scale(1.06);
}

.contact{
	display: block;
	text-transform: uppercase;
	line-height: 2em;
	text-align: center;
	font-size: 0.813em;
    bottom: 20px;
    position: absolute;
    margin: 0 auto;
    left: 0;
    right: 0;
    text-shadow: 0px 0px 15px black;
    -moz-text-shadow: 0px 0px 15px black;
    -webkit-text-shadow: 0px 0px 15px black;
}

.contact a{
	padding:0 30px;
}

/* Phones */
@media screen and (max-width: 750px) {
    body {
         background: #000 url(../images/bg_main.jpg) no-repeat center;
    }
    #bgvid {
        display: none;
    }
    .socialcontainer{
	    padding: 0 30%;
    }
    .social{
	    margin-top: 30px;
    }
    .social li{
		display: block;
		float: left;
		width: 50%;
		margin: 0;
	}
	.contact{
		position: relative;
		clear: both;
		bottom: auto;
		margin-top: 20px;
	}
	#maincontent{
	    background: transparent;
	}
	.contact a{
		display: block;
		padding: 0;
	}
}

/* Retina-specific stuff */
@media
only screen and (-webkit-min-device-pixel-ratio: 2),
only screen and (   min--moz-device-pixel-ratio: 2),
only screen and (     -o-min-device-pixel-ratio: 2/1),
only screen and (        min-device-pixel-ratio: 2),
only screen and (                min-resolution: 192dpi),
only screen and (                min-resolution: 2dppx) { 
  
	.social li a{
		background-image: url(img/sprite@2x.png);
		background-size: 300px 181px;
	}
	.logo{
		
	}  
}


