@charset "utf-8";

* {
	margin: 0;
	padding:0;
	-webkit-box-sizing:border-box;
    -moz-box-sizing:   border-box;
    box-sizing:        border-box;
}
html {
	scroll-padding: 96px;
	scroll-behavior: smooth;
	--negro: #000000;
	--marino: #203464;
	--blanco: #ffffff;
	--dorado: #bc9338;
	
	--doradoOscuro: #936426;
	--doradoClaro: #d8a340;
	--doradoBlanco: #fdcf84;
	--gris: #c0c0c0;
	--grisClaro: #f5f5f5;
	
	--width: calc(100% - 42px);
	--maxWidth: 1200px;
}

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

h1 {
	line-height:1;
	font-family: 'Nicholas';
	font-weight: normal;
	font-size: 4.2em;
}
h2 {
	line-height:1;
	font-family: 'Nicholas';
	font-weight: normal;
	font-size: 3.3em;
}
h3 {
	line-height:1.2;
	font-family: 'Nicholas';
	font-weight: normal;
	font-size: 1.8em;
}
a {
	font-size: 1em;
    text-decoration:none;
	color: var(--marino);
	cursor: pointer;
}
a:active {
	outline: none;
    border: none;
}
button {
	font-family: 'Poppins';
	font-size: 1.2em;
	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 Bold';
	font-weight: normal;
}

::selection {
	color: var(--doradoBlanco);
	background: var(--doradoOscuro);
}
::-moz-selection {
	color: var(--doradoBlanco);
	background: var(--doradoOscuro);
}

/* --------------------------- 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-size: 0.9em;
	padding: 15px 48px;
	color: var(--blanco);
	background: var(--marino);
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.btn:hover {
	background: var(--doradoClaro);
}
.btn.btnDorado {
	color: var(--marino);
	background: var(--doradoBlanco);
}
.btn.btnDorado:hover {
	color: var(--blanco);
	background: var(--doradoClaro);
}
.link {
	font-size: 1em;
	color: var(--doradoClaro);
	padding:0 0 3px;
	position: relative;
	background: none;
}
.link:hover {
	color: var(--dorado);
}
.link::after {
	content: '';
	width: 0;
	height:2px;
	background: var(--dorado);
	position: absolute;
	left: 0;
	bottom:0;
	transition: all ease-in-out 0.6s;
	z-index: 1;
}
.link:hover::after {
	width: 100%;
}

header {
	width: 100%;
	position: fixed;
	top: 0;
	left:0;
	background: var(--blanco);
	transition: all ease-in-out 0.6s;
	z-index: 99;
}
header .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding:21px 0;
	transition: all 0.6s ease-in-out;
}
header .inter:nth-child(1) {
	justify-content: flex-end;
	align-items: center;
	gap: 30px;
	padding:15px 0;
	border-bottom: solid 1px var(--gris);
}
header .inter:nth-child(1) a {
	font-size: 0.7em;
}
header .inter:nth-child(1) a:hover {
	color: var(--dorado);
}

header .inter ul {
	list-style-type: none;
	padding:12px 0;
}
header .inter ul li {
	float: left;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	margin: 0 0 0 18px;
	white-space: nowrap;
}
header .inter ul li > a {
	font-size: 0.9em;
	position: relative;
}
header .inter ul li > a::after {
	content: '';
	width: 0;
	height:3px;
	position: absolute;
	left: 0;
	bottom:-6px;
	background: var(--doradoClaro);
	transform: translate(0,0);
	transition: all 0.6s ease-in-out;
	z-index: 1;
}
header .inter ul li:hover > a::after,
header .inter ul li > a.active:after {
	width: calc(100% - 18px);
}
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;
}
header .inter ul li > a button {
	transform: translateY(-6px);
}
	
.dropdown > a {
	font-size: 1.1em;
}
.dropdown-content {
	display: none;
	position: absolute;
	background: var(--blanco);
	padding:0;
	min-width: 150px;
	box-shadow: 0px 6px 15px 0px rgba(97,97,96,0.2);
	z-index: 99;
}
.dropdown-content a {
	font-size: 0.9em;
	padding:9px 12px;
	text-decoration: none;
	display: block;
	text-align: left;
	position: relative;
}
.dropdown-content a:hover,
.dropdown-content a.active {
	background: var(--doradoBlanco);
}
.dropdown-content a.active {
	color: var(--blanco);
	background: var(--doradoBlanco);
}
.dropdown:hover .dropdown-content {
	display: block;
}
.dropdown a span {
	font-size: 0.7em;
	vertical-align: middle;
}

header .inter div img {
	height: 60px;
	transition: all 0.6s ease-in-out;
}

header .menu {
	margin: 0 auto;
	display: flex;
	gap: 24px;
	justify-content: center;
	padding:0 0 24px;
}
/* active */
header.active {
	box-shadow: 0px 6px 15px 0px rgba(97,97,96,0.2);
}
header.active .inter {
	padding:18px 0;
}
header.active .inter div img {
	height: 54px;
}

#openmenu {
	width: 100vw;
	height:100vh;
	position: fixed;
	display: block;
	top: 0;
	left:100%;
	transition: all 0.6s ease-in-out;
	background: var(--marino);
	padding: 170px 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(--doradoClaro);
}
#openmenu div:last-child {
	direction: flex;
	padding: 24px 0 0;
}
#openmenu div:last-child a {
	margin: 0 9px;
	display: inline-block !important;
}

.btn-menu {
	width: 21px;
	height:21px;
	position: relative;
	display: none;
	margin: 0 0 0 12px;
	background: none;
}
.btn-menu span {
	width: 21px;
	height:2px;
	background: var(--marino);
	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(--marino);
	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(--blanco);
	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;
	position: relative;
	animation-duration: 1.5s !important;
	animation-delay: 0.9s !important;
}
.add {
	padding: 210px 0 0;
}
.reduc {
	max-width: 900px;
}
.bg-marino {
	color: var(--blanco);
	background: var(--marino) !important;
	position: relative;
}
.bg-grisClaro {
	background: var(--grisClaro) !important;
	position: relative;
}

.portaOwl {
	width:    100vw;
	max-width:100vw;
	overflow: hidden;
	position: relative;
	background: var(--marino);
	z-index: 6;
}
#owl {
	animation-duration: 1.5s;
	animation-delay: 0.6s;
}
.owl-carousel {
	width: 100%;
	margin: 0 auto;
	position:relative;
	display:block;
	z-index: 3;
	cursor: grab;
}
.owl-carousel:active {
	cursor: grabbing;
}
.owl-carousel div {
	float:left;
}
.owl-carousel .item {
	width: 100vw;
	height:calc(100vh - 150px);
	position: relative;
	background: none;
	margin: 150px 0 0;
	z-index: 1;
}
.imagen {
	overflow: hidden;
}
.imagen,
.texto {
	animation-duration: 1.5s;
	animation-delay: 0.9s;
	z-index: 1;
}
.owl-carousel .item .imagen {
	width: 100%;
	height:calc(100% + 42px);
	position: relative;
	overflow: hidden;
	background: var(--marino);
	order: 1;
}
.imagen img {
	animation-duration: 1.5s;
	animation-delay: 0.6s;
}
.owl-carousel .owl-item.active .imagen  {
	animation: show ease-in-out 1.5s 0.3s both;
}
.owl-carousel .item .imagen img,
.owl-carousel .item .imagen video {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	opacity: 0.9;
	z-index: 1;
}
.owl-carousel .item main {
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	animation-duration: 1.5s;
	animation-delay: 0.9s;
	z-index: 3;
}
.owl-carousel .item main > div {
	padding:0 calc(50% + 30px) 0 0;
	overflow: hidden;
	color: var(--blanco);
}
.owl-carousel .owl-item.active main > div h1 {
	animation: fadeInUp ease 1.3s 0.9s both;
}
.owl-carousel .item main > div p {
	margin: 42px 0 0;
}
.owl-carousel .owl-item.active main > div p {
	animation: fadeIn ease 1.3s 1.5s both;
}
.owl-carousel .item main button {
	margin: 48px 0 0;
	animation-duration: 1.5s;
	animation-delay: 1.5s;
}
.owl-carousel .owl-item.active main > div button {
	animation: zoomIn ease 1.3s 1.2s both;
}

.owl-dots {
	width: var(--width);
	max-width: var(--maxWidth);
	position: relative;
	left: 50%;
	bottom:42px;
	transform: translateX(-50%);
	text-align: center;
	z-index: 999;
}
.owl-dots .owl-dot {
	width: 39px;
	height:6px;
	position: relative;
	margin: 0 15px;
	background: rgba(255,255,255,0.6);
}
.owl-dots .owl-dot::before {
	content: '';
	width: 0;
	height:100%;
	background: var(--doradoClaro);
	position: absolute;
	top: 0;
	left:0;
	animation: load 5s linear infinite;
	opacity: 0;
}
.owl-dots .owl-dot.active::before {
	opacity: 1;
}
@keyframes load {
  0% {
	  width: 0;
  }
  100% {
	  width: 100%;
  }
}
.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: rgba(255,255,255,1);
}

.doble {
	display: flex;
	padding:60px 0;
	justify-content: space-between;
}
.doble > div {
	width: calc(50% - 18px);
	position: relative;
}
img.fondo {
	width: 102%;
	height:102%;
	object-fit: cover;
	position: absolute;
	top: 50%;
	left:50%;
	transform: translate(-50%,-50%);
	z-index: 1;
}
.doble .texto {
	padding:42px 0;
}
.doble .texto h2 {
	margin: 0 0 15px;
}
h2.line {
	padding:30px 0;
	position: relative;
}
h2.line::after {
	content: '';
	width: 99px;
	height:6px;
	background: var(--doradoBlanco);
	position: absolute;
	top: 0;
	left:0;
	z-index: 1;
}
.doble .texto p {
	margin: 0 0 15px;
}
.doble .texto .btn {
	margin: 30px 0 0;
}

.titulo {
	padding:60px 0 30px;
}
.titulo > * {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}

#cuadros {
	position: relative;
	display: flex;
	gap: 18px;
	flex-wrap: wrap;
	margin: 0 auto 60px;
}
.box {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.box:nth-child(2n) {
	animation-delay: 1.2s;
}
#cuadros .box {
	width: calc(25% - 15px);
	height:0;
	padding:0 0 calc(25% - 15px);
	background: var(--negro);
	position: relative;
	overflow: hidden;
}
#cuadros .box span {
	color: var(--blanco);
	position: absolute;
	top:  30px;
	right:30px;
	pointer-events: none;
	z-index: 3;
}
#cuadros .box:hover span {
	color: var(--doradoBlanco);
}
#cuadros .box h3 {
	width: calc(100% - 60px);
	color: var(--blanco);
	position: absolute;
	left:  30px;
	bottom:30px;
	pointer-events: none;
	z-index: 3;
}
#cuadros .box .fondo {
	opacity: 0.6;
	transition: all 0.6s ease-in-out;
	z-index: 1;
}
#cuadros .box:hover .fondo {
	opacity: 0.9;
	transform: translate(-50%,-50%) scale(1.2);
}

#barra {
	position: relative;
	overflow: hidden;
	background: var(--marino);
}
#barra::after,
#barra::before {
	content: '';
	width: 12vw;
	height:0;
	padding:0 0 calc(12vw - 30px);
	position: absolute;
	border: solid var(--doradoClaro);
	z-index: 3;
}
#barra::after {
	top: 0;
	left:0;
	border-width: 24px 0 0 24px;
}
#barra::before {
	right: 0;
	bottom:0;
	border-width: 0 24px 24px 0;
}
#barra main {
	max-width: 600px;
	padding:120px 0;
	text-align: center;
	z-index: 3;
}
#barra main h2 {
	color: var(--blanco);
	margin: 0 auto 30px;
	animation-duration: 1.3s;
	animation-delay: 0.6s;
}
#barra main button {
	animation-delay: 1.5s;
}
#barra .fondo {
	opacity: 0.45;
}

.barra {
	display: flex;
	justify-content: center;
	background: var(--marino);
}
.barra::after {
	content: '';
	width: 9vw;
	height:0;
	padding:0 0 9vw;
	position: absolute;
	top: 0;
	left:0;
	border: solid var(--doradoClaro);
	border-width: 24px 0 0 24px;
	z-index: 9;
}
.barra::before {
	content: '';
	width: 100vw;
	height:90px;
	background: var(--marino);
	position: absolute;
	left: 50%;
	bottom:-3px;
	transform: translateX(-50%);
	z-index: -1;
}
.barra h2 {
	color: var(--blanco);
	padding:120px 0;
	position: relative;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
	z-index: 6;
}
.barra .portaFondo {
	width: 100%;
	height:100%;
	position: absolute;
	overflow: hidden;
	opacity: 0.6;
	z-index: 1;
}

.portaNoticias {
	display: flex;
	gap: 48px 18px;
	flex-wrap: wrap;
}
.noticias2 {
	margin: 0 auto 60px;
}
.portaNoticias .box {
	width: calc(33.3% - 12px);
	position: relative;
}
.portaNoticias .box > div {
	width: 100%;
	position: relative;
}
.portaNoticias .box .imagen {
	height:0;
	padding:0 0 100%;
	overflow: hidden;
	background: var(--marino);
}
.portaNoticias .box .imagen p.fecha {
	position: absolute;
	right: 0;
	bottom:0;
	padding:12px 15px;
	border-top-left-radius: 12px;
	background: var(--doradoBlanco);
	z-index: 3;
}
.portaNoticias .box .imagen .fondo {
	transition: all 0.6s ease-in-out;
	opacity: 0.6;
	z-index: 1;
}
.portaNoticias .box:hover .imagen .fondo {
	opacity: 0.9;
	transform: translate(-50%,-50%) scale(1.2);
}
.portaNoticias .box .texto {
	padding:18px 0 0;
}
.portaNoticias .box .texto span {
	color: var(--gris);
}
.portaNoticias .box .texto h3 {
	font-size: 1.5em;
	margin: 6px 0 0;
}
.portaNoticias .box .texto p {
	font-size: 0.8em;
	margin: 15px 0;
	text-align: justify;
  	text-justify: inter-word;
}

.portaBtn {
	width: 100%;
	position: relative;
	display: flex;
	justify-content: flex-end;
	gap: 30px;
}
.portaBtn a.circle {
	font-family: 'Poppins Bold';
	color: var(--gris);
}
.portaBtn a.circle.active,
.portaBtn a.circle:hover {
	color: var(--doradoClaro);
}

.portaContacto {
	position: relative;
}
.portaContacto main {
	display: flex;
	justify-content: space-between;
}
.portaContacto main h3 {
	font-family: 'Poppins';
	font-size: 1.2em;
	margin: 30px 0 9px;
}
.portaContacto main > div {
	width: calc(50% - 15px);
	color: var(--blanco);
	background: var(--marino);
	position: relative;
	padding:30px 0 60px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.portaContacto main > div::before {
	content: '';
	width: 9vw;
	height:0;
	padding:0 0 9vw;
	position: absolute;
	top: 0;
	right:0;
	border: solid var(--doradoClaro);
	border-width: 24px 24px 0 0;
	z-index: 9;
}
.portaContacto main > div::after {
	content: '';
	width: 50vw;
	height:100%;
	background: var(--marino);
	position: absolute;
	top:  0;
	right:0;
	z-index: -1;
}
.portaContacto main > div a {
	width: 100%;
	max-width: 300px;
	position: relative;
	display: flex;
	gap: 12px;
	align-items: flex-start;
	color: var(--blanco);
}
.portaContacto main > div a span {
	font-size: 1em;
}
.portaContacto main form {
	width: calc(50% - 15px);
	padding:0 0 24px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.portaContacto main form p.alerta {
	font-size: 1.2em;
	color: var(--dorado);
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.portaContacto main form div {
	position: relative;
	display: flex;
	gap: 30px;
	margin: 24px 0;
}
.portaContacto main form div input,
.portaContacto main form div textarea {
	width: 100%;
	font-family: 'Poppins Light';
	font-size: 0.9em;
	padding:0 0 9px;
	border: none;
	border-bottom: solid 1px var(--marino);
	transition: all 0.3s ease-in-out;
}
.portaContacto main form div textarea {
	height: 99px;
	padding:12px 15px;
	border: solid 1px var(--marino);
	resize: none;
}
.portaContacto main form div input:focus,
.portaContacto main form div textarea:focus {
	border-color: var(--doradoClaro);
}

.portaContacto iframe {
	width: 100vw;
	height:60vh;
	margin: 0 0 -6px;
}

#portada {
	width: 100vw;
	position: relative;
	overflow: hidden;
	margin: 150px 0 0;
	background: var(--marino);
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
#portada main {
	margin: 90px auto 150px;
	z-index: 3;
}
#portada main h1 {
	width: 50%;
	color: var(--blanco);
}
#portada main h1 span {
	font-family: 'Poppins';
	font-size: 0.3em;
	display: block;
	color: var(--doradoBlanco);
}
#portada .fondo {
	top: 0;
	left:0;
	transform: translate(0,0);
	opacity: 0.6;
}

.dobleTexto {
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	padding:48px 0 60px;
}
.dobleTexto > div {
	width: calc(50% - 30px);
}
.dobleTexto > div h2 {
	font-size: 2.7em;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.dobleTexto .texto {
	padding:90px 0 0;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.dobleTexto .texto p {
	margin: 0 0 24px;
}
.dobleTexto .texto p:last-child {
	margin: 0;
}

.dobleDescripcion {
	display: flex;
	justify-content: space-between;
}
.dobleDescripcion > div {
	width: calc(50% - 30px);
	margin: 60px auto 90px;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.dobleDescripcion > div h3 {
	font-family: 'Poppins';
	color: var(--dorado);
	margin: 0 0 9px;
}
.dobleDescripcion > div h4 {
	margin: 6px 0 30px;
}
.dobleDescripcion > div p {
	margin: 0 0 15px;
	text-align: justify;
  	text-justify: inter-word;
}
.dobleDescripcion > div p:last-child {
	margin: 0;
}

.objeto {
	position: absolute;
	right: 0;
	bottom:0;
	width: 12vw;
	height:0;
	padding:0 0 calc(12vw - 30px);
	border: solid var(--doradoClaro);
	border-width: 0 24px 24px 0;
	z-index: 1;
}
.objeto2 {
	position: absolute;
	top: 0;
	left:0;
	width: 12vw;
	height:0;
	padding:0 0 calc(12vw - 30px);
	border: solid var(--doradoClaro);
	border-width: 21px 0 0 21px;
	pointer-events: none;
	z-index: 9;
}

.portaValores {
	display: flex;
	justify-content: space-between;
	margin: 90px auto 0;
}
.portaValores > div {
	position: relative;
}
.portaValores .imagen {
	width: calc(66.6% - 30px);
}
.portaValores .texto {
	width: calc(33.3% - 30px);
}
.portaValores .texto h3 {
	font-family: 'Poppins';
	color: var(--doradoClaro);
}
.portaValores .texto div {
	margin: 36px 0 0;
}
.portaValores .texto h4 {
	margin: 0 0 6px;
}
.portaValores .texto p {
	color: var(--doradoClaro);
}

.descripcion {
	display: flex;
	justify-content: space-between;
	padding:60px 0;
	align-items: flex-start;
}
.descripcion > div {
	position: relative;
}
nav {
	width: calc(25% - 30px);
	animation-fill-mode: both;
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
nav h3 {
	margin: 60px 0 30px;
}
nav h3:first-child {
	margin: 0 0 30px;
}
nav button {
	width: 100%;
	font-family: 'Nicholas';
	font-size: 1em;
	color: var(--marino);
	text-align: left;
	margin: 0 0 24px;
	position: relative;
	opacity: 0.6;
	background: none;
}
nav a.active button,
nav button:hover {
	opacity: 1;
}
nav button::after {
	content: '';
	width: 0;
	height:3px;
	background: var(--doradoClaro);
	position: absolute;
	left: 0;
	bottom:-3px;
	transition: all 0.6s ease-in-out;
	z-index: 1;
}
nav a.active button::after,
nav button:hover::after {
	width: 48px;
}
nav a:last-child button {
	margin: 0;
}
.descripcion #content {
	width: calc(75% - 30px);
	padding:0 0 0 30px;
	border-left: solid 1px var(--gris);
}
.descripcion #content > *:first-child {
	margin-top: 0 !important;
}
.descripcion #content > *:last-child {
	margin-bottom: 0 !important;
}
.descripcion #content > * {
	animation-duration: 1.3s;
	animation-delay: 0.9s;
}
.descripcion #content > h2 {
	margin: 45px 0 30px;
}
.descripcion #content img.total {
	width: 100%;
	margin: 15px 0;
}
.descripcion #content > p {
	margin: 15px 0;
}
.descripcion #content > ul {
	padding:15px 0;
	list-style: none;
}
.descripcion #content > ul li {
	margin: 0 0 9px;
	padding:0 0 0 21px;
	position: relative;
}
.descripcion #content > ul li::before {
	content: '';
	width: 6px;
	height:6px;
	background: var(--marino);
	border-radius: 50%;
	position: absolute;
	top: 50%;
	left:0;
	transform: translateY(-50%);
	z-index: 1;
}
.descripcion #content > ul li:last-child {
	margin: 0;
}

footer {
	background: var(--grisClaro);
	padding:60px 0 0;
	position: relative;
}
footer .inter {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	padding:0 0 30px;
	position: relative;
	display: flex;
	gap: 18px;
}
footer .inter .box {
	width: calc(20% - 15px);
	position: relative;
}
footer .inter .box img {
	width: auto;
	height:60px;
}
footer .inter .box .redes {
	position: relative;
	display: flex;
	gap: 18px;
	padding:18px 0 0;
}
footer .inter .box h3 {
	font-family: 'Poppins';
	font-size: 0.9em;
	margin: 0 0 24px;
}
footer .inter .box h4 {
	font-size: 0.8em;
	margin: 30px 0 6px;
}
footer .inter .box h4:first-of-type {
	margin: 0 0 6px;
}
footer .inter .box > a {
	font-size: 0.7em;
	display: block;
	margin: 0 0 9px;
}
footer .inter .box > a:hover {
	text-decoration: underline;
}
footer .inter2 {
	width: var(--width);
	max-width: var(--maxWidth);
	margin: 0 auto;
	padding:12px 0;
	border-top: solid 1px var(--marino);
	display: flex;
	justify-content: space-between;
}
footer .inter2 > div {
	width: calc(50% - 30px);
}
footer .inter2 > div p,
footer .inter2 > div a {
	font-size: 0.7em;
}
footer .inter2 > div p {
	font-family: 'Poppins';
}
footer .inter2 > div p a {
	font-size: 1.5em;
	margin: 0 0 0 6px;
	vertical-align: middle;
}
footer .inter2 > div > a:hover {
	text-decoration: underline;
}
footer .inter2 > div:nth-child(2) {
	position: relative;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 30px;
}

@media screen and (max-width:666px) {
	
	html {
		--width: calc(100% - 24px);
	}
	
	h1 {
		font-size: 2.1em;
	}
	h2 {
		font-size: 1.8em;
	}
	h3 {
		font-size: 1em;
	}
	p, ul {
		font-size:0.8em;
	}
	
	.btn {
		font-size: 0.8em;
		padding: 9px 36px;
	}
	.link {
		font-size: 0.9em;
	}

	header .inter,
	header.active .inter {
		padding:15px 0;
	}
	header .inter:nth-child(1) {
		justify-content: space-between;
		padding:13px 0 12px;
	}
	header .inter div img,
	header.active .inter div img {
		height: 45px;
	}
	header .menu {
		display: none;
	}

	.btn-menu {
		display: inline-block;
	}
	
	.add {
		margin: 123px auto 0;
	}

	.owl-carousel .item {
		height:calc(100vh - 120px);
		margin: 120px 0 0;
	}
	.owl-carousel .item .imagen {
		height:calc(100% + 30px);
	}
	.owl-carousel .item main {
		top: 48%;
	}
	.owl-carousel .item main > div {
		padding:0;
	}
	.owl-carousel .item main > div p {
		margin: 30px 0 0;
	}
	.owl-carousel .item main button {
		margin: 30px 0 0;
	}

	.owl-dots {
		bottom:30px;
		text-align: right;
	}
	.owl-dots .owl-dot {
		height:3px;
	}

	.doble {
		padding:48px 0;
		flex-wrap: wrap;
	}
	.doble > div {
		width: 100%;
	}
	.doble .imagen {
		height:0;
		padding:0 0 calc(100% - 30px);
	}
	.doble .texto {
		padding:30px 0;
	}

	.titulo {
		padding:48px 0 30px;
	}

	#cuadros {
		margin: 0 auto 48px;
		justify-content: space-between;
	}
	#cuadros .box {
		width: calc(50% - 9px);
		padding:0 0 calc(50% - 9px);
	}
	#cuadros .box span {
		font-size: 0.8em;
		top:  12px;
		right:12px;
		color: var(--doradoClaro);
	}
	#cuadros .box h3 {
		width: calc(100% - 36px);
		font-size: 1.2em;
		left:  18px;
		bottom:18px;
	}

	#barra::after,
	#barra::before {
		width: 18vw;
		padding:0 0 calc(18vw - 9px);
	}
	#barra::after {
		border-width: 15px 0 0 15px;
	}
	#barra::before {
		border-width: 0 15px 15px 0;
	}
	#barra main {
		padding:99px 0;
	}

	.barra::after {
		width: 18vw;
		padding:0 0 18vw;
		border-width: 15px 0 0 15px;
	}

	.portaNoticias {
		gap: 30px 18px;
	}
	.noticias2 {
		margin: 0 auto 48px;
	}
	.portaNoticias .box {
		width: calc(50% - 9px);
	}
	.portaNoticias .box .imagen {
		padding:0 0 calc(100% + 39px);
	}
	.portaNoticias .box .imagen p.fecha {
		width: 100%;
		font-size: 0.7em;
		padding:12px;
	}
	.portaNoticias .box .texto {
		padding:15px 0 0;
	}
	.portaNoticias .box .texto span {
		font-size: 0.8em;
	}
	.portaNoticias .box .texto p {
		font-size: 0.7em;
	}

	.portaBtn {
		justify-content: center;
		gap: 24px;
	}

	.portaContacto main {
		flex-wrap: wrap;
		gap: 15px;
	}
	.portaContacto main h3 {
		font-size: 1.1em;
		margin: 24px 0 9px;
	}
	.portaContacto main > div {
		width: 100%;
		padding:30px 0 48px;
		order: 2;
	}
	.portaContacto main > div::before {
		width: 18vw;
		padding:0 0 18vw;
		border-width: 15px 15px 0 0;
	}
	.portaContacto main > div::after {
		width: 100vw;
	}
	.portaContacto main form {
		width: 100%;
		order: 1;
	}
	.portaContacto main form div {
		flex-wrap: wrap;
		gap: 24px;
	}
	.portaContacto main form div input,
	.portaContacto main form div textarea {
		font-size: 0.8em;
		padding:0 0 6px;
	}
	.portaContacto main form div textarea {
		padding:12px 15px;
	}

	.portaContacto iframe {
		height:69vh;
	}

	#portada {
		margin: 120px 0 0;
	}
	#portada main {
		margin: 72px auto;
	}
	#portada main h1 {
		width: calc(50% + 60px);
	}

	.dobleTexto {
		padding:30px 0 48px;
		flex-wrap: wrap;
	}
	.dobleTexto > div {
		width: 100%;
	}
	.dobleTexto > div h2 {
		font-size: 1.8em;
	}
	.dobleTexto .texto {
		padding:24px 0 0;
	}

	.dobleDescripcion {
		flex-wrap: wrap;
	}
	.dobleDescripcion > div {
		width: 100%;
		margin: 48px auto;
	}
	.dobleDescripcion > div:first-child {
		margin: 30px auto 0;
	}

	.objeto {
		width: 18vw;
		padding:0 0 calc(18vw - 9px);
		border-width: 0 15px 15px 0;
	}
	.objeto2 {
		width: 18vw;
		padding:0 0 calc(18vw - 9px);
		border-width: 15px 0 0 15px;
		transform: translateY(-15px);
	}

	.portaValores {
		margin: 60px auto 0;
		flex-wrap: wrap;
		gap: 30px;
	}
	.portaValores .imagen {
		width: 100%;
		height:0;
		padding:0 0 calc(100% - 30px);
	}
	.portaValores .texto {
		width: 100%;
	}
	.portaValores .texto div {
		margin: 24px 0 0;
	}

	.descripcion {
		padding:48px 0;
		flex-wrap: wrap;
		gap: 42px;
	}
	
	nav {
		width: 100%;
		order: 2;
		position: relative;
		display: flex;
		justify-content: center;
		flex-wrap: wrap;
		gap: 9px 24px;
	}
	nav h3 {
		width: 100%;
		font-size: 1.2em;
		margin: 30px 0 12px;
		text-align: center;
	}
	nav h3:first-child {
		margin: 0 0 12px;
	}
	nav button {
		width: 100%;
		font-size: 0.9em;
		margin: 0;
	}
	.descripcion #content {
		width: 100%;
		padding:0;
		border-left: none;
	}
	.descripcion #content > h2 {
		margin: 39px 0 30px;
	}

	footer {
		padding:48px 0 0;
	}
	footer .inter {
		flex-wrap: wrap;
	}
	footer .inter .box {
		width: calc(50% - 9px);
	}
	footer .inter .box:first-child {
		width: 100%;
	}
	footer .inter .box img {
		height:36px;
	}
	footer .inter2 > div {
		width: calc(50% - 9px);
	}
	footer .inter2 > div p,
	footer .inter2 > div a {
		font-size: 0.6em;
	}
	footer .inter2 > div:nth-child(2) {
		gap: 24px;
	}
	
}