/****************************************/
/* FONTS 								*/
/****************************************/
@font-face {
    font-family: 'Alef';
    src: url('fonts/Alef-regular.eot');
    src: url('fonts/Alef-regular.eot?#iefix') format('embedded-opentype'),
         url('fonts/Alef-regular.woff') format('woff'),
         url('fonts/Alef-regular.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Alef';
    src: url('fonts/Alef-bold.eot');
    src: url('fonts/Alef-bold.eot?#iefix') format('embedded-opentype'),
         url('fonts/Alef-bold.woff') format('woff'),
         url('fonts/Alef-bold.ttf') format('truetype');
    font-weight: bold;
    font-style: normal;
    font-style: normal;
}
/****************************************/



/****************************************/
/* HTML ELEMENTS 						*/
/* including Eric Meyer’s CSS Reset 	*/
/****************************************/
html, body, div, span, applet, object, iframe, table, caption, tbody, tfoot, thead, tr, th, td, 
del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, 
h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, 
dl, dt, dd, ol, ul, li, fieldset, form, label, legend, input, textarea,
header, nav, section, article, aside, figcaption, figure, footer /* HTML5 tags too */ {
	outline: 0;
	padding: 0;
	margin: 0;
	border: 0;
	font-family: inherit;
	font-weight: inherit;
	font-style: inherit;
	font-size: 100%;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
}
:focus { 
	outline:0; 
}
html {
	height: 100%;
}
body { 
	position: relative;
	height: 100%;
	font-family: 'Alef', Tahoma, sans-serif;
	font-size: 14px;
	letter-spacing: -0.5px;
	overflow-x: hidden;
	/*
	background: #fff url(../img/body-bg.jpg) no-repeat 50% 5%;
	-webkit-background-size: 100% auto;
	   -moz-background-size: 100% auto;
	    -ms-background-size: 100% auto;
		 -o-background-size: 100% auto;
			background-size: 100% auto;
	*/
}
ol, ul { 
	list-style: none; 
}
a {
	color: #322826;
	text-decoration:none; 
}
a:hover, a:active, a:focus {
	color: #888;
}
h1 {
	padding-bottom: 0.5em;
	font-size: 1.667em;
	font-weight: bold;
	line-height: 1em;
}
p {
	margin-bottom: 0.5em;
}
img {
	max-width: 100%;
}
textarea{ 
	resize: none; 
	overflow: hidden; 
}
input:-webkit-autofill, 
input:autofill, 
input:-moz-autofill { 
	background-color:#fff !important; 
}
@media (min-width: 640px) {
	body { 
		font-size: 16px;
	}
}
@media (min-width: 1280px) {
	body {
		font-size: 18px;
	}
}
@media (min-width: 1600px) {
}


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



/****************************************/
/* TEMPLATE CLASSES						*/
/****************************************/
.border-top {
	padding: 0.5em 0;
	border-top: 10px solid #ee3525;
}

.strong {
	font-weight: bold;
}

.largest{
	font-size: 1.667em;
	line-height: 1.1em;
}
.smaller {
	font-size: 0.833em;
}
.smallest {
	font-size: 0.75em;
}
.nobreak {
	white-space: nowrap;
}


/* Simple columns */
.cols {
}
.cols > .col-3 {
	width: 100%;
}
@media (min-width: 640px) {
	.cols {
		margin-left: -10px;
		margin-right: -10px;
	}
	.cols:after {
		content: '';
		display: block;
		width: 100%;
		clear: both;
	}
	.cols > .col-2,
	.cols > .col-3 {
		float: right;
		padding-left: 10px;
		padding-right: 10px;
	}
	.cols > .col-2 {
		width: 50%;
	}
	.cols > .col-3 {
		width: 33.3333%;
	}
}
@media (min-width: 1280px) {
	.cols {
		margin-left: -20px;
		margin-right: -20px;
	}
	.cols > .col-2,
	.cols > .col-3 {
		padding-left: 20px;
		padding-right: 20px;
	}
	.cols > .col-2 > p,
	.cols > .col-3 > p {
		margin-left: -0.5em;
	}
	
}

.clear-after {
	
}

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



/****************************************/
/* TEMPLATE LAYOUT + ELEMENTS			*/
/****************************************/

/* Loading cover */
#preloaderContainer {
	position: fixed;
	z-index: 9999;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	background: #fff;
	display: block;
	-webkit-transition: opacity 0.6s ease, z-index 0s ease 0.6s; 
	   -moz-transition:	opacity 0.6s ease, z-index 0s ease 0.6s; 
		-ms-transition: opacity 0.6s ease, z-index 0s ease 0.6s; 
		 -o-transition: opacity 0.6s ease, z-index 0s ease 0.6s; 
			transition:	opacity 0.6s ease, z-index 0s ease 0.6s; 
}
#preloaderContainer > .bar {
	position: absolute;
	bottom: 50%;
	left: 0;
	width: 0;
	background: #454545;
	height: 4px;
	-webkit-transition: width 0.2s ease; 
	   -moz-transition:	width 0.2s ease; 
		-ms-transition: width 0.2s ease; 
		 -o-transition: width 0.2s ease; 
			transition:	width 0.2s ease; 
}
#preloaderContainer > .text {
	position: absolute;
	bottom: 50%;
	width: 100%;
	color: #454545;
	font-size: 6em;
	text-align: center;
	line-height: 1.5em;
	-webkit-transition: opacity 0.1s ease; 
	   -moz-transition:	opacity 0.1s ease; 
		-ms-transition: opacity 0.1s ease; 
		 -o-transition: opacity 0.1s ease; 
			transition:	opacity 0.1s ease;
}
#preloaderContainer > .text.on {
	opacity: 1;
}
body.ready > #preloaderContainer {
	opacity: 0;
	z-index: -9999;
}


#preloaderCounter {
	position: absolute;
	top: 50%;
	left: 50%;
    width: 1em;
    height: 1em;
	margin-top: -0.5em;
	margin-left: -0.5em;
	font-size: 200px;
}
#preloaderCounter > .text {
	position: absolute;
	top: 0.95em;
	left: 0;
	width: 3.33em;
	font-size: 0.3em;
	text-align: center;
	color: #454545;
}
#preloaderCounter > .slice {
	position: absolute;
	width: 1em;
	height: 1em;
	clip: rect(0px,1em,1em,0.5em);
}
#preloaderCounter > .slice.gt50 {
	clip: rect(auto, auto, auto, auto);
}
#preloaderCounter > .slice > .pie {
	border: 0.02em solid #454545;
	position: absolute;
	width: 1em;
	height: 1em;
	/*
	width: 0.8em; /* 1 - (2 * border width) */
	/*
	height: 0.8em; /* 1 - (2 * border width) */
	clip: rect(0em,0.5em,1em,0em);
	-webkit-border-radius: 0.5em; 
	   -moz-border-radius: 0.5em;
			border-radius: 0.5em; 
	-webkit-transition: -webkit-transform 0.2s ease; 
	   -moz-transition:	   -moz-transform 0.2s ease; 
		-ms-transition:     -ms-transform 0.2s ease; 
		 -o-transition:      -o-transform 0.2s ease; 
			transition:	        transform 0.2s ease; 
}
#preloaderCounter > .slice > .pie.fill {
	visibility: hidden;
}
#preloaderCounter > .slice.gt50 > .pie.fill {
	visibility: visible;
}
#preloaderCounter > .slice > .pie.fill {
	-webkit-transform: rotate(180deg) !important;
	   -moz-transform: rotate(180deg) !important;
		 -o-transform: rotate(180deg) !important;
			transform: rotate(180deg) !important;
}
/***/


/* Popups: map and form */
.popupContainer {
	position: fixed;
	z-index: -999;
	top: 0;
	bottom: 0;
	left: 0;
	right: 0;
	padding: 60px 20px;
	opacity: 0;
	-webkit-transition: opacity 0.6s ease; 
	   -moz-transition:	opacity 0.6s ease; 
		-ms-transition: opacity 0.6s ease; 
		 -o-transition: opacity 0.6s ease; 
			transition:	opacity 0.6s ease; 
}
#mapPopupContainer {
	background: #322826;
	background: rgba(50,40,38,0.85);	
}
#formPopupContainer {
	background: rgba(50,40,38,0.95);
	overflow-x: hidden;
	overflow-y: auto;
}

.popupContent {
	position: relative;
	width: 100%;
	height: 100%;
}
#mapContainer {
	padding: 2px;
	background: #fff;
}
#formContainer {
	max-width: 1024px;
	margin: 0 auto;
	padding: 20px;
	text-align: center;
	color: #ebebeb;
}
.closePopup {
	display: block;
	position: absolute;
	z-index: 9;
	top: -48px; 
	right: 0px;
	width: 48px;
	height: 48px;
	background: url(../img/sprites.png) no-repeat -26px -26px; 
}
#formContainer .closePopup {
	top: -24px;
	right: -24px;
	width: 121px;
	height: 121px;
	background-position: 0 -127px;
}
.popupTip {
	position: absolute;
	bottom: 2em;
	left: 0;
	width: 100%;
	color: #ee3525;
	text-align: center;
	font-size: 1em;
	line-height: 2em;
	opacity: 0;
	-webkit-transform: translate3d(0,100%,0);
	   -moz-transform: translate3d(0,100%,0);
		-ms-transform: translate3d(0,100%,0);
		 -o-transform: translate3d(0,100%,0);
			transform: translate3d(0,100%,0);
}
.popupTip > span {
	background: #eee;
	border: 1px solid #322826;
	padding: 0 2em;
}
.popupTip.on {
	-webkit-animation: showPopupTip 5s ease-in-out 1s 1;
    animation: showPopupTip 5s ease-in-out 1s 1;
}
/* Chrome, Safari, Opera */
@-webkit-keyframes showPopupTip {
	0% , 100% {
		opacity: 0;
		-webkit-transform: translate3d(0,100%,0);
		   -moz-transform: translate3d(0,100%,0);
			-ms-transform: translate3d(0,100%,0);
			 -o-transform: translate3d(0,100%,0);
				transform: translate3d(0,100%,0);
	}
	10% , 90% {
		opacity: 1;
		-webkit-transform: translate3d(0,0,0);
		   -moz-transform: translate3d(0,0,0);
			-ms-transform: translate3d(0,0,0);
			 -o-transform: translate3d(0,0,0);
				transform: translate3d(0,0,0);
	}
}
/* Standard syntax */
@keyframes showPopupTip {
	0% , 100% {
		opacity: 0;
		-webkit-transform: translate3d(0,100%,0);
		   -moz-transform: translate3d(0,100%,0);
			-ms-transform: translate3d(0,100%,0);
			 -o-transform: translate3d(0,100%,0);
				transform: translate3d(0,100%,0);
	}
	10% , 90% {
		opacity: 1;
		-webkit-transform: translate3d(0,0,0);
		   -moz-transform: translate3d(0,0,0);
			-ms-transform: translate3d(0,0,0);
			 -o-transform: translate3d(0,0,0);
				transform: translate3d(0,0,0);
	}
}

#google-map {
	width: 100%;
	height: 100%;
	background: #888;
}

#innerFormContent {
	display: inline-block;
	direction: rtl;
	vertical-align: middle;
}
#innerFormContent h3 {
	max-width: 440px;
	margin: 0.5em auto 0.6em auto;
	line-height: 1.05em;
	font-size: 1.5em;
	font-weight: bold;
	letter-spacing: 0px;
}
#formPopupLogo {
	display: block;
	margin: 2em auto 0 auto;
}
#formPopupP1 {
	margin-left: -1em;
	margin-right: -1em;
	font-size: 0.888em;
	line-height: 1.5em;
	letter-spacing: 1px;
}

#contact-form-2 {
	position: relative;
	margin: 0 auto 1em auto;
	text-align: right;
}
#contact-form-2 input[type=text],
#contact-form-2 input[type=email] {
	margin-bottom: 9px;
	border: 1px solid #746e6d;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	padding: 0.5em;
	background: #ebebeb;
	-webkit-box-shadow: inset 1px 1px 5px 0px rgba(7,7,7,0.33);
	   -moz-box-shadow: inset 1px 1px 5px 0px rgba(7,7,7,0.33);
			box-shadow: inset 1px 1px 5px 0px rgba(7,7,7,0.33);
	color: #ffff33;
	text-shadow: 0px 0px 4px rgba(0, 0, 0, 0.66);
	font-weight: bold;
}
#contact-form-2 input::-webkit-input-placeholder {
	color: #ffff33;
}
#contact-form-2 input::-moz-placeholder {
   color: #ffff33;
}

#contact-form-2 input[type=text] {
	width: 100%;
}
#contact-form-2 input[type=text]:first-child {
	margin-left: 3px;
}
#contact-form-2 input[type=email] {
	width: 100%;
}
#contact-form-2 input[type=submit] {
	width: 100%;
	margin-bottom: 3px;
	-webkit-border-radius: 4px;
	   -moz-border-radius: 4px;
			border-radius: 4px;
	padding: 0.75em 0;
	background: #ffff33;
	color: #322826;
	font-weight: bold;
	cursor: pointer;
}
#formPopupP2 {
	max-width: 440px;
	margin: 0 auto;
	line-height: 1.2;
	font-size: 0.8em;
	letter-spacing: 0.5px;
}

@media (min-width: 640px) {
	#innerFormContent {
		max-width: 480px;
	}
	#contact-form-2 input[type=text] {
		width: 236px;
	}
}

@media (min-width: 960px) {
	.popupContainer {
		padding: 5% 10%;
	}
	#innerFormContent {
		max-width: 540px;
	}
	#formPopupContainer {
		position: fixed;
		background: rgba(50,40,38,0.55);
	}
	#formContainer {
		background: url(../img/contact-form-popup-bg2.png) no-repeat 50% 50%;
	}
	#formContainer:before,
	#formContainer:after {
		content: '';
		display: inline-block;
		width: 0px;
		height: 100%;
		vertical-align: middle;
	}
	#formContainer:before {
		margin-left: -0.5em;
	}
	#formContainer:after {
		margin-right: -0.5em;
	}
	#contact-form-2 input[type=text] {
		width: 266px;
	}
}
/***/




/* Deco background (initially set as body's bg) */
#bg-deco {
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
	height: auto;
}
#bg-deco > img {
	display: block;
	width: 100%;
}
/***/


/* Navigation */
#main-navbar {
	position: fixed;
	z-index: 99;
	top: 0;
	width: 100%;
	height: 70px;
	direction: rtl;
}
#navbar-container {
	width: 100%;
	height: 0;
	overflow: hidden;
	background: rgba(255,255,255,.85);
	-webkit-transform: translate3d(0,0,0);
	   -moz-transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		 -o-transform: translate3d(0,0,0);
			transform: translate3d(0,0,0);
	-webkit-transition: height 0.6s ease; 
	   -moz-transition:	height 0.6s ease; 
		-ms-transition: height 0.6s ease; 
		 -o-transition: height 0.6s ease; 
			transition:	height 0.6s ease; 
}
#navbar { 
}
#navbar > li {
	text-align: center;
	border-bottom: 1px solid #ccc;
}
#navbar > li > a {
	display: inline-block;
	width: 80%;
	line-height: 70px;
	-webkit-transition: all 0.2s ease; 
	   -moz-transition:	all 0.2s ease; 
		-ms-transition: all 0.2s ease; 
		 -o-transition: all 0.2s ease; 
			transition:	all 0.2s ease; 
}
#navbar > li:hover > a,
#navbar > li.active > a {
	color: #888;
}
#navbar-toggle {
	display: block;
	position: fixed;
	z-index: 99;
	top: 20px;
	left: 20px;
	width: 32px;
	height: 32px;
	padding: 7px;
	border: 1px solid #888;
	border-radius: 4px;
	background: rgba(255,255,255,.85);
	cursor: pointer;
}
#navbar-toggle:hover,
#navbar-toggle:focus {
	
}
#navbar-toggle:focus {
  outline: 0;
}
#navbar-toggle .icon-bar {
	display: block;
	width: 16px;
	height: 2px;
	border-radius: 1px;
	background: #322826;
}


#navbar-toggle .icon-bar + .icon-bar {
	margin-top: 3px;
}
@media (min-width: 640px) {	
	#main-navbar {
		background: rgba(255,255,255,.85);
	}
	#navbar-container {
		width: 640px;
		height: 70px;
		margin: 0 auto;
		background: transparent;
	}
	#navbar {
		text-align: center;
	}
	#navbar > li {
		display: inline-block;
		border-bottom: 0px;
		padding: 0 2em;
	}
	#navbar > li > a {
		width: auto;
	}
	#navbar-toggle {
		display: none;
	}
}
@media (min-width: 960px) {	
	#navbar {
		text-align: justify;
	}
	#navbar:after {
		content: '';
		display: inline-block;
		width: 100%;
		height: 0px;
	}
	#navbar > li {
		padding: 0;
	}
}
/* Navigation END */



/* Main */

/* Main END */



/* Section */
.section {
	position: relative;
	width: 100%;
	padding-bottom: 40px;
	background-image: none;
	background-repeat: no-repeat;
	background-position: 50% 0;
	-webkit-background-size: 100% auto;
	   -moz-background-size: 100% auto;
	    -ms-background-size: 100% auto;
		 -o-background-size: 100% auto;
			background-size: 100% auto;
	color: #ee3525;
}
.columns-container {
	width:100%;
}
.middle-column, 
.left-column, 
.right-column {
	width: 100%;
	padding: 20px 20px 0 20px;
	direction: rtl;
}




.column-arrows {
	position: fixed;
	z-index: 0;
	bottom: -70px;
	left: 0;
	width: 100%;
	height: 70px;
	border-top: 1px solid #ccc;
	padding: 0 20px;
	background: #fff;
	-webkit-transition: bottom 0.6s ease; 
	   -moz-transition:	bottom 0.6s ease; 
		-ms-transition: bottom 0.6s ease; 
		 -o-transition: bottom 0.6s ease; 
			transition:	bottom 0.6s ease; 
}
.column-arrows > .column-arrow {
	display: block;
	line-height: 70px;
	height: 70px;
	color: #ee3525;
	font-weight: bold;
}
.column-arrows > .right-arrow {
	float: right;
}
.column-arrows > .left-arrow {
	float: left;
}
.column-arrows > .left-arrow:after, 
.column-arrows > .right-arrow:before {
	content: '';
	display: inline-block;
	vertical-align: middle;
	width: 26px;
	height: 17px;
	background: url(../img/sprites.png) no-repeat ;
}
.middle-column .column-arrows > .left-arrow:after, 
.middle-column .column-arrows > .right-arrow:before {
	background-position: -37px -79px;
}
.left-column .column-arrows > .left-arrow:after, 
.left-column .column-arrows > .right-arrow:before,
.right-column .column-arrows > .left-arrow:after, 
.right-column .column-arrows > .right-arrow:before {
	background-position: -37px -4px;
} 
.column-arrows > .left-arrow:after {
	margin-right: 0.5em;
}
.column-arrows > .right-arrow:before {
	margin-left: 0.5em;
}
.column-arrows > .column-arrow > .lighter {
	font-weight: normal;
}

.section.active .column.active .column-arrows {
	z-index: 99;
	bottom: 0;
	-webkit-transition: bottom 0.6s ease 0.2s; 
	   -moz-transition:	bottom 0.6s ease 0.2s; 
		-ms-transition: bottom 0.6s ease 0.2s; 
		 -o-transition: bottom 0.6s ease 0.2s; 
			transition:	bottom 0.6s ease 0.2s; 
}
.close-column {
	display: none;
}


.half-column {
}






@media (min-width: 960px) {
	.section {
		/*min-height: 100%;*/
		/*padding-bottom: 0;*/
	}
	
	.columns-container {
		-webkit-transition: transform 1.2s ease 0s; 
		   -moz-transition:	transform 1.2s ease 0s; 
			-ms-transition: transform 1.2s ease 0s; 
			 -o-transition: transform 1.2s ease 0s; 
				transition:	transform 1.2s ease 0s; 
	}
	.column {
		opacity: 0.6;
		padding-bottom: 70px;
	}
	.column:not(.active) {
		cursor: pointer;
	}
	.column.active {
		opacity: 1;
	}
	.column:after {
		content: '';
		display: block;
		position: absolute;
		top: 0; bottom: 0;
		left: 0; right: 0;
		z-index: 99;
		/*background: rgba(255,255,255,0.4);*/
		background: transparent;
	}
	.column.active:after {
		display: none;
	}
	.middle-column {
		position: relative;
		width: 640px;
		margin: 0 auto;
	}
	.left-column {
		position: absolute;
		top: 0;
		right: 50%;
		margin-right: 320px;
	}
	.right-column {
		position: absolute;
		top: 0;
		left: 50%;
		margin-left: 320px;
	}
	
	.column-arrows {
		position: absolute;
		bottom: 0;
		border-top: 0;
		background: transparent;
		opacity: 0;
		-webkit-transition: opacity 0.6s ease 0.2s; 
		   -moz-transition:	opacity 0.6s ease 0.2s; 
			-ms-transition: opacity 0.6s ease 0.2s; 
			 -o-transition: opacity 0.6s ease 0.2s; 
				transition:	opacity 0.6s ease 0.2s; 
	}
	.column.active .column-arrows {
		opacity: 1;
	}
	.column-arrows > .left-arrow:after, 
	.column-arrows > .right-arrow:before {
		width: 17px;
		height: 26px;
	}
	.middle-column .column-arrows > .left-arrow:after,
	.right-column .column-arrows > .left-arrow:after	{
		background-position: -4px -37px;
	} 
	.middle-column .column-arrows > .right-arrow:before,
	.left-column .column-arrows > .right-arrow:before	{
		background-position: -79px -37px;
	}
	
	.close-column {
		display: block;
		position: absolute;
		z-index: 9;
		top: 20px; right: 20px;
		width: 48px;
		height: 48px;
		background: url(../img/sprites.png) no-repeat -26px -26px; 
	}
	
	.half-columns {
		margin-left: -10px;
		margin-right: -10px;
	}
	.half-columns:after {
		content: '';
		display: block;
		clear: both;
	}
	.half-column {
		width: 50%;
		float: right;
		padding-left: 10px;
		padding-right: 10px;
	}
	
	
}
@media (min-width: 1280px) {
	.left-column,
	.right-column	{
		width: 1280px;
	}
	
	
	.half-columns {
		margin-left: -20px;
		margin-right: -20px;
	}
	.half-column {
		padding-left: 20px;
		padding-right: 20px;
	}
}
@media (min-width: 1600px) {
	.full-height-column {
		bottom: 0;
	}
}





/* Section END */



/* Footer */
footer {	
	margin-bottom: 70px;
	padding: 1em 2em 2em 2em;
	background: #322826;
	color: #ebebeb;
	text-align: center;
	direction: rtl;
}
footer p {	
	padding: 1em 0;
}

footer a {
	white-space: nowrap;
	color: inherit;
}
footer a:hover {
	color: inherit;
	text-decoration: underline;
}
@media (min-width: 960px) {
	footer {
		margin-bottom: 0;
	}
}
/* Footer END */

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






/****************************************/
/* 'HOME' + 'CONTACT' SECTION SPECIFIC	*/
/****************************************/

#home {
	height: 100%;
	padding-bottom: 0;
}
#home .columns-container {
	position: relative;
	z-index: 9;
	height: 100%;
	text-align: center;
}
#home .columns-container:after {
	content: '';
	display: inline-block;
	width: 0px;
	height: 100%;
	vertical-align: middle;
}
#home .middle-column {
	display: inline-block;
	width: 95%;
	max-width: 640px;
	vertical-align: middle;
}

/* Home deco image */
#home-deco {
	display: none;
}
/***/

/* Fader */
.fader {
	position: absolute;
	left: 0; right: 0;
	top: 0; bottom: 0;
}
.fader > div {
	display: block;
	width: 100%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	background: none no-repeat 50% 0;
	-webkit-transition: opacity 1s ease 1s; 
	   -moz-transition:	opacity 1s ease 1s; 
		-ms-transition: opacity 1s ease 1s; 
		 -o-transition: opacity 1s ease 1s; 
			transition:	opacity 1s ease 1s; 
	-webkit-transform: translate3d(0,0,0);
	   -moz-transform: translate3d(0,0,0);
		-ms-transform: translate3d(0,0,0);
		 -o-transform: translate3d(0,0,0);
			transform: translate3d(0,0,0);
	-webkit-backface-visibility: hidden;
	   -moz-backface-visibility: hidden;
		-ms-backface-visibility: hidden;
		 -o-backface-visibility: hidden;
			backface-visibility: hidden;
	/* Fix of Webkit flickering */
	z-index: 1;
}
@media (min-width: 1920px) {
	.fader > div {
		-webkit-background-size: cover;
		   -moz-background-size: cover;
			-ms-background-size: cover;
			 -o-background-size: cover;
				background-size: cover;
	}	
}
.fader > div.ontop {
	z-index: 3;
	opacity: 1;
	-webkit-transition: opacity 1s ease; 
	   -moz-transition:	opacity 1s ease; 
		-ms-transition: opacity 1s ease; 
		 -o-transition: opacity 1s ease; 
			transition:	opacity 1s ease; 
}
/***/

/* Contact form */
#contact-form {
	position: relative;
	margin-top: 0.5em;
	margin-bottom: 0.5em;
	font-size: 1.15em;
	visibility: hidden;
	opacity: 0;
	direction: rtl;
	-webkit-transition: all 0.2s ease;
	   -moz-transition: all 0.2s ease;
		-ms-transition: all 0.2s ease;
		 -o-transition: all 0.2s ease;
			transition: all 0.2s ease;
}
#contact-form.on {
	visibility: visible;
	opacity: 1;
}
#contact-form input {
	display: block;
	width: 100%;
	/*height: 3em;*/
	border-radius: 4px;
	padding: 1em 0.5em;
}
#contact-form input[type=email] {
	background: transparent;
	-webkit-transition: all 0.2s ease;
	   -moz-transition: all 0.2s ease;
		-ms-transition: all 0.2s ease;
		 -o-transition: all 0.2s ease;
			transition: all 0.2s ease;
}
#contact-form input[type=email]:focus,
#contact-form input[type=email].not-empty {
	background: #e6e5e5;
}
#contact-form input[type=submit] {
	background: #ffff33;
	border-radius: 4px;
	font-weight: bold;
	cursor: pointer;
}
#contact-form label.under{
	display: block;
	position: absolute;
	z-index: -1;
	top: 0;
	left: 0;
	right: 0;
	/*height: 3.3333em;*/
	border-radius: 4px;
	padding: 1em 0.5em;
	background: #e6e5e5;
	color: #ffff33;
	/*text-shadow: 0 0 9px 8px #000;*/
	text-shadow: 0 0 3px #404040;
	text-align: right;
}
#contact-form label.under > span {
	font-size: 0.75em;
	display: block;
}
#contact-form label.under > span:first-child {
	float: right;
}
#contact-form label.under > span:last-child {
	float: left;
	direction: ltr;
}


.submit-return {
	display: block;
	position: absolute;
	z-index: -9;
	top: 0; left: 0; bottom: 0;
	width: 100%;
	background: #ffff33;
	color: #322826;
	border-radius: 4px;
	font-weight: bold;
	text-align: center;
	vertical-align: middle;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
	   -moz-transition: opacity 0.4s ease;
		-ms-transition: opacity 0.4s ease;
		 -o-transition: opacity 0.4s ease;
			transition: opacity 0.4s ease;
}

.submit-return.loading,
.submit-return.on {
	z-index: 9;
	opacity: 1;
}
.submit-return-loading,
.submit-return-text {
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
	   -moz-transition: opacity 0.4s ease;
		-ms-transition: opacity 0.4s ease;
		 -o-transition: opacity 0.4s ease;
			transition: opacity 0.4s ease;	
}
.submit-return.loading .submit-return-loading {
	opacity: 1;
}
.submit-return.on .submit-return-text {
	opacity: 1;
}

.submit-return-loading {
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: -5em;
	margin-left: -5em;
  /*margin: 0 auto;*/
  font-size: 3px;
  /*position: relative;*/
  text-indent: -9999em;
  border-top: 1em solid transparent; 
  border-right: 1em solid transparent;
  border-bottom: 1em solid transparent;
  border-left: 1em solid #ee3525;
  -webkit-animation: load8 1.1s infinite linear;
  animation: load8 1.1s infinite linear;
}
.submit-return-loading,
.submit-return-loading:after {
  border-radius: 50%;
  width: 10em;
  height: 10em;
}
@-webkit-keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes load8 {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.submit-return-text {
	position: absolute;
	top: 50%;
	left: 0;
	width: 100%;
	height: 100%;
	margin-top: -0.5em;
	text-align: center;
}

#contact-extra {
	color: #ebebeb;
	direction: rtl;
	font-size: 0.95em;
	/*text-shadow: 0 0 9px 8px #000;*/
	text-align: center;
	visibility: hidden;
	opacity: 0;
	-webkit-transition: all 0.2s ease;
	   -moz-transition: all 0.2s ease;
		-ms-transition: all 0.2s ease;
		 -o-transition: all 0.2s ease;
			transition: all 0.2s ease;
}
#contact-extra a {
	color: #ebebeb;
}
#contact-form.on + #contact-extra {
	visibility: visible;
	opacity: 1;
}
/***/

@media (min-width: 480px) {
	#contact-form label.under > span {
		font-size: 1em;
	}
}

@media (min-width: 640px) {
	#home-deco {
		display: block;
		position: absolute;
		z-index: 9;
		top: 94px; left: 24px; bottom: 24px;
	}
	#home-deco > a {
		display: block;
		position: absolute;
		left: 0;
	}
	#home-deco > #home-link-1 {
		bottom: 0;
		width: 50%;
		padding-top: 48%;
	}
	#home-deco > #home-link-2 {
		bottom: 0;
		width: 55%;
		margin-bottom: 52%;
		padding-top: 63%;
	}		

	#home-deco > img{
		display: block;
		/*max-width: 119px;*/
		height: 100%;
		max-width: none;
	}
	#home .middle-column {
		padding-left: 30%;
	}
}
@media (min-width: 960px) {
	#home .middle-column {	
		height: auto !important;
		padding-left: 15%;
		padding-bottom: 0;
	}
	#contact-form {
		padding-left: 128px;
	}
	#contact-form:after {
		content: '';
		display: block;
		clear: both;
	}
	#contact-form input {
		float: right;
	}
	#contact-form input[type=submit] {
		width: 120px;
		margin-right: 8px;
		margin-left: -128px;
	}
	#contact-form label.under {
		left: 128px;
	}
	#submit-return {
		bottom: 0.5em;
	}
}
@media (min-width: 1280px) {
	#home .middle-column {
		padding-left: 20px;
	}
}

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






/****************************************/
/* 'PROJECT' SECTION SPECIFIC			*/
/****************************************/

/* Gallery */
#gallery {
	margin:0 auto;
	position:relative;
	overflow:hidden;
	direction: ltr;
	-webkit-backface-visibility:hidden;
	-moz-backface-visibility:hidden;
	-ms-backface-visibility:hidden;
	-o-backface-visibility:hidden;
	backface-visibility:hidden;
	/* Fix of Webkit flickering */
	z-index:1;
}
.gallery-inner {
	position:relative;
	width:100%;
	-webkit-transition-property:-webkit-transform, left, top;
	-webkit-transition-duration:0s;
	-webkit-transform:translate3d(0px,0,0);
	-webkit-transition-timing-function:ease;
	
	-moz-transition-property:-moz-transform, left, top;
	-moz-transition-duration:0s;
	-moz-transform:translate3d(0px,0,0);
	-moz-transition-timing-function:ease;
	
	-o-transition-property:-o-transform, left, top;
	-o-transition-duration:0s;
	-o-transform:translate3d(0px,0,0);
	-o-transition-timing-function:ease;
	-o-transform:translate(0px,0px);
	
	-ms-transition-property:-ms-transform, left, top;
	-ms-transition-duration:0s;
	-ms-transform:translate3d(0px,0,0);
	-ms-transition-timing-function:ease;
	
	transition-property:transform, left, top;
	transition-duration:0s;
	transform:translate3d(0px,0,0);
	transition-timing-function:ease;

	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.swiper-free-mode > .gallery-inner {
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
	margin: 0 auto;
}
.gallery-item {
	float: left;
	-webkit-box-sizing: content-box;
	-moz-box-sizing: content-box;
	box-sizing: content-box;
}
.gallery-item > img {
	display: block;
}
.swiper-wp8-horizontal { /* IE10 Windows Phone 8 Fixes */
	-ms-touch-action: pan-y;
}
.swiper-wp8-vertical { /* IE10 Windows Phone 8 Fixes */
	-ms-touch-action: pan-x;
}

.gallery-left,
.gallery-right {
	display: block;
	width: 48px;
	height: 100%;
	position: absolute;
	z-index: 9;
	top: 0;
	
	background: url(../img/sprites.png) no-repeat ;
}
.gallery-left {
	left: 0;
	background-position: 12px -28px;
}
.gallery-right {
	right: 0;
	background-position: -66px -28px;
}
@media (min-width: 960px) {
	#project .left-column,
	#project .right-column {
		padding-bottom: 0;
	}
	#project .left-column .column-arrows {
		position: absolute;
		right: 20px;
	}
	#project .right-column .column-arrows {
		position: absolute;
		left: 20px;
	}
}

@media (min-width: 1600px) {
	#project .left-column .column-arrows {
		right: -110px;
	}
	#project .right-column .column-arrows {
		left: -110px;
	}
}
/***/


/* Maps */
#small-map-container {
	display: none;
}

#large-map-container {
	overflow: hidden;
	position: relative;
}
#large-map {
	display: block;
	width: 160%;
	max-width: none;
	margin-right: -40%;
}
#large-map-pointer {
	position: absolute;
	z-index: 1;
	left: 57%;
	bottom: 20%;
	display: block;
	width: 24%;
	height: 40%;
}
#large-map-pointer > a {
	display: block;
	width: 100%;
	height: 100%;
}
/***/

@media (min-width: 960px) {

	#project.active {
		z-index: 5;
	}
	
	.gallery-left,
	.gallery-right {
		top: 50%;
		width: 48px;
		height: 52px;
		margin-top: -26px;
	}
	
	#project .right-column {
		opacity: 1;
	}

	#small-map-container,
	#large-map-container	{
		display: block;
		position: absolute;
		top: 20px;
		left: 20px; right: 20px;
		-webkit-transition: opacity 0.4s ease;
		   -moz-transition: opacity 0.4s ease;
			-ms-transition: opacity 0.4s ease;
			 -o-transition: opacity 0.4s ease;
				transition: opacity 0.4s ease;
	}
	#small-map-container {
		opacity: 1;
		z-index: 9;
	}
	#small-map-container > #small-map {
		opacity: 0.6;
	}
	#large-map-container {
		opacity: 0;
		z-index: 3;
	}
	.right-column.active #small-map-container {
		opacity: 0;
		z-index: 1;
	}
	.right-column.active #large-map-container {
		opacity: 1;
	}
	
	
	#small-map-pointer {
		position: absolute;
		bottom: 81%;
		left: 21.4%;
		opacity: 0;
		-webkit-transition: opacity 0.4s ease;
		   -moz-transition: opacity 0.4s ease;
			-ms-transition: opacity 0.4s ease;
			 -o-transition: opacity 0.4s ease;
				transition: opacity 0.4s ease;
	}
	#project.active #small-map-pointer {
		opacity: 1;
	}
	
	
	#large-map {
		width: 100%;
		margin-right: 0;
	}
	#large-map-pointer {
		position: absolute;
		z-index: 1;
		left: 50%;
		bottom: 17%;
		display: block;
		width: 15%;
		height: 42%;
	}
	#large-map-pointer > a {
		display: block;
		width: 100%;
		height: 100%;
	}
}



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




/****************************************/
/* 'SOHO' SECTION SPECIFIC				*/
/****************************************/

.soho-links-list {
	margin-top: 2em;
	padding-right: 96px;
	min-height: 96px;
}
.soho-links-list > img {
	float: right;
	margin-right: -96px;
}
.soho-links-list > ul > li {
	display: inline-block;
	padding: 0.5em;
	white-space: nowrap;
}
.soho-links-list > ul > li:first-child {
	width: 90%;
	padding-top: 0;
	font-size: 1.333em;
	color: #322826;
}
#soho-left > .half-column:first-child {
	display: none;
}

.multicol-text-4 {
}
.multicol-text-4 > p.more-lines {
	display: none;
}
#soho-deco-1 {
	display: none;
}

@media (min-width: 640px) {
	.soho-links-list {
		margin-top: 1em;
		text-align: center;
	}
	.soho-links-list > img {
		float: none;
		margin-right: 0;
		margin-bottom: 1em;
	}
	.soho-links-list > ul > li {
		display: list-item;
		padding: 0.5em 0;
	}	
	.soho-links-list > ul > li:first-child {
		width: 100%;
		font-weight: bold;
	}
	.soho-links-list:first-child {
		text-align: right;
	}
	.soho-links-list:last-child {
		text-align: left;
	}
	
	#soho-left > .half-column:first-child {
		display: block;
	}
	.multicol-text-4 {
		-webkit-column-count: 2; /* Chrome, Safari, Opera */
		-moz-column-count: 2; /* Firefox */
		column-count: 2;
		-webkit-column-gap: 20px; /* Chrome, Safari, Opera */
		-moz-column-gap: 20px; /* Firefox */
		column-gap: 20px;
	}
	.multicol-text-4 > p {
		margin-left: -0.5em;
	}
}
@media (min-width: 960px) {
	#soho .right-column {
		padding-bottom: 0;
	}
	.multicol-text-4 {
		-webkit-column-count: 3; /* Chrome, Safari, Opera */
		-moz-column-count: 3; /* Firefox */
		column-count: 3;
		-webkit-column-gap: 30px; /* Chrome, Safari, Opera */
		-moz-column-gap: 30px; /* Firefox */
		column-gap: 30px;
	}
	
	#soho-deco-1 {
		display: block;
		padding-left: 0;
		-webkit-transition: opacity 0.4s ease;
		   -moz-transition: opacity 0.4s ease;
			-ms-transition: opacity 0.4s ease;
			 -o-transition: opacity 0.4s ease;
				transition: opacity 0.4s ease;
	}
	#soho-deco-1 > img{
		display: block;
		width: 100%;
	}
	.right-column.active #soho-deco-1 {
		opacity: 0;
	}
	
	
}
@media (min-width: 1280px) {
	.multicol-text-4 {
		-webkit-column-count: 4; /* Chrome, Safari, Opera */
		-moz-column-count: 4; /* Firefox */
		column-count: 4;
		-webkit-column-gap: 40px; /* Chrome, Safari, Opera */
		-moz-column-gap: 40px; /* Firefox */
		column-gap: 40px;
	}
	.multicol-text-4 > p.more-lines {
		display: block;
		height: 32em;
	}
}
/****************************************/



/****************************************/
/* 'COMPANY' SECTION SPECIFIC				*/
/****************************************/
#company {
	/*min-height: 80%;*/
}
#company .left-column .deco-image > img {
	display: block;
	height: 100%;
}


@media (min-width: 1280px) {
	#company  {
		padding-bottom: 0px;
		-webkit-background-size: cover;
		   -moz-background-size: cover;
			-ms-background-size: cover;
			 -o-background-size: cover;
				background-size: cover;
	}
	#company .middle-column {
		/*padding-bottom: 70px;*/
	}
	#company .left-column {
	
		padding-bottom: 0;
	}
	
	
	
	
	#company .right-column {
		/*padding-bottom: 0;*/
	}
	
	
	
	#company-deco-1,
	#company-deco-2 {
		position: absolute;
		top: 0;
		bottom: 0;
		width: 50%;
		overflow: hidden;
	}
	#company-deco-1 {
		left: 0;
		padding-right: 20px;
	}
	#company-deco-2 {
		right: 0;
		padding-left: 20px;
	}
	#company-deco-3 {
		position: absolute;
		bottom: 0;
		right: 0;
		display: block;
		width: 50%;
		padding: 20px 40px 20px 20px;
	}
	#company-deco-1 > img,
	#company-deco-2 > img,
	#company-deco-3 > img{
		display: block;
		width: 100%;
	}
	
	
	
	
	
	#company .deco-image {
		height: 100%;
	}
}

@media (min-width: 960px) {
	
}

@media (min-width: 1600px) {
	#company .left-column .column-arrows {
		right: -60px;
	}
}


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








@media (min-width: 640px) {
}
@media (min-width: 1280px) {
}
@media (min-width: 1600px) {
}






/*
@media (min-width: 480px) {
}
@media (min-width: 768px) {
}
@media (min-width: 992px) {
}
@media (min-width: 1200px) {
}
@media (min-width: 1600px) {
}
*/




