/* CSS Document */
html {
	height: 100%;
	max-height: 100%;
	padding: 0;
	margin: 0;
	border: 0;
	/*background:#545454;*/
	/*font-size:12px; 
font-family:"Lucida Grande", "Lucida Sans Unicode", "Bitstream Vera Sans", Helvetica, sans-serif;color:#666666;
/* hide overflow:hidden from IE5/Mac */
	/* \*/
	overflow: hidden;
	/* */
}

body {
	height: 100%;
	max-height: 100%;
	overflow: hidden;
	padding: 0;
	margin: 0;
	border: 0;
}
	body #home #left1 {
		background: #000
	}
	body#home {
		background: #545454 url(/img/s/sfondo_home.gif) repeat 0 0;
	}

	body#chisiamo {
		background: #545454 url(/img/s/sfondo_chisiamo.gif) repeat 0 0;
	}

	body#dovesiamo {
		background: #545454 url(/img/s/sfondo_dovesiamo.gif) repeat 0 0;
	}

	body#servizi {
		background: #545454 url(/img/s/sfondo_servizi.gif) repeat 0 0;
	}

	body#qualita {
		background: #545454 url(/img/s/sfondo_qualita.gif) repeat 0 0;
	}

	body#parlano {
		background: #545454 url(/img/s/sfondo_parlano.gif) repeat 0 0;
	}

	body#partners {
		background: #545454 url(/img/s/sfondo_partners.gif) repeat 0 0;
	}

	body#news {
		background: #545454 url(/img/s/sfondo_news.gif) repeat 0 0;
	}

	body#contatti {
		background: #545454 url(/img/s/sfondo_contatti.gif) repeat 0 0;
	}

	body#collection {
		background: #545454 url(/img/s/sfondo_1989.gif) repeat 0 0;
	}

	body#privacy {
		background: #545454 url(/img/s/sfondo_privacy.gif) repeat 0 0;
	}

div, ul, h2, h3, h4, h5, img {
	padding: 0px;
	margin: 0px;
}

ul {
	list-style-type: none
}

img {
	border: none;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 9999;
	overflow: hidden;
	background: #545454;
}

	#preloader:before {
		content: "";
		position: fixed;
		top: calc(50% - 30px);
		left: calc(50% - 30px);
		border: 6px solid #545454;
		border-top-color: #fff;
		border-bottom-color: #fff;
		border-radius: 50%;
		width: 60px;
		height: 60px;
		-webkit-animation: animate-preloader 1s linear infinite;
		animation: animate-preloader 1s linear infinite;
	}

@-webkit-keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

@keyframes animate-preloader {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}
}

/*--------------------------------------------------------------
# Header
--------------------------------------------------------------*/
#header {
	transition: all 0.5s;
	z-index: 997;
	padding: 0px 0 0 0;
}

	#header.header-scrolled, #header.header-inner-pages {
		background: #000;
	}

	#header .logo {
		font-size: 30px;
		margin: 0;
		padding: 0;
		line-height: 1;
		font-weight: 500;
		letter-spacing: 2px;
		text-transform: uppercase;		
	}

		#header .logo a {
			color: #fff;
		}

		#header .logo img {
			max-height: 40px;
		}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
/**
* Desktop Navigation 
*/
.navbar {
	padding: 0;
}

	.navbar ul {
		margin: 0;
		padding: 0;
		display: flex;
		list-style: none;
		align-items: center;
	}

	.navbar li {
		position: relative;
	}

	.navbar a, .navbar a:focus {
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: 3px 10px 6px;
		font-size: 15px;
		font-weight: 500;
		color: #fff;
		white-space: nowrap;
		transition: 0.3s;
	}

		.navbar a i, .navbar a:focus i {
			font-size: 12px;
			line-height: 0;
			margin-left: 5px;
		}

		.navbar a:hover, .navbar .active, .navbar .active:focus, .navbar li:hover > a {
			color: #FFBF00;
		}

	.navbar .getstarted, .navbar .getstarted:focus {
		padding: 8px 20px;
		margin-left: 30px;
		border-radius: 50px;
		color: #fff;
		font-size: 14px;
		border: 2px solid #FFBF00;
		font-weight: 600;
	}

		.navbar .getstarted:hover, .navbar .getstarted:focus:hover {
			color: #fff;
			background: #FFFF26;
		}

	.navbar .dropdown ul {
		display: block;
		position: absolute;
		left: 140px;
		top: calc(100% + 30px);
		margin: 0;
		padding: 10px 0;
		z-index: 99;
		opacity: 0;
		visibility: hidden;
		background: #fff;
		box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
		transition: 0.3s;
		border-radius: 4px;
	}

		.navbar .dropdown ul li {
			min-width: 200px;
		}

		.navbar .dropdown ul a {
			padding: 10px 20px;
			font-size: 14px;
			text-transform: none;
			font-weight: 500;
			color: #0c3c53;
		}

			.navbar .dropdown ul a i {
				font-size: 12px;
			}

			.navbar .dropdown ul a:hover, .navbar .dropdown ul .active:hover, .navbar .dropdown ul li:hover > a {
				color: #FFBF00;
			}

	.navbar .dropdown:hover > ul {
		opacity: 1;
		top: 100%;
		visibility: visible;
	}

	.navbar .dropdown .dropdown ul {
		top: 0;
		left: calc(100% - 30px);
		visibility: hidden;
	}

	.navbar .dropdown .dropdown:hover > ul {
		opacity: 1;
		top: 0;
		left: 100%;
		visibility: visible;
	}

@media (max-width: 1366px) {
	.navbar .dropdown .dropdown ul {
		left: -90%;
	}

	.navbar .dropdown .dropdown:hover > ul {
		left: -100%;
	}
}

/**
* Mobile Navigation 
*/
.mobile-nav-toggle {
	color: #fff;
	font-size: 28px;
	cursor: pointer;
	display: none;
	line-height: 0;
	transition: 0.5s;
}

	.mobile-nav-toggle.bi-x {
		color: #fff;
	}

@media (max-width: 911px) {
	.mobile-nav-toggle {
		display: block;
	}

	.navbar ul {
		display: none;
	}
}

.navbar-mobile {
	position: fixed;
	overflow: hidden;
	top: 0;
	right: 0;
	left: 0;
	bottom: 0;
	background: #000;
	transition: 0.3s;
	z-index: 999;
}

	.navbar-mobile .mobile-nav-toggle {
		position: absolute;
		top: 0px;
		right: 0px;
	}

	.navbar-mobile ul {
		display: block;
		position: absolute;
		top: 30px;
		right: 15px;
		bottom: 15px;
		left: 15px;
		padding: 10px 0;
		border-radius: 10px;
		background-color: #fff;
		overflow-y: auto;
		transition: 0.3s;
	}

	.navbar-mobile a, .navbar-mobile a:focus {
		padding: 10px 20px;
		font-size: 15px;
		color: #545454;
	}

		.navbar-mobile a:hover, .navbar-mobile .active, .navbar-mobile li:hover > a {
			color: #FFBF00;
		}

	.navbar-mobile .getstarted, .navbar-mobile .getstarted:focus {
		margin: 15px;
		color: #545454;
	}

	.navbar-mobile .dropdown ul {
		position: static;
		display: none;
		margin: 10px 20px;
		padding: 10px 0;
		z-index: 99;
		opacity: 1;
		visibility: visible;
		background: #fff;
		box-shadow: 0px 0px 30px rgba(127, 137, 161, 0.25);
	}

		.navbar-mobile .dropdown ul li {
			min-width: 200px;
		}

		.navbar-mobile .dropdown ul a {
			padding: 10px 20px;
		}

			.navbar-mobile .dropdown ul a i {
				font-size: 12px;
			}

			.navbar-mobile .dropdown ul a:hover, .navbar-mobile .dropdown ul .active:hover, .navbar-mobile .dropdown ul li:hover > a {
				color: #FFBF00;
			}

	.navbar-mobile .dropdown > .dropdown-active {
		display: block;
	}




#head {position:absolute; margin:0; top:0; left:0; display:block; width:100%; height:30px; background:#000; color:#000; overflow:hidden; }
#foot {position:absolute; margin:0; bottom:0; left:0; display:block; width:100%; height:50px; background:rgb(233,238,242); font-size:0.8em; z-index:5; text-align:right; color:rgb(157,78,84);}

#logo_small {
	position: absolute;
	width: 62px;
	height: 70px;
	top: 141px;
	left: 8px;
	background: url("/img/s/logo_small.gif") no-repeat;
	z-index: 10;
}

#left1 {
	position: absolute;
	left: 70px;
	top: 30px;
	bottom: 0px;
	width: 540px;
	font-size: 12px;
	overflow: auto;
	background: #fff;
	z-index: 10;
}
* html #left1 {height:100%; top:100px; bottom:0px; border-top:0px solid #fff; border-bottom:0px solid #fff;overflow:auto}
@media (max-width: 574px) {
	#left1 {
		left: 0px;
		width: auto;
	}

	#logo_small {
		display: none;
	}
	
	#colonnasx {
		display: none;
	}
	#gallery1 {
		display: none;
	}

	#paging {
		display: none;
	}
}

@media (max-width: 911px) {
	#left1 {
		left: 0px;
		width: auto;
	}

	body#home #left1 {
		width: 100%;
	}

	body#collection #left1 {
		width: 100%;
	}

	#colonnasx {
		display: none;
	}

	#gallery1 {
		display: none;
	}

	#paging {
		display: none;
	}

}

@media (min-width: 912px) {
	#testitop {
		display: none;
	}

	#testibotton {
		display: none;
	}

	#gallery {
		display: none;
	}

	#paging1 {
		display: none;
	}

	#logo_top {
		display: none;
	}
}
	

/*#left1 {position:absolute; left:0; top:0px; bottom:0px; width:450px; font-size:12px; overflow:auto ;}
* html #left1 {height:100%; top:0px; bottom:0px; border-top:0px solid #fff; border-bottom:0px solid #fff;}
#left1 {left:70px; background: #fff }
body#home #left1 {left:70px; background: #000 }*/

.inner {display:block; padding:0 10px 10px 10px;}
.bold {font-size:1.5em; font-weight:bold;}


#top {
	/*position: absolute;
	width: 440px;
	height: 70px;
	top: 30px;
	left: 70px;
	z-index: 10;
	*/
	top: 30px;
	height: 70px;
	margin-bottom: 15px;
	padding: 5px 15px 5px 15px;
	color: #fff;
}

body#home div#top {
	background: #000;
	padding: 5px 15px 5px 15px;
	color: #fff;
}
body#home div#left1 {
	background: #000;
	color: #fff;
}

body#chisiamo div#top {background: #545454 url("/img/s/top_chi-siamo_991.jpg") no-repeat;}
body#dovesiamo div#top {background: #545454 url("/img/s/top_dove-siamo_991.jpg") no-repeat;}
body#servizi div#top {background: #545454 url("/img/s/top_servizi_991.jpg") no-repeat;}
body#qualita div#top {
	background: #545454 url("/img/s/top_qualita_991.jpg") no-repeat;
}
body#parlano div#top {
	background: #545454 url("/img/s/top_parlano_991.jpg") no-repeat;
}
body#partners div#top {
	background: #545454 url("/img/s/top_partners_991.jpg") no-repeat;
}
body#news div#top {background: #545454 url("/img/s/top_news_991.jpg") no-repeat;}
body#contatti div#top {
	background: #545454 url("/img/s/top_contatti_991.jpg") no-repeat;
}
body#collection div#top {background: #545454 url("/img/s/top_1989_991.jpg") no-repeat;}
body#privacy div#top {
	background: #545454 url(/img/s/top_privacy_991.jpg) repeat 0 0;
}

.contenuti {
	padding: 5px 15px 5px 15px;
	background-color: #FBFBFB;
	
}
#colonnasx {
	float: left;
	background-color: transparent;
	position: absolute;
	top: 30px;
	left: 610px;
	padding: 0px 0px 0px 10px;
	overflow: hidden;
	margin: 0px 0px 0 0px;
	text-align: left;
	z-index: 0;
	height: 746px;
	width: 470px;
	
}

#colonnasx_banner {
	float: left;
	background-color: transparent;
	position: relative;
	top: 70px;
	left: 0px;
	padding:15px 0px 0px 0px;
	overflow:hidden;
	margin: 0px 0px 0 0px;
	text-align:left;
	z-index: 1;
	height: 135px;
	width: 440px;
}
#colonnasx_banner h2{font:bold 14px "Lucida Grande", "Lucida Sans Unicode", "Bitstream Vera Sans", Helvetica, sans-serif; line-height: 150%;color:#fff;}
#colonnasx_banner p, strong{font:bold 12px "Lucida Grande", "Lucida Sans Unicode", "Bitstream Vera Sans", Helvetica, sans-serif; line-height: 100%;color:#333;}

#colonnasx_sotto{
	float: left;
	background-color: transparent;
	position: relative;
	top: 90px;
	left: 0px;
	padding:10px 0px 0px 0px;
	overflow:hidden;
	margin: 0px 0px 0 0px;
	text-align:left;
	z-index: 1;
	height: auto;
	width: 460px;
}
#colonnasx_sotto {font:normal 12px "Lucida Grande", "Lucida Sans Unicode", "Bitstream Vera Sans", Helvetica, sans-serif; line-height: 100%;color:#ccc;}
#colonnasx_sotto strong{font:bold 12px "Lucida Grande", "Lucida Sans Unicode", "Bitstream Vera Sans", Helvetica, sans-serif; line-height: 100%;color:#fff;}
br{clear: left;}


/* Image Thumbnails
------------------------------ */
.imagethumb a, .imagethumb a:hover {
	display: block;
	padding: 5px;
	margin: 0px 5px 5px 0px;
	line-height: 0px;
    border: 1px solid #e6e6e6;
    background-color: #AB7D7E;
}
.imagethumb a:visited {
    background-color: #AB7D7E;
    border: 1px solid #f8f8f8;
}
.imagethumb a:hover {
	background-color: #5B3C3D;
	border: 1px solid #ccc;
}
.imagethumb {
	float: left;
}
.albumdesc2 {
	line-height: 18px;
}

#outer .holder {padding:1em; border:0px solid #ddd; margin:0 0px 0px 0;}
#outer .holder p {padding:0px 0 0 0; margin:0;}
#outer .holder p.bold {font-weight:bold;}
#outer .holder h2 {margin:0; padding:0;}

/* unclicked style div.more */
#outer div.more i {float:left; margin-left:0px 0px 0 0; cursor:pointer; color:#9B7854; font-weight:bold; font-size:12px;}
#outer div.more i.hide {display:none;}
#outer div.more p {display:none;}
#outer div.more img {display:none;}

/* clicked style div.click */
#outer div.click i.show {display:none;}
#outer div.click i.hide {display:block;}
#outer div.click p {display:block;}
#outer div.click img {display:block; float:left; padding-right:0px;}

#flowplayerholder{ position: relative; top:50px; height:280px; text-align:center; }

/* - - -  links - - - */
a{font-weight: bold;color:#666;text-decoration: none;}
/*a:visited {color:#E3526F;text-decoration: none;}*/
	a:hover {
		color: #333;
		text-decoration: #FFFF26;
	}
/*a:active { color:#E3526F; text-decoration: underline;}*/
/*a:link,a:visited{color: #4C4C4C;background: transparent;}
a:hover,a:focus,a:active{color: #797A8E;background: transparent;}*/


#colonnasx_sotto a {font-weight: normal;color:#fff;text-decoration: none;}
#colonnasx_sotto a:hover {color: #ccc;text-decoration: underline;}
#colonnasx_sotto a:active {font-weight: normal;color:#fff;text-decoration: none;}

#paging{   
    padding:5px;   
    font-family:Arial, Helvetica, sans-serif;   
    font-size:12px;   
    color:#333333;   
    font-weight:bold;   
}   
  
#paging a{   
    padding:0px 3px 0px 3px;   
    margin:0px 1px 0px 1px;   
    border:1px solid #333;   
    background:#FFFFFF;   
    color:#333;   
    text-decoration:none;   
}   
  
#paging a:hover{   
    border:1px solid #333;   
    background:#333;   
    color:#FFFFFF;   
    text-decoration:none;   
}

#paging1 {
	padding: 5px;
	font-family: Arial, Helvetica, sans-serif;
	font-size: 12px;
	color: #333333;
	font-weight: bold;
}

	#paging1 a {
		padding: 0px 3px 0px 3px;
		margin: 0px 1px 0px 1px;
		border: 1px solid #333;
		background: #FFFFFF;
		color: #333;
		text-decoration: none;
	}

		#paging1 a:hover {
			border: 1px solid #333;
			background: #333;
			color: #FFFFFF;
			text-decoration: none;
		}





.box-container {
	display: inline-block;
	margin: 0;
	padding: 0;
	margin-top: 1.4em;
	width: 100%;
}

.box {
	list-style-type: none;
	float: left;
	opacity: 0;
	transform: translate3d(0, 40px, 0);
	transition: opacity 0.2s, transform 0.35s;
}

	.box.show {
		opacity: 1;
		transform: translate3d(0, 0, 0);
		transition: opacity 0.4s, transform 0.35s;
	}

	.box .inner {
		padding: 10px;
		position: relative;
	}

	.box a {
		display: block;
		width: 100%;
		height: auto;
		position: relative;
		overflow: hidden;
	}

	.box img {
		width: calc(100% + 50px);
		max-width: calc(100% + 50px);
		transition: opacity 0.35s, transform 0.35s;
		transform: translate3d(-40px, 0, 0);
	}

	.box a::before {
		content: '';
		display: block;
		width: 100%;
		height: 100%;
		position: absolute;
		top: 0;
		left: 0;
		background: #000;
		z-index: 99;
		opacity: 0;
		transition: opacity 0.4s;
	}

.three-cols .box {
	width: 100%;
}

.four-cols .box {
	width: 23.1%;
}

	.four-cols .box:nth-child(4n+0) {
		margin-right: 0;
	}

	.four-cols .box:nth-child(4n+1) {
		clear: both;
		margin-left: 0;
	}