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

html, body {
	width:100%;
	height: 100%;
	margin:0 0 0 0;
	padding:0 0 0 0;
	color:#333333;
	text-decoration: none;
	
	font-family:'PT Serif', Times, serif;
	outline:0;
}

a{
	text-decoration:none;
}

/* HEADER */

header{
	position:fixed;
	z-index:1000;
	top:0px;
	width:100%;
	margin:0 auto;
	text-align:center;
	background-color:#FFF;
	text-transform:uppercase;
	border-bottom:1px #0e4051 solid;
}

header  h1{
	display:inline-block;
	font-size:32px;
	font-weight:700;
	color:#0e4051;
	border-bottom:1px #0e4051 solid;
	margin-top:0;
	line-height:44px;
}

header  h2{
	font-size:15.2px;
	font-weight:400;
	color:#0e4051;
	margin-top:-17px;
	margin-bottom:8px;
}

header a{
	color:#0e4051;
}

/* IMG HOME */

#intro_home{
	width:100%;
	height:100%;
	margin-top:75px;
	text-align:center;
	color:#FFF;
	
	background-color:#0e4051;
	background-image:url(../psicologo_img/bg.jpg);
	background-repeat:no-repeat;
	background-position:center top;
	background-size:100% auto;
}

#intro_home  p:nth-of-type(1){
	width:60%;
	margin:0 auto;
	font-size:28px;
	padding-top:40px;
	padding-bottom:20px;
	line-height:32px;	
	border-bottom:2px #FFF solid;
}

#intro_home  p:nth-of-type(2){
	width:60%;
	margin:0 auto;
	font-size:18px;
	padding-top:16px;
	margin-bottom:50px;
	line-height:22px;	
}

#intro_home a{
	font-size:18px;
	font-weight:700;
	margin-top:20px;
	padding:10px 20px 10px 20px;
	color:#FFF;
	text-transform:uppercase;
	border:1px #FFF solid;
	background-color:#79949d;
	
	transition-property:background-color color;
	transition-duration:0.8s;
	-webkit-transition-property:background-color color;
	-webkit-transition-duration:0.8s;
	-o-transition-property:background-color color;
	-o-transition-duration:0.8s;
	-moz-transition-property:background-color color;
	-moz-transition-duration:0.8s;
}

#intro_home a:hover{
	background-color: #0e4051;
}

/* FORMAZIONE & ESPERIENZA */

.cv{
	width:100%;
	text-align:center;
	color:#333333;
	margin-top:30px;
}

.cv > h3{
	font-size:18px;
	font-weight:700;
	color: #79949d;
	text-transform:uppercase;
	padding-bottom:5px;
	padding-top:90px;
	border-bottom:1px #79949d solid;
}

.cv > p{
	font-size:16px;
	font-weight:400;
	color: #333333;
	line-height:22px;
}

#formazione{
	width:30%;
	float:left;
	margin-left:15%;
	text-justify:distribute;
}

#esperienza{
	width:30%;
	float:right;
	margin-right:15%;
}

/* For modern browsers */
.clear:before,
.clear:after {
    content:"";
    display:table;
}
.clear:after {
    clear:both;
}
/* For IE 6/7 (trigger hasLayout) */
.clear {
    zoom:1;
}

/* CONTATTI */

#wrapper_contact{
	background-color:#dbecf2;
	width:100%;
	margin:0 auto;
	text-align:center;
	margin-top:30px;
	padding-top:10px;
}

#picture{
	margin:0 auto;
	display:block;
	width:180px;
	max-width:100%;
	margin-top:40px;
	margin-bottom:30px;
	border:8px #FFF solid;
}

/* FORM CONTATTI STYLE */


#wrapper_form{
	width:100%;
	margin:0 auto;
	padding-bottom:50px;
}

#wrapper_form p{
	font-size:30px;
	font-style:italic;
	font-weight:700;
	color:#333333;
	margin-top:0px;
	padding-top:15px;
}

fieldset{
	width:50%;
	margin:0 auto;
	margin-top:-15px;
	padding: 0 0 0 0;
	border:none;
	/*background-color:#CF0;*/
}

form#form_contatti{
	font-family:'PT Serif', Times, serif;
	font-size:18px;
	font-weight:400;
	font-style:normal;
	color:#333333;	
}

form#form_contatti label{
	display:block;
	text-align:left;
	margin-top:15px;
	margin-bottom:5px;
	padding-left:21px;
	clear:both;
}

.label_sesso{
	float:left;
}

.radio_sesso{
	float:left;
}

form#form_contatti input{
	display: block;
	margin:0 auto; 
	border:1px solid #d8d8d8;
	width:90%;
	padding:4px 5px;
	font-family:'PT Serif', Times, serif;
	font-size:20px;
	color:#333333; 
}
	
form#form_contattit select {color:#000;margin:0 0 7px 0;border:1px solid #d8d8d8;width:240px;float:right;-moz-border-radius:9px;-webkit-border-radius:9px;background: url('gradient_white.png') repeat-x top left #efefef;padding:3px 5px 3px 10px;}
form#form_contatti option {display:block;color:#666;}
 
form#form_contatti textarea{
	display: block;
	color:#2f454b;
	font-size:18px;
	line-height:22px;
	font-style:normal;
	font-family:'PT Serif', Times, serif;
	height:150px;
	border:1px solid #d8d8d8;
	width:90%;
	margin:0 auto;
	padding:2px 5px;
	margin-bottom:10px;
	resize: none;}
	
#send{
	clear:both;
	display:block;
	width:92%;
	margin:0 auto;
	margin-top:20px;
	border:none;
	cursor:pointer;
	font-family:'PT Serif', Times, serif;
	font-size:18px; 
	font-weight:700;
	text-transform:uppercase;
	color:#FFF;
	padding:10px 0px; 
	background-color:#79949d;
	
	transition-property:background-color color;
	transition-duration:0.8s;
	-webkit-transition-property:background-color color;
	-webkit-transition-duration:0.8s;
	-o-transition-property:background-color color;
	-o-transition-duration:0.8s;
	-moz-transition-property:background-color color;
	-moz-transition-duration:0.8s;
}

#send:hover {
	background-color:#2f454b;
}
	
.faulty_field{background:#fff4f4 !important;color:#ff7454;border:1px solid #ff7454 !important;}
label span {color:#444444; font-size:60%; }

/* MESSAGGI DEL FORM */

#errori{
	width:90%;
	padding:10px 7px;
	margin:10px auto;
	border-bottom:2px solid #ce5757; 
	background:#e6abab; 
	color:#fff;
}
	
#risultato{
	width:90%;
	padding:10px 7px;
	margin:10px auto;
	border-bottom:2px solid #6090cc;  
	background:#abc6e6;
	color:#fff;
}

/* GRAZIE */

#grazie{
	font-size:18px;
	font-style:italic;
	text-align:center;
}


/* CALL_TO_CONTACT */

#ct_contatti{
	width:100%;
	margin-top:40px;
	text-align:center;
	padding:20px 0 40px 0;
	background-color:#dbecf2;
}

.cta_italic{
	color:#2f454b;
	display:block;
	font-size:24px;
	font-style:italic;
	font-weight:700;
	margin-bottom:25px;
	line-height:34px;
	text-align:center;
}

#btn_contatti{
	font-size:18px;
	font-weight:700;
	margin-top:20px;
	padding:10px 20px 10px 20px;
	color:#FFF;
	text-transform:uppercase;
	background-color:#79949d;
	
	transition-property:background-color color;
	transition-duration:0.8s;
	-webkit-transition-property:background-color color;
	-webkit-transition-duration:0.8s;
	-o-transition-property:background-color color;
	-o-transition-duration:0.8s;
	-moz-transition-property:background-color color;
	-moz-transition-duration:0.8s;
}

#btn_contatti:hover{
	background-color:#0e4051;
}

/* FOOTER */

#giovanni_address{
	width:100%;
	text-align:center;
}

#giovanni_address  p {
	width:100%;
	margin:0 auto;
	text-align:center;
	font-size:16px;
	font-style:italic;
	color:#FFF;
	background-color:#79949d;
}

#giovanni_address  p:nth-of-type(1){
	padding-top:15px;
}

#giovanni_address  p:nth-of-type(2){
	padding-bottom:15px;
	margin-bottom:20px;
}

#giovanni_address  a{
	font-size:16px;
	font-style:normal;
	color:#333333;
	
	transition-property:color;
	transition-duration:0.8s;
	-webkit-transition-property:color;
	-webkit-transition-duration:0.8s;
	-o-transition-property:color;
	-o-transition-duration:0.8s;
	-moz-transition-property:color;
	-moz-transition-duration:0.8s;
}

#giovanni_address  a:hover{
	color:#79949d;
}

footer ul {
	margin: 0 0 0 0;
	padding: 0 0 20px 0;
}

footer li{
	display:inline;
	list-style:none;
	margin-right:10%;
}

footer li:nth-of-type(3){
	margin-right:0; !important
}

