header{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	padding: 3.5vh 0 3vh;
	transition: all 0.2s ease;
	background: none;
	position: fixed;
	top: 0;
	z-index: 1000;
}

header > a{
	text-decoration: none;
	margin-right: 10%;
	width: 12%;
	height: 8vh;
	background-image: url('../imagenes/logo-foro-blanco.webp');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

header > nav{
	width: 55%;
	display: flex;
	justify-content: center;
	align-items: center;
}

header > nav > span{
	color: var(--blanco);
	font-size: 1.2em;
	font-weight: 400;
	margin: 0vh .25%;
	transition: all 0.2s ease;
	cursor: pointer;
	padding: 1vh 2vh;
	border-bottom: 1px solid rgba(0, 0, 0, 0);
}

header > nav > span:hover,
header > nav > .seguimiento{
	border-bottom: 1px solid var(--blanco);
}

header > span{
	background-image: url('../iconos/icono-candado-morado.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 100%;
	cursor: pointer;
	width: 4.5vh;
	height: 4.5vh;
	padding: .5vh;
	margin-left: 3%;
}

.fijo{
	background: var(--blanco);
}

.fijo > nav > span{
	color: var(--negro-texto);
	border-bottom: 0;
	border-radius: 20px;
}

.fijo > nav > span:hover,
.fijo > nav > .seguimiento{
	color: var(--blanco);
	background: var(--morado-fondo);
	border-bottom: 0;
}

.fijo > a{
	background-image: url('../imagenes/logo-foro.webp');
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
}

#inicio-modal,
#recupera-modal{
	width: 100%;
	height: 100vh;
	display: flex;
	position: fixed;
	top: 0;
	left: 0;
	background: rgba(0, 0, 0, .8);
	z-index: 2000;
	transition: all 0.2s ease;
}

#inicio-modal > span{
	background-image: url('../iconos/icono-candado-celeste.svg');
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
	border-radius: 100%;
	cursor: pointer;
	width: 4.5vh;
	height: 4.5vh;
	padding: .5vh;
	position: fixed;
	top: 4.75vh;
    right: 8.5vw;
}

#inicio-modal > i{
	width: 0;
    height: 0;
    border-right: 1vh solid transparent;
    border-top: 2vh solid transparent;
    border-left: 1vh solid transparent;
    border-bottom: 2vh solid var(--blanco);
    position: fixed;
    top: 9.5vh;
    right: 9.3vw;
}

#inicio-modal > form,
#recupera-modal > form{
	width: 22%;
	background: var(--blanco);
	border-radius: 20px;
	display: flex;
	flex-direction: column;
	align-items: right;
	padding: 3.5vh 3.5%;
	position: fixed;
	top: 13.5vh;
    right: 8vw;
}

#recupera-modal > form{
	top: 32vh;
    right: 34vw;
    padding-top: 5vh;
}

#inicio-modal > form > span{
		position: absolute;
		right: 2.5vw;
		top: 1vw;
		color: black;
		cursor: pointer;
		font-weight: bold;
		font-size: 1.5em;
		text-align: right;
}

#inicio-modal > form > h5,
#recupera-modal > form > h5{
	color: var(--negro-resaltado);
	font-weight: 700;
	font-size: 1.75em;
	text-align: center;
	margin-bottom: 5vh;
}

#inicio-modal > form > .textbox,
#recupera-modal > form > .textbox{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 3vh;
	padding: 2vh 0;
	width: 100%;
	background: var(--fondo-claro);
}

#inicio-modal > form > .textbox > span,
#recupera-modal > form > .textbox > span{
	position: absolute ;
	left: 2.5%;
	width: 3vh;
	height: 3vh;
}

#recupera-modal > form > .textbox > span{
	background-image: url('../iconos/icono-correo-gris.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#inicio-modal > form > .textbox:nth-of-type(1) > span{
	background-image: url('../iconos/icono-persona-gris.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#inicio-modal > form > .textbox:nth-of-type(2) > span{
	background-image: url('../iconos/icono-candado-gris.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#inicio-modal > form > .textbox > input,
#recupera-modal > form > .textbox > input{
	background: none;
	outline: none;
	width: 87%;
	padding-left: 13%;
	color: var(--gris-claro);
	font-weight: 500;
	font-size: .8em;
	text-align: left;
	border: none;
}

#inicio-modal > form > #envio-form{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
}

#inicio-modal > form > #envio-form > span{
	color: var(--negro-resaltado);
	font-size: .85em;
	font-weight: 500;
	cursor: pointer;
	transition: all 0.2s ease;
}

#inicio-modal > form > #envio-form > span:hover{
	color: var(--negro-texto);
}

#inicio-modal > form > #envio-form > input,
#recupera-modal > form > input{
	font-weight: 500;
	font-size: .85em;
	cursor: pointer;
	color: var(--blanco);
	border-radius: 25px;
	background: var(--morado-fondo);
	padding: 1vh 2vh;
	border: 1px solid var(--morado-fondo);
	transition: all 0.2s ease;
}

#inicio-modal > form > #envio-form > input:hover,
#recupera-modal > form > input:hover{
	background: var(--blanco);
	color: var(--morado-fondo);
}

#recupera-modal > form > span{
	color: var(--blanco);
    background: #eb0027;
    padding: 0.5vh 1vh .75vh;
    border-radius: 100%;
    font-weight: 700;
    font-size: 1.25em;
    line-height: 0.85;
    text-align: center;
    position: absolute;
    top: -1vh;
    right: -2%;
    cursor: pointer;
}

#UNO{
	width: 100%;
	height: 100vh;
	background-image: url('../imagenes/fondo-index.webp'); 
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 4vh;
    padding-top: 12vh;
}

#UNO > div{
	display: flex;
    justify-content: center;
    align-items: flex-start;
    height: 100%;
    width: 100%;
}

#UNO > div > div:nth-of-type(1){
	margin-left: 10vw;
	margin-top: 2vh;
    width: 50%;
}


#UNO > div > div:nth-of-type(1) > h2{
	color: var(--celeste-fondo);
	font-size: 2em;
	font-weight: 500;
	margin-bottom: 0.6vw;
}

#UNO > div > div:nth-of-type(1) > h1{
	color: var(--blanco);
	font-size: 5.5em;
	font-weight: 800;
	text-align: left;
	line-height: 1;
	width: 90%;
	margin-bottom: 0.4vw;
}

#UNO > div > div:nth-of-type(1) > p{
	font-size: 1.5em;
	color: var(--blanco);
	font-weight: 400;
	margin-bottom: 4vw;
}

#UNO > div > div:nth-of-type(1) > p:nth-child(4){
	font-size: 2em;
	font-weight: 500;
	margin-bottom: 1vw;
}

#UNO > div > div:nth-of-type(1)> div:nth-of-type(1){
	width: 70%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--blanco);
    font-weight: 400;
    font-size: 1.3em;
    margin-bottom: 6vh;
    background-color: rgba(0, 0, 0, 0.3);
}

#UNO > div > div:nth-of-type(1)> div:nth-of-type(1) > div{
	width: 45%;
    padding-right: 5%;
    border-right: 2px solid var(--blanco);
    margin: 0;
    padding: 4% 6% 4% 4%;
}

#UNO > div > div:nth-of-type(1)> div:nth-of-type(1) > p{
	width: 45%;
	padding: 4% 4% 4% 6%;
}

#UNO > div > div:nth-of-type(1) > span{
    padding: 3vh 7vh;
    color: var(--blanco);
    border: 2px solid var(--celeste-fondo);
    background-color: var(--celeste-fondo);
    transition: all 0.2s ease;
    cursor: pointer;
    font-weight: 500;
    font-size: 1em;
    text-transform: uppercase;
    text-align: center;
    border-radius: 50px;
}

#UNO > div > div:nth-of-type(1) > span:hover{
	background-color: transparent;
}

#UNO > div > #swiper-uno{
	width: 40%;
	height: 100vh;
}

#UNO > div > #swiper-uno > div:first-of-type{
	width: 100%;
	height: 100%;
}

#UNO > div > #swiper-uno > div > div{
	width: 100%;
}

#UNO > div > #swiper-uno > div > div > img{
	height: 100vh;
	width: 100%;
	margin-right: 0;
	object-fit: contain;
}

/*Segunda seccion*/
#DOS{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin: 14vh 0 5vh 0;
}

#DOS > p{
	width: 60%;
	text-align: center;
	font-size: 1.25em;
	color: var(--negro-texto);
	font-weight: 400;
	margin-bottom: 11vh;
	line-height: 1.4;
}

#DOS > p > span{
	color: var(--morado-titulos);
	font-weight: 500;
}

#DOS > h2{
	color: var(--morado-titulos);
	line-height: 1.4;
	width: 75%;
	margin-bottom: 8vh;
	font-weight: 700;
	font-size: 3.25em;
	text-align: center;
}

#DOS > div{
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	margin: 3vh 0;
}

#DOS > div > div{
	width: 30%;
	padding: 0 1.5%;
	transition: all 0.2s ease;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: flex-start;
	cursor: pointer;
	height: 45vh;
	position: relative;
}

#DOS > div > div:hover{
	box-shadow: 0 7px 6px 2px rgb(0 0 0 / 7%);
}

#DOS > div > div > h5{
	color: var(--azul-titulos);
	font-weight: 700;
	text-align: center;
	margin: 5vh 0 2vh;
	font-size: 2.25em;
}

#DOS > div > div > p{
	text-align: center;
	color: var(--negro-texto);
	font-weight: 400;
	font-size: 1.25em;
	margin-bottom: 5vh;
	line-height: 1.3;
	width: 90%;
}

#DOS > div:nth-of-type(2) > div > p{
	width: 100%;
}

#DOS > div > div > span{
	opacity: 0;
	transition: all 0.2s ease;
	height: 5px;
	position: absolute;
	bottom: 5vh;
	width: 12%;
	border-radius: 10px;
	background: var(--azul-titulos);
}

#DOS > div > div:hover > span{
	opacity: 1;
}

/*seccion tres*/
#TRES{
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10vh;
    margin-bottom: 4vh;
}

#TRES > div{
	width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background-color: var(--fondo-claro);
}

#TRES > div > div{
	padding: 0 7% 0 7%;
    height: max-content;
    width: 55%;
}

#TRES > div > div > img{
	height: 80vh;
	width: 100%;
	object-fit: cover;
}

#TRES > div > div:first-of-type{
	width: 50%;
	padding: 0;
}

#TRES > div > div > h3{
	color: var(--morado-titulos);
    line-height: 1.5;
    margin-bottom: 2vh;
    font-weight: 800;
    font-size: 3.25em;
    text-align: left;
}

#TRES > div > div > h4{
	color: var(--negro-resaltado);
    line-height: 1.4;
    margin-bottom: 2.5vh;
    font-weight: 800;
    font-size: 1.3em;
    text-align: left;
}

#TRES > div > div > p{
	font-size: 1.3em;
    line-height: 1.4;
	text-align: justify;
	margin-bottom: 3.5vh;
	color: var(--negro-texto);
	font-weight: 400;
}

/*seccion cuatro clistado de conferencias*/
#CUATRO{
	width: 100%;
	padding-top: 10vh;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#CUATRO > h3{
	color: var(--morado-titulos);
	line-height: 1.4;
	margin-bottom: 5vh;
	font-weight: 700;
	font-size: 3.25em;
	text-align: center;
}

#CUATRO > p{
	width: 70%;
	text-align: center;
	font-size: 1.25em;
	color: var(--negro-texto);
	font-weight: 400;
	margin-bottom: 5vh;
	line-height: 1.4;
}

#CUATRO > h4{
	text-align: center;
	font-size: 1.1em;
	color: var(--negro-resaltado);
	font-weight: 5000;
	margin-bottom: 10vh;
}

#CUATRO > aside{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#CUATRO > aside > p{
	width: 15%;
	padding-bottom: 1vh;
	display: flex;
	justify-content: center;
	align-items: flex-start;
	transition: all 0.2s ease;
	cursor: pointer;
}

#CUATRO > aside > p:nth-of-type(2){
	border-right: 1px solid var(--gris-claro);
	border-left: 1px solid var(--gris-claro);
}

#CUATRO > aside > p:hover,
#CUATRO > aside > .seleccionado-lista{
	background-color: transparent;
    background-image: linear-gradient(90deg, var(--celeste-degradado), var(--rosa-degradado));
}

#CUATRO > aside > p > span{
	width: 100%;
	padding: 2vh 0;
	text-align: center;
	font-weight: 500;
	color: var(--negro-resaltado);
	font-size: 1.5em;
	transition: all 0.2s ease;
}

#CUATRO > aside > p:hover > span,
#CUATRO > aside > .seleccionado-lista > span {
	background: var(--negro-fondo);
	color: var(--blanco);
}

#CUATRO > div{
	width: 100%;
	padding: 5vh 0;
	display: flex;
	flex-direction: column;
	align-items: center;
	transition: all 0.2s ease;
	background: var(--fondo-claro);
}

#CUATRO > div > div{
	width: 65%;
	padding: 3vh 5% 6vh 2%;
	display: flex;
	justify-content: flex-start;
	align-items: flex-end;
	position: relative;
	border: 1px solid var(--gris-claro);
	transition: all 0.2s ease;
	margin-bottom: 4vh;
	background: var(--blanco);
	cursor: pointer;
}

#CUATRO > div > div:hover{
	box-shadow: 0 7px 6px 2px rgb(0 0 0 / 7%);
}

#CUATRO > div > div > span{
	width: 5.5vw;
	height: 5.5vw;
	margin-right: 5%;
	transition: all 0.2s ease;
	background-image: url('../iconos/icono-agenda-estandar-gradiente.svg');
	background-size: 110%;
	background-position: center;
	background-repeat: no-repeat;
}

#CUATRO > div > div > div{
	width: 85%;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}

#CUATRO > div > div > div > div{
	width: 100%;
	display: flex;
	justify-content: flex-start;
	align-items: center;
	margin-bottom: 3vh;
}

#CUATRO > div > div > div > div > span{
	width: 2vw;
	height: 2vw;
	margin-right: 2%;
}

#CUATRO > div > div > div > div > .reloj-listado{
	background-image: url('../iconos/icono-reloj-curso-estandar-gris.svg');
	background-size: 85%;
	background-position: center;
	background-repeat: no-repeat;
}

#CUATRO > div > div > div > div > .persona-listado{
	background-image: url('../iconos/icono-persona-curso-estandar-gris.svg');
	background-size: 85%;
	background-position: center;
	background-repeat: no-repeat;
}

#CUATRO > div > div > div > div > p{
	color: var(--negro-texto);
    font-weight: 400;
    font-size: 1em;
    margin-right: 3%;
}

#CUATRO > div > div > div > p{
	color: var(--negro-resaltado);
    font-weight: 400;
    font-size: 1.1em;
    text-align: left;
}

#CUATRO > div > div > p{
	position: absolute;
	bottom: 2vh;
	right: 1vw;
	padding: 1.5vh 3vh;
	border-radius: 20px;
	color: var(--blanco);
	font-weight: 500;
	font-size: 1em;
	transition: all 0.2s ease;
	border: 1px solid var(--morado-fondo);
	background: var(--morado-fondo);
}

#CUATRO > div > div > p:hover{
	background: var(--blanco);
	color: var(--morado-fondo);
}

/*Seccion cinco*/
#CINCO{
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10vh;
    margin-bottom: 4vh;
}

#CINCO > h2 {
    color: var(--morado-titulos);
    line-height: 1.5;
    margin-bottom: 2vh;
    font-weight: 800;
    font-size: 3.25em;
    text-align: center;   
}

#CINCO > h4{
    text-align: center;
    font-size: 1.25em;
    color: var(--negro-texto);
    font-weight: 400;
    margin-bottom: 1vh;
}

#CINCO  > div{
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 3vh 0;
    justify-content: space-evenly;
    background: var(--morado-fondo);
    position: relative;
}

#CINCO > div > div{
	width: 80%;
}

#CINCO > div > div > div > div{
    width: 20%;
    display: flex;
    height: 75vh;
    margin: 10vh 0;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: relative;
    box-shadow: 0 7px 6px 2px rgb(0 0 0 / 7%);
    background: var(--blanco);
}

#CINCO > div > div > div > div > p{
    text-align: justify;
    font-size: 1em;
    color: var(--negro-resaltado);
    font-weight: 400;
    margin-bottom: 5vh;
    padding: 0 8.5%;
}


#CINCO > div > div > div > div > i{
    width: 100%;
    height: 2vh	;
    background: linear-gradient(45deg, var(--celeste-degradado), var(--rosa-degradado));;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 3vh;
}

#CINCO > div > div > div> div > img{
    width: 45%;
}

#CINCO > div > div > div > div > div{
    width: 75%;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-bottom: 4vh;
    margin-top: 4vh;
    padding: 0 1.5%;
}


#CINCO > div > div > div> div > div > p:nth-of-type(1){
    width: 40%;
    text-align: left;
    padding-right: 5%;
    font-size: 1em;
    color: var(--morado-fondo);
    font-weight: 500;
    border-right: 2px solid var(--morado-fondo);
}

#CINCO > div > div > div > div > div > p:nth-of-type(2){
    width: 50%;
    margin-left: 5%;
    text-align: left;
    font-size: .75em;
    color: var(--negro-resaltado);
    font-weight: 400;
}

.cinco-button-prev{
	left: 4%;
}

.cinco-button-next{
	right: 4%;
}

/*Seccion seis*/
#SEIS{
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10vh;
    margin-bottom: 4vh;
}

#SEIS > h2{
	color: var(--morado-titulos);
    line-height: 1.5;
    margin-bottom: 2vh;
    font-weight: 800;
    font-size: 3.25em;
    text-align: left;
}

#SEIS > p{
    text-align: center;
    font-size: 1.25em;
    color: var(--negro-texto);
    font-weight: 400;
    margin-bottom: 1vh;
}

#SEIS > span{
	text-align: center;
    font-size: 0.95em;
    color: var(--negro-resaltado);
    font-weight: 500;
    margin-bottom: 7vh;
}

#SEIS > div{
	width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    background: var(--fondo-claro);
}

#SEIS > div > div{
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-top: 4vh;
}

#SEIS > div > div > h4{
	color: var(--negro-resaltado);
    line-height: 1.4;
    margin-bottom: 2.5vh;
    font-weight: 800;
    font-size: 1.3em;
    text-align: left;
}

#SEIS > div > div > span:nth-of-type(1){
	padding: 2vh 5vh;
    border-radius: 25px;
    border: 1px solid var(--morado-fondo);
    background: var(--morado-fondo);
    color: var(--blanco);
    font-size: 1.15em;
    font-weight: 700;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
}

#SEIS > div > div > span:hover{
    background: var(--blanco);
    color: var(--morado-fondo);
}

#SEIS > div > div > span:nth-of-type(2){
	height: 5px;
    width: 7%;
    margin: 1.5vh 0 2.2vh 0;
    background-color: transparent;
    background-image: linear-gradient(
	90deg, var(--celeste-degradado), var(--rosa-degradado));
    color: transparent;
}


#SEIS > div > div > p{
	font-size: 1.15em;
	font-weight: 700;
	color: var(--negro-resaltado);
}

#SEIS > div > div > div {
	margin-top: 8vh;
	width: 90%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 8vh;
}

#SEIS > div > div > div > div {
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

#SEIS > div > div > div > div > span{
	width: 5.5vw;
    height: 5.5vw;
    transition: all 0.2s ease;
    background-image: url(../iconos/icono-agenda-estandar-gradiente.svg);
    background-size: 110%;
    background-position: center;
    background-repeat: no-repeat;
}

#SEIS > div > div > div > div:nth-of-type(2) > span{
	background-image: url(../iconos/icono-pantalla-gradiente.svg);
}

#SEIS > div > div > div > div:nth-of-type(3) > span{
	background-image: url(../iconos/icono-whatsapp-gradiente.svg);
	width: 4.5vw ;
}

#SEIS > div > div > div > div > p{
    padding: 2vh 10% 2vh 10%;
    border: 1px solid var(--blanco);
    margin-top: 2vh;
    transition: all 0.2s ease;
    background: var(--blanco);
	box-shadow: 0 7px 6px 2px rgb(0 0 0 / 7%);
	border-radius: 25px;
    background: var(--blanco);
    color: var(--negro-resaltado);
    font-weight: 700;
    font-size: 1em;
    text-align: center;
}

#SEIS > div > img{
	width: 47%;
	height: 68vh;
	object-fit: cover;
}

/*seccion siete*/
#SIETE{
	width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding-top: 10vh;
    margin-bottom: 4vh;
}

#SIETE > div{
	width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
}

#SIETE > h2{
	color: var(--morado-titulos);
    line-height: 1.1;
    margin-bottom: 6vh;
    font-weight: 700;
    font-size: 3.5em;
    text-align: center;
}

#SIETE > div > img{
	height: auto;
	width: 47%;
}

#SIETE > div > p{
	font-size: 1.2em;
    line-height: 1.4;
	text-align: justify;
	margin-bottom: 3.5vh;
	color: var(--negro-resaltado);
	font-weight: 400;
	margin: 0 10% 0 5%;
}

#SIETE > div > p > span{
	font-weight: 700;
}

/*seccion ocho formulario y titulos*/
#OCHO{
	width: 100%;
	display: flex;
	flex-direction: column;
	align-items: center;
	margin-top: 8vh;
}

#OCHO > h4{
	color: var(--morado-titulos);
	line-height: 1.4;
	margin-bottom: 3vh;
	font-weight: 700;
	font-size: 3.25em;
	text-align: center;
}

#OCHO > p{
	text-align: center;
	font-size: 1.25em;
	color: var(--negro-texto);
	font-weight: 400;
	margin-bottom: 1vh;
}

#OCHO > span{
	text-align: center;
	font-size: 1.25em;
	color: var(--negro-resaltado);
	font-weight: 500;
	margin-bottom: 7vh;
}

#OCHO > div{
	height: 15vh;
	position: relative;
	width: 85%;
	background-color: transparent;
    background-image: linear-gradient(90deg, var(--morado-degradado), var(--celeste-degradado));
}

#OCHO > div > span{
	width: 10vw;
	height: 10vw;
	border-radius: 100%;
	background-color: var(--blanco);
	background-image: url('../iconos/figura-logo-morado.svg');
	background-size: 80%;
	background-position: center;
	background-repeat: no-repeat;
	position: absolute;
	bottom: -5vw;
	right: 11vw;
}

#OCHO > form{
	width: 85%;
	background: var(--fondo-claro);
	display: flex;
	justify-content: center;
	align-items: flex-start;
	padding-bottom: 5vh;
}

#OCHO > form > div{
	width: 50%;
	margin-top: 3vh;
	padding: 6vh 4% 3vh 3%;
	display: flex;
	flex-direction: column;
	align-items: center;
}

#OCHO > form > div > .completo,
#OCHO > form > aside > #codigo,
#OCHO > form > div > .division-dos > div{
	display: flex;
	justify-content: center;
	align-items: center;
	position: relative;
	margin-bottom: 3vh;
	padding: 2vh 0;
	width: 100%;
	background: var(--blanco);
}

#OCHO > form > aside > #codigo{
	width: 85%;
	padding: 2vh 2.5%;
}

#OCHO > form > div > .division-dos{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
}

#OCHO > form > div > .division-dos > div{
	width: 47%;
}

#OCHO > form > div > .completo > span,
#OCHO > form > aside > #codigo > span,
#OCHO > form > div > .division-dos > div > span{
	position: absolute ;
	left: 2.5%;
	width: 3vh;
	height: 3vh;
}

#OCHO > form > div > .completo > span{
	left: 1.25%;
}

#OCHO > form > div > .completo > #icono-user{
	background-image: url('../iconos/icono-persona-gris.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#OCHO > form > div > .division-dos > div > #icono-email{
	background-image: url('../iconos/icono-correo-gris.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#OCHO > form > div > .division-dos > div > #icono-telefono{
	background-image: url('../iconos/icono-telefono-gris.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#OCHO > form > div > .division-dos > div > #icono-empresa{
	background-image: url('../iconos/icono-portafolio-gris.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#OCHO > form > div > .division-dos > div > #icono-colaboradores{
	background-image: url('../iconos/icono-gemelos-gris.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#OCHO > form > div > .completo > #icono-puesto{
	background-image: url('../iconos/icono-puesto-gris.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

#OCHO > form > aside > #codigo > #icono-codigo{
	background-image: url('../iconos/icono-candado-gris.svg');
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
	left: 3.5%;
}

#OCHO > form > div > .completo > input,
#OCHO > form > aside > #codigo > input,
#OCHO > form > div > .division-dos > div > input{
	background: none;
	outline: none;
	width: 87%;
	padding-left: 13%;
	color: var(--gris-claro);
	font-weight: 500;
	font-size: .8em;
	text-align: left;
	border: none;
}

#OCHO > form > div > .completo > input{
	padding-left: 0;
}

#OCHO > form > div > span {
    width: 90%;
    text-align: center;
    font-weight: 500;
    color: var(--negro-resaltado);
    font-size: 1em;
    margin-bottom: 1.5vh;
}

#OCHO > form > aside{
	padding-top: 9vh;
	margin-top: 7vh;
	width: 27%;
	padding-left: 4%;
	border-left: 1px solid var(--gris-claro);
	display: flex;
	flex-direction: column;
	align-items: center;
}

#OCHO > form > div > label {
    width: 90%;
    text-align: left;
    font-weight: 500;
    color: var(--negro-texto);
    font-size: 1em;
}
#OCHO > form > div > .ms-parent{
	margin-bottom: 1.5vh;
	padding: 1vh 0;
}

#OCHO > form > div > .ms-parent > .ms-drop ul > li label{
	font-weight: 500;
	font-size: .95em;
	color: var(--gris-claro);
}

#OCHO > form > div > .ms-parent > .ms-choice{
	padding: 3vh 0;
}

#OCHO > form > div > .ms-parent > .ms-choice > div{
	width: 5vh;
	height: 2vh;
	top: 2.25vh;
}

#OCHO > form > div > .ms-parent > .ms-choice > span{
	font-weight: 500;
	font-size: .95em;
	top: 2.25vh;
	color: var(--gris-claro);
}

#OCHO > form > aside > h5,
#OCHO > form > aside > p{
	font-size: 1.25em;
	font-weight: 500;
	color: var(--negro-resaltado);
	text-align: center;
}

#OCHO > form > aside > p{
	font-weight: 400;
	margin-bottom: 5vh;
}

#OCHO > form > aside > #checkbox-div{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 2vh;
}

#OCHO > form > aside > #checkbox-div > input{
	width: .75vw;
}

#OCHO > form > aside > #checkbox-div > label{
	font-size: .85em;
	font-weight: 500;
	color: var(--negro-resaltado);
	cursor: pointer;
	text-align: center;
	margin-left: 5%;
}

#OCHO > form > aside > #checkbox-div > label > a{
	text-decoration: none;
	transition: all 0.2s ease;
	color: var(--negro-resaltado);
}

#OCHO > form > aside > #checkbox-div > label > a:hover{
	color: var(--morado-titulos);
}

#OCHO > form > aside > input{
	padding: 2vh 5vh;
	border-radius: 25px;
	border: 1px solid var(--morado-fondo);
	background: var(--morado-fondo);
	color: var(--blanco);
	font-size: 1.15em;
	font-weight: 700;
	text-align: center;
	cursor: pointer;
	transition: all 0.2s ease;
}

#OCHO > form > aside > input:hover{
	border: 1px solid var(--celeste-fondo);
	background: var(--celeste-fondo);
}

#OCHO > p{
	font-size: 1.25em;
	font-weight: 400;
	color: var(--negro-texto);
	text-align: center;
	width: 55%;
	margin: 5vh 0 3vh;
}

#OCHO > i{
	font-size: .85em;
	font-weight: 500;
	color: var(--negro-resaltado);
	text-align: center;
	width: 85%;
	margin-bottom: 5vh;
}

/*footer*/
footer{
	width: 100%;
	padding: 6vh 0 3vh;
	background: var(--negro-fondo);
	display: flex;
	flex-direction: column;
	align-items: center;
}

footer > div{
	width: 80%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 7vh;
	position: relative;
}

footer > div > a{
	text-decoration: none;
	width: 21%;
	display: flex;
	flex-direction: column;
	color: var(--gris-claro);
	align-items: flex-start;
}

footer > div > a > img{
	width: 100%;
}

footer > div > a > p{
	font-weight: 400;
	font-size: .9em;
	margin: 1.5vh 0;
}

footer > div > div{
	border-right: 1px solid var(--gris-claro);
	border-left: 1px solid var(--gris-claro);
	display: flex;
	flex-direction: column;
	align-items: center;
	width: 30%;
	padding: 0vh 7%;
	margin: 0vh 25% 0 8%;
}

footer > div > div > img{
	width: 45%;
	margin-bottom: 3vh;
}

footer > div > div > a{
	color: var(--blanco);
	margin-bottom: 3vh;
	font-size: 1.25em;
	font-weight: 400;
	transition: all 0.2s ease;
	text-decoration: none;
}

footer > div > div > a:hover{
	color: var(--gris-claro);
}

footer > div > div > div{
	width: 100%;
	display: flex;
	justify-content: center;
	align-items: center;
	margin-bottom: 3vh;
}

footer > div > div > div > a{
	width: 3vw;
	height: 3vw;
	text-decoration: none;
	transition: all 0.2s ease;
	margin: 0vh 5%;
}

footer > div > div > div > a:nth-of-type(1){
	background-image: url('../iconos/icono-linkedin-blanco.svg');
	background-repeat: no-repeat;
	background-size: 80%;
	background-position: center;
}

footer > div > div > div > a:nth-of-type(2){
	background-image: url('../iconos/icono-facebook-blanco.svg');
	background-repeat: no-repeat;
	background-size: 80%;
	background-position: center;
}

footer > div > div > div > a:nth-of-type(3){
	background-image: url('../iconos/icono-instagram-blanco.svg');
	background-repeat: no-repeat;
	background-size: 80%;
	background-position: center;
}

footer > div > div > div > a:nth-of-type(1):hover{
	background-image: url('../iconos/icono-linkedin-gris.svg');
	background-repeat: no-repeat;
	background-size: 80%;
	background-position: center;
}

footer > div > div > div > a:nth-of-type(2):hover{
	background-image: url('../iconos/icono-facebook-gris.svg');
	background-repeat: no-repeat;
	background-size: 80%;
	background-position: center;
}

footer > div > div > div > a:nth-of-type(3):hover{
	background-image: url('../iconos/icono-instagram-gris.svg');
	background-repeat: no-repeat;
	background-size: 80%;
	background-position: center;
}

footer > div > img{
	width: 22%;
    position: absolute;
    bottom: -5vh;
    left: 82%;
}

footer > p{
	font-weight: 400;
	font-size: .8em;
	color: var(--blanco);
	text-align: center;
	width: 75%;
}

.swiper-pagination{
    margin-bottom: 2vh;
}

@font-face{font-family:swiper-icons;src:url('data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA') format('woff');font-weight:400;font-style:normal}:root{--swiper-theme-color:white}.swiper-container{margin-left:auto;margin-right:auto;position:relative;overflow:hidden;list-style:none;padding:0;z-index:1}.swiper-container-vertical>.swiper-wrapper{flex-direction:column}.swiper-wrapper{position:relative;width:100%;height:100%;z-index:1;display:flex;transition-property:transform;box-sizing:content-box}.swiper-container-android .swiper-slide,.swiper-wrapper{transform:translate3d(0px,0,0)}.swiper-container-multirow>.swiper-wrapper{flex-wrap:wrap}.swiper-container-multirow-column>.swiper-wrapper{flex-wrap:wrap;flex-direction:column}.swiper-container-free-mode>.swiper-wrapper{transition-timing-function:ease-out;margin:0 auto}.swiper-slide{flex-shrink:0;width:100%;height:100%;position:relative;transition-property:transform}.swiper-slide-invisible-blank{visibility:hidden}.swiper-container-autoheight,.swiper-container-autoheight .swiper-slide{height:auto}.swiper-container-autoheight .swiper-wrapper{align-items:flex-start;transition-property:transform,height}.swiper-container-3d{perspective:1200px}.swiper-container-3d .swiper-cube-shadow,.swiper-container-3d .swiper-slide,.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top,.swiper-container-3d .swiper-wrapper{transform-style:preserve-3d}.swiper-container-3d .swiper-slide-shadow-bottom,.swiper-container-3d .swiper-slide-shadow-left,.swiper-container-3d .swiper-slide-shadow-right,.swiper-container-3d .swiper-slide-shadow-top{position:absolute;left:0;top:0;width:100%;height:100%;pointer-events:none;z-index:10}.swiper-container-3d .swiper-slide-shadow-left{background-image:linear-gradient(to left,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-right{background-image:linear-gradient(to right,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-top{background-image:linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-3d .swiper-slide-shadow-bottom{background-image:linear-gradient(to bottom,rgba(0,0,0,.5),rgba(0,0,0,0))}.swiper-container-css-mode>.swiper-wrapper{overflow:auto;scrollbar-width:none;-ms-overflow-style:none}.swiper-container-css-mode>.swiper-wrapper::-webkit-scrollbar{display:none}.swiper-container-css-mode>.swiper-wrapper>.swiper-slide{scroll-snap-align:start start}.swiper-container-horizontal.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:x mandatory}.swiper-container-vertical.swiper-container-css-mode>.swiper-wrapper{scroll-snap-type:y mandatory}:root{--swiper-navigation-size:44px}.swiper-button-next,.swiper-button-prev{position:absolute;top:50%;width:calc(var(--swiper-navigation-size)/ 44 * 27);height:var(--swiper-navigation-size);margin-top:calc(-1 * var(--swiper-navigation-size)/ 2);z-index:10;cursor:pointer;display:flex;align-items:center;justify-content:center;color:var(--swiper-navigation-color,var(--swiper-theme-color))}.swiper-button-next.swiper-button-disabled,.swiper-button-prev.swiper-button-disabled{opacity:.35;cursor:auto;pointer-events:none}.swiper-button-next:after,.swiper-button-prev:after{font-family:swiper-icons;font-size:var(--swiper-navigation-size);text-transform:none!important;letter-spacing:0;text-transform:none;font-variant:initial;line-height:1}.swiper-button-prev,.swiper-container-rtl .swiper-button-next{left:10px;right:auto}.swiper-button-prev:after,.swiper-container-rtl .swiper-button-next:after{content:'prev'}.swiper-button-next,.swiper-container-rtl .swiper-button-prev{right:10px;left:auto}.swiper-button-next:after,.swiper-container-rtl .swiper-button-prev:after{content:'next'}.swiper-button-next.swiper-button-white,.swiper-button-prev.swiper-button-white{--swiper-navigation-color:#ffffff}.swiper-button-next.swiper-button-black,.swiper-button-prev.swiper-button-black{--swiper-navigation-color:#000000}.swiper-button-lock{display:none}.swiper-pagination{position:absolute;text-align:center;transition:.3s opacity;transform:translate3d(0,0,0);z-index:10}.swiper-pagination.swiper-pagination-hidden{opacity:0}.swiper-container-horizontal>.swiper-pagination-bullets,.swiper-pagination-custom,.swiper-pagination-fraction{bottom:10px;left:0;width:100%}.swiper-pagination-bullets-dynamic{overflow:hidden;font-size:0}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transform:scale(.33);position:relative}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main{transform:scale(1)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev{transform:scale(.33)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next{transform:scale(.66)}.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next{transform:scale(.33)}.swiper-pagination-bullet{width:8px;height:8px;display:inline-block;border-radius:100%;background:var(--gris-claro);opacity:.7}button.swiper-pagination-bullet{border:none;margin:0;padding:0;box-shadow:none;-webkit-appearance:none;-moz-appearance:none;appearance:none}.swiper-pagination-clickable .swiper-pagination-bullet{cursor:pointer}.swiper-pagination-bullet-active{opacity:1;background:var(--swiper-pagination-color,var(--swiper-theme-color))}.swiper-container-vertical>.swiper-pagination-bullets{right:10px;top:50%;transform:translate3d(0px,-50%,0)}.swiper-container-vertical>.swiper-pagination-bullets .swiper-pagination-bullet{margin:6px 0;display:block}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{top:50%;transform:translateY(-50%);width:8px}.swiper-container-vertical>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{display:inline-block;transition:.2s transform,.2s top}.swiper-container-horizontal>.swiper-pagination-bullets .swiper-pagination-bullet{margin:0 4px}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic{left:50%;transform:translateX(-50%);white-space:nowrap}.swiper-container-horizontal>.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s left}.swiper-container-horizontal.swiper-container-rtl>.swiper-pagination-bullets-dynamic .swiper-pagination-bullet{transition:.2s transform,.2s right}.swiper-pagination-progressbar{background:rgba(0,0,0,.25);position:absolute}.swiper-pagination-progressbar .swiper-pagination-progressbar-fill{background:var(--swiper-pagination-color,var(--swiper-theme-color));position:absolute;left:0;top:0;width:100%;height:100%;transform:scale(0);transform-origin:left top}.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill{transform-origin:right top}.swiper-container-horizontal>.swiper-pagination-progressbar,.swiper-container-vertical>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite{width:100%;height:4px;left:0;top:0}.swiper-container-horizontal>.swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,.swiper-container-vertical>.swiper-pagination-progressbar{width:4px;height:100%;left:0;top:0}.swiper-pagination-white{--swiper-pagination-color:#ffffff}.swiper-pagination-black{--swiper-pagination-color:#000000}.swiper-pagination-lock{display:none}.swiper-scrollbar{border-radius:10px;position:relative;-ms-touch-action:none;background:rgba(0,0,0,.1)}.swiper-container-horizontal>.swiper-scrollbar{position:absolute;left:1%;bottom:3px;z-index:50;height:5px;width:98%}.swiper-container-vertical>.swiper-scrollbar{position:absolute;right:3px;top:1%;z-index:50;width:5px;height:98%}.swiper-scrollbar-drag{height:100%;width:100%;position:relative;background:rgba(0,0,0,.5);border-radius:10px;left:0;top:0}.swiper-scrollbar-cursor-drag{cursor:move}.swiper-scrollbar-lock{display:none}.swiper-zoom-container{width:100%;height:100%;display:flex;justify-content:center;align-items:center;text-align:center}.swiper-zoom-container>canvas,.swiper-zoom-container>img,.swiper-zoom-container>svg{max-width:100%;max-height:100%;object-fit:contain}.swiper-slide-zoomed{cursor:move}.swiper-lazy-preloader{width:42px;height:42px;position:absolute;left:50%;top:50%;margin-left:-21px;margin-top:-21px;z-index:10;transform-origin:50%;animation:swiper-preloader-spin 1s infinite linear;box-sizing:border-box;border:4px solid var(--swiper-preloader-color,var(--swiper-theme-color));border-radius:50%;border-top-color:transparent}.swiper-lazy-preloader-white{--swiper-preloader-color:#fff}.swiper-lazy-preloader-black{--swiper-preloader-color:#000}@keyframes swiper-preloader-spin{100%{transform:rotate(360deg)}}.swiper-container .swiper-notification{position:absolute;left:0;top:0;pointer-events:none;opacity:0;z-index:-1000}.swiper-container-fade.swiper-container-free-mode .swiper-slide{transition-timing-function:ease-out}.swiper-container-fade .swiper-slide{pointer-events:none;transition-property:opacity}.swiper-container-fade .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-fade .swiper-slide-active,.swiper-container-fade .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube{overflow:visible}.swiper-container-cube .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1;visibility:hidden;transform-origin:0 0;width:100%;height:100%}.swiper-container-cube .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-cube.swiper-container-rtl .swiper-slide{transform-origin:100% 0}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-cube .swiper-slide-active,.swiper-container-cube .swiper-slide-next,.swiper-container-cube .swiper-slide-next+.swiper-slide,.swiper-container-cube .swiper-slide-prev{pointer-events:auto;visibility:visible}.swiper-container-cube .swiper-slide-shadow-bottom,.swiper-container-cube .swiper-slide-shadow-left,.swiper-container-cube .swiper-slide-shadow-right,.swiper-container-cube .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}.swiper-container-cube .swiper-cube-shadow{position:absolute;left:0;bottom:0px;width:100%;height:100%;background:#000;opacity:.6;-webkit-filter:blur(50px);filter:blur(50px);z-index:0}.swiper-container-flip{overflow:visible}.swiper-container-flip .swiper-slide{pointer-events:none;-webkit-backface-visibility:hidden;backface-visibility:hidden;z-index:1}.swiper-container-flip .swiper-slide .swiper-slide{pointer-events:none}.swiper-container-flip .swiper-slide-active,.swiper-container-flip .swiper-slide-active .swiper-slide-active{pointer-events:auto}.swiper-container-flip .swiper-slide-shadow-bottom,.swiper-container-flip .swiper-slide-shadow-left,.swiper-container-flip .swiper-slide-shadow-right,.swiper-container-flip .swiper-slide-shadow-top{z-index:0;-webkit-backface-visibility:hidden;backface-visibility:hidden}

/*Relaciones de aspecto escritorio*/
/*De 1088 a 1020*/
@media screen and (min-aspect-ratio: 5/4) and (max-aspect-ratio: 4/3) and (min-width: 1000px) {
	header > span{
		margin-left: 8%
	}
	#inicio-modal > span{
		right: 5.5vw;
	}
	#inicio-modal > i{
		right: 7vw;
	}
	#inicio-modal > form{
		top: 13vh;
    	right: 5vw;
	}
	#UNO > div{
		align-items: flex-start;
	}
	#UNO > div > div:nth-of-type(1){
		margin-top: 7vh
	}
	#DOS > div > div{
		height: 32vh;
	}
	#CINCO > div > div > div > div > p{
		margin-bottom: 3vh
	}
	#CINCO > div > div > div > div > i{
		height: 1.5vh;
	}
	#OCHO > h4{
		margin-bottom: 0
	}
	#OCHO > form > div > .completo > input {
	    padding-left: 2%;
	}
	#OCHO > form > aside{
		padding-top: 4vh
	}
	#OCHO > form > aside > #codigo > input, 
	#OCHO > form > div > .division-dos > div > input{
		padding-left: 17%
	}
}

/*De 1020 a 906*/
@media screen and (min-aspect-ratio: 4/3) and (max-aspect-ratio: 3/2) and (min-width: 1000px) {
	header > span{
		margin-left: 8%
	}
	#inicio-modal > span{
		right: 5.5vw;
	}
	#inicio-modal > i{
		right: 7vw;
	}
	#inicio-modal > form{
		top: 13vh;
    	right: 5vw;
	}
	#UNO > div{
		align-items: flex-start;
	}
	#UNO > div > div:nth-of-type(1){
		margin-top: 7vh
	}
	#DOS > div > div{
		height: 37vh;
	}
	#CINCO > div > div > div > div{
		height: 62vh;
	}
	#CINCO > div > div > div > div > p{
		margin-bottom: 4vh
	}
	#CINCO > div > div > div > div > i{
		height: 1.5vh;
	}
	#OCHO > h4{
		margin-bottom: 0
	}
	#OCHO > form > div > .completo > input {
	    padding-left: 2%;
	}
	#OCHO > form > aside{
		padding-top: 6vh
	}
	#OCHO > form > aside > #codigo > input, 
	#OCHO > form > div > .division-dos > div > input{
		padding-left: 17%
	}
}

/*De 906 a 800*/
@media screen and (min-aspect-ratio: 3/2) and (max-aspect-ratio: 17/10) and (min-width: 1000px) {
	header > span{
		margin-left: 8%
	}
	#inicio-modal > span{
		right: 5.5vw;
	}
	#inicio-modal > i{
		right: 7vw;
	}
	#inicio-modal > form{
		top: 13vh;
    	right: 5vw;
	}
	#UNO > div{
		align-items: flex-start;
	}
	#UNO > div > div:nth-of-type(1){
		margin-top: 7vh
	}
	#DOS > div > div{
		height: 39vh;
	}
	#CINCO > div > div > div > div{
		height: 64vh;
	}
	#CINCO > div > div > div > div > p{
		margin-bottom: 4vh
	}
	#CINCO > div > div > div > div > i{
		height: 1.5vh;
	}
	#OCHO > h4{
		margin-bottom: 0
	}
	#OCHO > form > div > .completo > input {
	    padding-left: 2%;
	}
	#OCHO > form > aside{
		padding-top: 6vh
	}
	#OCHO > form > aside > #codigo > input, 
	#OCHO > form > div > .division-dos > div > input{
		padding-left: 17%
	}
}

/*De 800 a 680*/
@media screen and (min-aspect-ratio: 17/10) and (max-aspect-ratio: 18/9) and (min-width: 1000px) {
	header > span{
		margin-left: 8%
	}
	#inicio-modal > span{
		right: 5.5vw;
	}
	#inicio-modal > i{
		right: 7vw;
	}
	#inicio-modal > form{
		top: 13vh;
    	right: 5vw;
	}
	#UNO > div{
		align-items: flex-start;
	}
	#UNO > div > div:nth-of-type(1){
		margin-top: 7vh
	}
	#CINCO > div > div > div > div{
		height: 73vh;
	}
	#CINCO > div > div > div > div > p{
		margin-bottom: 4vh
	}
	#OCHO > h4{
		margin-bottom: 0
	}
	#OCHO > form > div > .completo > input {
	    padding-left: 2%;
	}
	#OCHO > form > aside{
		padding-top: 6vh
	}
	#OCHO > form > aside > #codigo > input, 
	#OCHO > form > div > .division-dos > div > input{
		padding-left: 17%
	}
}