/****************************************/
/* COMMON CLASSES
/****************************************/


/* Visibility */
@media (max-width : 1199px) {
	.desktop-only {
		display: none !important;
	}		
}
@media (min-width : 1200px) {
	.mobile-only {
		display: none !important;
	}	
}
/***/



/* Backgrounds */
.cover-bg {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;	
}
.contain-bg {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-webkit-background-size: contain;
	   -moz-background-size: contain;
		 -o-background-size: contain;
			background-size: contain;	
}
/***/




/* Text (fonts, alignments) */
.em-text {
}
.color-01 {
}

.smallest-text 	{ font-size: 0.7em; }
.smaller-text 	{ font-size: 0.8em; }
.small-text 	{ font-size: 0.9em; }
.big-text 		{ font-size: 1.1111em; }
.bigger-text	{ font-size: 1.25em; }
.biggest-text	{ font-size: 1.3333em; }

.fancy-font {
	font-family: Garamond;
	font-weight: 400;
}
h2 .fancy-font {
	line-height: 0.5em;
}


.text-align-left 	{ text-align: left; }
.text-align-center 	{ text-align: center; }
.text-align-right 	{ text-align: right; }
.text-align-justify { text-align: justify; }
.text-align-initial	{ text-align: initial; }
/***/








/****************************************/
/* LAYOUT
/****************************************/

/* Spacers and separators */
.spacer 			{ height: 30px; }
.big-spacer 		{ height: 45px; }
.bigger-spacer 		{ height: 60px; }
.biggest-spacer 	{ height: 90px; }
/***/



/* Lines */
.dots-h {
	width: 100%;
	height: 1px;
	margin: 30px 0;
	clear: both;
	background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAB9JREFUeNpiZGBg+A8EjAxQwAjkMCADJgY0gCEAEGAAjN8HAZNfnaAAAAAASUVORK5CYII=) 0 0 repeat-x;
}
.white-dots {
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAABCAYAAAD5PA/NAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAABRJREFUeNpi/A8EDAwMjAxQABBgADnxA/8VN3ojAAAAAElFTkSuQmCC); 
}
@media (min-width : 1200px) {
	
}
/***/



/* Misc */
.clear-fix {
	clear: both;
}
.clear-after:after {
	content: '';
	display: block;
	clear: both;
}
/***/






/****************************************/
/* COMMON ELEMENTS
/****************************************/


/* Loaders */
.loader {
	position: absolute;
	z-index: -9999;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #fff;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s;
		-ms-transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s;
			transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s; 
}
.loader.on {
	z-index: 9999;
	opacity: 1;
	-webkit-transition: opacity 0.4s ease 0s;
		-ms-transition: opacity 0.4s ease 0s;
			transition: opacity 0.4s ease 0s;
}
#site-loader {
	position: fixed;
}
.spinner {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 128px;
	height: 128px;
	margin: -64px auto auto -64px;
	background: url('../img/loader-logo.png') no-repeat;
}
.loader.animated .spinner {
	-webkit-animation: sk-rotateplane 2.4s infinite ease-in-out;
			animation: sk-rotateplane 2.4s infinite ease-in-out;	
}

@-webkit-keyframes sk-rotateplane {
	0% { 
		-webkit-transform: perspective(256px);
	}
	50% { 
		-webkit-transform: perspective(256px) rotateY(180deg);
	}
	100% { 
		-webkit-transform: perspective(256px) rotateY(180deg)  rotateX(180deg);
	}
}
@keyframes sk-rotateplane {
	0% { 
		-webkit-transform: perspective(256px) rotateX(0deg) rotateY(0deg);		
				transform: perspective(256px) rotateX(0deg) rotateY(0deg);
	} 
	50% { 
		-webkit-transform: perspective(256px) rotateX(0deg) rotateY(360deg);
				transform: perspective(256px) rotateX(0deg) rotateY(360deg);
    }
	100% { 
		-webkit-transform: perspective(256px) rotateX(0deg) rotateY(360deg);
				transform: perspective(256px) rotateX(0deg) rotateY(360deg);
	}
}
/***/



/* Faders */
.fader { 
	position: relative;
}
.fader-items {
	position: relative;
	height: 100%;
}
.fader-items > div {
	position: absolute;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	-webkit-transition:	opacity 1.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s; 
	   -moz-transition:	opacity 1.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s;
		-ms-transition:	opacity 1.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s;
		 -o-transition:	opacity 1.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s;
			transition:	opacity 1.6s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s;
}
.fast-fader > .fader-items > div {
	-webkit-transition-duration: 0.8s; 
	   -moz-transition-duration: 0.8s;
		-ms-transition-duration: 0.8s;
		 -o-transition-duration: 0.8s;
			transition-duration: 0.8s;	
}
.fader-items > div.current {
	z-index: 3;
	opacity: 1;

}
.fader-caption {
	position: absolute;
	right: 0;
	bottom: 0;
	background: rgba(40,40,40,0.85);
	color: #fff;
}
.fader-caption > div {
	padding: 10px 20px 9px 20px;
	white-space: nowrap;
}
@media only screen and (min-width : 1200px) {
	.fader-caption {
		right: 50%;
		bottom: 50%;
		left: 52px;
		max-width: 0;
		margin-bottom: -25px;
		overflow: hidden;
		font-size: 21px;
		-webkit-transition: max-width 0s ease 0.8s;
		   -moz-transition: max-width 0s ease 0.8s;
			-ms-transition: max-width 0s ease 0.8s;
			 -o-transition: max-width 0s ease 0.8s;
				transition: max-width 0s ease 0.8s;
	}
	.on > .fader-caption {
		max-width: 50%;
		-webkit-transition: max-width 0.8s ease 0.8s;
		   -moz-transition: max-width 0.8s ease 0.8s;
			-ms-transition: max-width 0.8s ease 0.8s;
			 -o-transition: max-width 0.8s ease 0.8s;
				transition: max-width 0.8s ease 0.8s;
	}
}
.fader-next,
.fader-prev {
	position: absolute;
	z-index: 9;
	top: 50%;
	width: 20px;
	height: 40px;
	margin-top: -20px;
	background-image: url('../img/large-arrows.png');
	background-repeat: no-repeat;
	background-size: auto 100%;
	cursor: pointer;
}
.fader-prev {
	left: 10px;
}
.fader-next {
	right: 10px;
	background-position: -20px 0;
}
@media (min-width : 1600px) {
	.fader-next,
	.fader-prev {
		top: 50%;
		width: 40px;
		height: 80px;
		margin-top: -40px;
		background-size: initial;
	}
	.fader-prev {
	}
	.fader-next {
		background-position: -40px 0;
	}
}
/***/



/* Maps */
.map-container,
.map-canvas {
	width: 100%;
	height: 100%;
}
.map-container {
	background: #fff;
}
.map-canvas {
	background: #ddd;
}
/***/



/* Lightbox */
.lightbox {
	position: fixed;
	z-index: -999;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 45px;
	opacity: 0;
	background: rgba(0,0,0,0.95);
	-webkit-transition: z-index 0s ease 0.5s, opacity 0.35s ease;
	   -moz-transition: z-index 0s ease 0.5s, opacity 0.35s ease;
		-ms-transition: z-index 0s ease 0.5s, opacity 0.35s ease;
		 -o-transition: z-index 0s ease 0.5s, opacity 0.35s ease;
			transition: z-index 0s ease 0.5s, opacity 0.35s ease;	
}
.lightbox.open {
	z-index: 999;
	opacity: 1;
	-webkit-transition: z-index 0s ease, opacity 0.5s ease;
	   -moz-transition: z-index 0s ease, opacity 0.5s ease;
		-ms-transition: z-index 0s ease, opacity 0.5s ease;
		 -o-transition: z-index 0s ease, opacity 0.5s ease;
			transition: z-index 0s ease, opacity 0.5s ease;	
}
.lightbox .spinner {
	background-color: #ccc;
}
.lightbox-content {
	position: relative;
	width: 100%;
	height: 100%;
}
.close-lightbox {
	position: absolute;
	z-index: 99;
	top: 0;
	right: 0;
	width: 48px;
	height: 48px;
	background: url('../img/close-white.png') 50% 50% no-repeat;
	cursor: pointer;
}
@media (min-width : 1200px) {
	.lightbox {
		padding: 55px;
	}
	.close-lightbox {
		top: 10px;
		right: 10px;
	}
}
/***/



/* Video players */
.video-container {
	position: relative;
	height: 0;
	padding-bottom: 56.25%;
}
.video-container > .video-canvas {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
.video-container > .video-canvas > iframe {
	width: 100%;
	height: 100%;	
}
/***/



/* Swiper mods */
.swiper-button-prev,
.swiper-button-next {
	top: auto;
	bottom: 35Px;
	width: 50px;
	height: 50px;
	margin-top: -25px;
	background-color: rgba(0,0,0,0.5);
	-webkit-background-size: initial;
			background-size: initial;
	cursor: pointer;
}
.swiper-button-prev:hover,
.swiper-button-next:hover {
	background-color: rgba(0,0,0,0.8);
}
.swiper-button-prev, 
.swiper-container-rtl .swiper-button-next {
	left: 6px;
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADcAAAA3CAYAAACo29JGAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXxJREFUeNrs2b1Kw1AUB/Bz8zVEIm52U3dXn0I3p4qLqK/g5tBBfIUW3ERHR19Dl4ziIgF3dcjX9X9C8gBqvGnD/8Khl5Sm/Ho+EhpjrZWxLk9GvIgjjjjiiCOOOOKII4444ogjjjjiiHOES9NUsixr9lVVSVEUe9ba27qudxDShet/2nrPnDFmPwiCBZCPAL0qVmHte05xQR8nKcuyyRjWhed5B8Cc5nn+FEWR+L7foFzDesFpVpIkkTiOFyi7CQ4dId7CMBRkcNCeM3/tA2RtAsQVthmgl0Nl6V9w+Pw9MFPA5ijJDRyKf3GaL8R06coSvXaDvtrC9gP7awDXgP3poKqXMnMYHFqGm+ixObL3jEMzLUsdMtpzQ5ZoX5eCd8QxINvI3B1+sHVc65oJ2k7Rlb9D+QTqBPEC5AOytqtVodO0g67cQGnLUnT0d3chiDP04SFez/Wy0H0Hsuq0TA0fPhJHHHHEEUccccQRRxxxxBFHHHHEETfa9S3AAJgBsSXtFRxoAAAAAElFTkSuQmCC);
	background-position: 0 50%;
}
.swiper-button-next, 
.swiper-container-rtl .swiper-button-prev {
	right: 6px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADcAAAA3CAYAAACo29JGAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAXdJREFUeNrs2b9Kw1AUx/H8hRqIDyAugpuuTj6Cm2Nx0d0ncBB0s5OTFLo51MnRR3B1CrqIW9DNpQ5pk/g9gYCjhViT8LtwuH9SuHw4J/dC6pZl6fS1eU6Pm3DCCSeccMIJJ5xwwgknnHDCCSeccC3B2Re2oih+xhZrt/P5fC/P8+o3aZo6SZJ0D+e6btUbzDD0b/QPQRCMeXbwV/sGKysRz6uQdRazLJsOBoMX1q95vAP2arFYdPedM5whyZgThqEtPYEdEvtRFI3jOK7gje3331+cbX8L0JdMN8jeGfj3NpbllIiWzSbxRcY+AZ74vr/G8rCNuItlS52s4SpmAE8ZP/LuTaxs24h7/m0p2uFhCBsDOydr21wNh8w/Onda1s2uAgMBcSjBdVA3zDMeHRGzTp6WhjKQnYaGI2u7ZOye8Stx3DRsZZmrT+T6rqNt0o8A39FP6ku+8atHfz4KJ5xwwgknnHDCCSeccMIJJ5xwwgnX2/YtwAAu1LH+a6xfxwAAAABJRU5ErkJggg==);
	background-position: 50% 50%;
}
.swiper-slide {
}
.swiper-slide-caption {
	position: absolute;
	z-index: 9;
	left: 45px;
	bottom: 35px;
	height: 47px;
	padding: 10px 20px;
	background-color: rgba(0,0,0,0.5);
	color: #fafafa;
	white-space: nowrap;
	opacity: 0;
	-webkit-transform: translate3d(50px,0,0);
			transform: translate3d(50px,0,0);
}
.swiper-slide-active .swiper-slide-caption {
	opacity: 1;
	-webkit-transform: none;
			transform: none;
	-webkit-transition: all 0.5s ease 0.5s;
			transition: all 0.5s ease 0.5s;
}
.swiper-slide.video-slide {
}
.swiper-slide.video-slide .video-container {
	position: absolute;
    top: 50%;
    left: 0;
    width: 100%;
    -webkit-transform: translateY(-50%);
			transform: translateY(-50%);
}
@media (min-width : 1200px) {
	.swiper-button-prev,
	.swiper-button-next {
		top: 50%;
		bottom: auto;
	}
	.swiper-button-prev, 
	.swiper-container-rtl .swiper-button-next {
		left: 10px;
	}
	.swiper-button-next, 
	.swiper-container-rtl .swiper-button-prev {
		right: 10px;
	}
	.swiper-slide-caption {
		bottom: 50%;
		left: 70px;
		height: 50px;
		margin-bottom: -25px;
	}
}
/***/



/* Icons list */
.icons-list {
	margin: 0 -20px;
	text-align: center;
	font-size: 24px;
	font-weight: 400;
}
.icons-list > div {
	margin: 30px 0;
	padding: 0 20px;
}
.icons-list img {
	margin: 10px 0;
}
.icons-list h4 {
	margin: 0;
	min-height: 2.1em;
}
@media only screen and (min-width : 524px) {
	.icons-list {
		margin: 0 -40px;
	}
	.icons-list:after {
		content: '';
		display: block;
		clear: both;
	}
	.icons-list > div {
		width: 50%;
		float: right;
		padding: 0 30px;
	}
	.icons-list > div:nth-child(odd) {
		clear: both;
	}
}
@media only screen and (min-width : 1200px) {
	.icons-list {
		font-size: 32px;
	}
	.icons-list > div {
		padding: 1.5% 30px;
	}
}
@media only screen and (min-width : 1600px) {
}
/***/


/* Icons */
.text-icon,
.text-icon > img {
	vertical-align: middle;
}
.text-icon {
}
/***/




/* Deco */
.deco-line,
.inline-deco-line {
	width: 200px;
	height: 0px;
	border: 4px solid;
}
.inline-deco-line {
	display: inline-block;
}
/***/


