/* BASE
================================================== */

html,
body {
	overflow-x: hidden;
	width: 100%;
}

body {
	-webkit-font-smoothing: antialiased;
	word-spacing: 0;
	letter-spacing: 0;
	font-size: .875rem;
	line-height: 1.7;
	color: #fff;
	background: #040308;
}

body, input, button, textarea {
	font-family: Roboto, Arial, sans-serif;
	font-weight: 300;
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
	margin-top: 0;
	margin-bottom: 1.5rem;
	line-height: 1.2;
	font-family: Montserrat, Arial, sans-serif;
	font-weight: 600;
	font-style: italic;
	text-transform: uppercase;
}

p,
ul,
ol,
table,
figure {
	margin-bottom: 1.5rem;
}

a, input, textarea, button {
	-webkit-transition: color .3s, background, .3s, border-color .3s, opacity .3s;
	   -moz-transition: color .3s, background, .3s, border-color .3s, opacity .3s;
			transition: color .3s, background, .3s, border-color .3s, opacity .3s;
}

a,
a:focus {
	color: #1f98d2;
}

a:hover {
	color: #999;
}

a:hover,
a:focus {
	text-decoration: none;
}

*, *:focus {
	outline: none !important;
}

img {
	max-width: 100%;
}

figure img {
	width: 100%;
}

/* LAYOUT
================================================== */

/*
	Header
*/

.header {
	position: fixed;
	top: 0;
	right: 0;
	left: 0;
	padding: .75rem 0;
	z-index: 1001;
	-webkit-transition: all .3s;
	        transition: all .3s;
}

	.header .logo {
		position: relative;
		display: block;
		margin-top: -15px;
	}
	
		.header .logo img {
			display: block;
			width: 240px;
			-webkit-transition: all .3s;
			        transition: all .3s;
		}

.header.fixed {
	background: rgba(0, 0, 0, .9);
}

.header-phone {
	float: right;
	color: #fff;
}

/*
	Footer
*/

.footer {
	padding: 70px 0 50px;
	background: #000;
}

/* SECTIONS
================================================== */

.section {
	padding-top: 100px;
	padding-bottom: 70px;
}

	.section__title {
		margin-bottom: 3rem;
		font-size: 1.875rem;
	}

	.section__subtitle {
		margin-bottom: 3rem;
		font-size: .875rem;
		font-family: Roboto, Arial, sans-serif;
		font-weight: 300;
		font-style: normal;
		color: #1f98d2;
	}
	
	.section__subtitle:before {
		position: relative;
		display: inline-block;
		content: "";
		vertical-align: middle;
		top: -1px;
		width: 26px;
		height: 14px;
		margin-right: .25rem;
		background: url("../img/pcd-icon.png") center center no-repeat;
	}
	
	.section__title + .section__subtitle {
		margin-top: -2rem;
	}

/*
	Section intro
*/

.section-intro {
	position: relative;
	height: 850px;
	padding-top: 200px;
	font-size: 1rem;
	font-weight: 400;
	background-position: center bottom;
	-webkit-background-size: cover;
	        background-size: cover;
}

	.section-intro .section__title {
		font-size: 2.25rem;
	}

	.section-intro .section__title + .section__subtitle {
		margin-top: -1rem;
		margin-bottom: .5rem;
	}

/*
	Section bubbles
*/
.section-bubbles {
	margin-top: -150px;
}
	
/*
	Figure article
*/

.figure-article + .figure-article {
	margin-top: -8%;
}

	.figure-article__picture {
		max-height: 700px;
	}
	
/* MODULES
================================================== */

/*
	Figure box
*/

.figure-text {
	display: flex;
	justify-content: center;
	align-items: center;
}

	.figure-text figure {
		width: 70px;
		height: 70px;
		min-width: 70px;
		min-height: 70px;
		padding: 5px;
		margin-right: .75rem;
		border: 1px dashed #1975a1;
		-webkit-border-radius: 100%;
				border-radius: 100%;
	}

		.figure-text figure span {
			display: block;
			overflow: hidden;
			width: 100%;
			height: 100%;
			-webkit-border-radius: 100%;
					border-radius: 100%;
		}
		
			.figure-text figure img {
				width: 100%;
				height: 100%;
			}
		
		.figure-text__title {
			font-size: .875rem;
		}
		
/*
	Border figure
*/

.border-figure {
	padding: 1rem;
	border: 2px dashed #114d6d;
	-webkit-border-radius: .25rem;
	        border-radius: .25rem;
}

/* COMPONENTS
================================================== */

/*
	Buttons
*/

.btn {
	padding: .53125rem .75rem;
	font-weight: 300;
	font-size: .875rem;
	-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);
}

.btn:focus {
	color: #fff;
}

.btn--w230 {
	min-width: 230px;
}

.btn--w300 {
	min-width: 300px;
}

.btn--lg {
	padding: 1rem;
}

.btn--blue {
	border-color: #1f98d2;
	color: #fff;
	background: #1f98d2;
}

.btn--blue:hover {
	border-color: #1b84b6;
	color: #fff;
	background: #1b84b6;
}

.btn--border-white {
	border-color: #979797;
	color: #fff;
	background: transparent;
}

.btn--border-white:hover {
	border-color: #1f98d2;
	color: #fff;
	background: rgba(255, 255, 255, .05);
}

.btn > span {
	display: block;
	-webkit-transform: skew(12deg, 0);
			transform: skew(12deg, 0);
}

.btn i {
	position: relative;
	vertical-align: middle;
	top: -.0625rem;
	font-size: 1.125rem;
}

.btn--icon-left i {
	margin-right: .25rem;
}

.btn--icon-right i {
	margin-left: .25rem;
}

.btn-list .btn {
	margin-right: .5rem;
	margin-bottom: .75rem;
}

/*
	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);
	}
	
/*
	Package tables
*/

.package-table th {
	padding-top: 1rem;
	padding-bottom: 2rem;
	font-size: 1.5rem;
	font-style: italic;
	text-transform: uppercase;
	line-height: 1.2;
	font-family: Montserrat, Arial, sasn-serif;
}
	
.package-table td {
	width: 50%;
	padding: .25rem;
	color: #ddd;
}

.package-table th:first-child,
.package-table td:first-child {
	border-right: 1px solid #114d6d;
}

.package-table strong {
	font-family: Montserrat, Arial, sasn-serif;
	color: #fff;
}

.package-table .row-separator td {
	padding: 0;
	line-height: 0;
	border-bottom: 1px solid #114d6d;
}

.package-table .highlighted {
	padding-top: 1rem;
	padding-bottom: 1rem;
	text-transform: uppercase;
}

/* GLOBALS
================================================== */

.bg-image {
	background-repeat: no-repeat;
	background-position: center center;
	-webkit-background-size: cover;
	        background-size: cover;
}

.bg-car { background-image: url("../img/bg-car.jpg"); }

.bg-gallery-car-1 { background-image: url("../img/car-1.jpg"); }
.bg-gallery-car-2 { background-image: url("../img/car-2.jpg"); }
.bg-gallery-car-3 { background-image: url("../img/car-3.jpg"); }
.bg-gallery-car-4 { background-image: url("../img/car-6.jpg"); }
.bg-gallery-car-5 { background-image: url("../img/car-5.jpg"); }
.bg-gallery-car-6 { background-image: url("../img/car-4.jpg"); }

.bolder {
	font-weight: 900;
}

/* ANIMATIONS
================================================== */

.owl-item.animated  {
	-webkit-animation-duration: .5s;
			animation-duration: .5s;
	-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
}

.scroll-anim {
	opacity: 0;
	-webkit-animation-duration: 1s;
			animation-duration: 1s;
	-webkit-animation-fill-mode: both;
			animation-fill-mode: both;
}

.carouselShow {
	-webkit-animation-name: carouselShow;
			animation-name: carouselShow;
}

.carouselHide {
	-webkit-animation-name: carouselHide;
			animation-name: carouselHide;
}

.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 */

@media (min-width: 1201px) {
	
	.navigation li {
		margin-left: 1rem;
	}
	
		.navigation li > a {
			padding-left: 1rem;
			padding-right: 1rem;
		}
	
}

/* Large and up */

@media (min-width: 992px) {
	
	/*
		Navigation
	*/

	.navigation ul {
		margin: 0;
		padding: 0;
		list-style-type: none;
	}

		.navigation li {
			position: relative;
			display: inline-block;
		}

			.navigation li > a {
				display: block;
				font-weight: 400;
				padding-left: .5rem;
				padding-right: .5rem;
				color: #fff;
			}
			
			.navigation li > a.active,
			.navigation li > a:hover {
				color: #1f98d2;
			}
			
		.navigation .header-social {
			font-weight: 700;
		}
		
			.navigation .header-social a {
				display: inline-block !important;
				vertical-align: middle;
				margin-left: 1rem;
				padding: 0;
				font-size: 1.25rem;
				color: #ccc;
			}
			
			.navigation .header-social a:hover {
				color: #fff;
			}

}

/* Medium */

@media (min-width: 768px) and (max-width: 991px) {
	
	.section-intro {
		height: 500px;
		padding-top: 80px;
	}
	
}

/* Medium and down */

@media (max-width: 991px) {
	
	.header {
		padding: 0;
	}

	.header .logo {
		margin-top: 0;
	}

	.mobile-content-more.show {
		display: block !important;
	}
	
	/*
		Navigation
	*/
	
	.mobile-menu-button,
	.mobile-lang {
		display: block;
		width: 40px;
		height: 40px;
		margin: 5px 0;
		line-height: 40px;
		text-align: center;
	}
	
	.mobile-menu-button {
		font-size: 20px;
	}
	
	.mobile-lang {
		margin-right: 10px;
	}
	
	.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;
		font-size: 1rem;
		background: #000;
		-webkit-transition: left .3s;
		        transition: left .3s;
	}
	
	.navigation.active {
		left: 0;
	}
	
		.navigation ul {
			margin: 0;
			padding: 0;
		}
		
			.navigation a {
				display: block;
				padding: 1rem 2rem;
				color: #fff;
			}
		
			.navigation a.active {
				background: #1f98d2;
			}
			
	.navigation .header-social {
		padding-left: 1.25rem;
	}
		
		.navigation .header-social a {
			display: inline-block;
			padding: 1rem .75rem;
		}
		
}

/* Small and down */

@media (max-width: 767px) {
	
	h3, .h3 {
		font-size: 1.25rem;
	}
	
	h4, .h4 {
		font-size: 1rem;
	}
	
	.footer {
		padding: 30px 0;
	}
		
		.footer img {
			max-width: 50px;
			margin-bottom: 1rem;
		}
	
	.section {
		padding-top: 50px;
		padding-bottom: 30px;
	}
	
	.section-intro {
		height: 450px;
		padding-top: 70px;
	}
	
		.section-intro .section__title {
			margin-bottom: 1.5rem;
			font-size: 1.5rem;
		}

	.section-bubbles {
		margin-top: -70px;
	}
		
	.section__title {
		font-size: 1.5rem;
	}
	
	.section__subtitle {
		margin-bottom: 2rem;
	}
	
	.btn--w230,
	.btn--w300 {
		min-width: 200px;
	}

	.figure-text figure {
		width: 40px;
		height: 40px;
		min-width: 40px;
		min-height: 40px;
	}
	
	.figure-article:first-child,
	.figure-article + .figure-article {
		margin-top: 20px;
	}
	
		.figure-article__picture {
			max-height: 500px;
		}
		
	.package-table th {
		text-transform: none;
		font-size: 1rem;
	}
	
	.package-table .col-separator {
		min-width: 10px;
		width: 10px;
		padding-left: 0;
		padding-right: 0;
	}
	
	.package-table td {
		padding: .5rem .25rem;
	}

}

/* KEYFRAMES
================================================== */

/* Carousel hide */

@keyframes carouselHide {
	0% {
		opacity: 1;
	}  
	100% {
		opacity: 0;
		transform: translate(0, -20px);
	}  
}

@-webkit-keyframes carouselHide {
	0% {
		opacity: 1;
	}  
	100% {
		opacity: 0;
		transform: translate(0, -20px);
	}
}

/* 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);
	}
}