/**
* template:  PURECLEAN

TABLE OF CONTENTS

        + Global
		+ Header
		+ Header Content
		+ Services
		+ About Us
		+ Projects
		+ Offer
		+ Pricing
		+ Testimonials
		+ Contact
*/

@import 'reset.css';
@import 'all.min.css';
@import 'magnific-popup.css';
@import 'owl.carousel.min.css';
@import 'owl.theme.default.min.css';
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@300;400;600;900&display=swap');


/**************************************
*
*         GLOBAL   
*
***************************************/


:root {
	--color-blue: #b3d3e2;
	--color-yellow: #fef22e;
	--color-gray: #f6f7f9;
	--color-white: #ffffff;
	--color-dark-blue: #043e74;
	--color-dark: #010d18;
}

::-moz-selection {
	background-color: var(--color-yellow);
	color: var(--color-dark);
}

::selection {
	background-color: var(--color-yellow);
	color: var(--color-dark);
}

@-webkit-keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

#preload {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 20000;
	background-color: var(--color-dark-blue);
	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 {
	display: block;
	width: 32px;
	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;
}

body {
	font-family: 'Montserrat', sans-serif;
	font-weight: 400;
	font-size: 16px;
	line-height: 1.5;
	color: var(--color-dark-gray);
}

img {
	height: auto;
}

a {
	text-decoration: none;
	outline: none;
	display: inline-block;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 900;
	margin-bottom: 30px;
	text-transform: capitalize;
	line-height: 1.3;
	color: var(--color-dark-blue);
}

h1 {
	font-size: 65px;
}

h2 {
	font-size: 45px;
}

h3 {
	font-size: 20px;
}

.suptitle {
	text-transform: uppercase;
	color: var(--color-dark);
	margin-bottom: 15px;
	display: inline-block;
	position: relative;
	margin-left: 50px;
}

.suptitle::before {
	content: "";
	background-image: url('../images/stars.png');
	background-repeat: no-repeat;
	display: block;
	width: 35px;
	height: 35px;
	top: 50%;
	left: -45px;
	position: absolute;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.suptitle::after {
	content: "";
	display: block;
	width: 50px;
	height: 1px;
	background-color: var(--color-dark);
	position: absolute;
	top: 50%;
	right: -60px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.wrapper {
	max-width: 1920px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 0 auto;
}

.container {
	max-width: 1400px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding: 0 15px;
	margin: 0 auto;
}

.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;
}

.ptb {
	padding-top: 100px;
	padding-bottom: 100px;
}

.btn {
	padding: 14px 25px;
	display: inline-block;
	border-radius: 3px;
	text-decoration: none;
	text-transform: uppercase;
	color: var(--color-dark);
	background-color: var(--color-yellow);
	font-weight: 600;
}

.btn:hover {
	background-color: var(--color-blue);
	-webkit-box-shadow: 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 12%), 0 8px 10px -7px rgb(0 0 0 / 20%);
	box-shadow: 0 16px 24px 2px rgb(0 0 0 / 14%), 0 6px 30px 5px rgb(0 0 0 / 12%), 0 8px 10px -7px rgb(0 0 0 / 20%);
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 30px;
}

.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot:hover span {
	background: var(--color-dark-blue);
}

.owl-theme .owl-dots .owl-dot span {
	background: var(--color-blue);
}

.owl-theme .owl-dots .owl-dot span {
	width: 20px;
	height: 5px;
	margin: 5px 7px;
	background: #D6D6D6;
	display: block;
	-webkit-backface-visibility: visible;
	-webkit-transition: opacity .2s ease;
	-o-transition: opacity .2s ease;
	transition: opacity .2s ease;
	border-radius: 30px;
}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	padding: 15px 20px;
}

#scroll-top i {
	margin-left: 0px;
}

.fixed-header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 200;
}

.selection {
	background-color: var(--color-yellow);
	color: var(--color-dark);
	padding-left: 10px;
	padding-right: 10px;
}

#openmenu,
#closemenu {
	font-size: 30px;
	color: var(--color-white);
	display: none;
}

#openmenu:hover,
#closemenu:hover {
	color: var(--color-blue);
}

.res-booking {
	display: none;
	font-size: 14px;
	margin-top: 20px;
	padding-left: 10px;
}

.res-booking .error {
	color: #ff0000 !important;
	font-weight: 600;
}

.res-booking .send {
	color: var(--color-white);
	font-weight: 600;
}


/**************************************
*
*         HEADER  
*
***************************************/


header {
	background-color: var(--color-dark-blue);
}

.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;
	padding-top: 20px;
	padding-bottom: 20px;
}

.wrapper-menu-contact {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.menu li {
	float: left;
	margin-left: 30px;
}

.menu li a {
	color: var(--color-white);
	text-transform: capitalize;
	font-size: 18px;
}

.menu li a:hover {
	color: var(--color-white);
}

.menu li a::after {
	content: "";
	width: 0%;
	height: 1px;
	display: block;
	background-color: var(--color-white);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.menu li a:hover::after {
	width: 100%;
}

.header-contact {
	margin-left: 60px;
	font-size: 18px;
	font-weight: 600;
	color: var(--color-white);
}

.header-contact a {
	margin-left: 10px;
	color: var(--color-white);
	font-weight: 900;
}

.header-contact a:hover {
	color: var(--color-white);
}

.header-contact a::after {
	content: "";
	width: 0%;
	height: 1px;
	display: block;
	background-color: var(--color-white);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.header-contact a:hover::after {
	width: 100%;
}


/**************************************
*
*         HEADER CONTENT  
*
***************************************/


.header-content-bg {
	background-image: -webkit-gradient(linear, left top, right top, from(#fff), to(var(--color-dark-blue)));
	background-image: -o-linear-gradient(left, #fff, var(--color-dark-blue));
	background-image: linear-gradient(90deg, #fff, var(--color-dark-blue));
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}

.wrapper-header-content {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 1200px;
}

.header-content {
	width: 55%;
}

.header-img {
	width: 45%;
}

.header-img img {
	width: 100%;
	display: block;
}


/**************************************
*
*         SERVICES  
*
***************************************/


#services {
	background-color: var(--color-gray);
}

#services .wrapper-title-services {
	text-align: center;
}

.wrapper-services-item {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.single-service-item {
	width: calc(33.333333% - 20px);
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin: 10px;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	text-align: center;
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.single-service-content {
	background-color: var(--color-white);
	padding: 40px 20px;
}

.single-service-item:hover .single-service-content {
	background-color: transparent;
	background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--color-dark-blue)));
	background-image: -o-linear-gradient(transparent, var(--color-dark-blue));
	background-image: linear-gradient(transparent, var(--color-dark-blue));
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.single-service-content h3 {
	margin-bottom: 20px;
}

.single-service-item:hover .single-service-content h3,
.single-service-item:hover .single-service-content p {
	color: var(--color-white);
}

.wrapper-icon-service {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: var(--color-yellow);
	margin: 0 auto 20px auto;
}

.wrapper-icon-service img {
	width: 44px;
	height: 44px;
	display: block;
}


/**************************************
*
*        ABOUT US  
*
***************************************/


.wrapper-aboutus {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.aboutus-img {
	width: 40%;
}

.aboutus-img img {
	width: 100%;
	display: block;
}

.aboutus-content {
	width: 60%;
	padding-left: 50px;
	padding-right: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.aboutus-content p {
	margin-bottom: 20px;
}

.wrapper-edge {
	width: 100%;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.single-edge {
	width: 33%;
	text-align: center;
	background-color: var(--color-yellow);
	padding: 30px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	margin-top: 50px;
	margin-bottom: 50px;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.single-edge h3 {
	margin-bottom: 10px;
	font-size: 40px;
	font-weight: 600;
	color: var(--color-dark-blue);
}

.single-edge p {
	margin-bottom: 0px;
	color: var(--color-dark-blue);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
}

.wrapper-signature {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.signature {
	margin-left: 10px;
}

.signature h3 {
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: 600;
}

.signature p {
	font-size: 12px;
	margin-bottom: 0px;
}


/**************************************
*
*         PROJECTS 
*
***************************************/


#projects {
	background-color: var(--color-gray);
}

.projects-carousel a {
	display: block;
	overflow: hidden;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	position: relative;
	color: var(--color-white);
}

.projects-carousel a>img {
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.projects-carousel a:hover>img {
	-webkit-transform: scale(1.2, 1.2);
	-ms-transform: scale(1.2, 1.2);
	transform: scale(1.2, 1.2);
}

.wrapper-carousel-content {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-color: transparent;
	-webkit-box-pack: end;
	-ms-flex-pack: end;
	justify-content: flex-end;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-ms-flex-direction: column;
	flex-direction: column;
	padding: 40px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	background-image: -webkit-gradient(linear, left top, left bottom, from(transparent), to(var(--color-dark-blue)));
	background-image: -o-linear-gradient(transparent, var(--color-dark-blue));
	background-image: linear-gradient(transparent, var(--color-dark-blue));
}

.wrapper-icon-carousel {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	width: 80px;
	height: 80px;
	border-radius: 50%;
	background-color: var(--color-yellow);
	margin-bottom: 20px;
}

.wrapper-icon-carousel img {
	width: 44px !important;
	height: 44px !important;
	display: block;
}

.wrapper-carousel-content h3 {
	margin-bottom: 20px;
	color: var(--color-white);
}


/**************************************
*
*         OFFER 
*
***************************************/


.wrapper-offer {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	max-width: 1200px;
	background-color: var(--color-dark-blue);
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.offer-content {
	width: 60%;
	padding: 50px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.offer-img {
	width: 40%;
	padding: 50px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	position: relative;
}

.offer-img img {
	position: absolute;
	bottom: 0;
	right: 0;
}

.offer-content h2 {
	color: var(--color-white);
}


/**************************************
*
*        PRICING
*
***************************************/


#pricing {

	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}

#pricing .wrapper-title-pricing {
	text-align: center;
}

.wrapper-pricing {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	max-width: 1200px;
}

.single-pricing-item {
	width: 32%;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	text-align: center;
	background-color: var(--color-white);
}

.single-pricing-title {
	background-color: var(--color-dark-blue);
	padding: 40px 20px;
	position: relative;
}

.label {
	position: absolute;
	top: 0px;
	right: 0px;
	background-color: var(--color-yellow);
	padding: 10px 20px;
	display: inline-block;
	color: var(--color-dark);
	text-transform: uppercase;
	font-weight: 600;
	font-size: 14px;
}

.single-pricing-title h3 {
	margin-bottom: 0px;
	color: var(--color-white);
	font-size: 45px;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.single-pricing-title h3 span:first-of-type {
	font-size: 18px;
	font-weight: 400;
	margin-right: 5px;
	display: inline-block;
}

.single-pricing-title h3 span:last-of-type {
	margin-left: 5px;
	font-size: 18px;
	font-weight: 400;
	display: inline-block;
	-ms-flex-item-align: end;
	align-self: flex-end;
	text-transform: lowercase;
}

.single-pricing-content {
	padding: 40px;
	text-align: center;
}

.single-pricing-content ol li {
	margin-bottom: 20px;
}

.single-pricing-content ol li i {
	color: var(--color-dark-blue);
	margin-right: 10px;
}


/**************************************
*
*        TESTIMONIALS
*
***************************************/


#testimonials {
	background-color: var(--color-gray);
}

.wrapper-testimonials {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.testimonials-content {
	width: 35%;
	padding-right: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.testimonials-content p {
	margin-bottom: 20px;
}

.wrapper-carousel {
	width: 65%;
}

.testimonials-carousel .item {
	background-color: var(--color-white);
	padding: 40px 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.single-testimonials {
	text-align: center;
}

.single-testimonials img {
	display: block;
	width: 80px !important;
	height: 80px !important;
	border-radius: 50%;
	margin: 0 auto 20px auto;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.star {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.star li {
	margin: 0px 2px 20px 2px;
	color: var(--color-yellow);
}

.wrapper-author {
	margin-top: 30px;
}

.wrapper-author h3 {
	margin-bottom: 5px;
	font-size: 20px;
	font-weight: 600;
}

.wrapper-author p {
	margin-bottom: 0px;
	font-size: 12px;
	text-transform: uppercase;
}


/**************************************
*
*        CONTACT
*
***************************************/


footer {
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	background-attachment: fixed;
}

.wrapper-contacts {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	background-color: var(--color-dark-blue);
	padding: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.contacts-content {
	width: 50%;
	color: var(--color-white);
}

.contacts-content a,
.contacts-content,
.contacts-content h2,
.contacts-content .suptitle,
.contacts-content h3 {
	color: var(--color-white);
}

.contacts-content a:hover {
	color: var(--color-yellow);
}

.contacts-content h3 {
	margin-bottom: 10px;
}

.contacts-content .suptitle::after {
	background-color: var(--color-white);
}

.contacts-content>.flex-row {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.wrapper-single-contact {
	width: 50%;
	padding: 20px 20px 20px 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.social-link li {
	float: left;
	margin-right: 10px;
}

.contacts-form {
	width: 50%;
}

.wrapper-input {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.wrapper-input input,
textarea {
	display: block;
	width: calc(50% - 20px);
	margin: 10px;
	border: none;
	outline: none;
	padding: 0px;
	padding: 15px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: var(--color-gray);
	color: var(--color-dark);
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

textarea {
	width: calc(100% - 20px);
	height: 180px;
}

.wrapper-input input::-webkit-input-placeholder,
textarea::-webkit-input-placeholder {
	color: var(--color-dark);
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

.wrapper-input input::-moz-placeholder,
textarea::-moz-placeholder {
	color: var(--color-dark);
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

.wrapper-input input:-ms-input-placeholder,
textarea:-ms-input-placeholder {
	color: var(--color-dark);
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

.wrapper-input input::-ms-input-placeholder,
textarea::-ms-input-placeholder {
	color: var(--color-dark);
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

.wrapper-input input::placeholder,
textarea::placeholder {
	color: var(--color-dark);
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
}

.wrapper-input input:focus,
textarea:focus {
	background-color: var(--color-blue);
}

#sendform {
	border: none;
	outline: none;
	cursor: pointer;
	margin: 10px;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.copyright {
	background-color: var(--color-dark);
	padding-top: 20px;
	padding-bottom: 20px;
	text-align: center;
	color: var(--color-gray);
	font-size: 14px;
}

.wrapper-map iframe {
	width: 100%;
	height: 400px;
	display: block;
}