/* Import fonts from Google */
@import url(http://fonts.googleapis.com/css?family=Lato:300,400,700,900);


html, body {
	background-image: url(../images/fondo1.webp);
	background-repeat:repeat;
	color: #333;
	font-family: 'Lato', sans-serif;
	font-size: 16px;
	height:100%;
	line-height:1.2em;
	position: relative;
	}


/* 
---------- // reset // ------------------- */
img,
ol, ul, li, 
h1, h2, h3, h4, h5, h6 {
	list-style: none;
	margin: 0px;
	padding: 0px;
	}
/* 
---------- // a general // ------------------- */

a, a:visited, a:hover {
	color: #fb7102;
	text-decoration:underline;
	}


/* 
---------- // z index // ------------------- */




/* Lazy
------------------------------*/
.lazyloading {
	opacity: 0;
	}

.loading,
.lazyload,
.lazyloaded{
	opacity: 1;
	transition: opacity 0.8s;
	}

/*-------------------------------------------------------------------------- 
////////////////////////////////////////////////////////////////////////////
COLORS & VARS //////////////////////////////////////////////////////////////
///////////////////////////////////////////////////////////////////////////
-------------------------------------------------------------------------*/
:root {
--color-main-darker:#082d49;
--color-main-dark:#082d49;
--color-main:#0066B2;
--color-main-soft:#529cc1;
--color-main-softer:#A6CEE2;

--color-second-darker:#282b4d;
--color-second-dark:#444979;
--color-second:#5d64a9;
--color-second-soft:#b3b7dc;
--color-second-softer:#e7e8f2;

--color-neutro-darker:#27292b;
--color-neutro-dark:#57595d;
--color-neutro:#797c81;
--color-neutro-soft:#a8acb3;
--color-neutro-softer:#ecf0f5;

--color-white:#fff;
--color-white-90:rgba(255, 255, 255, 0.9);
--color-white-80:rgba(255, 255, 255, 0.8);
--color-white-70:rgba(255, 255, 255, 0.7);
--color-white-60:rgba(255, 255, 255, 0.6);
--color-white-50:rgba(255, 255, 255, 0.5);
--color-white-40:rgba(255, 255, 255, 0.4);
--color-white-30:rgba(255, 255, 255, 0.3);
--color-white-20:rgba(255, 255, 255, 0.2);
--color-white-10:rgba(255, 255, 255, 0.1);

--color-black:#000;
--color-black-90:rgba(0, 0, 0, 0.9);
--color-black-80:rgba(0, 0, 0, 0.8);
--color-black-70:rgba(0, 0, 0, 0.7);
--color-black-60:rgba(0, 0, 0, 0.6);
--color-black-50:rgba(0, 0, 0, 0.5);
--color-black-40:rgba(0, 0, 0, 0.4);
--color-black-30:rgba(0, 0, 0, 0.3);
--color-black-20:rgba(0, 0, 0, 0.2);
--color-black-10:rgba(0, 0, 0, 0.1);

--color-ok:#55b88b;
--color-ok-softer:#d3eae0;
--color-warning:#d45353;
--color-warning-softer:#f6dfdf;

--color-whatsapp:#25d366;
--color-facebook:#3b5998;
--color-instagram:#cd486b;
--color-youtube:#ff0000;
--color-twitter:#55acee;

--rounded:6px;
--rounded-top:6px 6px 0px 0px;
--rounded-bottom:0px 0px 6px 6px;
--rounded-left:6px 0px 0px 6px;
--rounded-right:0px 6px 6px 0px;

--transition-5x:all 0.06s;
--transition-4x:all 0.1s;
--transition-3x:all 0.2s;
--transition-2x:all 0.35s;
--transition-1x:all 0.5s;

--font-main:'Montserrat', sans-serif;
--font-second:'Montserrat', sans-serif;

--fs-small:0.6rem;
--fs-medium:0.8rem;
--fs-regular:1rem;
--fs-large:1.2rem;
--fs-xlarge:1.4rem;
--fs-xxlarge:1.6rem;

--fw-thin:300;
--fw-normal:400;
--fw-bold:500;
--fw-bolder:500;


--gradient-main:linear-gradient(to bottom, var(--color-main-soft) 0%, var(--color-main) 100%);
--gradient-main-soft:linear-gradient(to bottom, var(--color-main-softer) 0%, var(--color-main-soft) 100%);
--gradient-main-dark:linear-gradient(to bottom, var(--color-main) 0%, var(--color-main-dark) 120%);

--gradient-second:linear-gradient(to bottom, var(--color-second-soft) 0%, var(--color-second) 100%);
--gradient-second-soft:linear-gradient(to bottom, var(--color-second-softer) 0%, var(--color-second-soft) 100%);
--gradient-second-dark:linear-gradient(to bottom, var(--color-second) 0%, var(--color-second-dark) 120%);

--gradient-radial-uno:radial-gradient(circle at center center, #A6CEE2,  #0066B2);
--gradient-radial-dos:radial-gradient(circle at center center, #EDC1AE,  #F26721);

/* https://css-tricks.com/a-complete-guide-to-css-gradients/  */

	}

* {
	box-sizing:border-box!important;
	}



/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ESTRUCTURA >>>>>>>>>>*/	
header,
div#banner,
div.contenedor{
	display: block;
	float: left;
	height: auto;
	width: 100%;
	}

div.in{
	display: block;
	height: auto;
	float: none;
	margin-left: auto;
	margin-right: auto;
	position: relative;
	width:980px;
	}
	@media only screen and (max-width:1000px) {
	div.in{
	width:800px;
	}}
	@media only screen and (max-width:820px) {
	div.in{
	width:700px;
	}}
	@media only screen and (max-width:720px) {
	div.in {
	width:600px;
	}}
	@media only screen and (max-width:620px) {
	div.in{
	width:100%;
	}}


/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< HEADER >>>>>>>>>>*/
header {
	box-shadow:5px 0px 5px rgba(0, 0, 0, 0.8);
	border-bottom: 1px solid #663d30;
	height: auto;
	position: relative;
    width: 100%;
    z-index: 1000;
	}

header div.in{
	align-items:center;
	display:flex;
	flex-direction:row;
	flex-wrap:wrap;
	justify-content:space-between;
	height: auto;
	}


header a.logotipo {
	float: left;
	height: auto;
	display: block;
	margin:0px 0px;
	width:620px;
	}
	@media only screen and (max-width:1020px) {
	header a.logotipo{
	width:500px;
	}}
	@media only screen and (max-width:820px) {
	header a.logotipo{
	margin:10px 10%;
	width:80%;
	}}
	@media only screen and (max-width:720px) {
	header a.logotipo {
	margin:10px 5%;
	width:90%;
	}}
	@media only screen and (max-width:620px) {
	header a.logotipo{
	margin:10px 2%;
	width:96%;
	}}


header a img {
	display: block;
	float: left;
	height: auto;
	padding: 10px 0px;
	width:100%;
	}

header p{
	color: #fff;
	display: block;
	font-size: 1em;
	font-weight: bold;
	line-height:22px;
	float: right;
	margin:0px 0px;
	text-align: center;
	width: auto;
	}
	@media only screen and (max-width:1000px) {
	header p{
	margin:20px 0px;
	font-size: 1em;
	}}
	@media only screen and (max-width:820px) {
	header p{
	float: none;
	font-size: 1.1em;
	line-height: 1.3em;
	text-align: center;
	margin: 15px auto 20px auto;
	}}
	@media only screen and (max-width:620px) {
	header p{
	font-size: 1.2em;
	line-height: 1.3em;
	}}

header p .svg-icon{
	display:block;
	float:left;
	height:28px;
	fill:#25d366;
	margin:0px;
	margin-right:-8px;
	padding:0px;
	width:28px;
	}
	
/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< BANNER >>>>>>>>>>*/
div#banner{
	background-color:rgba(0, 0, 0, 0.6);
	border-bottom: 1px solid #663d30;
	height: auto;
	}

div#banner div.in {
	background-position:center center;
    background-repeat:no-repeat;
 	-webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
	height:400px;
	margin-top: 20px;
	margin-bottom: 20px;
	position: relative;
	}




/* Imagen
------------------------------------------*/
div#banner  picture{
	height:auto;
	position:absolute;
	bottom:0px;
	left:0px;
	right:0px;
	top:0px;
	width:auto;
	z-index:1;
	}

div#banner picture img{
	height:100%;
	width:100%;
	object-fit:cover; /* set */
	object-position:center center; /* set */
	max-width:100%;
	}





/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< SECTION >>>>>>>>>>*/
section {
	background-color:rgba(0, 0, 0, 0.4);
	border: 1px solid #7d4a30;
	border-radius: 4px;
	float: left; 
	height: auto;
	margin-top: 20px;
	overflow: hidden;
	width: 100%;
	}

/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< ARTICLE >>>>>>>>>>*/
article {
	float: left;
	margin:40px 10%;
	height: auto;
    width:80%;
	}
	@media only screen and (max-width:1000px) {
	article{
	margin:40px 8%;
	width: 84%;
	}}
	@media only screen and (max-width:820px) {
	article{
	margin:40px 5%;
	width: 90%;
	}}
	@media only screen and (max-width:720px) {
	article{
	margin:40px 8%;
	width: 84%;
	}}
	@media only screen and (max-width:620px) {
	article{
	margin:40px 5%;
	width: 90%;
	}}

.title-1 {
	background-color: #a8734c;
	color: #fff;
	font-size: 1.6em;
	float: left;
	min-height:60px;
	height: auto;
	line-height: 60px;
	text-align: center;
    width: 100%;
	}

.title-2 {
	color: #a8734c;
	font-size: 1.6em;
	float: left;
	min-height:60px;
	height: auto;
	line-height: 60px;
	margin-top: 10px;
	text-align:left;
	text-transform:uppercase;
    width: 100%;
	}

h2{ 
	font-weight: normal; 
	padding-bottom: 25px;
	}


h2,
article p {
	color: #fff;
	float: left;
	font-size:1.6em;
	line-height:1.2em;
	height: auto;
	text-align: justify;
    width: 100%;
	}
	@media only screen and (max-width:720px) {
	article p{
	font-size: 1.5em;
	}}


article p img.nombre {
	float: right;
	margin: 10px 0px 10px 20px;
	}

ul.galeria {
	float: left;
	height: auto;
	margin:5px 0px;
	padding:0px;
	text-align: center;
	width: 100%;
	}

ul.galeria li{
	display: inline-block;
	float:none;
	height: auto;
	margin:10px;
	overflow: hidden;
	padding: 0px;
	width:46%;
	}
	@media only screen and (max-width:720px) {
	ul.galeria li{
	width: 65%;
	}}
	@media only screen and (max-width:620px) {
	ul.galeria li{
	width: 70%;
	}}
	@media only screen and (max-width:520px) {
	ul.galeria li{
	width: 80%;
	}}
	@media only screen and (max-width:420px) {
	ul.galeria li{
	width: 90%;
	}}

ul.galeria li a{
	float: left;
	height: auto;
	margin:0px;
	padding: 0px;
	width:100%;
	}

ul.galeria li a img{
	float: left;
	height: auto;
	margin:0px;
	padding: 0px;
	width:100%;
	}

h2.center,
p.center { 
	text-align: center;
	line-height: 80px;
	}


iframe {
	display: block;
	height:230px;
	margin: 0px auto;
	text-align: center;
	width:380px;
	}
	@media only screen and (max-width:460px) {
	iframe{
	margin: 0px 5%;
	width: 90%;
	}}

div.envios{
	display: block;
	height: 60px;
	float: left;
	background-color: #a8734c;
	width: 100%;
	}
	@media only screen and (max-width:820px) {
	div.envios{
	height: 100px;
	}}
	@media only screen and (max-width:720px) {
	div.envios{
	height: 125px;
	}}
	@media only screen and (max-width:400px) {
	div.envios{
	height: 150px;
	}}


div.envios img{
	display: block;
	float: left;
	margin: 0px 1% 0px 13.25%;
	width: 7.5%;
	}
	@media only screen and (max-width:1000px) {
	div.envios img{
	margin-left: 5%;
	width: 9%;
	}}
	@media only screen and (max-width:820px) {
	div.envios img{
	float: none;
	margin: 5px auto -5px auto;
	width: auto;
	}}

div.envios h3{ 
	background-color: #a8734c;
	color: #fff;
	font-size: 1.6em;
	float: left;
	min-height:60px;
	height: auto;
	line-height: 60px;
	text-align: center;
    width: 100%;
	margin-right: 13.25%;
	width: 65%; 
	}
	@media only screen and (max-width:1000px) {
	div.envios h3{
	margin-right: 5%;
	width: 80%; 
	}}
	@media only screen and (max-width:820px) {
	div.envios h3{
	line-height: 27px; 
	margin: 0%;
	width: 100%; 
	}}
	@media only screen and (max-width:620px) {
	div.envios h3{
	line-height: 27px; 
	margin: 0% 5%;
	width: 90%; 
	}}



article ul.menu-actions {
	max-width:100%;
	margin:0px 0px 20px 0px;
	}

article ul.menu-actions li a,
article ul.menu-actions li a:hover{
	color:var(--color-white);
	background-color:var(--color-whatsapp);
	}

article ul.menu-actions li a .svg-icon {
	fill:var(--color-white);
	}
	



/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< FOOTER >>>>>>>>>>*/
footer {
	background-color: #fff;
	border: 1px solid #ddd;
	display: none;
	float: left; 
	height: auto;
	margin-top: 20px;
	width: 100%;
	}

footer p{
	float: left;
	height: auto;
	font-size: 0.8em;
	text-align: justify;
	margin:30px 5%;
	text-align: center;
    width:90%;
	}

footer p a span{
	display: none;
	}

/*<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<< VARIOS >>>>>>>>>>*/
.hide { display:none!important;}

