/********************************************************************************/
/* 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;	
}
.shaded-bg:after {
	content: '';
	position: absolute;
	z-index: 6;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	background-color: rgba(0,0,0,0.3);
}

.parallax-bg {
	background-repeat: no-repeat;
	background-position: 50% 0;
	-webkit-transform: translateZ(0);
			transform: translateZ(0);
	-webkit-transition: background-position 0.1s ease;
			transition: background-position 0.1s ease;	
}
/***/



/* Colors */
.white-color 	{ color: #fff; }
.cold-color 	{}
.cool-color 	{}
.warm-color 	{ color: #aa8825; }
.hot-color 		{ color: #d4be6e; }
.fancy-color	{ color: #e5ac79; }
.parent-color	{ color: inherit; }
/***/



/* Fonts */
.smaller-font 	{ font-size: 0.75em; }
.small-font 	{ font-size: 0.8333em; }
.large-font 	{ font-size: 1.1666em; }
.larger-font 	{ font-size: 1.3333em; }
.latin-text 	{ font-size: 0.8333em; }
.strong-font 	{ font-weight: 400; }

.fancy-text		{
	font-family: 'FbAtzofen', sans-serif;
}

.atzofen-font {
	font-family: 'FbAtzofen', sans-serif;
}
.noto-sans-font	{
	font-family: 'Noto Sans', sans-serif;
}
/***/



/* Alignments */
.text-align-initial 	{ text-align: initial; }
.text-align-left 		{ text-align: left; }
.text-align-right 		{ text-align: right; }
.text-align-center 		{ text-align: center; }
.text-align-justify 	{ text-align: justify; }
.text-align-justify-2	{ text-align: justify; text-align-last: center;}
/***/



/* Element theme */
.black-theme {
	background-color: #000;
	color: #fff;
}
.darker-theme {
	background-color: rgba(0,0,0,0.8);
	color: #fff;
}
.dark-theme {
	background-color: rgba(0,0,0,0.75);
	color: #fff;
}
.grey-theme {
	background-color: #ddd;
	color: #fff;
}
.light-theme {
	background-color: rgba(228,204,177,0.8);
	color: #060606;
}
.lighter-theme {
	background-color: rgba(255,255,255,0.85);
	color: #040404;
}
.white-theme {
	background-color: #fff;
	color: #040404;
}
.cold-theme {
	background-color: rgba(29,30,62,0.9);
	color: #fff;
}
.cool-theme {
	background-color: rgba(234,205,172,0.75);
	color: #040404;
}
.warm-theme {
	background-color: rgba(149,120,37,0.75);
	color: #fff;
}
.hot-theme {
}
.fancy-theme { 
}
.custom-theme {
}
/***/



/* Buttons */
button {
	cursor: pointer;
	outline: none;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
}

.button {
}

.inline-button {
	display: inline-block;
	width: auto;
}
/***/



/* Icons */
.inline-icon {
	display: inline-block;
	margin: 0 0.5em;
	vertical-align: middle;
}

.map-icon {
    width: 24px;
    height: 24px;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAEtJREFUeNpi/A8EDDQETAw0BqMWDLwFLEhsRiqb/X80DkYtGIL5gNqAcUgG0X9YDh6NZIxCDZfYkPABIxaXM2Kz4D8FBg9cJAMEGADJtAs0/BxEQwAAAABJRU5ErkJggg==);
}

/***/


/* Misc. */
.clear,
.clear-fix {
	clear: both;
}
/***/


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





/********************************************************************************/
/* LAYOUT
/********************************************************************************/

/* Containers */
.narrowest-container,
.narrower-container,
.narrow-container,
.container,
.default-container,
.wide-container,
.wider-container,
.widest-container {
	max-width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}
.no-padding-container {
	padding: 0;
}
.narrowest-container 	{ width: 540px; }
.narrower-container 	{ width: 720px; }
.narrow-container		{ width: 960px; }
.container,
.default-container		{ width: 1140px; /* 384 * 3 + 30 * 2 = 1212 */ }
.wide-container			{ width: 1263px; /* 1280 - 17 */}
.wider-container		{ width: 1583px; /* 1600 - 17 */ /* 768 * 2 + 30 = 1566 */ }
.widest-container 		{ width: 1920px; }
.fluid-container,
.fullwidth-container 	{ width: 100%; }

.flex-container {
	display: flex;
}
/***/


/* Rows and columns */
.row {
	display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
}
.col {
	width: 100%;
	min-height: 1px;
	margin-top: 15px;
	margin-bottom: 15px;
	padding-left: 15px;
	padding-right: 15px;
}
.col-1  { width:  8.33%; } 
.col-2  { width: 16.66%; } 
.col-3  { width: 25.00%; } 
.col-4  { width: 33.33%; } 
.col-5  { width: 41.66%; } 
.col-6  { width: 50.00%; } 
.col-7  { width: 58.33%; } 
.col-8  { width: 66.66%; } 
.col-9  { width: 75.00%; } 
.col-10 { width: 83.33%; } 
.col-11 { width: 91.66%; } 
.col-12 { width: 100%;   }
@media (max-width : 575px) {
	.col-xs-1  { width:  8.33%; } 
	.col-xs-2  { width: 16.66%; } 
	.col-xs-3  { width: 25.00%; } 
	.col-xs-4  { width: 33.33%; } 
	.col-xs-5  { width: 41.66%; } 
	.col-xs-6  { width: 50.00%; } 
	.col-xs-7  { width: 58.33%; } 
	.col-xs-8  { width: 66.66%; } 
	.col-xs-9  { width: 75.00%; } 
	.col-xs-10 { width: 83.33%; } 
	.col-xs-11 { width: 91.66%; } 
	.col-xs-12 { width: 100%;   }
}
@media (min-width : 576px) {
	.col-sm-1  { width:  8.33%; } 
	.col-sm-2  { width: 16.66%; } 
	.col-sm-3  { width: 25.00%; } 
	.col-sm-4  { width: 33.33%; } 
	.col-sm-5  { width: 41.66%; } 
	.col-sm-6  { width: 50.00%; } 
	.col-sm-7  { width: 58.33%; } 
	.col-sm-8  { width: 66.66%; } 
	.col-sm-9  { width: 75.00%; } 
	.col-sm-10 { width: 83.33%; } 
	.col-sm-11 { width: 91.66%; } 
	.col-sm-12 { width: 100%;   }
}
@media (min-width : 768px) {
	.col-md-1  { width:  8.33%; } 
	.col-md-2  { width: 16.66%; } 
	.col-md-3  { width: 25.00%; } 
	.col-md-4  { width: 33.33%; } 
	.col-md-5  { width: 41.66%; } 
	.col-md-6  { width: 50.00%; } 
	.col-md-7  { width: 58.33%; } 
	.col-md-8  { width: 66.66%; } 
	.col-md-9  { width: 75.00%; } 
	.col-md-10 { width: 83.33%; } 
	.col-md-11 { width: 91.66%; } 
	.col-md-12 { width: 100%;   }
}
@media (min-width : 992px) {
	.col-lg-1  { width:  8.33%; } 
	.col-lg-2  { width: 16.66%; } 
	.col-lg-3  { width: 25.00%; } 
	.col-lg-4  { width: 33.33%; } 
	.col-lg-5  { width: 41.66%; } 
	.col-lg-6  { width: 50.00%; } 
	.col-lg-7  { width: 58.33%; } 
	.col-lg-8  { width: 66.66%; } 
	.col-lg-9  { width: 75.00%; } 
	.col-lg-10 { width: 83.33%; } 
	.col-lg-11 { width: 91.66%; } 
	.col-lg-12 { width: 100%;   }
}
@media (min-width : 1200px) { 
	.col-xl-1  { width:  8.33%; } 
	.col-xl-2  { width: 16.66%; } 
	.col-xl-3  { width: 25.00%; } 
	.col-xl-4  { width: 33.33%; } 
	.col-xl-5  { width: 41.66%; } 
	.col-xl-6  { width: 50.00%; } 
	.col-xl-7  { width: 58.33%; } 
	.col-xl-8  { width: 66.66%; } 
	.col-xl-9  { width: 75.00%; } 
	.col-xl-10 { width: 83.33%; } 
	.col-xl-11 { width: 91.66%; } 
	.col-xl-12 { width: 100%;   } 
}
@media (min-width : 1600px) { 
	.col-xxl-1  { width:  8.33%; } 
	.col-xxl-2  { width: 16.66%; } 
	.col-xxl-3  { width: 25.00%; } 
	.col-xxl-4  { width: 33.33%; } 
	.col-xxl-5  { width: 41.66%; } 
	.col-xxl-6  { width: 50.00%; } 
	.col-xxl-7  { width: 58.33%; } 
	.col-xxl-8  { width: 66.66%; } 
	.col-xxl-9  { width: 75.00%; } 
	.col-xxl-10 { width: 83.33%; } 
	.col-xxl-11 { width: 91.66%; } 
	.col-xxl-12 { width: 100%;   } 
}
@media (max-width : 768px) { /* mobile */
	.col--sm-1  { width:  8.33%; } 
	.col--sm-2  { width: 16.66%; } 
	.col--sm-3  { width: 25.00%; } 
	.col--sm-4  { width: 33.33%; } 
	.col--sm-5  { width: 41.66%; } 
	.col--sm-6  { width: 50.00%; } 
	.col--sm-7  { width: 58.33%; } 
	.col--sm-8  { width: 66.66%; } 
	.col--sm-9  { width: 75.00%; } 
	.col--sm-10 { width: 83.33%; } 
	.col--sm-11 { width: 91.66%; } 
	.col--sm-12 { width: 100%;   }
}
@media (min-width : 768px) { /* tablet */
	.col--md-1  { width:  8.33%; } 
	.col--md-2  { width: 16.66%; } 
	.col--md-3  { width: 25.00%; } 
	.col--md-4  { width: 33.33%; } 
	.col--md-5  { width: 41.66%; } 
	.col--md-6  { width: 50.00%; } 
	.col--md-7  { width: 58.33%; } 
	.col--md-8  { width: 66.66%; } 
	.col--md-9  { width: 75.00%; } 
	.col--md-10 { width: 83.33%; } 
	.col--md-11 { width: 91.66%; } 
	.col--md-12 { width: 100%;   }
}
@media (min-width : 1200px) { /* laptop + desktop */
	.col--lg-1  { width:  8.33%; } 
	.col--lg-2  { width: 16.66%; } 
	.col--lg-3  { width: 25.00%; } 
	.col--lg-4  { width: 33.33%; } 
	.col--lg-5  { width: 41.66%; } 
	.col--lg-6  { width: 50.00%; } 
	.col--lg-7  { width: 58.33%; } 
	.col--lg-8  { width: 66.66%; } 
	.col--lg-9  { width: 75.00%; } 
	.col--lg-10 { width: 83.33%; } 
	.col--lg-11 { width: 91.66%; } 
	.col--lg-12 { width: 100%;   } 
}
/***/


/* Vertical spacers */
.vspacer {
	clear: both;
}
.vspacer.smallest 	{ height: 1px; }
.vspacer.smaller 	{ height: 10px; }
.vspacer.small 		{ height: 15px; }
.vspacer,
.vspacer.medium, 
.vspacer.default 	{ height: 30px; }
.vspacer.big 		{ height: 45px; }
.vspacer.bigger 	{ height: 60px; }
.vspacer.biggest 	{ height: 90px; }
/***/


/* Vertical separators */
.vseparator {
	clear: both;
	display: block;
	border-top: 1px solid;
	/* width: 33vw; */
}
.vseparator.smallest { margin: 1px auto; }
.vseparator.smaller { margin: 10px auto; }
.vseparator.small { margin: 15px auto; }
.vseparator.default { margin: 30px auto; }
.vseparator.big { margin: 45px auto; }
.vseparator.bigger { margin: 60px auto; }
.vseparator.biggest { margin: 90px auto; }

.inline-vseparator {
	display: inline-block;
}
.inline-vseparator:before,
.inline-vseparator:after {
	content: '';
	display: block;
	height: 0;
}

.fancy-vseparator {
	min-width: 40px;
	min-height: 40px;
	border: 0;
	background: url('../img/logo-deco.png') 50% 50% no-repeat;
}
/***/


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





/********************************************************************************/
/* COMMON ELEMENTS
/********************************************************************************/

/* Loaders */ 
.loader {
	position: absolute;
	z-index: -99;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s;
	   -moz-transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s;
		 -o-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: 99;
	opacity: 1;
	-webkit-transition: opacity 0.4s ease 0s, z-index 0s ease 0s;
	   -moz-transition: opacity 0.4s ease 0s, z-index 0s ease 0s;
		 -o-transition: opacity 0.4s ease 0s, z-index 0s ease 0s;
			transition: opacity 0.4s ease 0s, z-index 0s ease 0s;
}
.loader > div {
	position: absolute;
	top: 50%;
	left: 50%;
	width: 64px;
	height: 64px;
	margin: -32px 0 0 -32px;
    background-image: url(data:image/png;base64,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);
	background-position: 50% 50%;
	background-repeat: no-repeat;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease 0s;
	   -moz-transition: opacity 0.4s ease 0s;
		 -o-transition: opacity 0.4s ease 0s;
			transition: opacity 0.4s ease 0s;
}
.loader.on > div {
	opacity: 1;
	-webkit-transition: opacity 0.4s ease 0.8s;
	   -moz-transition: opacity 0.4s ease 0.8s;
		 -o-transition: opacity 0.4s ease 0.8s;
			transition: opacity 0.4s ease 0.8s;
}
.loader.loading > div {
	-webkit-animation: sk-rotateplane 3s infinite ease-in-out;
			animation: sk-rotateplane 3s infinite ease-in-out;
}
@-webkit-keyframes sk-rotateplane {
	0% { 
		-webkit-transform: perspective(256px) rotateY(0deg);
	}
	30% { 
		-webkit-transform: perspective(256px) rotateY(360deg);
	}
	60% { 
		-webkit-transform: perspective(256px) rotateY(720deg);
	}
	100% { 
		-webkit-transform: perspective(256px) rotateY(720deg);
	}
}
@keyframes sk-rotateplane {
	0% { 
		-webkit-transform: perspective(256px) rotateY(0deg);		
				transform: perspective(256px) rotateY(0deg);
	} 
	30% { 
		-webkit-transform: perspective(256px) rotateY(360deg);
				transform: perspective(256px) rotateY(360deg);
    }
	60% { 
		-webkit-transform: perspective(256px) rotateY(720deg);
				transform: perspective(256px) rotateY(720deg);
    }
	100% { 
		-webkit-transform: perspective(256px) rotateY(720deg);
				transform: perspective(256px) rotateY(720deg);
	}
}

#site-loader {
	position: fixed;
	background: #fff;
}
#site-loader.on {
	z-index: 9999;	
}
/***/



/* 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 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s; 
	   -moz-transition:	opacity 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s;
		-ms-transition:	opacity 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s;
		 -o-transition:	opacity 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s;
			transition:	opacity 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 1s;
}
.fader-items > div.current {
	z-index: 3;
	opacity: 1;
	-webkit-transition:	opacity 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s; 
	   -moz-transition:	opacity 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s;
		-ms-transition:	opacity 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s;
		 -o-transition:	opacity 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s;
			transition:	opacity 1s cubic-bezier(0.250, 0.460, 0.450, 0.940) 0s;
}
/***/




/* Tabs / tabbed content*/
.tabs-container {
}
.tabs-menu {
	margin: 1em 0;
}
.tabs-menuitem {
    display: inline-block;
    margin-inline-end: 0.5em;
	padding: 0.25em 0;
	color: inherit;
}
.tabs-content {
}
.tabs-wrapper {
}
.tabs-wrapper > .tab {
	height: 0;
	overflow: hidden;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
			transition: opacity 0.4s ease;
}
.tabs-wrapper > .tab.on {
	height: auto;
	opacity: 1;
	-webkit-transition: opacity 0.4s ease 0.2s;
			transition: opacity 0.4s ease 0.2s;
}
/***/



/* Swipers */
.swiper-container {
}
.swiper-slide {
}
.swiper-slide img {
}
.swiper-button-prev, 
.swiper-button-next {
	width: 28px;
	height: 50px;
	margin: -25px 15px auto 15px;
	background: none !important;
}
.swiper-button-prev::before, 
.swiper-button-next::before,
.swiper-button-prev::after, 
.swiper-button-next::after {
	content: '';
	display: block;
	width: 28px;
	height: 4px;
	background: #fff;
	margin-top: 13px;
}
.swiper-slide-caption {
	position: absolute;
	z-index: 3;
	bottom: 0;
	right: 0;
	width: 100%;
	padding: 1em 2em;
	text-align: right;
	background: rgba(0,0,0,0.3);
	color: #fff;
	text-shadow: 1px 2px 6px rgba(0,0,0,0.5);
	-webkit-transform: translateY(100%);
			transform: translateY(100%);
	-webkit-transition:	-webkit-transform 0.4s ease 0.6s; 
			transition:			transform 0.4s ease 0.6s;
}
.swiper-slide-active .swiper-slide-caption {
	-webkit-transform: none;
			transform: none;	
}
/***/





/* Google maps */
.google-map {
}
.small-map { 
	height: 240px; 
}
.medium-map { 
	height: 360px; 
}
.large-map { 
	height: 640px; 
}
.google-map .map-canvas {
	height: 100%;
	border: 1px solid #ccc;
	background: #ddd;
}
.google-map > .map-marker,
.google-map > .map-pin,
.google-map > .map-infobox {
	display: none;
}
.map-popup {
}
.map-popup-tip-anchor {
	height: 0;
	position: absolute; 
	width: 300px;
}
.map-popup-bubble-anchor {
	position: absolute;
	width: 100%;
	bottom: 12px;
	left: 0;
	transform: translate3d(0,-100px,0);
	opacity: 0;
}
.map-loaded .map-popup-bubble-anchor {
	transform: translate3d(0,0,0);
	opacity: 1;
	-webkit-transition: all 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000);
			transition: all 0.5s cubic-bezier(0.770, 0.000, 0.175, 1.000);
}
.map-popup-bubble-anchor::after {
	content: "";
	position: absolute;
	top: -1px;
	left: 0;
	transform: translate(-50%, 0);
	width: 0;
	height: 0;
	border-left: 12px solid transparent;
	border-right: 12px solid transparent;
	border-top: 16px solid #16334e;
}
.map-popup-bubble-content {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	transform: translate(-50%,-100%);
	background-color: #16334e;
	color: #fff;
	padding: 20px 30px;
	overflow-y: auto;
	box-shadow: 0px 2px 10px 1px rgba(0,0,0,0.5);
	font-size: 16px;
}
.map-popup-bubble-content h3 {
	margin: 0.5em 0;
} 
.map-popup-bubble-content a {
	color: inherit;
	font-size: 1.3333em;
}
.map-popup-bubble-content p {
}
.map-popup-bubble-content a.open-google-map {
	display: inline-block;
	width: 30px;
	height: 40px;
	background: url('../img/map-pin.png') 50% 50% no-repeat;
}
.google-maps-link {
	border-top: 1px solid;
	padding: 0.5em 0 0.25em 0;
	text-align: center;
}
/***/





/* Lightbox */
.lightbox {
	position: fixed;
	z-index: -999;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	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;	
}
.map-lightbox {
	padding: 10px;
}

.lightbox .spinner {
	background-color: #ccc;
}
.lightbox-content {
	position: relative;
	width: 100%;
	height: 100%;
}

.close-lightbox {
	position: absolute;
	z-index: 99;
	top: 10px;
	right: 10px;
	width: 48px;
	height: 48px;
	cursor: pointer;
}
.close-lightbox::before,
.close-lightbox::after {
	content: '';
	display: block;
	position: absolute;
	top: 22px;
	left: 11px;
	width: 32px;
	height: 4px;
	background: #FFF;
	box-shadow: 0 0 4px 0 rgba(0,0,0,0.3);
	opacity: 0;
}
.lightbox.open .close-lightbox::before,
.lightbox.open .close-lightbox::after {
	opacity: 1;
	-webkit-transition: all 0.4s ease 1.2s;
			transition: all 0.4s ease 1.2s;
}
.lightbox.open .close-lightbox::before {
	transform: rotateZ(45deg);
}
.lightbox.open .close-lightbox::after {
	transform: rotateZ(-45deg);
}

.lightbox-content .swiper-container {
	height: 100%;
}
.lightbox-content .swiper-slide > img {
	position: absolute;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	margin: auto;
	max-width: 100%;
	height: auto;
}
.lightbox .swiper-button-prev, 
.lightbox .swiper-button-next {
	opacity: 0;
	-webkit-transition: all 0.4s ease 1s;
			transition: all 0.4s ease 1s;
}
.lightbox .swiper-button-prev {
	-webkit-transform: translateX(25px);
			transform: translateX(25px);
} 
.lightbox .swiper-button-next {
	-webkit-transform: translateX(-25px);
			transform: translateX(-25px);
}
.lightbox.open .swiper-button-prev, 
.lightbox.open .swiper-button-next {
	opacity: 1;
	-webkit-transform: none;
			transform: none;	
}
.lightbox .swiper-button-prev::before, 
.lightbox .swiper-button-next::before,
.lightbox .swiper-button-prev::after, 
.lightbox .swiper-button-next::after {
	-webkit-transform: none;
			transform: none;
	-webkit-transition: all 0.4s ease 1.2s;
			transition: all 0.4s ease 1.2s;
}
.lightbox.open .swiper-button-prev::before {
	-webkit-transform: rotateZ(45deg);
			transform: rotateZ(45deg);
}
.lightbox.open .swiper-button-prev::after {
	-webkit-transform: rotateZ(-45deg);
			transform: rotateZ(-45deg);
}
.lightbox.open .swiper-button-next::before {
	-webkit-transform: rotateZ(-45deg);
			transform: rotateZ(-45deg);
}
.lightbox.open .swiper-button-next::after {
	-webkit-transform: rotateZ(45deg);
			transform: rotateZ(45deg);
}	

.lightbox .swiper-slide-active .swiper-slide-caption {
	-webkit-transform: translateY(100%);
			transform: translateY(100%);
}
.lightbox.open .swiper-slide-active .swiper-slide-caption {
	-webkit-transform: none;
			transform: none;	
}


.lightbox-content .map-canvas {
	height: 100%;
}

@media (min-width : 1200px) {
	.lightbox {
	}
	.map-lightbox {
	    padding: 75px;
	}
	.close-lightbox {
		top: 20px;
		right: 20px;
	}
}
/***/





/* Video players */
.video-container {
	position: relative;
	width: 100%;
	padding-top: 56.25%;
	box-shadow: 0 2px 4px -2px rgba(0,0,0,0.5);
	background: #000;
}
.video-player {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
/***/



/* Forms */
.form-container {
	position: relative;
}
.form-container form {
	text-align: initial;
}
.form-container > form.off {
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
			transition: opacity 0.4s ease;	
}
.form-row {
	margin: 0 -0.5em;
}
.form-col {
	padding: 0 0.5em;
}
.form-field {
	position: relative;
	margin-bottom: 1.25em;
}
.subscribe-field {
    display: flex;
    align-items: flex-start;
}
input[type=text],
input[type=email],
textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	outline: 0;
	border: 1px solid;
	padding: 0.75em 1em 0.5em 1em;
	text-align: initial;
	text-align-last: initial;
	line-height: 1.1111em;
	font-family: inherit;
	font-size: inherit;
	font-weight: 300;
	letter-spacing: 1px;
	background: #fff;
	color: inherit;
}
input[type=checkbox] {
	appearance: none;
	outline: 0;
	margin: 0;
	border: 1px solid;
	color: inherit;
}
input[type=checkbox]:before {
	content: "\00a0";
	display: inline-block;
	width: 1.3333em;
	height: 1.3333em;
	text-align: center;
	font-weight: 700;
	-webkit-transform: scale(0);
			transform: scale(0);
	-webkit-transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
			transition: all 0.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}
input[type=checkbox]:checked:before {
	content: "\2713";
	-webkit-transform: none;
			transform: none;
}
input[type=checkbox] + label {
    padding: 0 0.5em;
	line-height: 1.3333em;
}
::-webkit-input-placeholder { color: #aaa; }
:-moz-placeholder { color: #aaa; opacity: 1; }
::-moz-placeholder { color: #aaa; opacity: 1; }
:-ms-input-placeholder { color: #aaa; }
input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
	-webkit-box-shadow: 0px 1px 4px -2px rgba(0,0,0,0.7);
	   -moz-box-shadow: 0px 1px 4px -2px rgba(0,0,0,0.7);
			box-shadow: 0px 1px 4px -2px rgba(0,0,0,0.7);
}
input[type=submit] {
	display: block;
	box-sizing: border-box;
	width: 6em;
	outline: 0;
	border: 1px solid #040404;
	padding: 0.45em 1em 0.25em 1em;
	text-align: center;
	font-family: inherit;
	font-size: 1.3333em;
	font-weight: 400;
	letter-spacing: 1px;
	background: #1d1e3e;
	color: #fff;
	cursor: pointer;
}

.form-field > .error-box {
	display: block;
	position: absolute;
	z-index: -1;
	top: 0.25em;
	right: 50%;
	border-radius: 4px;
	padding: 0.45em 1em 0.25em 1em;
	white-space: nowrap;
	background: #f44336;
	color: #fff;
	font-size: 0.9em;
	opacity: 0;
	-webkit-transform: translateX(-40px);
	   -moz-transform: translateX(-40px);
		-ms-transform: translateX(-40px);
		 -o-transform: translateX(-40px);
			transform: translateX(-40px);
	-webkit-transition: all 0.35s ease;
			transition: all 0.35s ease;
	-webkit-box-shadow: 0px 2px 4px -2px rgba(0,0,0,0.7);
	   -moz-box-shadow: 0px 2px 4px -2px rgba(0,0,0,0.7);
			box-shadow: 0px 2px 4px -2px rgba(0,0,0,0.7);
}
.form-field > .error-box:after {
	content: "";
	display: block;
	position: absolute;
	right: -5px;
	top: 50%;
	width: 0px;
	height: 0px;
	margin-top: -5px;
	border-right: 0px;
	border-top: 5px solid transparent;
	border-left: 5px solid #f44336;
	border-bottom: 5px solid transparent;
}
.form-field.invalid-field > .error-box {
	z-index: 9;
	opacity: 1;
	-webkit-transform: none;
	   -moz-transform: none;
		-ms-transform: none;
		 -o-transform: none;
			transform: none;
}

.form-return {
	position: absolute;
	z-index: -9;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
    font-size: 1.125em;
	text-align: center;
	opacity: 0;
	-webkit-transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s;
			transition: opacity 0.4s ease 0s, z-index 0s ease 0.4s;	
}
.form-return.on {
	z-index: 9;
	opacity: 1;
	-webkit-transition: opacity 0.4s ease 0.4s;
			transition: opacity 0.4s ease 0.4s;
}
.form-success, 
.form-failure {
	display: none;
}
.form-success.on, 
.form-failure.on {
	display: flex;
	height: 90%;
	flex-direction: column;
	justify-content: center;
}
@media (min-width : 1200px) {
}
/***/



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

