/*BODY*/
body{
    margin: 0px;
    padding: 0px;
}

section.principal{
    width: 100%;
}

/*HEADER*/
header{
	box-sizing: border-box;
    width: 100%;
    height: 100px;
    padding: 0;
    z-index: 99999999;
    position: fixed;
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: space-around;
    align-items: center;
    background: var(--header-background)
}

.menu {
	position: relative;
}

.menu .menubtn {
	background-color: transparent;
	border: none;
	width: 100px;
	height: 100px;
	text-align: center;
	color: var(--header-menubtn-color);
}
.menu .menubtn .bi-list {
	display: block;
}
.menu .menubtn .bi-x-lg {
	display: none;
}
.menu .menubtn.abierto {
	background-color: var(--header-menu-ul-background);
	color: var(--header-menuhover-color);
}
.menu .menubtn.abierto .bi-list {
	display: none;
}
.menu .menubtn.abierto .bi-x-lg {
	display: block;
}

.logo figure img{
    width: 150px;
	height: auto;

}
.logo figure {
	margin: 0;
	padding-left: 10px;
}
.menu i{
    display: block;
    font-size: 50px;
    list-style: none;
}
.menu ul {
	display: none;
	background-color: var(--header-menu-ul-background);
	position: absolute;
	top: 100px;
	right: 0px;
	width: 250px;
	padding: 10px;
	margin: 0px;
	list-style: none;
}
.menu ul.abierto {
	display: block !important;
}

.menu ul li a,
.menu ul li span {
	display: block;
	text-decoration: none;
	font-family: var(--header-menu-ul-li-font-family);
	font-size: 14px;
	line-height: 18px;
	color: var(--header-menu-ul-a-span-color);
	padding: 26px 0 0;
}
.menu ul li a:hover,
.menu ul li a:active,
.menu ul li a:focus,
.menu ul li span:hover {
	color: var(--header-menu-ul-active-hover-focus-color);
	text-decoration: underline;
}
.menu ul li {
	padding: 0;
	margin: 0;
}
.menu ul li a {
	padding: 10px;
	text-align: center;
}

/*SLIDER*/
section.cont-slider{
    position: relative;
	width: 100%;
	height: auto;
}
.imagenbanner {
	width: 100%;
	height: 100vh;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
.imageninner {
	width: 100%;
	aspect-ratio: 16 / 9;
	background-position: center;
	background-repeat: no-repeat;
	background-size: contain;
}

.bx-wrapper {
    -moz-box-shadow: 0 0 0px rgba(0,0,0,0) !important;
    -webkit-box-shadow: 0 0 0px rgba(0,0,0,0) !important;
    box-shadow: 0 0 0px rgba(0,0,0,0) !important;
    border: none !important;
    background: #fff;
	margin-bottom: 20px;
}
.bx-wrapper .bx-pager {
	display: none !important;
}

/*ENCABEZADO*/
div.encabezado{
    position: absolute;
    top: 0px;
    left: 0px;
    /*z-index: 9999990;*/
    width: 100%;
    height: 100vh;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
}
div.encabezado.inner{
    position: relative;
    width: 100%;
    height: auto;
    display: flex;
	flex-direction: column;
    justify-content: center;
    align-content: center;
    align-items: center;
	padding: 140px 0 40px;
	background-color: var(--busqueda-bg);
}
div.encabezado h1,
div.encabezado p{
    text-align: center;
}
div.encabezado h1{
    color: var(--div-encabezado-color);
    text-align: center;
    font-size: 40px;
    font-family: var(--div-encabezado-font-family);
    font-weight: 700;
	margin: 0;
	padding-bottom: 10px;
}
div.encabezado p{
    color: var(--div-encabezado-color);
    text-align: center;
    font-size: 20px;
    font-family: var(--div-encabezado-font-family);
    font-weight: 400;
	margin: 0;
	padding-bottom: 20px
}

article#form {
	width: 80%;
	max-width: 720px;
}

article#form form {
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-content: flex-start;
	align-items: flex-start;
	width: 100%;
}
article#form input {
	box-sizing: border-box;
	width: 100%;
	max-width: 180px;
	margin-bottom: 10px;
	padding: 11px 10px;
	border: none;	
	font-family: var(--article-form-font-family);
	font-weight: 700;
	font-size: 14px;
}
article#form select,
article#form textarea {
	box-sizing: border-box;
	width: 100%;
	max-width: 180px;
	margin-bottom: 10px;
	padding: 10px;
	border: none;	
	font-family: var(--article-form-font-family);
	font-weight: 700;
	font-size: 14px;
}
.operacion {
	border-radius: 5px 0 0 5px;
}
article#form .boton {
	width: 100%;
	max-width: 180px;
	text-align: right;
}
article#form .boton button {
	background-color: var(--article-form-boton-button-bg-color);
	padding: 10px 20px;
	border-radius: 0 5px 5px 0;
	color: #FFFFFF;
	border: none;
	font-family: var(--article-form-font-family);
	font-weight: 700;
	font-size: 14px;
	width: 100%;
}

/*SECTION TEXT*/
section.text{
    display: flex;
    flex-direction: column;
    align-content: center;
    justify-content: center;
    align-items: center;
    margin-bottom: 30px;
}
section.text h2{
    font-size: x-large;
    font-weight: 400;
    font-family: var(--section-text-h2-font-family);
}
section.text div.cajas-content{
    display: flex;
    flex-direction:row;
    align-content:stretch;
    justify-content: space-evenly;
    align-items:stretch;
	flex-wrap: wrap;
	width: 100%;
}
div.cajas-content div.caja{
    width: 96%;
    height: auto;
    background-color: var(--div-cajas-content-div-caja-bg-color);
    padding: 5px;
    font-size: 12px;
    margin: 10px;
    box-sizing: border-box;
    border-radius: 5px;
	font-family: var(--article-form-font-family);
}
div.caja p{
    padding: 5px 10px 10px;
    font-size: 14px;
}
div.caja div.img{
    width: 100%;
	height: 120px;
    padding: 0 0 0 0;
	background-position: center;
	background-repeat: no-repeat;
	background-size: cover;
}
div.caja ul {
	padding: 0 10px 10px;
	margin: 0;
	list-style: none;
}
div.caja ul .detalle {
	padding: 3px 0;
	margin: 0;
}
div.caja ul .detalle span {
	font-size: 14px;
	line-height: 14px;
	display: inline-block;
	padding: 3px 0 3px 30px;
	background-size: contain;
	background-position: left center;
	background-repeat: no-repeat;
}
div.caja h3{
    font-weight: bolder;
	padding: 10px 10px 0;
    font-size: 14px;
}
a.boton-vermas{
	display: block;
    background: var(--a-boton-vermas-bg);
    color: var(--a-boton-vermas-color);
    text-align: center;
    text-decoration: none;
    font-size: 15px; 
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-family: var(--a-boton-vermas-font-family);
    font-weight: 700;
 }
button.boton-vermas{
	display: inline-block;
    background: var(--a-boton-vermas-bg);
    color: var(--a-boton-vermas-color);
    text-align: center;
    text-decoration: none;
    font-size: 15px; 
    margin-top: 15px;
    padding: 10px;
    border-radius: 5px;
    font-family: var(--a-boton-vermas-font-family);
    font-weight: 700;
 }

.section-index {
	background-color: var(--div-cajas-content-div-caja-bg-color);
	padding-top: 40px !important;
	padding-bottom: 40px !important;
	margin-bottom: 0 !important;
}
.section-index.inner {
	padding-top: 140px !important;
}
.section-index.inner h2{
    font-size: 32px;
    font-weight: 300;
    font-family: var(--section-text-h2-font-family);
	margin: 0px;
	padding: 0 0 20px;
}

.section-index .section-content {
	font-family: var(--article-form-font-family);
	width: 94%;
	max-width: 720px;
	padding: 20px;
	background-color: white;
	border-radius: 5px;
	text-align: left !important;
}
.section-index .section-content.plussize {
	max-width: 1100px;
}
.section-contacto {
	background-color: var(--div-contacto-bg-color);
	padding-top: 20px !important;
	padding-bottom: 40px !important;
	margin-bottom: 0 !important;
}

.section-contacto form .control {
	padding-bottom: 10px;
}

.section-contacto form .control input,
.section-contacto form .control textarea {
	font-family: var(--article-form-font-family);
	background-color: white;
	padding: 5px;
	border: none;
	border-radius: 5px;
	font-size: 14px;
	line-height: 14px;
	color: #333333;
	width: 100%;
}

.section-buscador {
	background-color: var(--buscador-bg);
	padding: 20px 80px;
}

.section-buscador form .filtros {
	display: flex;
	justify-content: center;
	align-content: center;
	align-items: center;
}
.section-buscador form .filtros .control {
	padding: 3px;
}
.section-buscador form .filtros .control select,
.section-buscador form .filtros .control input {
	padding: 10px 5px;
	border: none;
	border-radius: 5px;
	font-size: 14px;
}

 /*FOOTER*/
footer{
	width: 100%;
	background: var(--footer-bg);
	padding: 50px 0;
    font-size: xx-large;
}
section#contacto{
	display: flex;
	flex-direction: row;
	align-content: flex-start;
	align-items: flex-start;
	justify-content: center;
	flex-wrap: wrap;
	padding: 0 10%;
	width: auto;
}
section#contacto a,
section#contacto p{
	text-decoration: none;
	color: var(--section-contacto-a-p-color);
	font-family: var(--section-contacto-a-p-font-family);
	font-weight: 700;
	font-size: 15px;
}

section#contacto h3 {
	text-decoration: none;
	color: var(--section-contacto-h3-color);
	font-family: var(--section-contacto-h3-font-family);
	font-weight: 700;
	font-size: 24px;
}
section#contacto figure {
	text-align: left;
	margin: 0;
	padding: 0 0 20px;
}
section#contacto p {
	padding: 0 0 10px;
	margin: 0;
}
section#contacto i{
	color: var(--section-contacto-i-color);
}
section#contacto article#contactar{
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    width: 100%;
	max-width: 350px;
    padding: 20px 40px;
 }
section#contacto article#mensaje{
	box-sizing: border-box;
    width: 100%;
	max-width: 450px;
    padding: 20px 40px;
 }
section#contacto article#contactar figure img {
	width: auto;
	height: 50px;
}
section#contacto article#enlaces{
	box-sizing: border-box;
	display: flex;
	flex-direction: column;
    align-content: flex-start;
    align-items: flex-start;
    width: 100%;
	max-width: 200px;
    padding: 20px 40px;
 }

@media (min-width: 992px) {
	header{
	    padding: 0 40px;
	    justify-content: space-between;

	}
	.logo figure img{
		width: 200px;
	}
	div.cajas-content div.caja{
		width: 22%;
	}
	section#contacto{
		flex-wrap: nowrap;
	}
}