@import 'reset.css';
@import 'all.min.css';
@import 'owl.carousel.min.css';
@import 'owl.theme.default.min.css';
@import 'magnific-popup.css';

@import url('https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Ranchers&display=swap');


/**************************************
*
*         GLOBAL   
*
***************************************/


:root {
  --color-mex-red: #E53935;       
  --color-fiesta-yellow: #FDD835;  
  --color-agave-green: #2E7D32;   
  --color-chili-orange: #FB8C00;   
  --color-white: #FFFFFF;
  --color-coal: #1A1A1A;
  --color-light-gray: #F5F5F5;
  --color-dark-gray: #424242;

 }

 @-webkit-keyframes load {

	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

 ::-moz-selection {
	background-color: var(--color-chili-orange);
	color: var(--color-white);
}

 ::selection {
	background-color: var(--color-chili-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;
}

img {
	display: block;
	height: auto;
	width: 100%;
}

body {
  font-family: "Poppins", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 18px;
	line-height: 1.5;
  color: var(--color-dark-gray);
}

h1,
h2,
h3,
h4,
h5,
h6 {
	  font-family: "Ranchers", sans-serif;
    font-weight: 400;
    font-style: normal;
	  line-height: 1.2;
	  margin-bottom: 30px;
	  text-transform: uppercase;
    color: var(--color-coal);
}

h1 {
	font-size: 110px;
	color: var(--color-white);
}

h2 {
	font-size: 50px;
}

h3 {
	font-size: 20px;
	letter-spacing: 2px;
}

.align-center {
	text-align: center;
}

.btn {
	padding: 15px 30px;
	background-color: var(--color-chili-orange);
	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-agave-green);
	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-chili-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-chili-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-agave-green);
}

#openmenu,
#closemenu {
	font-size: 30px;
	color: var(--color-white);
	display: none;
}

#openmenu:hover,
#closemenu:hover {
	color: var(--color-agave-green);
}

#closemenu {
	float: right;
}

#scroll-top {
	position: fixed;
	bottom: 30px;
	right: 30px;
	z-index: 100;
	padding: 15px;
	background-color: var(--color-chili-orange);
	color: var(--color-white);
	font-size: 18px;
}

#scroll-top:hover {
	color: var(--color-white);
	background-color: var(--color-agave-green);
}

.overlay {
	position: absolute;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	opacity: 0;
	background-color:  rgba(255, 255, 255, 0.5);
	-webkit-transition: all;
	-o-transition: all;
	transition: all;
	-webkit-transition-duration: 0.5s;
	     -o-transition-duration: 0.5s;
	        transition-duration: 0.5s;
}

.overlay i {
	position: absolute;
	top: 50%;
	left: 50%;
	color: var(--color-chili-orange);
	font-size: 20px;
	-webkit-transform: translate(-50%,-50%);
	    -ms-transform: translate(-50%,-50%);
	        transform: translate(-50%,-50%);
}

#preload {
	position: fixed;
	top: 0;
	left: 0;
	bottom: 0;
	right: 0;
	width: 100%;
	height: 100vh;
	background-color: var(--color-chili-orange);
	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;
}

.res-booking {
	margin-top: 30px;
	margin-left: 10px;
	display: none;
	font-size: 16px;
	margin-top: 20px;
}

.res-booking .error {
	color: var(--color-mex-red);
}

.res-booking .send {
	color: var(--color-white);
}


/**************************************
*
*         HEADER   
*
***************************************/


.header {
	position: absolute;
	top: 0;
	left: 0;
	right: 0;
	z-index: 1000;
}

#logo {
   margin-right: 20px;
}

#logo img {
   max-width: 100%;
}

.wrapper-top-header {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    padding-top: 15px;
    padding-bottom: 5px;
    color: var(--color-white);
}

.header-phone {
    font-family: "Ranchers", sans-serif;
    font-weight: 400;
    font-style: normal;
    letter-spacing: 2px;
}

.wrapper-top-header i {
    margin-right: 10px;
}

.wrapper-header {
	padding-top: 5px;
	padding-bottom: 15px;
	-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 {
   -webkit-box-align: center;
       -ms-flex-align: center;
           align-items: center;
}

.header-menu li {
   float: left;
   margin-left: 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-agave-green);
}


/**************************************
*
*         HEADER CONTENT
*
***************************************/


.wrapper-header-content {
	min-height: 900px;
	width: 100%;
	background-repeat: no-repeat;
	background-position: center top;
  background-attachment: fixed;
	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);
}


/**************************************
*
*         OFFER
*
***************************************/


#offer {
	background-color: var(--color-light-gray);
}

.wrapper-offer-carousel {
	max-width: 1920px;
	margin-top: 50px;
}

.owl-theme .owl-nav {
    margin-top: 30px;
} 

.owl-theme .owl-nav [class*=owl-]:hover {
    background: transparent  !important;
    text-decoration: none;
}


/**************************************
*
*         PRODUCT  
*
***************************************/


.single-product {
	border: 1px solid var(--color-white);
}

.single-product-img {
	position: relative;
	display: block;
	background-color: transparent;
  background-color: var(--color-white);
}

.single-product-img:hover .overlay {
    opacity: 1;
}

.single-product-content {
	padding: 20px 10px;
}

.single-product-content h3 {
	margin-bottom: 10px;
}

.single-product-content span {
	font-size: 20px;
	display: inline-block;
	margin-top: 20px;
	 font-family: "Ranchers", sans-serif;
    font-weight: 400;
    font-style: normal;
}

.owl-theme .owl-nav [class*=owl-]:hover {
    color: var(--color-chili-orange);
}


/**************************************
*
*         ABOUTUS
*
***************************************/


#aboutus {
	background-repeat: no-repeat, no-repeat;
	background-position: -150px 0px, bottom right;
}

.wrapper-aboutus {
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
  max-width: 1200px;
}

.aboutus-img {
	width: 40%;
}

.aboutus-content {
	width: 60%;
	padding-left: 50px;
}

.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: 20px;
    margin-bottom: 5px;
}

.wrapper-signature p {
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 12px;
}


/**************************************
*
*         EDGE
*
***************************************/


#edge {
	background-repeat: repeat;
	background-attachment: fixed;
	color: var(--color-white);
}

#edge h2, 
.single-edge h3,
#edge .suptitle  {
	color:var(--color-white);
}

.wrapper-edge {
	margin-top: 50px;
}

#edge .suptitle::before {
	background-color: var(--color-white);
}

.single-edge h3 {
	margin-bottom: 10px;
}

.single-edge {
	width: calc(25% - 20px);
	margin: 10px;
}

.single-edge img {
	max-width: 64px;
	height: auto;
	margin: 0 auto;
	margin-bottom: 30px;
}


/**************************************
*
*         MENU
*
***************************************/


#menu {
	background-color: var(--color-light-gray);
}

.list-menu {
	width: 100%;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
}

.list-menu li {
	margin:10px;
}

.list-menu li a {
	text-transform: uppercase;
	color: var(--color-coal);
	font-size: 18px;
	font-weight: 700;
	padding: 10px;
	border: 1px solid var(--color-white);
}

.list-menu li a:hover {
	color: var(--color-chili-orange);
	border: 1px solid var(--color-chili-orange);
}

.list-menu .active {
	color: var(--color-chili-orange);
	border: 1px solid var(--color-chili-orange);
}

.menu-item .single-product  {
	width: calc(25% - 20px);
	margin: 10px;
}

.wrapper-menu {
	margin-bottom: 30px;
}


/**************************************
*
*        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-repeat: repeat;
	color: var(--color-white);
	padding: 100px 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;
	border-radius: 3px;
}

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;
	border: none;
}


/**************************************
*
*        TESTIMONIALS
*
***************************************/


#testimonials {
	background-color: var(--color-light-gray);
	background-repeat: no-repeat, no-repeat;
	background-position: -150px 0px, bottom right;
}

.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;
}

.wrapper-author h3 {
	margin-bottom: 10px;
	font-size: 20px;
}

#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-chili-orange);
}

#testimonials .owl-theme .owl-dots .owl-dot span {
    width: 20px;
    height: 3px;
    margin: 5px 7px;
    background: var(--color-dark-gray);
    display: block;
    -webkit-backface-visibility: visible;
    -webkit-transition: opacity .2s ease;
    -o-transition: opacity .2s ease;
    transition: opacity .2s ease;
    border-radius: none;
}


/**************************************
*
*         CONTACTS
*
***************************************/


#contacts {
	background-repeat: repeat;
}

#contacts h2 {
	color: var(--color-white);
}

#contacts .suptitle {
	color: var(--color-white);
}

#contacts .suptitle::before {
	background-color: var(--color-white);
}

.wrapper-contact {
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	justify-content: flex-start;
}

.wrapper-contact>div {
	width: 25%;
	padding: 20px;
}

.wrapper-contact>div .social-link {
	margin-left: 0px;
}

.wrapper-contact>div .social-link li {
	margin-left: 0px;
	margin-right: 15px;
}

.wrapper-contact>div p {
	margin-bottom: 10px;
	color: var(--color-white);
}

.wrapper-contact>div h3 {
	font-size: 20px;
	color: var(--color-white);
}

.wrapper-contact>div a {
	color: var(--color-white);
}

.wrapper-contact>div a:hover {
      color: var(--color-agave-green);
}

.wrapper-map iframe {
	width: 100%;
	height: 400px;
	display: block;
}

.copyright {
	background-color: var(--color-coal);
	padding: 30px 15px;
	text-align: center;
	font-size: 14px;
	color: var(--color-white);
}