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

.clear {
	
	float: none;
	clear: both;
	
}


html, body {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
}

body {
	
	background: #000;
	font-family: 'Raleway', "Helvetica", "Arial";
	color: #FFF;
}

a {
	color: #FFF;
}

.padder {
    max-width: 1024px;
    margin: 0 auto;
    height: 100%;
    padding: 10em;
    box-sizing: border-box;
}

h1 {
    font-size: 100px;
    margin: 20px auto;
    text-align: center;
    display: none;
}

h2 {
    font-size: 30px;
    text-align: center;
    font-weight: lighter;
    /* font-style: italic; */
    display: none;
    
}

h3 {
    font-size: 50px;
}


.socials {
    height: 60px;
    text-align: center;
    
}

a.social img {
    border: 0;
    max-height: 100%;
    width: auto;
    opacity: 0.5;
    transition: all 0.5s;
    vertical-align: middle;
}

a.social.before img	{
	opacity: 0;
	max-height: 50%;
	margin-top: 25%;
	
}

a.social:hover img {
	
	opacity: 1;
	transform: scale(1.2);	
}

a.social {
    display: inline-block;
    cursor: pointer;
    margin: 0 10px;
    height: 100%;
}

p {
    text-align: center;
    margin: 20px 0;
    display: none;
}


.random-img {
    position: absolute;
    left: -20%;
    height: 200px;
    z-index: -1;
}

.random-img img {
    max-height: 100%;
    width: auto;
}


a.button {
    background: #FFF;
    padding: 6px 15px;
    color: #000;
    display: inline-block;
    cursor: pointer;
    text-decoration: none;
    box-sizing: border-box;
    font-weight: lighter;
}


.lightbox {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 100;
    height: 100%;
    background: rgba(255,255,255,0.5);
    display: none;
}

.ligthtbox-inside {
    width: 750px;
    height: 700px;
    margin: -350px auto 0 auto;
    padding: 50px;
    background: #000;
    top: 50%;
    box-sizing: border-box;
    position: relative;
}

.close-lightbox {
    position: absolute;
    right: 20px;
    top: 20px;
    color: #000;
    border-radius: 30px;
    font-size: 30px;
    cursor: pointer;
    width: 30px;
    background: #FFF;
    padding: 10px;
    height: 30px;
    text-align: center;
    text-decoration: none;
}

input[type="text"], input[type="email"], textarea {
    width: 100%;
    padding: 10px;
    margin: 20px 0;
    font-family: 'Raleway', "Helvetica", "Arial";
    box-sizing: border-box;
    border: 0;
    display: block;
    font-size: 18px;
}

textarea {
    min-height: 200px;
}

input[type="submit"] {
    border: 0;
    background: #FFF;
    padding: 6px 15px;
    color: #000;
    font-size: 18px;
    display: inline-block;
    cursor: pointer;
    font-family: 'Raleway', "Helvetica", "Arial";
    text-decoration: none;
    box-sizing: border-box;
    font-weight: lighter;
}

.g-recaptcha {
    margin-bottom: 20px;
}


.message {
    background: #06ce3a;
    margin: 5px 0;
    padding: 10px;
    width: 50%;
    text-align: center;
}

.message.message-error {
    background: #d73636;
}

#lightbox-contact .message {
    
    display: none;
}

.form-loading {
    height: 50px;
    display: none;
}

.form-loading img {
    max-height: 100%;
    width: auto;
}

@media screen and (max-width: 767px) {
	
	.padder {
    	padding: 2em;
	}
	
	h1 {
		
		font-size: 70px;
	}
	
	a.social img {
	    
	    opacity: 1;
	    
	}
	
	.ligthtbox-inside {
        width: 100%;
        padding: 20px;
        margin: 0;
        top: 0;
        overflow: auto;
        height: 100%
    }
    
    h3 {
        font-size: 40px;
    }
    
    .close-lightbox {
        right: 10px;
        top: 10px;
    }
    
    textarea {
        min-height: 120px;
    }
	
}