/* HOME SECTION DESING */
.body {
	background: var(--black-color);
	color: var(--text-color);
	font-family: "Poppins", sans-serif;
}
.view-section-especial {
	min-height: 100vh;
	padding: 0rem 11%;
}
.view-section {
	min-height: fit-content;
	padding: 5rem 11%;
}
@keyframes animate-text {
	0% {
		opacity: 0;
		scale: 10%;
	}
	100% {
		opacity: 1;
		scale: 100%;
	}
}
.animate-text {
	view-timeline-name: --reveal;
	animation-name: animate-text;
	animation-fill-mode: both;

	animation-timeline: --reveal;
	animation-range: entry 25% cover 50%;
}
p {
	font-size: var(--font-size-mobile);
}
/* NAVBAR SECTION DESING */
.home-header {
	flex-shrink: 0;
	position: sticky;
	top: 0;
	left: 0;
	right: 0;
	backdrop-filter: blur(1.5rem);
	-webkit-backdrop-filter: blur(1.5rem);
	z-index: 100;
	box-shadow: 0 0 0.5rem var(--black-color);
	height: var(--height-header-home);
}
.nav-wrapper {
	display: flex;
	justify-content: space-between;
	align-items: center;
	width: min(80rem, 100vw);
	margin: auto;
	height: 100%;
}
.logo {
	font-size: var(--font-size-h1-mobile);
	color: var(--blue-color);
	font-weight: 600;
	cursor: var(--cursor-style), auto;
	text-wrap: nowrap;
	line-height: 0.5;
	margin-left: 1rem;
}
.logo > small {
	font-size: var(--font-size-small-mobile);
	color: var(--text-color);
}
#menu-icon {
	font-size: var(--font-size-h1-large);
	color: var(--text-color);
	display: block;
	margin: 1rem;
	width: 2rem;
	height: 2rem;
}
.home-navbar {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 1rem;
	display: none;
}
.active-link {
	display: block;
}
.item-navbar {
	font-size: var(--font-size-mobile);
	color: var(--text-color);
	transition: 0.3s;
	display: block;
	margin: 3rem 0;
}
.item-navbar:hover,
.active-link {
	color: var(--orange-color);
	border: 1px var(--orange-color);
	border-style: none none solid none;
}
.home-navbar.active-link {
	position: fixed;
	top: var(--height-header-home);
	backdrop-filter: blur(1.5rem);
	-webkit-backdrop-filter: blur(1.5rem);
	width: min(80rem, 100vw);
	background: #0f1621e2;
	height: 80vh;
	z-index: 100;
	display: flex;
	flex-direction: column;
	justify-content: flex-start;
	align-items: center;
}
.home-navbar.active-link > .item-navbar {
	margin-top: 0.5rem;
	margin-bottom: 0.5rem;
	width: 100%;
	display: block;
	text-align: center;
}

/* HOME SECTION DESING */
.home-section {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	min-height: 100vh;
}
.banner-home-img {
	width: 30vw;
	animation: floatImage 4s ease-in-out infinite;
}
@keyframes floatImage {
	0% {
		transform: translateY(0);
	}
	50% {
		transform: translateY(-2.4rem);
	}
	100% {
		transform: translateY(0);
	}
}
.content-home-section {
	max-width: 100vw;
}
.content-home-section h1 {
	font-size: var(--font-size-h1-mobile);
	font-weight: 700;
	line-height: 1.3;
}
.content-home-section h3 {
	font-size: var(--font-size-h2-mobile);
	font-weight: 700;
}
.content-home-section h3:nth-of-type(2) {
	margin-bottom: 2rem;
}
.multiple-text {
	color: var(--blue-color);
}
.social-media {
	display: flex;
	justify-content: flex-start;
	align-items: center;
	flex-direction: row;
	align-content: center;
	margin: 1rem;
	gap: 1rem;
}
.github-link {
	justify-content: center;
	align-items: center;
	min-width: min-content;
	text-align: center;
	font-size: var(--font-size-h1-mobile);
	text-shadow: 0 0 1rem var(--text-color);
	color: var(--text-color);
}
/* VIDEO SECTION DESING */
video{
	width: 100%;
    margin-bottom: 1em;
}
.video-section {
	display: flex;
	justify-content: center;
	width: 100%;
	align-items: center;
	flex-direction: column;
	gap: 2rem;
}
/* OVERVIEW SECTION DESING */
.overview-section {
	display: flex;
	flex-direction: column;
	align-items: center;
}

.card {
	width: 100%;
	height: fit-content;
	max-width: 800px;
	display: flex;
	backdrop-filter: blur(1.5rem);
	-webkit-backdrop-filter: blur(1.5rem);
	border: solid 2px var(--orange-color);
	box-shadow: 5px 5px 0px var(--orange-lite-color);
	flex-direction: column;
	border-radius: 10px;
	text-align: center;
	padding: 1rem;
}
.heading {
	text-align: center;
	font-size: var(--font-size-h1-mobile);
	margin-bottom: 1rem;
}
.overview-container {
	display: flex;
	text-align: left;
	flex-direction: row-reverse;
	justify-content: space-evenly;
	align-items: center;
}
.overview-img {
	mask: linear-gradient(var(--black-color) 40%, #0000 100%);
}
.overview-img img {
	width: 50dvw;
}
.overview-content h2 {
	text-align: center;
	line-height: 1.2;
}
.card > .overview-content > .heading {
	margin: 0;
}
.overview-content p {
	margin: 1rem 0 1rem;
}
/* USAGE MODELS DESING */
.view-section.usage-models-section {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.usage-models-container {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 0.1rem;
}
.usage-models-item {
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	gap: 1rem;
	text-align: left;
}
.usage-models-img {
	mask: linear-gradient(var(--black-color) 60%, #0000 90%);
}
.usage-models-img img {
	width: 200px;
}
.img_cats_with {
	background: radial-gradient(
		circle,
		rgb(51 240 77) 11%,
		rgb(255 255 255 / 0%) 29%,
		rgb(28 31 31 / 0%) 89%
	);
	background-position-x: 6px;
	background-position-y: -14px;
	background-size: 28%;
	background-repeat: no-repeat;
}
.img_cat_with {
	background: radial-gradient(
		circle,
		rgb(255 255 255) 20%,
		rgb(0 0 0 / 0%) 59%,
		rgb(0 0 0 / 0%) 9%
	);
	background-position-x: 0px;
	background-position-y: 0px;
	background-size: 100%;
	background-repeat: no-repeat;
}
/* MISION AND VISION SECTION DESING */
.container-mision-vision-section {
	display: flex;
	justify-content: center;
	align-items: center;
	flex-direction: column;
	gap: 4rem;
}
.mision-vision {
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.item-mision-vision-section {
	display: flex;
	justify-content: center;
	flex-grow: 1;
	height: max-content;
	max-width: 100%;
	align-items: center;
	gap: 2rem;
	flex-direction: column-reverse;
}
.item-mision-vision-section:last-child {
	flex-direction: column;
}
.container-mision-vision-img {
	box-shadow: 0 5px 10px black;
	width: 100%;
	max-width: 546px;
}
.img-mision-vision {
	width: 100%;
	height: 100%;
	border-radius: 10px;
	object-fit: cover;
}
.content-mision-vision {
	justify-content: space-evenly;
	text-align: left;
	line-height: 1.2;
	width: 100%;
	max-width: 546px;
}
.content-mision-vision > h2 {
	font-size: var(--font-size-h2-mobile);
	font-weight: 700;
}
/* ABOUT US SECTION DESING */
.about > h2 {
	margin-bottom: 1rem;
}
.container_perfile_card {
	display: flex;
	justify-content: space-evenly;
	align-items: center;
	flex-wrap: wrap;
	width: var(--width-container-home);
	gap: 50px;
}
.perfile_card {
	width: 300px;
	height: 404px;
	backdrop-filter: blur(10px);
	-webkit-backdrop-filter: blur(10px);
	border: 2px solid var(--orange-color);
	box-shadow: 5px 5px var(--orange-lite-color);
	border-radius: 5px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
}
.perfile_card-photo {
	transform: scale(0.5) translate(125px, 60px);
	width: 250px;
	height: 250px;
	margin-left: -125px;
	margin-top: -125px;
	border-radius: 30%;
}
.perfile_card-photo img {
	width: 100%;
	height: 100%;
	border-radius: 30%;
	object-fit: cover;
	box-shadow: 4px 4px 0 0px rgba(0, 0, 0, 0.26);
}
.perfile_card-title {
	text-align: center;
	color: var(--text-color);
	font-size: var(--font-size-h1-tablet);
	font-weight: 400;
}
.perfile_card-title span {
	font-size: var(--font-size-tablet);
	color: var(--text-color);
}
.perfile_card-socials {
	display: flex;
	height: 0;
	opacity: 0;
	margin-top: 20px;
	width: 100%;
	justify-content: center;
	align-items: center;
	gap: 25%;
	transition: 0.5s;
}
.perfile_card-socials-btn {
	width: 25px;
	height: 25px;
	border: none;
	background: transparent;
	cursor: var(--cursor-pointer-style), auto;
}
.perfile_card-socials-btn i {
	font-size: var(--font-size-extra-large);
	color: var(--orange-color);
}
.perfile_card:hover > .perfile_card-socials {
	opacity: 1;
	height: 35px;
}
.perfile_card-socials-btn:hover {
	transform: translateY(-5px);
	transition: all 0.15s;
}
.perfile_card-photo:hover {
	transition: 0.3s;
	transform: scale(0.7) translate(88px, 20px);
}
/* FOOTER SECTION DESING */

.footer {
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap;
	padding: 2rem 10%;
	background: var(--second-bg-color-trasparent);
	backdrop-filter: blur(5px);
	-webkit-backdrop-filter: blur(5px);
	font-size: var(--font-size-mobile);
	& a {
		text-align: center;
		font-size: 100%;
	}
	& .footer-text > p {
		font-size: var(--font-size-mobile) !important;
	}
}
.footer > .footer-text > p {
	font-size: var(--font-size-mobile) !important;
}

/* RESPONSIVE */
/* Tabletas */
@media (min-width: 576px) {
	p {
		font-size: var(--font-size-tablet);
	}
	.overview-img img {
		width: 35dvw;
	}
	.item-navbar {
		font-size: var(--font-size-tablet);
	}
	.usage-models-container {
		flex-direction: row !important;
	}
	.usage-models-multi {
		border: 1px var(--orange-color);
		border-style: none none none solid;
		padding-left: 1rem;
	}
	.usage-models-img img {
		width: 20dvw;
	}
	.content-home-section > h1 {
		font-size: var(--font-size-h1-tablet);
	}
	.content-home-section > h3 {
		font-size: var(--font-size-h2-tablet);
	}
	.card {
		padding: 3rem;
	}
	.logo {
		font-size: var(--font-size-h1-tablet);
	}
	.logo > small {
		font-size: var(--font-size-small-tablet);
	}
	.github-link {
		font-size: var(--font-size-tablet);
	}
	.heading {
		font-size: var(--font-size-h1-tablet);
	}
	.content-mision-vision {
		padding: 1rem;
	}
	.content-mision-vision > h2 {
		font-size: var(--font-size-h3-tablet);
	}
	.content-mision-vision > p {
		font-size: var(--font-size-small-tablet);
	}
}
/* Laptops y escritorios */
@media (min-width: 768px) {
	p {
		font-size: var(--font-size-desktop);
	}
	.footer > .footer-text > p {
		font-size: var(--font-size-small-tablet) !important;
	}
	.content-home-section > h1 {
		font-size: var(--font-size-h1-desktop);
	}
	.content-home-section > h3 {
		font-size: var(--font-size-h2-desktop);
	}
	.usage-models-container {
		width: var(--width-container-home) !important;
	}
	.card {
		flex-direction: row-reverse;
		align-items: center;
		max-width: 100%;
	}
	.github-link {
		font-size: var(--font-size-desktop);
	}
	.heading {
		font-weight: 600;
		font-size: var(--font-size-h1-desktop);
	}
	/* MISION AND VISION DESING */
	.content-mision-vision {
		max-width: 34.125rem;
	}
	.content-mision-vision > h2 {
		font-size: var(--font-size-h3-desktop);
	}
	.content-mision-vision > p {
		font-size: var(--font-size-small-desktop);
	}
	/* .img-mision-vision {
	} */
	.overview-content p {
		text-align: left;
	}
}
/* Laptops y escritorios */
@media (min-width: 992px) {
	.logo {
		font-size: var(--font-size-h1-desktop);
	}
	#menu-icon {
		display: none;
	}
	.home-navbar {
		position: static;
		display: flex;
	}
	.item-navbar {
		text-wrap: nowrap;
		font-size: var(--font-size-mobile);
	}
	.overview-container {
		width: var(--width-container-home) !important;
	}
	.content-mision-vision {
		flex-direction: column;
		width: 50%;
		height: 100%;
	}
	.container-mision-vision-section {
		height: 28rem;
	}
	.item-mision-vision-section {
		flex-direction: row !important;
	}
	.item-mision-vision-section > p {
		font-size: var(--font-size-desktop);
	}
	.container-mision-vision-img {
		max-width: 546px;
		height: 100%;
	}
}
/* Monitores anchos */
@media (min-width: 1200px) {
	p {
		font-size: var(--font-size-large);
	}
	.item-navbar {
		font-size: var(--font-size-small-desktop);
	}
	.content-home-section > h1 {
		font-size: var(--font-size-extra-large);
	}
	.content-home-section > h3 {
		font-size: var(--font-size-h1-large);
	}
	.github-link {
		font-size: var(--font-size-large);
	}
	.heading {
		font-size: var(--font-size-h1-large);
	}
	.content-mision-vision > h2 {
		font-size: var(--font-size-h2-large);
	}
}
/* Mobiles */
@media (max-width: 991px) {
	.card {
		flex-direction: column;
	}
	.view-section {
		padding: 5rem 11%;
	}
}
/* Tabletas */
@media (max-width: 768px) {
	/* -------Home Section------- */
	.home-section {
		min-height: 50vh;
		flex-direction: column;
	}
	.banner-home-img {
		width: 40vw;
		margin-top: 4rem;
	}
}
