/********************************/
/* CLASSES
/********************************/

/* Visibility */
@media (max-width : 1199px) { .desktop-only { display: none !important; } }
@media (min-width : 1200px) { .mobile-only { display: none !important; } }
/***/



/* Background */
.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 {
	-webkit-background-size: contain;
	   -moz-background-size: contain;
		 -o-background-size: contain;
			background-size: contain;		
}
.parallax-bg {
	background-repeat: repeat-y;
	background-position: 50% 0;
	-webkit-background-size: cover;
	   -moz-background-size: cover;
		 -o-background-size: cover;
			background-size: cover;	
	-webkit-transform: translateZ(0);
			transform: translateZ(0);
}

.fixed-bg {
	background-attachment: fixed;
}
.fixed-bg > img {
	position: fixed;
	top: 0;
}
/***/



/* Colors */
.cold-color 	{}
.cool-color 	{}
.warm-color 	{}
.hot-color 		{}
.fancy-color	{}


.color-default 	{ color: inherit; }
.color-white 	{ color: var(--white-color); }
.color-light 	{ color: var(--light-color); }
.color-grey 	{ color: var(--grey-color); }
.color-dark 	{ color: var(--dark-color); }
.color-black 	{ color: var(--black-color); }
.color-cold 	{ color: var(--cold-color); }
.color-cool 	{ color: var(--cool-color); }
.color-warm 	{ color: var(--warm-color); }
.color-hot 		{ color: var(--hot-color); }
.color-primary 	{ color: var(--primary-color); }
.color-secondary { color: var(--secondary-color); }
.color-fancy 	{ color: var(--fancy-color); }
/***/



/* Fonts */
.smallest-font 	{ font-size: 0.6666em; }
.smaller-font 	{ font-size: 0.7777em; }
.small-font 	{ font-size: 0.8888em; }
.large-font 	{ font-size: 1.1111em; }
.larger-font 	{ font-size: 1.2222em; }
.larger-font 	{ font-size: 1.2222em; }
.largest-font 	{ font-size: 1.3333em; }

.latin-text 	{ font-size: 0.8888em; }
/***/



/* 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;}
/***/



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

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





/********************************/
/* THEMES
/********************************/

/* Theme: Default */
.theme-default {
	background-color: transparent; color: inherit;
}
/***/


/* Theme: White */
.theme-white {
	background-color: var(--white-color); color: var(--black-color);
}
/***/


/* Theme: Light */
.theme-light {
	background-color: var(--light-color); color: var(--dark-color);
}
/***/


/* Theme: Grey */
.theme-grey {
	background-color: var(--grey-color); color: var(--black-color);
}
/***/


/* Theme: Dark */
.theme-dark {
	background-color: var(--dark-color); color: var(--light-color);
}
/***/


/* Theme: Black */
.theme-black {
	background-color: var(--black-color); color: var(--white-color);
}
/***/

/* Theme: Cold */
.theme-cold {
	background-color: var(--cold-color); color: var(--white-color);
}
/***/


/* Theme: Cool */
.theme-cool {
	background-color: var(--cool-color); color: var(--dark-color);
}
/***/


/* Theme: Warm */
.theme-warm {
	background-color: var(--warm-color); color: var(--white-color);
}
/***/



/* Theme: Hot */
.theme-hot {
	background-color: var(--hot-color); color: var(--white-color);
}
/***/



/* Theme: Primary */
.theme-primary {
	background-color: var(--primary-color); color: var(--white-color);
}
/***/


/* Theme: Secondary */
.theme-secondary {
	background-color: var(--secondary-color); color: var(--white-color);
}
/***/


/* Theme: Fancy */
.theme-fancy {
	background-color: var(--fancy-color); color: var(--dark-color);
}
/***/





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


/* Containers */
.narrowest-container,
.narrower-container,
.narrow-container,
.container,
.default-container,
.wide-container,
.wider-container,
.widest-container,
.fluid-container,
.fullwidth-container {
	width: 100%;
	margin: 0 auto;
	padding-left: 15px;	
	padding-right: 15px;
}
.narrowest-container 	{ max-width: 540px; }
.narrower-container 	{ max-width: 720px; }
.narrow-container		{ max-width: 960px; }
.container,
.default-container		{ max-width: 1140px; }
.wide-container			{ max-width: 1320px; }
.wider-container		{ max-width: 1600px; }
.widest-container 		{ max-width: 1832px; }
/***/



/* Flex containers */
.flex-container {
	display: flex;
}
.flex-column {
	flex-direction: column;
}

.flex-5vh 	{ min-height:  5vh; }
.flex-10vh 	{ min-height: 10vh; }
.flex-15vh 	{ min-height: 15vh; }
.flex-20vh 	{ min-height: 20vh; }
.flex-25vh 	{ min-height: 25vh; }
.flex-30vh 	{ min-height: 30vh; }
.flex-35vh 	{ min-height: 35vh; }
.flex-40vh 	{ min-height: 40vh; }
.flex-45vh 	{ min-height: 45vh; }
.flex-50vh 	{ min-height: 50vh; }
.flex-55vh 	{ min-height: 55vh; }
.flex-60vh 	{ min-height: 60vh; }
.flex-65vh 	{ min-height: 65vh; }
.flex-70vh 	{ min-height: 70vh; }
.flex-75vh 	{ min-height: 75vh; }
.flex-80vh 	{ min-height: 80vh; }
.flex-85vh 	{ min-height: 85vh; }
.flex-90vh 	{ min-height: 90vh; }
.flex-95vh 	{ min-height: 95vh; }
.flex-100vh { min-height: 100vh; }

.flex-top		{ justify-content: flex-start; }
.flex-center	{ justify-content: center; }
.flex-bottom	{ justify-content: flex-end; }
.flex-space-between	{ justify-content: space-between; }
.flex-space-around	{ justify-content: space-around; }
.flex-space-evenly	{ justify-content: space-evenly; }
/***/



/* 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 margins and paddings */
.px-margin 			{ margin-top:  1px; margin-bottom:  1px; }
.smallest-margin 	{ margin-top:  5px; margin-bottom:  5px; }
.smaller-margin 	{ margin-top: 10px; margin-bottom: 10px; }
.small-margin 		{ margin-top: 20px; margin-bottom: 20px; }
.medium-margin		{ margin-top: 30px; margin-bottom: 30px; }
.big-margin 		{ margin-top: 45px; margin-bottom: 45px; }
.bigger-margin 		{ margin-top: 60px; margin-bottom: 60px; }
.biggest-margin 	{ margin-top: 90px; margin-bottom: 90px; }

.px-padding 		{ padding-top:  1px; padding-bottom:  1px; }
.smallest-padding 	{ padding-top:  5px; padding-bottom:  5px; }
.smaller-padding 	{ padding-top: 10px; padding-bottom: 10px; }
.small-padding 		{ padding-top: 20px; padding-bottom: 20px; }
.medium-padding		{ padding-top: 30px; padding-bottom: 30px; }
.big-padding 		{ padding-top: 45px; padding-bottom: 45px; }
.bigger-padding 	{ padding-top: 60px; padding-bottom: 60px; }
.biggest-padding 	{ padding-top: 90px; padding-bottom: 90px; }
/***/



/* Side padding */
.no-padding 		{ padding-left:  0;		padding-right:  0; }
.thinnest-padding 	{ padding-left:  1px;	padding-right:  1px; }
.thinner-padding 	{ padding-left:  5px;	padding-right:  5px; }
.thin-padding 		{ padding-left: 10px;	padding-right: 10px; }
.default-padding 	{ padding-left: 15px;	padding-right: 15px; }
.thick-padding 		{ padding-left: 30px;	padding-right: 30px; }
.thicker-padding 	{ padding-left: 45px;	padding-right: 45px; }
.thickest-padding 	{ padding-left: 60px;	padding-right: 60px; }

.no-padding > .row			{ margin-left: 0;		margin-right: 0; }
.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; }
.default-padding > .row 	{ margin-left: -15px;	margin-right: -15px; }
.thick-padding > .row		{ margin-left: -30px;	margin-right: -30px; }
.thicker-padding > .row		{ margin-left: -45px;	margin-right: -45px; }
.thickest-padding > .row 	{ margin-left: -60px;	margin-right: -60px; }

.no-padding > .row > .col		{ padding-left: 0;		padding-right: 0; }
.thinnest-padding > .row > .col	{ padding-left: 1px;	padding-right: 1px; }
.thinner-padding > .row > .col	{ padding-left: 5px;	padding-right: 5px; }
.thin-padding > .row > .col		{ padding-left: 10px;	padding-right: 10px; }
.default-padding > .row > .col	{ padding-left: 15px;	padding-right: 15px; }
.thick-padding > .row > .col	{ padding-left: 30px;	padding-right: 30px; }
.thicker-padding > .row > .col	{ padding-left: 45px;	padding-right: 45px; }
.thickest-padding > .row > .col	{ padding-left: 60px;	padding-right: 60px; }
/***/



/* Vertical spacers */
.vspacer { clear: both; }
.smallest-vspacer	{ height: 5px; }
.smaller-vspacer 	{ height: 10px; }
.small-vspacer 		{ height: 15px; }
.default-vspacer 	{ height: 30px; }
.big-vspacer 		{ height: 45px; }
.bigger-vspacer 	{ height: 60px; }
.biggest-vspacer 	{ height: 75px; }

.vspacer.smallest 	{ height: 5px; }
.vspacer.smaller 	{ height: 10px; }
.vspacer.small 		{ height: 15px; }
.vspacer.default 	{ height: 30px; }
.vspacer.big 		{ height: 45px; }
.vspacer.bigger 	{ height: 60px; }
.vspacer.biggest 	{ height: 90px; }
/***/



/* Vertical separators */
.vseparator { clear: both; }
.vseparator.smallest	{ margin-top:  5px; margin-bottom:  5px;  }
.vseparator.smaller 	{ margin-top: 10px; margin-bottom: 10px; }
.vseparator.small 		{ margin-top: 15px; margin-bottom: 15px; }
.vseparator, 
.vseparator.default 	{ margin-top: 30px; margin-bottom: 30px; }
.vseparator.big 		{ margin-top: 45px; margin-bottom: 45px; }
.vseparator.bigger 		{ margin-top: 60px; margin-bottom: 60px; }
.vseparator.biggest 	{ margin-top: 90px; margin-bottom: 90px; }


.vseparator-hline {
	display: block;
}


.vseparator-inline {
	display: inline-block;
	vertical-align: top;
	width: 10em;
	max-width: 100%;
	height: 0;
	border: 4px solid;
}


.vseparator-icon {
}


.vseparator-deco {
}


.vseparator.three-dots {
	white-space: nowrap;
}
.vseparator.three-dots > span,
.vseparator.three-dots > i {
	vertical-align: middle;
	margin: 0 0.3333em;
	font-size: 0.6666em;
}
.vseparator.three-dots > span {
	display: inline-block;
}

/***/



/* Decorations */
/***/


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





/********************************/
/* 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:after {
	content: '';
	display: block;
	position: absolute;
	top: 50%;
	left: 50%;
	width: 128px;
	height: 128px;
	margin: -64px 0 0 -64px;
	background: transparent url(../img/logo-loader.png) 50% 50% 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:after {
	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.animated:after {
	-webkit-animation: sk-rotateplane 5.0s infinite ease-in-out;
			animation: sk-rotateplane 5.0s infinite ease-in-out;
}
@-webkit-keyframes sk-rotateplane {
	  0% { -webkit-transform: perspective(200px); }
	 25% { -webkit-transform: perspective(200px) rotateY(360deg); }
	 35% { -webkit-transform: perspective(200px) rotateY(360deg); }
	 60% { -webkit-transform: perspective(200px) rotateY(720deg); }
	100% { -webkit-transform: perspective(200px) rotateY(720deg); }
}
@keyframes sk-rotateplane {
	  0% { transform: perspective(200px); }
	 25% { transform: perspective(200px) rotateY(360deg); }
	 35% { transform: perspective(200px) rotateY(360deg); }
	 60% { transform: perspective(200px) rotateY(720deg); }
	100% { transform: perspective(200px) rotateY(720deg); }
}
#site-loader {
	position: fixed;
}
#site-loader.one {
	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-button-prev, 
.swiper-button-next {
}
/***/





/* Lightbox */
.lightbox {
	position: fixed;
	z-index: -999;
	top: 0;
	bottom: 0;
	left: 0;
	width: 100%;
	padding: 50px 10px;
	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;
	cursor: pointer;
}
.close-lightbox::before,
.close-lightbox::after {
	content: '';
	display: block;
	position: absolute;
	top: 22px;
	left: 11px;
	width: 32px;
	height: 3px;
	border-radius: 2px;
	background: #FFF;
	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 {
	width: 100%;
	height: 100%;
	object-fit: contain;
}
.lightbox .swiper-button-prev, 
.lightbox .swiper-button-next {
	color: #fff;
	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 {
		padding: 60px;
	}
	.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;
	font-size: 1.1667em;
}
.form-container > form.off {
	opacity: 0;
	-webkit-transition: opacity 0.4s ease;
			transition: opacity 0.4s ease;	
}
.form-row {
	margin: 0 -10px;
}
.form-col {
	padding: 10px;
}
.form-field {
	position: relative;
	margin-bottom: 1.5em;
}
.subscribe-field {
	font-size: 0.8em;
}
.submit-field {
	text-align: left;
}
input, 
textarea {
	outline: 0;
	background: transparent;
	font: inherit;
	text-align: initial;
	text-align-last: initial;
}
input[type=text], 
input[type=email], 
input[type=password], 
textarea {
	display: block;
	box-sizing: border-box;
	width: 100%;
	border: 0;
	border-left: 2px solid transparent;
	border-bottom: 2px solid var(--warm-color);
	padding: 0;
	color: var(--warm-color);
	line-height: 1.5em !important;
}
textarea {
	height: 1.5em;
}
input[type=checkbox] {
	appearance: none;
    border: 2px solid;
    vertical-align: middle;
    color: var(--warm-color);
	line-height: 1.2em !important;
}
input[type=checkbox]:before {
	content: "\00a0";
	display: inline-block;
	width: 1.2em;
	height: 1.2em;
	text-align: center;
	-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;
	cursor: pointer;
}

::-webkit-input-placeholder { font-weight: 300; color: var(--warm-color); opacity: 0.7; }
:-moz-placeholder 			{ font-weight: 300; color: var(--warm-color); opacity: 0.7; }
::-moz-placeholder 			{ font-weight: 300; color: var(--warm-color); opacity: 0.7; }
:-ms-input-placeholder 		{ font-weight: 300; color: var(--warm-color); opacity: 0.7; }

input[type=text]:focus,
input[type=email]:focus,
textarea:focus {
	border-left: 2px solid;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
	/*
	-webkit-box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.75);
	   -moz-box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.75);
			box-shadow: 0px 2px 6px -2px rgba(0,0,0,0.75);
	*/
}
input[type=submit] {
	border: 1px solid;
	padding: 4px 1.5em;
	background: transparent;
	color: var(--warm-color);
	text-align: center;
	font-weight: 400;
	cursor: pointer;
	-webkit-transition: all 0.2s ease;
			transition: all 0.2s ease;
}
input[type=submit]:hover {
	background: var(--warm-color);
	color: var(--white-color);
}

.form-field > .error-box {
	display: block;
	position: absolute;
	z-index: -1;
	top: 50%;
	right: 6em;
	margin-top: -1.1666em;
	border-radius: 4px;
	padding: 0.5em 1em;
	white-space: nowrap;
	background: var(--error-color);
	color: #fff;
	font-size: 0.8333em;
	opacity: 0;
	-webkit-transform: translateX(-48px);
	   -moz-transform: translateX(-48px);
		-ms-transform: translateX(-48px);
		 -o-transform: translateX(-48px);
			transform: translateX(-48px);
	-webkit-transition: all 0.35s ease;
			transition: all 0.35s ease;
	-webkit-box-shadow: 0px 2px 5px -3px rgba(0,0,0,0.75);
	   -moz-box-shadow: 0px 2px 5px -3px rgba(0,0,0,0.75);
			box-shadow: 0px 2px 5px -3px rgba(0,0,0,0.75);
}
.form-field > .error-box:after {
	content: "";
	display: block;
	position: absolute;
	right: -5px;
	top: 0.8em;
	width: 0px;
	height: 0px;
	border-right: 0px;
	border-top: 5px solid transparent;
	border-left: 5px solid #ff2627;
	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%;
	padding-top: 2.25em;
	color: var(--primary-color);
	font-size: 1.5em;
	font-weight: 400;
	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: block;
}


@media (min-width : 1200px) {
	.form-row {
		display: flex;
		flex-wrap: wrap;
	}
	.form-col {
		flex-grow: 1;
	}
	.form-col-3 {
		width: 25%;
	}
	.form-col-6 {
		width: 50%;
	}
	.form-col-9 {
		width: 75%;
	}
	.form-col-12 {
		width: 100%;
	}
}
/***/



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

