﻿@import url('/fonts/raleway.css');
@import url('/fonts/calligraffitti.css');

html, body{
	font-family: 'Raleway', sans-serif;
	color: #221C1F;
	font-size: 14px;
	line-height: 22px;
	height: 100%;
}

dt{
	font-weight: bold;
}

a{
	color: #221C1F;
	text-decoration: underline;
}

a:hover{
	color: #11547C;
	text-decoration: none;
}

.clear{
	clear: both;
	height: 0;
}

.img{
	background-size: cover;
	background-repeat: no-repeat;
	background-position: center;
}

/*BOTTONE*/
.btn{
	display: inline-block;
	color: #221C1F;
	background-color: #FFF;
	border: 1px solid #221C1F;
	padding: 3px 20px;
	border-radius: 5px;
	text-decoration: none;
	text-transform: lowercase;
	text-align: center;
	margin: 0 auto;
	cursor: pointer;
	line-height: 22px;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.btn:hover, .btn:focus, .btn:active {
	color: #FFF;
	background-color: #221C1F;
}

.btn.contatti{
	float: right;
}

.btn.form{
	margin: 0 auto;
	display: block;
}

.video-container{
	position: relative;
	padding-bottom: 56.25%;
	height: 0; 
	overflow: hidden;
	margin-top: 40px;
}

.video-container iframe,
.video-container object,
.video-container embed{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.cf:before,
.cf:after{
    content: " ";
    display: table;
}

.cf:after{
    clear: both;
}

.container{
	max-width: 1300px;
	padding: 0 20px;
	position: relative;
	margin: 0 auto;
}

.left_50{
	width: 50%;
	float: left;
}

.right_50{
	width: 50%;
	float: right;
}

.richiesta_info_td{
	width: 35%;
	text-align: right;
	padding-right: 5px;
}

.input{
	border: 1px solid #CCC;
	box-sizing: border-box;
	width: 100%;
	padding: 5px;
	background-color: #F9F9F9;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.input:focus{
	background-color: #fff;
	box-shadow: none;
}

.line{
	background-color: #3E3E3E;
	margin: 50px 0;
	height: 1px;
}

.line.half{
	background-color: #3E3E3E;
	margin: 25px 0;
	height: 1px;
}

.lista{
	list-style-type: disc;
	padding: 0 0 0 20px;
	margin-bottom: 0;
}

.lista li{
	margin-bottom: 5px;
}

#social-cnt{
	position: fixed;
	right: 0;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	background-color: #000;
	z-index: 1000;
	padding: 10px;
}

.social{
	display: block;
	position: relative;
	width: 30px;
	height: 30px;
	border-radius: 100%;
	margin: 10px auto;
	background-color: #FFF;
}

.social i{
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	-moz-transform: translate(-50%, -50%);
	-o-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	color: #000;
	font-size: 15px;
}

header.home{
	height: 100%;
	position: relative;
}

#header{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0,0,0,.8);
	z-index: 1000;
}

#logo-cnt{
	padding: 10px 0 10px 0;
	text-align: center;
}

#logo-cnt a{
	display: inline-block;
	line-height: 0;
}

#logo{
	max-width: 200px;
}

#menu-cnt{
	position: relative;
}

#menu-trigger{
	display: none;
	text-transform: uppercase;
	padding: 10px 20px;
	background-color: #221C1F;
	color: #FFF;
	font-size: 18px;
	cursor: pointer;
	background-image: url('/img/sandwich.png');
	background-repeat: no-repeat;
	background-position: right 20px center;
	background-size: 22px;
}

#menu{
	list-style-type: none;
	padding: 0;
	margin: 10px 0 0 0;
	text-align: center;
}

.menu-li{
	display: inline-block;
	position: relative;
}

.menu-a{
	display: block;
	font-size: 18px;
	padding: 0 0 10px 0;
	margin: 0 20px;
	text-decoration: none;
	color: #FFF;
	border-bottom: 2px solid transparent;
	text-transform: uppercase;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	line-height: 18px;
}

.menu-li:hover .menu-a, .menu-a.active, .menu-li:hover .menu-a.active{
	border-color: #FFF;
	color: #FFF;
}

.sub-menu{
	display: none;
	list-style-type: none;
	margin: 0;
	padding: 0;
	position: absolute;
	white-space: nowrap;
	background-color: #11547C;
	text-align: left;
	padding: 3px;
	z-index: 4;
}

.menu-li:hover .sub-menu{
	display: block;
}

.sub-menu-li{
	display: block;
}

.sub-menu-a{
	display: block;
	padding: 10px 80px 10px 20px;
	border-radius: 5px;
	text-decoration: none;
	text-transform: uppercase;
	color: #FFF;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.sub-menu-a:hover{
	background-color: #fff;
	color: #444;
}

#map{
	height: 100%;
	background-color: #FFF;
}

#slideshow{
	position: relative;
	height: 100%;
	margin: 0 auto;
	background-color: #000;
}

#slideshow.nav{
	height: 600px;
}

.slideshow-image{
	position: absolute;
	top: 0px;
	left: 0px;
	width: 100%;
	height: 100%;
	z-index: 1;
	opacity: 0.0;
}

.slideshow-image.active{
	z-index: 3;
	opacity: 1.0;
}

.slideshow-image.last-active{
	z-index: 2;
}

.slogan{
	font-family: 'Calligraffitti', cursive;
	position: absolute;
	color: #FFF;
	width: 100%;
	top: 70%;
	left: 0;
	margin: 0;
	font-size: 70px;
	text-shadow: 1px 1px 2px #000;
	text-align: center;
	background-color: rgba(34, 28, 31, 0.4);
	line-height: 70px;
	padding-top: 20px;
	font-weight: 100;
	display: none;
}

#slogan-cnt{
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: #333;
	color: #999;
	z-index: 18;
	text-align: center;
}

#slogan-cnt .container{
	overflow: hidden;
	padding: 0;
}

#slogan{
	position: relative;
	display: inline-block;
	margin: 20px 0;
	font-weight: normal;
	visibility: hidden;
}

#slogan:before,
#slogan:after{
	content: "";
	position: absolute;
	height: 1px;
	background-color: #999;
	width: 1920px;
	top: 50%;
}

#slogan:before{
	right: 100%;
	margin-right: 15px;
}

#slogan:after{
	left: 100%;
	margin-left: 15px;
}

#body{
	padding-top: 40px;
	padding-bottom: 40px;
}

#body.lookbook{
	padding-top: 172px;
	padding-bottom: 0;
}

.box-home{
	position: relative;
	top: 0;
	display: block;
	box-sizing: border-box;
	float: left;
	width: 30%;
	margin-right: 5%;
	text-decoration: none;
	-webkit-transition: all .2s ease;
	-moz-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.box-home:last-child{
	margin-right: 0;
}

.box-img, .lookbook-home{
	min-height: 400px;
}

.lookbook-home{
	height: 528px;
}

.box-text{
	text-align: center;
	padding: 20px;
	color: #FFF;
	height: 88px;
	overflow: hidden;
	background-color: #333;
}

.box-title{
	position: relative;
	z-index: 5;
	font-weight: bold;
	font-size: 18px;
	margin: 0;
	padding: 10px;
	text-align: center;
	color: #FFF;
	text-shadow: 1px 1px 2px #000;
	background-color: rgba(34, 28, 31, 0.4);
}

.box-text .btn{
	display: block;
	margin-top: 20px;
}

#lookbook-home-cnt{
	position: absolute;
	top: 0;
	width: 100%;
}

.marchio-home{
	box-sizing: border-box;
	height: 132px;
	padding: 20px 23.846153%;
	margin: 0 auto;
	background-origin: content-box;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
	border-bottom: 1px solid #ccc;
}

.marchio-home:last-child{
	border-bottom: 0;
}

.titolo-pagina{
	margin: 0;
	padding: 0px 0 20px 0;
	font-size: 35px;
	font-weight: 100;
	line-height: 35px;
}

.titolo-secondario{
	margin: 0;
	padding: 0px 0 15px 0;
	font-size: 25px;
	font-weight: 100;
	line-height: 25px;
}

.colonna{
	width: 26.66666%;
	margin-right: 10%;
	float: left;
}

.colonna.wide{
	width: 63.333332%;
}

.colonna.last{
	margin-right: 0;
}

.colonna .highslide{
	display: block;
	height: 180px;
	margin-bottom: 20px;
	background-size: cover;
	background-position: center;
	background-color: #ccc;
}

.colonna .highslide.big{
	height: 400px;
}


.colonna .highslide.last{
	margin-bottom: 0;
}

q{
    display: block;
	font-style: italic;
	font-size: 20px;
	text-align: center;
}

q:before, q:after{
	display: block;
	margin: 5px 0;
	font: normal normal normal 14px/1 FontAwesome;
	font-size: inherit;
	text-rendering: auto;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}
 
q:before{
    content: "\f10d";
}
 
q:after{
	content: "\f10e";
}

#footer{
	background-color: #000;
}

#big-footer-cnt{
	margin-bottom: 5px;
	background-color: #333333;
	color: #FFF;
}

.box-foot{
	width: 22%;
	margin-right: 4%;
	float: left;
	box-sizing: border-box;
	padding: 40px 0px;
	font-size: 13px;
	position: relative;
}

.box-foot .btn{
	position: absolute;
	bottom: 0;
	right: 20px;
}

.box-foot:last-child{
	margin-right: 0;
}

.box-foot-title{
	margin: 0 0 10px 0;
	padding: 0 0 5px 0;
	border-bottom: 1px solid #999;
	font-size: 14px;
	font-style: italic;
}

#sitemap_left{
	float: left;
	width: 50%;
	box-sizing: border-box;
	padding-right: 5px;
}

#sitemap_right{
	float: right;
	width: 50%;
	box-sizing: border-box;
	padding-left: 5px;
}

#sitemap a{
	display: block;
	text-decoration: none;
	color: #FFF;
}

#sitemap a:hover{
	text-decoration: underline;
	color: #FFF;
}

#sitemap a.tec{
	font-style: italic;
}

.orario{
	width: 100%;
}

.orario.contatti{
	width: 65%;
}

.giorno{
	font-style: italic;
}

.giorno, .ora{
	border-bottom: 1px dotted #CCC
}

.ora{
	text-align: right;
}

.orario-space{
	height: 0px;
}

/*PHOTOGALLERY*/

.tipologie{
	width: 28%;
	float: left;
}

.disclaimer-gallery{
	padding-bottom: 10px;
	margin-bottom: 30px;
	font-style: italic;
	border-bottom: 1px solid #dedede;
}

.get-content{
	font-size: 14px;
	padding: 5px 0 5px 20px;
	cursor: pointer;
	position: relative;
}

.get-content.hover{
	font-weight: bold;
}

.get-content:before{
	content: '';
	position: absolute;
	left: 0;
	top: 11px;
	display: block;
	width: 10px;
	height: 10px;
	background-color: #444;
}

.get-content.hover:before{
	background-color: #11547C;
}

.contenuto{
	width: 70%;
	float: right;
}

.photo-gallery{
	display: block;
	height: 0;
	padding: 12.5%;
	position: relative;
	float: left;
}

.photo-gallery .hover{
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,.8);
	visibility: hidden;
	opacity: 0;
	transition: all 0.2s;
}

.photo-gallery:hover .hover{
	visibility: visible;
	opacity: 1;
}

.photo-gallery .hover .hover-title{
	position: absolute;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
	top: 50%;
	-ms-transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-o-transform: translateY(-50%);
	transform: translateY(-50%);
	width: 100%;
	box-sizing: border-box;
	padding: 0 20px;
	text-align: center;
	color: #FFF;
	font-size: 18px;
}

.photo-gallery.left{
	float: left;
}

.photo-gallery.right{
	float: right;
}

.highlight-img{
	float: left;
	width: 30%;
	margin-right: 5%;
	height: 200px;
}

.highlight-text{
	float: right;
	width: 65%;
	box-sizing: border-box;
	min-height: 200px;
	padding-bottom: 40px;
	position: relative;
}

.highlight-text .btn{
	position: absolute;
	right: 0;	
	bottom: 0;
}

.marchio{
	float: left;
	box-sizing: border-box;
	width: 30%;
	margin-right: 5%;
	height: 150px;
	margin-bottom: 40px;
	border: 1px solid #ccc;
	background-color: #f5f5f5;
	background-size: contain;
	padding: 20px;
	background-origin: content-box;
	background-position: center;
	background-repeat: no-repeat;
	display: block;
	-webkit-filter: grayscale(1);
	filter: grayscale(1);
	transition: all 0.2s;
}

.marchio:hover{
	-webkit-filter: grayscale(0);
	filter: grayscale(0);
	background-color: #fff;
}

.marchio.n3{
	margin-right: 0;
}

#small-footer{
	font-size: 12px;
	padding-top: 10px;
	padding-bottom: 10px;
	color: #666;
}

#copy{
	float: left;
}

#menu-foot-cnt{
	float: right;
}

#menu-foot{
	list-style-type: none;
	padding: 0;
	margin: 0;
	text-align: right;
}

.menu-foot-li{
	display: block;
	float: left;
}

.menu-foot-a{
	display: block;
	text-transform: lowercase;
	text-decoration: none;
	margin-left: 15px;
	color: #666;
}

.menu-foot-a:hover, .menu-foot-a.active{
	text-decoration: underline;
	color: #666;
}

#cookie-disclaimer{
	background-color: #000;
	color: #FFF;
	-moz-opacity: 0.85;
	opacity: .85;
	filter: alpha(opacity=85);
	position: fixed;
	bottom: 0;
	left: 0;
	width: 100%;
	z-index: 9999;
	padding: 10px 0;
	font-size: 13px;
}

#titolo-cookies{
	display: block;
	font-size: 14px;
	font-weight: bold;
	margin-bottom: 5px;
}

#cookie-disclaimer a, #cookie-disclaimer span{
	text-decoration: underline;
	color: #fff;
	cursor: pointer;
}

@media all and (max-width: 1330px){
	.photo-gallery{
		padding: 16.666666%;
	}
}


@media all and (min-width: 904px){
	#menu{
		display: block !important;
	}
}

@media all and (max-width: 903px){
	#header.nav{
		position: relative;
	}
	
	#menu{
		display: none;
		text-align: left;
		border: 0;
		margin: 0;
	}
	
	#menu-trigger{
		display: block;
	}
	
	.menu-li{
		display: block;
	}
	
	.menu-a{
		border-right: 0;
		padding: 10px 20px;
		border-bottom: 1px solid #221C1F;
		margin: 0;
	}
	
	.menu-a:hover, .menu-a.active, .menu-a.active:hover, .menu-li:hover .menu-a, .menu-li:hover .menu-a:hover{
		background-color: #FFF;
		color: #221C1F;
		text-decoration: none;
	}
	
	#slideshow.nav{
		display: none;
	}
	
	#slideshow.nav.dove-siamo{
		display: block;
		height: 300px;
	}
	
	#slogan-cnt{
		display: none;
	}
	
	.slogan{
		font-size: 30px;
		bottom: 0;
		top: auto;
		padding-top: 10px;
		line-height: 30px;
	}
	
	#body.lookbook{
		padding-top: 0;
	}
	
	.box-home, .colonna{
		width: 32%;
		margin-right: 2%;
	}
	
	.box-foot.sitemap{
		display: none;
	}
	
	.box-foot{
		width: 32%;
		margin-right: 2%;
	}
}

@media all and (max-width: 769px){
	.photo-gallery {
		padding: 25%;
	}
	
	.box-home{
		width: 47.5%;
		margin-right: 5%;
		margin-bottom: 40px;
	}
	
	.box-home:nth-child(2){
		margin-right: 0;
	}
	
	.box-home:last-child{
		margin-bottom: 0;
		float: none;
		width: auto;
		clear: left;
	}
}

@media all and (max-width: 550px){
	.left_50, .right_50{
		float: none;
		width: auto;
	}
	
	.orario.contatti{
		width: 100%;
	}
	
	.box-home, .colonna{
		float: none;
		width: auto;
		height: auto !important;
		margin-right: 0;
	}
	
	.lookbook-home {
		height: 400px;
	}
	
	.lookbook-home-cnt{
		height: 100%;
	}
	
	.box-text{
		height: auto;
	}
	
	.box-foot{
		float: none;
		width: auto;
		margin-right: 0;
	}
	
	#copy{
		float: none;
		text-align: center;
	}
	
	#menu-foot-cnt{
		float: none;
	}
	
	#menu-foot{
		text-align: center;
	}
	
	.menu-foot-li{
		display: inline-block;
		float: none;
	}
	
	.menu-foot-li.first .menu-foot-a{
		margin-left: 0;
	}
}

@media all and (max-width: 400px){
	.marchio{
		width: auto;
		float: none;
		margin-right: 0;
	}
	
	.marchio.n3{
		margin-right: 0;
	}
	
	.photo-gallery{
		padding: 50%;
		float: none;
	}
}