@charset "utf-8";
/* CSS Document */

/* ======================================= */
/* 1 -  GRID SYSTEM  --------------------- */
/* ======================================= */
*[class*="grid_"] { float:left; position:relative; padding:30px; } 
.grid_100 	{ width:100%; padding:0px; }
.grid_80 	{ width:80%; }
.grid_75 	{ width:75%; }
.grid_70 	{ width:70%; }
.grid_60 	{ width:60%; }
.grid_50 	{ width:50%; }
.grid_45 	{ width:45%; }
.grid_40 	{ width:40%; }
.grid_33 	{ width:33.33%; }
.grid_30 	{ width:30%; }
.grid_25 	{ width:25%; }
.grid_20 	{ width:20%; }
.grid_10 	{ width:10%; }
.grid_5 	{ width:5%; }

.grid_nopadding { padding:0px !important; }
/* ======================== */


/* ======================================= */
/* 2 -  CSS RESET  ----------------------- */
/* ======================================= */
/*
	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, button {
	margin: 0; padding: 0; border:0;
	font-size: 100%; font: inherit; font-weight:normal;
	vertical-align: baseline;
	list-style:none;
}
/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section { display: block; }
body 	{ line-height: 1; }
table 	{ border-collapse: collapse; border-spacing: 0; }
/* ======================================= */


/* ======================================= */
/* 3 -  GENERIC LAYOUT - FIX - EXTRAS  --- */
/* ======================================= */
body, input, textarea, select, button { color:#4E4E4D; font-family: 'Roboto', sans-serif; font-size:18px; line-height:1.2em; }
html 	{ overflow-y:scroll; }
body { background:#000 url(../images/luminor_bg.jpg) repeat-x top; }


::-moz-selection 	{ background:#f9e0ec; color:#9f3c6b; }
::selection 		{ background:#f9e0ec; color:#9f3c6b; }

.clearfix:before, .clearfix:after, .div_center:before, .div_center:after { content: " "; clear: both; display: block; visibility: hidden; line-height: 0; height: 0;  }

* {
	-moz-box-sizing:    border-box;
	-webkit-box-sizing: border-box;
	box-sizing:         border-box;
}

h1 	{ font-size:36px; line-height:50px; font-weight:300; }  h1 b { font-weight:500; }
h2 	{ font-size:46px; line-height:50px; } 
h3 	{ font-size:36px; line-height:40px; }
h4 	{ font-size:20px; line-height:30px; }
h5 	{ font-size:18px; line-height:28px; }
h6 	{ font-size:16px; line-height:26px; }

p 	{ margin:15px 0px;  }
a 	{ text-decoration:none; }
img { width:100%; border:none; }

.div_center 	{ width:1180px; margin:50px auto; /* Content width */ }
.div_center * 	{ -webkit-transition: all .3s ease-in-out; -moz-transition: all .3s ease-in-out; -ms-transition: all .3s ease-in-out; transition: all .3s ease-in-out; }

header { width:45%; float:left; padding:50px 30px; }

section 		{ width:48%; min-height:620px; float:right; background:rgba(0,0,0,.5); border:1px solid #666; padding:30px; border-radius:20px; color:#fff; } 
section img		{ border-radius:5px; }


footer 	{ float:left; position:relative; margin:50px 0px 0px; }
footer div:first-child		{ padding:60px 30px 0px !important;  }
footer div:first-child img 	{ width:auto; float:left; opacity:.5;  }
footer a 		{ line-height:100px; color:#fff; text-transform:lowercase; font-size:30px;  }
footer a:hover 	{ opacity:.5; }
footer a span 	{ display:inline-block; margin:0px 0px 0px 40px; }


/* ======================================= */

/* ======================================= */
/* 4 -  FORM                           --- */
/* ======================================= */
form * { float:left; position:relative; border:none; margin:0px; padding:0px; }
form fieldset { width:100%; margin:0px 0px 20px; }
form span { width:50%; padding:0px 10px; }
form input, form textarea { width:100%; border-radius:5px; }
form input 		{ padding:0px 10px; line-height:40px; height:40px; }
form textarea 	{ padding:10px; line-height:20px; height:100px; }
form label { width:100%; margin:0px 0px 5px;  }

form button { 
	border-radius:8px; display:block; margin:0px auto; padding:15px 40px; color:#fff; cursor:pointer; float:none; font-size:24px; text-transform:lowercase;
	/* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#efefef+0,d1d1d0+34,bcbcbc+35,858584+100 */
	background: #efefef; /* Old browsers */
	background: -moz-linear-gradient(top,  #efefef 0%, #d1d1d0 34%, #bcbcbc 35%, #858584 100%); /* FF3.6-15 */
	background: -webkit-linear-gradient(top,  #efefef 0%,#d1d1d0 34%,#bcbcbc 35%,#858584 100%); /* Chrome10-25,Safari5.1-6 */
	background: linear-gradient(to bottom,  #efefef 0%,#d1d1d0 34%,#bcbcbc 35%,#858584 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#efefef', endColorstr='#858584',GradientType=0 ); /* IE6-9 */
}

input[type="checkbox"] { width: auto; height: auto; margin: 0px 10px 0px 0px; }
label[for="privacy_EmailForm"] { float: none; line-height: 14px; font-size: 14px; }
label[for="privacy_EmailForm"] a { float: none; color: #fff; }
label[for="privacy_EmailForm"] a:hover { opacity:.8; }
.error_box 			{ width:20px; height:20px; position:absolute; top:30px; right:20px; font-size:11px; line-height:20px; text-align: center; color: #fff; background:#ff0099; cursor:pointer; border-radius:5px;   }
.error_box span 	{ text-indent:-9999px; display:none; }
.error_box:before 	{ content:"!"; display:block;  }
.error_box:hover:after 	{ content:"Campo Obbligatorio"; padding:10px; white-space:nowrap; position:absolute; top:-50%; right:150%; background:#ff0099; display:inline-block; text-indent:0px; border-radius:5px;  }

.error_highlight 	{ outline: none; box-shadow: inset 0px 0px 5px #77808a; }
.form_result 		{ font-size:20px; color:#eb5a48; }

.emailform_messaggio 	{ line-height:50px; padding:0px 20px; margin-top:20px; text-transform:uppercase; color:#fff;  }
.emailform_successo 	{ background:#e5017c; border-radius:8px; }

small { font-size: 12px; }

input:focus, textarea:focus {
	outline:none; border:1px solid #c3df9f;
 	box-shadow:inset 0px 1px 5px #c3df9f; 
}

@media all and (max-width:1199px) {
	h1 { font-size:30px; line-height:30px; }
	.div_center { width:100%; padding:0px 20px; }	
	section { padding:20px; }
}

@media all and (max-width:999px) {
	header, section { width:100%; }
	header 		{ padding:20px 10px; }
	header a 	{ width:50%; display:block; margin:0px auto; }
	.div_center { margin:0px auto; }
	form button { padding:10px 20px; }
}

@media all and (max-width:899px) {
	footer div:first-child { padding: 30px 30px 0px !important; }
}

@media all and (max-width:799px) {
	footer a 		{ line-height:40px; }
	footer a span 	{ margin:0px 0px 0px 20px; }
	footer div 		{ padding:0px !important; }
	footer div:first-child img { width:15%; }
	form span {width: 100%;}
	form span + span { margin-top: 20px; }
}

@media all and (max-width:599px) {
	.div_center { padding:0px 10px; }	
	h1 { font-size:24px; line-height:24px; }
	header a { width:60%; }
	footer .grid_50, footer div:first-child  { width:100%; padding:10px 50px !important; }
	footer a { line-height:60px; } 
}
