@charset "utf-8";
/* CSS Document */

/* font LATO */
@import url('https://fonts.googleapis.com/css?family=Lato:100,100i,300,300i,400,400i,700,700i,900,900i');
/* § font LATO */

/* general */
html.hidden {
	display: block !important;
}
body {
	position: relative;
	overflow-x: hidden;
	background-color: #91b3d3;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	font-style: normal;
	font-weight: normal;
}
.bodyleft {
	position: relative;
}
a {
	text-decoration: none;
}
a:hover {
	text-decoration: none;
}

/* scroll to top */
#scrollUp {
	bottom: 20px;
	right: 20px;
	width: 38px;
	height: 38px;
	background-image: url('../js/top.png');
}
/* general */

/* header */
.header {
	position: relative;
	z-index: 10000;
	padding: 5px 0 0 0;
	background-color: #fff;
	border-bottom: 1px solid #91b3d3;
}

/* logo */
.logo {
	display: block;
	float: left;
	width: 347px;
	height: 78px;
	margin-bottom: 13px;
	background-image: url("../img/logo.png");
	background-position: center center;
	background-repeat: no-repeat;
	background-size: contain;
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.header.small .logo {
	width: 232px;
	height: 52px;
}
/* § logo */

/* toggle_menu */
.header .toggle_menu,
.header .toggle_menu:focus {
	display: none;
	float: right;
	margin-top: 19px;
	padding-bottom: 20px;
	font-size: 25px;
	color: #0055a4;
	line-height: 1;
	cursor: pointer;
}
.header .toggle_menu:hover {
	color: #91b3d3;
}
.header .toggle_menu:before {
	content: '\f0c9';
	font-family: FontAwesome;
}
.header .toggle_menu.closed:before {
	content: '\f00d';
}
/* § toggle_menu */

/* main menu */
.main_menu {
	float: right;
	margin-top: 46px;
}
.header.small .main_menu {
	margin-top: 19px;
}

/* menu list */
.main_menu .menu_list {
	margin: 0;
	padding: 0;
	list-style: none;
}
.main_menu .menu_list > li {
	position: relative;
	float: left;
}
.main_menu .menu_list > li > a {
	position: relative;
	z-index: 1;
	display: block;
	padding: 0 10px 21px 10px;
	background-color: #fff;
	font-size: 18px;
	font-weight: 700;
	color: #0055a4;
	text-transform: uppercase;
}
.csstransitions .main_menu .menu_list > li > a {
	
	/* modernizr */
	transition: all 0.3s ease-in-out;
}
.main_menu .menu_list > li:hover > a,
.main_menu .menu_list > li > a.active {
	color: #91b3d3 !important;
}
.main_menu .menu_list > li > a:before {
	position: absolute;
	bottom: -6px;
	left: 50%;
	width: 18px;
	margin-left: -9px;
	font-family: FontAwesome;
	content: '\f0d8';
	font-size: 18px;
	font-weight: 400;
	color: #91b3d3;
	line-height: 1;
	text-align: center;

	z-index: -1;
	visibility: hidden;
	opacity: 0;
}
.csstransitions .main_menu .menu_list > li > a:before { 
	
	/* modernizr */
	transition: all 0.3s ease-in-out;
}
.csstransforms .main_menu .menu_list > li > a:before {
	
	/* modernizr */
	transform: translateY(-1em);
}
.main_menu .menu_list > li:hover > a:before,
.main_menu .menu_list > li > a.active:before {
	z-index: 1;
	visibility: visible;
	opacity: 1;
}
.csstransforms .main_menu .menu_list > li:hover > a:before,
.csstransforms .main_menu .menu_list > li > a.active:before {
	
	/* modernizr */
	transform: translateY(0%);
}
.main_menu .menu_list > li > a:after {
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	content: '\00a0';
	background-color: #91b3d3;
}
/* § menu list */

/* submenu */
.main_menu .menu_list > li ul { 
	position: absolute;
	z-index: 1;
	top: 100%;
	left: 0;
	min-width: 100%;

	visibility: hidden;
	opacity: 0;
}
.csstransforms .main_menu .menu_list > li ul {
	
	/* modernizr */
	transform: translateY(2em);
}
.csstransitions .main_menu .menu_list > li ul {
	
	/* modernizr */
	transition: all 0.3s ease-in-out 0s, visibility 0s linear 0.3s, z-index 0s linear 0.01s;
}
.main_menu .menu_list > li:hover ul {
	visibility: visible; /* shows sub-menu */
	opacity: 1;
}
.csstransforms .main_menu .menu_list > li:hover ul {
	
	/* modernizr */
	transform: translateY(1px);
}
.csstransitions .main_menu .menu_list > li:hover ul {
	
	/* modernizr */
	transition-delay: 0s, 0s, 0.3s; /* this removes the transition delay so the menu will be visible while the other styles transition */
}
.main_menu .menu_list > li ul { 
    margin: 0;
    padding: 0;
	background-color: #fff;
    list-style: none;
	
	/* piefix */
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
	-ms-behavior: url(js/PIE.htc);
}
.main_menu .menu_list > li ul li { 
	margin: 0;
	padding: 0;
}
.main_menu .menu_list > li ul li a { 
	display: block;
	padding: 10px;
	color: #0055a4;
	font-size: 14px;
	font-weight: 700;
	line-height: 1;
	white-space: nowrap;
	text-transform: uppercase;
}
.csstransitions .main_menu .menu_list > li ul li a {
	
	/* modernizr */
	transition: all 0.3s ease-in-out;
}
.main_menu .menu_list > li ul li a.active, 
.main_menu .menu_list > li ul li a:hover {
	background-color: #91b3d3;
	color: #fff;
}
/* § submenu */

/* Facebook */
.main_menu .menu_list > li:last-child {
	line-height: 1;
}
.main_menu .menu_list > li:last-child > a {
	padding-right: 0;
	font-weight: 400;
	color: #0055a4;
}
.main_menu .menu_list > li:last-child > a:after,
.main_menu .menu_list > li:last-child > a:before {
	display: none;
}
.main_menu .menu_list > li .fa {
	font-size: 25px;
}
.main_menu .menu_list > li:last-child > a .followme {
	display: none;
}
/* § Facebook */
/* § main menu */
/* § header */

/* bannerhome */
.bannerhome {
	position: relative;
	z-index: 1;
}
.bannerhome:after {
	position: absolute;
	z-index: 10;
	bottom: -43px;
	left: 0;
	width: 100%;
	height: 43px;
	content: '';
	background-image: url("../img/ombra-bannerone.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.bannerhome .cycleslider {
	position: relative;
	height: 500px;
	overflow: hidden;
}

/* slide */
.bannerhome .cycleslider a.slide {
	display: block;
	width: 100%;
	height: 100%;
	background-repeat: no-repeat; 
	background-position: center;
	background-size: cover;
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.bannerhome .cycleslider a.slide .bannerwrap {
	position: relative;
	z-index: 10;
	height: 100%;
}
.bannerhome .cycleslider a.slide .bannerwrap .container-titoli {
	position: absolute;
	z-index: 100;
	top: 60%;
	right: 15px;
	left: 15px;
}
.bannerhome .cycleslider a.slide .bannerwrap .container-titoli h1 {
    position: relative;
	float: right;
	opacity: 0;
    margin: 0;
	margin-top: 300px;
    padding: 8px 50px 8px 8px;
    background-color: #0055a4;
    font-size: 30px;
    color: #fff;
	text-align: right;
}
.bannerhome .cycleslider a.slide .bannerwrap .container-titoli h1:after {
	position: absolute;
	bottom: 10px;
	right: 8px;	
	content: '\f054';
	font-family: FontAwesome;
	font-size: 21px;
	color: #fff;
}
.csstransitions .bannerhome .cycleslider a.slide .bannerwrap .container-titoli h1 {
	
	/* modernizr */
	transition: all 0.6s ease-in-out;
}
.no-csstransitions .bannerhome .cycleslider a.slide .bannerwrap .container-titoli h1,
.bannerhome .cycleslider a.slide.moving .bannerwrap .container-titoli h1 {
	margin-top: 0;
	opacity: 1;
}
.bannerhome .cycleslider a.slide .bannerwrap .container-titoli h2 {
    float: right;
    clear: both;
	opacity: 0;
	margin: 0;
	margin-top: 600px;
    padding: 8px;
    background-color: #fff;
    font-size: 20px;
    color: #282828;
	text-align: right;
}
.csstransitions .bannerhome .cycleslider a.slide .bannerwrap .container-titoli h2 {
	
	/* modernizr */
	transition: all 0.6s ease-in-out 0.1s;
}
.no-csstransitions .bannerhome .cycleslider a.slide .bannerwrap .container-titoli h2,
.bannerhome .cycleslider a.slide.moving .bannerwrap .container-titoli h2 {
	margin-top: 10px;
	opacity: 1;
}
/* § slide */

/* prev, next */
.bannerhome .cycleslider .cycle-prev, 
.bannerhome .cycleslider .cycle-next {
    position: absolute;
    z-index: 10000;
    top: 0;
    width: 6.25%;
	min-width: 15px;
    height: 100%;
	opacity: 0.9;
	font-size: 4.7vw;
	color: #fff;
	line-height: 1;
	text-align: center;
    cursor: pointer;
}
.csstransitions .bannerhome .cycleslider .cycle-prev, 
.csstransitions .bannerhome .cycleslider .cycle-next {
	
	/* modernizr */
	transition: all 0.3s ease-in-out;
}
.bannerhome .cycleslider .cycle-prev:hover, 
.bannerhome .cycleslider .cycle-next:hover {
	color: #91b3d3;
}
.bannerhome .cycleslider .cycle-next {
    right: 0;
}
.bannerhome .cycleslider .cycle-prev {
    left: 0;
}
.bannerhome .cycleslider .cycle-prev:before,
.bannerhome .cycleslider .cycle-next:before {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	margin-top: -2.35vw;
	font-family: FontAwesome;
}
.bannerhome .cycleslider .cycle-next:before {
	content: '\f138';
}
.bannerhome .cycleslider .cycle-prev:before {
	content: '\f137';
}
/* § prev, next */
/* § bannerhome */

/* Blog */
.blog-bg {
	background-color: #f2f2f2;
	padding: 40px 0;
}
.blog-bg h1.titolo-blog {
	position: relative;
	margin: 0 0 40px 0;
	text-align: center;
	text-transform: uppercase;
}
.blog-bg h1.titolo-blog:after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	border-bottom: 1px solid #91b3d3;
	content: '';
}
.blog-bg h1.titolo-blog > span {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 0 15px;
	background-color: #f2f2f2;
	font-size: 40px;
	color: #444444;
}
.blog-bg h1.titolo-blog > span > span {
	display: inline-block;
	padding: 0 0 0 15px;
	background-color: #0055a4;
	color: #fff;
}

/* articoli */
a.blog-colonne {
	display: block;
	position: relative;
	padding-bottom: 1px;
}
a.blog-colonne:after {
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100px;
	height: 1px;
	background-color: #91b3d3;
	content: '';
}
a.blog-colonne .foto-home-blog {
	width: 100%;
	height: 0;
	padding-top: 71%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.csstransitions a.blog-colonne .foto-home-blog {
	
	/* modernizr */
	-webkit-transition: 1s ease-in-out;
	transition: 1s ease-in-out;
}
a.blog-colonne:hover .foto-home-blog {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
a.blog-colonne .data {
	display: inline-block;
	margin: 20px 0 10px 0;
	padding: 5px;
	background-color: #91b3d3;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
}
a.blog-colonne:hover .data {
	background-color: #0055a4;
}
a.blog-colonne .testo-blog-home {
	font-size: 16px;
	color: #282828;
}
a.blog-colonne .testo-blog-home h2 {
	font-size: 22px;
	margin: 5px 0;
}
a.blog-colonne:hover .testo-blog-home h2 {
	color: #0055a4;
}
/* § articoli */
/* § Blog */

/* Contatti */
.contatti-bg {
	background-color: #fff;
}
.contatti-bg a .testo-icone-contatti {
	color: #282828;
}
.contatti-bg a:hover .testo-icone-contatti {
	color: #0055a4;
}
/* Bounce In */
.contatti-bg a .hvr-bounce-in {
	display: inline-block;
	vertical-align: middle;
	-webkit-transform: perspective(1px) translateZ(0);
	transform: perspective(1px) translateZ(0);
	box-shadow: 0 0 1px rgba(0, 0, 0, 0);
	-webkit-transition-duration: 0.5s;
	transition-duration: 0.5s;
}
.contatti-bg a:hover .hvr-bounce-in, 
.contatti-bg a:focus .hvr-bounce-in, 
.contatti-bg a:active .hvr-bounce-in {
	-webkit-transform: scale(1.2);
	transform: scale(1.2);
	-webkit-transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
	transition-timing-function: cubic-bezier(0.47, 2.02, 0.31, -0.36);
}
.testo-icone-contatti {
	margin: 0 0 30px 0;
	padding-top: 20px;
	border-top: 1px solid #0055a4;
	font-size: 20px;
	color: #282828;
	text-align: center;
}
.icone-contatti {
	position: relative;
	width: 100%;
	margin-top: 40px;
	padding-top: 100px;
	color: #0055a4;
	text-align: center;
}
.icone-contatti:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	font-family: FontAwesome;
	font-size: 68px;
	text-align: center;
}
.icone-contatti.indirizzo:after {
	content: '\f041';
}
.icone-contatti.telefono:after {
	content: '\f232';
}
.icone-contatti.mail:after {
	content: '\f003';
}
.img-contatti {
	position: absolute;
	z-index: 1;
	top: -20px;
	bottom: 0;
	left: 15px;
	right: 15px;
	background-image: url("../img/contatti-home.png");
	background-image: url("../img/contatti-home2.png");
	background-position: center bottom;
	background-repeat: no-repeat;
	background-size: contain;
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
/* § Contatti */

/* Footer */
.footer {
	padding: 22px 0;
}

/* loghi */
.footer .loghi-area {
	float: left;
}
.footer .logo-ordine {
	float: right;
	width: 192px;
	height: 100px;
	margin-right: 15px;
	background-image: url("../img/logo-ordine.jpg");
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.footer .logo-footer {
	float: right;
	width: 100px;
	height: 100px;
	margin-right: 15px;
	background-image: url("../img/logo-footer.jpg");
	background-position: left center;
	background-repeat: no-repeat;
	background-size: cover;
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.footer .testo-footer {
	float: right;
	margin-right: 15px;
	font-size: 14px;
	color: #fff;
	line-height: 1.2;
}
.footer .testo-footer strong {
	font-size: 16px;
	font-weight: 700;
	color: #0055a4;
}
.footer .testo-footer small {
	color: #0055a4;
}
.footer .testo-footer small span {
	color: #fff;
}
/* § loghi */

/* menu footer */
.footer .footer_menu {
	float: right;
}
.footer .footer_menu ul {
	margin: 0;
	padding: 0;
	list-style: none;
}
.footer .footer_menu ul li {
	position: relative;
	float: left;
	height: 30px;
	padding: 0 15px;
	font-size: 20px;
	color: #fff;
	text-transform: uppercase;
}
.footer .footer_menu ul li a {
	color: #fff;
}
.footer .footer_menu ul li a:hover {
	color: #0055a4;
}
.footer .footer_menu ul li:last-child {
	padding-right: 0;
}
.footer .footer_menu ul li:last-child:after {
	display: none;
}
.footer .footer_menu ul li:after {
	position: absolute;
	right: 0;
	top: 0;
	width: 1px;
	height: 30px;
	background-color: #fff;
	content: '';
}
/* § menu footer */
/* § Footer */

/* main */
.main {
	background-color: #fff;
	padding-bottom: 1px;
}
/* § main */

/* main image */
.mainimage {
	position: relative;
	display: block;
	width: 100%;
	height: 427px;
	background-repeat: no-repeat; 
	background-position: center;
	background-size: cover;
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.mainimage:after {
	position: absolute;
	z-index: 1;
	bottom: -43px;
	left: 0;
	width: 100%;
	height: 43px;
	content: '';
	background-image: url("../img/ombra-bannerone.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
/* § main image */

/* main title */
.maintitle {
	background-color: #fff;
	padding: 30px 0;
	text-transform: uppercase;
}
.maintitle h1 {
	position: relative;
	margin: 0;
	font-size: 40px;
	text-align: center;
}
.maintitle h1:after {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	border-bottom: 1px solid #91b3d3;
	content: '';
}
.maintitle h1 > span {
	position: relative;
	z-index: 1;
	display: inline-block;
	padding: 0 15px;
	background-color: #fff;
	color: #444444;
}
.maintitle h1 > span > span {
	display: inline-block;
	padding: 0 0 0 15px;
	background-color: #0055a4;
	color: #fff;
}
.chisonotitle {
	background-color: #fff;
	padding: 30px 0 0 0;
}
.chisonotitle h1 {
	margin: 0;
	font-size: 60px;
	text-align: center;
	text-transform: uppercase;
}
.chisonotitle h1:after {
	display: inline-block;
	width: 252px;
	/*width: 412px;*/
	height: 353px;
	content: '';
	background-image: url("../img/donna-contatti-home.png");
	background-image: url("../img/seduta.png");
	background-image: url("../img/mezzo-busto-scrivania.png");
	background-image: url("../img/contatti-home2.png");
	background-repeat: no-repeat;
	background-position: center bottom;
	background-size: contain;
	vertical-align: middle;
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.chisonotitle h1 > span {
	display: inline-block;
	padding: 0 0 0 15px;
	background-color: #0055a4;
	color: #fff;
}
/* § main title */

/* citazione */
.citation {
	position: relative;
	display: block;
	width: 100%;
	padding: 20px 0;
	background-image: url("../img/img-bosco-big.jpg");
	background-repeat: no-repeat; 
	background-position: center;
	background-size: cover;
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.citation:after {
	position: absolute;
	z-index: 1;
	bottom: -43px;
	left: 0;
	width: 100%;
	height: 43px;
	content: '';
	background-image: url("../img/ombra-bannerone.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.citation .container {
	display: table;
	overflow: hidden;
	min-height: 285px;
}
.citation .container .cell {
	display: table-cell;
	vertical-align: middle;
}
.citation .container .marks {
	position: relative;
	padding: 40px 80px 20px 80px;
}
.citation .container .marks:before {
	position: absolute;
	top: 0;
	left: 0;
	content: '“';
	font-size: 155px;
	font-weight: 700;
	font-style: italic;
	color: #0055a4;
	line-height: 1;
}
.citation .container .marks:after {
	position: absolute;
	bottom: 0;
	right: 10px;
	content: '”';
	font-size: 155px;
	font-weight: 700;
	font-style: italic;
	color: #0055a4;
	line-height: 0;
}
.citation .container .marks .text {
	margin-bottom: 20px;
	font-size: 22px;
	font-style: italic;
	color: #444444;
}
.citation .container .marks .author {
	margin-bottom: 20px;
	font-size: 22px;
	font-weight: 700;
	color: #0055a4;
	text-align: right;
}
/* § citazione */

/* content */
.content {
	background-color: #fff;
	padding-top: 30px;
	padding-bottom: 30px;
}
.citation + #page-body .content,
.citation + .content {
	padding-top: 50px;
}
.content:last-of-type {
	padding-top: 30px;
	padding-bottom: 70px;
}
/* § content */

/* testo */
.testo {
	font-size: 20px;
}
.testo .descrizione {
	font-style: italic;
}
.testo a {
	color: #0055a4;
}
.testo img {
	display: block;
	max-width: 100%;
	height: auto;
}
.testo video {
	width: 100% !important;
	height: auto !important;
}
.testo iframe {
    max-width: 100%;
}
.testo .videoWrapper {
	position: relative;
	padding-bottom: 56.25%; /* 16:9 */
	padding-top: 25px;
	height: 0;
}
.testo .videoWrapper iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/* § testo */

/* Contatti */
.maps {
	position: relative;
	height: 0;
	padding-bottom: 30%;
	overflow: hidden;
}
.maps > iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100% !important;
	height: 100% !important;
}
.contatti-bg.page {
	margin-top: -50px;
}
.form-contatti {
	padding: 50px 0;
	background-color: #f1f1f1;
}
.form-contatti .testo {
	font-size: 20px;
}
.form-contatti .form-group label {
	font-size: 20px;
	font-weight: 400;
	color: #0055a4;
	text-transform: uppercase;
}
.form-contatti .btn {
	margin-top: 20px;
}
.btn-red {
	background-color: #0055a4;
	border-color: #0055a4;
	text-transform: uppercase;
}
.btn-red:hover,
.btn-red:focus,
.btn-red:active,
.btn-red.active {
	background-color: #00488b;
	border-color: #003b71;
}
.btn-red.disabled:hover,
.btn-red.disabled:focus,
.btn-red.disabled:active,
.btn-red.disabled.active,
.btn-red[disabled]:hover,
.btn-red[disabled]:focus,
.btn-red[disabled]:active,
.btn-red[disabled].active,
fieldset[disabled] .btn-red:hover,
fieldset[disabled] .btn-red:focus,
fieldset[disabled] .btn-red:active,
fieldset[disabled] .btn-red.active {
	background-color: #0055a4;
	border-color: #0055a4;
}
/* § Contatti */

/* Approccio */
.high-box {
	width: calc(100vw - 18px);
    position: relative;
	margin-top: 30px;
    margin-left: calc(-50vw + 9px);
    left: 50%;
	background-color: #f9fbfd;
	border-top: 1px solid #ccdded;
	border-bottom: 1px solid #ccdded;
	padding: 20px 0 30px 0;
}
.high-box h4 {
	font-weight: 700;
	color: #0055a4;
}
.big-box {
	width: calc(100vw - 18px);
    position: relative;
	margin-top: -30px;
    margin-left: calc(-50vw + 9px);
    left: 50%;
	background-color: #fff;
}

/* parte testo */
.parte-testo {
	display: table;
	padding: 45px 60px;
}
.parte-testo .wraptocenter {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
	height: 100%;
}
.parte-testo h1 {
	margin-top: 0;
	font-size: 40px;
	font-weight: 700;
	color: #0055a4;
}
.parte-testo .testo {
	font-size: 20px;
}
/* § parte testo */

/* immagine */
.immagine {
	min-height: 600px;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
/* § immagine */
/* § Approccio */

.simil_list p {
	position: relative;
	padding-left: 15px;
	overflow: hidden;
}
.simil_list p:before {
	position: absolute;
	left: 0;
	top: 0;
	content: '\f0da';
	font-family: FontAwesome;
	color: #0055a4;
}

/* faq */
.faq {
	margin-top: 20px;
	background-color: #f9fbfd;
	border-top: 1px solid #ccdded;
	border-bottom: 1px solid #ccdded;
	padding: 20px 0 30px 0;
}
.faq.open {
	background-color: #ccdded;
	border-top: 1px solid #f9fbfd;
	border-bottom: 1px solid #f9fbfd;
}
.faq .container {
	position: relative;
	padding-top: 1px;
	padding-left: 50px;
}
.faq .container:before {
	position: absolute;
	left: 15px;
	top: 0;
	margin: 10px 0;
	content: '\f055';
	font-family: FontAwesome;
	font-size: 22px;
	color: #0055a4;
	line-height: 1;
}
.faq.open .container:before {
	content: '\f056';
}
.faq h4.domanda {
	font-weight: 700;
	color: #0055a4;
}
.faq .risposta {
	overflow: hidden;
}

/* readmore */
.faq .read_more {
	display: block;
	width: 25%;
	min-width: 300px;
	margin: 0 auto;
	border-bottom: 1px solid #91b3d3;
	line-height: 1;
	text-align: center;
}
.faq .read_more i {
	position: relative;
	top: 9px;
	padding: 0 5px;
	background-color: #f9fbfd;
	font-size: 22px;
	color: #0055a4;
}
.faq.open .read_more i {
	background-color: #ccdded;
}
/* § readmore */
/* § faq */

/* blog */
/* sub menu */
.sub-menu-servizi {
	background-color: #0055a4;
}
.sub-menu-servizi ul {
	margin: 0;
	padding: 20px 0 20px 0;
	list-style: none;
	text-align: center;
}
.sub-menu-servizi ul li {
	display: inline-block;
}
.sub-menu-servizi ul li a {
	display: inline-block;
	position: relative;
	padding: 5px 8px 5px 8px;
	font-size: 18px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	text-transform: uppercase;
}
.sub-menu-servizi ul li a.active:after,
.sub-menu-servizi ul li a:hover:after {
	display: block;
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 60px;
	height: 0;
	margin-left: -30px;
	padding-top: 1px;
	background-color: #91b3d3;
	content: '';
}
/* § sub menu */

/* blog index */
.blog-box {
	position: relative;
	background-color: #f2f2f2;
	padding-bottom: 20px;
	margin-bottom: 70px;
}
.blog-box:last-of-type {
	padding-bottom: 20px;
}
.blog-box:after {
	position: absolute;
	z-index: 1;
	bottom: -43px;
	left: 0;
	width: 100%;
	height: 43px;
	content: '';
	background-image: url("../img/ombra-bannerone.png");
	background-repeat: no-repeat;
	background-position: center top;
	background-size: 100% auto;
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.blog-box .blog-colonne {
	margin-bottom: 30px;
}

/* pagination */
.blog-box .pagination > li > a, 
.blog-box .pagination > li > span {
    color: #0055a4;
}
.blog-box .pagination > li > a:focus, 
.blog-box .pagination > li > a:hover, 
.blog-box .pagination > li > span:focus, 
.blog-box .pagination > li > span:hover {
	color: #fff;
    background-color: #91b3d3;
}
.blog-box .pagination > .active > a, 
.blog-box .pagination > .active > a:focus, 
.blog-box .pagination > .active > a:hover, 
.blog-box .pagination > .active > span, 
.blog-box .pagination > .active > span:focus, 
.blog-box .pagination > .active > span:hover {
	color: #fff;
    background-color: #0055a4;
    border-color: #0055a4;
}
.blog-box .pager li > a, 
.blog-box .pager li > span {
    color: #0055a4;
}
.blog-box .pager li > a:focus, 
.blog-box .pager li > a:hover {
	color: #fff;
    background-color: #91b3d3;
}
/* § pagination */
/* § blog index */

/* blog interna */
.blog-article .blog-image {
	width: 100%;
	height: 0;
	padding-top: 56.25%;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
	-webkit-filter: grayscale(100%);
	filter: grayscale(100%);
	
	/* backgroundsize */
	-ms-behavior: url(js/backgroundsize.min.htc);
}
.csstransitions .blog-article .blog-image {
	
	/* modernizr */
	-webkit-transition: 1s ease-in-out;
	transition: 1s ease-in-out;
}
.blog-article .blog-image:hover {
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
}
.blog-article .data {
	display: inline-block;
	margin: 20px 0 10px 0;
	padding: 5px;
	background-color: #91b3d3;
	font-size: 16px;
	color: #fff;
	text-transform: uppercase;
}
.blog-article .news_title {
	margin-top: 0;
    color: #0055a4;
}
.allegati_title h3 {
	margin-bottom: -15px;
    color: #0055a4;
}
.allegati_title h3 span {
	vertical-align: top;
    font-size: 40px;
    margin-right: 10px;
}
.allegati_title small {
	margin-left: 57px;
    color: #777;
}
/* § blog interna */

/* Commenti */
.commenti_title h3 {
	margin-bottom: -9px;
    color: #0055a4;
}
.commenti_title h3 span {
	vertical-align: sub;
    font-size: 40px;
    margin-right: 10px;
}
.commenti_title small {
	margin-left: 57px;
    color: #777;
}
.comment-box .media-left {
    padding-right: 10px;
    width: 65px;
	text-align: center;
}
.comment-box .media-left span {
	margin-top: 7px;
	font-size: 40px;
}
.comment-box .media-body p {
    border: 1px solid #ddd;
    padding: 10px;
}
.comment-box .media-body p {
    margin-bottom: 0;
}
.comment-box .media-heading {
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    padding: 7px 10px;
    position: relative;
    margin-bottom: -1px;
    color: #0055a4;
}
.comment-box .media-heading small {
    color: #777;
}
.comment-box .media-heading:before {
    content: "";
    width: 12px;
    height: 12px;
    background-color: #f2f2f2;
    border: 1px solid #ddd;
    border-width: 1px 0 0 1px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
    position: absolute;
    top: 10px;
    left: -6px;
}
.commentForm {
	/*margin-left: 50px;*/
}
.commentForm .testo {
	font-size: 18px;
}
.commentForm .form-group label {
	font-size: 16px;
	font-weight: 400;
	color: #0055a4;
	text-transform: uppercase;
}
.commentForm .btn {
	margin-top: 20px;
}
/* § commenti */
/* blog */


