@charset "utf-8";

* {
	margin: 0;
	padding:0;
	-webkit-box-sizing:border-box;
    -moz-box-sizing:   border-box;
    box-sizing:        border-box;
}
html {
	scroll-padding: 132px;
	scroll-behavior: smooth;
	--negro: #333333;
	--blanco: #ffffff;
	--naranjaFuerte: #F5821F;
	--naranja: #fa944b;
	--gris: #f8f8f8;
	--gris2: #f4f4f4;
	--grisFuerte: #d3d3d3;
	--amarillo: #e7d42d;
	--azul: #209bfc;
	--width: calc(100% - 36px);
	--maxWidth: 1200px;
}

body {
	font-family: 'Krub Light';
	font-weight: normal;
	color: var(--negro);
	background: var(--gris);
	line-height:1.3;
	overflow-x:hidden !important;
}

h1 {
	font-family: 'Krub Bold';
	font-weight: normal;
	font-size: 1.8em;
}
h1 em {
	font-style: normal;
}
h2 {
	font-family: 'Krub Bold';
	font-weight: normal;
	font-size: 1.5em;
}
h3 {
	font-family: 'Krub Bold';
	font-weight: normal;
	font-size: 1.2em;
}
h4 {
	font-family: 'Krub Bold';
	font-weight: normal;
}
a {
	font-size: 1em;
    text-decoration:none;
	color: var(--negro);
	cursor: pointer;
}
a:active {
	outline: none;
    border: none;
}
button {
	font-family: 'Poppins';
	font-size: 1em;
	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:0.9em;
}
p b {
	font-family: 'Poppins';
	font-weight: normal;
}

::selection {
	color: var(--blanco);
	background: var(--naranja);
}
::-moz-selection {
	color: var(--blanco);
	background: var(--naranja);
}

/* --------------------------- full --------------------------- */

#superContainer {
    height: 100%;
    position: relative;
	-ms-touch-action: none; 
}
.section {
    position: relative;
}
.slide, .slidesContainer {
    height: 100% !important;
    display: block;
}
.section.table, .slide.table {
    display: table;
    width: 100%;
}
.tableCell {
    display: table-cell;
    vertical-align: middle;
    width: 100%;
    height:100%;
}
#fullpage {
	overflow:hidden;
}

.section,
.section .slide,
.section .tableCell{
    height: auto !important;
}
.section.table, .slide.table {
    display: table;
    width: 100%;
}

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

.btn {
	font-family: 'Krub';
	font-size: 1em;
	padding: 12px 36px;
	color: var(--blanco);
	background: var(--naranjaFuerte);
	animation-delay: 0.9s;
}
.btn:hover {
	background: var(--naranja);
}
.btn span {
	margin: 0 0 0 9px;
	vertical-align: middle;
}
.blck {
	background: var(--negro);
}
.blck:hover {
	background: var(--grisFuerte);
}

header {
	width: 100%;
	position: fixed;
	top: 0;
	left:0;
	background: var(--blanco);
	transition: all ease-in-out 0.6s;
	z-index: 99;
}
header .bg-naranja > div {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	padding:12px 0;
	display: flex;
	justify-content: flex-end;
	position: relative;
}
header .bg-naranja > div::after {
	content: '';
	width: 50vw;
	height:calc(100% - 12px);
	background: var(--blanco);
	position: absolute;
	top: 12px;
	left:0;
	transform: translateX(-100%);
	z-index: 1;
}
header .bg-naranja > div figure {
	width: 270px;
	height:calc(100% - 12px);
	background: var(--blanco);
	position: absolute;
	top: 12px;
	left:0;
	-moz-clip-path: polygon(0 0, 84% 0, 100% 100%, 0% 100%);
	clip-path:      polygon(0 0, 84% 0, 100% 100%, 0% 100%);
	z-index: 3;
}
header .bg-naranja > div a {
	font-size: 0.6em;
}
header .bg-naranja > div a:hover {
	color: var(--gris);
}
header .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
}

header .inter div:nth-child(2),
header .inter ul {
	padding: 9px 0;
}
header .inter div img {
	width: 210px;
	margin: 18px 0;
	transition: all 0.6s ease-in-out;
}
header .inter .menu a {
	font-size: 0.8em;
	text-transform: uppercase;
	position: relative;
}
header .inter .menu a::after {
	content: '';
	width: 0;
	height:1px;
	background: var(--naranja);
	position: absolute;
	left: 50%;
	bottom:-3px;
	transform: translateX(-50%);
	transition: all 0.6s ease-in-out;
	z-index: 1;
}
header .inter .menu a:hover::after,
header .inter .menu a.active::after {
	width: 100%;
}

header .inter ul {
	list-style-type: none;
	position: relative;
	display: flex;
	align-items: center;
	gap: 42px;
}
header .inter ul li.dropdown {
	display: inline-block;
	cursor: pointer;
}
header .inter ul li.dropdown span {
	font-size: 1.2em;
	margin: 0 0 0 6px;
}
.dropdown-content {
	display: none;
	position: absolute;
	background: var(--blanco);
	padding:0;
	min-width: 150px;
	box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
	z-index: 99;
}
.dropdown-content a {
	font-size: 0.9em;
	color: var(--negro) !important;
	padding:9px 12px;
	text-decoration: none;
	display: block;
	text-align: left;
	position: relative;
}
.dropdown-content a::after {
	display: none;
}
.dropdown-content a:hover {
	background: var(--gris);
}
.dropdown:hover .dropdown-content {
	display: block;
}
.dropdown a span {
	font-size: 0.7em;
	vertical-align: middle;
}

/* active */
header.active {
	background: var(--naranjaFuerte);
}

#openmenu {
	width: 100vw;
	height:100vh;
	position: fixed;
	display: block;
	top: 0;
	left:100%;
	transition: all 0.6s ease-in-out;
	background: var(--negro);
	padding: 130px 15px 24px;
	text-align: center;
	z-index: 66;
}
#openmenu.active {
	left: 0;
}
#openmenu a {
	font-size: 1.3em;
	display: block;
	margin: 0 0 24px;
	color: var(--blanco);
	position: relative;
}
#openmenu a.active {
	color: var(--naranja);
}
#openmenu div:last-child {
	padding: 42px 0 0;
	display: flex;
	gap: 42px;
	justify-content: center;
}
#openmenu div:last-child a {
	font-size: 0.9em;
	color: var(--gris);
	margin: 0 0 12px;
	display: inline-block !important;
}
#openmenu div:last-child a span {
	margin: 0 3px 0 0;
}

.btn-menu {
	width: 21px;
	height:21px;
	position: relative;
	display: none;
	margin: 0;
	background: none;
}
.btn-menu span {
	width: 21px;
	height:2px;
	background: var(--negro);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all 0.3s ease-in-out;
}
.btn-menu span::before,
.btn-menu span::after {
	content: '';
	width: 100%;
	height:2px;
	background: var(--negro);
	position: absolute;
	left: 0;
	transition: all 0.6s ease-in-out;
}
.btn-menu span::before {
	top: -7px;
}
.btn-menu span::after {
	bottom:-7px;
}
/* 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);
}

#cortina {
	width: 100vw;
	height:100vh;
	position: fixed;
	top: 0;
	left:0;
	background: var(--negro);
	animation: gone 0.9s;
	opacity: 0;
	pointer-events: none !important;
	z-index: 66;
}
@-webkit-keyframes gone {
	0% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@-moz-keyframes gone {
	0% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}
@keyframes gone {
	0% {
		opacity: 1;
	}
	75% {
		opacity: 1;
	}
	100% {
		opacity: 0;
	}
}

main {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	animation-duration: 1.5s !important;
	animation-delay: 0.9s !important;
}
.add {
	margin: 120px auto 0;
}

.bg-naranja {
	color: var(--blanco);
	background: var(--naranjaFuerte);
}
.bg-blanco {
	background: var(--blanco);
}
.bg-negro {
	background: var(--blanco);
}

#portaBtns {
	width: var(--width);
	max-width: var(--maxWidth);
	position: fixed;
	left:  50%;
	bottom:15px;
	transform: translateX(-50%);
	pointer-events: none;
	display: flex;
	justify-content: space-between;
	z-index: 69;
}
#portaBtns button {
	width: 60px;
	height:60px;
	border-radius: 50% !important;
	color: var(--blanco);
	pointer-events: visible;
	position: relative;
	box-shadow:        3px 3px 3px 0px rgba(0,0,0,0.3);
	-webkit-box-shadow:3px 3px 3px 0px rgba(0,0,0,0.3);
	-moz-box-shadow:   3px 3px 3px 0px rgba(0,0,0,0.3);
}
.btn-whats {
	background: var(--verde);
}
.btn-lab {
	background: var(--naranja);
}
#portaBtns a span {
	font-size: 1.3em;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
}
.btn-whats a span {
	transform: translateY(6px);
}

.owl-carousel div {
	float:left;
}
#owl {
	width: 100%;
	position: relative;
	cursor: grab;
	overflow: hidden;
	background: var(--negro);
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
#owl:active {
	cursor: grabbing;
}
#owl .item {
	position: relative;
}
.imagen * {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#owl .imagen {
	width: 100vw;
	height:calc(100vh - 120px);
	position: relative;
	display: block;
	overflow: hidden;
	z-index: 1;
}
#owl .imagen::after {
	content: '';
	width: calc(50% + 30px);
	height:100%;
	background: linear-gradient(90deg, rgba(51,51,51,1) 0%, rgba(51,51,51,0) 100%);
	position: absolute;
	top: 0;
	left:0;
	z-index: 3;
}
#owl .imagen img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	animation-duration: 1.3s;
	animation-delay: 0.9s;
	z-index: 1;
}
.info {
	animation-duration: 1.3s;
	animation-delay: 1.2s;
}
#owl .info {
	width: var(--width);
	max-width: var(--maxWidth);
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 3;
}
#owl .info * {
	max-width: 50%;
	color: var(--blanco);
}
#owl .info h1,
#owl .info p {
	margin: 0 0 30px;
}
/* */
.owl-dots {
	width: var(--width);
	max-width: var(--maxWidth);
	position: relative;
	left: 50%;
	bottom:42px;
	transform: translateX(-50%);
	z-index: 9;
	display: none;
}
.owl-dots .owl-dot {
	width: 24px;
	height:24px;
	background: var(--blanco);
	position: relative;
	margin: 0 15px 0 0;
}
.owl-dots .owl-dot:last-child {
	margin: 0;
}
.owl-dots .owl-dot:last-child {
	margin: 0;
}
.owl-dots .owl-dot.active, 
.owl-dots .owl-dot:hover {
	background: var(--naranja);
}

/* */
.custom-control {
	/*width: calc(100% - 60px);
	max-width: 1200px;
	position:absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	pointer-events: none;
	z-index:9;*/
}
.custom-control button {
	width: 18px !important;
	height:18px !important;
	margin: 15px 0;
	padding:0;
	background: none;
	display: block;
	-webkit-border-radius:50% !important;
	border-radius:        50% !important;
	transition: all ease-in-out 0.3s;
	border: none;
	position: relative;
	pointer-events: all;
}
.custom-control button::before {
	content: '';
	width: 8px;
	height:8px;
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	transition: all ease-in-out 0.3s;
	opacity: 0;
	z-index: 3;
}
.custom-control button::after {
	content: '';
	width: 18px;
	height:18px;
	background: var(--gris2);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	opacity: 0.3;
	z-index: 3;
}
.custom-control button:hover::before,
.custom-control button.active::before {
	opacity: 1;
}
.custom-control button:hover::after,
.custom-control button.active::after {
	width: 22px;
	height:22px;
}

#links {
	display: flex;
	position: relative;
	z-index: 6;
}
#links a {
	width: 33.3%;
	position: relative;
	align-items: stretch;
}
#links a button {
	width: 100%;
	height:100%;
	position: relative;
	display: flex;
	align-items: center;
	justify-content: center;
	gap: 24px;
	padding:48px 30px;
	background: none;
}
#links a:first-child button::after {
	content: '';
	width: 1px;
	height:calc(100% - 30px);
	background: var(--grisFuerte);
	position: absolute;
	top: 15px;
	right:0;
	z-index: 1;
}
#links a button:hover {
	background: var(--gris);
}
#links a button span {
	font-size: 1.2em;
	color: var(--naranjaFuerte);
}
#links a button.nrnj {
	color: var(--blanco);
	background: var(--naranjaFuerte);
}
#links a button.nrnj span {
	color: var(--blanco);
}
#links a button.nrnj:hover {
	background: var(--naranja);
}
#links button p.bold {
	font-family: 'Krub Bold';
}

#boxes {
	position: relative;
	display: flex;
	gap: 15px;
	margin: 60px auto;
}
.box {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.box:nth-child(2n) {
	animation-delay: 1.2s;
}
#boxes .box {
	width: 33.3%;
	background: var(--blanco);
	padding:24px;
	text-align: center;
	border: solid 1px var(--grisFuerte);
}
#boxes .box span {
	font-size: 3.9em;
	color: var(--naranjaFuerte);
}
#boxes .box h2 {
	margin: 30px auto;
}

#acerca {
	position: relative;
	display: flex;
	align-items: center;
	gap: 15px;
	margin: 0 auto 60px;
}
#acerca > div {
	width: 50%;
}
.texto,
.imagen {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#acerca .texto {
	width: 50%;
	position: relative;
	padding:30px 0 0;
}
#acerca .texto::before {
	content: '';
	width: 50%;
	height:3px;
	background: var(--naranjaFuerte);
	position: absolute;
	top: 0;
	left:0;
	z-index: 1;
}
#acerca .texto h1 {
	margin: 0 0 30px;
}
#acerca .texto p {
	margin: 0 0 30px;
}
#acerca .texto p:last-child {
	margin: 0;
}
#acerca .imagen {
	width: 50%;
	position: relative;
	display: flex;
	gap: 15px;
}
#acerca .imagen > div {
	width: 50%;
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#acerca .imagen > div:first-child {
	padding:0 0 60px;
}
#acerca .imagen > div:last-child {
	padding:60px 0 0;
}
#acerca .imagen > div img {
	width: 100%;
}

.tit {
	padding:60px 0;
	text-align: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

.servicios {
	position: relative;
	display: flex;
	gap: 60px;
	padding:0 0 60px;
}
.servicios .box {
	width: 33.3%;
	display: flex;
	flex-direction: column;
}
.servicios .box .top {
	width: 100%;
	text-align: center;
	margin: 0 0 24px;
}
.servicios .box .top span {
	font-size: 3.9em;
}
.servicios .box > p {
	margin: 30px 0;
}
.servicios .box a {
	font-family: 'Krub';
	margin-top: auto;
	color: var(--blanco);
}
.servicios .box a span {
	margin: 0 0 0 6px;
	vertical-align: middle;
	transition: all 0.6s ease-in-out;
}
.servicios .box a:hover span {
	margin: 0 0 0 30px;
}

#portaTestimonios {
	margin: 60px auto;
	position: relative;
}

#portaTestimonios .top {
	width: 100%;
	max-width: 750px;
	margin: 0 auto;
	padding:0 0 24px;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#portaTestimonios .top nav {
	position: relative;
	display: flex;
	gap: 6px;
}
#portaTestimonios .top nav button {
	width: 24px;
	height:24px;
	border-radius: 50% !important;
	color: var(--negro);
	background: var(--blanco);
}
#portaTestimonios .top nav button:hover {
	color: var(--blanco);
	background: var(--naranjaFuerte);
}

#owl2 {
	width: var(--width);
	max-width: 750px;
	margin: 0 auto;
	position: relative;
	cursor: grab;
	overflow: hidden;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#owl2:active {
	cursor: grabbing;
}
#owl2 .item {
	width: 100%;
	position: relative;
	padding:30px;
	background: var(--gris2);
}
#owl2 .item.nrnj {
	color: var(--blanco);
	background: var(--naranjaFuerte);
}
#owl2 .item .nombre {
	width: 100%;
	position: relative;
	display: flex;
	gap: 15px;
}
#owl2 .item .nombre .foto {
	width: 48px;
	height:48px;
	position: relative;
	overflow: hidden;
	border-radius: 50%;
	margin: 0 0 24px;
}
#owl2 .item .nombre .foto img {
	width: 102%;
	height:102%;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
#owl2 .item > p {
	margin: 24px 0;
}
#owl2 .item .estrellas {
	width: 100%;
	position: relative;
	display: flex;
	gap: 9px;
	margin-top: auto;
}
#owl2 .item .estrellas span {
	color: var(--amarillo);
}

#portalogos {
	max-width: 750px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 15px;
	margin: 0 auto 60px;
}
#portalogos img {
	width: calc(20% - 15px);
	padding:0 18px;
	align-self: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#portalogos img:nth-child(2n) {
	animation-delay: 1.2s;
}

.portaBtn {
	margin: 0 auto 60px;
	text-align: center;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

.portaMapa {
	position: relative;
}
.portaMapa::after,
.portaMapa::before {
	content: '';
	width: 50vw;
	height:90px;
	background: var(--negro);
	position: absolute;
	bottom:0;
	z-index: 1;
}
.portaMapa::after {
	left: 0;
	transform: translateX(-100%);
}
.portaMapa::before {
	right:0;
	transform: translateX(100%);
}
.portaMapa iframe {
	width: 100%;
	height:60vh;
	margin: 0 0 -6px;
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
	z-index: 3;
}

#portada {
	width: 100%;
	overflow: hidden;
	position: relative;
}
#portada .fondo {
	width: 100%;
	height:0;
	padding:0 0 25%;
	position: relative;
	display: block;
	z-index: 1;
}
#portada .fondo::after {
	content: '';
	width: calc(50% + 30px);
	height:100%;
	background: linear-gradient(90deg, rgba(51,51,51,1) 0%, rgba(51,51,51,0) 100%);
	position: absolute;
	top: 0;
	left:0;
	z-index: 3;
}
.articulo #portada .fondo::before {
	content: '';
	width: 100%;
	height:100%;
	background: var(--azul);
	position: absolute;
	top: 0;
	left:0;
	opacity: 0.3;
	z-index: 4;
}
#portada .fondo img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
#portada main {
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 6;
}
#portada main h1 {
	color: var(--blanco);
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

#portaServicios {
	padding:60px 0;
	position: relative;
}
.barra {
	width: 100%;
	position: relative;
	display: flex;
	gap: 30px;
	align-items: center;
	margin: 0 auto 60px;
}
.barra:last-child {
	margin: 0 auto;
}
.barra > div {
	width: 50%;
	position: relative;
}
.barra .texto h1 {
	margin: 0 0 48px;
}
.barra .texto p {
	margin: 0 0 15px;
}
.barra .texto p:last-child {
	margin: 0;
}
.barra .texto .btn {
	margin: 15px 0 0;
}
.barra .imagen {
	position: relative;
}
.barra .imagen img {
	width: calc(100% - 60px);
	margin: 0 0 60px 60px;
	position: relative;
	z-index: 3;
}
.barra .imagen figure {
	width: 50%;
	height:0;
	padding:0 0 50%;
	background: var(--naranjaFuerte);
	position: absolute;
	bottom:0;
	z-index: 1;
}
/* doble */
.barra:nth-child(2n) .imagen {
	order: 1;
}
.barra:nth-child(2n) .texto {
	order: 2;
}
.barra:nth-child(2n) .imagen img {
	margin: 0 0 60px;
}
.barra:nth-child(2n) .imagen figure {
	left: 50%;
}

.articulo .barra {
	align-items: flex-start;
	margin: 60px auto;
}
.articulo .barra .texto > p {
	padding:0 60px 15px 0;
}
.articulo .barra .texto .caja {
	margin: 0 0 30px;
}
.articulo .barra .texto .caja p {
	margin: 0 0 6px;
}
form {
	width: 100%;
	position: relative;
	margin: 18px 0 0;
	padding:30px 0 0;
	border-top: solid 1px var(--grisFuerte);
	animation-duration: 1.3s !important;
	animation-delay: 0.9s !important;
}
form div {
	width: 100%;
	position: relative;
	display: flex;
	gap: 24px;
	margin: 0 0 24px;
}
form div p.alerta {
	font-weight: bold;
	color: var(--negro);
	animation-duration: 1.3s;
	animation-delay: 1.5s;
}
form div:last-child {
	margin: 0;
}
form input,
form select,
form textarea {
	width: 100%;
	font-family: 'Krub';
	font-size: 0.9em;
	padding:6px 12px;
	border: solid 1px var(--grisFuerte);
	background: none;
	transition: all 0.3s ease-in-out;
}
form input:focus,
form select:focus,
form textarea:focus {
	background: var(--blanco);
	border-color: var(--negro);
}
form textarea {
	resize: none;
	height: 120px;
}

.contenedor {
	position: relative;
	display: flex;
	justify-content: space-between;
	margin: 60px auto;
}
.contenedor .nav {
	width: calc(20% - 15px);
	position: sticky !important;
	top: 0;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.contenedor .nav .top {
	width: 100%;
	height:48px;
	margin: 0 0 15px;
	border-bottom: solid 1px var(--grisFuerte);
}
.contenedor .nav .top h2 {
	position: absolute;
	top: 0;
	left:0;
	z-index: 1;
}
.contenedor .nav .btn {
	text-align: left;
	color: var(--negro);
	background: none;
}
.contenedor .nav .btn.active,
.contenedor .nav .btn:hover {
	color: var(--blanco);
	background: var(--naranjaFuerte);
}
.contenedor #portaBoxes {
	width: calc(80% - 15px);
	display: inline-block;
	margin: 48px 0 0;
}
.contenedor #portaBoxes .box {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: space-between;
	align-items: center;
	background: var(--blanco);
	border: solid 1px var(--grisFuerte);
	margin: 0 0 30px;
}
.contenedor #portaBoxes .box:last-child {
	margin: 0;
}
.contenedor #portaBoxes .box > div {
	width: 25%;
	position: relative;
}
.contenedor #portaBoxes .box .imagen {
	border-right: solid 1px var(--grisFuerte);
}
.contenedor #portaBoxes .box .imagen img {
	width: 100%;
}
.contenedor #portaBoxes .box .texto {
	width: 50%;
	padding:48px 30px;
}
.contenedor #portaBoxes .box .texto h2 {
	margin: 0 0 15px;
}
.contenedor #portaBoxes .box .botones .btn {
	width: calc(100% - 30px);
	margin: 0 0 15px;
}
#portaBoxes nav {
	width: 100%;
	position: relative;
	display: flex;
	gap: 24px;
	justify-content: flex-end;
}
#portaBoxes nav a.active,
#portaBoxes nav a:hover {
	color: var(--naranjaFuerte);
}
#portaBoxes nav button {
	color: var(--negro);
	background: var(--blanco);
	padding:0 6px;
}

#portaContacto {
	position: relative;
	display: flex;
}
#portaContacto > div,
#portaContacto > iframe {
	width: 50%;
}
#portaContacto > div {
	display: flex;
	justify-content: flex-end;
	flex-wrap: wrap;
}
#portaContacto > div > div,
#portaContacto form {
	max-width: 570px;
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#portaContacto > div {
	padding:60px 30px 60px 0;
}
#portaContacto .doble {
	widows: 100%;
	position: relative;
	display: flex;
	gap: 24px;
	flex-wrap: wrap;
	justify-content: space-between;
}
#portaContacto .doble a {
	width: calc(50% - 12px);
	position: relative;
}
#portaContacto .doble a button {
	width: 100%;
	height:100%;
	position: relative;
	display: flex;
	align-items: center;
	gap: 24px;
	padding:24px 0;
	color: var(--blanco);
	background: var(--naranjaFuerte);
}
#portaContacto .doble a button:hover {
	padding:24px 12px;
	background: var(--naranja);
}
#portaContacto .doble a button span {
	color: var(--naranja) !important;
	background: var(--blanco) !important;
}
#portaContacto .doble a button p b {
	display: block;
}
#portaContacto .inter {
	width: 100%;
	padding:0 0 24px;
}
#portaContacto .inter h1 small {
	display: block;
	color: var(--negro);
}
#portaContacto form {
	margin: 0;
	border-top: none;;
}
#portaContacto form input,
#portaContacto form select,
#portaContacto form textarea {
	color: var(--blanco);
	border: solid 1px var(--gris);
}
#portaContacto form input::-webkit-input-placeholder,
#portaContacto form select::-webkit-input-placeholder,
#portaContacto form textarea::-webkit-input-placeholder {
	color: var(--blanco);
}
#portaContacto form input::-moz-placeholder,
#portaContacto form select::-moz-placeholder,
#portaContacto form textarea::-moz-placeholder {
	color: var(--blanco);
}
#portaContacto form input:-ms-input-placeholder,
#portaContacto form select:-ms-input-placeholder,
#portaContacto form textarea:-ms-input-placeholder {
	color: var(--blanco);
}
#portaContacto form input:-moz-placeholder,
#portaContacto form select:-moz-placeholder,
#portaContacto form textarea:-moz-placeholder {
	color: var(--blanco);
}
#portaContacto form input:focus,
#portaContacto form select:focus,
#portaContacto form textarea:focus {
	background: var(--naranja);
	border: solid 1px var(--blanco);
}
#portaContacto form .btn {
	color: var(--negro);
	background: var(--blanco);
}
#portaContacto form .btn:hover {
	background: var(--grisFuerte);
}

#portaContacto h1 {
	width: 100%;
}

#proyectos {
	max-width: 750px;
	position: relative;
	display: flex;
	flex-wrap: wrap;
	gap: 30px 15px;
	margin: 60px auto;
}
#proyectos .box {
	width: calc(33.3% - 15px);
	height:0;
	padding:0 0 calc(33.3% - 15px);
	position: relative;
	overflow: hidden;
	cursor: pointer;
}
#proyectos .box button {
	width: 0;
	height:0;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	color: var(--blanco);
	background: rgba(245,130,31,0.9);
	overflow: hidden;
	z-index: 3;
}
#proyectos .box:hover button {
	width: calc(100% - 60px);
	height:calc(100% - 60px);
}
#proyectos .box button span {
	font-size: 1.5em;
}
#proyectos .box img {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}

/* modal */
.modal {
	width: 100vw;
	height:100vh;
	display: none;
	position: fixed;
    top: 0;
	left:0;
	overflow: auto;
	background-color: var(--blanco);
	z-index: 69;
}
.modal-content {
	position: relative;
	margin: auto;
	width: calc(100% - 288px);
	max-width: 900px;
}
.close {
	color: var(--grisFuerte);
    position: absolute;
    top:  180px;
    right:60px;
    font-size: 72px;
    font-weight: bold;
	z-index: 3;
}
.close:hover,
.close:focus {
    color: var(--naranja);
    text-decoration: none;
    cursor: pointer;
}

.mySlides {
	display: none;
}
.cursor {
	cursor: pointer;
}
#myModal .prev,
#myModal .next {
	cursor: pointer;
	position: absolute;
	top: 50vh;
	width: auto;
	padding: 12px;
	transform: translateY(50%);
	color: var(--marino);
	font-size: 21px;
	transition: 0.6s ease;
	user-select: none;
	-webkit-user-select: none;
}
#myModal .prev {
	left: 0;
}
#myModal .next {
    right: 0;
}
#myModal .prev:hover,
#myModal .next:hover {
	color: var(--blanco);
    background-color: var(--naranjaFuerte);
}
#myModal img {
	width: 600px !important;
	margin: 0 auto -6px;
	transition: all 0.6s ease-in-out;
	position: absolute;
	top: calc(50vh + 69px);
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}

footer {
	color: var(--blanco);
	background: var(--negro);
	position: relative;
	padding:60px;
}
footer .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	display: flex;
	gap: 30px;
}
footer .inter > div {
	width: 25%;
	position: relative;
}
footer .inter > div * {
	color: var(--gris);
}
footer .inter div img {
	width: 150px;
	margin: 0 0 30px;
}
footer .inter > div h3 {
	margin: 0 0 42px;
}
footer .inter > div p,
footer .inter > div a {
	font-size: 0.7em;
	margin: 0 0 30px;
}
footer .inter > div > a {
	display: block;
	margin: 0 0 9px;
}
footer .inter > div > a:hover {
	color: var(--naranja);
}
footer .inter a.link {
	font-size: 0.9em;
	margin: 0 0 15px;
	position: relative;
	display: flex;
	gap: 12px;
	align-items: flex-start;
}
footer .inter a.link:last-child {
	margin: 0;
}
footer .inter a.link p b {
	display: block;
}
footer .inter a.link:hover p {
	color: var(--naranja);
}
footer .inter a.link span {
	font-size: 1.5em;
	color: var(--naranjaFuerte);
}
footer .inter a.link:hover span {
	color: var(--blanco);
}
footer .redes {
	width: 100%;
	position: relative;
	display: flex;
	gap: 30px;
}
footer .redes span {
	font-size: 1.3em;
	color: var(--naranja);
}
footer .redes span:hover {
	color: var(--blanco);
}

@media screen and (max-width:666px) {
	
	html {
		--width: calc(100% - 30px);
	}
	
	h1 {
		font-size: 1.7em;
	}
	h2 {
		font-size: 1.5em;
	}
	p {
		font-size: 0.9em;
	}
	
	.btn {
		font-size: 0.9em;
		padding: 6px 21px;
	}

	header .bg-naranja > div figure {
		width: 150px;
	}
	header .inter div img {
		width: 120px;
		margin: 15px 0;
	}

	header .inter ul.menu {
		display: flex;
	}
	header .inter ul.menu a {
		display: none;
	}
	header .inter ul * {
		vertical-align: middle;
	}

	.btn-menu {
		display: block;
		order: 2;
	}
	
	.add {
		margin: 99px auto 0;
	}
	
	#owl .imagen {
		height: auto;
		min-height:calc(100vh - 99px);
	}
	#owl .info * {
		max-width: 100%;
	}
	
	#links {
		flex-wrap: wrap;
	}
	#links a {
		width: 100%;
	}
	#links a button {
		gap: 18px;
		padding:42px 24px;
	}
	#links a:first-child button::after {
		width: calc(100% - 30px);
		height:1px;
		top: 100%;
		right:15px;
	}

	#boxes {
		flex-wrap: wrap;
		margin: 48px auto;
	}
	#boxes .box {
		width: 100%;
	}
	#boxes .box span {
		font-size: 3em;
	}
	#boxes .box h2 {
		margin: 24px auto;
	}

	#acerca {
		margin: 0 auto 48px;
		flex-wrap: wrap;
	}
	#acerca > div {
		width: 100%;
	}
	#acerca .texto {
		width: 100%;
	}
	#acerca .imagen {
		width: 100%;
	}

	.tit {
		padding:48px 0;
	}

	.servicios {
		gap: 48px 0;
		padding:0 0 48px;
		flex-wrap: wrap;
	}
	.servicios .box {
		width: 100%;
	}
	.servicios .box .top span {
		font-size: 3em;
	}

	#portaTestimonios {
		margin: 48px auto;
	}

	#portaTestimonios .top {
		flex-wrap: wrap;
		gap: 24px;
	}
	#portaTestimonios .top nav {
		width: 100%;
		justify-content: flex-end;
	}

	#owl2 {
		max-width: calc(100vw - 15px);
	}
	#owl2 .item {
		padding:24px;
	}

	#portalogos {
		justify-content: center;
	}
	#portalogos img {
		width: calc(33.3% - 15px);
		padding:0 12px;
	}
	
	.portaMapa iframe {
		height:72vh;
	}
	
	#portada .fondo {
		padding:0 0 50%;
	}

	#portaServicios {
		padding:48px 0;
	}
	.barra {
		width: var(--width);
		flex-wrap: wrap;
		gap: 24px;
		margin: 0 auto 48px;
	}
	.barra > div {
		width: 100%;
	}
	.barra .texto h1 {
		margin: 0 0 24px;
	}
	.barra .imagen,
	.barra:nth-child(2n) .imagen {
		order: 1;
	}
	.barra .texto,
	.barra:nth-child(2n) .texto {
		order: 2;
	}

	.articulo .barra {
		margin: 48px auto;
	}
	.articulo .barra .texto > p {
		padding:0 48px 15px 0;
	}
	form div {
		gap: 18px;
		margin: 0 0 18px;
		flex-wrap: wrap;
	}

	.contenedor {
		margin: 48px auto;
		flex-wrap: wrap;
	}
	.contenedor .nav {
		width: 100%;
	}
	.contenedor .nav .top {
		height:42px;
	}
	.contenedor .nav .btn {
		width: 100%;
	}
	.contenedor #portaBoxes {
		width: 100%;
		margin: 30px 0 48px;
	}
	.contenedor #portaBoxes .box {
		flex-wrap: wrap;
	}
	.contenedor #portaBoxes .box > div {
		width: 100%;
	}
	.contenedor #portaBoxes .box .imagen {
		width: 100%;
		border: none;
		border-bottom: solid 1px var(--grisFuerte);
	}
	.contenedor #portaBoxes .box .texto {
		width: 100%;
		padding:30px 24px;
	}
	.contenedor #portaBoxes .box .botones {
		width: 100%;
		padding:0 24px 15px;
	}
	.contenedor #portaBoxes .box .botones .btn {
		width: 100%;
	}
	
	#portaContacto {
		flex-wrap: wrap;
	}
	#portaContacto > div,
	#portaContacto > iframe {
		width: 100%;
	}
	#portaContacto > iframe {
		height: 69vh;
	}
	#portaContacto > div {
		justify-content: center;
	}
	#portaContacto > div {
		padding:48px 15px;
	}
	#portaContacto .doble {
		gap: 0;
		flex-wrap: wrap;
	}
	#portaContacto .doble a {
		width: 100%;
	}

	#proyectos {
		gap: 18px 15px;
		margin: 48px auto;
		justify-content: space-between;
	}
	#proyectos .box {
		width: calc(33.3% - 12px);
		padding:0 0 calc(33.3% - 12px);
	}
	#proyectos .box:hover button {
		width: calc(100% - 15px);
		height:calc(100% - 15px);
	}
	
	.close {
		top:  150px;
		right:12px;
		font-size: 48px;
	}
	#myModal .prev,
	#myModal .next {
		top: calc(100vh - 69px);
	}
	#myModal img {
		width: calc(100vw - 12px) !important;
		top: calc(50vh + 30px);
	}

	footer {
		padding:48px 0;
	}
	footer .inter {
		gap: 24px 0;
		flex-wrap: wrap;
		justify-content: space-between;
	}
	footer .inter > div {
		width: calc(50% - 15px);
	}
	footer .inter > div:first-child {
		width: 100%;
		text-align: center;
	}
	footer .inter a.link {
		justify-content: center;
	}
	
}