/**
* template:  FASTAIR

TABLE OF CONTENTS

        + Global
        + Header
        + Header Cover
        + About Us
        + Edge
        + Services
        + Pricing
        + Offer
        + Faq
        + Testimonials
        + Booking
        + Contact

*/


@import 'reset.css';
@import 'all.min.css';
@import 'owl.carousel.min.css';
@import 'owl.theme.default.css';
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;600;900&display=swap');


/**************************************
*
*        GLOBAL
*
***************************************/


:root {
	--color-blue: #3C486B;
	--color-gray: #F0F0F0;
	--color-yellow: #F9D949;
	--color-red: #FF6150;
	--color-white: #FFFFFF;
	--color-dark-blue: #040414;
	--color-black: #000000;
}

body {
	font-family: 'Inter', sans-serif;
	font-size: 16px;
	line-height: 1.5;
	font-weight: 400;
	color: var(--color-black);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 900;
	line-height: 1.2;
	margin-bottom: 20px;
	color: var(--color-dark-blue);
	text-transform: capitalize;
}

h1 {
	font-size: 70px;
}

h2 {
	font-size: 50px;
}

.wrapper {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

.container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.flex-row {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

a {
	display: inline-block;
	text-decoration: none;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.ptb-100 {
	padding-top: 100px;
	padding-bottom: 100px;
}

.btn {
	padding: 15px 35px;
	background-color: var(--color-dark-blue);
	color: var(--color-white);
	border-radius: 3px;
	font-weight: 600;
	text-transform: capitalize;
}

.btn:hover {
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.suptitle {
	text-transform: uppercase;
	color: var(--color-yellow);
	font-weight: 600;
	margin-bottom: 20px;
	position: relative;
	display: inline-block;
}

.suptitle::before {
	content: "";
	display: block;
	width: 50px;
	height: 1px;
	background-color: var(--color-yellow);
	position: absolute;
	top: 50%;
	right: -70px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.subtitle {
	color: var(--color-blue);
	font-size: 40px;
	margin-bottom: 20px;
	font-weight: 900;
	display: inline-block;
}

.align-center {
	text-align: center;
}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	padding: 16px 20px;
	z-index: 200;
	background-color: var(--color-yellow);
}

.fixed {
	background-color: var(--color-white);
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

#openmenu,
#closemenu {
	display: none;
	color: var(--color-dark-blue);
	font-size: 30px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

#openmenu:hover,
#closemenu:hover {
	color: var(--color-yellow);
}

@-webkit-keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#preload {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--color-dark-blue);
	z-index: 100000;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: horizontal;
	-webkit-box-direction: normal;
	-ms-flex-direction: row;
	flex-direction: row;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#preload img {
	width: 60px;
	height: auto;
	-webkit-animation-name: load;
	animation-name: load;
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.res-booking {
	display: none;
	font-size: 14px;
	margin-top: 20px;
}

.res-booking .error {
	color: var(--color-red);
	font-weight: 900;
}

.res-booking .send {
	color: var(--color-dark-blue);
	font-weight: 900;
}


/**************************************
*
*       HEADER
*
***************************************/


#header {
	padding: 15px 0px;
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	z-index: 1000;
}

.wrapper-header {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#nav {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.menu li {
	float: left;
	margin-left: 25px;
}

.menu li a {
	color: var(--color-dark-blue);
	text-transform: uppercase;
	font-weight: 600;
}

.menu li a:hover {
	color: var(--color-yellow);
}

#booking {
	margin-left: 100px;
}


/**************************************
*
*       HEADER COVER
*
***************************************/


.wrapper-header-cover {
	background-image: url('../images/bg-header.png');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	background-attachment: fixed;
	height: 750px;
	position: relative;
}

.wrapper-header-content {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.wrapper-header-content>div {
	width: 60%;
}


/**************************************
*
*       ABOUT US   
*
***************************************/


.wrapper-aboutus {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.aboutus-content {
	width: 60%;
	padding-right: 60px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.aboutus-content p {
	margin-bottom: 10px;
}

.aboutus-img {
	width: 40%;
}

.aboutus-img img {
	width: 100%;
	display: block;
	height: auto;
	-webkit-box-shadow: 30px 30px 0px -10px var(--color-yellow);
	box-shadow: 30px 30px 0px -10px var(--color-yellow);
}

.about-signature {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 40px;
}

.about-signature img {
	display: block;
	width: 80px;
	height: 80px;
	margin-right: 20px;
	border-radius: 50%;
}

.about-signature p {
	line-height: 1;
}

.about-signature>div p:first-child {
	font-weight: 900;
}

.about-signature>div p:last-child {
	font-size: 12px;
	text-transform: uppercase;
}


/**************************************
*
*        EDGE 
*
***************************************/


#edge {
	background-color: var(--color-dark-blue);
	position: relative;
	min-height: 180px;
}

.edge-content {
	text-align: center;
	color: var(--color-white);
}

.edge-content h2 {
	color: var(--color-white);
}

.wrapper-edge {
	position: absolute;
	bottom: 0;
	left: 50%;
	-webkit-transform: translate(-50%, 50%);
	-ms-transform: translate(-50%, 50%);
	transform: translate(-50%, 50%);
	padding-top: 40px;
	padding-bottom: 40px;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	background-color: var(--color-yellow);
}

.single-edge {
	width: 25%;
	text-align: center;
	border-right: 1px solid var(--color-dark-blue);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.single-edge:last-child {
	border: none;
}

.single-edge h3 {
	font-size: 40px;
}


/**************************************
*
*        SERVICES
*
***************************************/


#services {
	padding-top: 200px;
	padding-bottom: 100px;
	background-color: var(--color-gray);
}

.wrapper-section-services {
	max-width: 1400px;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.wrapper-section-services aside {
	width: calc(25% - 5px);
	padding: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: var(--color-dark-blue);
	color: var(--color-white);
	margin-right: 5px;
	-webkit-box-shadow: 10px 10px 0px -5px var(--color-yellow);
	box-shadow: 10px 10px 0px -5px var(--color-yellow);
}

.wrapper-section-services aside h2 {
	color: var(--color-white);
}

.wrapper-services {
	width: 75%;
}

.wrapper-services article {
	width: calc(33.333333% - 20px);
	margin: 0px 10px 20px 10px;
	padding: 40px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	text-align: center;
	background-color: var(--color-white);
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.wrapper-services article img {
	width: 60px;
	height: auto;
	display: block;
	margin: 0 auto 20px auto;
}

.wrapper-services article h3 {
	font-size: 20px;
}


/**************************************
*
*        PRICING
*
***************************************/


.wrapper-pricing {
	margin-top: 50px;
}

.wrapper-pricing article {
	width: calc(50% - 20px);
	margin: 0px 10px 10px 10px;
	padding: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.wrapper-pricing article p {
	font-style: 14px;
}

.pricing-title {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
	padding-bottom: 5px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	-ms-flex-wrap: nowrap;
	flex-wrap: nowrap;
}

.pricing-title h3 {
	margin-bottom: 0px;
	font-size: 20px;
}

.pricing-title span {
	display: block;
	font-weight: 900;
	margin-left: 20px;
}


/**************************************
*
*        OFFER
*
***************************************/


#offer {
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(4, 4, 20, 0.3)), to(rgba(4, 4, 20, 0.3))), url('../images/bg-header.png');
	background-image: -o-linear-gradient(rgba(4, 4, 20, 0.3), rgba(4, 4, 20, 0.3)), url('../images/bg-header.png');
	background-image: linear-gradient(rgba(4, 4, 20, 0.3), rgba(4, 4, 20, 0.3)), url('../images/bg-header.png');
	background-repeat: no-repeat;
	background-position: left top;
	background-size: cover;
	background-attachment: fixed;
}

#offer h2 {
	color: var(--color-white);
}

#offer .btn {
	background-color: var(--color-yellow);
	color: var(--color-dark-blue);
}


/**************************************
*
*        FAQ
*
***************************************/


#faq {
	background-color: var(--color-gray);
}

.wrapper-faq {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.faq-content {
	width: calc(60%);
	padding-right: 60px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.faq-img {
	width: 40%;
	position: relative;
}

.faq-img img {
	width: 100%;
	display: block;
}

.wrapper-reviews {
	position: absolute;
	bottom: -20px;
	right: -40px;
	background-color: var(--color-yellow);
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.wrapper-reviews span {
	display: block;
	font-weight: 900;
	font-size: 30px;
	margin-bottom: 10px;
}

.wrapper-accordion .content-accordion:not(:first-of-type) {
	display: none;
}

.wrapper-faq h3 {
	font-size: 20px;
	padding: 15px;
	border-left: 5px solid var(--color-yellow);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	margin-bottom: 0px;
}

.wrapper-faq h3:hover {
	color: var(--color-yellow);
}

.wrapper-faq h3 i {
	margin-right: 10px;
	font-size: 16px;
}

.wrapper-faq .content-accordion {
	padding: 40px 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border-left: 5px solid var(--color-dark-blue);
	box-sizing: border-box;
}


/**************************************
*
*        TESTIMONIALS
*
***************************************/


.wrapper-testimonials {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 1400px;
}

.testimonials-content {
	width: calc(35% - 50px);
	padding: 60px 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-right: 50px;
	background-color: var(--color-dark-blue);
	color: var(--color-white);
	-webkit-box-shadow: 10px 10px 0px -5px var(--color-yellow);
	box-shadow: 10px 10px 0px -5px var(--color-yellow);
}

.testimonials-content h2 {
	color: var(--color-white);
}

.wrapper-testimonials-carousel {
	width: 65%;
}

.testimonials-carousel .wrapper-author {
	margin-top: 40px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.testimonials-carousel .wrapper-author img {
	width: 80px;
	height: 80px;
	display: block;
	margin-right: 15px;
	border-radius: 50%;
}

.testimonials-carousel .author-content p {
	font-weight: 900;
	font-size: 18px;
	margin-bottom: 5px;
}

.testimonials-carousel .wrapper-author ul li {
	float: left;
	color: var(--color-yellow);
	font-size: 12px;
}

.testimonials-carousel .item>p {
	font-style: italic;
}


/**************************************
*
*        BOOKING
*
***************************************/


#booking-wrapper {
	background-color: var(--color-gray);
}

.wrapper-booking-form {
	padding-top: 20px;
}

.wrapper-input {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.wrapper-input input {
	width: calc(50% - 20px);
	margin-bottom: 40px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	border: none;
	outline: none;
	display: block;
	background-color: var(--color-white);
	padding: 20px;
	color: var(--color-dark-blue);
	font-size: 16px;
	border-radius: 3px;
}

.wrapper-input input::-webkit-input-placeholder {
	color: var(--color-dark-blue);
	font-weight: 600;
}

.wrapper-input input::-moz-placeholder {
	color: var(--color-dark-blue);
	font-weight: 600;
}

.wrapper-input input:-ms-input-placeholder {
	color: var(--color-dark-blue);
	font-weight: 600;
}

.wrapper-input input::-ms-input-placeholder {
	color: var(--color-dark-blue);
	font-weight: 600;
}

.wrapper-input input::placeholder {
	color: var(--color-dark-blue);
	font-weight: 600;
}

button.btn {
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	font-size: 16px;
	background-color: var(--color-yellow);
	border: none;
	outline: none;
	color: var(--color-dark-blue);
	padding: 20px 35px;
}


/**************************************
*
*        CONTACT
*
***************************************/


#contact {
	padding-top: 100px;
	background-color: var(--color-dark-blue);
}

#contact h2 {
	color: var(--color-white);
}

.wrapper-contact {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	padding-bottom: 100px;
}

.wrapper-contact>div {
	width: 25%;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	color: var(--color-white);
}

.wrapper-contact>div h3 {
	color: var(--color-white);
	font-size: 20px;
}

.wrapper-contact>div a {
	color: var(--color-white);
}

.wrapper-contact>div a:hover {
	color: var(--color-yellow);
}

.wrapper-map iframe {
	width: 100%;
	height: 350px;
}

.copyright {
	background-color: var(--color-dark-blue);
	color: var(--color-white);
	padding: 30px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-size: 14px;
}

/**************************************
*
*        FOOTER MENU
*
***************************************/

.footer-menu {
	background-color: var(--color-blue);
	padding: 60px 0;
	border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-menu-content h3 {
	color: var(--color-white);
	font-size: 24px;
	font-weight: 600;
	margin-bottom: 40px;
	text-align: center;
}

.footer-links {
	display: flex;
	flex-wrap: wrap;
	gap: 40px;
	justify-content: space-between;
}

.footer-column {
	flex: 1;
	min-width: 200px;
}

.footer-column h4 {
	color: var(--color-yellow);
	font-size: 18px;
	font-weight: 600;
	margin-bottom: 20px;
}

.footer-column ul {
	list-style: none;
	padding: 0;
	margin: 0;
}

.footer-column li {
	margin-bottom: 12px;
}

.footer-column a {
	color: var(--color-white);
	text-decoration: none;
	font-size: 14px;
	transition: color 0.3s ease;
	line-height: 1.6;
}

.footer-column a:hover {
	color: var(--color-yellow);
	text-decoration: underline;
}

@media (max-width: 768px) {
	.footer-links {
		flex-direction: column;
		gap: 30px;
	}
	
	.footer-menu-content h3 {
		font-size: 20px;
		margin-bottom: 30px;
	}
	
	.footer-column h4 {
		font-size: 16px;
		margin-bottom: 15px;
	}
}