@charset "utf-8";
/* CSS Document */


/*LOADER*/
.content_loading {
	height: 100%;
	position: fixed;
	top: 0;
	left: 0;
	background: var(--blue);
	transition: all 0.5s ease-in-out;
	z-index: 9999;
	opacity: 1;
}

.content_loading.hide {
	opacity: 0;
	pointer-events: none;
}

/*COLORS*/
:root {

	/*White*/
	--white-01: rgba(250, 250, 250, 0.1);
	--white-02: rgba(250, 250, 250, 0.2);
	--white-03: rgba(250, 250, 250, 0.3);
	--white-04: rgba(250, 250, 250, 0.4);
	--white-05: rgba(250, 250, 250, 0.5);
	--white-06: rgba(250, 250, 250, 0.6);
	--white-07: rgba(250, 250, 250, 0.7);
	--white-08: rgba(250, 250, 250, 0.8);
	--white-09: rgba(250, 250, 250, 0.9);
	--white: #FFFFFF;

	/*Black*/
	--black-01: rgba(0, 0, 0, 0.1);
	--black-02: rgba(0, 0, 0, 0.2);
	--black-03: rgba(0, 0, 0, 0.3);
	--black-04: rgba(0, 0, 0, 0.4);
	--black-05: rgba(0, 0, 0, 0.5);
	--black-06: rgba(0, 0, 0, 0.6);
	--black-07: rgba(0, 0, 0, 0.7);
	--black-08: rgba(0, 0, 0, 0.8);
	--black-09: rgba(0, 0, 0, 0.9);
	--black: #000000;

	--soft-black: #1E1E1C;

	--soft-gray: #CCCCCC;
	--gray: #999999;
	--dark-gray: #333333;

	--warning: #df0b5b;
	--warning-bg: #FBE4EB;
	--warning-toast: #FF000D;
	--success-toast: #4BC500;

	/*Categories*/
	--cat-placas: #60C3F0;
	--cat-league: #009741;
	--cat-programacion: #FEC707;
	--cat-drones: #E9521E;
	--cat-videojuegos: #95388C;
	--cat-robotica: #EF88A9;
	--cat-challengue: #E10F1A;
	--cat-community: #85BC25;

	--cat-vj-mine: #56207A;
	--cat-vj-robo: #82378C;
	--cat-vj-mati: #A53783;

	--blue: #003080;
	--blue-2: #024FB4;
	--blue-03: #001C4C;

	/*Marquee*/
	--space: 1rem;
	--space-05: 0.5rem;
	--space-0: 0rem;
}


/*FONTS*/
@font-face {
	font-family: 'ceibal_mozaicbold';
	src: url('fonts/ceibalmozaic-bold-webfont.woff2') format('woff2'),
		url('fonts/ceibalmozaic-bold-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

@font-face {
	font-family: 'ceibal_mozaicbold_italic';
	src: url('fonts/ceibalmozaic-bolditalica-webfont.woff2') format('woff2'),
		url('fonts/ceibalmozaic-bolditalica-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

@font-face {
	font-family: 'ceibal_mozaic_italicregular';
	src: url('fonts/ceibalmozaic-italic-webfont.woff2') format('woff2'),
		url('fonts/ceibalmozaic-italic-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

@font-face {
	font-family: 'ceibal_mozaicitalic';
	src: url('fonts/ceibalmozaic-italica-webfont.woff2') format('woff2'),
		url('fonts/ceibalmozaic-italica-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}

@font-face {
	font-family: 'ceibal_mozaicregular';
	src: url('fonts/ceibalmozaic-regular-webfont.woff2') format('woff2'),
		url('fonts/ceibalmozaic-regular-webfont.woff') format('woff');
	font-weight: normal;
	font-style: normal;

}


/*GENERICS*/

html {
	width: 100%;
	height: 100%
}

body {
	width: 100%;
	height: 100%;
	background: var(--blue);
	font-size: 1rem;
	font-family: 'ceibal_mozaicregular', Arial, Helvetica, sans-serif;
	font-weight: 400;
	color: var(--black);
	-webkit-font-smoothing: antialiased;
}

a {
	color: var(--black);
	text-decoration: none;
	transition: all 0.35s ease-in-out;
}

header,
section,
article,
aside,
footer,
nav,
figure,
div,
a {
	box-sizing: border-box;
	position: relative;
}

/*Form*/

/*Input*/
input {
	height: 70px;
	border-radius: 20px;
	border: none;
	padding: 0 30px;
	background: var(--white);
	font-family: 'ceibal_mozaicregular', sans-serif;
	font-weight: 400;
	font-size: 1.125rem;
	color: var(--black);
	box-sizing: border-box;
}

input::placeholder {
	color: var(--black);
}

/*TextArea*/
textarea {
	resize: none;
	height: 240px;
	border-radius: 20px;
	border: none;
	padding: 20px 30px;
	background: var(--white);
	font-family: 'ceibal_mozaicregular', sans-serif;
	font-weight: 400;
	font-size: 1.125rem;
	color: var(--black);
	box-sizing: border-box;
}

textarea::placeholder {
	color: var(--black);
}

/*Select*/
.select_style {
	height: 50px;
	border-bottom: var(--green) 1px solid;
	border-right: none;
	border-left: none;
	border-top: none;
}

.select_style::before {
	width: 17px;
	height: 17px;
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto 0;
	background: url(../../img/bg_arrow.svg) no-repeat;
	pointer-events: none;
	content: ''
}

.select_style select {
	border: none;
	background: var(--white);
	height: 100%;
	color: var(--black);
	box-sizing: border-box;
	-webkit-box-sizing: border-box;
}

/*Checkbox*/
.label-check {
	width: auto;
	float: left;
	position: relative;
	cursor: pointer;
	margin: 0;
}

.label-check input[type="checkbox"] {
	opacity: 0;
	position: absolute;
	left: 0;
	top: 0;
	margin: 0;
	z-index: 1;
	cursor: pointer;
	width: 24px;
	height: 24px;
}

.label-check span.label_check {
	position: relative;
	top: -2px;
	background: var(--gray-02);
	display: inline-block;
	vertical-align: bottom;
	margin-right: 5px;
	width: 24px;
	height: 24px;
	border-radius: 2px;
	box-shadow: inset 0 2px 1px 0 rgba(0, 0, 0, 0.1);
}

.label-check input[type="checkbox"]:checked+span:after {
	content: '';
	display: block;
	position: absolute;
	left: 0;
	top: 0;
	right: 0;
	bottom: 0;
	margin: auto;
	width: 24px;
	height: 24px;
	background-image: url(../../img/bg_check.svg);
	background-color: var(--green);
	background-repeat: no-repeat;
	border-radius: 2px;
	background-position: center;
}

/*Warning*/

/*Input*/
.warning input {
	border: var(--warning) 2px solid;
	background: var(--warning-bg);
	color: var(--black);
}

/*Input*/
.warning textarea {
	border: var(--warning) 2px solid;
	background: var(--warning-bg);
	color: var(--black);
}

/*Select*/
.warning .select_style {
	border-bottom: var(--warning) 1px solid
}

/*Label*/
.warning label {
	color: var(--warning);
}

/*CheckBox*/
.warning .label-check span.label_check {
	background: var(--warning);
}

/*Terms*/
.warning .terms {
	color: var(--warning);
}

/*Button*/
.button {
	height: 50px;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	align-items: center;
	border: 1px solid var(--white);
	background: var(--blue);
	overflow: hidden;
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
	transform: translate3d(0, 0, 0);
}

.button:after {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	transform: translateY(101%);
	transition: transform .9s cubic-bezier(.77, 0, .175, 1) .2s;
	content: '';
}

/*Label*/
.button .label {
	width: 100%;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 700;
	color: var(--black);
}

.button .label.absolute {
	position: absolute;
}

.button .label:first-child {
	transition: transform .9s cubic-bezier(.77, 0, .175, 1) .3s;
	color: var(--white);
}

.button .label:last-child {
	color: var(--black);
	background: var(--white);
}

.button .label:nth-child(2) {
	transform: translateY(100%);
	z-index: 2;
	transition: transform .9s cubic-bezier(.77, 0, .175, 1);
}

/*Hover*/
.button:hover:after {
	transform: translateY(0);
	transition: transform .9s cubic-bezier(.77, 0, .175, 1);
}

.button:hover .label:first-child {
	transform: translateY(100%);
	transition: transform .4s cubic-bezier(.895, .03, .685, .22);
}

.button:hover .label:nth-child(2) {
	transform: translateY(0);
	transition: transform .9s cubic-bezier(.77, 0, .175, 1) .1s;
}

/*Backgrounds*/
/* White */
.button.white .label:first-child {
	color: var(--black);
	border: none;
}

.button.white .label:last-child {
	background: var(--blue-03);
	color: var(--white);
}

/*Categories*/
.ff_challenge .button .label:last-child {
	background: var(--cat-challengue);
	border: none;
}

.videojuegos .button.mine .label:last-child {
	background: var(--cat-vj-mine);
	color: var(--white);
	border: none;
}

.videojuegos .button.robo .label:last-child {
	background: var(--cat-vj-robo);
	color: var(--white);
	border: none;
}

.videojuegos .button.mati .label:last-child {
	background: var(--cat-vj-mati);
	color: var(--white);
	border: none;
}

.bit .button .label:last-child {
	background: var(--cat-placas);
	border: none;
}

.ff_explore .button .label:last-child {
	background: var(--cat-league);
	border: none;
}

.programacion .button .label:last-child {
	background: var(--cat-programacion);
	border: none;
}

.drones .button .label:last-child {
	background: var(--cat-drones);
	border: none;
}

.robotica .button .label:last-child {
	background: var(--cat-robotica);
	border: none;
}

.community .button .label:last-child {
	background: var(--cat-community);
	border: none;
}

/*Categories*/
.ff_challenge .button .label,
.videojuegos .button .label,
.bit .button .label,
.ff_explore .button .label,
.programacion .button .label,
.drones .button .label,
.robotica .button .label,
.community .button .label {
	color: var(--black);
}

/*LAYOUT*/
.row {
	width: 100%;
	display: flex;
	flex-wrap: wrap;
}

.center_content {
	width: 1200px;
	margin: 0 auto;
	display: flex;
	flex-wrap: wrap;
}

/*NAVIGATION*/
.content_navigation {
	width: calc(100% - 280px);
	height: 125px;
	background: var(--blue-2);
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	margin: auto;
	border-radius: 0 0 20px 20px;
	z-index: 20;
	display: flex;
	justify-content: space-between;
}

/*Logo*/
.content_navigation .content_logo {
	width: 220px;
	height: 100%;
	display: flex;
}

.content_navigation .content_logo .logo {
	width: 220px;
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

.content_navigation .content_logo .logo a {
	width: 120px;
}

/*Burger Menu*/
.content_navigation .btn_burger {
	display: none;
}

/*Heading*/
.content_navigation .content_heading {
	width: 500px;
	height: 100%;
	display: flex;
	align-items: center;
}

.content_navigation .content_heading h3 {
	font-weight: 400;
	font-size: 1.375rem;
	line-height: 1;
	display: block;
	color: var(--white);
}

.content_navigation .content_heading h3 span {
	font-weight: bold;
}

/*Links*/
.content_navigation .content_links {
	width: calc(100% - 990px);
	display: flex;
	justify-content: center;
	align-items: center;
}

/*Item*/
.content_navigation .content_links .item {
	height: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin: 0 45px 0 0;
	position: relative;
}

.content_navigation .content_links .item:last-child {
	margin: 0;
}

/*Link*/
.content_navigation .content_links .item .link {
	font-weight: bold;
	color: var(--black);
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 100%;
	font-size: 1.125rem;
}

.content_navigation .content_links .item .link.base {
	color: var(--white);
	height: auto;
}

.content_navigation .content_links .item .link.base::before {
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	margin: 0 auto;
	transform: scaleX(0);
	transition: all 0.5s ease-in-out;
	background: var(--white);
	content: ''
}

.content_navigation .content_links .item .link.base:hover::before {
	transform: scaleX(1.0);
}

/*Label*/
.content_navigation .content_links .item .label {
	font-weight: bold;
	color: var(--white);
	font-size: 1.125rem;
}

/*Submenu*/
.content_navigation .content_links .item .content_submenu {
	position: absolute;
	top: 90px;
	background: var(--white);
	border-radius: 20px;
	padding: 10px;
	transition: all 0.35s ease-in-out;
	opacity: 0;
	pointer-events: none;
}

.content_navigation .content_links .item:hover .content_submenu {
	opacity: 1;
	pointer-events: all;
}

.content_navigation .content_links .item .content_submenu li {
	justify-content: center;
	height: 40px;
	align-items: center;
	border-radius: 10px;
	transition: all 0.35s ease-in-out;
}

/* Hover */
.content_navigation .content_links .item .content_submenu li:hover {
	background: var(--blue-2);
}

.content_navigation .content_links .item .content_submenu li:hover .link {
	color: var(--white);
}

/*HOME*/

/*Hero*/
.home .content_hero {
	min-height: 100svh;
	justify-content: center;
	align-content: flex-start;
	background: var(--blue);
}

/*Box*/
.home .content_hero .content_box {
	width: 100%;
	padding: 200px 140px 100px;
	z-index: 2;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

/*Information*/
.home .content_hero .content_box .content_information {
	width: 50%;
	display: flex;
	flex-wrap: wrap;
	align-content: space-between;
	padding: 40px;
	background: var(--blue-2);
	border-radius: 8px;
}

/* Heading */
.home .content_hero .content_box .content_information h2 {
	font-family: 'ceibal_mozaicbold';
	font-weight: 400;
	font-size: 3rem;
	line-height: 1;
	text-align: center;
	margin: 0 0 20px;
	color: var(--white);
}

.home .content_hero .content_box .content_information .content_text{
	justify-content: space-between;
	padding: 0 0 25px;
}

.home .content_hero .content_box .content_information .content_text::before{
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: var(--white-02);
	content: '';
}

.home .content_hero .content_box .content_information .content_text::before{
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.home .content_hero.show .content_box .content_information .content_text::before {
	opacity: 1;
	transition-delay: 0.75s;
}

.home .content_hero .content_box .content_information .content_text h3 {
	font-weight: 600;
	color: var(--white);
	font-size: 1.5rem;
	line-height: 32px;
	text-align: center;
}

.home .content_hero .content_box .content_information .content_text h3 {
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.home .content_hero.show .content_box .content_information .content_text h3 {
	opacity: 1;
	transition-delay: 0.75s;
}

/*Buttons*/
.home .content_hero .content_box .content_information .content_buttons {
	row-gap: 15px;
	justify-content: space-between;
	padding: 25px 0 0;
}

.home .content_hero .content_box .content_information .content_buttons .button {
	width: 49%
}

.home .content_hero .content_box .content_information .content_buttons .button svg {
	margin: 0 0 0 10px;
}

.home .content_hero .content_box .content_information .content_buttons .button.small.white {
	border: none;
	background: var(--cat-programacion);
	width: 100%;
}


.home .content_hero .content_box .content_information .content_buttons .button.small.white .label:last-child {
	background: var(--white);
	color: var(--black);
}

/* Content Youtube */
.home .content_hero .content_box .content_youtube {
	width: 45%;
	display: flex;
	flex-wrap: wrap;
	height: 330px;
}

.home .content_hero .content_box .content_youtube iframe {
	height: 100%;
	width: 100%;
}

.home .content_hero .content_box .content_youtube iframe {
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.home .content_hero.show .content_box .content_youtube iframe {
	opacity: 1;
	transition-delay: 0.75s;
}

/* Lottie */
.home .content_hero .animation_hero {
	width: 50%;
	position: absolute;
	top: 30px;
	right: 0;
	height: 75%;
}

.home .content_hero .animation_hero .animation_header {
	width: 100%;
	height: 100%;
}

/* Content Contact */
.home .content_hero .content_contact{
	padding: 0 140px 85px;
}

.home .content_hero .content_contact .content_projects{
	width: 100%;
	height: 280px;
	align-content: center;
	align-items: center;
	justify-content: center;
	border-radius: 20px;
	overflow: hidden;
}

.home .content_hero .content_contact .content_projects figure{
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}

.home .content_hero .content_contact .content_projects figure img{
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.home .content_hero .content_contact .content_projects figure::before{
	width: 100%;
	height: 100%;
	z-index: 2;
	background: var(--black-06);
	position: absolute;
	top: 0;
	left: 0; 
	content: '';
}

.home .content_hero .content_contact .content_projects label{
	z-index: 3;
	color: var(--white);
	justify-content: center;
	text-align: center;
	font-family: 'ceibal_mozaicbold';
	font-size: 1.5rem;
}

.home .content_hero .content_contact .content_projects .button{
z-index: 3;
width: 120px;
margin: 10px 0 0;
border: none;
background: var(--cat-programacion);
}

.home .content_hero .content_contact .content_projects .button .label:first-child{
	color: var(--black);
}

.home .content_hero .content_contact .content_projects .button .label:last-child{
	background: var(--white);
	color: var(--black);
}

/* Intro Animations */
.home .content_hero .content_box .content_information h2 {
	opacity: 0;
	transform: translateY(30px);
	transition: all 0.75s cubic-bezier(0.25, 0.1, 0.1, 1);
}

.home .content_hero.show .content_box .content_information h2 {
	opacity: 1;
	transform: translateY(0);
	transition-delay: 0.6s;
}

.home .content_hero .content_box .content_information #countdown{
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.home .content_hero.show .content_box .content_information #countdown{
	opacity: 1;
	transition-delay: 0.75s;
}

.home .content_hero .content_box .content_information p {
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.home .content_hero.show .content_box .content_information p {
	opacity: 1;
	transition-delay: 0.75s;
}

.home .content_hero .content_box .content_information .information_list li{
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.home .content_hero.show .content_box .content_information .information_list li{
	opacity: 1;
	transition-delay: 0.75s;
}

.home .content_hero .content_box .content_information .content_buttons {
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.home .content_hero.show .content_box .content_information .content_buttons {
	opacity: 1;
	transition-delay: 0.75s;
}

.home .content_hero .content_contact .content_text{
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.home .content_hero.show .content_contact .content_text{
	opacity: 1;
	transition-delay: 0.75s;
}

.home .content_hero .content_contact .content_projects{
	opacity: 0;
	transition: all 0.5s ease-in-out;
}

.home .content_hero.show .content_contact .content_projects{
	opacity: 1;
	transition-delay: 0.75s;
}


/*Marquee*/
.home .content_categories {
	height: 100px;
	background: var(--blue);
}

.home .content_categories .simple-marquee-container {
	align-items: center;
}

.home .content_categories .marquee-content-items li {
	margin: 0 30px 0 0;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

/*Name*/
.home .content_categories .marquee-content-items li .name {
	font-weight: 400;
	font-size: 2rem;
	color: var(--white);
	margin: 0 30px 0 0;
}

/*Icon*/
.home .content_categories .marquee-content-items li .icon {
	width: 50px;
	height: 50px;
	display: flex;
}

/*Categories List*/
.home .content_categories_list {
	background: var(--blue);
	padding: 80px 0 0;
}

.home .content_categories_list ul li {
	height: 105px;
	box-sizing: border-box;
	z-index: 1;
	margin: 0 0 15px;
}

.home .content_categories_list ul li:hover {
	z-index: 3;
}

.home .content_categories_list ul li a {
	height: 100%;
	justify-content: space-between;
	align-items: center;
	margin: 0 140px;
	box-sizing: border-box;
	background: var(--white);
	border-radius: 30px;
	padding: 0 40px;
	transition: all 0.2s ease-in-out;
	transition-delay: 0.2s;
}

/* Hover */
.home .content_categories_list ul li a:hover {
	margin: 0;
	padding: 0 180px;
	border-radius: 0;
	transition-delay: 0s;
}

/*Backgrounds*/
.home .content_categories_list ul li.ff_challenge a {
	background: var(--cat-challengue);
}

.home .content_categories_list ul li.videojuegos a {
	background: var(--cat-videojuegos);
}

.home .content_categories_list ul li.placas a {
	background: var(--cat-placas);
}

.home .content_categories_list ul li.ff_explore a {
	background: var(--cat-league);
}

.home .content_categories_list ul li.programacion a {
	background: var(--cat-programacion);
}

.home .content_categories_list ul li.drones a {
	background: var(--cat-drones);
}

.home .content_categories_list ul li.robotica a {
	background: var(--cat-robotica);
}

.home .content_categories_list ul li.community a {
	background: var(--cat-community);
}

/*Name*/
.home .content_categories_list ul li a .category_name {
	font-weight: 600;
	font-size: 1.625rem;
	transition: all 0.35s ease-in-out;
	color: var(--black);
}

/*Cta*/
.home .content_categories_list ul li a .cta {
	display: flex;
	align-items: center;
}

.home .content_categories_list ul li a .cta span {
	font-weight: 600;
	font-size: 1.25rem;
	text-transform: lowercase;
	margin: 0 30px 0 0;
	transition: all 0.35s ease-in-out;
	color: var(--black);
	position: relative;
}

.home .content_categories_list ul li a .cta span::before {
	width: 100%;
	height: 2px;
	position: absolute;
	bottom: -2px;
	left: 0;
	right: 0;
	margin: 0 auto;
	transform: scaleX(0);
	transition: all 0.5s ease-in-out;
	background: var(--black);
	content: '';
}

.home .content_categories_list ul li a:hover .cta span::before {
	transform: scaleX(1.0);
}

.home .content_categories_list ul li a .cta svg {
	fill: none;
	stroke: var(--black);
	stroke-width: 2;
	transition: all 0.35s ease-in-out;
	transform: rotate(-45deg);
}

.home .content_categories_list ul li a:hover .cta svg {
	transform: rotate(0deg);
}

/*Icons*/
.home .content_categories_list ul li a .content_icon {
	width: 200px;
	height: 200px;
	position: absolute;
	top: -50px;
	right: 450px;
	border-radius: 20px;
	display: flex;
	justify-content: center;
	align-items: center;
	pointer-events: none;
	opacity: 0;
	transition: all 0.25s ease-in-out;
	transition-delay: 0s;
}

.home .content_categories_list ul li a:hover .content_icon {
	opacity: 1;
	transition-delay: 0.2s;
}

/*Backgrounds*/
.home .content_categories_list ul li.ff_challenge a .content_icon {
	background: var(--cat-challengue);
}

.home .content_categories_list ul li.videojuegos a .content_icon {
	background: var(--cat-videojuegos);
}

.home .content_categories_list ul li.placas a .content_icon {
	background: var(--cat-placas);
}

.home .content_categories_list ul li.ff_explore a .content_icon {
	background: var(--cat-league);
}

.home .content_categories_list ul li.programacion a .content_icon {
	background: var(--cat-programacion);
}

.home .content_categories_list ul li.drones a .content_icon {
	background: var(--cat-drones);
}

.home .content_categories_list ul li.robotica a .content_icon {
	background: var(--cat-robotica);
}

.home .content_categories_list ul li.community a .content_icon {
	background: var(--cat-community);
}

/*Faqs*/
.home .content_faqs {
	padding: 170px 140px 120px;
	background-color: var(--blue);
}

/*Heading*/
.home .content_faqs article .content_heading {
	justify-content: center;
	align-items: center;
}

.home .content_faqs article .content_heading h2 {
	font-weight: 600;
	font-size: 2rem;
	color: var(--white);
}

/*Faqs List*/
.home .content_faqs .faqs_list {
	padding: 90px 120px;
	box-sizing: border-box;
}

.home .content_faqs .faqs_list li {
	background: var(--blue-2);
	border-radius: 20px;
	display: flex;
	flex-wrap: wrap;
	margin: 0 0 15px;
	box-sizing: border-box;
}

/*Link*/
.home .content_faqs .faqs_list li .open_close {
	position: relative;
	justify-content: space-between;
	align-items: center;
	height: 95px;
	padding: 25px 40px;
}

/*Text*/
.home .content_faqs .faqs_list li .open_close span {
	width: calc(100% - 100px);
	font-weight: 400;
	font-size: 1.625rem;
	line-height: 1.1;
	color: var(--white);
}

/*Arrow*/
.home .content_faqs .faqs_list li .open_close .arrow {
	display: flex;
	justify-content: center;
	align-items: center;
}

.home .content_faqs .faqs_list li .open_close .arrow svg {
	transition: all 0.5s ease-in-out;
}

/* Hover */
.home .content_faqs .faqs_list li .open_close:hover .arrow svg {
	margin: 15px 0 0;
}

.home .content_faqs .faqs_list li.open .open_close .arrow svg {
	transform: rotate(180deg);
}

/*Information*/
.home .content_faqs .faqs_list li .content_information {
	max-height: 0;
	overflow: hidden;
	transition: all 0.5s ease-in-out;
	pointer-events: none;
	padding: 0 40px;
}

.home .content_faqs .faqs_list li.open .content_information {
	max-height: 600px;
	padding: 20px 40px;
	pointer-events: all;
}

.home .content_faqs .faqs_list li .content_information p {
	font-weight: 400;
	font-size: 1.0625rem;
	line-height: 1.4;
	color: var(--white);
	margin: 0 0 10px;
	display: inline-block;
}

.home .content_faqs .faqs_list li .content_information p:last-child {
	margin: 0;
}

.home .content_faqs .faqs_list li .content_information p span {
	font-weight: 700;
}

.home .content_faqs .faqs_list li .content_information p a {
	color: var(--white);
	text-decoration: underline;
}

/*Contact Form*/
.home .content_contact_form {
	background: var(--blue);
	padding: 0 0 170px;
}

/*Content*/
.home .content_contact_form article {
	padding: 0 140px;
	justify-content: center;
}

/*Headings*/
.home .content_contact_form article .content_information h2 {
	font-weight: 400;
	font-size: 2.25rem;
	color: var(--white);
	line-height: 1.2;
	margin: 0 0 25px;
	justify-content: center;
}

/*Form*/
.home .content_contact_form article .content_form {
	width: 520px;
	z-index: 3;
}

/*Form*/
.home .content_contact_form article .content_form ul.form {}

.home .content_contact_form article .content_form ul li {
	margin: 0 0 20px;
}

.home .content_contact_form article .content_form ul li:last-child {
	margin: 20px 0 0;
}

.home .content_contact_form article .content_form ul li .button {
	width: 100%;
}

.home .content_contact_form article .content_form ul li .button span {
	letter-spacing: 1.5px
}

/*Success*/
.home .content_contact_form article .content_form .content_success {
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: var(--blue);
	z-index: 3;
	align-content: center;
	justify-content: center;
	text-align: center;
}

/*Icon*/
.home .content_contact_form article .content_form .content_success img {
	margin: 0 0 50px;
}

/*Heading*/
.home .content_contact_form article .content_form .content_success h3 {
	font-weight: 400;
	font-size: 2.625rem;
	color: var(--white);
	line-height: 1.2;
	margin: 0 0 30px;
	justify-content: center;
	text-align: center;
}

.home .content_contact_form article .content_form .content_success h4 {
	font-weight: 400;
	font-size: 1.5rem;
	color: var(--white);
	justify-content: center;
	text-align: center;
	line-height: 1.4
}

/*Logic*/

.home .content_contact_form article .content_form ul.form {
	transition: all 0.5s ease-in-out;
}

.home .content_contact_form article .content_form.success ul.form {
	opacity: 0;
	pointer-events: none;
}

.home .content_contact_form article .content_form .content_success {
	transition: all 0.5s ease-in-out;
	opacity: 0;
	pointer-events: none;
	transition-delay: 0.5s;
}

.home .content_contact_form article .content_form.success .content_success {
	opacity: 1;
	pointer-events: all;
}

/* Success Toast */
.home .toast_success {
	position: fixed;
	z-index: 21;
	background: var(--success-toast);
	width: 100%;
	height: 60px;
	justify-content: center;
	display: flex;
	opacity: 0;
	pointer-events: none;
	transition: all 0.35s ease-in-out;
}

.home .toast_success .content {
	justify-content: center;
	align-items: center;
}

.home .toast_success .content label {
	margin: 0 0 0 10px;
	color: var(--white);
	font-weight: 0.875rem;
}

/* Show */
.home .toast_success.show {
	opacity: 1;
}

/* Warning Toast */
.home .toast_error {
	position: fixed;
	z-index: 21;
	background: var(--warning-toast);
	width: 100%;
	height: 60px;
	justify-content: center;
	display: flex;
	opacity: 0;
	pointer-events: none;
	transition: all 0.35s ease-in-out;
}

.home .toast_error .content {
	justify-content: center;
	align-items: center;
}

.home .toast_error .content label {
	margin: 0 0 0 10px;
	color: var(--white);
	font-weight: 0.875rem;
}

/* Show */
.home .toast_error.show {
	opacity: 1;
}

/* Lottie */
.home .content_contact_form .animation_contact {
	position: absolute;
	bottom: -10px;
	left: 0;
	right: 0;
	padding: 0;
	width: 100%;
	justify-content: flex-end;
}

.home .content_contact_form .animation_contact .animation_form {
	width: 100%;
	height: 100%;
}

.home .content_contact_form .animation_contact .img_form {
	display: none;
}


/*CATEGORIES*/

/*Hero*/
.category header {
	height: 495px;
	background: var(--blue)
}

.category header .content {
	padding: 0 145px;
	height: 100%;
	z-index: 2;
}

/*Hero*/
.category header .content_heading {
	width: 900px;
	height: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	padding: 130px 0 0;
}

/*Icon*/
.category header .content_heading .content_ico {
	display: flex;
	align-items: center;
	justify-content: center;
	height: 180px;
	width: 180px;
	border-radius: 20px;
	margin: 0 70px 0 0;
}

/* Background */
.category.bit header .content_heading .content_ico {
	background: var(--cat-placas);
}

.category.drones header .content_heading .content_ico {
	background: var(--cat-drones);
}

.category.ff_challenge header .content_heading .content_ico {
	background: var(--cat-challengue);
}

.category.ff_explore header .content_heading .content_ico {
	background: var(--cat-league);
}

.category.programacion header .content_heading .content_ico {
	background: var(--cat-programacion);
}

.category.robotica header .content_heading .content_ico {
	background: var(--cat-robotica);
}

.category.videojuegos header .content_heading .content_ico {
	background: var(--cat-videojuegos);
}

.category.community header .content_heading .content_ico {
	background: var(--cat-community);
}

/* IMG */
.category header .content_heading .content_ico figure {
	width: 80%;
	height: 80%;
}

.category header .content_heading .content_ico figure img {
	width: 100%;
	height: 100%;
	object-fit: contain;
}

/*Heading*/
.category header .content_heading h1 {
	font-weight: 600;
	font-size: 3.125rem;
	line-height: 1.2;
	color: var(--white);
}

.category.videojuegos header .content_heading h1 {
	color: var(--white)
}

/* Lottie */
.category header .content_bg_animation {
	position: absolute;
	left: -300px;
	display: flex;
	justify-content: flex-end;
	top: 0;
	z-index: 3;
}

.category header .content_bg_animation .animation_header_fllc,
.category header .content_bg_animation .animation_header_videojuegos,
.category header .content_bg_animation .animation_header_bit,
.category header .content_bg_animation .animation_header_flle,
.category header .content_bg_animation .animation_header_programacion,
.category header .content_bg_animation .animation_header_drones,
.category header .content_bg_animation .animation_header_robotica,
.category header .content_bg_animation .animation_header_community {
	width: 30%;
	height: 100%;
}

/*Information*/
.category .content_information_detail {
	padding: 75px 0 150px;
	background: var(--blue);
}

.category .content_information_detail article {
	padding: 0 140px;
	justify-content: space-between;
}

/*Information*/
.category .content_information_detail article .information {
	width: calc(100% - 580px);
	color: var(--white);
	z-index: 4;
}

/*Heading*/
.category .content_information_detail article .information h2 {
	font-weight: 600;
	font-size: 2.625rem;
	line-height: 1;
	margin: 0 0 60px;
}

.category .content_information_detail article .information h3 {
	font-weight: 700;
	font-size: 1.5rem;
	line-height: 1;
	margin: 30px 0 20px;
}

/*Description*/
.category .content_information_detail article .information p {
	font-weight: 400;
	font-size: 1.0625rem;
	line-height: 1.3;
	margin: 0 0 20px;
	display: inline-block;
}

.category .content_information_detail article .information p:last-child {
	margin: 0;
}

.category .content_information_detail article .information p a {
	text-decoration: underline;
	color: var(--white);
}

/*Button*/
.category .content_information_detail article .information .content_button {
	margin: 60px 0 0;
}

.category .content_information_detail article .information .button {
	width: 265px;
	border: none;
	background: var(--white);
}

.category .content_information_detail article .information .button.small {
	width: 200px;
}

.category.videojuegos .content_information_detail article .information .button {
	margin: 0 15px 0 0;
}

.category.videojuegos .content_information_detail article .information .button:last-child {
	margin: 0;
}

/*Image*/
.category .content_information_detail article picture,
.category .content_information_detail article .content_video {
	width: 535px;
	position: sticky;
	height: 350px;
	top: 150px;
	z-index: 4;
}

.category .content_information_detail article .content_video {
	height: 300px;
}

.category .content_information_detail article picture img,
.category .content_information_detail article .content_video iframe {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

/* Video */

/* Lottie */
.category .content_information_detail .content_bottom_animation {
	padding: 0;
	justify-content: flex-end;
	position: absolute;
	bottom: -10px;
	left: -150px;
}

/*Images*/
.category .content_images_bottom {
	height: 600px;
	display: flex;
	background: var(--blue);
}

.category .content_images_bottom img {
	height: 600px;
	width: 100%;
	object-fit: cover;
}

/* Arrow */
.category .content_images_bottom .slick-arrow {
	position: absolute;
	z-index: 3;
	left: 10px;
	bottom: 50%;
	border: none;
	border-radius: 50%;
	background-color: var(--white-08);
	width: 50px;
	height: 50px;
	font-size: 0;
}

.category .content_images_bottom .slick-arrow::before {
	width: 30px;
	height: 30px;
	position: absolute;
	top: 0;
	bottom: 0;
	margin: auto;
	right: 10px;
	background: url(../../img/ic_arrow_slider.svg) no-repeat;
	background-size: 100% auto;
	content: '';
	transition: all 0.35s ease-in-out;
}

.category .content_images_bottom .slick-next.slick-arrow {
	left: unset;
	right: 10px;
}

.category .content_images_bottom .slick-prev.slick-arrow::before {
	transform: rotate(180deg);
	right: 12px;
}

/* Hover */
.category .content_images_bottom .slick-prev.slick-arrow:hover::before {
	right: 15px;
}

.category .content_images_bottom .slick-next.slick-arrow:hover::before {
	right: 7px;
}


/* BASES */
/* Hero */
.bases .content_hero {
	padding: 200px 0 100px;
	pointer-events: all;
	background: var(--blue);
}

.bases .content_hero h2 {
	font-size: 4.5rem;
	color: var(--white);
	justify-content: center;
	text-align: center;
}

/*Categories List*/
.bases .content_categories_list {
	background: var(--blue);
	padding: 0 0 120px;
}

.bases .content_categories_list h3 {
	font-size: 2.625rem;
	margin: 0 140px 50px;
	color: var(--white);
}

.bases .content_categories_list ul {
	margin: 0 0 80px;
}

.bases .content_categories_list ul li {
	height: 105px;
	box-sizing: border-box;
	z-index: 1;
	margin: 0 0 15px;
}

.bases .content_categories_list ul li:hover {
	z-index: 3;
}

.bases .content_categories_list ul li a {
	height: 100%;
	justify-content: space-between;
	align-items: center;
	margin: 0 140px;
	box-sizing: border-box;
	background: var(--white);
	border-radius: 30px;
	padding: 0 40px;
	transition: all 0.2s ease-in-out;
	transition-delay: 0.2s;
}

/* Hover */
.bases .content_categories_list ul li a:hover {
	margin: 0;
	padding: 0 180px;
	border-radius: 0;
	transition-delay: 0s;
}

/* *Backgrounds*/
.bases .content_categories_list ul li.ff_challenge a:hover {
	background: var(--cat-challengue);
}

.bases .content_categories_list ul li.mati a:hover {
	background: var(--cat-vj-mati);
}

.bases .content_categories_list ul li.robo a:hover {
	background: var(--cat-vj-robo);
}

.bases .content_categories_list ul li.mine a:hover {
	background: var(--cat-vj-mine);
}

.bases .content_categories_list ul li.placas a:hover {
	background: var(--cat-placas);
}

.bases .content_categories_list ul li.ff_explore a:hover {
	background: var(--cat-league);
}

.bases .content_categories_list ul li.programacion a:hover {
	background: var(--cat-programacion);
}

.bases .content_categories_list ul li.drones a:hover {
	background: var(--cat-drones);
}

.bases .content_categories_list ul li.robotica a:hover {
	background: var(--cat-robotica);
}

.bases .content_categories_list ul li.community a:hover {
	background: var(--cat-community);
}


/*Name*/
.bases .content_categories_list ul li a .category_name {
	font-weight: 600;
	font-size: 1.625rem;
	transition: all 0.35s ease-in-out;
	color: var(--blue);
}

.bases .content_categories_list ul li a:hover .category_name {
	color: var(--white);
}

.bases .content_categories_list ul li.bases a:hover .category_name {
	color: var(--blue);
}

/*Cta*/
.bases .content_categories_list ul li a .cta {
	display: flex;
	align-items: center;
}

.bases .content_categories_list ul li a .cta svg {
	fill: none;
	stroke: var(--white);
	stroke-width: 2;
	transition: all 0.35s ease-in-out;
	transform: rotate(-45deg);
}

.bases .content_categories_list ul li a .cta svg path {
	stroke: var(--blue);
}

.bases .content_categories_list ul li a:hover .cta svg {
	transform: rotate(0deg);
}

.bases .content_categories_list ul li a:hover .cta svg path {
	stroke: var(--white);
}

.bases .content_categories_list ul li.bases a:hover .cta svg path {
	stroke: var(--blue);
}

/* PROJECT */
	/*Header*/
	.projects header{padding:170px 140px 0; background: var(--blue);}

		/*Heading*/
			.projects header .content_heading h2{font-weight:600; font-size: 2.625rem; text-transform: capitalize; color: var(--white); justify-content: center;}

	/*Projects List*/
	.projects .content_projects_list{padding:40px 0 500px; background: var(--blue);}

		/* Article */
		.projects .content_projects_list .center_content{width: 1400px; padding: 50px; background: var(--blue-2); border-radius: 20px; z-index: 4;}

			/*Filters*/
			.projects .content_projects_list .filters{display:flex; justify-content: space-between; padding: 0 0 40px; margin: 0 0 50px; align-items: center;}
			.projects .content_projects_list .filters::before{width: 100%; height: 1px; background: var(--white-02); position: absolute; bottom: 0; left: 0; content: '';}

				/*Label*/
				.projects .content_projects_list .filters .label_filter{font-weight:600; color:var(--white); font-size: 1.5rem;}

			/* Heading */
			.projects .content_projects_list .filters .content_cat{margin: 0 30px 0 0;}
			.projects .content_projects_list .filters .content_cat:last-child{margin: 0;}

				.projects .content_projects_list .filters .content_cat label{font-size: 1.5rem; font-weight: 600; color: var(--white); justify-content: center; margin: 0 0 10px; width: 300px;}

				/*Select*/
				.projects .content_projects_list .filters .content_select{display: flex;}

					.projects .content_projects_list .filters .select{width:300px;}

			/*List*/
			.projects .content_projects_list .content_list{display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:55px 25px;}

				.projects .content_projects_list .content_list li{position:relative; border-radius: 20px; overflow: hidden;}

						/* Background Categories */
						.projects .content_projects_list .content_list li .content_category.lego_explore_bg{background:var(--cat-league);}
						.projects .content_projects_list .content_list li .content_category.lego_challenge_bg{background:var(--cat-challengue);}
						.projects .content_projects_list .content_list li .content_category.programming_bg{background:var(--cat-programacion);}
						.projects .content_projects_list .content_list li .content_category.videojuegos_bg{background:var(--cat-videojuegos);}
						.projects .content_projects_list .content_list li .content_category.bit_bg{background:var(--cat-placas);}
						.projects .content_projects_list .content_list li .content_category.robotics_bg{background:var(--cat-robotica);}
						.projects .content_projects_list .content_list li .content_category.drons_bg{background:var(--cat-drones);}
						.projects .content_projects_list .content_list li .content_category.community_bg{background: var(--cat-community);}

						.projects .content_projects_list .content_list li a{align-content: flex-start; height: 100%;}

					/*Image*/
					.projects .content_projects_list .content_list li .content_category{height:195px; width: 100%; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; align-content: center;}

						.projects .content_projects_list .content_list li .content_category img{width:80px; height:80px; object-fit:contain;}

						.projects .content_projects_list .content_list li .content_category label{color: var(--white); justify-content: center; font-size: 1.25rem; font-family: 'ceibal_mozaicbold'; margin: 5px 0 0;}

					/*Box*/
					.projects .content_projects_list .content_list li .content_box{padding:25px; display:flex; flex-wrap:wrap; background: var(--white); height: 100%; align-content: flex-start;}

						/*Heading*/
						.projects .content_projects_list .content_list li .content_box h4{font-weight:700; font-size:1.500rem; color:var(--black); line-height:1; margin:0 0 15px;}

						/*School*/
						.projects .content_projects_list .content_list li .content_box .school{text-transform:uppercase;font-size: 1rem; color:var(--black);}

						/*Department*/
						.projects .content_projects_list .content_list li .content_box .department{text-transform:uppercase;font-size: 1rem; color:var(--black); }

			/* Lottie */
			.projects .animation_project{position: absolute; bottom: -10px; left: 0; right: 0; width: 100%; justify-content: center;}

/*PROJECT DETAIL*/
	.project_detail .project_information{padding: 170px 140px; background: var(--blue); justify-content: center;}

		/*Center*/
		.project_detail .project_information .center_content{display:flex; flex-wrap:wrap; justify-content:space-between; background: var(--blue); width: 1400px; margin: unset; }

		/*Heading*/
			.project_detail .project_information .content_heading h3{font-size: 3.5rem; text-transform: uppercase; color: var(--white); font-weight: 600; justify-content: center;}

			/*Column Left*/
			.project_detail .center_content .col_left{width:725px; margin: 40px 0 0;}

					/*Heading*/
					.project_detail .center_content .col_left h2{font-weight:600; font-size:2.625rem; padding:0 130px 0 0; color:var(--black); box-sizing:border-box;}

				/*Video*/
				.project_detail .center_content .col_left .content_video{height:410px; overflow:hidden; margin:0 0 40px;}

					/*Poster*/
					.project_detail .center_content .col_left .poster{width:100%; height:100%; position:absolute; top:0; left:0; z-index:3;}
					.project_detail .center_content .col_left .hide .poster{opacity:0; pointer-events:none;}

						/*Player*/
						.project_detail .center_content .col_left .content_video .poster .player{width:85px; height:85px; position:absolute; top:0; bottom:0; left:0; right:0; margin:auto; z-index:4; border-radius:90px; margin:auto; transition:all 0.5s cubic-bezier(.68,-0.55,.27,1.55); -webkit-transition:all 0.5s cubic-bezier(.68,-0.55,.27,1.55);}
						.project_detail .center_content .col_left .content_video .poster:hover .player{transform:scale(1.2);}

							.project_detail .center_content .col_left .content_video .poster .player::before{display:inline-block; width:0; height: 0; border-style:solid; border-width:11px 0 11px 16px; border-color:transparent transparent transparent var(--white); position:absolute; top:0; left:2px; right:0; bottom:0; margin:auto; content:'';}

							/*Background*/
							.project_detail.robotics .center_content .col_left .content_video .poster .player{background:var(--cat-robotica);}
							.project_detail.programming .center_content .col_left .content_video .poster .player{background:var(--cat-programacion);}
							.project_detail.videojuegos .center_content .col_left .content_video .poster .player{background:var(--cat-videojuegos);}
							.project_detail.programmable_plates .center_content .col_left .content_video .poster .player{background:var(--cat-placas);}
							.project_detail.lego_explore .center_content .col_left .content_video .poster .player{background:var(--cat-league);}
							.project_detail.lego_challenge .center_content .col_left .content_video .poster .player{background:var(--cat-challengue);}
							.project_detail.drons .center_content .col_left .content_video .poster .player{background:var(--cat-drones);}
							.project_detail.community .center_content .col_left .content_video .poster .player{background: var(--cat-community);}

						/*Overlay*/
						.project_detail .center_content .col_left .poster::before{width:100%; height:100%; position:absolute; top:0; left:0; z-index:3; background:var(--black-04); content:'';}

						/*Iframe*/
						.project_detail .center_content .col_left .content_video video{width:100%; height:410px; pointer-events:none;}
						.project_detail .center_content .col_left .content_video.hide video{pointer-events:all;}

				/*Scratch*/
				.project_detail .center_content .col_left .content_scratch{margin:0 0 40px;}

					.project_detail .center_content .col_left .content_scratch iframe{width:100%;}

				/*Text*/
				.project_detail .center_content .col_left .content_text{margin:30px 0 0;}

					/*Heading*/
					.project_detail .center_content .col_left .content_text h3{font-weight:700; font-size:2rem; color:var(--white); margin:0 0 20px;}

					/*Paragraph*/
					.project_detail .center_content .col_left .content_text p{font-weight: 400; color:var(--white); margin:0 0 35px; font-size: 1rem; line-height: 24px;}

			/*Column Right*/
			.project_detail .center_content .col_right{width:420px; z-index:2; background:var(--blue-2); position:sticky; top:130px; align-self:flex-start; display:flex; flex-wrap:wrap; align-content:flex-start; margin: 40px 0 0; border-radius: 20px; overflow: hidden;}

				.project_detail .center_content .col_right .content_heading_mobile{display:none;}

				/*Logo Category*/
				.project_detail .center_content .col_right .content_logo_category{height:135px; display:flex; justify-content:center; align-items:center;}

				/* Img */
					.project_detail .center_content .col_right .content_logo_category img{margin:0 25px 0 0;}

						.project_detail.programmable_plates .center_content .col_right .content_logo_category img,
						.project_detail.programming .center_content .col_right .content_logo_category img{width:70px;}
						.project_detail.robotics .center_content .col_right .content_logo_category img{width:60px;}
						.project_detail.videojuegos .center_content .col_right .content_logo_category img{width: 60px;}
						.project_detail.lego_explore .center_content .col_right .content_logo_category img,
						.project_detail.lego_challenge .center_content .col_right .content_logo_category img{width: 95px; margin: 0;}
						.project_detail.drons .center_content .col_right .content_logo_category img,
						.project_detail.community .center_content .col_right .content_logo_category img{width: 65px;}

					.project_detail .center_content .col_right .content_logo_category .text{color:var(--white);}

					/*Background*/
					.project_detail.programming .center_content .col_right .content_logo_category{background:var(--cat-programacion);}
					.project_detail.lego_explore .center_content .col_right .content_logo_category{background:var(--cat-league);}
					.project_detail.lego_challenge .center_content .col_right .content_logo_category{background:var(--cat-challengue);}
					.project_detail.videojuegos .center_content .col_right .content_logo_category{background:var(--cat-videojuegos);}
					.project_detail.programmable_plates .center_content .col_right .content_logo_category{background:var(--cat-placas);}
					.project_detail.robotics .center_content .col_right .content_logo_category{background:var(--cat-robotica);}
					.project_detail.drons .center_content .col_right .content_logo_category{background:var(--cat-drones);}
					.project_detail.community .center_content .col_right .content_logo_category{background:var(--cat-community);}

				/*Text*/
				.project_detail .center_content .col_right .content_text{padding:45px 40px;}

					/*Label*/
					.project_detail .center_content .col_right .label{font-weight:400; color:var(--white); text-transform:uppercase; margin:0 0 10px;}

					/*Heading*/
					.project_detail .center_content .col_right h4{font-weight:600; font-size:1.5rem; color:var(--white); margin:0 0 25px;}
					.project_detail .center_content .col_right h4:last-child{margin:0;}

	/*Other Projects*/
	.project_detail .content_other_projects{padding:0 140px 500px; background: var(--blue); justify-content: center;}

		/* Article */
		.project_detail .content_other_projects .center_content{width: 1400px; background: var(--blue-2); padding: 50px 60px; border-radius: 20px; z-index: 4;}

			.project_detail .content_other_projects h3{font-size: 1.5rem; text-transform: uppercase; letter-spacing: 4px; color: var(--white); font-weight: 400; justify-content: center;}

			/*Project List*/
			.project_detail .content_other_projects .content_list{display:grid; grid-template-columns:repeat(3, minmax(0, 1fr)); gap:55px 25px; padding: 40px 0 0;}

				.project_detail .content_other_projects .content_list li{position:relative; border-radius: 20px; overflow: hidden;}

					/* Background Category */
					.project_detail .content_other_projects .content_list li .content_category.lego_explore_bg{background:var(--cat-league);}
					.project_detail .content_other_projects .content_list li .content_category.lego_challenge_bg{background:var(--cat-challengue);}
					.project_detail .content_other_projects .content_list li .content_category.programming_bg{background:var(--cat-programacion);}
					.project_detail .content_other_projects .content_list li .content_category.videojuegos_bg{background:var(--cat-videojuegos);}
					.project_detail .content_other_projects .content_list li .content_category.bit_bg{background:var(--cat-placas);}
					.project_detail .content_other_projects .content_list li .content_category.robotics_bg{background:var(--cat-robotica);}
					.project_detail .content_other_projects .content_list li .content_category.drons_bg{background:var(--cat-drones);}
					.project_detail .content_other_projects .content_list li .content_category.community_bg{background:var(--cat-community);}

						.project_detail .content_other_projects .content_list li a{align-content: flex-start; height: 100%;}

					/*Image*/
					.project_detail .content_other_projects .content_list li .content_category{height: 195px; width: 100%; display: flex; justify-content: center; align-items: center; flex-wrap: wrap; align-content: center;}

						.project_detail .content_other_projects .content_list li .content_category img{width: 80px; height: 80px; object-fit: contain;}

						.project_detail .content_other_projects .content_list li .content_category label{color: var(--white); font-size: 1.25rem; justify-content: center; font-family: 'ceibal_mozaicbold'; margin: 5px 0 0;}

					/*Box*/
					.project_detail .content_other_projects .content_list li .content_box{padding:25px; display:flex; flex-wrap:wrap; background: var(--white); height: 100%; align-content: flex-start;}

						/*Arrow*/
						.project_detail .content_other_projects .content_list li .content_box::before{width:34px; height:28px; position:absolute; bottom:20px; right:25px; transition:all 0.35s ease-in-out; -webkit-transition:all 0.35s ease-in-out; opacity:0; transform:translateX(-20px); -webkit-transform:translateX(-20px); background:url(../../img/bg_arrow_projects.svg); content:'';}
						.project_detail .content_other_projects .content_list li:hover .content_box::before{opacity:1; transform:translateX(0); -webkit-transform:translateX(0);}

						/*Heading*/
						.project_detail .content_other_projects .content_list li .content_box h4{font-weight:600; font-size:1.5rem; color:var(--black); margin:0 0 10px;}

						/*School*/
						.project_detail .content_other_projects .content_list li .content_box .school{text-transform:uppercase; font-weight:400; font-size: 1rem; color:var(--black);}

						/*Department*/
						.project_detail .content_other_projects .content_list li .content_box .department{text-transform:uppercase; font-weight:400; font-size: 1rem; color:var(--black); }

		/* Lottie */
		.project_detail .animation_project{position: absolute; bottom: -10px; left: 0; right: 0; width: 100%; justify-content: center;}

			.project_detail .animation_project .animation_form{width: 100%;}

/*FOOTER*/
footer {
	padding: 80px 0 90px;
	background: var(--black);
}

footer article {
	padding: 0 140px;
}

/*Up Content*/
footer .content_up {
	display: flex;
	justify-content: space-between;
	margin: 0 0 40px;
}

/*Logo*/
footer .content_up .content_logo {
	display: flex;
	justify-content: space-between;
	align-items: center;
}

footer .content_up .content_logo a img {
	width: 395px;
}

/*Social*/
footer .content_up .content_social {
	width: 420px;
	display: flex;
	align-items: center;
	justify-content: flex-start;
}

footer .content_up .content_social li {
	margin: 0 20px 0 0;
	position: relative;
}

footer .content_up .content_social li:last-child {
	margin: 0 0 0 20px;
}

footer .content_up .content_social li a {
	display: flex;
	align-content: center;
}

/*Line*/
footer .content_up .content_social li:last-child::before {
	width: 1px;
	height: 25px;
	position: absolute;
	top: 0;
	left: -20px;
	background: var(--white);
	content: '';
}

/*Svg Icons*/
footer .content_up .content_social li a svg {
	fill: var(--white);
	transition: all 0.5s ease-in-out;
}

footer .content_up .content_social li a:hover svg {
	fill: var(--cat-drones);
}

/*Down Content*/
footer .content_down {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
}

/*Site Map*/
footer .content_down .content_sitemap {
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
}

/*Categories*/
footer .content_down .content_sitemap .categories {
	width: 440px;
	display: flex;
	flex-wrap: wrap;
	margin: 0 55px 0 0;
}

footer .content_down .content_sitemap .categories li {
	width: 50%;
	margin: 0 0 30px;
}

footer .content_down .content_sitemap .categories li:first-child {
	width: 100%;
}

footer .content_down .content_sitemap .categories li:nth-child(4),
footer .content_down .content_sitemap .categories li:nth-child(5) {
	margin: 0;
}

footer .content_down .content_sitemap .categories li span {
	font-weight: 700;
	font-size: 0.875rem;
}

/*Links*/
footer .content_down .content_sitemap .links {
	display: flex;
	justify-content: space-between;
}

footer .content_down .content_sitemap .links li {
	margin: 0 60px 0 0;
	display: flex;
	align-items: center;
}

footer .content_down .content_sitemap .links li:last-child {
	margin: 0 0 0 100px;
}

/*Hash*/
footer .content_down .content_sitemap .links li .hash {
	font-weight: 400;
	font-size: 1.125rem;
	color: var(--white);
	margin: 0 15px 0 0;
}

/*Steam*/
footer .content_down .content_sitemap .links li .steam {
	height: 30px;
	background: var(--white);
	border-radius: 60px;
	display: flex;
	justify-content: center;
	align-items: center;
	font-weight: 400;
	font-size: 1rem;
	padding: 0 10px;
}


/*Generics Links*/
footer .content_down .content_sitemap li a {
	font-size: 1.125rem;
	font-weight: 400;
	color: var(--white);
	position: relative;
}

/*Hover*/
footer .content_down .content_sitemap li a::before {
	width: 100%;
	height: 1px;
	position: absolute;
	bottom: -5px;
	left: 0;
	background: var(--white);
	transform: scaleX(0);
	transform-origin: center;
	transition: all 0.5s ease-in-out;
	content: '';
}

footer .content_down .content_sitemap li a:hover::before {
	transform: scaleX(1);
}

/*Information*/
footer .content_down .content_information {
	width: 420px;
	display: flex;
	flex-wrap: wrap;
}

/*Label*/
footer .content_down .content_information .label {
	font-weight: 400;
	font-size: 1.125rem;
	color: var(--white);
	margin: 0 0 15px;
}

/*Email*/
footer .content_down .content_information .content_mailto {
	border-bottom: var(--white) 1px solid;
	margin: 0 0 20px;
}

footer .content_down .content_information .email {
	margin: 0 0 15px;
	justify-content: space-between;
	align-items: center;
}

footer .content_down .content_information .email span {
	font-weight: 400;
	font-size: 1.5rem;
	color: var(--white);
	margin: 0 20px 0 0;
}

footer .content_down .content_information .email img {
	position: relative;
	transition: all 0.5s ease-in-out;
	-webkit-transition: all 0.5s ease-in-out;
}

footer .content_down .content_information .email:hover img {
	transform: translateX(10px);
	-webkit-transform: translateX(10px);
}

/*Copyright*/
footer .content_down .content_information .content_copyright {
	display: flex;
	flex-wrap: wrap;
}

footer .content_down .content_information .content_copyright span {
	font-weight: 400;
	font-size: 0.875rem;
	color: var(--white);
}

footer .content_down .content_information .content_copyright .bold {
	font-weight: 400;
	margin: 0 0 10px;
}


/*Media Query 1750px Breakpoint*/
@media (max-width: 1750px) {

	/*CATEGORIES*/

	/*Header*/
	.category header {
		height: 420px;
	}

}

/*Media Query 1600px Breakpoint*/
@media (max-width: 1600px) {

	/*NAVIGATION*/
	.content_navigation {
		width: calc(100% - 140px);
	}

	.content_navigation .content_logo .logo {
		width: 190px;
	}

	.content_navigation .content_links {
		width: calc(100% - 850px);
	}

	/*HOME*/
	/* Hero */
	.home .content_hero .content_box{
		padding: 145px 65px 50px;
	}

	.home .content_hero .content_contact{
		padding: 65px;
	}

	.home .content_hero .content_contact .content_text h4{
		margin: 0 0 5px;
	}

	.home .content_hero .content_contact .content_text p{
		margin: 0 0 10px;
	}

	/*Faqs*/
	.home .content_faqs {
		padding: 170px 70px 120px;
	}

	.home .content_faqs .faqs_list {
		padding: 90px 0;
	}

	/*Categories List*/

	.home .content_categories_list ul li a {
		padding: 0 70px;
	}

	/*Contact Form*/
	.home .content_contact_form article {
		padding: 0 70px;
	}

	.home .content_contact_form article .content_form {
		width: 40%;
	}

	/*CATEGORIES*/

	/*Header*/
	.category header {
		height: 370px;
	}

	.category header .content {
		padding: 0 70px;
	}

	.category header .content_bg_animation {
		left: -90px;
	}

	.category header .content_bg_animation .animation_header_fllc,
	.category header .content_bg_animation .animation_header_videojuegos,
	.category header .content_bg_animation .animation_header_bit,
	.category header .content_bg_animation .animation_header_flle,
	.category header .content_bg_animation .animation_header_programacion,
	.category header .content_bg_animation .animation_header_drones,
	.category header .content_bg_animation .animation_header_robotica,
	.category header .content_bg_animation .animation_header_community {
		width: 25%;
	}

	/*Information Detail*/

	.category .content_information_detail article {
		padding: 0 70px;
	}

	/* PROJECT DETAIL */
	.project_detail .project_information{
		padding: 170px 70px;
	}

	.project_detail .project_information .center_content{
		width: 1200px;
	}

	.project_detail .content_other_projects{
		padding: 0 70px 500px;
	}

	/*FOOTER*/

	footer article {
		padding: 0 70px;
	}

}

/*Media Query 1400px Breakpoint*/
@media (max-width: 1400px) {

	/*NAVIGATION*/
	.content_navigation {
		height: 100px;
	}

	.content_navigation .content_logo {
		width: 415px;
	}

	.content_navigation .content_logo .logo {
		width: 160px;
	}

	.content_navigation .content_heading {
		width: 720px;
	}

	.content_navigation .content_heading h3 {
		font-size: 1.125rem;
	}

	.content_navigation .content_links {
		width: calc(100% - 450px);
	}

	/*HOME*/

	/*Hero*/
	.home .content_hero .content_box {
		padding: 120px 70px 25px;
	}

	.home .content_hero .content_box .content_information{
		padding: 20px;
	}

	.home .content_hero .content_box .content_information h2 {
		font-size: 2.5rem;
	}

	.home .content_hero .content_box .content_information p{
		margin: 10px 0;
	}

	.home .content_hero .content_box .content_information .information_list{
		margin: 0 0 20px;
	}

	.home .content_hero .content_contact .content_text p{
		font-size: 1.25rem;
		line-height: 1.3;
	}
	/*CATEGORIES*/

	/*Header*/
	.category header {
		height: 325px;
	}

	.category header .content_heading .content_ico {
		height: 180px;
		width: 180px;
	}

	/* Information */

	.category .content_information_detail article .information {
		width: calc(100% - 480px);
	}

	.category .content_information_detail article picture,
	.category .content_information_detail article .content_video {
		width: 450px;
	}

	/* Slider */

	.category .content_images_bottom {
		height: 620px;
	}

	.category .content_images_bottom img {
		height: 620px;
	}

	/* BASES */
	.bases .content_categories_list ul {
		margin: 0 0 60px;
	}

	/* PROJECT */
	.projects .content_projects_list .center_content{
		width: 1200px;
	}
}

/*Media Query 1300px Breakpoint*/
@media (max-width: 1300px) {

	/*HOME*/

	.home .content_hero .content_box .content_youtube {
		height: 290px;
	}


	/* Categories */
	.home .content_categories_list ul li a {
		margin: 0 90px;
		padding: 0 50px;
	}

	.home .content_categories_list ul li a:hover {
		padding: 0 140px;
	}

	/* CATEGORIES */
	.category header .content_heading h1 {
		font-size: 4rem;
	}

	/* BASES */
	.bases .content_categories_list h3 {
		margin: 0 90px 50px;
	}

	.bases .content_categories_list ul li a {
		margin: 0 90px;
		padding: 0 50px;
	}

	.bases .content_categories_list ul li a:hover {
		padding: 0 140px;
	}

	/* PROJECT DETAIL */
	.project_detail .project_information .center_content{
		width: 100%;
	}

	.project_detail .center_content .col_left{
		width: 650px;
	}

}

/*Media Query 1200px Breakpoint Ipad Landscape*/
@media (max-width: 1200px) {

	/*NAVIGATION*/
	.content_navigation {
		width: calc(100% - 70px);
	}

	.content_navigation .content_logo {
		width: 280px;
	}

	.content_navigation .content_logo .content_square {
		display: none;
	}

	.content_navigation .content_heading {
		width: 380px;
	}

	.content_navigation .content_heading h3 {
		font-size: 1rem;
	}

	.content_navigation .content_square3 {
		display: none;
	}

	.content_navigation .content_links {
		width: calc(100% - 450px);
	}

	/*HOME*/
	/*Hero*/
	.home .content_hero {
		height: auto;
		min-height: 100vh;
	}

	.home .content_hero .content_box {
		padding: 120px 35px 0;
	}

	.home .content_hero .content_box .content_information .information_list{
		flex-wrap: wrap;
		justify-content: center;
		row-gap: 10px;
	}

	.home .content_hero .content_box .content_youtube {
		height: 240px;
	}

	.home .content_hero .content_box .content_information h2 {
		margin: 0 0 10px;
	}

	.home .content_hero.show .content_box .content_information .content_buttons {
		row-gap: 20px;
	}

	.home .content_hero .content_box .content_information .content_buttons .button.white {
		width: 100%;
		margin: 0;
	}

	.home .content_hero .content_box .content_information .content_buttons .button.small {
		width: 100%;
	}

	.home .content_hero .content_box .content_information .content_buttons .button {
		width: 100%;
	}

	.home .content_hero .content_contact{
		padding: 65px 35px;
	}

	.home .content_hero .content_contact .content_text h4{
		font-size: 1.5rem;
	}

	.home .content_hero .content_contact .content_text p{
		font-size: 1rem;
	}

	/*Faqs*/
	.home .content_faqs {
		padding: 150px 35px 120px;
	}

	/*Categories List*/

	.home .content_categories_list ul li a {
		padding: 0 35px;
		margin: 0 35px;
	}

	.home .content_categories_list ul li a .content_icon {
		display: none;
	}

	.home .content_categories_list ul li a:hover {
		padding: 0 70px;
	}

	/*Form*/
	.home .content_contact_form {
		padding: 0 0 70px;
	}

	.home .content_contact_form article {
		padding: 0 35px;
	}

	.home .content_contact_form article .content_information h2 {
		font-size: 2rem;
	}

	.home .content_contact_form article .content_form .content_success {
		background: transparent;
	}

	/*CATEGORIES*/

	/*Header*/
	.category header {
		height: 290px;
	}

	.category header .content_heading {
		padding: 90px 0 0;
	}

	.category header .content_heading .content_ico {
		height: 140px;
		width: 140px;
	}

	.category header .content_heading .content_ico figure {
		display: flex;
		justify-content: center;
	}

	.category header .content_heading .content_ico figure img {
		width: 70%;
	}

	.category header .content_heading h1 {
		font-size: 2.5rem;
		line-height: 1;
	}

	.category header .content_bg_animation {
		left: -35px;
	}

	/*Information Detail*/

	.category .content_information_detail article {
		padding: 0 35px;
	}

	.category .content_information_detail article .information {
		width: calc(100% - 450px);
	}

	.category .content_information_detail article .information .content_button {
		justify-content: space-between;
		row-gap: 15px;
	}

	.category .content_information_detail article .information .button.small {
		margin: 0;
		width: 48%;
	}

	.category .content_information_detail article picture,
	.category .content_information_detail article .content_video {
		width: 425px;
	}

	/*Slider*/
	.category .content_images_bottom {
		height: 350px;
	}

	.category .content_images_bottom img {
		height: 350px;
	}

	/* BASES */
	.bases .content_categories_list h3 {
		margin: 0 35px 50px;
	}

	.bases .content_categories_list ul li a {
		padding: 0 35px;
		margin: 0 35px;
	}

	.bases .content_categories_list ul li a:hover {
		padding: 0 70px;
	}

	/* PROJECT */
	.projects .content_projects_list{
		padding: 40px 35px 100px;
	}

	.projects .content_projects_list .center_content{
		width: 100%;
		padding: 25px;
	}

	.projects .content_projects_list .filters .content_cat{
		margin: 0 20px 0 0;
	}

	.projects .content_projects_list .filters .select{
		width: 240px;
	}

	.projects .content_projects_list .filters .content_cat label{
		width: 240px;
		font-size: 1.25rem;
	}

	/* PROJECT DETAIL */
	.project_detail .project_information{
		padding: 120px 35px;
	}

	.project_detail .center_content .col_left{
		width: 50%;
	}

	.project_detail .center_content .col_right{
		width: 45%;
	}

	.project_detail .content_other_projects{
		padding: 0 35px 400px;
	}

	.project_detail .content_other_projects .center_content{
		width: 100%;
		padding: 25px;
	}

	/*FOOTER*/

	footer article {
		padding: 0 35px;
	}

	footer .content_down .content_sitemap .links li {
		margin: 0 35px 0 0;
	}

	footer .content_down .content_sitemap .links li:last-child {
		margin: 0;
	}

}

/*Media Query Ipad Portrait General*/
@media (max-width: 1000px) {

	/*GENERICS*/

	/*Form*/

	/*Input*/
	input {
		height: 50px;
		padding: 0 15px;
		font-size: 1rem;
	}

	/*Textarea*/
	textarea {
		height: 230px;
		padding: 15px;
		font-size: 1rem;
	}

	/*NAVIGATION*/
	.content_navigation {
		width: 100%;
		height: 70px;
		border: none;
	}

	.content_navigation .content_logo .logo {
		width: auto;
		padding: 0 20px;
		border: none;
	}

	.content_navigation .content_logo .logo a {
		width: 100px;
	}

	/*Burger Menu*/
	.content_navigation .btn_burger {
		display: block;
		width: 30px;
		height: 20px;
		position: absolute;
		top: 23px;
		right: 20px;
		z-index: 11;
		pointer-events: all;
	}

	.content_navigation .btn_burger::after {
		width: 100%;
		height: 2px;
		position: absolute;
		top: 0;
		right: 0;
		background: var(--white);
		content: '';
	}

	.content_navigation .btn_burger::before {
		width: 100%;
		height: 2px;
		position: absolute;
		bottom: 0;
		right: 0;
		background: var(--white);
		content: '';
	}

	.content_navigation .btn_burger span {
		width: 100%;
		height: 2px;
		position: absolute;
		top: 0;
		bottom: 0;
		right: 0;
		margin: auto;
		background: var(--white);
		font-size: 0;
	}

	.content_navigation .btn_burger span::before {
		width: 30px;
		height: 2px;
		position: absolute;
		top: 0;
		left: 0;
		bottom: 0;
		right: 0;
		margin: auto;
		background: var(--white);
		content: '';
	}

	/*Animations*/
	.content_navigation .btn_burger::before,
	.content_navigation .btn_burger::after {
		transition: all 0.35s ease-in-out;
		-webkit-transition: all 0.35s ease-in-out;
		will-change: opacity;
		transition-delay: 0.5s;
		-webkit-transition-delay: 0.5s;
	}

	.content_navigation .btn_burger.open::before,
	.content_navigation .btn_burger.open::after {
		opacity: 0;
		transition-delay: 0s;
		-webkit-transition-delay: 0s;
	}

	.content_navigation .btn_burger span {
		transition: all 0.35s ease-in-out;
		-webkit-transition: all 0.35s ease-in-out;
		will-change: transform;
		transition-delay: 0.35s;
		-webkit-transition-delay: 0.35s;
	}

	.content_navigation .btn_burger.open span {
		transform: rotate(45deg);
		-webkit-transform: rotate(45deg);
	}

	.content_navigation .btn_burger span::before {
		transition: all 0.35s ease-in-out;
		-webkit-transition: all 0.35s ease-in-out;
		will-change: transform;
		transition-delay: 0.35s;
		-webkit-transition-delay: 0.35s;
	}

	.content_navigation .btn_burger.open span::before {
		transform: rotate(-90deg);
		-webkit-transform: rotate(-90deg);
	}

	.content_navigation .content_heading {
		display: none;
	}

	.content_navigation .content_links {
		width: 100%;
		position: absolute;
		top: 70px;
		height: calc(100vh - 70px);
		background: var(--blue);
		flex-wrap: wrap;
		align-content: center;
		transition: all 0.75s cubic-bezier(0.25, 0.1, 0.1, 1);
		clip-path: inset(0 0 100% 0);
		pointer-events: none;
	}

	.content_navigation.open .content_links {
		clip-path: inset(0 0 0 0);
		pointer-events: all;
	}

	.content_navigation .content_links .item {
		width: 100%;
		height: auto;
		margin: 0 0 30px;
		flex-wrap: wrap;
	}

	.content_navigation .content_links .item .link {
		font-size: 1.250rem;
		color: var(--white);
	}

	.content_navigation .content_links .item .content_submenu {
		position: relative;
		top: auto;
		opacity: 1;
		pointer-events: all;
		border: none;
		background: var(--blue);
	}

	.content_navigation .content_links .item .link.base::before {
		content: none;
	}


	/*HOME*/

	/*Hero*/
	.home .content_hero {
		height: auto;
		padding: 0 0 60px;
		align-content: center;
	}

	.home .content_hero .content_box {
		width: calc(100% - 40px);
		height: auto;
		padding: 100px 0 0 0;
		justify-content: center;
		flex-wrap: wrap-reverse;
	}

	.home .content_hero .content_box .content_information {
		width: 100%;
	}

	.home .content_hero .content_box .content_information .content_number {
		line-height: 60px;
	}

	.home .content_hero .content_box .content_information .content_number .number {
		font-size: 4.5rem;
	}

	.home .content_hero .content_box .content_information .content_number .text {
		font-size: 3.5rem;
		line-height: 49px;
	}

	.home .content_hero .content_box .content_information h2 {
		font-size: 1.5rem;
	}

	.home .content_hero .content_box .content_information h2 br {
		display: none;
	}

	.home .content_hero .content_box .content_information .content_text h3{
		width: 100%;
		font-size: 1rem;
	}

	.home .content_hero .content_box .content_information .content_text p{
		width: 100%;
	}

	.home .content_hero .content_box .content_information .content_text .content_social{
		width: 100%;
		margin: 20px 0 0;
		column-gap: 25px;
		justify-content: flex-start;
	}

	.home .content_hero .content_box .content_youtube {
		height: 200px;
		width: 100%;
		padding: 0 0 20px;
	}

	.home .content_hero .animation_hero {
		width: 100%;
		padding: 0 20px;
		height: 45%;
		top: -35px;
		position: inherit;
		order: 0;
	}

	.home .content_hero .content_contact{
		padding: 20px 20px 0;
	}

	.home .content_hero .content_contact .content_text{
		width: 100%;
		border-radius: 10px 10px 0 0;
	}

	.home .content_hero .content_contact .content_projects{
		width: 100%;
		height: 200px;
		border-radius: 0 0 10px 10px;
	}

	.home .content_contact_form .animation_contact .animation_form {
		display: none;
	}

	.home .content_contact_form .animation_contact .img_form {
		display: flex;
		width: 100%;
		height: 100%;
	}

	.home .content_contact_form .animation_contact .img_form img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}

	/*Categories Marquee*/
	.home .content_categories {
		height: 70px;
	}

	.home .content_categories .marquee-content-items li .name {
		font-size: 1.250rem;
	}

	/*Categories List*/
	.home .content_categories_list {
		padding: 20px 0 0;
	}

	.home .content_categories_list ul li a {
		padding: 0 20px;
		margin: 0 20px;
	}

	.home .content_categories_list ul li a .category_name {
		font-size: 1.75rem;
		width: calc(100% - 35px);
	}

	.home .content_categories_list ul li a .cta span {
		display: none;
	}

	.home .content_categories_list ul li a .cta svg {
		width: 25px;
	}

	.home .content_categories_list ul li a:hover {
		padding: 0 40px;
	}

	/*Faqs*/
	.home .content_faqs {
		padding: 50px 20px 75px;
	}

	.home .content_faqs .faqs_list {
		padding: 25px 0;
	}

	/*Content*/
	.home .content_faqs article .content_heading h2 {
		font-size: 1.5rem;
		text-align: center;
	}

	.home .content_faqs .faqs_list li {
		padding: 10px 20px;
	}

	.home .content_faqs .faqs_list li .open_close {
		padding: 0;
	}

	.home .content_faqs .faqs_list li .open_close span {
		width: calc(100% - 50px);
		font-size: 1.125rem;
	}

	.home .content_faqs .faqs_list li .content_information {
		padding: 0;
	}

	.home .content_faqs .faqs_list li.open .content_information {
		padding: 0 0 20px;
	}

	.home .content_faqs .faqs_list li .content_information p {
		font-size: 1.125rem;
		line-height: 1.2;
	}

	/*Form*/
	.home .content_contact_form {
		padding: 0;
	}

	/*Content*/
	.home .content_contact_form article {
		padding: 0 20px;
	}

	.home .content_contact_form article .content_information {
		width: 100%;
		margin: 0 0 50px;
	}

	.home .content_contact_form article .content_information h2 {
		font-size: 1.75rem;
		text-align: center;
		margin: 20px 0;
		line-height: 1;
	}

	.home .content_contact_form article .content_information h2 br {
		display: none;
	}

	.home .content_contact_form article .content_information h3 {
		font-size: 1.5rem;
		text-align: center;
		justify-content: center;
	}

	.home .content_contact_form article .content_form {
		width: 100%;
		margin: 0;
	}

	.home .content_contact_form article .content_form ul li .button {
		width: 100%;
		height: 50px;
	}

	/* Success */

	.home .content_contact_form article .content_form.success .content_information {
		display: none;
	}

	.home .content_contact_form article .content_form .content_success h3 {
		font-size: 2.5rem;
	}

	.home .content_contact_form article .content_form .content_success h3 br {
		display: none;
	}

	.home .toast_success {
		display: none;
	}

	.home .toast_error {
		display: none;
	}

	/* Lottie */
	.home .content_contact_form .animation_contact {
		position: inherit;
	}

	/*CATEGORIES*/

	/*Header*/
	.category header {
		height: auto;
		padding: 80px 0 0;
	}

	.category header .content {
		padding: 0 20px;
	}

	.category header .content_heading {
		padding: 25px 0 0;
	}

	.category header .content_heading .content_ico {
		width: 100px;
		height: 100px;
		margin: 0 0 25px;
	}

	.category header .content_heading h1 {
		width: 100%;
	}

	.category header .content_heading h1 br {
		display: none;
	}

	.category header .content_bg_animation {
		display: none;
	}

	/*Information Detail*/
	.category .content_information_detail {
		padding: 50px 0 70px;
	}

	.category .content_information_detail article {
		padding: 0;
		flex-wrap: wrap-reverse;
	}

	.category .content_information_detail article .information {
		width: 100%;
		padding: 0 20px;
	}

	.category .content_information_detail article .information h2 {
		font-size: 1.5rem;
		margin: 0 0 30px;
	}

	.category .content_information_detail article .information h3 {
		font-size: 1.250rem;
	}

	.category .content_information_detail article .information p {
		font-size: 1.125rem;
		line-height: 1.1;
	}

	.category .content_information_detail article .information .button {
		width: 100%;
	}

	.category.videojuegos .content_information_detail article .information .button {
		width: 100%;
		margin: 0 0 15px 0;
	}

	.category .content_information_detail article picture,
	.category .content_information_detail article .content_video {
		width: 100%;
		margin: 0 0 35px;
		height: 190px;
		position: revert;
		display: flex;
	}

	.category .content_information_detail .content_bottom_animation {
		bottom: -80px;
	}

	/*Slider*/
	.category .content_images_bottom {
		height: 230px;
	}

	.category .content_images_bottom img {
		height: 230px;
	}

	.category .content_images_bottom .slick-arrow {
		bottom: 42%;
	}

	/* BASES */
	.bases .content_hero {
		padding: 100px 0;
	}

	.bases .content_hero h2 {
		font-size: 2.625rem;
	}

	.bases .content_categories_list h3 {
		font-size: 1.75rem;
		margin: 0 20px 30px;
	}

	.bases .content_categories_list ul li a {
		padding: 0 20px;
		margin: 0 20px;
	}

	.bases .content_categories_list ul li a .category_name {
		font-size: 1.5rem;
		width: calc(100% - 35px);
	}

	.bases .content_categories_list ul li a:hover {
		padding: 0 40px;
	}

	/* PROJECT */
	.projects header{
		padding: 100px 20px 0;
	}

	.projects header .content_heading h2{
		font-size: 2rem;
	}

	.projects .content_projects_list{
		padding: 40px 20px 100px;
	}

	.projects .content_projects_list .center_content{
		padding: 20px;
	}


	.projects .content_projects_list .filters .label_filter{
		margin: 0 0 20px;
	}

	.projects .content_projects_list .filters .content_select{
		flex-wrap: wrap;
		row-gap: 20px;
	}

	.projects .content_projects_list .filters .content_cat{
		width: 100%;
		margin: 0;
	}

	.projects .content_projects_list .filters .content_cat label{
		width: 100%;
	}

	.projects .content_projects_list .filters .select{
		width: 100%;
	}

	.projects .content_projects_list .content_list{
		grid-template-columns: 1fr;
		gap: 20px 0;
	}

	/* PROJECT DETAIL */
	.project_detail .project_information{
		padding: 100px 20px;
	}

	.project_detail .project_information .content_heading h3{
		font-size: 2rem;
	}

	.project_detail .center_content .col_left{
		width: 100%;
		order: 1;
	}

	.project_detail .center_content .col_left .content_video{
		height: 210px;
	}

	.project_detail .center_content .col_right{
		width: 100%;
		position: relative;
		top: 0;
		order: 0;
	}

	.project_detail .center_content .col_right .content_logo_category{
		height: 100px;
	}

	.project_detail .center_content .col_right .content_text{
		padding: 25px 20px;
	}

	.project_detail .content_other_projects{
		padding: 0 20px 100px;
	}

	.project_detail .content_other_projects .center_content{
		padding: 20px;
	}

	.project_detail .content_other_projects .content_list{
		grid-template-columns: 1fr;
		gap: 20px 0;
	}

	/*FOOTER*/
	footer {
		padding: 60px 0;
	}

	footer article {
		padding: 0 20px;
	}

	footer .content_up .content_logo {
		width: 100%;
		margin: 0 0 30px;
	}

	footer .content_up .content_social {
		width: 100%;
		justify-content: space-between;
	}

	footer .content_down .content_sitemap {
		width: 100%;
	}

	footer .content_down .content_sitemap .links {
		width: 100%;
		flex-wrap: wrap;
		justify-content: center;
		margin: 0 0 30px;
	}

	footer .content_down .content_sitemap .links li {
		margin: 0 30px 0 0;
	}

	footer .content_down .content_sitemap .links li:nth-child(2) {
		margin: 0;
	}

	footer .content_down .content_sitemap .links li:last-child {
		width: 100%;
		margin: 30px 0 0;
		justify-content: center;
	}

	footer .content_down .content_information {
		width: 100%
	}

	footer .content_down .content_information .label {
		font-size: 1rem;
	}

	footer .content_down .content_information .email span {
		font-size: 1.125rem;
	}

	footer .content_down .content_information .email img {
		width: 25px;
	}

}

/*Media Query Mobile*/
@media (max-width: 750px) {}
