@charset "utf-8";
@font-face {
	font-family: 'Din Pro';
	src: url('typo/d-din-pro-400-regular.eot');
	src: url('typo/d-din-pro-400-regular.eot?#iefix') format('embedded-opentype'),
		/*url('typo/d-din-pro-400-regular.woff2') format('woff2'),*/ url('typo/d-din-pro-400-regular.woff') format('woff'),
		url('typo/d-din-pro-400-regular.ttf') format('truetype');
	font-weight: normal;
	font-style: normal;
}
@font-face {
	font-family: 'Din Pro';
	src: url('typo/d-din-pro-500-medium.eot');
	src: url('typo/d-din-pro-500-medium.eot?#iefix') format('embedded-opentype'),
		/* url('typo/d-din-pro-500-medium.woff2') format('woff2'),*/ url('typo/d-din-pro-500-medium.woff') format('woff'),
		url('typo/d-din-pro-500-medium.ttf') format('truetype');
	font-weight: 500;
	font-style: normal;
}
@font-face {
	font-family: 'Din Pro';
	src: url('typo/d-din-pro-600-semibold.eot');
	src: url('typo/d-din-pro-600-semibold.eot?#iefix') format('embedded-opentype'),
		/*url('typo/d-din-pro-600-semibold.woff2') format('woff2'),*/ url('typo/d-din-pro-600-semibold.woff') format('woff'),
		url('typo/d-din-pro-600-semibold.ttf') format('truetype');
	font-weight: 600;
	font-style: normal;
}
@font-face {
	font-family: 'Din Pro';
	src: url('typo/d-din-pro-700-bold.eot');
	src: url('typo/d-din-pro-700-bold.eot?#iefix') format('embedded-opentype'),
		/*url('typo/d-din-pro-700-bold.woff2') format('woff2'),*/ url('typo/d-din-pro-700-bold.woff') format('woff'),
		url('typo/d-din-pro-700-bold.ttf') format('truetype');
	font-weight: bold;
	font-style: normal;
}
:root {
	--Black-10: rgba(0, 0, 0, 0.1);
	--Black-25: rgba(0, 0, 0, 0.25);
	--Black-33: rgba(0, 0, 0, 0.333);
	--Black-50: rgba(0, 0, 0, 0.5);
	--Black-66: rgba(0, 0, 0, 0.666);
	--linea-blca: 2px solid #FFF;
	--scrollbar-color-thumb: #FFF;
	--scrollbar-color-track: transparent;
	--scrollbar-width: thin;
	--scrollbar-width-legacy: 0.5rem;
}
* {
	box-sizing: border-box;
}
html {
	font-size: 100%;
	-webkit-text-size-adjust: none;
	text-size-adjust: none;
	scroll-behavior: smooth;
}
body {
	min-height: 100vh;
	margin: 0;
	padding: 0;
	background-color: #333;
	color: #fff;
	font-family: "Din Pro", Arial, Helvetica, sans-serif;
}
/*@supports (scrollbar-width: auto) {
	* {
		scrollbar-color: var(--scrollbar-color-thumb) var(--scrollbar-color-track);
		scrollbar-width: var(--scrollbar-width);
	}
}
*/
a {
	text-decoration: none;
	color: #FFF;
}
p {
	line-height: 150%;
}
h1,
h2,
h3,
h4,
h5,
h6 {
	font-weight: 600;
	text-transform: uppercase;
	text-shadow: 1px 1px 1px #000;
	line-height: 135%;
}
img {
	border: 0;
}
.fondoAnimado {
	position: fixed;
	width: 100%;
	height: 100%;
	top: 0;
	left: 0;
	z-index: -1;
}
.fondoAnimado > div {
	background-repeat: no-repeat;
	background-size: cover;
	background-position: center center;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	will-change: opacity;
	animation: bgFader 20s infinite;
}
.fondoAnimado > div:nth-child(1) {
	background-image: url(../images/bg01.jpg);
	background-position: top center;
	z-index: 10;
	animation-delay: 0s;
}
.fondoAnimado > div:nth-child(2) {
	background-image: url(../images/bg02.jpg);
	z-index: 9;
	animation-delay: 5s;
}
.fondoAnimado > div:nth-child(3) {
	background-image: url(../images/bg03.jpg);
	background-position: top center;
	z-index: 8;
	animation-delay: 10s;
}
.fondoAnimado > div:nth-child(4) {
	background-image: url(../images/bg04.jpg);
	z-index: 7;
	animation-delay: 15s;
}
@media (max-width:768px) {
	.fondoAnimado > div:nth-child(1) {
		background-image: url(../images/bg01_sm.jpg);
	}
	.fondoAnimado > div:nth-child(2) {
		background-image: url(../images/bg02_sm.jpg);
	}
	.fondoAnimado > div:nth-child(3) {
		background-image: url(../images/bg03_sm.jpg);
	}
	.fondoAnimado > div:nth-child(4) {
		background-image: url(../images/bg04_sm.jpg);
	}
}
@keyframes bgFader {
	0% {
		opacity: 1;
	}
	20% {
		opacity: 1
	}
	25% {
		opacity: 0
	}
	95% {
		opacity: 0;
	}
	100% {
		opacity: 1;
	}
}
header {
	background-color: var(--Black-50);
	position: fixed;
	z-index: 10000;
	top: 0;
	left: 0;
	width: 100%;
	height: 71px;
	border-bottom: 1px solid rgba(255, 255, 255, 0.5);
	padding: 0 20px;
}
.header {
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	gap: 2em;
}
.header .logo {
	padding: 10px 0;
	width: 155px;
}
.header .logo img {
	display: block;
	height: 50px;
	width: auto;
}
/* Menú */
.menu > a,
.menu div.conSubMenu {
	text-transform: uppercase;
	display: inline-block;
	line-height: 70px;
	padding: 0 1em;
	background-color: transparent;
	position: relative;
	user-select: none;
}
@media(prefers-reduced-motion: no-preference) {
	.menu > a,
	.menu div.conSubMenu {
		transition: background-color 0.3s;
	}
}
.menu > a:hover,
.menu div.conSubMenu:hover {
	background-color: #00224F;
}
.menu h4 {
	line-height: inherit;
	margin: 0;
	font-weight: 400;
}
.menu div.conSubMenu > div {
	position: absolute;
	top: -1000%;
	padding-top: 1px;
	line-height: 200%;
	white-space: nowrap;
	text-transform: none;
	left: 0;
	opacity: 0;
}
@media(prefers-reduced-motion: no-preference) {
	.menu div.conSubMenu > div {
		transition: opacity 0.5s;
	}
}
.menu div.conSubMenu:hover > div {
	top: 100%;
	opacity: 1;
}
.menu div.conSubMenu div.listaEnlaces {
	background-color: #001737;
	padding: 1em;
	min-width: 200px;
}
.menu div.conSubMenu div.listaEnlaces a {
	display: block;
	padding: 0 0.5em 0 0;
	font-weight: 400;
}
.menu div.conSubMenu div.listaEnlaces a:hover {
	font-weight: 600;
}
@media(prefers-reduced-motion: no-preference) {
	.menu div.conSubMenu div.listaEnlaces a {
		transition: all 0.3s
	}
	.menu div.conSubMenu div.listaEnlaces a:hover {
		padding: 0 0 0 0.5em;
	}
}
.idiomas a {
	display: inline-block;
	margin: 0 1.5ch;
}
.idiomas a.actual {
	font-weight: 600;
	pointer-events: none;
}
.idiomas a:hover {
	font-weight: 600;
}
.header .hamburgerMobile {
	display: none;
}
@media (max-width:960px) {
	.header > .menu {
		display: none;
	}
	.header > .idioma {
		display: none;
	}
	.header > .hamburgerMobile {
		display: block;
	}
}
.toggleMenu {
	display: block;
	height: 70px;
	width: 40px;
	cursor: pointer;
	background-image: url(../images/ico_menu_abrir.svg);
	background-repeat: no-repeat;
	background-position: center center;
}
@media(prefers-reduced-motion: no-preference) {
	.toggleMenu {
		transition: background-image 0.3s;
	}
}
.menuMobile {
	position: absolute;
	top: 71px;
	bottom: 0;
	left: 0;
	right: 0;
	background-color: #001737;
	height: calc(100vh - 71px);
	overflow-y: auto;
	transform: translateY(calc(-100% - 71px));
	opacity: 0;
}
@media(prefers-reduced-motion: no-preference) {
	.menuMobile {
		transition: opacity 0.3s;
	}
}
.hamburgerMobile.abierto .toggleMenu {
	background-image: url(../images/ico_menu_cerrar.svg);
}
.hamburgerMobile.abierto .menuMobile {
	transform: translateY(0);
	opacity: 1;
}
.menuMobile .subMenu {
	padding: 20px;
	margin: 0 auto;
	max-width: 600px;
}
.subMenu h4 {
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	font-size: 1.25em;
	padding: 0.5em 0;
	cursor: pointer;
	margin: 0;
	font-weight: 400;
}
.subMenu a:first-child h4 {
	border-top: 0 none;
}
.subMenu .conSubMenu h4 {
	background-image: url(../images/ico_arrow.svg);
	background-repeat: no-repeat;
	background-position: right 20px;
}
.subMenu .conSubMenu h4.abierto {
	background-position: right calc(100% - 20px);
}
.subMenu .conSubMenu > div:last-child {
	display: none;
}
.subMenu .conSubMenu > div:last-child {
	border-left: 0 none;
	padding: 1em;
	line-height: 100%;
	background-color: var(--Black-25);
	display: none;
}
.subMenu .conSubMenu .listaEnlaces > a {
	display: block;
	white-space: nowrap;
	font-weight: 400;
	padding: 0.5em 0;
}
@media(prefers-reduced-motion: no-preference) {
	.subMenu .conSubMenu .listaEnlaces > a {
		transition: font-weight 0.3s;
	}
}
.subMenu .conSubMenu .listaEnlaces > a:hover {
	font-weight: 600;
}
.menuMobile .idiomas {
	margin-top: 2em;
	padding: 0.75em;
	background-color: #00224F;
	width: 100%;
	text-align: center;
}
/* Menú - FIN */
@media (max-width:1399px) {
	main {
		padding: 0 20px;
	}
}
@media (max-width:720px) {
	main {
		padding: 0;
	}
}
section {
	box-sizing: border-box;
	padding-top: 8em;
	display: flex;
	flex-direction: column;
	gap: 2em;
}
section.fullHeight {
	min-height: 100vh;
}
section.marcas {
	min-height: 50vh;
}
section h2 {
	width: auto;
	margin: 0 auto;
	border-bottom: var(--linea-blca);
	font-size: 1.75em;
}
body.interior section h2 {
	margin: 0 auto 0 0;
	line-height: 100%;
	padding-bottom: 0.25em;
}
@media (max-width:720px) {
	body.interior section {
		gap: 0;
	}
	body.interior section h2 {
		width: 100%;
		padding-left: 1em;
		padding-right: 1em;
		text-align: center;
	}
}
body.interior section h4 {
	margin-top: 0;
}
body.interior section h4 + p {
	margin-top: 0em;
}
body.interior section p + h4 {
	margin-top: 2.5em;
}
section article {
	flex-grow: 1;
	max-width: 1300px;
	margin: 0 auto;
	box-sizing: border-box;
	display: inline-flex;
	flex-direction: column;
	justify-content: center;
	width: 100%;
}
#home section article h1,
#home section article h2 {
	margin: 0;
	border: 0 none;
	text-align: center;
}
#home section article h1 {
	font-size: 2rem;
	font-weight: normal
}
section .avanzar {
	padding: 3em 0 2em;
	text-align: center;
}
section .avanzar a {
	display: block;
	width: 3em;
	height: 3em;
	margin: 0 auto;
	background-color: var(--Black-50);
	background-image: url(../images/ico_scroll.png);
	background-repeat: no-repeat;
	background-position: center;
	border-radius: 1.5em;
	background-size: cover;
}
@media (max-width:768px) {
	section .avanzar a {
		background-image: url(../images/ico_swipe.png);
	}
}
/* Marcas */
#carruselMarcas {
	max-width: 900px;
	margin: 0 auto;
}
@media (max-width:920px) {
	#home main > section:first-of-type > article {
		padding: 0 60px;
	}
}
@media(prefers-reduced-motion) {
	#carruselMarcas .owl-item img {
		display: block;
		width: auto;
		margin: 0 auto;
	}
}
.owl-carousel.owl-theme .owl-nav {
	margin-top: 0;
}
.owl-carousel .owl-nav {
	position: absolute;
	top: calc((100% - 41px) / 2);
	width: 100%;
	display: flex;
	justify-content: center;
}
.owl-carousel .owl-nav .owl-prev,
.owl-carousel .owl-nav .owl-next {
	position: absolute;
	z-index: 1000;
	text-indent: 50px;
	display: block;
	width: 40px;
	height: 40px;
	overflow: hidden;
	transform: translateY(-50%);
}
.owl-carousel .owl-nav .owl-prev:before,
.owl-carousel .owl-nav .owl-next:after {
	content: "";
	width: 24px;
	height: 24px;
	position: absolute;
	top: 6px;
	transform: rotate(315deg);
}
.owl-carousel .owl-nav .owl-prev {
	left: -60px;
}
.owl-carousel .owl-nav .owl-next {
	right: -60px;
}
.owl-carousel .owl-nav .owl-prev:before {
	border-left: 4px solid #fff;
	border-top: 4px solid #fff;
	box-shadow: -2px -2px 3px 0px rgba(0, 0, 0, 0.4);
	left: 10px;
}
.owl-carousel .owl-nav .owl-next:after {
	border-right: 4px solid #fff;
	border-bottom: 4px solid #fff;
	box-shadow: 2px 2px 3px 0px rgba(0, 0, 0, 0.4);
	left: 2px;
}
.owl-carousel.owl-theme .owl-nav [class*=owl-]:hover {
	background: none;
}
.owl-theme .owl-dots {
	margin-top: 1em;
}
.owl-theme .owl-dots .owl-dot span {
	height: 0.75em;
	width: 0.75em;
	background: var(--Black-25);
	border: 1px solid #FFF;
}
.owl-theme .owl-dots .owl-dot.active span,
.owl-theme .owl-dots .owl-dot.active:hover span {
	background: #FFF;
}
.owl-theme .owl-dots .owl-dot:hover span {
	background: rgba(255, 255, 255, 0.5);
}
/* Categorías */
.categorias {
	padding: 20px;
	width: 100%;
	max-width: 1300px;
	margin: 0 auto;
	gap: 20px;
	background-color: var(--Black-25);
}
.categorias > a.categoria {
	position: relative;
	background-repeat: no-repeat;
	background-position: 0% 0px;
	background-size: cover;
	font-size: 2.5em;
	font-weight: 500;
	background-color: var(--Black-25);
}
.categorias > a.categoria:nth-of-type(1) {
	background-image: url(../images/cat_calefaccion.jpg);
}
.categorias > a.categoria:nth-of-type(2) {
	background-image: url(../images/cat_purificadores.jpg);
}
.categorias > a.categoria:nth-of-type(3) {
	background-image: url(../images/cat_cocina.jpg);
}
.categorias > a.categoria:nth-of-type(4) {
	background-image: url("../images/cat_ventilacion.jpg");
}
.categorias > a.categoria:nth-of-type(5) {
	background-image: url("../images/cat_limpieza.jpg");
}
.categorias > a.categoria:nth-of-type(6) {
	background-image: url("../images/cat_maquinas_coser.jpg");
}
.categorias > a.categoria:nth-of-type(7) {
	background-image: url("../images/cat_planchado.jpg");
}
.categorias > a.categoria:nth-of-type(8) {
	background-image: url("../images/cat_mascotas.jpg");
}
.categorias > a.categoria span {
	position: absolute;
}
@media (min-width:1400px) {
	.categorias {
		display: grid;
		grid-template-columns: 300px 300px 300px 300px;
		grid-template-rows: 230px 230px 230px;
	}
	.categorias > a.categoria:nth-of-type(1) {
		grid-column: 1;
		grid-row: 1 / 3;
	}
	.categorias > a.categoria:nth-of-type(2) {}
	.categorias > a.categoria:nth-of-type(3) {
		grid-column: 3 / 5;
		grid-row: 1;
	}
	.categorias > a.categoria:nth-of-type(4) {
		grid-column: 2 / 4;
		grid-row: 2;
	}
	.categorias > a.categoria:nth-of-type(5) {}
	.categorias > a.categoria:nth-of-type(6) {
		grid-column: 1 / 3;
		grid-row: 3;
	}
	.categorias > a.categoria:nth-of-type(7) {
		grid-column: 3 / 4;
	}
	.categorias > a.categoria:nth-of-type(8) {
		grid-column: 4 / 5;
	}
	.categorias > a.categoria:nth-of-type(1) span {
		width: calc(100% - 20px);
		display: flex;
		align-items: center;
		bottom: 15px;
		gap: 20px;
		color: rgb(39, 33, 31);
	}
	.categorias > a.categoria:nth-of-type(1) span:before {
		content: '';
		display: block;
		height: 2px;
		min-width: 20px;
		background-color: rgba(39, 33, 31, 0.50);
		width: 100%;
	}
	.categorias > a.categoria:nth-of-type(2) span {
		display: block;
		top: 15px;
		left: 20px;
		color: rgb(17, 147, 174);
		text-align: left;
	}
	.categorias > a.categoria:nth-of-type(2) span:after {
		content: '';
		display: block;
		height: 2px;
		background-color: rgba(17, 147, 174, 0.50);
		width: 65%;
		margin-top: 0.1em;
		margin-left: -20px;
	}
	.categorias > a.categoria:nth-of-type(3) span {
		display: flex;
		align-items: flex-start;
		bottom: 0;
		left: 20px;
		gap: 20px;
		color: rgb(171, 87, 3)
	}
	.categorias > a.categoria:nth-of-type(3) span:after {
		content: '';
		display: block;
		width: 2px;
		height: 1.5em;
		background-color: rgba(171, 87, 3, 0.50);
	}
	.categorias > a.categoria:nth-of-type(4) span {
		display: flex;
		align-items: flex-start;
		bottom: 0;
		left: 20px;
		gap: 20px;
		color: rgb(255, 255, 255);
		font-weight: 400;
	}
	.categorias > a.categoria:nth-of-type(4) span:before {
		content: '';
		display: block;
		width: 2px;
		height: 3em;
		background-color: rgba(255, 255, 255, 0.50);
	}
	.categorias > a.categoria:nth-of-type(5) span {
		display: block;
		top: 15px;
		right: 20px;
		color: rgb(79, 38, 21);
		text-align: right;
	}
	.categorias > a.categoria:nth-of-type(5) span:after {
		content: '';
		display: block;
		height: 2px;
		background-color: rgba(79, 38, 21, 0.5);
		width: 70%;
		margin-top: 0.1em;
		margin-left: auto;
		margin-right: -15px;
	}
	.categorias > a.categoria:nth-of-type(6) span {
		display: flex;
		align-items: flex-end;
		top: 0;
		left: 20px;
		gap: 20px;
		color: rgb(205, 26, 101);
	}
	.categorias > a.categoria:nth-of-type(6) span:after {
		content: '';
		display: block;
		width: 2px;
		height: 1.5em;
		background-color: rgba(205, 26, 101, 0.5);
	}
	.categorias > a.categoria:nth-of-type(7) span {
		display: block;
		bottom: 17px;
		left: 0;
		color: rgb(46, 85, 164);
		text-align: right;
		width: calc(100% - 20px);
	}
	.categorias > a.categoria:nth-of-type(7) span:after {
		content: '';
		display: block;
		height: 2px;
		background-color: rgba(46, 85, 164, 0.5);
		width: 65%;
		margin-top: 0.1em;
	}
	.categorias > a.categoria:nth-of-type(8) span {
		width: calc(100% - 20px);
		display: flex;
		align-items: center;
		top: 15px;
		gap: 20px;
		color: rgb(71, 54, 65);
	}
	.categorias > a.categoria:nth-of-type(8) span:before {
		content: '';
		display: block;
		height: 2px;
		min-width: 20px;
		background-color: rgba(71, 54, 65, 0.5);
		width: 0%;
	}
	@media(prefers-reduced-motion: no-preference) {
		.categorias > a.categoria:nth-of-type(1) span:before {
			will-change: width;
			transition: width 0.3s;
			transition-delay: 0s;
		}
		.categorias > a.categoria:nth-of-type(1):hover span:before {
			width: 0%;
		}
		.categorias > a.categoria:nth-of-type(2) span:after {
			transition: width 0.3s;
			transition-delay: 0s;
		}
		.categorias > a.categoria:nth-of-type(2):hover span:after {
			width: calc(100% + 20px);
		}
		.categorias > a.categoria:nth-of-type(3) span:after {
			transition: height 0.3s;
			transition-delay: 0s;
		}
		.categorias > a.categoria:nth-of-type(3):hover span:after {
			height: 2em;
		}
		.categorias > a.categoria:nth-of-type(4) span:before {
			transition: height 0.3s;
			transition-delay: 0s;
		}
		.categorias > a.categoria:nth-of-type(4):hover span:before {
			height: 4em;
		}
		.categorias > a.categoria:nth-of-type(5) span:after {
			transition: width 0.3s;
			transition-delay: 0s;
		}
		.categorias > a.categoria:nth-of-type(5):hover span:after {
			width: calc(100% + 20px);
		}
		.categorias > a.categoria:nth-of-type(6) span:after {
			transition: height 0.3s;
			transition-delay: 0s;
		}
		.categorias > a.categoria:nth-of-type(6):hover span:after {
			height: 2.5em;
		}
		.categorias > a.categoria:nth-of-type(7) span:after {
			transition: width 0.3s;
			transition-delay: 0s;
		}
		.categorias > a.categoria:nth-of-type(7):hover span:after {
			width: calc(100% + 0px);
		}
		.categorias > a.categoria:nth-of-type(8) span:before {
			will-change: width;
			transition: width 0.3s;
			transition-delay: 0s;
		}
		.categorias > a.categoria:nth-of-type(8):hover span:before {
			width: 100%;
		}
	}
}
@media (max-width:1399px) {
	.categorias {
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.categorias > a.categoria {
		font-size: 1.75em;
		width: 236px;
		height: 236px;
	}
	.categorias > a.categoria:nth-of-type(1) {
		background-image: url(../images/cat_calefaccion_sm.jpg);
	}
	.categorias > a.categoria:nth-of-type(2) {
		background-image: url(../images/cat_purificadores_sm.jpg);
	}
	.categorias > a.categoria:nth-of-type(3) {
		background-image: url(../images/cat_cocina_sm.jpg);
	}
	.categorias > a.categoria:nth-of-type(4) {
		background-image: url("../images/cat_ventilacion_sm.jpg");
	}
	.categorias > a.categoria:nth-of-type(5) {
		background-image: url("../images/cat_limpieza_sm.jpg");
	}
	.categorias > a.categoria:nth-of-type(6) {
		background-image: url("../images/cat_maquinas_coser_sm.jpg");
	}
	.categorias > a.categoria:nth-of-type(7) {
		background-image: url("../images/cat_planchado_sm.jpg");
	}
	.categorias > a.categoria:nth-of-type(8) {
		background-image: url("../images/cat_mascotas_sm.jpg");
	}
	.categorias > a.categoria span {
		top: 0;
		left: 0;
		right: 0;
		bottom: auto;
		width: 100%;
		display: block;
		text-align: left;
		padding: 20px;
		color: #FFF;
		transform: translateY(0);
		background-position: center top;
		transition: all 0.3s;
	}
	.categorias > a.categoria:nth-of-type(1) span {
		background-color: rgba(200, 140, 40, 0.50);
	}
	.categorias > a.categoria:nth-of-type(2) span {
		background-color: rgba(17, 147, 174, 0.50);
	}
	.categorias > a.categoria:nth-of-type(3) span {
		background-color: rgba(171, 87, 3, 0.50);
	}
	.categorias > a.categoria:nth-of-type(4) span {
		background-color: rgba(31, 179, 195, 0.5);
	}
	.categorias > a.categoria:nth-of-type(5) span {
		background-color: rgba(255, 147, 127, 0.5);
	}
	.categorias > a.categoria:nth-of-type(6) span {
		background-color: rgba(205, 26, 101, 0.5);
	}
	.categorias > a.categoria:nth-of-type(7) span {
		background-color: rgba(46, 85, 164, 0.5);
	}
	.categorias > a.categoria:nth-of-type(8) span {
		background-color: rgba(71, 54, 65, 0.5);
	}
	@media(prefers-reduced-motion: no-preference) {
		.categorias > a.categoria {
			transition: background-position 0.3s;
		}
		.categorias > a.categoria:hover {
			background-position: 0% -70px;
		}
		.categorias > a.categoria span {
			transition: all 0.3s;
		}
		.categorias > a.categoria:hover span {
			top: 100%;
			transform: translateY(-100%);
		}
		.categorias > a.categoria:nth-of-type(1):hover span {
			background-color: rgba(200, 140, 40, 1);
		}
		.categorias > a.categoria:nth-of-type(2):hover span {
			background-color: rgba(17, 147, 174, 1);
		}
		.categorias > a.categoria:nth-of-type(3):hover span {
			background-color: rgba(171, 87, 3, 1);
		}
		.categorias > a.categoria:nth-of-type(4):hover span {
			background-color: rgba(31, 179, 195, 1);
		}
		.categorias > a.categoria:nth-of-type(5):hover span {
			background-color: rgba(255, 147, 127, 1);
		}
		.categorias > a.categoria:nth-of-type(6):hover span {
			background-color: rgba(205, 26, 101, 1);
		}
		.categorias > a.categoria:nth-of-type(7):hover span {
			background-color: rgba(46, 85, 164, 1);
		}
		.categorias > a.categoria:nth-of-type(8):hover span {
			background-color: rgba(71, 54, 65, 1);
		}
	}
}

@media (max-width:1050px) {
	.categorias {
		
		display: block;
		max-width: 560px
	}
		.categorias > a.categoria {width:100%;
		font-size: 1.5em;
	
		display: block;
		max-width: unset;
		height: auto;
		/*background-color: var(--Black-25);*/
		padding: 5px;
		margin-bottom: 5px;
		background-size: auto calc(100% - 10px);
		background-position: calc(100% - 5px) center;
		transition: none;
	}
	.categorias > a.categoria:hover {
		background-position: calc(100% - 5px) center;
	}
	.categorias > a.categoria > span {
		position: relative;
		z-index: 10;
		transition: none;
		background-color: transparent !important;
	}
	.categorias > a.categoria:hover span {
		transform: none;
	}
	.categorias > a.categoria span:before {
		content: '';
		display: block;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		min-width: unset;
		width: 3px;
		z-index: -1;
	}
	.categorias > a.categoria:nth-of-type(1) span:before {
		background-color: rgb(200, 140, 40);
	}
	.categorias > a.categoria:nth-of-type(2) span:before {
		background-color: rgb(17, 147, 174);
	}
	.categorias > a.categoria:nth-of-type(3) span:before {
		background-color: rgb(171, 87, 3);
	}
	.categorias > a.categoria:nth-of-type(4) span:before {
		background-color: rgb(31, 179, 195);
	}
	.categorias > a.categoria:nth-of-type(5) span:before {
		background-color: rgb(255, 147, 127);
	}
	.categorias > a.categoria:nth-of-type(6) span:before {
		background-color: rgb(229, 100, 169);
	}
	.categorias > a.categoria:nth-of-type(7) span:before {
		background-color: rgb(46, 85, 164);
	}
	.categorias > a.categoria:nth-of-type(8) span:before {
		background-color: rgb(71, 54, 65);
	}
	@media(prefers-reduced-motion: no-preference) {
		.categorias > a.categoria span:before {
			transition: width 0.3s;
		}
		.categorias > a.categoria:hover span:before {
			width: calc(100% - 71px);
		}
	}
}
/* Categorías - FIN */
/* Tiendas */
#carruselTiendas {
	max-width: 1040px;
	margin: 0 auto;
}
#carruselTiendas .owl-stage {
	display: flex;
}
@media (max-width:1230px) {
	#carruselTiendas {
		max-width: 760px;
	}
}
@media (max-width:950px) {
	#carruselTiendas {
		max-width: 480px;
	}
}
@media (max-width:670px) {
	#carruselTiendas {
		max-width: 200px;
	}
}
.tiendaEstilosa {
	background-color: rgba(0, 0, 0, 0.25);
	text-align: center;
	max-width: 200px;
	min-height: 100%;
}
.tiendaEstilosa:hover {
	background-color: #000;
}
.tiendaEstilosa a {
	color: #fff;
	text-decoration: none;
}
.tiendaImagen {
	display: block;
	overflow: hidden;
}
a .tiendaImagen img {
	height: auto;
}
@media(prefers-reduced-motion: no-preference) {
	.tiendaEstilosa {
		transition: background-color 0.5s ease;
	}
	a .tiendaImagen img {
		transition: transform 0.5s ease;
	}
}
.tiendaEstilosa a:hover .tiendaImagen img {
	transform: scale(1.08);
}
.tiendaDirec {
	padding: 10px;
	display: block;
	line-height: 150%;
}
.tiendaDirec h4 {
	margin: 0 0 0.25em;
}
/* Tiendas - FIN */
/* Blog */
.homeBlog {
	display: block;
	position: relative;
	background-image: url(../images/home_blog.jpg);
	background-repeat: no-repeat;
	background-position: left center;
	background-size: cover;
	height: 390px;
}
.homeBlog:before {
	content: '';
	display: block;
	position: absolute;
	height: 2px;
	width: 0px;
	background-color: #FFF;
	top: 215px;
	left: 560px;
}
.homeBlog h3 {
	display: block;
	position: absolute;
	top: 145px;
	left: 598px;
	font-size: 3em;
	font-weight: 500;
	color: #34568F;
	text-transform: none;
	text-shadow: none;
	line-height: 95%;
	text-shadow: 0 0 2px #ECDAB5;
	margin: 0;
}
.homeBlog h3 span {
	display: block;
	margin-left: 160px;
	color: #1E2D51;
	font-weight: 600;
}
@media (max-width:1120px) {
	.homeBlog {
		background-position: center;
	}
	.homeBlog:before {
		left: 39.5%;
	}
	.homeBlog h3 {
		left: 44.5%;
	}
}
@media (max-width:920px) {
	.homeBlog:before {
		top: 211px;
	}
	.homeBlog h3 {
		font-size: 2.5em;
		line-height: 100%;
		top: 148px;
		left: 42.5%;
	}
	.homeBlog h3 span {}
}
@media (max-width:790px) {
	.homeBlog {
		background-image: url(../images/home_blog_sm.jpg);
	}
	.homeBlog:before {
		display: none;
	}
	.homeBlog h3 {
		top: auto;
		bottom: 0;
		left: 0;
		right: 0;
		width: 100%;
		background-color: rgba(202, 201, 199, 0.8);
		text-shadow: none;
		text-align: center;
		padding: 0.5em;
		border-top: 2px solid rgba(255, 255, 255, 0.5);
	}
	.homeBlog h3 span {
		display: initial;
		margin-left: 0;
	}
}
@media (max-width:720px) {
	.homeBlog h3 {
		font-size: 2em;
	}
	.homeBlog h3 span {
		display: block;
	}
}
@media(prefers-reduced-motion: no-preference) {
	.homeBlog:before {
		transition: width 0.3s;
	}
}
.homeBlog:hover:before {
	width: 190px;
}
@media (max-width:860px) {
	.homeBlog:hover:before {
		width: 178px;
	}
}
/* Blog - FIN*/
/* HOME - FIN */
/* INTERIOR */
.fotoSeccion {
	display: block;
	width: 100%;
	height: 320px;
	border: 0 none;
	object-fit: cover;
}
@media (max-width:700px) {
	.fotoSeccion {
		height: 240px;
	}
}
@media (max-width:520px) {
	.fotoSeccion {
		height: 160px;
	}
}
.contInterior {
	font-size: 1.25em;
	padding: 1.5em;
	background-color: var(--Black-25);
	text-align: justify;
}
.contInterior ul li {
	margin-bottom: 0.5em;
}
@media (max-width:400px) {
	.contInterior {
		padding: 1em;
	}
}
.cols2 {
	display: flex;
	gap: 20px;
}
.cols2 > div {
	width: 50%;
}
@media (max-width:720px) {
	.cols2 {
		flex-direction: column;
	}
	.cols2 > div {
		width: 100%;
	}
}
.txtL {
	text-align: left
}
.txtR {
	text-align: right
}
.txtC {
	text-align: center
}
.txtJ {
	text-align: justify
}
.mb-1 {
	margin-bottom: 1em;
}
.mb-2 {
	margin-bottom: 2em;
}
.mb-3 {
	margin-bottom: 3em;
}
.mb-4 {
	margin-bottom: 4em;
}
.mb-5 {
	margin-bottom: 5em;
}
/* Contacto */
/* Form */
form {
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	padding-top: 1em;
}
input[type="text"],
select,
textarea {
	appearance: none;
	border: 0 none;
	outline: 0 none;
	margin: 0;
	padding: 0.5em;
	font-family: inherit;
	font-size: inherit;
	background-color: #FFF;
	font-weight: 500;
	line-height: 130%;
	width: 100%;
}
input[type="submit"],
.btnVolver {
	text-transform: uppercase;
	display: inline-block;
	background-color: var(--Black-66);
	appearance: none;
	border: 0 none;
	outline: 0 none;
	margin: 0;
	padding: 0.5em 1em;
	font-family: inherit;
	font-size: inherit;
	color: #FFF;
	font-weight: 500;
	cursor: pointer;
}
	{
	background-color: var(--Black-66);
	appearance: none;
	border: 0 none;
	outline: 0 none;
	margin: 0;
	padding: 0.5em 1em;
	font-family: inherit;
	font-size: inherit;
	color: #FFF;
	font-weight: 500;
	cursor: pointer;
}
@media(prefers-reduced-motion: no-preference) {
	input[type="submit"],
	.btnVolver {
		transition: background-color 0.3s;
	}
	input[type="submit"]:hover,
	.btnVolver:hover {
		background-color: rgba(0, 62, 142, 1);
	}
}
textarea {
	resize: none;
}
label {
	font-size: 0.8em;
	display: block;
	padding: 1em 0 0.25em;
}
form .alto100 {
	display: flex;
	flex-direction: column;
}
form .alto100 textarea {
	flex-grow: 1;
}
@media (max-width:720px) {
	form .alto100 textarea {
		min-height: 200px
	}
}
.botonera {
	text-align: center;
	margin-top: 2em;
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	padding: 2em 0;
}
.mensajeSalida {
	border-top: 1px solid RGBA(255, 255, 255, 0.5);
	padding: 2em 0;
}
/* Form - FIN */
#contacto iframe {
	border: 0 none;
	background-color: rgb(139 165 193);
	border-top: 5px solid rgb(139 165 193);
	border-bottom: 5px solid rgb(139 165 193);
}
@media (max-width:720px) {
	#contacto iframe {
		height: 240px;
	}
}
@media (max-width:520px) {
	#contacto iframe {
		height: 160px;
	}
}
/* Contacto - FIN */
/* INTERIOR - FIN */
footer {
	background-color: var(--Black-50);
}
@media (max-width:1399px) {
	footer {
		margin-left: -20px;
		margin-right: -20px;
	}
}
footer .footer {
	max-width: 1340px;
	padding: 50px 20px;
	margin: 0 auto;
	box-sizing: border-box;
	display: flex;
	align-items: flex-start;
	gap: 2em;
}
@media (max-width:720px) {
	footer {
		margin-left: 0;
		margin-right: 0;
	}
	footer .footer {
		padding: 2.5em 20px;
	}
}
@media (max-width:400px) {
	footer .footer {
		padding: 2.5em 1.25em;
	}
}
footer .footer .categoria {
	display: flex;
	gap: 1.25em;
}
footer .footer .categoria > div:first-of-type {
	text-transform: uppercase;
	font-size: 1.5em;
}
footer .footer .categoria > div:last-of-type {
	border-left: var(--linea-blca);
	font-size: 1.125em;
	padding-left: 1.111em;
	line-height: 150%;
}
footer .footer .categoria a {
	display: block;
	padding: 0 0.5em 0 0;
	white-space: nowrap;
	font-weight: 400;
}
footer .footer .categoria a:hover {
	font-weight: 600;
}
@media(prefers-reduced-motion: no-preference) {
	footer .footer .categoria a {
		transition: all 0.3s;
	}
	footer .footer .categoria a:hover {
		padding: 0 0 0 0.5em;
	}
}
@media (max-width:1320px) {
	footer .footer {
		flex-wrap: wrap;
		gap: 2em;
	}
	footer .footer .categoria {
		width: auto;
	}
	footer .footer .contacto {
		width: 100%;
	}
}
@media (max-width:1030px) {
	footer .footer {
		gap: 4em;
	}
	footer .footer .categoria {
		flex-direction: column;
		gap: 0.5em;
	}
	footer .footer .categoria > div:last-of-type {
		border-left: 0;
		border-top: var(--linea-blca);
		padding-left: 0;
		padding-top: 1.111em;
	}
}
@media all and (max-width:720px) {
	footer .footer {
		display: block;
		width: 100%;
	}
	footer .footer .categoria {
		display: block;
	}
	footer .footer .categoria > div:first-of-type {
		border-bottom: 1px solid rgba(255, 255, 255, 0.5);
		font-size: 1.25em;
		padding: 0.5em 0;
		cursor: pointer;
	}
	footer .footer .categoria > div:first-of-type.icoFlecha {
		background-image: url(../images/ico_arrow.svg);
		background-repeat: no-repeat;
		background-position: right 18px;
	}
	footer .footer .categoria > div:first-of-type.icoFlecha.abierto {
		background-position: right calc(100% - 18px);
	}
	footer .footer .categoria > div:last-of-type {
		border-left: 0 none;
		padding: 1em;
		line-height: 100%;
		background-color: var(--Black-25);
		display: none;
		border-top: 0 none;
	}
	footer .footer .categoria a {
		display: block;
		padding: 0.5em 0;
		white-space: wrap;
		transition: unset;
	}
	footer .footer .categoria a:hover {
		padding: 0.5em 0;
	}
}
footer .footer .contacto {
	display: flex;
	align-items: center;
	gap: 1.5em;
	flex-grow: 1;
}
footer .footer .contacto .email {
	font-size: 1.125em;
	line-height: 150%;
	padding-right: 0.5em;
	border-right: var(--linea-blca);
	flex-grow: 1;
	text-align: right;
}
footer .footer .contacto .email a {
	font-weight: 400;
}
@media(prefers-reduced-motion: no-preference) {
	footer .footer .contacto .email a {
		transition: font-weight 0.1s;
	}
}
footer .footer .contacto .email a:hover {
	font-weight: 600;
}
footer .footer .contacto .logo img {
	display: block;
	width: auto;
	height: auto;
}
@media all and (max-width:720px) {
	footer .footer .contacto {
		width: 100%;
		justify-content: space-between;
		margin-top: 2em;
	}
	footer .footer .contacto .email {
		flex-grow: 0;
	}
	footer .footer .contacto .logo {
		flex-grow: 0;
	}
	footer .footer .contacto .logo img {
		margin-left: auto;
	}
}
footer .subfooter {
	background-color: var(--Black-50);
}
footer .subfooter .creditos {
	max-width: 1340px;
	padding: 20px;
	/*display: flex;*/
	margin: 0 auto;
	box-sizing: border-box;
	/*gap: 2em;
	justify-content: space-between;
	align-items: center;*/
}
/*
footer .subfooter .creditos .iVrweb {
	display: flex;
	align-items: center;
	gap: 1em;
	white-space: nowrap;
	min-width: 230px;
}
footer .subfooter .creditos .iVrweb > div {
	font-size: 1.25em;
	width: 1.4em;
	min-width: 1.4em;
	height: 1.4em;
	line-height: 1.3em;
	text-align: center;
	border: 1px solid #FFF;
	cursor: pointer;
}
footer .subfooter .creditos .iVrweb > div:hover {
	background-color: #000;
	border-color: #006DD9;
}
footer .subfooter .creditos .iVrweb > a {
	display: none;
}
@media(prefers-reduced-motion: no-preference) {
	footer .subfooter .creditos .iVrweb > div {
		transition: all 0.3s;
	}
	footer .subfooter .creditos .iVrweb > a {
		transition: font-weight 0.1s;
	}
}
footer .subfooter .creditos .iVrweb > a:hover {
	font-weight: 600;
}
*/
footer .subfooter .creditos .copyright {
	text-align: right;
}
footer .subfooter .creditos .copyright span {
	white-space: nowrap;
}
@media (max-width:480px) {
	footer .subfooter .creditos .copyright {
		text-align: left;
		/*margin-top: 0.75em;*/
	}
}
