<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">

/* Generales 
   ---------------------------------------------------------------------------------- */

* {
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	outline: none !important;
}

body {
	font-size: 16px;
	font-family: 'Raleway', sans-serif;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

section {
	overflow: hidden;
	position: relative;
	background: #fff;
}

p {
	margin: 0;
	padding: 0;
	line-height: 20px;
}

h3 {
	padding: 0;
	color: #000;
	font-size: 26px;
	font-weight: bold;
	margin: 0 0 5px 0;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
}

h4 {
	padding: 0;
	color: #000;
	font-size: 20px;
	font-weight: bold;
	margin: 0 0 5px 0;
	font-family: 'Oswald', sans-serif;
}


/* Classes 
   ---------------------------------------------------------------------------------- */

.inner-wrap {
	padding: 0;
	margin: 0 auto;
	max-width: 1200px;
	position: relative;
}

.nofloat {
	clear: both;
}


/* Columns &amp; Rows 
   ---------------------------------------------------------------------------------- */

.row {
	font-size: 0;
	text-align: center;
}

.row .col {
	width: 100%;
	font-size: 16px;
	text-align: left;
	vertical-align: top;
	display: inline-table;
}

.row .col2 { width: 50%; }
.row .col3 { width: 33.333%; }
.row .col4 { width: 25%; }
.row .col5 { width: 20%; }

.row .col.margin-both { padding: 0 20px; }
.row .col.margin-left { padding: 0 0 0 10px; }
.row .col.margin-right { padding: 0 10px 0 0; }

@media only screen and (max-width: 700px) {

	.row .col {
		width: 100%;
		display: block;
		font-size: 14px;
	}

	.row .col.margin-left,
	.row .col.margin-right { padding: 0; }

}


/* Header 
   ---------------------------------------------------------------------------------- */

#header {
	top: 0;
	margin: 0;
	padding: 20px 0 0;
	width: 100%;
	z-index: 2000;
	position: fixed;
	-webkit-transition: all 0.3s ease-out;
	-moz-transition: all 0.3s ease-out;
	-ms-transition: all 0.3s ease-out;
	-o-transition: all 0.3s ease-out;
	transition: all 0.3s ease-out;
}

#openmenu,
#closemenu {
	display: none;
}

#header .side-menu ul {
	margin: 0;
	padding: 0;
	float: right;
	list-style: none;
}

	#header .side-menu ul li {
		float: left;
		list-style: none;
	}

		#header .side-menu ul li a {
			color: #f5f5f5;
			display: block;
			line-height: 1;
			font-size: 14px;
			font-weight: bold;
			padding: 15px 20px;
			text-decoration: none;
			text-transform: uppercase;
			font-family: 'Open Sans', sans-serif;
			text-shadow: 0 1px 2px rgba(0,0,0,0.5);
			-webkit-transition: all 0.3s ease-out;
			-moz-transition: all 0.3s ease-out;
			-ms-transition: all 0.3s ease-out;
			-o-transition: all 0.3s ease-out;
			transition: all 0.3s ease-out;
		}

		#header .side-menu ul li a:hover {
			color: #fff;
		}

@media only screen and (max-width: 700px) {

	#header .top-menu #openmenu {
		color: #e5e5e5;
		float: right;
		width: 28px;
		height: 28px;
		display: block;
		font-size: 28px;
		line-height: 28px;
		text-align: center;
		margin-right: 20px;
	}

	#header .side-menu {
		top: 0;
		right: -300px;
		bottom: 0;
		width: 300px;
		position: fixed;
		background: rgba(77,14,9,0.95);
		-webkit-transition: all 0.3s ease-out;
		-moz-transition: all 0.3s ease-out;
		-ms-transition: all 0.3s ease-out;
		-p-transition: all 0.3s ease-out;
		transition: all 0.3s ease-out;
	}

		#header .side-menu.opened {
			right: 0px;
		}

		#header .side-menu #closemenu {
			color: #dedede;
			margin: 15px;
			width: 28px;
			height: 28px;
			display: block;
			font-size: 28px;
			line-height: 28px;
			text-align: center;
		}

		#header .side-menu ul {
			margin: 0;
			padding: 0;
			float: none;
			list-style: none;
			border-top: 1px solid rgba(255,255,255,0.1);
		}

			#header .side-menu ul li {
				float: none;
				list-style: none;
			}

				#header .side-menu ul li a {
					color: #fff;
					display: block;
					line-height: 1;
					font-size: 16px;
					padding: 15px 20px;
					text-decoration: none;
					background: rgba(0,0,0,0.25);
					border-bottom: 1px solid rgba(255,255,255,0.1);
					-webkit-transition: all 0.3s ease-out;
					-moz-transition: all 0.3s ease-out;
					-ms-transition: all 0.3s ease-out;
					-p-transition: all 0.3s ease-out;
					transition: all 0.3s ease-out;
				}

				#header .side-menu ul li a:hover {
					background: rgba(0,0,0,0.5);
				}

}


/* Header - Small
   ---------------------------------------------------------------------------------- */

#header.small {
	padding: 0;
	background: rgba(255,255,255,0.75);
	box-shadow: 0 0 2px rgba(0,0,0,0.25);
}

	#header.small .side-menu ul li a {
		color: #333;
		text-shadow: 1px 1px 0 #fff;
	}

	#header.small .side-menu ul li a:hover {
		color: #000;
	}

@media only screen and (max-width: 700px) {

	#header.small {
		padding: 10px 0;
	}

	#header.small .top-menu #openmenu {
		color: #333;
		text-shadow: 1px 1px 0 #fff;
	}

		#header.small .side-menu ul li a {
			color: #fff;
			text-shadow: 0 1px 2px rgba(0,0,0,0.75);
		}

}


/* Footer
   ---------------------------------------------------------------------------------- */

.footer {
	bottom: 0;
	left: -500px;
	right: -500px;
	padding: 0 500px;
	position: absolute;
	background: #557428;
	font-family: 'Open Sans', sans-serif;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}

.footer .copyright {
	float: left;
	padding: 15px;
	color: #f5f5f5;
	font-size: 14px;
	line-height: 30px;
	vertical-align: middle;
}

.footer .socialmedia {
	float: right;
	padding: 15px;
	color: #f5f5f5;
	font-size: 28px;
	line-height: 30px;
	vertical-align: middle;
}

.footer .copyright a,
.footer .socialmedia a {
	color: #f5f5f5;
	text-decoration: none;
}

@media only screen and (max-width: 500px) {

	.footer {
		text-align: center;
		padding: 10px 5px;
	}

	.footer .copyright,
	.footer .socialmedia {
		float: none;
		padding: 0 5px;
		text-align: center;
		line-height: normal;
		display: inline-block;
	}

}


/* Sections - Inicio
   ---------------------------------------------------------------------------------- */

#inicio {
	background: #557428 url(../img/bg_inicio.jpg) no-repeat center center;
	background-size: cover;
}

#inicio .footer {
	background: none;
}

.landscape #inicio_scene  {
	top: 50%;
	left: 50%;
	display: block;
	position: absolute;
	background: url(../img/inicio_h_2024.png) no-repeat center center;
	background-size: contain !important;
}

.portrait #inicio_scene  {
	top: 50%;
	left: 50%;
	display: block;
	position: absolute;
	background: url(../img/inicio_v_2024.png) no-repeat center center;
	background-size: contain !important;
}


/* Sections - La Empresa
   ---------------------------------------------------------------------------------- */

#la-empresa {
	background: #fbfbf3 url(../img/bg_empresa.jpg) no-repeat center center;
	background-size: cover;
}

#la-empresa .page-title {
	padding: 70px 20px 50px;
}

#la-empresa .page-title h2 {
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 37px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.75);
}

#la-empresa .page-title p {
	margin: 0;
	max-width: 500px;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.75);
}

#la-empresa .page-title .icon-line {
	margin: 0;
	padding: 5px;
	width: 400px;
	max-width: 100%;
	border-top: #557428 3px solid;
}

#la-empresa p {
	text-shadow: 1px 1px 0 rgba(255,255,255,0.5);
}

#la-empresa .col p:last-child {
	margin: 0;
}

#la-empresa p.content {
	font-size: 14px;
	line-height: 1.7;
	margin-bottom: 25px;
}

#la-empresa p.identify {
	font-size: 16px;
	padding: 0 20px;
	margin-bottom: 25px;
	font-family: 'Lato', sans-serif;
}

#la-empresa p.empresa {
	margin-top: -100px;
}

#la-empresa .image-orange {
	margin: 40px -500px 0;
	padding: 60px 500px;
	position: relative;
	background: #6daa3e url(../img/manzanas.jpg) no-repeat center center;
	background-size: cover;
}

#la-empresa .image-orange .row {
	z-index: 5;
	position: relative;
}

#la-empresa .image-orange h3 {
	color: #fff;
	padding: 0 20px;
	font-size: 28px;
	margin-bottom: 0.5em;
	text-shadow: 1px 1px 2px #000;
}

#la-empresa .image-orange p {
	margin: 0;
	color: #fff;
	padding: 0 20px;
	font-size: 16px;
	line-height: 1.5;
	font-weight: lighter;
	font-family: 'Lato', sans-serif;
	text-shadow: 1px 1px 2px #000;
}

#la-empresa .image-orange .overlay {
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	z-index: 1;
	opacity: 0.4;
	background: #000;
	position: absolute;
}

@media only screen and (max-width: 1000px) {

	#la-empresa p.empresa {
		margin-top: 0;
	}

	#la-empresa .image-orange {
		margin: 30px -500px 0;
		padding: 30px 500px;
	}

	#la-empresa .image-orange p {
		padding: 0;
	}

}

@media only screen and (max-width: 700px) {

	#la-empresa p.empresa {
		margin-top: 25px;
	}

	#la-empresa .image-orange {
		margin: 25px 0 0;
		padding: 0 0 25px;
	}

	#la-empresa .image-orange h3 {
		padding-top: 25px
	}

}

@media only screen and (max-width: 500px) {

	#la-empresa .page-title {
		padding: 60px 20px 30px;
	}

	#la-empresa .page-title h2 {
		font-size: 28px;
	}

	#la-empresa p.content {
		font-size: 14px;
		line-height: 1.3;
		margin-bottom: 15px;
	}

}


/* Sections - Productos
   ---------------------------------------------------------------------------------- */

#productos {
	background: #fbfbf3 url(../img/bg_productos.jpg) no-repeat center center;
	background-size: cover;
}

#productos .page-title {
	padding: 70px 20px 30px;
}

#productos .page-title h2 {
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 37px;
	text-align: right;
	font-weight: bold;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.75);
}

#productos .page-title p {
	margin: 0;
	float: right;
	max-width: 500px;
	text-align: right;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.75);
}

#productos .page-title .icon-line {
	margin: 0;
	float: right;
	padding: 5px;
	width: 400px;
	max-width: 100%;
	border-top: #557428 3px solid;
}

#productos .carousel-container {
	font-size: 0;
	width: 100%;
	margin: 0 auto;
	position: relative;
	padding: 0 0 30px 0;
}

	#productos .carousel-container .carousel-item {
		margin: 0;
		overflow: hidden;
		position: relative;
		display: inline-block;
	}

		#productos .carousel-container .carousel-item .item-box {
			width: 80%;
			height: 100%;
			margin: 0 auto;
			max-width: 480px;
			position: relative;
		}

			#productos .carousel-container .carousel-item .item-box .bottle {
				left: 0;
				bottom: 0;
				width: 40%;
				z-index: 100;
				position: absolute;
			}

			#productos .carousel-container .carousel-item .item-box .info {
				top: 0;
				right: 0;
				width: 75%;
				z-index: 50;
				padding: 5px;
				background: #fff;
				position: absolute;
				box-shadow: 0px 0px 5px rgba(0,0,0,0.4);
			}

	#productos .carousel-container #carousel-prev {
		top: 50%;
		left: 0;
		width: 30px;
		height: 50px;
		z-index: 100;
		display: block;
		margin-top: -40px;
		position: absolute;
		background: url(../img/prev.png) no-repeat center center;
		background-size: contain;
	}

	#productos .carousel-container #carousel-next {
		top: 50%;
		right: 0;
		width: 30px;
		height: 50px;
		z-index: 100;
		display: block;
		margin-top: -40px;
		position: absolute;
		background: url(../img/next.png) no-repeat center center;
		background-size: contain;
	}

		#productos .carousel-container #carousel-prev span,
		#productos .carousel-container #carousel-next span {
			display: none;
		}


/* Sections - Contactenos
   ---------------------------------------------------------------------------------- */

#contactenos {
	background: #fbfbf3 url(../img/bg_empresa.jpg) no-repeat center center;
	background-size: cover;
}

#contactenos .page-title {
	padding: 70px 20px 50px;
}

#contactenos .page-title h2 {
	margin: 0;
	padding: 0;
	color: #000;
	font-size: 37px;
	font-weight: bold;
	text-transform: uppercase;
	font-family: 'Oswald', sans-serif;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.75);
}

#contactenos .page-title p {
	margin: 0;
	max-width: 500px;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.75);
}

#contactenos .page-title .icon-line {
	margin: 0;
	padding: 5px;
	width: 400px;
	max-width: 100%;
	border-top: #557428 3px solid;
}

#contactenos h3 {
	margin-bottom: 15px;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.75);
}

#contactenos .col {
	position: relative;
}

#contactenos input,
#contactenos textarea {
	color: #333;
	width: 100%;
	padding: 14px;
	display: block;
	font-size: 15px;
	background: #fff;
	border-radius: 4px;
	margin-bottom: 20px;
	border: #ccc 1px solid;
	box-shadow: 0 0 2px rgba(0,0,0,0.2) inset;
}

#contactenos input.submit {
	color: #fff;
	border: none;
	font-size: 18px;
	background: #557428;
	text-shadow: 0 1px 2px rgba(0,0,0,0.5);
}
#contactenos input.submit:hover { background: #333; }

#contactenos .col label.error {
	top: 5px;
	right: 5px;
	margin: 0;
	padding: 0;
	color: red;
	font-size: 11px;
	position: absolute;
}
#contactenos .margin-right label.error { right: 25px; }

#contactenos .contact-item {
	margin: 0 0 20px 0;
	position: relative;
	padding: 10px 15px 20px 80px;
	background: rgba(255,255,255,0.3);
	border: rgba(0,0,0,0.1) 1px solid;
}

#contactenos .contact-item .icon {
	top: 15px;
	left: 15px;
	width: 50px;
	height: 50px;
	border-radius: 4px;
	line-height: 50px;
	text-align: center;
	position: absolute;
	background: #557428;
}

#contactenos .contact-item .icon i {
	color: #fff;
	font-size: 40px;
	line-height: 50px;
}

#contactenos .contact-item .position {
	font-size: 22px;
	font-family: 'Oswald', sans-serif;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.75);
}

#contactenos .contact-item .description {
	font-size: 14px;
	line-height: 20px;
	text-shadow: 1px 1px 0 rgba(255,255,255,0.75);
}

#contactenos .google-map {
	margin-top: 40px;
	border-top: #557428 3px solid;
}

#contactenos .logo-limpio {
	background: url(../img/logo_limpio.png) no-repeat center center;
	background-size: auto 95%;
}

@media only screen and (max-width: 700px) {

	#contactenos h3.second {
		margin-top: 50px;
	}

}

@media only screen and (max-width: 500px) {

	#contactenos .page-title {
		padding: 60px 20px 30px;
	}

	#contactenos .page-title h2 {
		font-size: 28px;
	}

	#contactenos p.content {
		font-size: 14px;
		line-height: 1.3;
		margin-bottom: 15px;
	}

}























































/* end */</pre></body></html>