/**
* template:  Fixhub

TABLE OF CONTENTS

        + Global
        + Header
        + Header Content
        + About Us
        + Services
        + Pricing
        + Booking
        + Contacts

*/

@import 'reset.css';
@import 'all.min.css';
@import 'magnific-popup.css';

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300;400&amp;family=Oswald:wght@400;700&amp;display=swap');


/**************************************
*
*         GLOBAL   
*
***************************************/


:root {
	--color-dark: #212121;
	--color-white: #ffffff;
	--color-red-dark: #D32F2F;
	--color-red-light: #F44336;
	--color-gray-light: #f3f4f8;
	--color-gray-dark: #727272;
}

* {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
}

a {
	text-decoration: 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;
}

img {
	display: block;
	height: auto;
	width: 100%;
}

body {
	font-family: 'Open Sans', sans-serif;
	font-size: 16px;
	font-weight: 400;
	line-height: 1.5;
	color: var(--color-dark);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	line-height: 1.2;
	margin-bottom: 30px;
	text-transform: capitalize;
}

h1 {
	font-size: 70px;
	text-transform: uppercase;
	display: none;
}

h2 {
	font-size: 50px;
}

h3 {
	font-size: 25px;
}

@-webkit-keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

@keyframes load {
	0% {
		opacity: 0;
	}

	100% {
		opacity: 1;
	}
}

.ptb {
	padding-top: 100px;
	padding-bottom: 100px;
}

::-moz-selection {
	background-color: var(--color-red-dark);
	color: var(--color-white);
}

::selection {
	background-color: var(--color-red-dark);
	color: var(--color-white);
}

.align-center {
	text-align: center;
}

.btn {
	padding: 15px 30px;
	background-color: var(--color-red-dark);
	color: var(--color-white);
	text-transform: uppercase;
	border-radius: 3px;
	font-size: 14px;
	font-weight: 600;
}

.btn:hover {
	background-color: var(--color-red-light);
	color: var(--color-white);
	-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%);
}

.suptitle {
	display: inline-block;
	color: var(--color-red-dark);
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	margin-bottom: 10px;
	position: relative;
}

.suptitle:before {
	content: "";
	width: 50px;
	height: 1px;
	background-color: var(--color-red-dark);
	position: absolute;
	top: 50%;
	right: -60px;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
}

.wrapper {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

.container {
	max-width: 1200px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.flex {
	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;
}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	padding: 15px 20px;
}

#preload {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--color-gray-light);
	z-index: 2000;
	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: 40px;
	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;
}

#openmenu,
#closemenu {
	display: none;
}

.res-booking {
	display: none;
	font-size: 14px;
	margin-top: 20px;
	font-family: 'Oswald', sans-serif;
}

.res-booking .error {
	color: var(--color-red-light);
	font-weight: 700;
}

.res-booking .send {
	color: var(--color-dark);
	font-weight: 700;
}


/**************************************
*
*         HEADER   
*
***************************************/


#header {
	position: fixed;
	left: 0;
	top: 0;
	right: 0;
	z-index: 1000;
	background-color: var(--color-gray-light);
}

.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-logo-menu {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

#logo {
	margin-right: 50px;
}

#logo img {
	max-width: 100%;
}

.menu li {
	float: left;
	margin-left: 30px;
}

.menu li a {
	color: var(--color-dark);
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	font-size: 18px;
}

.menu li a:hover {
	color: var(--color-red-light);
}

.wrapper-header .social-link li {
	float: left;
	margin-left: 20px;
}

.wrapper-header .social-link li a {
	color: var(--color-dark);
}

.wrapper-header .social-link li a:hover {
	color: var(--color-red-light);
}


/**************************************
*
*        HEADER CONTENT  
*
***************************************/


.header-content {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	padding-top: 150px;
}

.header-content-img {
	width: 50%;
}

.header-content-img img {
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.header-content-link {
	width: 50%;
	padding-left: 50px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.header-content-link a {
	margin-top: 50px;
}


/**************************************
*
*        ABOUT US  
*
***************************************/


.wrapper-aboutus {
	max-width: 1200px;
}

.aboutus-content {
	width: 50%;
	padding-right: 50px;
}

.aboutus-content p {
	margin-bottom: 20px;
}

.aboutus-img {
	width: 50%;
	position: relative;
}

.popup-youtube,
.popup-vimeo,
.popup-gmaps {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.aboutus-img img {
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.aboutus-img a i {
	font-size: 60px;
	color: var(--color-red-dark);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.aboutus-img a i:hover {
	color: var(--color-red-light);
}

.wrapper-signature {
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-top: 50px;
}

.wrapper-signature img {
	width: 150px;
	margin-right: 10px;
}

.wrapper-signature>div h3,
.wrapper-signature>div p {
	margin-bottom: 0px;
}

.wrapper-signature>div h3 {
	font-size: 20px;
	margin-bottom: 10px;
	letter-spacing: 2px;
}

.wrapper-signature>div p {
	color: var(--color-red-dark);
	font-size: 12px;
	text-transform: uppercase;
	font-weight: 300;
}


/**************************************
*
*        SERVICES 
*
***************************************/


.wrapper-services article {
	width: calc(33.333333% - 20px);
	margin: 10px;
	padding: 30px;
}

.wrapper-services article img {
	margin: 0 auto;
	max-width: 50px;
	margin-bottom: 20px;
}


/**************************************
*
*          PRICING 
*
***************************************/


.wrapper-pricing {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wrapper-pricing article {
	width: calc(33.333333% - 20px);
	margin: 10px;
	padding: 40px 20px;
	-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%);
	background-color: var(--color-white);
	text-align: center;
	border-bottom: 2px solid var(--color-red-dark);
}

.wrapper-pricing .active {
	background-color: var(--color-dark);
	color: var(--color-white);
	padding-top: 80px;
	padding-bottom: 80px;
	-webkit-box-shadow: 20px 20px 0px -10px var(--color-red-dark);
	box-shadow: 20px 20px 0px -10px var(--color-red-dark);
}

.wrapper-pricing .active h3 {
	color: var(--color-white);
}

.wrapper-pricing article h3 {
	font-size: 30px;
}

.wrapper-price {
	font-size: 40px;
	font-family: 'Oswald', sans-serif;
	font-weight: 700;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 20px;
}

.wrapper-pricing article ol li {
	margin-bottom: 20px;
}

.wrapper-pricing article ol li i {
	color: var(--color-red-dark);
	margin-right: 10px;
}


/**************************************
*
*        TEAM  
*
***************************************/


#team {
	background-color: var(--color-gray-light);
}

.team-content {
	background-color: var(--color-white);
	padding: 30px;
}

.single-team .social-link {
	width: 100%;
	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;
}

.single-team .social-link li {
	margin-left: 10px;
	margin-right: 10px;
}

.single-team .social-link li a {
	color: var(--color-dark);
}

.single-team .social-link li a:hover {
	color: var(--color-red-light);
}

.single-team h3 {
	margin-bottom: 10px;
}

.single-team p {
	margin-bottom: 20px;
}

.owl-theme .owl-nav.disabled+.owl-dots {
	margin-top: 40px;
}


/**************************************
*
*        BOOKING  
*
***************************************/


#booking {
	padding-bottom: 100px;
}

.booking-form {
	width: 60%;
	padding-right: 50px;
}

.booking-img {
	width: 40%;
}

.booking-img img {
	-webkit-box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
	box-shadow: 0px 15px 40px -5px rgb(0 0 0 / 10%);
}

.wrapper-input {
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
}

.wrapper-input input {
	display: block;
	padding: 10px;
	border: none;
	outline: none;
	width: calc(50% - 20px);
	margin-bottom: 40px;
	color: var(--color-dark);
	font-family: 'Oswald', sans-serif;
	font-weight: 400;
	font-size: 16px;
	border-bottom: 1px solid var(--color-red-dark);
	border-left: 1px solid var(--color-red-dark);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
}

.wrapper-input input::-webkit-input-placeholder {
	color: var(--color-gray);
}

.wrapper-input input::-moz-placeholder {
	color: var(--color-gray);
}

.wrapper-input input:-ms-input-placeholder {
	color: var(--color-gray);
}

.wrapper-input input::-ms-input-placeholder {
	color: var(--color-gray);
}

.wrapper-input input::placeholder {
	color: var(--color-gray);
}

button {
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	transition-duration: 0.5s;
	border: none;
}


/**************************************
*
*         CONTACT
*
***************************************/


footer {
	background-color: var(--color-gray-light);
}

.wrapper-contact>div {
	width: 25%;
	padding: 20px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.wrapper-contact>div p {
	margin-bottom: 10px;
}

#contacts .social-link {
	margin-top: 30px;
}

.wrapper-contact>div a {
	color: var(--color-dark);
}

.wrapper-contact>div a:hover {
	color: var(--color-red-light);
}

.wrapper-contact>div h3 {
	font-size: 25px;
}

.wrapper-map {
	width: 100%;
	height: 450px;
}

.wrapper-map iframe {
	width: 100%;
	height: 100%;
}

.copyright {
	width: 100%;
	padding: 30px 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	background-color: var(--color-dark);
	color: var(--color-white);
	font-size: 14px;
}

#contacts .social-link li {
	margin-right: 20px;
}