/********************************************************************************/
/* CLASSES and OBJECTS
/********************************************************************************/


/* 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;	
}
.cover-bg.right-bg {
	background-position: 90% 50%;
}

.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);
}

.fixed-bg {
	background-attachment: fixed;
}

.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;	
	*/
	will-change: background-position;
}
/***/



/* Colors */
.black-color 		{ color: var(--black-color); }
.dark-color 		{ color: var(--dark-color); }
.grey-color 		{ color: var(--grey-color); }
.light-color 		{ color: var(--light-color); }
.white-color 		{ color: var(--white-color); }

.cold-color 		{ color: var(--cold-color); }
.cool-color 		{ color: var(--cool-color); }
.warm-color 		{ color: var(--warm-color); }
.hot-color 			{ color: var(--hot-color); }

.success-color 		{ color: var(--success-color); }
.danger-color 		{ color: var(--danger-color); }
.warning-color 		{ color: var(--warning-color); }
.info-color 		{ color: var(--info-color); }

.primary-color 		{ color: var(--primary-color); }
.secondary-color 	{ color: var(--secondary-color); }
.fancy-color 		{ color: var(--fancy-color); }
.link-color 		{ color: var(--link-color); }
.link-hover-color 	{ color: var(--link-hover-color); }
/***/



/* Fonts */
.smaller-font 	{ font-size: 0.750em; }
.small-font 	{ font-size: 0.875em; }
.large-font 	{ font-size: 1.1111em; }
.larger-font 	{ font-size: 1.2500em; }
.latin-text 	{ font-size: 0.875em; }
.strong-font 	{ font-weight: 700; }

.fancy-font		{
	font-family: 'AlmoniNeue', sans-serif;
	line-height: 1.125;
}
.spaced-font	 {
	letter-spacing: 0.075em;
}
/***/



/* 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-center .text-align-justify, 
.text-align-justify-2 	{ text-align: justify; text-align-last: center;}
/***/



/* Element themes */
.primary-theme 		{ background-color: var(--primary-color); color: var(--white-color); }
.secondary-theme 	{ background-color: var(--secondary-color); color: var(--white-color); }
.black-theme 		{ background-color: var(--black-color); color: var(--white-color); }
.darker-theme 		{ }
.dark-theme 		{ }
.grey-theme 		{ }
.light-theme 		{ }
.lighter-theme 		{ }
.white-theme 		{ background-color: var(--white-color); color: var(--dark-color); }
.cold-theme 		{ }
.cool-theme 		{ }
.warm-theme 		{ }
.hot-theme 			{ }
.fancy-theme 		{ }
.custom-theme 		{ background-color: rgba(0,69,99,.9); color: #fff; }
/***/



/* Wrappers */
/***/



/* Buttons */
button {
	cursor: pointer;
	outline: none;
	border: 0;
	background: none;
	color: inherit;
	font: inherit;
}
.button {
}
.inline-button {
	display: inline-block;
	width: auto;
}

.icon-link {
	display: inline-block;
	width: 1.6em;
	height: 1.6em;
	margin: 0 0.25em;
	background-position: 50% 50%;
	background-repeat: no-repeat;
	-webkit-background-size: 100% auto;
			background-size: 100% auto;
}
button.icon-link {
	padding: 0;
}
.phone-icon-link {
	background-image: url(../img/icon-phone.png);
}
.email-icon-link {
	background-image: url(../img/icon-email.png);
}
.user-icon-link {
	background-image: url(../img/icon-user.png);
}
.ig-icon-link {
	background-image: url(../img/btn-ig.png);
}
.fb-icon-link {
	background-image: url(../img/btn-fb.png);
}
.yt-icon-link {
	background-image: url(../img/btn-yt.png);
}
.up-icon-link {
	background-image: url(../img/btn-up.png);
}
/***/



/* 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==);
}
/***/



/* Decorations */
.deco-line,
.deco-line-after:after {
	display: inline-block;
    width: 80px;
    max-width: 100%;
    margin: 1em 0;
    border: 2px solid;
}
.deco-line-after:after {
	content: '';
}
/***/



/* Misc. */
.clear,
.clear-fix {
	clear: both;
}

.ltr { direction: ltr; }
.rtl { direction: rtl; }
/***/


/********************************************************************************/





/****************************************/
/* LAYOUT
/****************************************/


/* Container widths */
.narrowest-container,
.narrower-container,
.narrow-container,
.container,
.default-container,
.wide-container,
.wider-container,
.widest-container,
.fullwidth-container {
	width: 100%;
	margin: 0 auto;
	padding-left: 15px;
	padding-right: 15px;
}
.narrowest-container 	{ max-width: 492px; }
.narrower-container 	{ max-width: 798px; }
.narrow-container		{ max-width: 1024px; }
.container,
.default-container		{ max-width: 1212px; }
.wide-container			{ max-width: 1536px; }
.wider-container		{ max-width: 1626px; }
.widest-container 		{ max-width: 1920px; }
.fluid-container,
.fullwidth-container 	{ }
.inner-container 		{ max-width: 732px; }
/***/



/* 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;
	padding: 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%;   } 
}
/***/



/* Flex containers */
.flex-container {
	display: flex;
}
/***/



/* Lateral paddings */
.no-side-padding, 	.no-side-padding > .row > .col	{ padding-left:  0px; padding-right:  0px; }
.thinnest-padding, 	.thinnest-padding > .row > .col	{ padding-left:  1px; padding-right:  1px; }
.thinner-padding, 	.thinner-padding > .row > .col	{ padding-left:  5px; padding-right:  5px; }
.thin-padding,		.thin-padding > .row > .col		{ padding-left: 10px; padding-right: 10px; }
.no-side-padding > .row								{ margin-left:   0px; margin-right:   0px; }
.thinnest-padding > .row 							{ margin-left:  -1px; margin-right:  -1px; }
.thinner-padding > .row								{ margin-left:  -5px; margin-right:  -5px; }
.thin-padding > .row								{ margin-left: -10px; margin-right: -10px; }
@media (min-width : 1200px) { 
	.thick-padding, 	.thick-padding > .row > .col	{ padding-left: 30px; padding-right: 30px; }
	.thicker-padding, 	.thicker-padding > .row > .col	{ padding-left: 45px; padding-right: 45px; }
	.thickest-padding, 	.thickest-padding > .row > .col	{ padding-left: 60px; padding-right: 60px; }
	.thick-padding > .row								{ margin-left: -45px; margin-right: -45px; }
	.thicker-padding > .row								{ margin-left: -60px; margin-right: -60px; }
	.thickest-padding > .row							{ margin-left: -75px; margin-right: -75px; }
}	

@media (min-width : 1600px) { 

}
/***/




/* 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%;
	background: #fff;
	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: var(--primary-color);
	/*
    background-image: url('../img/loader.png');
	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;
}
#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;
}
/***/



/* Swipers */
.swiper-container {
}
.swiper-slide {
	background-repeat: no-repeat;
	background-position: 50% 50%;
	-webkit-background-size: 100% auro;
	   -moz-background-size: 100% auro;
		 -o-background-size: 100% auro;
			background-size: 100% auro;	
}
.swiper-slide img {
	display: block;
	max-width: 100vw;
	max-height: 100vh;
	margin: auto;
}
.swiper-button-prev, 
.swiper-button-next {
	width: 48px;
	height: 48px;
	margin-top: -24px;
	background-position: 50% 50%;
	background-repeat: no-repeat;
}
.swiper-button-prev,
.swiper-rtl .swiper-button-next {
	background-image: url('../img/arrow-left.png');
}
.swiper-button-next,
.swiper-rtl .swiper-button-prev {
	background-image: url('../img/arrow-right.png');
}

.swiper-button-prev:after,
.swiper-button-next:after {
	content: '' !important;
}
.swiper-slide-caption {
	position: absolute;
	z-index: 3;
	bottom: 0;
	right: 0;
	width: 100%;
	padding: 20px 15px;
	text-align: center;
	background: rgba(0,0,0,0.2);
	color: #fff;
	text-shadow: 1px 2px 4px rgba(0,0,0,0.5);
	opacity: 0;
	-webkit-transition:	opacity 0.4s ease 0.6s; 
			transition: opacity 0.4s ease 0.6s;
}
.swiper-slide-active .swiper-slide-caption {
	opacity: 1;
}
/***/



/* 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;
	display: flex;
    flex-direction: column;
    justify-content: center;
	align-items: center;
	width: 100%;
	padding: 50px 10px;
	opacity: 0;
	background: rgba(0,0,0,0.9);
	-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;	
}
html.rtl .lightbox {
	direction: rtl;
}
.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;
	max-width: 100%;
	max-height: 100%;
}
.scrollable-content {
	overflow-x: hidden;
	overflow-y: auto;
}
.scrollable-content::-webkit-scrollbar {
	width: 8px;
}
.scrollable-content::-webkit-scrollbar-track {
    background-color: transparent;
}
.scrollable-content::-webkit-scrollbar-thumb {
	border-radius: 4px;
    background-color: var(--grey-color);
}
.close-lightbox {
	position: absolute;
	top: 10px;
	right: 10px;
	z-index: 99;
	width: 48px;
	height: 48px;
	cursor: pointer;
}
.close-lightbox::before,
.close-lightbox::after {
	content: '';
	display: block;
	position: absolute;
	top: 22px;
	left: 11px;
	width: 28px;
	height: 3px;
	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 0.6s;
			transition: all 0.4s ease 0.6s;
}
.lightbox.open .close-lightbox::before {
	transform: rotateZ(45deg);
}
.lightbox.open .close-lightbox::after {
	transform: rotateZ(-45deg);
}

@media (min-width : 1200px) {
	.lightbox {
		padding: 60px;
	}
}
/***/



/* Custom lightbox */
.form-lightbox {
	padding: 10px;
}
.form-lightbox .lightbox-content {
	width: 580px;
	margin: 0 auto;
	padding: 30px max(4vw,30px);
	text-align: center;
}


.map-lightbox .lightbox-content,
.map-lightbox .map-canvas {
	width: 100%;
	height: 100%;
}
/***/



/* 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%;
}
/***/



/* Isotope lists / Filtering lists */
.isotope-list {
	-webkit-transition: height 0.8s ease;
			transition: height 0.8s ease;	
	will-change: height;
}
/***/



/* Forms */
.form-container {
	position: relative;
}
.form-container form {
	
}
.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;
	padding-bottom: 0.5em;
	text-align: initial;
}
.subscribe-field {
}
input[type=text],
input[type=email],
input[type=password],
textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	outline: 0;
	border: 0;
	padding: 0.5em 1em;
	text-align: initial;
	text-align-last: initial;
	line-height: 1.1111em;
	font: inherit;
	background: var(--link-hover-color);
	color: var(--white-color);
}
input[type=checkbox] {
	appearance: none;
	outline: 0;
	margin: 0;
	border: 1px solid var(--white-color);
	background-color: var(--white-color);
	line-height: 1.3333em;
	color: var(--primary-color);
}
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 {
	vertical-align: middle;
	line-height: 1.2em;
	cursor: pointer;
}
::-webkit-input-placeholder	{ color: var(--grey-color); }
:-moz-placeholder 			{ color: var(--grey-color); opacity: 1; }
::-moz-placeholder 			{ color: var(--grey-color); opacity: 1; }
:-ms-input-placeholder 		{ color: var(--grey-color); }
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: 100%;
	outline: 0;
	border: 0;
	padding: 0.5em 1em;
	text-align: center;
	font: inherit;
	background: var(--secondary-color);
	color: var(--white-color);
	cursor: pointer;
}
.form-field > .error-box {
	display: block;
	position: absolute;
	z-index: -1;
	top: 50%;
	right: 50%;
	margin-top: -1.75em;
	border-radius: 4px;
	padding: 0.5em 1em;
	white-space: nowrap;
	background: var(--warning-color);
	color: var(--white-color);
	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 var(--warning-color);
	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) {
	input[type=submit] {
		font-size: 1.25em;
	}
}
/***/






/* Phone number */
.phone-no {
	margin: 1em 0;
	text-align: center;
}
.phone-no a {
	color: inherit;
}
.phone-no a:hover,
.phone-no a:active,
.phone-no a:focus {
	color: var(--cold-color);
}
.phone-no a label {
	font-size: 0.75em;
}
.phone-no a span {
	font-family: 'BebasNeue';
	font-size: 3.6em;
	line-height: 0.8em;
}
/***/


/********************************************************************************/

