/* CSS Document */


@font-face {
	font-family: 'CFDin CondensedRegular';
	src: url('../fonts/CFDin CondensedRegular.eot');
	src: local('☺'), url('../fonts/CFDin CondensedRegular.woff') format('woff'), url('../fonts/CFDin CondensedRegular.ttf') format('truetype'), url('../fonts/CFDin CondensedRegular.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'CFDin CondensedBold';
	src: url('../fonts/CFDin CondensedBold.eot');
	src: local('☺'), url('../fonts/CFDin CondensedBold.woff') format('woff'), url('../fonts/CFDin CondensedBold.ttf') format('truetype'), url('../fonts/CFDin CondensedBold.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'CFAstyStd-Light';
	src: url('../fonts/CFAstyStd-Light.eot');
	src: local('☺'), url('../fonts/CFAstyStd-Light.woff') format('woff'), url('../fonts/CFAstyStd-Light.ttf') format('truetype'), url('../fonts/CFAstyStd-Light.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'CFAstyStd-Bold';
	src: url('../fonts/CFAstyStd-Bold.eot');
	src: local('☺'), url('../fonts/CFAstyStd-Bold.woff') format('woff'), url('../fonts/CFAstyStd-Bold.ttf') format('truetype'), url('../fonts/CFAstyStd-Bold.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'CFAstyStd-Book';
	src: url('../fonts/CFAstyStd-Book.eot');
	src: local('☺'), url('../fonts/CFAstyStd-Book.woff') format('woff'), url('../fonts/CFAstyStd-Book.ttf') format('truetype'), url('../fonts/CFAstyStd-Book.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

@font-face {
	font-family: 'CFAstyStd-Medium';
	src: url('../fonts/CFAstyStd-Medium.eot');
	src: local('☺'), url('../fonts/CFAstyStd-Medium.woff') format('woff'), url('../fonts/CFAstyStd-Medium.ttf') format('truetype'), url('../fonts/CFAstyStd-Medium.svg') format('svg');
	font-weight: normal;
	font-style: normal;
}

html, body {
	height: 100%;
	min-height:100%;
	-webkit-text-size-adjust:none;
	-webkit-font-smoothing: antialiased !important;
	background:#fff;
	min-height:600px;
	overflow:hidden;
}

img {
	border: 0px;
	margin: 0px;
	padding: 0px;
}

form {
	margin: 0px;
	padding: 0px;
}



body{
	margin: 0px;
	padding: 0px;
	font-family: 'CFAstyStd-Light';
	font-size: 16px;
	color: #000;

}

body.locked{
	overflow:hidden;
	height:100vh;
}

a {
	text-decoration: none;
	outline: none;
	font-family: 'CFAstyStd-Light';
	font-size: 16px;
	color: #000;
}


a{
	text-decoration:none;
}

b,strong{
	font-weight:700;
}


.clear {
	clear: both;
}

ul, li {
	margin: 0px;
	padding: 0px;
	list-style-type: none;
}


p{
	margin:0px;
	padding:0px;
}

h1, 
h2, 
h3, 
h4, 
h5, 
h6{
	margin: 0px;
	padding: 0px;
	font-weight: normal;
}

#wrapper {
	position: relative;
	width:100%;
	min-height:100%;
	padding: 0px;
	margin: 0 auto 0 auto;
	overflow:hidden;
}



* {
  -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    outline:none;
}

.mob,
.tabl{
	display:none !important;
}



/* //////////////////////////////////////////////// */


.page{
	position:relative;
	height:100vh;
	text-align:center;
}




.pages{
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100vh;
	z-index: 10;
}

.page{
	text-align:center;
	position:fixed;
	top:0px;
	left:0px;
	width:100%;
	height:100vh;
	z-index: 10;
	background:#fff;
	opacity:0;

	-webkit-transition: all 500ms; 
	   -moz-transition: all 500ms; 
	     -o-transition: all 500ms; 
	        transition: all 500ms; 
}

.page.active{
	opacity:1;
	z-index: 11;
}




.burger-menu{
	position:fixed;
	top:50px;
	right:-100px;
	display:block;
	width:50px;
	height:30px;
	z-index: 120;

	-webkit-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);

}



.burger-menu.show{
	right:40px;
}

.burger-menu span{
	position:absolute;
	top:50%;
	left:50%;
	margin:0pc;
	height:2px;
	width:100%;
	background:#a28f67;
	display:block;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);


	-webkit-transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);


	      
}

.burger-menu span:nth-child(1){
	margin:-8px 0 0 0;
}

.burger-menu span:nth-child(3){
	margin:8px 0 0 0;
}

.burger-menu span:nth-child(1),
.burger-menu span:nth-child(3){
	width:100%;
}

.burger-menu:hover span:nth-child(1),
.burger-menu:hover span:nth-child(3){
	width:30px;
}

.burger-menu.active span:nth-child(2){
	opacity:0;
}


.burger-menu.active span:nth-child(1){
	-ms-transform: translate(-50%, -50%) rotate(-45deg);
	-webkit-transform: translate(-50%, -50%) rotate(-45deg);
	transform: translate(-50%, -50%) rotate(-45deg);
	width:40px;
	margin:0px 0 0 0;
}

.burger-menu.active span:nth-child(3){
	-ms-transform: translate(-50%, -50%) rotate(45deg);
	-webkit-transform: translate(-50%, -50%) rotate(45deg);
	transform: translate(-50%, -50%) rotate(45deg);
	width:40px;
	margin:0px 0 0 0;
}






.main-logo{
	position:fixed;
	left:24px;
	top:-40px;
	background:#fff url("../images/logo-min.png") no-repeat center center;
	background-size:auto 38px;
	width: 78px;
	height: 78px;
	
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	
	z-index: 20;

	-webkit-transition: all 300ms; 
	   -moz-transition: all 300ms; 
	     -o-transition: all 300ms; 
	        transition: all 300ms; 

	
}

.main-logo:hover{
	opacity:0.8;
}

.main-logo.active{
	top:24px;
}




.lang-new{
	position:fixed;
	top:60px;
	right:130px;
	margin:0 auto 0 auto;
	z-index: 20;
}

.lang-new,
.lang-new a{
	
	color:#a89773;
	font-size:15px;
	font-family: 'CFAstyStd-Book';
	z-index: 30;
	letter-spacing:0px;
	text-align:center;
	
	-webkit-transition: all 300ms; 
	   -moz-transition: all 300ms; 
	     -o-transition: all 300ms; 
	        transition: all 300ms; 
}

.lang{
	position:fixed;
	top:50%;
	right:30px;
	margin:0 auto 0 auto;
	z-index: 20;
	-ms-transform: translate(-0%, -50%);
	-webkit-transform: translate(-0%, -50%);
	transform: translate(-0%, -50%);
}

.mob-lang{
	display:none;
}

.lang::after{
	content:"";
	position:absolute;
	top:50%;
	left:50%;
	-ms-transform: translate(-50%, -0%);
	-webkit-transform: translate(-50%, -0%);
	transform: translate(-50%, -0%);
	height:1px;
	width:15px;
	background:#a89773;
}


.lang a{
	display:block;
	color:#a89773;
	font-size:15px;
	font-family: 'CFAstyStd-Book';
	z-index: 30;
	letter-spacing:0px;
	text-align:center;
	position:relative;
	margin:170px auto 170px auto;
	
	-ms-transform:  rotate(-90deg);
	-webkit-transform:  rotate(-90deg);
	transform: rotate(-90deg);
	
	-webkit-transition: all 300ms; 
	   -moz-transition: all 300ms; 
	     -o-transition: all 300ms; 
	        transition: all 300ms; 
}



.lang a:after{
  border-bottom: 1px solid #a89773;
  bottom: 0px;
  content: "";
  display: block;
  margin: 0 auto;
  position: relative;
  transition: width 280ms ease-in-out;
  width: 0;
  opacity:0;
}

.lang a:hover:after{
  width: 100%;
  opacity:1;  
}


.nav{
	position:fixed;
	top:50%;
	left:30px;
	width:70px;
	margin:0 auto 0 auto;
	z-index: 20;
	-ms-transform: translate(-0%, -50%);
	-webkit-transform: translate(-0%, -50%);
	transform: translate(-0%, -50%);
}

.nav a{
	display:block;
	width:15px;
	color:rgba(168,151,115,0);
	font-size:15px;
	font-family: 'CFAstyStd-Book';
	height:17px;
	line-height:40px;
	z-index: 30;
	text-align:center;
	border-bottom:1px solid #a89773;
	margin:20px auto 20px auto;
	position:relative;
	
	-webkit-transition: width 300ms; 
	   -moz-transition: width 300ms; 
	     -o-transition: width 300ms; 
	        transition: width 300ms; 
}



.nav a:hover{
	width:40px;
	border:0px;
}

.nav a.active{
	width:70px;
	color:rgba(168,151,115,1);
	height:40px;
}



.nav a span{
	position:absolute;
	display:block;
	white-space:nowrap;
	font-size:13px;
	font-family: 'CFAstyStd-Book';
	left:0%;
	top:0px;
	opacity:0;
	height:17px;
	color:rgba(168,151,115,1);
}

.nav a.active span::before{
	content:"";
	position:absolute;
	bottom:0px;
	right:-20px;
	width:500px;;
	height:1px;
	background:#9f8e69;
}

.nav a:hover span,
.nav a.active span{
	opacity:1;
}

.nav a.active span{
	height:40px;
	left:90%;
}




.nav-next,
.nav-prev{
	width:51px;
	height:122px;	
	position:fixed;
	top:55%;
	left:40px;
	background:#a89773;
	display:block;
	z-index: 20;
	margin:130px 0 0 0;
	overflow:hidden;
	
	-webkit-transition: opacity 200ms; 
	   -moz-transition: opacity 200ms; 
	     -o-transition: opacity 200ms; 
	        transition: opacity 200ms; 
}

.nav-next span,
.nav-prev span{
	position:absolute;
	display:block;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:#a89773 url("../images/icon-nav-prev.png") no-repeat center center;
	background-size:contain;
}

.nav-next:hover span,
.nav-prev:hover span{
	-webkit-transition: all 700ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 700ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 700ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 700ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.nav-next span{
	background-image: url("../images/icon-nav-next.png");
}

.nav-next .s2{
	-ms-transform: translate(-0%, -100%);
	-webkit-transform: translate(-0%, -100%);
	transform: translate(-0%, -100%);
}


.nav-next:hover .s1{
	-ms-transform: translate(-0%, 100%);
	-webkit-transform: translate(-0%, 100%);
	transform: translate(-0%, 100%);
}

.nav-next:hover .s2{
	-ms-transform: translate(-0%, 0%);
	-webkit-transform: translate(-0%, 0%);
	transform: translate(-0%, 0%);
} 


.nav-prev span.s2{
	-ms-transform: translate(-0%, 100%);
	-webkit-transform: translate(-0%, 100%);
	transform: translate(-0%, 100%);
}


.nav-prev:hover .s1{
	-ms-transform: translate(-0%, -100%);
	-webkit-transform: translate(-0%, -100%);
	transform: translate(-0%, -100%);
}

.nav-prev:hover .s2{
	-ms-transform: translate(-0%, 0%);
	-webkit-transform: translate(-0%, 0%);
	transform: translate(-0%, 0%);
} 

.nav-next{
	margin:253px 0 0 0;
}


.nav-next:hover,
.nav-prev:hover{
	opacity:0.9;
} 

.menu{
	position:fixed;
	right:-400px;
	top:0px;
	width:400px;
	height:100%;
	z-index:119;
	background:#3f3f3f;

	-webkit-transition: all 900ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 900ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 900ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 900ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.menu.active{
	right:0px;
}

.menu .links{
	position:absolute;
	top:45%;
	left:0px;
	-ms-transform: translate(-0%, -50%);
	-webkit-transform: translate(-0%, -50%);
	transform: translate(-0%, -50%);
	width:100%;
}

.menu .links a{
	display:block;
	height:90px;
	line-height:90px;
	text-align:center;
	font-family: 'CFDin CondensedBold';
	font-size:18px;
	color:#999999;
	letter-spacing:2px;
	border-bottom:1px solid #4a4a4a;

	-webkit-transition: all 300ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 300ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 300ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 300ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.menu .links a:first-child{
	border-top:1px solid #4a4a4a;
}

.menu .links a:hover{
	background:#393939;
	color:#a28f67;
}



.menu .social{
	position:absolute;
	bottom:35px;
	left:0px;
	width:100%;
	font-size:0px;
	text-align:center;
}

.menu .social a{
	display:inline-block;
	vertical-align:middle;
	background: url("../images/icon-social-fb.png") no-repeat center center;
	background-size:contain;
	width: 21px;
	height: 21px;
	margin:0 8px;

	-webkit-transition: all 200ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 200ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 200ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 200ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.menu .social a:hover{
	opacity:0.6;
}

.menu .social a.yt{ background-image: url("../images/icon-social-yt.png");  }
.menu .social a.in{ background-image: url("../images/icon-social-in.png");  }
.menu .social a.tw{ background-image: url("../images/icon-social-tw.png");  }
.menu .social a.sp{ background-image: url("../images/icon-social-sp.png");  }
.menu .social a.tt{ background-image: url("../images/icon-social-tt.png");  }
.menu .social a.ln{ background-image: url("../images/icon-social-linkedin.png");  }

.preloader{
	position:fixed;
	z-index: 1000;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:#fff;
}

.preloader .bg{
	position:absolute;
	top:0px;
	left:0px;
	width:0%;
	height:100%;
	background:#ededed;
	z-index: 10;

	-webkit-transition: all 1500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 1500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 1500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 1500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.preloader .bg.active{
	width:100%;
}

.preloader .logo{
	position:absolute;
	left:50%;
	top:50%;
	background: url("../images/intro-logo-icon.png") no-repeat center center;
	background-size:contain;
	width: 709px;
	width:699px;
	height: 190px;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 20;
	opacity:0;
	overflow:hidden;

	-webkit-transition: opacity 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: opacity 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: opacity 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: opacity 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.preloader .logo.active{
	opacity:1;	
}

.preloader .logo .name{
	position:absolute;
	left:0%;
	bottom:0px;
	background: url("../images/intro-logo-name.png") no-repeat left bottom;
	background-size:auto 190px;
	width: 40%;
	height: 0%;

	-webkit-transition: height 3000ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	   -moz-transition: height 3000ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	     -o-transition: height 3000ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	        transition: height 3000ms cubic-bezier(0.165, 0.840, 0.440, 1.000);

	-webkit-transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	        transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000);
	

	-webkit-transition-delay: 1200ms; 
	   -moz-transition-delay: 1200ms; 
	     -o-transition-delay: 1200ms; 
	        transition-delay: 1200ms;


}

.preloader .logo .name.n2{
	left:auto;
	right:0px;
	width:60%;
	background-position:right top;
	bottom:auto;
	top:0px;
}

.preloader .logo.active .name{
	height:100%;
}






#intro .bg,
#intro .bg-grey{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:#fff;/* url("../images/bg-intro.jpg") no-repeat center center;
	background-size:auto 100%;*/
	z-index: 10;
}

#intro .bg-grey{
	z-index: 9;
	background:#ededed;
}

#intro .logo{
	position:absolute;
	left:50%;
	top:50%;
	background: url("../images/intro-logo.png") no-repeat center center;
	background-size:contain;
	width: 709px;
	height: 190px;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 20;
}

.border-line{
	position:absolute;
	top:130px;
	left:130px;
	height:1px;
	background:#fff;
	width:0px;
	z-index: 11;

	-webkit-transition: width 2000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: width 2000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: width 2000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: width 2000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.border-line.l3{
	left:auto;
	right:130px;
}

.border-line.active{
	width:calc(100% - 260px);
}

.border-line.l2,
.border-line.l4{
	width:1px;
	height:0px;

	-webkit-transition: height 2000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: height 2000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: height 2000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: height 2000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.border-line.active.l2{
	top:auto;
	bottom:130px;
}

.border-line.active.l2,
.border-line.active.l4{
	height:calc(100% - 260px);
}

.border-line.l3{
	top:auto;
	bottom:130px;
}

.border-line.l4{
	left:auto;
	right:130px;
}

#tour .border-line{
	background:#5e5e5e;
}

#music .border-line{
	background:#5d5d5d;
}



#intro .scroll-line,
.preloader .scroll-line{
	position:absolute;
	top:0px;
	left:50%;
	width:1px;
	background:#a28f67;
	height:0px;
	z-index: 11;

	-webkit-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.preloader .scroll-line{
	-webkit-transition: all 2000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 2000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 2000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 2000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}


#intro .scroll-line.active,
.preloader .scroll-line.active{
	height:calc(30%);
}


#intro .scroll-line.s2,
.preloader .scroll-line.s2{
	top:auto;
	bottom:0px;
}

#intro .scroll-down{
	position:absolute;
	left:50%;
	bottom:120px;
	width: 70px;
	height: 70px;
	margin:0 0 0 -42px;
	display:none;
	
	z-index: 12;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	letter-spacing:2px;
	opacity:0;

	-webkit-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

#intro .scroll-down.active{
	bottom:95px;
	opacity:1;
}


#intro .scroll-down .scroll-arrow{
	position:absolute;
	left:50%;
	bottom:10px;
	background: url("../images/icon-scroll-arrow.png") no-repeat center center;
	background-size:contain;
	width: 14px;
	height: 7px;
	margin:0 0 0 -7px;

	animation: bounce 2s infinite;
}


@keyframes bounce {
  0%, 20%, 50%, 80%, 100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(7px);
  }
}



#biography .bg{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	z-index: 10;
	background:#fff url("../images/bg-bio.jpg") no-repeat center center;
}


#biography .holder{
	position:absolute;
	top:50%;
	left:130px;
	width:calc(100% - 260px);
	-ms-transform: translate(-0%, -50%);
	-webkit-transform: translate(-0%, -50%);
	transform: translate(-0%, -50%);
	z-index: 20;
	padding:0 170px 0 190px;
	text-align:center;
	font-size:0px;
}

#biography .holder .photo{
	display:inline-block;
	vertical-align:top;
	background: url("../images/sakis-biography.jpg") no-repeat center center;
	background-size:cover;
	width: 364px;
	height: 486px;
}

#biography .holder .content{
	display:inline-block;
	vertical-align:top;
	padding:0 0 0 60px;
	width:calc(100% - 364px);
	max-width:950px;
	text-align:left;
}




#biography .line{
	position:absolute;
	top:50%;
	left:0px;
	width:130px;
	background:#a28f67;
	height:1px;
	z-index: 11;


	-webkit-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}


#biography .line.l4{
	left:auto;
	right:0px;
}




#biography .title{
	font-family: 'CFAstyStd-Light';
	font-size:28px;
	color:#3f3f3f;
	letter-spacing:14px;
	padding:0 0 60px 0;
	position:relative;
}

#biography .text{
	font-family: 'CFAstyStd-Book';
	font-size:13px;
	color:#3f3f3f;
	line-height:29px;
	padding:0 200px 0px 0;
	position:relative;
	height: 380px;
}

#biography .text p{
 padding:0 0 20px 0;
}

#biography .nicescroll-rails{
	background:#eeeeee;
}


 

#news .bg{
	position:absolute;
	top:130px;
	left:130px;
	width:calc(100% - 260px);
	height:calc(100% - 260px);
	z-index: 10;
	
	top:0px;
	left:0px;
	width:100%;
	height:100%;
}

#news .holder{
	position:absolute;
	top:50%;
	left:50%;
	width:100%;
	max-width:1208px;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 20;
}

#news .title{
	font-family: 'CFAstyStd-Light';
	font-size:28px;
	color:#3f3f3f;
	letter-spacing:14px;
	padding:0 0 0px 0;
	position:relative;
}

#news .title span{
	color:#a28f67;
}

#news .items{
	height:400px;
	margin:0 auto 0 auto;
	width:100%;
}

#news .items .item{
	position:relative;
	height:392px;
	width:392px;
	background:#333333;
	display:inline-block;
	vertical-align:middle;
	margin:50px 4px 50px 4px;
	
	transition: .3s cubic-bezier(.25,.8,.5,1);

	-webkit-transition: all 300ms cubic-bezier(.25,.8,.5,1); 
	   -moz-transition: all 300ms cubic-bezier(.25,.8,.5,1); 
	     -o-transition: all 300ms cubic-bezier(.25,.8,.5,1); 
	        transition: all 300ms cubic-bezier(.25,.8,.5,1); 
}

#news .items .item:hover{
	

	-webkit-box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.7);
	-moz-box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.7);
	box-shadow: 0px 5px 8px 0px rgba(0,0,0,0.7);

}




#news .items .item .item-bg{
	width:100%;
	height:100%;
	background-repeat: no-repeat;
	background-position:center center;
	background-size:cover;
	position:absolute;
	left:0px;
	top:0px;
	z-index: 1;

	-webkit-transition: all 1200ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 1200ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 1200ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 1200ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
    

}


#news .items .item .item-content{
	width:100%;
	height:100%;
	position:absolute;
	left:0px;
	top:130px;
	padding:0px 50px 0 50px;
	text-align:center;
	z-index: 5;

	-webkit-transition: all 1200ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 1200ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 1200ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 1200ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

.item-title span{
	font-size:14px;
	color:#a28f67;
	font-family: 'CFAstyStd-Bold';
	display:block;
	padding:0 0 20px 0;
}




#news .items .item .item-content .item-title{
	padding:0px 0 0px 0;
	font-size:27px;
	color:#fff;
	line-height:30px;


	-webkit-transition: opacity 600ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	   -moz-transition: opacity 600ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	     -o-transition: opacity 600ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	        transition: opacity 600ms cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */

	-webkit-transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	        transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */
	
	-webkit-transition-delay: 1000ms; 
	   -moz-transition-delay: 1000ms; 
	     -o-transition-delay: 1000ms; 
	        transition-delay: 1000ms;
}



#news .items .item .item-more-holder{
	
	position:absolute;
	bottom:48px;
	left:50%;
	width: 260px;
	-ms-transform: translate(-50%, -0%);
	-webkit-transform: translate(-50%, -0%);
	transform: translate(-50%, -0%);
	z-index: 5;
	
	-webkit-transition: opacity 600ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	   -moz-transition: opacity 600ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	     -o-transition: opacity 600ms cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	        transition: opacity 600ms cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */

	-webkit-transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); 
	        transition-timing-function: cubic-bezier(0.165, 0.840, 0.440, 1.000); /* easeOutQuart */

	-webkit-transition-delay: 1300ms; 
	   -moz-transition-delay: 1300ms; 
	     -o-transition-delay: 1300ms; 
	        transition-delay: 1300ms;
}



#news .items .item .item-more{
	  display: block;
	  position: relative;
	  padding: 15px 60px;
	  border: 0;
	  background: transparent;
	  color: #a28f67;
	  font-size:12px;
	  letter-spacing: normal;
	  outline: none;
	  cursor: pointer;
	  font-weight: bold;
	  
}


#news .items .item .item-more svg {
    height: 100%;
    left: 0;
    position: absolute;
    top: 0; 
    width: 100%; 
}
  
#news .items .item .item-more rect {
    fill: none;
    stroke: #a28f67;
    stroke-width: 2;
    stroke-dasharray: 422, 0;
    transition: all 0.35s linear;
}

#news .items .item .item-more:hover rect{
    stroke-width: 5;
    stroke-dasharray: 15, 450;
    stroke-dashoffset: 48;
    transition: all 1.35s cubic-bezier(0.19, 1, 0.22, 1);
}






#news .pagination{
	position:absolute;
	bottom:-90px;
	left:50%;
	z-index: 10;
	font-size:22px;
	color:#a28f67;
	font-family: 'CFAstyStd-Light';
	width:100px;
	text-align:center;
	margin:0 0 0 -50px;
	padding:0 0 0px 0;
	position:relative;
}
/*
#news .pagination::after{
	content:"";
	position:absolute;
	bottom:0px;
	left:50%;
	margin:0 0 0 -8px;
	width:16px;
	height:6px;
	background:#a28f67;
}
*/
#news .pagination .current{
	font-size:22px;
	font-family: 'CFAstyStd-Book';
	margin:0 5px 0 0;
}

#news .pagination .total{
	font-size:22px;
	font-family: 'CFAstyStd-Book';
	margin:0  0 0 5px;
}


#news .scroll-line,
#biography .scroll-line{
	position:absolute;
	top:0px;
	left:50%;
	width:1px;
	background:#a28f67;
	height:0px;
	z-index: 11;

	-webkit-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

#news .scroll-line.s2,
#biography .scroll-line.s2{
	top:auto;
	bottom:0px;
}

#news .scroll-line.active{
	height:calc(50% - 280px);
}
#biography .scroll-line.active{
	height:calc(50% - 380px);
}

#news .scroll-line.s2.active,
#biography .scroll-line.s2.active{
	height:calc(50% - 380px);
}

#tour .bg{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:#363636;
	background:#000 url("../images/bg-tour-dates.jpg") no-repeat center center;
	background-size:cover;
	z-index: 10;
}
/*
#tour canvas{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:#363636 url("../images/bg-tour.jpg") no-repeat center center;
	background-size:cover;
	z-index: 100;
}
*/
#tour .scroll-line{
	position:absolute;
	top:0px;
	left:50%;
	width:1px;
	background:#a28f67;
	height:0px;
	z-index: 11;

	-webkit-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

#tour .scroll-line.s2{
	top:auto;
	bottom:0px;
	height:0px;
}


#tour .scroll-line.active{
	height:150px;
}

#tour .scroll-line.s2.active{
	height:180px;
}


#tour .holder{
	position:absolute;
	top:180px;
	left:50%;
	-ms-transform: translate(-50%, -0%);
	-webkit-transform: translate(-50%, -0%);
	transform: translate(-50%, -0%);
	z-index: 20;
	width:760px; 
}

#tour .title{
	font-family: 'CFAstyStd-Light';
	font-size:35px;
	color:#fff;
	letter-spacing:17px;
	padding:0 0 60px 0;
}

#tour .title span{
	color:#a28f67;
}

#tour .item-holder{
	max-height:calc(100vh - 500px);
	overflow:auto;
	padding-right:30px;
}

#tour .items{
	margin:0 auto 0 auto;
}

#tour .items .item{
	margin:0 0 15px 0;
	position:relative;
	opacity:0.5;
	background:rgba(70,70,70,0.5);
	padding:15px 0 15px 0;
}

#tour .items .item::after{
	content:"";
	position:absolute;
	z-index: 100;
	left:0px;
	top:0px;
	width:100%;
	height:100%;	
}

#tour .items .item.active{
	opacity:1;	
	background:#464646;
}

#tour .items .item.active::after{
	display:none;
}

#tour .items .item .item-date{
	display:inline-block;
	vertical-align:middle;
	font-size:18px;
	color:#fff;
	font-family: 'CFDin CondensedRegular';
	width:200px;
	padding:0 0 0 50px;
	text-align:left;
	letter-spacing:2px;
	opacity:0.25;
}

#tour .items .item.active .item-date{
	color:#a28f67;
}

#tour .items .item .item-title{
	display:inline-block;
	vertical-align:middle;
	font-size:18px;
	color:#fff;
	font-family: 'CFDin CondensedRegular';
	width:270px;
	text-align:left;
	letter-spacing:2px;
	opacity:0.25;
}

#tour .items .item .item-more{
	display:inline-block;
	vertical-align:middle;
	border:1px solid #a28f67;
	width:170px;
	height:32px;
	line-height:34px;
	text-align:center;
	color:#fff;
	font-family: 'CFDin CondensedRegular';
	font-size:18px;
	letter-spacing:2px;
	opacity:0.25;

	-webkit-transition: all 300ms; 
	   -moz-transition: all 300ms; 
	     -o-transition: all 300ms; 
	        transition: all 300ms; 
}

#tour .items .item.active .item-more{
	background:#a28f67;
	color:#313131
}

#tour .items .item .item-more:hover{
	background:#af9a6e;
}

#tour .items .item.active .item-more:hover{
	opacity:0.7;
}

#tour .items .item.active .item-date,
#tour .items .item.active .item-title,
#tour .items .item.active .item-more{
	opacity:1;
}



#tour .items .item .item-more.phone,
#tour .items .item .item-more.phone:hover{
	border:0px;
	color:#a28f67;
	background:none;
}

#tour .items .item .item-more.empty{
	border:0px;
	opacity:0;
}

#gallery .bg{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:#fff;
	background-size:cover;
	z-index: 10;
}

#gallery .logo{
	position:absolute;
	left:50%;
	top:50%;
	background: url("../images/logo-gallery.png") no-repeat center center;
	background-size:contain;
	width: 546px;
	height: 800px;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 12;
}


#gallery .line{
	position:absolute;
	top:0px;
	left:50%;
	width:1px;
	background:#a28f67;
	height:calc(50% - 250px - 80px);
	height:0px;
	z-index: 12;


	-webkit-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

#gallery .line.l2,
#gallery .line.l4{
	height:1px;
	width:calc(50% - 500px - 150px);
	width:0px;
	top:50%;
	left:auto;
	right:140px;

}

#gallery .line.l4{
	left:140px;
	right:auto;
}


#gallery .line.l3{
	top:auto;
	bottom:0px;
}

#gallery .line.active{
	height:calc(50% - 250px - 80px);
}

#gallery .line.active.l2,
#gallery .line.active.l4{
	height:1px;
	width:calc(50% - 500px - 150px);
}

#gallery .show-gallery-holder{
	position:absolute;
	left:50%;
	top:50%;
	width: 900px;
	height: 500px;
	margin:-250px 0 0 -450px;
	z-index: 15;
}

#gallery .show-gallery{
	display:block;
	position:absolute;
	left:0%;
	top:0%;
	width: 50%;
	height: 100%;
	margin:0px;
	
	background:  url("../images/bt-gallery-photos.jpg") no-repeat center top;
	background-size:cover;

	-webkit-transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

#gallery .show-gallery.videos{
	left:auto;
	right:-1px;
	background-image:  url("../images/bt-gallery-videos.jpg?v=2");
}


#gallery .show-gallery:hover{
	opacity:0.95;
}


#gallery .show-gallery .show-title{
	font-family: 'CFAstyStd-Light';
	font-size:30px;
	color:#fff;
	letter-spacing:17px;
	padding:120px 0 40px 0;
	padding:130px 0 40px 0;
	position:relative;
}

#gallery .show-gallery .show-title span{
	color:#a28f67;
	color:#bda87d;
	display:block;
	padding:5px 0 0 0;
}


#gallery .show-gallery .total-pics{
	font-size:12px;
	color:#fff;
	font-family: 'CFAstyStd-Bold';
	letter-spacing: 2px;
	position:relative;
}

#gallery .show-gallery .cross-holder{
	position:absolute;
	left:50%;
	top:290px;
	width: 100px;
	height: 100px;
	margin:0 0 0 -50px;
}

#gallery .show-gallery .cross{
	position:absolute;
	left:0%;
	top:0px;
	width: 100px;
	height: 100px;
	margin:0px;

	-webkit-transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 500ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

#gallery .show-gallery:hover .cross{
	-ms-transform: scale(1.3);
	-webkit-transform: scale(1.3);
	transform: scale(1.3);
}

#gallery .show-gallery .cross span{
	position:absolute;
	left:0px;
	top:50%;
	background:#fff;
	width: 100%;
	height: 1px;
}

#gallery .show-gallery .cross span:nth-child(2){
	-ms-transform: rotate(90deg);
	-webkit-transform: rotate(90deg);
	transform: rotate(90deg);
}



#gallery .corner{
	position:absolute;
	left:-150px;
	bottom:-35px;
	width: 0; 
	height: 0; 
	border-left: 230px solid transparent;
	border-right: 230px solid transparent;
	border-bottom: 230px solid #aa9975;
	z-index: 12;

	-ms-transform: rotate(-135deg);
	-webkit-transform: rotate(-135deg);
	transform: rotate(-135deg);

	 transform-origin: center center;
}


#gallery .arrow{
	position: absolute;
    left: 50%;
    top: 50%;
    margin: -390px 0 0 359px;
    width: 0;
    height: 0;
    border-left: 50px solid transparent;
    border-right: 50px solid transparent;
    border-bottom: 50px solid #a28f67;
    z-index: 12;
    -ms-transform: rotate(-135deg);
    -webkit-transform: rotate(-135deg);
    transform: rotate(-135deg);
    transform-origin: center center;
}


#gallery .arrow.ar2{
	border-left: 140px solid transparent;
    border-right: 140px solid transparent;
    border-bottom: 140px solid #a28f67;
    -ms-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    margin: -368px 0 0 470px;
}





#gallery .box{
	position: absolute;
    left:50%;
    top:50%;
    width: 1400px;
    height: 350px;
    z-index: 11;
    background:#f7f7f7;
	
	-ms-transform: skew(50deg, 0deg);
    -webkit-transform: skew(50deg, 0deg);
    transform: skew(50deg, 0deg);
    
    margin: 313px 0 0 -776px;
}


#gallery .box.b2{
    width: 1100px;
    height: 860px;
	margin: -550px 0 0 -90px;
}

	
#music .bg{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:#363636; /*url("../images/bg-music.jpg") no-repeat center center;*/
	background-size:cover;
	z-index: 10;
}


#music .scroll-line{
	position:absolute;
	top:0px;
	left:50%;
	width:1px;
	background:#a28f67;
	height:0px;
	z-index: 11;

	-webkit-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);
}

#music .scroll-line.s2{
	top:auto;
	bottom:0px;
}

#music .scroll-line.active{
	height:150px;
}

#music .scroll-line.active.s2{
	height:180px;
}

#music .holder{
	position:absolute;
	top:180px;
	left:40px;
	width:calc(100% - 80px);
	z-index: 20;
	/*
	-ms-transform: translate(-0%, -50%);
	-webkit-transform: translate(-0%, -50%);
	transform: translate(-0%, -50%);
	top:50%;
	*/
}

#music .title{
	font-family: 'CFAstyStd-Light';
	font-size:20px;
	color:#fff;
	letter-spacing:4px;
	padding:0 0 100px 0;
	position:relative;
}

#music .title span{
	color:#a28f67;
}

#music .title::after{
	content:"";
	position:absolute;
	bottom:20px;
	left:50%;
	width:1px;
	background:#a28f67;
	height:60px;
	z-index: 11;
}



#music .text{
	font-family: 'CFAstyStd-Light';
	font-size:13px;
	color:#fff;
	padding:0 0 20px 0;
	line-height:24px;
	letter-spacing:2px;
	max-width:640px;
	margin:0 auto 0 auto;
	height:10vh;
}

#music .row{
	width:630px;
	font-size:0px;
	margin:0 auto 0 auto;
	padding:0 0 0 60px;
}

#music .row .col{
	
}

#music .row .col.first{
	width:270px;
	padding:0 20px 0  0;
	display:inline-block;
	vertical-align:top;
	text-align:left;
}

#music .row .col.last{
	width:300px;
	display:inline-block;
	vertical-align:top;
	height:370px;
	height:320px;
	background: rgba(255,255,255,0.1);
}


#music .row .col.first .lnk{
	display:inline-block;
	vertical-align:middle;
	border:1px solid #7a7a7a;
	width:250px;
	height:40px;
	line-height:40px;
	text-align:left;
	padding:0 0 0 20px;
	color:#fff;
	font-family: 'CFAstyStd-Book';
	font-size:11px;
	letter-spacing:2px;
	margin:0 0 10px 0;
	position:relative;

	-webkit-transition: all 300ms; 
	   -moz-transition: all 300ms; 
	     -o-transition: all 300ms; 
	        transition: all 300ms; 
}

#music .row .col.first .lnk:hover,
#music .row .col.first .lnk.active{
	background:#a28f67;
	color:#fff;
	border-color:#a28f67;
}

#music .row .col.first .lnk::after{
	content:"";
	position:absolute;
	right:20px;
	top:50%;
	background: url("../images/icon-lnk-arrow.svg") no-repeat center center;
	background-size:contain;
	width: 22px;
	height: 12px;
	-ms-transform: translate(-0%, -50%);
	-webkit-transform: translate(-0%, -50%);
	transform: translate(-0%, -50%);
	opacity:0.5;
	-webkit-transition: all 300ms; 
	   -moz-transition: all 300ms; 
	     -o-transition: all 300ms; 
	        transition: all 300ms; 
}

#music .row .col.first .lnk:hover::after,
#music .row .col.first .lnk.active::after{
	opacity:1;
}

#music .row .col.first .buy{
	height:148px;
	position:relative;
}

#music .row .col.first .stream{
	position:relative;
}

#music .row .col.first .stream-title{
	font-size:15px;
	color:#9f8e69;
	letter-spacing:1px;
	font-family: 'CFAstyStd-Bold';
	padding:0 0 15px 5px;
}



#newsletter .bg{
	position:absolute;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:#f7f7f7; /*url("../images/bg-newsletter.jpg") no-repeat center center;*/
	background-size:cover;
	z-index: 10;

}




#newsletter .scroll-line{
	position:absolute;
	top:0px;
	left:50%;
	width:1px;
	background:#a28f67;
	height:0px;
	z-index: 11;

	-webkit-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition: all 1000ms cubic-bezier(0.770, 0.000, 0.175, 1.000); 

	-webkit-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	   -moz-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	     -o-transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000); 
	        transition-timing-function: cubic-bezier(0.770, 0.000, 0.175, 1.000);

}

#newsletter .scroll-line.active{
	height:150px;
}

#newsletter .holder{
	position:absolute;
	top:180px;
	left:40px;
	width:calc(100% - 80px);
	z-index: 20;
}

#newsletter .title{ 
	font-family: 'CFAstyStd-Medium';
	font-family: 'CFAstyStd-Book';
	font-size:24px;
	color:#a28f67;
	letter-spacing:4px;
	padding:0 0 100px 0;
	position:relative;
}


#newsletter .title::after{
	content:"";
	position:absolute;
	bottom:20px;
	left:50%;
	width:1px;
	background:#a28f67;
	height:60px;
	z-index: 11;
}
/*
#newsletter .title::before{
	content:"";
	position:absolute;
	left:50%;
	bottom:16px;
	background: url("../images/icon-title-arrow2.png") no-repeat center center;
	background-size:contain;
	width: 7px;
	height: 7px;
	margin:0 0 0 -3px;
}
*/
#newsletter .signature{
	position:absolute;
	left:50%;
	bottom:160px;
	background: url("../images/img-signature.png") no-repeat center center;
	background-size:contain;
	width: 1049px;
	height: 90px;
	margin:0 0 0 -525px;
	z-index: 20;
}

#newsletter .signature .signature-inner{
	position:absolute;
	left:0%;
	top:0px;
	background: url("../images/img-signature2.png") no-repeat center center;
	background-size:contain;
	width: 100%;
	height: 100%;
}


#newsletter .text{
	font-family: 'CFAstyStd-Book';
	font-size:13px;
	color:#000000;
	line-height:24px;
	letter-spacing:2px;
	max-width:640px;
	margin:0 auto 0 auto;
	padding:50px 0 35px 0;
	position:relative;
}

#newsletter .form{
	font-size:0px;
	position:relative;
}

#newsletter .terms{
	font-family: 'CFAstyStd-Book';
	font-size:12px;
	color:#000000;
	line-height:24px;
	letter-spacing:2px;
	max-width:640px;
	margin:0 auto 0 auto;
	padding:0 0 35px 0;
}

#newsletter  .terms a.terms-lnk{
	color:#000000;
	line-height:24px;
	letter-spacing:2px;
	font-family: 'CFAstyStd-Book';
	font-size:12px;
	text-decoration:none;
}

#newsletter  .terms a.checkbox{
	display:inline-block;
	vertical-align:middle;
	border: 1px solid #818181;
	width:16px;
	height:16px;
	margin: 0 1px 2px 0;
	position:relative;
}

#newsletter  .terms a.checkbox.has-error{
	border-color:#ff0000;
}

#newsletter  .terms a.checkbox.active::after{
	content:"";
	width:8px;
	height:8px;
	position:absolute;
	top:50%;
	left:50%;
	margin:-4px 0 0 -4px;
	background:#818181;
}

#newsletter .text .terms a.terms-lnk::before{
	content:"";
	bottom:1px;
	left:0px;
	width:100%;
	height:1px;
	background:#000;
}

#newsletter .form .form-message{
	position:absolute;
	bottom:-40px;
	left:50%;
	margin:0 0 0 -150px;
	width:300px;
	font-family: 'CFAstyStd-Book';
    font-size: 13px;
    color: #000000;
    line-height: 24px;
    letter-spacing: 2px;
}

#newsletter .form .frm-email{
	display:inline-block;
	vertical-align:top;
	width:280px;
	height:36px;
	line-height:36px;
	border:1px solid #818181;
	background:none;
	padding:0 0 0 10px;
	font-size:14px;
	letter-spacing:1px;
	color:#333333;
	font-family: 'CFAstyStd-Book';
	border-right:0px;
}

#newsletter .form .frm-email.has-error{
	border-color:#ff0000 !important;
}


#newsletter .form .submit{
	display:inline-block;
	vertical-align:middle;
	border:1px solid #a28f67;
	width:150px;
	height:36px;
	line-height:36px;
	text-align:center;
	color:#a28f67;
	font-family: 'CFAstyStd-Medium';
	font-size:14px;
	letter-spacing:1px;
	margin:0 0 0 0px;

	-webkit-transition: all 300ms; 
	   -moz-transition: all 300ms; 
	     -o-transition: all 300ms; 
	        transition: all 300ms; 
}

#newsletter .form .submit:hover{
	background:#a28f67;
	color:#fff;
}






#newsletter .footer{
	position:absolute;
	bottom:0px;
	left:0px;
	width:100%;
	height:50px;
	background:#fff;
	z-index: 12;
	line-height:50px;
	text-align:left;
	color:#3a3a3a;
	font-family: 'CFAstyStd-Medium';
	font-size:10px;
	padding:0 0 0 60px;
	letter-spacing:2px;
}

#newsletter .footer a{
	font-size: inherit;
	font-family: inherit;
	text-decoration: underline;
}


#newsletter .footer .back-to-top{
	position:absolute;
	right:35px;
	top:-30px;
	background: url("../images/img-back-to-top.png") no-repeat center center;
	background-size:contain;
	width: 60px;
	height: 60px;
	display:block;
}

.lightbox{
	position:fixed;
	z-index: 1000;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:#fff url("../images/bg-bio.jpg") no-repeat center center; 
	display:none;
}

.lightbox#gallery-detail,
.lightbox#video-gallery-detail{
	background-image: url("../images/bg-lightbox-gallery.png");
	background-size:cover;
}

.lightbox#video-gallery-detail{
	background-image: url("../images/bg-video-gallery-lightbox.jpg");
}

.lightbox .close{
	position:absolute;
	right:30px;
	top:30px;
	background: url("../images/icon-close.png") no-repeat center top;
	background-size:cover;
	width: 60px;
	height: 60px;
	z-index: 1020;
	border:1px solid #a28f67;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: background-color 300ms, border-color 300ms; 
	   -moz-transition: background-color 300ms, border-color 300ms ; 
	     -o-transition: background-color 300ms, border-color 300ms; 
	        transition: background-color 300ms, border-color 300ms; 
}

.lightbox .close:hover{
	background-position:center bottom;
	background-color:#a28f67;
}

.lightbox#gallery-detail .close,
.lightbox#video-gallery-detail .close{
	background-color: #fff;
	border-color:#fff;
}

.lightbox#gallery-detail .close:hover,
.lightbox#video-gallery-detail .close:hover{
	background-position:center bottom;
	background-color:#a28f67;
	border-color:#a28f67;
}

.lightbox .content{
	position:absolute;
	left:50%;
	top:50%;
	width: 1460px;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 10;
	font-size:0px;
}

.lightbox .content .col{
	display:inline-block;
	vertical-align:middle;
	font-size:13px;
}

.lightbox .content .image-hold{
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
	width: 650px;
	height: 370px;
	position:relative;
	display:block;
	-webkit-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.25);
	-moz-box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.25);
	box-shadow: 0px 10px 20px 0px rgba(0,0,0,0.25);
}

.lightbox .content .image-hold .play{
	position:absolute;
	left:0%;
	top:0%;
	background:rgba(0,0,0,0.3) url("../images/icon-play.png") no-repeat center center;
	background-size:89px 89px;
	width: 100%;
	height: 100%;
}

.lightbox .content .image-hold.active .play{
	display:none;
}

.lightbox .content .col.last{
	
	width: 720px;
	position:relative;
	padding:45px 60px 0 60px;
}


.lightbox .content .col.last .pop-title{
	font-family: 'CFAstyStd-Light';
	font-size:28px;
	color:#9c8e6d;
	letter-spacing:6px;
	padding:0 0 30px 0;
}

.lightbox .content .col.last .pop-title span{
	font-family: 'CFAstyStd-Book';
	font-size:18px;
	color:#000000;
	letter-spacing:3px;
	display:block;
	padding:20px 0 0 0
}




.lightbox .content .col.last .pop-text{
	font-family: 'CFAstyStd-Book';
	font-size:13px;
	color:#000;
	padding:0 20px 0px 0;
	line-height:29px;
	max-height:300px;
	overflow:auto;
	margin:0 0 50px 0;
	opacity:0;
}


.lightbox .content .col.last .pop-text a{
	font-family: 'CFAstyStd-Book';
	font-size:13px;
	color:#000;
	text-decoration:underline;
}

    
    

.lightbox .content .col.last .pop-text p{
	padding:0 0 15px 0;
}


.lightbox .content .col.last .pop-more{
	display:block;
	border:1px solid #a28f67;
	width:250px;
	height:50px;
	line-height:50px;
	text-align:center;
	margin:0 auto 0 auto;
	color:#a28f67;
	font-family: 'CFAstyStd-Medium';
	font-size:14px;
	letter-spacing:2px;

	-webkit-transition: all 300ms; 
	   -moz-transition: all 300ms; 
	     -o-transition: all 300ms; 
	        transition: all 300ms; 
}


.lightbox .content .col.last .pop-more:hover{
	background:#a28f67;
	color:#fff;
}


.lightbox .line{
	position:absolute;
	top:0px;
	left:50%;
	width:1px;
	background:#a28f67;
	height:calc(50% - 330px);
	z-index: 11;
}



.lightbox .line.l2,
.lightbox .line.l4{
	height:1px;
	width:calc(50% - 850px);
	top:50%;
	left:auto;
	right:60px;
}

.lightbox .line.l4{
	left:60px;
	right:auto;
}


.lightbox#gallery-detail .line.l2,
.lightbox#video-gallery-detail .line.l2{
	right:0px;
	width:calc(50% - 650px);
}

.lightbox#gallery-detail .line.l4,
.lightbox#video-gallery-detail .line.l4{
	left:0px;
	width:calc(50% - 730px);
}


.lightbox .line.l3{
	top:auto;
	bottom:0px;
}


.lightbox .box{
	position:absolute;
	width:30px;
	height:30px;
	left:50%;
	top:50%;
	background:#a28f67;
	z-index: 12;
	margin:-350px 0 0 530px;
}

.lightbox .box.b2{
	margin:170px 0 0 710px;
	width:95px;
}

.lightbox .box.b3{
	margin:390px 0 0 -160px;
}

.lightbox .gallery-list,
.lightbox .video-gallery-list{
	position:absolute;
	top:130px;
	left:50%;
	width:100%;
	-ms-transform: translate(-50%, -0%);
	-webkit-transform: translate(-50%, -0%);
	transform: translate(-50%, -0%);
	height:calc(100% - 130px);
	overflow:auto;
	text-align:center;
	max-width:960px;
	padding-bottom:100px;
}

.lightbox .video-gallery-list{
	max-width:1170px;
	padding-right:50px;
}


.lightbox .gallery-list .gallery-title,
.lightbox .video-gallery-list .gallery-title{
	font-family: 'CFAstyStd-Light';
	font-size:44px;
	color:#3f3f3f;
	letter-spacing:14px;
	padding:0 0 60px 0;
}

.lightbox .gallery-list .gallery-title span,
.lightbox .video-gallery-list .gallery-title span{
	color:#a28f67;
	display:block;
	padding:5px 0 0 0;
}


.lightbox .total-pics{
	position:absolute;
	left:50%;
	top:50%;
	margin:-25px 0 0 -720px;
	color:#a28f67;
	font-size:18px;
	font-family: 'CFAstyStd-Book';
	letter-spacing:2px;
	z-index: 20;
}

.lightbox .total-pics span{
	font-size:40px;
	font-family: 'CFAstyStd-Light';
}



.lightbox .gallery-list .items,
.lightbox .video-gallery-list .items{
	width:100%; 
	margin:0 auto 0 auto;
	font-size:0px;
}


.lightbox .video-gallery-list .items .item{
	display:block;
	margin:0  0 20px 0;
	position:relative;
}

.lightbox .video-gallery-list .items .item .video-hold{
	height:370px;
	width:650px;
	display:inline-block;
	vertical-align:middle;
	background:#3d3d3d;
	position:relative;
	cursor:pointer;
	background-repeat:no-repeat;
	background-position:center center;
	background-size:cover;
}

.lightbox .video-gallery-list .items .item .video-hold iframe{
	position:relative;
	z-index: 100;
}

.lightbox .video-gallery-list .items .item .video-hold .play{
	position:absolute;
	left:50%;
	top:50%;
	background: url("../images/icon-play-gold.png") no-repeat center center;
	background-size:contain;
	width: 89px;
	height: 89px;
	-ms-transform: translate(-50%, -50%);
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	z-index: 20;
}

.lightbox .video-gallery-list .items .item .video-hold.youtube-thumb::after{
	content:"";
	position:absolute;
	left:0%;
	top:0%;
	background:rgba(70,70,70,0.8);
	width: 100%;
	height: 100%;
	z-index: 19;
}


.lightbox .video-gallery-list .items .item .video-content{
	width:calc(100% - 650px);
	display:inline-block;
	vertical-align:middle;
	text-align:left;
	font-size:15px;
	padding:0 0 0 20px;
	line-height:22px;
}

.lightbox .video-gallery-list .items .item .video-content .item-title{
	color:#988763;
	font-family: 'CFAstyStd-Bold';
}


.lightbox .gallery-list .items .item{
	display:inline-block;
	vertical-align:top;
	margin:0 5px 10px 5px;
	position:relative;
	
}

.lightbox .gallery-list .items .item img{
	-webkit-transition: opacity 200ms; 
	   -moz-transition: opacity 200ms; 
	     -o-transition: opacity 200ms; 
	        transition: opacity 200ms; 
}

.lightbox .gallery-list .items .item:hover img{
	opacity:0.8;
}

.lightbox .gallery-list .items .item img{
	display:block;
	height:256px;
	width:256px;
	object-fit:cover;
}



.nicescroll-rails::after{
	content:"";
	left:50%;
	top:0px;
	width:1px;
	height:100%;
	background:#fff;
	position:absolute;
	z-index: 9;
	margin:0 0 0 -1px;
}

#tour .nicescroll-rails::after{
	background: rgba(44, 44, 44, 1);
}

.nicescroll-cursors{
	z-index: 10;
}











.lightbox-text{
	position:fixed;
	z-index: 1000;
	top:0px;
	left:0px;
	width:100%;
	height:100%;
	background:#fff url("../images/bg-bio.jpg") no-repeat center center; 
	display:none;
	overflow: auto;
}

.lightbox-text .close{
	position:absolute;
	right:30px;
	top:30px;
	background: url("../images/icon-close.png") no-repeat center top;
	background-size:cover;
	width: 60px;
	height: 60px;
	z-index: 1020;
	border:1px solid #a28f67;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	border-radius: 50%;
	-webkit-transition: background-color 300ms, border-color 300ms; 
	   -moz-transition: background-color 300ms, border-color 300ms ; 
	     -o-transition: background-color 300ms, border-color 300ms; 
	        transition: background-color 300ms, border-color 300ms; 
}

.lightbox-text .close:hover{
	background-position:center bottom;
	background-color:#a28f67;
}




.lightbox-text .content{
	position:relative;
	margin: 0 auto 0 auto;
	max-width: 960px;
	z-index: 10;
	padding: 100px 20px 50px 20px;
}

.lightbox-text .content .title{
	font-family: 'CFAstyStd-Light';
	font-size:28px;
	color:#3f3f3f;
	letter-spacing:2px;
	padding:0 0 30px 0;
	position:relative;
}

.lightbox-text .content .text{
	font-family: 'CFAstyStd-Book';
	font-size:13px;
	color:#3f3f3f;
	line-height:29px;
	padding:0 0px 50px 0;
	position:relative;
}

.lightbox-text .content .text a{
	color: #3f3f3f;
	font-size:13px;
	font-family: 'CFAstyStd-Book';
	text-decoration: underline;
}



/* REMOVE*/
/*
html, body{
	overflow:auto;
}
.preloader{
	display:none;
}

.page{
	position:relative;
	height:100vh;
	text-align:center;
}




.pages{
	position:relative;
	top:auto;
	left:auto;
	width:auto;
	height:auto;
	z-index: 10;
}

.page{
	text-align:center;
	position:relative;
	top:auto;
	left:auto;
	width:auto;
	height:100vh;
	z-index: 10;
	background:#fff;
	opacity:1;

	-webkit-transition: all 0ms; 
	   -moz-transition: all 0ms; 
	     -o-transition: all 0ms; 
	        transition: all 0ms; 
}

#intro .bg-grey{
	display:none;
}

#intro,
#news,
#tour,
#gallery2,
#music2,
#newsletter2{
	display:none;
}
*/
/* REMOVE*/


@media screen and (max-width: 1839px) {
	
	
	
	#biography .text{
		padding-right:60px;
	}
}


@media screen and (max-width: 1760px) {
	
	#news .holder{
		width:calc(1050px + 32px);
	}

	#news .items .item{
		width:350px;
		height:350px;
	}

	#news .items{
		height:350px;
	}

	#news .items .item .item-more{
		padding:13px 25px;
	}

	#news .items .item .item-content .item-title{
		font-size: 24px;
		line-height:28px;
	}

	#news .items .item .item-content{
		top:110px;
	}

	#news .items .item .item-more-holder{
		max-width:230px;
	}


}





@media screen and (max-width: 1580px) {
	

	#news .holder{
		width:calc(700px + 9px); 
	}
	/*
	#news .items .item .item-content{
		top:90px;
	}

	

	#news .items .item{
		width:300px;
		height:300px;
	}

	#news .items{
		height:300px;
	}

	#news .items .item .item-content .item-title{
		font-size: 18px;
		line-height:22px;
	}

	#news .items .item .item-more{
		padding:10px 20px;
	}

	#news .items .item .item-more-holder{
		max-width:200px;
	}

	.item-title span{
		padding:0 0 10px 0;
	}
	*/

}


@media screen and (max-width: 1639px) {
	
	

	.lightbox .gallery-list .items{
		width:960px;
	}
	
	#biography .text{
		padding-right:30px;
	}
	
	
}

@media screen and (max-width: 1439px) {
	.lightbox .gallery-list .items{
		/*-ms-transform: scale(0.8);
		-webkit-transform: scale(0.8);
		transform: scale(0.8);

		transform-origin: top center;*/
	}

	.lightbox .total-pics{
		margin-left:0px;
		left:40px;
	}
	
	#biography .holder{
		padding:0 90px 0 90px;
	}
	
	#biography .line{
		width:70px;
	}
	
	#biography .holder .photo{
		width:290px;
		height:370px;
	}
	
	#biography .holder .content{
		width: calc(100% - 290px);
		padding:0 0 0 30px;
	}
	
	#biography .title{
		padding:0 0 30px 0;
	}
	
	#biography .text{
		height:310px;
	}
}






@media screen and (max-height: 970px) {
	#music .title{
		padding:0 0 20px 0;
	}

	#music .title::after{
		display:none;
	}
}

@media screen and (max-width: 1260px),(max-height: 899px) {
	#news .bg{
		/*top:70px;
		left:70px;
		height:calc(100% - 140px);
		width:calc(100% - 140px);*/
	}

	
	
	.main-logo{
		left:20px;
	}
	.main-logo.active{
		top:20px;
	}


	.border-line{
		top:70px;
		left:70px;
	}

	.border-line.active.l3{
		bottom:70px;
	}

	.border-line.l3{
		right:70px;
	}

	.border-line.active{
		width:calc(100% - 140px);
	}

	.border-line.active.l2, .border-line.active.l4{
		width:1px;
		height:calc(100% - 140px);
		right:70px;
	}

	.border-line.active.l2{
		top:auto;
		bottom:70px;
	}
	
	
	.nav{
		left:0px;
	}
	
	.nav a.active{
		width:50px;
	}
	
	.nav-next, .nav-prev {
	    width: 38px;
	    height: 91px;
	    left: 15px;
	}
	
	.nav-next{
		margin-top:223px;
	}
	
	.lang{
		right:0px;
	}
	
	.burger-menu.show{
		right:10px;
	}
	/*
	.slick-prev{
		left:70px;
	}
	
	.slick-next{
		right:70px;
	}
*/

	#tour .scroll-line.s2.active{
		height:100px;
	}

	#tour .scroll-line.active{
		height:120px;
	}

	#tour .holder{
		top:140px;
	}

	#tour .item-holder {
	    max-height: calc(100vh - 400px);
	    overflow: auto;
	}

	#tour .items .item .item-date{
		padding:0px;
		width:200px;
	}

	#tour .items .item .item-title{
	/*	width:340px;*/
	}

	#gallery .logo{
		height:80%;
		max-height:800px;
	}


	#music .scroll-line.active,
	#music .scroll-line.active.s2{
		height:90px;
	}

	#music .holder{
		top:120px;
	}

	#newsletter .scroll-line.active{
		height:100px;
	}

	#newsletter .holder{
		top:120px;
	}
	
	.lightbox#gallery-detail .line.l2,
	.lightbox#gallery-detail .line.l4,
	.lightbox#video-gallery-detail .line.l2,
	.lightbox#video-gallery-detail .line.l4{
		width:100px;
	}

	.lightbox .gallery-list .items{
		/*-ms-transform: scale(0.7);
		-webkit-transform: scale(0.7);
		transform: scale(0.7);*/
	}

	.lightbox .total-pics {
	    margin: -28px 0 0 -700px;
	    font-size: 14px;
	}


	.lightbox .content{
		width:960px;
	}

	.lightbox .content .image-hold{
		width:480px;
		height:360px;
	}

	.lightbox .content .col.last{
		width:480px;
	}

	.lightbox .box.b1{
		display:none;
	}

	.menu{
		width:300px;
	}

	.menu .links a{
		height:70px;
		line-height:70px;
		font-size:18px;
	}

	.burger-menu{
		top:20px;
	}
	.burger-menu.show{
		right: 10px;
	}
	
	.lang-new{
		top:30px;
		right:80px;
	}

}


@media screen and (max-width: 1260px),(min-width: 1140px),(max-height: 799px) {
	.slick-next{
		right:-90px;
		margin-top:0px;
	}
	
	.slick-prev {
	    left: -90px;
	    margin-top:0px;
	}

}

@media screen and (max-width: 1139px),(max-height: 799px) {
	

	

	#news .pagination{
		bottom:-50px;
	}

	#news .scroll-line.active {
	    height: calc(50% - 220px);
	}

	#news .scroll-line.s2.active {
	    height: calc(50% - 280px);
	}
	
	#news .holder{
		width:calc(350px + 8px); 
	}

	#news .items .item{
		margin:20px 4px 0px 4px;
	}

	#tour .title{
		padding-bottom:30px;
	}

	#tour .item-holder {
	    max-height: calc(100vh - 330px);
	    overflow: auto;
	}

	#tour .items .item {
	    margin: 0 0 27px 0;
	}

	#gallery .show-gallery-holder{
		width:600px;
		height:400px;
		margin: -200px 0 0 -300px;
	}

	#gallery .corner{
		border-left: 60px solid transparent;
	    border-right: 60px solid transparent;
	    border-bottom: 60px solid #a28f67;
	    margin-bottom:-40px;
	}

	#gallery .show-gallery .show-title{
		padding-top:80px;
	}

	#gallery .show-gallery .cross-holder{
		top:240px;
	}

	#music .text{
		font-size:10px;
		line-height:16px;
	}

	#music .row .col.last{
		height:280px;
		height:240px;
	}
	
	#music .row .col.first .buy{
		height:104px;
	}

	#music .row .col.first .lnk{
		height:30px;
		line-height:30px;
		font-size:10px;
		width:240px;
	}

	#music .row .col.first .stream-title{
		padding-bottom:10px;
	}

	#newsletter .text{
		padding:20px 0 20px 0;
		font-size:10px;
		line-height:16px;
	}

	#newsletter .signature{
		bottom:100px;
	}

	.lightbox .gallery-list{
		top:50px;
	}

	
	#intro .logo,
	.preloader .logo{
		-ms-transform: translate(-50%, -50%) scale(0.7);
    		-webkit-transform: translate(-50%, -50%) scale(0.7);
    		transform: translate(-50%, -50%) scale(0.7);
	}
	
	
	#biography .holder{
		padding:00px;
	}
	
	#biography .line{
		display:none;
	}
	

}




































