html {
    font-size: 10px;
    --verde: #90AC32;
    --amarillo: #FCB233;
    --verdeoscuro: #00743E;
    --negro: #3C3C3C;
    font-family: 'roboto', sans-serif;
}

.ancho100{
    width: 100%;
}

.flex{
    display: flex;
    flex-wrap: wrap;
}

.center{
    justify-content: center;
}

.pad_vertical{
    padding-top: 50px;
    padding-bottom: 50px;
}

.boton{
    padding: 10px 20px;
    border-radius: 3px;
}

.bold{
    font-weight: 600;
}

.botonVerde{
    background-color: var(--verde);
    color: #fff;
}

#botonWhatsapp{
	position: fixed;
	left: 3%;
	bottom: 5%;
	z-index: 999;
	background-color: var(--verde);
	padding: 12px 25px;
	font-size: 1.6rem;
}

#botonWhatsapp i{
	margin-right: 5px;
}

#popup{
    display: block;
	position: fixed;
	z-index: 9999;
	right: 5%;
	bottom: 7.5%;
	width: 30vw;
	padding: 10px;
	box-sizing: border-box;
	background-color: #fff;
}

#popup img{
	width: 100%;
}

#cerrarPopUp{
	position: absolute;
	top: 24px;
	right: 24px;
	font-size: 3rem;
	text-shadow: 1px 1px 20px rgba(0,0,0,0.1);
	color: #fff;
	cursor: pointer;
}

.verde {
    background-color: var(--verde);
}

.amarillo {
    background-color: var(--amarillo);
}

.negro {
    background-color: var(--negro);
}

.verdeOscuro {
    background-color: var(--verdeoscuro);
}

h3{
	font-family: 'Montserrat', sans-serif;
	font-weight: 600;
    font-size: 3rem;
    width: 100%;
    text-align: center;
}

#menuHeader {
    display: flex;
    justify-content: space-between;
    position: fixed;
    background-color: rgba(0, 0, 0, .8);
    width: 100%;
    padding: 1% 7.5%;
    box-sizing: border-box;
    z-index: 999;
}

#logoMenu {
    text-align: left;
    width: 35%;
}

#logoMenu img{
    width: 35%;
}

#bmenu {
    display: flex;
    width: 60%;
    justify-content: space-between;
    align-items: center;
}

#bmenu a {
    font-size: 1.8rem;
    color: #fff;
}

#bmenu a p{
    font-size: 1.8rem;
    color: #fff;
    display: inline-block;
}

#bmenu i {
    margin: 0 5px 0 0;
}

header {
	position: relative;
	width: 100%;
    height: 100vh;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
	background-color: #000;
}

.sliderCabeceraHome{
	position: absolute;
	width: 100%;
	height: 100vh;
}

.sliderCabeceraHome div{
	width: 100%;
	height: 100vh;
}

.sliderCabeceraHome div img{
	width: 100vw;
	height: 100vh;
	object-fit: cover;
	object-position: center;
	opacity: 0.6;
}

.sliderCabeceraHome .flickity-page-dots{
	bottom: 5%;
}

.sliderCabeceraHome .flickity-page-dots .dot{
	background: #fff;
}

#textoCabeceraHome{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%, -50%);
	z-index: 998;
	width: 75%;
}

#textoCabeceraHome h1 {
	display: block;
    font-weight: 900;
    font-size: 7rem;
    color: #fff;
}

#textoCabeceraHome h1 span{
    border-bottom: 1.2px solid var(--verde);
}

header h2 {
    margin: 2.5% 0 0 0;
    font-size: 3rem;
    color: var(--verde);
}

#flechaHeader{
    position: absolute;
    bottom: -70%;
	left: 50%;
	transform: translate(-50%, 0%);
    font-size: 7rem;
    color: var(--verde);
    text-shadow: 2px 2px 5px rgba(0,0,0,0.15);
}

#botonCotizar{
    margin: 10% 0 0 0;
    background-color: var(--verde);
    color: #fff;
    padding: 12px 20px;
    font-size: 1.8rem;
    cursor: pointer;
    z-index: 5;
}

#botonCotizar i{
    margin-right: 6px;
}

#negroHeader{
    position: absolute;
    top: 0;
    left: 0;
    background-color: #000;
    opacity: 0.7;
    width: 100%;
    height: 100%;
    z-index: 1;
}

#nosotros {
    padding: 5% 0;
    box-sizing: border-box;
    text-align: center;
}

#logoNosotros {
    width: 20%;
}

#nosotros h1{
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--verde);
    margin-top: 20px;
    margin-bottom: 30px;
}

#nosotros p {
    width: 60%;
    margin: 30px auto;
    font-size: 2rem;
    font-weight: 300;
    line-height: 2.6rem;
}

#nosotros a{
    background-color: var(--verde);
    color: #fff;
    padding: 12px 20px;
    font-size: 1.8rem;
    cursor: pointer;
}

#nosotros h5 {
    font-size: 2rem;
    font-weight: 500;
    color: var(--negro);
}

#metodosPago {
    display: flex;
    width: 40%;
    margin: 0 auto;
    justify-content: space-around;
    font-size: 2.8rem;
    color: var(--verde);
}

#metodosPago li {
    margin: 5% 0 0 0;
}

#nosotrosImagenes {
    display: flex;
    margin: 50px 0 100px 0;
}

#nosotrosImagenes div {
    display: flex;
    width: 25%;
    height: 100%;
}

#nosotrosImagenes div img {
    width: 100%;
    height: 100%;
}

#caracteristicas {
    display: flex;
    padding: 3% 7.5%;
    box-sizing: border-box;
    background-color: var(--negro);
    justify-content: space-around;
    margin-top: -100px;
}

#caracteristicas p {
    margin: 0 3%;
    font-size: 1.7rem;
    font-weight: 300;
    line-height: 2.4rem;
    color: #fff;
}

#caracteristicas p span {
    display: block;
    height: 1px;
    margin: 15px auto;
}

#caracteristicas i {
    margin: 0 0 5% 0;
    font-size: 2.5rem;
    color: var(--verde);
}

#caracteristicas p:hover i {
    animation-name: hvr-pulse-grow;
    animation-duration: 0.5s;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}  

#servicios h3 {
    margin: 5% 0 2% 0;
    color: var(--negro);
}

.servicios {
	max-width: 1200px;
    display: flex;
    margin: auto;
    justify-content: space-around;
    align-content: center;
    align-items: center;
}

.servicios div {
    width: 25%;
    margin: 3% 0 0 0;
}

.servicios div h4 {
    display: inline-block;
    font-size: 2rem;
    font-weight: 500;
    color: (--negro);
}

.servicios div i {
    position: relative;
    top: 2.5px;
    margin: 0 8px 0 0;
    font-size: 1.8rem;
    color: var(--verde);
}

#catering {
    width: 50%;
    margin: 3% auto 0 auto;
    font-size: 3rem;
    font-weight: 700;
    color: var(--negro);
}



/***** Promociones del mes *****/

#promociones{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    background-color: var(--verdeoscuro);
}

#promociones div:first-child{
    width: 100%;
}

.img_ig{
    width: 20%;
}

.img_ig img{
    width: 100%;
    height: 100%;
}


/***** Logos de clientes *****/

#clientes{
    padding: 5% 5vw;
    text-align: center;
    background-color: var(--negro);
}

#clientes h3{
    margin: 0 0 5% 0;
    color: var(--amarillo);
}


.sliderClientes .carousel-cell{
	width: 20%;
	display: flex;
	justify-content: center;
	align-items: center;
	text-align: center;
}

.sliderClientes .carousel-cell img{
	width: 100%;
	max-height: 120px;
	object-fit: contain;
}

.sliderClientes .flickity-button {
	background: transparent;
}

.sliderClientes .flickity-button-icon {
	fill: white;
}

.sliderClientes .flickity-prev-next-button.previous {
	left: -20px;
}

.sliderClientes .flickity-prev-next-button.next {
	right: -20px;
}

#menu {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin: 0 0 2% 0;
    text-align: center;
}

#menu h3 {
    margin: 0 0 3% 0;
    color: var(--negro);
}

.itemsMenu {
	display: flex;
    flex-wrap:wrap;
    width: 20%;
    padding: 2% 2%;
    box-sizing: border-box;
    border-right: 1px solid var(--verde);
}

.itemsMenu a:last-child {
    margin-bottom: 0%;
}

.botonMenuVerde i{
    font-size: 2.5rem;
    margin-right: 8%;
	color: var(--verde);
	transition: all 0.3s ease;
}

.botonMenuVerde p {
    color: var(--verde);
	transition: all 0.3s ease;
}

.botonMenuVerde {
	font-size: 1.8rem;
    font-weight: 300;
    display: flex;
    align-items: center;
	width: 100%;
    border-bottom: 1px solid var(--verde);
    padding: 4% 3% 4% 25%;
    box-sizing: border-box;
	transition: all 0.3s ease;
	cursor: pointer;
}

.botonMenuVerde:hover {
    background-color: var(--verde);
}

.botonMenuVerde:hover i,
.botonMenuVerde:hover p {
    color: white;
}

.seccionMenu {
    width: 80%;
    padding: 2.5% 3%;
    box-sizing: border-box;
}

.seccionMenu h4 {
    padding: 0% 0% 3% 0%;
    box-sizing: border-box;
    text-align: left;
    font-family: 'Montserrat', sans-serif;
	font-weight: 600;
    font-size: 2.4rem;
}

.categorias {
    padding: 0 7.5%;
    box-sizing: border-box;
    margin: 2.5% 0;
}

.categorias ul {
    display: flex;
    justify-content: space-around;
    font-family: 'roboto';
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--verde);
}

.categorias ul li {
    cursor: pointer;
}

.activo {
    color: var(--amarillo);
	background-color: var(--verde);
}

.activo p, .activo i{
	color: #fff !important;
}

.margingTop{
    margin-top: 2.5%;
}

#refrigerios h4,
#desayunos h4,
#almuerzosEmpacados h4,
#pasabocas h4,
#bebidas h4 {
    color: var(--verde);
}



.sliderPlatos .carousel-cell{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-content: space-between;
	width: 23%;
	height: 270px;
	margin-right: calc(1% + 1px);
	margin-left: calc(1% + 1px);
	padding: 25px 10px;
	box-sizing: border-box;
}

.sliderPlatos .carousel-cell h2{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
    height: 50px;
    margin-bottom: 25px;
    font-size: 2.2rem;
	line-height: 2.6rem;
    font-weight: 500;
    border-bottom: 1px solid;
    padding-bottom: 10px;
}

.sliderPlatos .carousel-cell p {
    width: 100%;
    margin: 8% auto 14% auto;
    font-size: 1.4rem;
	line-height: 1.7rem;
    font-weight: 300;
}

.sliderPlatos .carousel-cell span {
    font-size: 1.4rem;
    font-weight: 300;
    background-color: #fff;
    padding: 5px 15px;
    border-radius: 3px;
}

.sliderPlatos .flickity-button {
	background: transparent;
}

.sliderPlatos .flickity-button-icon {
	fill: #3C3C3C;
}

.sliderPlatos .flickity-prev-next-button.previous {
	left: -40px;
}

.sliderPlatos .flickity-prev-next-button.next {
	right: -40px;
}

.verde h2,
.verde p {
    color: #fff;
    border-color: #fff;
}

.verde span {
    color: var(--verde);
}

.amarillo h2, p {
    color: var(--negro);
    border-color: var(--negro);
    transition: all 1s ease;
}

.amarillo span {
    color: var(--amarillo);
}

.frame ul li:hover span {
    color: var(--negro);
}

.amarillo:hover h2 {
    color: white;
}

.amarillo:hover p {
    color: white;
}

#almuerzos ul li p{
    font-size: 1.5rem;
}



.tituloSeccion {
    text-align: left;
    width: 100%;
    color: #fff;
    padding: 40px 7.5%;
    box-sizing: border-box;
}

.tituloSeccion h4 {
    font-family: 'Montserrat', sans-serif;
	font-weight: 600;
    font-size: 3rem;
	line-height: 4.5rem;
}

.tituloSeccion p {
    font-family: 'roboto';
    font-size: 2rem;
    font-weight: 200;
    color: #fff;
}

#cobertura {
    margin: 0;
}

#map {
    height: 75vh;
}

#contacto {
    padding: 0 0 5% 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

form {
    display: flex;
	flex-wrap: wrap;
    margin: 2.5% 0;
    padding: 0 25px;
    box-sizing: border-box;
    justify-content: space-between;
}

.oculto{
	display: none;
}

.formulario{
    width: 100%;
    max-width: 1000px;
}

#formIzquierda {
    width: 45%;
}

#formDerecha {
    width: 45%;
}

#formIzquierda label,
input,
#formDerecha label,
button,
textarea {
    display: block;
    border: none;
    background-color: rgba(0, 0, 0, 0);
    outline-style: none;
}

.formulario label {
    margin: 8% 0 0 0;
    font-size: 1.8rem;
    color: var(--verde);
}

.formulario input,
.formulario textarea {
    font-family: 'roboto', sans-serif;
    margin: 12px 0 0 0;
    width: 100%;
    border-bottom: 1px solid var(--negro);
    padding: 5px 10px 8px 10px;
    font-size: 1.4rem;
}

form input::placeholder, 
form textarea::placeholder {
    font-family: 'roboto', sans-serif;
    color: var(--negro);
    font-weight: 200;
    position: relative;
    top: 0;
    left: 0;
    opacity: 1;
    transition: all .25s ease-out;
}

form input:focus::placeholder {
    left: 300px;
    opacity: 0;
}

form textarea:focus::placeholder {
    left: 300px;
    opacity: 0;
}

.formulario input[type=number]::-webkit-inner-spin-button,
.formulario input[type=number]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

.formulario button {
    float: right;
    margin: 9.5% 0;
    background-color: var(--verde);
    color: #fff;
    padding: 10px 30px;
    font-size: 1.8rem;
    cursor: pointer;
}

.g-recaptcha{
    margin: 9.5% 0 0 0;
}

#encuesta > div{
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}

#encuesta > div p{
	width: 100%;
	margin: 4% 0 2% 0;
	font-size: 1.5rem;
	line-height: 2rem;
	font-weight: 400;
}

#encuesta > div > div{
	display: flex;
	margin-right: 30px;
}

#encuesta > div input[type="text"]{
	width: 100%;
    border-bottom: 1px solid var(--negro);
    padding-bottom: 3px;
    font-size: 1.4rem;
}

#encuesta > div textarea{
	width: 100%;
	border-bottom: 1px solid var(--negro);
    padding-bottom: 3px;
	font-size: 1.4rem;
	font-weight: 300;
}

#encuesta > div label{
	margin-right: 5px;
	position: relative;
	top: 2px;
	font-size: 1.4rem;
}

#encuesta > div i{
	position: relative;
	top: -2px;
	color: var(--amarillo);
	font-size: 2rem;
	margin-right: 4px;
}

#encuesta > div i:first-of-type{
	margin-right: 30px;
}

#encuesta > div button{
	background-color: var(--verde);
    color: #fff;
	margin: 5% 0 0 0;
    padding: 10px 30px;
    font-size: 1.8rem;
    cursor: pointer;
}

.informe{
    width: 100%;
    font-family: 'roboto';
    font-weight: 300;
    color: var(--verde);
    text-align: center;
    margin: -2.5% 0 5% 0;
    font-size: 1.6rem;
}

#datosContacto {
    padding: 0 25px;
    box-sizing: border-box;
    width:100%;
    max-width: 1000px;
}

#datosContacto ul {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    font-size: 1.8rem;
    font-weight: 300;
}

#datosContacto ul li{
    margin: 15px 25px;
}

#datosContacto ul li a{
    color: var(--verde) !important;
    font-size: 1.8rem;
}

#datosContacto i {
    font-size: 3rem;
    color: var(--verde);
    margin: 0 10px 0 0;
    position: relative;
    top: 4px;
}

footer {
    margin: 0;
    padding: 2.5% 7.5%;
    box-sizing: border-box;
    background-color: var(--negro);
}

#navegacionPie {
    display: flex;
    justify-content: space-between;
}

footer ul li{
    margin: 8px 0;
}

footer ul li,
a {
    color: #fff;
    text-decoration: none;
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 2rem;
}

footer ul .tituloPie {
    font-weight: 400;
    color: var(--verde);
    margin: 0 0 5% 0;
}

#redesPie {
    margin: 3% 0;
    text-align: center;
}

#redesPie a i {
    margin: 0 1%;
    color: var(--verde);
    font-size: 4rem;
}

#copyright {
    margin: 2.5% 0 0 0;
    text-align: center;
}

#copyright p {
    font-size: 1.4rem;
    font-weight: 200;
    color: var(--verde);
    line-height: 2.5rem;
}

#copyright h6 {
    font-size: 1.2rem;
    color: #fff;
}




/***** Nuevos cambios 05 Agosto de 2018 - Se agregó una nueva página de respuesta para el formulario de contacto *****/


#respuestaFormulario {
    padding: 10% 0 0 0;
    box-sizing: border-box;
    text-align: center;
}

#respuestaFormulario h1{
    width: 60%;
    margin: 5% auto;
    font-size: 2.5rem;
    font-weight: 500;
    line-height: 3.2rem;
}

#respuestaFormulario p {
    width: 60%;
    margin: 5% auto;
    font-size: 1.8rem;
    font-weight: 300;
    line-height: 2.5rem;
}

#respuestaFormulario span{
    color: var(--verde);
}




.formularioMailchimp{
    width: 100%;
}

.formularioMailchimp form{
    width: 100%;
}

.formularioMailchimp form div{
    width: 75%;
    margin: 0 auto;
}

.formularioMailchimp form h4{
    text-align: center;
    margin: 2.5% auto 0 auto;
    font-size: 1.4rem;
    line-height: 1.8rem;
    font-weight: 300;
    width: 80%;
}

.formularioMailchimp form input{
    display: block;
    margin: 5% 0 0 0 !important; 
}

.formularioMailchimp form input::placeholder{
    color: var(--verde);
}

#mc-embedded-subscribe{
    display: block;
    width: 25%;
    margin: 5% auto;
    background-color: var(--amarillo);
    color: var(--negro);
    padding: 10px 30px;
    font-size: 1.8rem;
    cursor: pointer;
}

.botonEstatico{
    cursor: pointer;
    position: fixed;
    bottom: 0;
    right: 5%;
    z-index: 999;
    background-color: var(--verde);
    padding: 10px 15px 15px 15px;
    border-radius: 5px 5px 0px 0px;
}




/***** Nuevos cambios 11 junio de 2019 - Se agregó una galería de eventos *****/

#galeria {
    margin: 0;
}

.sliderGaleria .carousel-cell{
	width: 20%;
}


.sliderGaleria .carousel-cell a{
	display: block;
	width: 100%;
}

.sliderGaleria div a img{
    width: 100%;
}






