@charset "utf-8";

* {
	margin: 0;
	padding:0;
	-webkit-box-sizing:border-box;
    -moz-box-sizing:   border-box;
    box-sizing:        border-box;
}
html {
	scroll-behavior: smooth;
	scroll-padding: 0;
	--negro: #231F20;
	--blanco: #ffffff;
	--verde: #23B36B;
	--verdeFuerte: #128A52;
	--grisClaro: #EFEFEF;
	--gris: #7C7C7C;
	
	--width: calc(100% - 48px);
	--maxWidth: 960px;
}

body {
	font-family: 'DM Sans';
	font-weight: normal;
	color: var(--negro);
	background: var(--blanco);
	line-height:1.4;
	overflow-x:hidden !important;
}

h1 {
	line-height:1;
	font-family: 'Inter Bold';
	font-weight: normal;
	font-size: 3.9em;
}
h2 {
	line-height:1;
	font-family: 'DM Sans';
	font-weight: normal;
	font-size: 2.7em;
}
h3 {
	font-family: 'Inter Bold';
	font-weight: normal;
	font-size: 1.3em;
}
h4 {
	font-family: 'Inter Bold';
	font-weight: normal;
	font-size: 2.1vh;
}
a {
	font-size: 1em;
    text-decoration:none;
	color: var(--negro);
	cursor: pointer;
	transition: all 0.6s ease-in-out;
}
a:active {
	outline: none;
    border: none;
}
button {
	font-family: 'Inter Bold';
	/*font-size:1.11em;*/
	font-size:2.25vh;
	border-radius: 0 !important;
	cursor: pointer !important;
	border: none;
	transition: all 0.6s ease-in-out;
}
button:active {
    outline: none;
    border: none;
}
button:hover {
	cursor:pointer;
}
button:focus,
input:focus,
textarea:focus {
	outline:none;
}
p, ul {
	font-size:1em;
}
p b,
p em {
	font-family: 'Inter Bold';
	font-weight: normal;
}

::selection {
	color: var(--verde);
	background: var(--negro);
}
::-moz-selection {
	color: var(--verde);
	background: var(--negro);
}

/* --------------------------- css --------------------------- */

header {
	width: 100%;
	position: fixed;
	top: 0;
	left:0;
	background: none;
	transition: all ease-in-out 0.6s;
	z-index: 99;
}
header.active {
	color: var(--blanco);
	background: var(--verde);
}
header .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	position: none;
}
header .inter div {
	width: 33.3%;
	pointer-events: auto;
}
header .inter div:nth-child(2) {
	text-align: center;
}
header .inter div img {
	width: 120px;
	margin: 24px 0 21px;
	transition: all 0.6s ease-in-out;
}
header.active .inter div img {
	-webkit-filter: brightness(0) invert(1);
    filter: brightness(0) invert(1);
}
header .inter div svg {
	width: 120px;
	margin: 24px 0 21px;
	transition: all 0.6s ease-in-out;
	fill: var(--verde);
}
header.active .inter div svg {
	fill: var(--blanco);
}
header .inter div h1 {
	font-family: 'DM Sans';
	font-size: 1.8em;
}
header .inter div h2 {
	font-family: 'DM Sans';
	font-size: 1.5em;
}
header .inter div h1,
header .inter div h2 {
	animation-duration: 1.5s;
	animation-delay: 1.2s;
}
header .inter div:last-child {
	position: relative;
	display: flex;
	align-items: center;
	justify-content: flex-end;
	gap: 18px;
}
header .inter div:last-child > a {
	position: relative;
	display: flex;
	align-items: center;
}
header .inter div:last-child > a span {
	font-size: 1.5em;
}
header.active .inter div:last-child > a span {
	color: var(--blanco);
}

.btn-menu {
	width: 21px;
	height:21px;
	background: none;
	position: relative;
	display: inline-block;
}
.btn-menu span {
	width: 21px;
	height:3px;
	background: var(--negro);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease-in-out;
	border-radius: 3px;
}
.btn-menu span::before,
.btn-menu span::after {
	content: '';
	width: 100%;
	height:3px;
	background: var(--negro);
	position: absolute;
	left: 0;
	transition: all 0.6s ease-in-out;
	border-radius: 3px;
}
header.active .btn-menu span {
	background: var(--blanco);
}
header.active .btn-menu span::before,
header.active .btn-menu span::after {
	background: var(--blanco);
}
.btn-menu span::before {
	top: -7px;
}
.btn-menu span::after {
	bottom:-7px;
}
/* active */
.btn-menu.active span,
header.active .btn-menu.active span {
	background: none;
}
.btn-menu.active span::before {
	top: 0;
	transform: rotate(45deg);
}
.btn-menu.active span::after {
	bottom:0;
	transform: rotate(-45deg);
}

header.active .btn {
	color: var(--negro) !important;
	background: var(--verdeClaro) !important;
}

#openmenu {
	width: 100vw;
	height:100vh;
	position: fixed;
	display: block;
	top: 0;
	left:100%;
	transition: all 0.6s ease-in-out;
	color: var(--blanco);
	background: var(--verdeFuerte);
	padding: 141px 15px 24px;
	text-align: center;
	z-index: 66;
}
#openmenu.active {
	left: 0;
}
#openmenu a {
	font-size: 1.5em;
	display: block;
	margin: 0 0 24px;
	color: var(--blanco);
	position: relative;
	opacity: 0.6;
}
#openmenu a.sub {
	font-family: 'DM Sans';
	font-size: 0.9em;
}
#openmenu a.active {
	color: var(--verdeAcento);
	opacity: 1;
}
#openmenu a::after {
	content: '';
	width: 12px;
	height:12px;
	background: var(--verde);
	position: absolute;
	top: 50%;
	left:12px;
	transform: translate(0,-50%);
	border-radius: 50px;
	transition: all 0.6s ease-in-out;
	opacity: 0;
}
#openmenu a.active::after {
	opacity: 1;
}
#openmenu a.sub::after {
	display: none;
}
#openmenu div:last-child {
	position: relative;
	display: flex;
	padding: 24px 0 0;
	justify-content: center;
	gap: 15px;
}
#openmenu div:last-child a {
	opacity: 1;
}
#openmenu div:first-child a {
	font-family: 'Inter Bold';
	text-transform: uppercase;
}
#openmenu circle {
	width: 36px;
	height:36px;
	border-radius: 50%;
	color: var(--blanco);
	background: none;
	border: solid 2px var(--blanco);
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
}
#openmenu circle span {
	font-size: 0.7em;
	color: var(--blanco);
}
#openmenu circle:hover {
	background: var(--verde);
}


#cortina {
	width: 100vw;
	height:100vh;
	position: fixed;
	top: -120%;
	left:0;
	background: linear-gradient(var(--verde), var(--verdeFuerte));
	animation: gone 1.3s;
	pointer-events: none !important;
	z-index: 969;
}
#cortina svg {
	width: 54%;
	max-width: 210px;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	fill: var(--blanco);
	z-index: 1;
}
@-webkit-keyframes gone {
	0% {
		top: 0;
	}
	42% {
		top: 0;
	}
	100% {
		top: -100%;
	}
}
@-moz-keyframes gone {
	0% {
		top: 0;
	}
	42% {
		top: 0;
	}
	100% {
		top: -100%;
	}
}
@keyframes gone {
	0% {
		top: 0;
	}
	42% {
		top: 0;
	}
	100% {
		top: -100%;
	}
}

.section {
	position: relative;
}

main {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	position: relative;
}

.bg-grisClaro {
	background: var(--grisClaro);
	z-index: 3;
}


.btn {
	width: auto;
	font-family: 'DM Sans';
	font-size: 0.9em;
	padding:9px 24px;
	position: relative;
	display: inline-block;
	color: var(--blanco);
	background: var(--verde);
	border: none;
	border-radius: 30px !important;
}
.btn.clar {
	color: var(--verde);
	background: var(--verdeClaro);
}
.btn:hover {
	color: var(--verde);
	background: var(--verdeAcento);
}

#portada {
	width: 100vw;
	height:100vh;
	top: 0;
	overflow: hidden;
	position: relative;
}
#portada::after {
	content: '';
	width: 100%;
	height:81%;
	background: linear-gradient(180deg, rgba(50,46,42,0) 0%, rgba(50,46,42,0.7) 75%);
	position: absolute;
	left: 0;
	bottom:0;
	z-index: 3;
}
#portada img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 0;
	left:0;
	opacity: 0;
	transition: opacity 0.9s ease-in-out;
	z-index: 1;
}
#portada img:nth-child(1) {
	animation: fade1 30s infinite;
}
#portada img:nth-child(2) {
	animation: fade2 30s infinite;
}
#portada img:nth-child(3) {
	animation: fade3 30s infinite;
}
#portada img:nth-child(4) {
	animation: fade4 30s infinite;
}
#portada img:nth-child(5) {
	animation: fade5 30s infinite;
}

@keyframes fade1 {
	0%   { opacity: 1; }
	20%  { opacity: 0; }
	40%  { opacity: 0; }
	60%  { opacity: 0; }
	80%  { opacity: 0; }
	100% { opacity: 1; }
}
@-webkit-keyframes fade1 {
	0%   { opacity: 1; }
	20%  { opacity: 0; }
	40%  { opacity: 0; }
	60%  { opacity: 0; }
	80%  { opacity: 0; }
	100% { opacity: 1; }
}
@keyframes fade2 {
	0%   { opacity: 0; }
	20%  { opacity: 1; }
	40%  { opacity: 0; }
	60%  { opacity: 0; }
	80%  { opacity: 0; }
	100% { opacity: 0; }
}
@-webkit-keyframes fade2 {
	0%   { opacity: 0; }
	20%  { opacity: 1; }
	40%  { opacity: 0; }
	60%  { opacity: 0; }
	80%  { opacity: 0; }
	100% { opacity: 0; }
}
@keyframes fade3 {
	0%   { opacity: 0; }
	20%  { opacity: 0; }
	40%  { opacity: 1; }
	60%  { opacity: 0; }
	80%  { opacity: 0; }
	100% { opacity: 0; }
}
@-webkit-keyframes fade3 {
	0%   { opacity: 0; }
	20%  { opacity: 0; }
	40%  { opacity: 1; }
	60%  { opacity: 0; }
	80%  { opacity: 0; }
	100% { opacity: 0; }
}
@keyframes fade4 {
	0%   { opacity: 0; }
	20%  { opacity: 0; }
	40%  { opacity: 0; }
	60%  { opacity: 1; }
	80%  { opacity: 0; }
	100% { opacity: 0; }
}
@-webkit-keyframes fade4 {
	0%   { opacity: 0; }
	20%  { opacity: 0; }
	40%  { opacity: 0; }
	60%  { opacity: 1; }
	80%  { opacity: 0; }
	100% { opacity: 0; }
}
@keyframes fade5 {
	0%   { opacity: 0; }
	20%  { opacity: 0; }
	40%  { opacity: 0; }
	60%  { opacity: 0; }
	80%  { opacity: 1; }
	100% { opacity: 0; }
}
@-webkit-keyframes fade5 {
	0%   { opacity: 0; }
	20%  { opacity: 0; }
	40%  { opacity: 0; }
	60%  { opacity: 0; }
	80%  { opacity: 1; }
	100% { opacity: 0; }
}

#portada main {
	position: absolute;
	left: 50%;
	bottom:120px;
	transform: translateX(-50%);
	z-index: 6;
}
#portada .portaBtns {
	width: 100%;
	position: relative;
	display: flex;
	background: var(--grisClaro);
	animation-duration: 1.3s;
	animation-delay: 1.5s;
}
#portada .portaBtns a {
	width: 33.3%;
	text-align: center;
	position: relative;
}
#portada .portaBtns a span {
	font-size: 3em;
	color: var(--verde);
	position: absolute;
	top: 0;
	left:50%;
	transform: translate(-50%,0%);
	opacity: 0;
	transition: all 0.6s ease-in-out;
}
#portada .portaBtns a:hover span {
	transform: translate(-50%,-150%);
	opacity: 1;
}
#portada .portaBtns a p {
	width: calc(100% - 4px);
	font-family: 'Inter Bold';
	margin: 4px;
	padding:9px 12px;
	transition: all 0.3s ease-in-out;
}
#portada .portaBtns a:hover p {
	color: var(--blanco);
	background: var(--verde);
}

#owl {
	width: 100vw;
	max-width: 100vw;
	overflow: hidden;
	padding:81px 0 0;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.owl-carousel {
	max-width: var(--maxWidth);
	margin: 0 auto;
	position:relative;
	display:block;
	overflow: hidden;
	z-index: 3;
	cursor: grab;
}
.owl-carousel:active {
	cursor: grabbing;
}
.owl-carousel div {
	float:left;
}

.owl-carousel .item {
	position: relative;
}
.owl-carousel .item .imagen {
	width: 100%;
	max-width: 100%;
	height:auto;
}
.owl-carousel .item .imagen img {
	width: 100vw;
	margin: 0 0 -6px;
}


/*.owl-nav {
	width: 90px;
	position: absolute;
	top: 0;
	right:0;
	display: flex;
	justify-content: space-between;
	gap: 12px;
	z-index: 12;
}
.owl-nav button {
	border: none;
	cursor: pointer;
	pointer-events: all;
	padding:0;
	background: none !important;
}
.owl-nav button span {
	font-size: 30px;
	color: var(--verde);
}
.owl-nav button:hover span {
	color: var(--verde);
}*/
	

.owl-dots {
	width: 100%;
	text-align: center;
	position: absolute;
	left: 50%;
	bottom:30px;
	transform: translateX(-50%);
	z-index: 9;
}
.owl-dots .owl-dot {
	width: 15px;
	height:15px;
	background: var(--blanco);
	position: relative;
	margin: 0 15px 0 0;
	cursor: pointer;
	border-radius: 50% !important;
	opacity: 0.6;
}
.owl-dots .owl-dot:last-child {
	margin: 0;
}
.owl-dots .owl-dot:last-child {
	margin: 0;
}
.owl-dots .owl-dot:hover {
	opacity: 1;
}
.owl-dots .owl-dot.active {
	border-color: transparent;
	background: var(--verde);
	opacity: 1;
}

.owlEsp {
	pointer-events: none;
}
.owlEsp .owl-dots {
	display: none;
}


.contenido {
	background: var(--blanco);
}

.subtitulo {
	display: flex;
	flex-wrap: wrap;
	margin: 90px auto 0;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.subtitulo.esp {
	margin: 30px auto;
}
.subtitulo div {
	width: 100%;
	padding:12px 0;
	border-bottom: solid 1px var(--gris);
}
.subtitulo h1 {
	width: 100%;
	font-family: 'DM Sans';
	font-size: 1.8em;
	padding:30px 18px;
	text-align: center;
}

.subtitulo .back {
	position: absolute;
	top: 12px;
	left:0;
	transform: translateX(-210%);
	font-size: 1.5em;
	color: var(--verde);
}

.subtitulo form {
	width: 100%;
	position: relative;
}
.subtitulo form input {
	width: 100%;
	font-family: 'DM Sans';
	font-size: 1.2em;
	color: var(--negro);
	background: none;
	padding:12px 0;
	border: none;
	border-bottom: solid 1px var(--negro);
	transition: all 0.6s ease-in-out;
}
.subtitulo form input:focus {
	border-color: var(--verde);
}
.subtitulo form button {
	height:100%;
	font-family: 'DM Sans';
	font-size: 1em;
	color: var(--verde);
	position: absolute;
	top: 0;
	right:0;
	background: none;
}
.subtitulo form button:hover {
	color: var(--verdeFuerte);
}

/* form-buscar */
.form-buscar {
	width: 100%;
	height:100%;
	position: absolute;
	top: 0;
	left:0;
	background: rgba(0,0,0,0.3);
}
.form-buscar form {
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 3;
}
.form-buscar form * {
	font-size: 1.2em;
	vertical-align: bottom;
	display: inline-block;
	color: var(--blanco);
}
.form-buscar form label {
	padding: 0 15px 0 0;
}
.form-buscar form input {
	font-family: 'Gotham';
	font-size: 1.5em;
	background: none;
	border: none;
	padding: 0 0 9px;
	border-bottom: solid 1px var(--blanco);
}
.form-buscar form button {
	font-family: 'HelveticaNeueCondensed';
	padding:9px;
	margin: 0;
	background: var(--negro);
	border: solid 1px var(--negro);
}

/* autocomplete */
.autocomplete-items {
    position: absolute;
    border: none;
    background: var(--grisClaro);
    z-index: 99;
    top: 100%;
    left: 0;
    right:0;
}
.autocomplete-items div {
	font-size: 1em;
    padding: 9px;
    cursor: pointer;
    background-color: none;
    display: block;
	border: none;
}
.autocomplete-items div strong {
	color: var(--verde);
	font-weight: inherit !important;
}
.autocomplete-items div:hover {
	color: var(--blanco);
    background-color: var(--negro); 
}
.autocomplete-active {
    background-color: var(--negro) !important;
}

.boxes {
	margin: 0 auto 120px;
}
.boxes .box {
	width: 100%;
	position: relative;
	display: flex;
	background: var(--grisClaro);
	margin: 0 0 18px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

.nohay {
	width: 100%;
	flex-wrap: wrap;
	justify-content: center;
	text-align: center;
	display: flex;
	gap: 30px;
	padding:24px;
	background: none !important;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.nohay h2 {
	width: 100%;
	padding:0 18%;
	font-family: 'DM Sans';
	color: var(--gris);
	font-weight: lighter;
}

.boxes .box:last-child {
	margin: 0;
}
.boxes .box > div {
	width: 40%;
	position: relative;
}
.boxes .box > div:nth-child(3n) {
	width: 20%;
}
.box .imagen {
	overflow: hidden;
}
.box .imagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.9s ease-in-out;
}
.box .imagen a:hover img {
	transform: translate(-50%,-50%) scale(1.2);
}
.texto,
.imagen {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.box .texto {
	padding:36px;
}
.box .texto h2 {
	font-size: 2.1em;
	margin: 0 0 9px;
}
.box .texto a.lugar {
	font-family: 'Inter Bold';
	font-size: 1.5em;
	color: var(--verde);
	margin: 0 0 30px;
	display: block;
	position: relative;
}
.box .texto a.lugar::after {
	content: '';
	width: 15px;
	height:1px;
	background: var(--negro);
	position: absolute;
	left:0;
	bottom:0;
	transform: translateY(12px);
}
.box .texto p {
	position: relative;
	text-justify: inter-word;
	display: -webkit-box;
	-webkit-line-clamp: 3;
	-webkit-box-orient: vertical;
	overflow: hidden;
}
.box .texto p.active {
	-webkit-line-clamp: none;
}
.box .btns {
	padding:15px;
	display: flex;
	flex-wrap: wrap;
	gap: 15px;
	justify-content: flex-end;
}
.box .btns a {
	display: block;
	margin: 0 0 15px;
}
a circle {
	width: 42px;
	height:42px;
	position: relative;
	display: flex;
	justify-content: center;
	align-items: center;
	background: var(--blanco);
	border-radius: 50%;
}
a:hover circle {
	background: var(--gris);
}
a circle span {
	font-size: 1.2em;
	color: var(--verde);
}
a:hover circle span {
	color: var(--blanco);
}
a circle.verde {
	background: var(--verde);
}
a circle.verde span {
	color: var(--blanco);
}

.descripcion .box {
	display: flex;
}
.descripcion .box .texto {
	width: 100%;
	padding:36px 0;
}
.descripcion .box .texto h2 {
	padding:0 0 9px;
}
.descripcion .box .texto > span {
	color: var(--verde);
}
.descripcion .box .texto p.esp {
	font-size: 1.05em;
	padding:0 30px 0 0;
	text-align: justify;
    text-justify: inter-word;
	opacity: 0.7;
}
.descripcion .box .btns {
	width: 72px;
	gap: 0;
	align-content: flex-start;
}

.descripcion .video {
	width: 100%;
    display: flex;
    justify-content: center;
	position: relative;
	margin: 0 0 24px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.descripcion .video iframe {
    aspect-ratio: 16 / 9;
    width: 100% !important;
}

.soluciones {
	margin: 0 auto 120px;
	display: flex;
	flex-wrap: wrap;
	gap: 42px 0;
}
.soluciones a {
	width: calc(25% - 24px);
	margin: 0 30px 0 0;
	position: relative;
	text-align: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.soluciones a:nth-child(2n) {
	animation-delay: 1.2s;
}
.soluciones a:nth-child(4n) {
	margin: 0;
}
.soluciones a circle {
	width: 100%;
	height:0;
	padding:0 0 100%;
	background: linear-gradient(to right, var(--verde), var(--verdeFuerte));
	position: relative;
	overflow: hidden;
	border-radius: 50%;
}
.soluciones a circle img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.9s ease-in-out;
}
.soluciones a:hover circle img {
	transform: translate(-50%,-50%) scale(1.2);
}
.soluciones a p {
	font-size: 1.2em;
	color: var(--gris);
	margin: 18px auto 0;
	padding:0 9px;
	word-wrap: break-word;
	overflow-wrap: break-word;
	-webkit-hyphens: auto;
    -moz-hyphens: auto;
	hyphens: auto;
}
.soluciones a:hover p {
	color: var(--verde);
}

.info {
	margin: 0 auto 120px;
}
.info > br {
	display: block;
	height:15px !important;
}
.info > span {
	color: var(--gris);
}
.info h2,
.info h3 {
	color: var(--verde);
	margin: 0 0 21px;
	padding:0;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.info h4 {
	color: var(--gris);
	margin: 0 0 21px;
	font-style: italic;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.info p {
	color: var(--gris);
	margin: 0 0 21px;
	text-align: left;
	text-align: justify;
	hyphens: auto;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.info p:last-child {
	margin: 0;
}
.info img.total {
	width: 100%;
	margin: 0 0 24px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.info img.total:last-child {
	margin: 0;
}
.info a.link {
	color: var(--verde);
	margin: 0 0 21px;
	text-decoration: underline;
}
.info article {
	width: 100%;
	height:36px;
	display: block;
}

.articulos {
	margin: 0 auto 120px;
	display: flex;
	flex-wrap: wrap;
	gap: 42px 0;
	justify-content: space-between;
}
.articulos .caja {
	width: calc(50% - 24px);
	overflow: hidden;
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.articulos .caja .imagen {
	width: 100%;
	height:0;
	padding:0 0 100%;
	position: relative;
}
.articulos .caja .imagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	transition: all 0.9s ease-in-out;
}
.articulos .caja .imagen a:hover img {
	transform: scale(1.2);
}
.articulos .caja .texto {
	width: 100%;
	position: absolute;
	left: 0;
	bottom:0;
	pointer-events: none;
	padding:0 0 30px;
	z-index: 3;
}
.articulos .caja .texto::after {
	content: '';
	width: 100%;
	height:100%;
	background: var(--verdeFuerte);
	position: absolute;
	top: 0;
	left:0;
	-webkit-mix-blend-mode: multiply;
    -moz-mix-blend-mode: multiply;
	mix-blend-mode: multiply;
	opacity: 0.7;
	z-index: -1;
}
.articulos .caja .texto h2 {
	width: 100%;
	font-size: 2.4em;
	color: var(--blanco);
	padding:24px 27px 18px;
	border-bottom: solid 1px var(--blanco);
}
.articulos .caja .texto p {
	width: 100%;
	font-size: 0.9em;
	color: var(--blanco);
	padding:18px 27px 0;
	position: relative;
	text-justify: inter-word;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
	overflow: hidden;
}

footer {
	width: 100vw;
	position: fixed;
	left: 0;
	bottom:0;
	color: var(--blanco);
	background: var(--negro);
	z-index: 9;
}
footer .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	position: relative;
	display: flex;
	justify-content: center;
	align-items: flex-end;
	margin: 0 auto;
	padding:15px 0 21px;
}
footer .inter a {
	width: 20%;
	color: var(--blanco);
	text-align: center;
}
footer .inter a svg {
	height:24px;
	fill: var(--blanco);
}
footer .inter a.active svg,
footer .inter a:hover svg {
	fill: var(--verde);
}
footer .inter a span {
	font-size: 1.8em;
}
footer.index .inter a span {
	font-size: 1.3em;
}
footer .inter a:hover span,
footer .inter a.active span {
	color: var(--verde);
}
footer .inter a p {
	font-size: 0.84em;
	margin: 3px auto 0;
	opacity: 0.7;
}
footer .inter a:hover p,
footer .inter a.active p {
	opacity: 1;
}

.tope {
	width: 100vw;
	height:1px;
	display: block;
}

@media screen and (max-width:666px) {
	
	html {
		--width: calc(100% - 30px);
	}
	
	p,
	ul {
		font-size: 0.9em;
	}
	
	h1 {
		font-size: 1.8em;
	}
	h2 {
		font-size: 1.5em;
	}
	
	h3 {
		font-size: 1.2em;
	}
	
	header .inter div img {
		width: 99px;
		margin: 18px 0;
	}
	header .menu a {
		display: none;
	}
	header.active {
		padding:18px 0;
	}
	header.active .inter div {
		width: 50%;
	}
	header.active .inter div:first-child {
		display: none;
	}
	header .inter div:nth-child(2) {
		text-align: left;
	}
	header .inter div h1 {
		font-size: 1.5em;
	}
	header .inter div h2 {
		font-size: 1.2em;
	}
	
	.btn {
		font-size: 0.8em;
		padding:7px 18px;
	}
	header .btn {
		font-size: 0.75em;
	}
	
	#cortina svg {
		max-width: 180px;
	}

	.soluciones {
		justify-content: space-between;
	}
	.soluciones a,
	.soluciones a:nth-child(4n) {
		width: calc(50% - 12px);
		margin: 0;
	}
	.soluciones a p {
		font-size: 0.9em;
	}
	
	.articulos {
		margin: 90px auto;
		gap: 24px;
	}
	.articulos.esp {
		margin: 0 auto 90px;
	}
	.articulos .caja {
		width: 100%;
	}
	.articulos .caja .texto h2 {
		font-size: 1.8em;
		padding:24px 21px 18px;
	}
	.articulos .caja .texto p {
		font-size: 0.7em;
		padding:18px 21px 0;
	}
	
	#owl {
		width: 100vw;
		padding:54px 0 0;
	}
	.owl-carousel,
	.owl-carousel .item .imagen {
		max-width: none;
	}
	
	.descripcion {
		width: 100vw;
	}
	.descripcion .box {
		flex-wrap: wrap;
	}
	.descripcion .box .texto {
		width: 100%;
		order: 1;
		padding:48px 15px 36px;
	}
	.descripcion .box .btns {
		width: 100%;
		position: absolute;
	}
	.descripcion .box .texto p.esp {
		font-size: 0.93em;
		padding:0;
		opacity: 0.6;
	}
	
	.box .texto {
		padding:24px 0 24px 24px;
	}
	.box .texto h2 {
		font-size: 1.5em;
	}
	.box .texto a.lugar {
		font-size: 1.2em;
	}
	.box .texto p {
		font-size: 0.7em;
		-webkit-line-clamp: 2;
	}

	.subtitulo {
		margin: 99px auto 0;
	}
	.subtitulo h1 {
		font-size: 1.3em;
		padding:27px 15px;
	}

	.subtitulo .back {
		top: -30px;
		left:0;
		transform: translateX(-45%);
	}

	.subtitulo form input {
		font-size: 1em;
	}
	
	footer .inter {
		width: 100%;
	}
	footer .inter a svg {
		height:21px;
	}
	footer .inter a span {
		font-size: 1.5em;
	}
	footer .inter a p {
		font-size: 0.7em;
	}
	
}