/*-- THEME COLORS --*/
:root {
	/* Colors */
	--gris: #e3e3e2;
	--amarillo: #f2c12e;
	--morado: #af099d;
	--azul: #446fb2;
}

@font-face {
	font-family: "Montserrat-Regular";
	src: url("/src/fonts/montserrat/Montserrat-Regular.woff2") format("woff2"),
		url("/src/fonts/montserrat/Montserrat-Regular.woff") format("woff");
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Montserrat-Medium";
	src: url("/src/fonts/montserrat/Montserrat-Medium.woff2") format("woff2"),
		url("/src/fonts/montserrat/Montserrat-Medium.woff") format("woff");
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Montserrat-Bold";
	src: url("/src/fonts/montserrat/Montserrat-Bold.woff2") format("woff2"),
		url("/src/fonts/montserrat/Montserrat-Bold.woff") format("woff");
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

@font-face {
	font-family: "Montserrat-Black";
	src: url("/src/fonts/montserrat/Montserrat-ExtraBold.woff2") format("woff2"),
		url("/src/fonts/montserrat/Montserrat-ExtraBold.woff") format("woff");
	font-weight: bold;
	font-style: italic;
	font-display: swap;
}

/*-- END THEME COLORS --*/

/*-- BASE --*/
* {
	margin: 0px;
	padding: 0px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	font-family: "Montserrat-Regular";
}

body {
	background-color: #ffffff;
	margin: 0px;
}

::-webkit-scrollbar {
	width: 6px;
	height: 5px;
}

::-webkit-scrollbar-thumb {
	background-color: #d3d3d3;
}

a {
	text-decoration: none;
}

button {
	cursor: pointer;
}

input,
textarea,
select {
	outline: none;
}

main {
	margin-top: 90px;
}

/* -------------------------------------- HEADER ------------------------------------------ */
header {
	width: 100%;
	height: 90px;
	display: flex;
	justify-content: space-between;
	align-items: stretch;
	padding-left: 50px;
	position: fixed;
	z-index: 999;
	top: 0px;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	background-color: var(--azul);
	filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#446fb2",endColorstr="#af099d",GradientType=1);
}

header > a {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

header > a img {
	height: 90%;
}

nav {
	width: 75%;
	display: flex;
	justify-content: flex-end;
	align-items: center;
	gap: 0px 30px;
}

nav > ul {
	width: 100%;
	display: flex;
	gap: 0px 20px;
	justify-content: center;
	align-items: stretch;
}

.li-line {
	width: 1px !important;
	background-color: #fff;
}

nav > ul > li {
	display: flex;
	position: relative;
}

nav > ul > li > a {
	display: flex;
	justify-content: center;
	align-items: center;
	color: #fff;
	border-bottom: 4px solid transparent;
	padding: 0px 5px;
	transition: ease all 0.6s;
	cursor: pointer;
	font-size: 16px;
	text-transform: uppercase;
}

nav > ul > li > a:hover {
	color: var(--amarillo);
	border-bottom: 4px solid var(--amarillo);
}

.content-sub-items-header.active ul {
	display: block;
}

.content-sub-items-header > a svg {
	width: 25px;
	fill: #fff;
	transition: ease all 0.6s;
}

.content-sub-items-header > a:hover svg {
	fill: var(--amarillo);
}

.sub-items-header {
	display: none;
	width: 250px;
	position: absolute;
	background-color: #fff;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
	border-radius: 3px;
	top: 100%;
	z-index: 3;
}

.sub-items-header > li {
	display: flex;
	position: relative;
}

.sub-items-header > li > a {
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	color: var(--azul);
	border-bottom: 2px solid var(--negro);
	padding: 10px 30px;
	transition: ease all 0.6s;
	font-size: 16px;
	text-transform: uppercase !important;
}

.sub-items-header > li > a:hover {
	background-color: var(--azul);
	color: #fff;
}

#content-redes {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 10px;
	background-color: var(--morado);
	padding: 0px 40px;
}

#content-redes > a {
	width: 30px;
	display: flex;
	justify-content: center;
	align-items: center;
	transition: ease all 0.6s;
}

#content-redes > a svg {
	width: 100%;
	fill: #fff;
}

#content-redes > a:hover svg {
	fill: var(--amarillo);
}

#btn-whatsapp {
	width: 60px;
	height: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: fixed;
	bottom: 20px;
	right: 10px;
	z-index: 111111;
	padding: 8px;
	background-color: #32ba46;
	border-radius: 50%;
	transition: ease all 0.4s;
	box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
		0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);
}
#btn-whatsapp:hover {
	box-shadow: 0 16px 24px 2px rgba(0, 0, 0, 0.14),
		0 6px 30px 5px rgba(0, 0, 0, 0.12), 0 8px 10px -7px rgba(0, 0, 0, 0.2);
	right: 20px;
	transform: scale(1.05, 1.05);
}
/* -------------------------------------- END HEADER ------------------------------------------ */

/* --------------------------------------- FOOTER --------------------------------------------- */

footer {
	width: 100%;
	display: flex;
	flex-direction: column;
	background-color: var(--azul);
	justify-content: center;
	align-items: center;
	padding: 50px 20px;
	gap: 30px;
}

footer > div {
	width: 100%;
}

#footer-1 {
	display: flex;
	justify-content: center;
	align-items: center;
}
#footer-1 img {
	width: 200px;
}

#info-footer {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 30px;
}

#info-footer > a {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	gap: 5px;
	transition: ease all 0.6s;
}

#info-footer > a:hover span {
	color: var(--amarillo);
}

#info-footer > a:hover svg {
	fill: var(--amarillo);
}

#info-footer > a > svg {
	width: 30px;
	fill: #fff;
}

#info-footer > a > span {
	font-size: 16px;
	color: #fff;
	transition: ease all 0.6s;
}

#footer-3 {
	display: flex;
	justify-content: center;
	align-items: center;
}

footer > p {
	font-size: 12px;
	color: #fff;
}
/* --------------------------------------- END FOOTER --------------------------------------------- */

#banner-interno {
	display: flex;
	justify-content: center;
	align-items: center;
}
#banner-interno img {
	width: 100%;
	object-fit: cover;
	object-position: top;
}
#banner-res-interno {
	display: none;
}

#banner-desk-interno {
	display: flex;
}
#banner-interno .principal-title {
	align-items: center;
	position: absolute;
}

#banner-interno .principal-title h3 {
	color: #fff;
	font-size: 70px;
}

#s-info-quienes-somos {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 40px 0px;
}

#s-info-quienes-somos div {
	width: 80%;
	background-color: #e5e5e5;
	padding: 40px;
	gap: 30px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: flex-start;
}

#s-info-quienes-somos div p {
	color: #000;
	font-size: 20px;
}

#s-info-quienes-somos div p b {
	font-family: "Montserrat-Bold";
}

.bnn {
	width: 50px;
	height: 50px;
	cursor: pointer;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: calc(50% - 40px);
	z-index: 1;
	background-color: var(--amarillo);
	border-radius: 50%;
}

.line-separator {
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 80px 0px;
}

.line-separator span {
	width: 70%;
	height: 6px;
	border-radius: 20px;
	background-color: #a4a4a4;
}

#btn-menu {
	width: 50px;
	display: none;
}

#btn-menu svg {
	width: 100%;
	fill: #fff;
}

.btn-ver-texto {
	background-color: var(--morado);
	color: var(--gris);
	font-size: 18px;
	padding: 4px 10px;
	border: none;
}

@media screen and (min-width: 1024px) {
	.content-sub-items-header:hover ul {
		display: block;
	}
}
@media screen and (max-width: 1024px) {
	main {
		margin-top: 70px;
	}

	header {
		height: 70px;
		padding: 0px 20px;
	}
	nav {
		display: none;
	}

	nav.active {
		width: 55%;
		display: flex;
		position: absolute;
		top: 70px;
		right: 0px;
		background-color: var(--azul);
		border-bottom-left-radius: 20px;
	}

	nav.active ul {
		flex-direction: column;
	}

	nav.active ul li {
		justify-content: center;
	}

	nav.active ul li a {
		width: 100%;
		padding: 10px 4px;
	}

	header > a img {
		height: 60%;
	}
	#btn-menu {
		display: flex;
	}

	#content-redes {
		display: none;
	}

	#s-info-quienes-somos {
		padding: 20px;
	}

	#s-info-quienes-somos div {
		width: 100%;
		padding: 20px;
		gap: 20px;
	}

	#info-footer {
		flex-direction: column;
	}

	#info-footer > a {
		width: 100%;
	}

	.bnn {
		width: 30px;
		height: 30px;
		top: calc(50% - 100px);
	}

	#s-info-quienes-somos div p {
		font-size: 18px;
	}
	nav > ul > li {
		flex-direction: column;
	}

	.sub-items-header {
		position: relative;
	}
	.line-separator {
		padding: 20px 0px;
	}

	#banner-res-interno {
		display: flex;
	}
	#banner-desk-interno {
		display: none;
	}
}

.puntos-suspensivos {
	font-style: italic;
}
