/* SECTIONS
================================================== */

.section {

}

	.section__title {
		text-transform: uppercase;
		font-size: 2.5rem;
	}
	
		.section__title img {
			position: relative;
			vertical-align: middle;
			bottom: .35rem;
		}
		
	.section__title--secondary {
		font-size: 2rem;
	}

	.section__title--large {
		font-size: 3.5rem;
	}
	
/*
	Section map
*/

.section-map {
	position: relative;
	z-index: 3;
}

	.section-map__wrapper iframe {
		display: block;
		width: 100%;
		height: 100%;
		border: 0;
	}

/* MODULES
================================================== */

/*
	Carousels
*/

.owl-carousel .owl-nav button.owl-prev,
.owl-carousel .owl-nav button.owl-next {
	width: 3rem;
	padding: .4375rem 0 !important;
	border: 2px solid #212121;
	font-size: 1.5rem;
	line-height: 1.25;
	color: #fff;
	background: #212121;
	-webkit-box-shadow: none !important;
	        box-shadow: none !important;
	-webkit-border-radius: 0;
	        border-radius: 0;
	-webkit-transform: skew(-12deg, 0);
			transform: skew(-12deg, 0);
}

.owl-carousel .owl-nav button.owl-prev:hover,
.owl-carousel .owl-nav button.owl-next:hover {
	background: #000;
}

.owl-carousel .owl-nav button.owl-prev.disabled,
.owl-carousel .owl-nav button.owl-next.disabled {
	opacity: 0;
}

	.owl-carousel .owl-nav button.owl-prev > span,
	.owl-carousel .owl-nav button.owl-next > span {
		display: block;
		-webkit-transform: skew(12deg, 0);
				transform: skew(12deg, 0);
	}


/*
	Slideshow
*/

.slideshow__wrapper {
	position: relative;
	overflow: hidden;
}

	.slideshow__item {
		position: relative;
		display: flex;
		align-items: center;
		overflow: hidden;
		height: calc(100vh - 64px);
	}

	.slideshow__item:after {
		position: absolute;
		content: "";
		z-index: 1;
		top: 0;
		right: 0;
		bottom: 0;
		left: 0;
		opacity: .54;
		background: -webkit-linear-gradient(left, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
		background: linear-gradient(to right, rgba(0,0,0,1) 0%,rgba(0,0,0,0) 100%);
	}
	
		.slideshow__item__inner {
			position: relative;
			z-index: 2;
			font-family: Oswald, Arial, sans-serif;
			font-size: 2.75rem;
			color: #fff;
		}

		.slideshow__title {
			text-transform: uppercase;
			font-size: 3rem;
		}

			.slideshow__item__inner p{
				font-size: 2rem;
			}
	
	.slideshow__nav {
		position: absolute;
		right: 0;
		bottom: 60px;
		left: 0;
		z-index: 1;
	}
		
		.slideshow__nav .owl-prev,
		.slideshow__nav .owl-next {
			margin: 0;
			border: 0;
			padding: 0;
			background: transparent;
		}
		
/*
	Picture carousel
*/

.picture-carousel .owl-stage {
	min-width: 10317px;
}

.picture-carousel .owl-stage,
.picture-carousel .owl-stage-outer,
.owl-carousel .picture-carousel__img img {
	height: 420px;
}

	.owl-carousel .picture-carousel__img {
		display: block;
		position: relative;
	}
	
		.owl-carousel .picture-carousel__img img {
			width: auto;
		}
		
		.owl-carousel .picture-carousel__img .zoom-icon {
			top: 50%;
			left: 50%;
			-webkit-transform: translate(-50%, -50%);
			        transform: translate(-50%, -50%);
		}
		
		.owl-carousel .picture-carousel__img:hover .zoom-icon {
			visibility: visible;
			opacity: 1;
		}

.picture-carousel .owl-prev,
.picture-carousel .owl-next {
	position: absolute;
	top: 50%;
	margin-top: -1.5rem;
}

.picture-carousel .owl-prev {
	left: 1.5rem;
}

.picture-carousel .owl-next {
	right: 1.5rem;
}

/* COMPONENTS
================================================== */



/*
	Form components
*/

.form-control {
	padding: 0;
	border: 0;
	background: rgba(0, 0, 0, .05);
	-webkit-border-radius: 0;
	        border-radius: 0;
	-webkit-transform: skew(-12deg, 0);
			transform: skew(-12deg, 0);
	border-radius: 4px;
}

	.form-control__inner {
		display: block;
		width: 100%;
		height: 100%;
		margin: 0;
		/*padding: .75rem 1.5rem;*/
		padding: 12px 24px;
		border: 0;
		font-family: Oswald, Arial, sans-serif;
		font-weight: 400;
		color: #828383;
		background: transparent;
		-webkit-transform: skew(12deg, 0);
		        transform: skew(12deg, 0);
	}
	
	textarea.form-control__inner {
		min-height: 3rem;
	}

/*
	Gallery item
*/

.gallery-item {
	position: relative;
	display: block;
	height: 260px;
	background-position: center center;
	-webkit-background-size: cover;
	        background-size: cover;
	-webkit-box-shadow: 0 1rem 4rem 1rem rgba(30%, 30%, 30%, .3);
	        box-shadow: 0 1rem 4rem 1rem rgba(30%, 30%, 30%, .3);
}

.gallery-item:after {
	position: absolute;
	content: "";
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
	background: #1f98d2;
	opacity: 0;
	-webkit-transition: opacity .3s;
	        transition: opacity .3s;
}

	.gallery-item img {
		width: 100%;
	}

	.gallery-item i {
		position: absolute;
		z-index: 2;
		top: 50%;
		left: 50%;
		font-size: 40px;
		margin: -20px 0 0 -20px;
		color: #fff;
		opacity: .6;
		-webkit-transition: all .3s;
		        transition: all .3s;
	}

.gallery-item:hover:after {
	opacity: .5;
}
	
	.gallery-item:hover i {
		opacity: 1;
		-webkit-transform: scale(1.2);
		        transform: scale(1.2);
	}
	
/*
	Lists
*/

.list-with-icon li {
	font-weight: 500;
}

	.list-with-icon li > i {
		vertical-align: text-bottom;
		margin-right: .25rem;
		font-size: 1.125rem;
		color: #9ecd6c;
	}
	
.list-with-icon.list-unstyled li {
	margin-bottom: .5rem;
}
	
	.list-with-icon.list-unstyled li > i {
		width: 1.5rem;
		text-align: center;
	}
	
.list-table {
	padding: 0;
	list-style-type: none;
}

	.list-table li {
		display: flex;
		justify-content: space-between;
		padding: .5rem;
	}

	.list-table li:nth-child(even) {
		background: #f6f6f6;
	}
	
		.list-table li span:last-child {
			text-align: right;
		}
	
/*
	Icon box
*/

.icon-box {
	position: relative;
	padding-left: 100px;
	font-size: .875rem;
}

	.icon-box h3 {
		margin-bottom: 1rem;
	}
	
	.icon-box__icon {
		position: absolute;
		top: 0;
		left: 0;
		width: 70px;
		height: 70px;
		line-height: 68px;
		text-align: center;
		border: 2px solid #9ecd6c;
		-webkit-border-radius: 100%;
		        border-radius: 100%;
	}
	
/*
	Figure box
*/

.figure-box {
	margin-bottom: 2rem;
	text-align: center;
	font-size: .875rem;
}

	.figure-box__picture > a {
		position: relative;
		display: block;
		max-width: 200px;
		margin-left: auto;
		margin-right: auto;
	}
	
		.figure-box__picture > a .zoom-icon {
			right: 10px;
			bottom: 10px;
		}
		
		.figure-box__picture > a:hover .zoom-icon {
			visibility: visible;
			opacity: 1;
		}
		
		.figure-box__picture__wrapper {
			display: block;
			overflow: hidden;
			-webkit-border-radius: 100%;
					border-radius: 100%;
		}
		
/*
	Zoom icon
*/

.zoom-icon {
	position: absolute;
	visibility: hidden;
	z-index: 1;
	width: 48px;
	height: 48px;
	text-align: center;
	line-height: 48px;
	font-size: 18px;
	color: #fff;
	background: #9ecd6c;
	opacity: 0;
	-webkit-transition: all .3s;
	        transition: all .3s;
	-webkit-border-radius: 100%;
	        border-radius: 100%;
}

	.zoom-icon i {
		vertical-align: middle;
	}
	
/*
	Icon text
*/

.icon-text {
	font-family: Oswald, Arial, sans-serif;
	text-transform: uppercase;
	font-size: 2rem;
	font-weight: 700;
	color: #9ecd6c;
}

	.icon-text img {
		margin-top: -.2rem;
		margin-right: .5rem;
	}
	
/*
	Figure URL
*/

.figure-url {
	display: inline-block;
	font-family: Oswald, Arial, sans-serif;
	font-size: 1.25rem;
	text-align: center;
	color: #212121;
}

	.figure-url span {
		display: block;
	}

/*
	Counter box
*/

.counter-box {
	margin-bottom: 2rem;
	font-family: Oswald, Arial, sans-serif;
	text-align: center;
}
	
	.counter-box__count {
		margin: 0 auto .25rem;
		width: 136px;
		height: 136px;
		border: 2px solid #d14545;
		font-size: 3.5rem;
		line-height: 132px;
		font-weight: 700;
		color: #d14545;
		-webkit-border-radius: 100%;
		        border-radius: 100%;
	}
	
	.counter-box__text {
		text-transform: uppercase;
		font-family: Roboto, Arial, sans-serif;
		font-weight: 500;
		font-size: .875rem;
	}
	
		.counter-box__text span {
			display: block;
			font-family: Oswald, Arial, sans-serif;
			font-weight: 700;
			font-size: 2rem;
		}
		
/*
	Accordion
*/

.accordion__item__header {
	margin-bottom: 1.5rem;
	padding: .75rem 2rem .75rem 1.5rem;
	font-weight: 700;
	font-family: Oswald, Arial, sans-serif;
	text-transform: uppercase;
	font-size: 1.25rem;
	color: #fff;
	background: #767b7f;
	cursor: pointer;
	-webkit-transition: all .3s;
	        transition: all .3s;
	-webkit-transform: skew(-12deg, 0);
			transform: skew(-12deg, 0);
}

	.accordion__item__header > span {
		display: block;
		-webkit-transform: skew(12deg, 0);
				transform: skew(12deg, 0);
	}
	
		.accordion__item__header i {
			position: absolute;
			top: 50%;
			right: -.5rem;
			font-size: 1.5rem;
			line-height: 2rem;
			margin-top: -1rem;
			-webkit-transition: all .3s;
	                transition: all .3s;
		}
		
.accordion__item__header[aria-expanded="true"],
.accordion__item__header:hover {
	background: #212121;
}

.accordion__item__header[aria-expanded="true"] i {
	-webkit-transform: rotate(90deg);
	        transform: rotate(90deg);
}

/* GLOBALS
================================================== */

.bg-image {
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	        background-size: cover;
}

.bg-car  { background-image: url("../img/pictures/bg-slider-01.png"); }
.bg-car2 { background-image: url("../img/pictures/bg-slider-02.png"); }

.bg-layer {
	position: relative;
}

.bg-layer:after {
	position: absolute;
	content: "";
	z-index: 1;
	top: 0;
	right: 0;
	bottom: 0;
	left: 0;
}

.layer-dark:after {
	background: #212121;
	opacity: .9;
}

	.bg-layer > * {
		position: relative;
		z-index: 3;
	}

.maw--270 {
	max-width: 270px;
}

.maw--600 {
	max-width: 600px;
}

.h--550 {
	height: 550px;
}

.text--lg {
	font-size: 1.125rem;
}

.mb--10 { margin-bottom: 10px; }
.mb--20 { margin-bottom: 20px; }
.mb--30 { margin-bottom: 30px; }
.mb--40 { margin-bottom: 40px; }
.mb--50 { margin-bottom: 50px; }
.mb--60 { margin-bottom: 60px; }
.mb--70 { margin-bottom: 70px; }
.mb--80 { margin-bottom: 80px; }
.mb--90 { margin-bottom: 90px; }
.mb--100 { margin-bottom: 100px; }

.pt--10 { padding-top: 10px; }
.pt--20 { padding-top: 20px; }
.pt--30 { padding-top: 30px; }
.pt--40 { padding-top: 40px; }
.pt--50 { padding-top: 50px; }
.pt--60 { padding-top: 60px; }
.pt--70 { padding-top: 70px; }
.pt--80 { padding-top: 80px; }
.pt--90 { padding-top: 90px; }
.pt--100 { padding-top: 100px; }

.pb--10 { padding-bottom: 10px; }
.pb--20 { padding-bottom: 20px; }
.pb--30 { padding-bottom: 30px; }
.pb--40 { padding-bottom: 40px; }
.pb--50 { padding-bottom: 50px; }
.pb--60 { padding-bottom: 60px; }
.pb--70 { padding-bottom: 70px; }
.pb--80 { padding-bottom: 80px; }
.pb--90 { padding-bottom: 90px; }
.pb--100 { padding-bottom: 100px; }


/* ANIMATIONS
================================================== */

.scroll-anim {
	opacity: 0;
	-webkit-animation-duration: 1s;
			animation-duration: 1s;
	-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
}

.fadeIn {
	-webkit-animation-name: fadeIn;
			animation-name: fadeIn;
}

.fadeInUp {
	-webkit-animation-name: fadeInUp;
			animation-name: fadeInUp;
}

.fadeInRight {
	-webkit-animation-name: fadeInRight;
			animation-name: fadeInRight;
}

.fadeInLeft {
	-webkit-animation-name: fadeInLeft;
			animation-name: fadeInLeft;
}

/* RESPONSIVE
================================================== */

/*
	Extra large devices
*/

@media screen and (min-width: 1201px) {

}

/*
	Large devices 
*/

@media screen and (min-width: 992px) {
	
	
	/*
		Navigation
	*/

	.navigation ul {
		margin: 0;
		padding: 0;
		font-family: Oswald, Arial, sans-serfi;
		font-weight: 700;
		text-transform: uppercase;
		list-style-type: none;
		font-size: 1rem;
	}

		.navigation li {
			display: inline-block;
		}

			.navigation li > a {
				display: block;
				color: #fff;
			}
			
			.navigation > ul > li:last-child > a {
				padding-right: 0;
			}
			
			.navigation li > a.active,
			.navigation li > a:hover {
				color: #d14545;
			}
			
		.navigation .header-social {
			font-weight: 700;
		}
		
			.navigation .header-social a {
				display: inline-block;
				vertical-align: middle;
				margin-left: 1rem;
				padding: 0;
				font-size: 1.25rem;
				color: #ccc;
			}
			
			.navigation .header-social a:hover {
				color: #fff;
			}
	
}

/*
	Medium devices
*/

@media screen and (min-width: 768px) and (max-width: 991px) {

	.picture-carousel .owl-stage,
	.picture-carousel .owl-stage-outer,
	.owl-carousel .picture-carousel__img img {
		height: 300px;
	}

}

@media screen and (max-width: 991px) {
	
	/*
		Navigation
	*/
	
	.mobile-menu-button {
		display: block;
		width: 2.5rem;
		height: 2.5rem;
		line-height: 2.5rem;
		text-align: center;
	}
	
	.mobile-menu-button {
		font-size: 1.25rem;
	}
	
	.mobile-menu-button,
	.mobile-menu-button:hover,
	.mobile-menu-button:focus,
	.mobile-menu-button:active {
		/*color: #fff;*/
	}
	
	.navigation {
		position: fixed;
		top: 0;
		bottom: 0;
		left: -250px;
		width: 250px;
		padding-top: .75rem;
		font-family: Oswald, Arial, sasn-serif;
		font-size: 1.25rem;
		background: #212121;
		-webkit-transition: left .3s;
		        transition: left .3s;
	}

	.navigation.active {
		left: 0;
		-webkit-box-shadow: 0 0 2rem rgba(0, 0, 0, .4);
		        box-shadow: 0 0 2rem rgba(0, 0, 0, .4);
	}

		.navigation ul {
			margin: 0;
			padding: 0;
		}

			.navigation a {
				display: block;
				padding: .75rem 2rem;
				color: #fff;
			}

			.navigation a.active {
				color: #d14545;
			}
			
	.figure-box__picture > a {
		max-width: 120px;
	}
	
}

@media screen and (min-width: 768px) {
	
	.btn--lg {
		font-size: 2rem;
	}

	.section-map__wrapper {
		position: absolute;
		overflow: hidden;
		content: "";
		z-index: 1;
		top: 0;
		right: 62%;
		bottom: 0;
		left: -5%;
		/*-webkit-transform: skew(-12deg, 0);*/
				/*transform: skew(-12deg, 0);*/
	}
	
		.section-map__inner {
			position: absolute;
			top: 0;
			right: -12%;
			bottom: 0;
			left: 12%;
			/*-webkit-transform: skew(12deg, 0);*/
			        /*transform: skew(12deg, 0);*/
		}
	
}

/*
	Small devices 
*/

@media screen and (max-width: 767px) {
	
	.mb--60,
	.mb--70,
	.mb--80,
	.mb--90,
	.mb--100 { margin-bottom: 50px; }
	
	.pt--60,
	.pt--70,
	.pt--80,
	.pt--90,
	.pt--100 { padding-top: 50px; }

	.pb--60,
	.pb--70,
	.pb--80,
	.pb--90,
	.pb--100 { padding-bottom: 50px; }

	.slideshow__title {
		font-size: 3rem;
	}
	
	.slideshow__item__inner {
		font-size: 1.5rem;
	}
	
	.section__title {
		font-size: 2rem;
	}
	
	.icon-box {
		padding-left: 60px;
	}
	
	.icon-box__icon {
		width: 50px;
		height: 50px;
		line-height: 50px;
	}
	
		.icon-box__icon img {
			max-height: 25px;
		}
		
	.counter-box__count {
		width: 100px;
		height: 100px;
		line-height: 94px;
		font-size: 2.5rem;
	}
	
	.picture-carousel .owl-stage,
	.picture-carousel .owl-stage-outer,
	.owl-carousel .picture-carousel__img img {
		height: 150px;
		height: 150px;
	}
	
	.picture-carousel .owl-nav {
		display: none;
	}
	
	.h--550 {
		height: 350px;
	}
	
	.section-map__inner {
		height: 250px;
	}
	
	.slideshow__nav {
		bottom: 20px;
	}
	
	.accordion__item__header {
		font-size: 1rem;
	}

}

/*
	Extra small devices 
*/

@media screen and (max-width: 575px) {
	
	.top-bar {
		padding: .5rem 0;
	}
	
		.top-bar ul {
			font-size: .875rem;
		}
	
			.top-bar ul li {
				display: block;
			}
			
			.top-bar .list-inline-item:not(:last-child) {
				margin-right: 0;
			}

}

/* KEYFRAMES
================================================== */

/* Fade In */

@keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

@-webkit-keyframes fadeIn {
	0% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}

/* Fade In Up */

@keyframes fadeInUp {
	0% {
		opacity: 0;
		transform: translate(0, 10%);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

@-webkit-keyframes fadeInUp {
	0% {
		opacity: 0;
		-webkit-transform: translate(0, 10%);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate(0, 0);
	}
}

/* Fade In Right */

@keyframes fadeInRight {
	0% {
		opacity: 0;
		transform: translate(10%, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

@-webkit-keyframes fadeInRight {
	0% {
		opacity: 0;
		-webkit-transform: translate(10%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate(0, 0);
	}
}

/* Fade In Left */

@keyframes fadeInLeft {
	0% {
		opacity: 0;
		transform: translate(-10%, 0);
	}
	100% {
		opacity: 1;
		transform: translate(0, 0);
	}
}

@-webkit-keyframes fadeInLeft {
	0% {
		opacity: 0;
		-webkit-transform: translate(-10%, 0);
	}
	100% {
		opacity: 1;
		-webkit-transform: translate(0, 0);
	}
}