/**
* CSS
* @version 1.0
* @author Ozhan Binici
*/

@import url("/MyFontsWebfontsKit/MyFontsWebfontsKit.css");
/*
	font-family: 'NHaasGroteskTXPro-55Rg';
	font-family: 'NHaasGroteskDSPro-75Bd';
	font-family: 'NHaasGroteskTXPro-56It';
	font-family: 'NHaasGroteskTXPro-75Bd';
*/

::selection {
	color: #000;
	background: #FFF;
}

body {
	width: 100%;
	height: auto;
	padding: 0px;
	margin: 0px;
	background-color:#000;
	color:#FFF;
	overflow-x:hidden;
	-webkit-overflow-scrolling: touch;
	-webkit-font-smoothing: antialiased;
	font-size:18px;
	line-height:28px;
	font-family: "NHaasGroteskTXPro-55Rg", Helvetica, Arial, sans-serif
}
	


header {
	position: relative;
}

#venezia-logo {
	position:fixed;
	top:12px;
	right:40px;
	width:182px;
	height:auto;
	z-index:4;
}

.menu-toggle {
	display:block;
	position:fixed;
	border:0px;
	pointer-events:auto;
	z-index:3;
	
	width: 40px;
	height: 27px;
	top: 40px;
	left: 40px;

	cursor: pointer;
	background:transparent;
	
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: transform .5s ease-in-out;
	-moz-transition: transform .5s ease-in-out;
	-o-transition: transform .5s ease-in-out;
	transition: transform .5s ease-in-out;
}

.menu-toggle span {
	display: block;
	position: absolute;
	height: 4px;
	width: 100%;
	background: #FFF;
	border-radius: 0px;
	opacity: 1;
	left: 0;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .25s ease-in-out;
	-moz-transition: .25s ease-in-out;
	-o-transition: .25s ease-in-out;
	transition: .25s ease-in-out;
}

/*
.menu-toggle:hover span {
	background:#b63532;
}
*/
.menu-toggle span:nth-child(1) {
	top: 0px;
}

.menu-toggle span:nth-child(2), .menu-toggle span:nth-child(3) {
	top: 12px;
}

.menu-toggle span:nth-child(4) {
	top: 24px;
}

.menu-toggle.open span:nth-child(1) {
	top: 13px;
	width: 0%;
	left: 50%;
}

.menu-toggle.open span:nth-child(2) {
	-webkit-transform: rotate(45deg);
	-moz-transform: rotate(45deg);
	-o-transform: rotate(45deg);
	transform: rotate(45deg);
}

.menu-toggle.open span:nth-child(3) {
	-webkit-transform: rotate(-45deg);
	-moz-transform: rotate(-45deg);
	-o-transform: rotate(-45deg);
	transform: rotate(-45deg);
}

.menu-toggle.open span:nth-child(4) {
	top: 13px;
	width: 0%;
	left: 50%;
}

.menu-toggle.toggled-on, .menu-toggle.toggled-on:hover, .menu-toggle.toggled-on:focus {
	background-color:transparent;
}
.menu-toggle:focus {
	outline: none;
}

#menu {
	display:none;
	position:fixed;
	top:100px;
	left:40px;
	z-index:2;
}
#menu li {
	list-style-type:none;
	display:block;
}

#menu li a {
	display:inline-block;
	font-size:17px;
	line-height:20px;
	color:#FFF;
	font-family:"NHaasGroteskTxPro-75Bd";
	border-bottom: 4px solid transparent;
	background-color:#000;
	padding-right:6px;
	padding-top:6px;
}

#menu li a:hover,
#menu li a.active {
	border-bottom: 4px solid #FFF;
}

#menu.open{
	display:block;
}

footer {
	position:fixed;
	bottom:0px;
	left:0px;
	width:100%;
	height:auto;
	background-color:#FFF;
	padding: 10px 40px 0px 40px;
	
	-webkit-transition: background-color .3s ease-in-out;
	-moz-transition: background-color .3s ease-in-out;
	-o-transition: background-color .3s ease-in-out;
	transition: background-color .3s ease-in-out;
}

footer ul {
	display:block;
	position:relative;
	width:1215px;
	margin:0 auto;
	font-size:0px;
}

footer li {
	position:relative;
	display:inline-block;
	width:245px;
	height:134px;
	margin-right:20px;
	
	-webkit-transition: height .3s ease-in-out;
	-moz-transition: height .3s ease-in-out;
	-o-transition: height .3s ease-in-out;
	transition: height .3s ease-in-out;
}

footer li.seperator{
	width:0px;
	height:0px !important;
	display:none;
}

footer li:nth-child(2){
	margin-right:80px;
}

footer li:last-child{
	margin-right:0px;
}

footer li:nth-child(n+3){
	width:195px;
	height:114px;
}

footer li .title {
	color:#000;
	font-family:"NHaasGroteskTxPro-75Bd";
	font-size:9px;
	line-height:12px;
	padding:4px 0px;
	width:100%;
	text-align:center;
	
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

footer li .line {
	background-color:#000;
	width:100%;
	height:1px;
	
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

footer li img {
	width:100%;
	height:auto;
	opacity:1;
	-webkit-transition: .3s ease-in-out;
	-moz-transition: .3s ease-in-out;
	-o-transition: .3s ease-in-out;
	transition: .3s ease-in-out;
}

footer.min {
	background-color:transparent;
}
footer.min:hover {
	background-color:#FFF;
}
footer.min li {
	height:40px;
}
footer.min:hover li {
	height:134px;
}
footer.min li .title {
	opacity:0;
}
footer.min:hover li .title {
	opacity:1;
}

footer.min li img {
	opacity:0;
}
footer.min:hover li img {
	opacity:1;
}

footer.min li .line {
	background-color:#FFF;
}
footer.min:hover li .line {
	background-color:#000;
}

#content:before {
	background: rgba(11,11,11,1);
	background: -moz-linear-gradient(top, rgba(11,11,11,1) 0%, rgba(11,11,11,1) 10%, rgba(11,11,11,0) 100%);
	background: -webkit-gradient(left top, left bottom, color-stop(0%, rgba(11,11,11,1)), color-stop(10%, rgba(11,11,11,1)), color-stop(100%, rgba(11,11,11,0)));
	background: -webkit-linear-gradient(top, rgba(11,11,11,1) 0%, rgba(11,11,11,1) 10%, rgba(11,11,11,0) 100%);
	background: -o-linear-gradient(top, rgba(11,11,11,1) 0%, rgba(11,11,11,1) 10%, rgba(11,11,11,0) 100%);
	background: -ms-linear-gradient(top, rgba(11,11,11,1) 0%, rgba(11,11,11,1) 10%, rgba(11,11,11,0) 100%);
	background: linear-gradient(to bottom, rgba(11,11,11,1) 0%, rgba(11,11,11,1) 10%, rgba(11,11,11,0) 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0b0b0b', endColorstr='#0b0b0b', GradientType=0 );
	content:"";
	display:block;
	width:100%;
	height:120px;
	position:fixed;
	z-index:1;
	top:0px;
	left:0px;
}

#content {
	width:100%;
	max-width:700px;
	display:block;
	margin:110px auto;
	padding:10px;
}

#content p {
	margin-bottom:28px;
}

#content h1 {
	font-size:30px;
	line-height:38px;
	margin-bottom:0px;
	font-family:'NHaasGroteskDSPro-75Bd';
}

#content h2 {
	font-size:20px;
	line-height:28px;
	margin-bottom:10px;
	font-family:'NHaasGroteskTXPro-75Bd';
}

#content h2.small {
	font-size:18px;
}

#content h3 {
	font-size:16px;
	line-height:24px;
	margin-bottom:0px;
}

#content p span {
	font-size:12px;
}

#content p a {
	color:#FFF;
	text-decoration:underline;
	line-height:20px;
	padding:2px;
	display:inline-block;
}

#content p a:hover {
	background-color:#FFF;
	color:#000;
	text-decoration:underline;
}

#content p a.big {
	color:#FFF;
	padding:0px;
	display:inline-block;
	font-family:"NHaasGroteskTxPro-75Bd";
	line-height:20px;
	text-decoration:none;
	border-bottom: 4px solid transparent;
}

#content p a.big:hover {
	background-color:transparent;
	color:#FFF;
	border-bottom: 4px solid #FFF;
}

#content .double {
	position:relative;
	float:left;
	width:50%;
}

#content .triple {
	position:relative;
	float:left;
	width:33.33%;
}

#images {
	width:100%;
	height:auto;
	position:relative;
	display:block;
}

#images img {
	width:100%;
	display:block;
}

#images p {
	width: auto;
	max-width: 100%;
	display: block;
	margin: 0px auto 40px auto;
	padding: 10px;
	text-align:center;
	font-size:14px;
	line-height:20px;
}

.svg {
	padding:40px;
	max-width:1000px;
	width:100%;
	margin:0 auto;
	display:block;
	-webkit-transition: opacity 1s linear, margin 0.5s ease-in-out;
	-moz-transition: opacity 1s linear, margin 0.5s ease-in-out;
	-o-transition: opacity 1s linear, margin 0.5s ease-in-out;
	transition: opacity 1s linear, margin 0.5s ease-in-out;
	
}

.svg.animate {
	opacity:0;
	margin-top:50px;
	margin-bottom:-50px;
}
.svg.animate.inview {
	opacity:1;
	margin-top:0px;
	margin-bottom:0px;
}

.svg svg{
	width:100%;
	height:auto;
}

.svg.full {
	max-width:100%;
	padding:0px;
}

.svg.full.with-padding {
	padding:40px;
}

.spacer {
	height:20vh;
	width:100%;
	display:block;
}

@media (max-width:1325px){
	footer li.seperator{
		display:block;
	}
	footer li:nth-child(2) {
		margin-right: 0px;
	}
	footer ul {
		width:625px;
		margin:0 auto;
		text-align:center;
	}
}

@media (max-width:1150px){
	#content {
		margin:110px 30px;
	}
}

@media (max-width:950px){
	#content {
		margin:0px;
		padding:120px 240px 120px 40px;
		max-width:none;
	}
}


@media (max-width:610px){
	footer {
		padding: 10px 10px 0px 10px;
	}
	footer ul {
		width:100%;
	}
	
	footer li {
		width:calc(50% - 10px);
	}
	
	footer li:nth-child(n+3) {
		width:calc(33.33% - 14px);
	}
	
	footer.min:hover li:nth-child(n+3) {
		height: 114px;
	}
	.menu-toggle {
		top:25px;
		left:10px;
	}
	#venezia-logo {
		top:10px;
		right:10px;
		width:100px;
	}
	#menu {
		left:10px;
		top:75px;
	}
	#content {
		margin:0px;
		padding:120px 10px;
		max-width:none;
	}
	.svg {
		padding:10px;
	}
	
	.svg.full {
		padding:0px;
	}
	
	.svg.full.with-padding {
		padding:10px;
	}
}
@media (max-width:470px){
	#content .double {
		margin-bottom:0px;
		width:100%;
		float:none;
	}
	#content .triple {
		margin-bottom:0px;
		width:100%;
		float:none;
	}
}
@media (max-width:420px){
	footer,
	footer.min {
		position:relative;
		background-color:#FFF;
	}
	
	footer ul {
		width:245px;
	}
	
	footer li {
		width:245px;
		margin-right:0px;
	}
	
	footer li:nth-child(n+3) {
		width:195px;
	}
	footer.min li,
	footer.min:hover li {
		height:154px;
	}
	
	footer.min li:nth-child(n+3),
	footer.min:hover li:nth-child(n+3) {
		height: 114px;
		overflow:hidden;
	}
	
	footer.min li .title {
		opacity:1;
	}
	footer.min li .line {
		background-color:#000;
	}
	footer.min li img {
		opacity:1;
	}
	
	#content {
		padding:120px 10px 0px 10px;
	}
}
