/**
* template:  LiveLight

TABLE OF CONTENTS

      + Global
	  + Header
	  + Header Content
	  + About Us
	  + Services
	  + Banner
	  + Plans
	  + Pricing
	  + Gallery
	  + Testimonials
	  + Form
	  + Contact
      
*/

@import 'reset.css';
@import 'all.min.css';
@import 'magnific-popup.css';
@import 'owl.carousel.min.css';
@import 'owl.theme.default.min.css';
@import 'jquery.rprogessbar.min.css';
@import 'scrollCue.css';

@import url('https://fonts.googleapis.com/css2?family=Lato:ital,wght@0,100;0,300;0,400;0,700;0,900;1,100;1,300;1,400;1,700;1,900&family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');


/**************************************
*
*         GLOBAL   
*
***************************************/

:root {
   --color-light-green: #F1FFF8;
   --color-orange: #FF914D;
   --color-dark:#444444;
   --color-gray: #FAFFFD;
   --color-dark-green:#d4ce6e;
   --color-white:#FFFFFF;
   --color-black: #000000;
}

::-moz-selection {
	background-color: var(--color-orange);
	color: var(--color-white);
}

::selection {
	background-color: var(--color-orange);
	color: var(--color-white);
}

* {
    -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;
}

.res-booking {
	margin-top: 30px;
	margin-left: 10px;
	display: none;
	font-size: 16px;
	margin-top: 20px;
}

.res-booking .error {
	color: var(--color-white);
}

.res-booking .send {
	color: var(--color-white);
}

img {
	display: block;
	height: auto;
	width: 100%;
}

body {
  font-family: "Lato", sans-serif;
  font-weight: 400;
  font-style: normal;
	font-size: 18px;
	line-height: 1.5;
	color:var(--color-dark);
	background-color: var(--color-light-green);
}

@-webkit-keyframes menu {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes menu {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@-webkit-keyframes load {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

@keyframes load {

	from {
		-webkit-transform: rotate(0deg);
		        transform: rotate(0deg);
	}

	to {
		-webkit-transform: rotate(720deg);
		        transform: rotate(720deg);
	}
}

#preload {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--color-dark-green);
	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: 44px;
	height: auto;
	-webkit-animation-name: load;
	animation-name: load;
	-webkit-animation-duration: 3s;
	animation-duration: 3s;
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	font-family: "Lato", sans-serif;
    font-weight: 700;
    font-style: normal;
	line-height: 1.2;
	margin-bottom: 30px;
	text-transform: uppercase;
    color: var(--color-black);
}

h1 {
	font-size: 110px;
	color: var(--color-white);
	
}

h2 {
	font-size: 50px;
}

h3 {
	font-size: 26px;
}

.align-center {
	text-align: center;
}

.btn {
	padding: 15px 30px;
	background-color: var(--color-orange);
	border: 1px solid var(--color-white);
	color: var(--color-white);
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
  letter-spacing: 1px;
  border-radius: 3px;
}

.btn:hover {
    background-color: var(--color-dark-green);
	border: 1px solid var(--color-white);
	color:var(--color-white);
}

.wrapper {
	max-width: 1920px;
	width: 100%;
	margin: 0 auto;
}

.container {
	max-width: 1400px;
	width: 100%;
	margin: 0 auto;
	padding: 0 15px;
}

.ptb {
	padding-top: 100px;
	padding-bottom: 100px;
}

.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;
}

.suptitle {
	display: inline-block;
	color: var(--color-orange);
	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-orange);
	position: absolute;
	top: 50%;
	right: -60px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
}

.social-link li {
	margin-right: 20px;
}

.social-link li a {
	color: var(--color-white);
}

.social-link li a:hover {
	color: var(--color-orange);
}

.stroke {
    -webkit-text-stroke: 2px var(--color-white);
    color: transparent;
}

#openmenu,
#closemenu {
	font-size: 30px;
	color: var(--color-white);
	display: none;
}

#openmenu:hover,
#closemenu:hover {
	color: var(--color-orange);
}

#closemenu {
	float: right;
}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	padding: 15px;
	background-color: var(--color-orange);
	border: 1px solid var(--color-white);
	color: var(--color-white);
	font-size: 18px;
}

#scroll-top:hover {
	color: var(--color-white);
	border: 1px solid var(--color-white);
	background-color: var(--color-dark-green);
}


/**************************************
*
*         HEADER   
*
***************************************/


.header {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

.bg-scroll {
	background-color: var(--color-dark-green);
}

#logo {
   margin-right: 20px;
}

#logo img {
   max-width: 100%;
}

.wrapper-header {
	padding-top: 10px;
	padding-bottom: 10px;
	-webkit-box-pack: justify;
	    -ms-flex-pack: justify;
	        justify-content: space-between;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.wrapper-menu-btn {
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
}

.wrapper-menu-btn .btn {
	margin-left: 30px;
}

.header-menu li {
   float: left;
   margin-right: 30px;
}

.header-menu>li a {
	color: var(--color-white);
	text-transform: uppercase;
	padding-top: 10px;
	padding-bottom: 10px;
}

.header-menu>li a:hover {
	color: var(--color-orange);
}


/**************************************
*
*         HEADER CONTENT
*
***************************************/


.wrapper-header-content {
	min-height: 900px;
	width: 100%;
	background-image: -webkit-gradient( linear, left top, left bottom, from(rgba(255, 145, 77, 0.0)), to(rgba(255, 145, 77, 0.0))),  url('../images/bg-header.png');
	background-image: -o-linear-gradient( rgba(255, 145, 77, 0.0), rgba(255, 145, 77, 0.0)),  url('../images/bg-header.png');
	background-image: linear-gradient( rgba(255, 145, 77, 0.0), rgba(255, 145, 77, 0.0)),  url('../images/bg-header.png');
	background-repeat: no-repeat;
	background-position: center top;
	background-size: cover;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
}

.wrapper-header-content .suptitle {
	color: var(--color-white);
}

.wrapper-header-content .suptitle:before {
	background-color: var(--color-white);
}


/**************************************
*
*        ABOUT US
*
***************************************/


.wrapper-aboutus {
     -webkit-box-align: center;
         -ms-flex-align: center;
             align-items: center;
}

.aboutus-img {
	width:calc(50% - 50px);
	margin: 25px;
	position:relative;
}

.aboutus-img img {
	border-radius: 3px;
}

.aboutus-content {
	width: 50%;
	padding:50px 50px 50px 100px;
	background-color: var(--color-white);
	-webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
	        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.small-img {
	max-width: 400px;
	position: absolute;
	bottom: -60px;
	right: -40px;
	border-radius: 3px;
}

.small-img  > a {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	    -ms-transform: translate(-50%, -50%);
	        transform: translate(-50%, -50%);
	font-size: 60px;
	color: var(--color-white);
}

.small-img  > a:hover {
	color: var(--color-orange);
}

.aboutus-content p {
	margin-bottom: 20px;
}

.wrapper-signature {
	margin-top: 50px;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 50px;
}

.wrapper-signature img {
	max-width: 180px;
	margin-right: 10px;
}

.wrapper-signature h3 {
	font-size: 18px;
	margin-bottom: 5px;
}

.wrapper-signature p {
	text-transform: uppercase;
	letter-spacing: 3px;
	font-size: 12px;
	color: var(--color-orange);
}


/**************************************
*
*        SERVICES
*
***************************************/


.wrapper-services {
	max-width: 1920px;
	padding-left: 0px;
	padding-right: 0px;
}

.single-service {
	position: relative;
}

.last-img {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

.single-service:hover .last-img {
	opacity: 1;
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(68, 68, 68, 0)), to(rgba(68, 68, 68, 0.4)));
	background-image: -o-linear-gradient(rgba(68, 68, 68, 0), rgba(68, 68, 68, 0.4));
	background-image: linear-gradient(rgba(68, 68, 68, 0), rgba(68, 68, 68, 0.4));
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-direction: column;
	        flex-direction: column;
	-webkit-box-pack: end;
	    -ms-flex-pack: end;
	        justify-content: flex-end;
}

.service-content {
	padding: 40px 20px;
	color: var(--color-white);
}

.service-content h3 {
	font-size: 22px;
	color: var(--color-white);
}


/**************************************
*
*        BANNER
*
***************************************/


#banner {
	background-color: var(--color-dark-green);
}

#banner h2, 
.wrapper-banner .suptitle {
	color: var(--color-white);
}

.wrapper-banner {
	max-width: 1200px;
}

.wrapper-banner .suptitle::before {
   background-color: var(--color-white);
}


/**************************************
*
*        PLANS
*
***************************************/


.wrapper-plans {
	max-width: 1600px;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	background-color: var(--color-orange);
	padding-left: 0px;
	padding-right: 0px;
}

.plans-img {
	width: 50%;
}

.plans-content {
	width: 50%;
	padding: 50px;
}

.plans-content p {
	margin-bottom: 20px;
}

.plans-content .suptitle, 
.plans-content, 
.plans-content h2 {
	color: var(--color-white);
}

.plans-content .suptitle::before {
	background-color: var(--color-white);
}

.wrapper-progressbar {
	margin-top: 50px;
}

.single-progressbar h3 {
	margin-bottom: 10px;
}

.percentCount {
	color: var(--color-white);
	font-size: 16px;
}

.wrapper-progressbar h3 {
	font-size: 14px;
	color:var(--color-white);
}


/**************************************
*
*        PRICING
*
***************************************/


#pricing .stroke {
	 -webkit-text-stroke: 2px var(--color-orange);
}

.single-pricing  {
	padding: 50px 20px;
	background-color: var(--color-white);
	border-radius: 3px;
	width: calc(33.333333% - 40px);
	margin: 20px;
	-webkit-box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
	        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.05);
}

.single-pricing  h3 {
	color: var(--color-orange);
	font-size: 18px;
	letter-spacing: 2px;
	margin-bottom: 10px;
}

.price {
	margin-bottom: 30px;
	text-transform: uppercase;
	font-size: 50px;
	font-weight: 400;
}

.single-pricing ol {
	margin-bottom: 50px;
	margin-left: 50px;
	margin-right: 50px;
}

.single-pricing ol li {
	margin-bottom: 20px;
	text-align: left;
}
.single-pricing ol li i {
	margin-right: 20px;
}

.single-pricing ol li .fa-check {
	color: var(--color-dark-green);
}

.single-pricing ol li .fa-xmark {
	color: var(--color-orange);
}


/**************************************
*
*        GALLERY
*
***************************************/


.single-gallery {
	overflow: hidden;
	display: block;
	position: relative;
}

.overlay-gallery {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	background-color: rgba(68, 68, 68, 0.5);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

.single-gallery:hover > .overlay-gallery  {
	opacity: 1;
}

.overlay-gallery i {
	position: absolute;
	top: 50%;
	left: 50%;
	color: var(--color-dark-green);
	font-size: 20px;
}


/**************************************
*
*        TESTIMONIALS
*
***************************************/


#testimonials {
	background-color: var(--color-dark-green);
}

#testimonials h2, #testimonials .suptitle {
	color: var(--color-white);
}

#testimonials .suptitle::before {
	background-color: var(--color-white);
}

.wrapper-testimonials {
	max-width: 1000px;
	margin-top: 50px;
}

.single-testimonials img {
	width: 80px !important;
	height: 80px !important;
	margin: 0 auto;
	border-radius: 50%;
	margin-bottom: 30px;
}

.single-testimonials p {
	margin-bottom: 20px;
	color: var(--color-white);
}

.wrapper-author h3 {
	margin-bottom: 10px;
	font-size: 20px;
	color: var(--color-white);
}

.wrapper-author p {
	font-size: 14px;
	letter-spacing: 2px;
	text-transform: uppercase;
	color: var(--color-white);
}

#testimonials .owl-carousel.testimonials-carousel .owl-item {
	height: auto;
}

#testimonials .owl-theme .owl-nav.disabled+.owl-dots {
    margin-top: 40px;
}

#testimonials .owl-theme .owl-dots .owl-dot.active span, .owl-theme .owl-dots .owl-dot:hover span {
    background: var(--color-orange);
}

#testimonials .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 3px;
    margin: 5px 7px;
    background: var(--color-white);
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
    border-radius: none;
}


/**************************************
*
*        FORM
*
***************************************/


.wrapper-booking {
	max-width: 1920px;
	padding-left: 0px;
	padding-right: 0px;
}

.contact-img {
	width: 50%;
}

.contact-img img {
	height: 100%;
}

.contact-form {
	width: 50%;
	background-color: var(--color-orange);
	color: var(--color-white);
	padding: 50px 40px;
}

.contact-form h2 {
	color: var(--color-white);
}

.contact-form  .suptitle {
	color: var(--color-white);
}

.contact-form  .suptitle::before {
	background-color: var(--color-white);
}

form {
	margin-top: 50px;
}

input, textarea {
	outline: none;
	border: none;
	padding: 15px;
	border: 1px solid var(--color-white);
	color: var(--color-white);
    font-size: 16px;
	background-color: transparent;
	display: block;
	font-family: "Lato", sans-serif;
    font-weight: 400;
}

textarea {
    min-height: 150px;
	width: 100%;
	margin-bottom: 20px;
}

::-webkit-input-placeholder {
	color: var(--color-white);
	font-size: 14px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

::-moz-placeholder {
	color: var(--color-white);
	font-size: 14px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

:-ms-input-placeholder {
	color: var(--color-white);
	font-size: 14px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

::-ms-input-placeholder {
	color: var(--color-white);
	font-size: 14px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

::placeholder {
	color: var(--color-white);
	font-size: 14px;
	text-transform: uppercase;
	 font-family: "Lato", sans-serif;
    font-weight: 400;
}

.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 {
   width: calc(50% - 10px);
   margin-bottom: 20px;
}

#sendmessage {
	cursor: pointer;
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

#sendmessage:hover {
	background-color: var(--color-dark-green);
}


/**************************************
*
*         CONTACTS
*
***************************************/


.wrapper-contact {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.wrapper-contact>div {
	width: 25%;
	padding: 20px;
	color: var(--color-dark);
}

.wrapper-contact>div p {
	margin-bottom: 10px;
}

.wrapper-contact>div h3 {
	font-size: 20px;
	color: var(--color-dark);
}

.wrapper-contact>div a {
	color: var(--color-dark);
}

.wrapper-contact>div a:hover {
	color: var(--color-orange);
}

.copyright {
	padding: 15px 15px 50px 15px;
	text-align: center;
	font-size: 14px;
	color: var(--color-dark);
}

#contacts .social-link {
	margin-top: 30px;
}

#contacts .social-link li {
	margin-right: 20px;
}

#contacts .social-link li a {
	color: var(--color-dark);
}

#contacts .social-link li a:hover {
	color: var(--color-orange);
}