﻿:root {
	--color_1: #11115a;
	--color_2: #f84438;
	--padding: 0 24px;
}

*{
	padding: 0;
	outline: 0;
	margin: 0;
	border: 0;
	box-sizing: border-box;
	-ms-box-sizing: border-box;
	-o-box-sizing: border-box;
	box-sizing: border-box;
	outline: none;
	font-size: inherit;
	color: inherit;
	line-height: 1;
	font-family: 'Work Sans';
}




::-webkit-scrollbar-track
	{
		border-radius: 10px;
		background: rgba(0, 0, 0, 0.1);
		transition-duration: 0.7s;
	}

::-webkit-scrollbar
	{
		width: 10px;
		background: rgba(0, 0, 0, 0.1);
		transition-duration: 0.7s;
	}

::-webkit-scrollbar-thumb
	{
		border-radius: 10px;
		background-color: #000;
		border: 1px solid rgba(255, 255, 255, 0.5);
		transition-duration: 0.7s;
	}


::-webkit-scrollbar-thumb:hover
	{
		background-color: #000;
	}



img{
	display: block;
}
a{
	text-decoration: none;
}

.contenedor_general{
	background: #fff;
	overflow: hidden;
}


/*HEADER*/

	.header{
		display: block;
		background: #fff
	}
	.header_texto{
		text-align: right;

	}
	.header_texto p{
		font-weight: 400;
		font-family: 'Tiempos Headline';
		font-size: 30px;
		letter-spacing: 0.2px;
	}

	.header_texto p strong{
		font-weight: bold;
	}

	.logos_web{
		display: flex;
		align-items: center;
		justify-content: space-between;
		padding: var(--padding);
		max-width: 1284px;
		margin: 0 auto;
	}
	.logo_up{
		display: block;
	}
	.logo_up img{
		max-width: 100%;
	}

	.logo_videnza{
		width: 40%;
	}
	.logo_videnza img{
		width: 100%
	}




/*BANNER*/

	.banner{
		display: block;
		background: #fff;
		width: 100%;
	}
	.bn_dstk{
		/*display: none;*/
		width: 100%;
	}
	.bn_mobile{
		display: none;
		width: 100%;
	}

	.banner>div img{
		width: 100%;
	}


/*MAIN*/
	.main{
		background: #fbfbfb;
		width: 100%;
		max-width: 1500px;
		padding: 48px 50px 0 50px;
		margin: 0 auto;
	}


/*SECCION 1*/

	.conte_form{
		display: flex;
		background: var(--color_1);
		border-radius: 15px;
		
		margin-bottom: 52px;
		padding: 0 36px;
		position: relative;
		overflow: hidden;
	}
	.conte_form>div{
		width: 100%;
	}

	.zona_segura{
		width: 100%;
		max-width: 1200px;
		margin: 0 auto;
		overflow: hidden;
	}

	.mensaje{
		color: #000;
		width: 290px;
		margin: 0px auto;
		margin-bottom: 20px;
		position: relative;
		z-index: 10
	}
	.ico_mensaje{
		width: 76px;
		margin: 0 auto
	}
	.ico_mensaje img{
		width: 100%;
		margin: 0
	}
	.text_mensaje{
		margin-top: 15px;
		text-align: center;
		text-transform: uppercase;
	}
	.text_mensaje h3{
		font-weight: 900;
		font-size: 24px;

	}
	.text_mensaje p{
		font-weight: 300;
		font-size: 18px;
	}

/*FORMULARIO*/

	.formulario{
		width: 100%;
		min-width: 290px;
		background: #ffF;
		margin: 0 auto;
		padding: 44px 32px 0 32px;
		position: relative;
		z-index: 10;
	}
	.formulario form{
		max-width: 525px;
		margin: 0 auto;
	}

	.text_form{
		padding: 10px 5px;
		border-top: 11px solid var(--color_1);
		border-bottom: 3px solid var(--color_2);
		margin-bottom: 20px;
		color: #4c4c4c;
		display: flex;
		align-items: center;
		justify-content: center;
		height: 100px;
	}
	.text_form h3{
		text-transform: uppercase;
		text-align: center;
		font-size: 24px;
		white-space: pre-line;
		line-height: initial;
	}

	.cuadro_textos{
		color: #4c4c4c;
		margin-bottom: 30px;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between;
		gap: 20px 8px;
	}

	.cuadro_textos label{
		display: block;
		border-bottom: 3px solid #4c4c4c;
		width: calc(50% - 10px);
	}

	.cuadro_textos label input,
	.cuadro_textos label select{
		padding: 6px 0;
		display: block;
		width: 100%;
		-webkit-appearance: none;
		background: #fff;
		font-weight: 500;
	}

	.label_select{
		position: relative;
	}
	.label_select:after{
		content: "";
		width: 0;
		height: 0;
		border-left: 4px solid transparent;
		border-right: 4px solid transparent;
		border-top: 8px solid #4c4c4c;
		position: absolute;
		top: 50%;
		right: 10px;
		transform: translateY(-50%);
	}
	.label_select.label_100{
		width: 100%
	}

	.cont_preguntas{
		display: flex;
		flex-direction: column;
		gap: 16px;
	}

	.pregunta{
		display: flex;
		justify-content: space-between;
		color: #4c4c4c;
	}

	.pregunta p{
		width: calc(100% - 120px);
		max-width: 332px;
		font-size: 14px;
		font-weight: 500;
		line-height: initial;
	}
	.pregunta p a{
		color: #08085b;
		font-weight: 300;
		line-height: 2;
	}

	.opciones{
		display: flex;
		justify-content: space-between;
		width: 110px;
	}
	.opciones label{
		display: flex;
		justify-content: space-between;
		align-items: center;
		gap: 4px;
		position: relative;
		cursor: pointer;
	}
	.opciones label input[type="radio"]{
		opacity: 0;
		position: absolute;
		left: 0;
		transform: translateX(-100%);
	}
	.opciones label span{
		font-weight: 500;
		font-size: 13.2px;
	}



	.i_check{
		width: 17px;
		height: 14px;
		background-image: url(../img/check-off.png);
		background-size: contain;
		background-repeat: no-repeat;
	}

	.opciones label input[type="radio"]:checked~.i_check{
		background-image: url(../img/check-on.png);
	}


	.fin_form{
		display: block;
		font-size:13px;
	}

	.btn_form{
		color: #fff;
		background: #f84438;
		width: 100%;
		text-align: center;
		padding: 9px;
		cursor: pointer;
		font-size: 26.5px;
		font-weight: bold;
	}
	.fin_form div{
		display: flex;
		align-items: center;
		justify-content: center;
		height: 50px;
	}
	.fin_form div>p {
		font-weight: bold;
		font-size: 13px;
		text-align: center;
	}

	.fin_form div>p span {
		cursor: pointer;
		border-bottom: 1px solid;
		display: inline-block;
	}


/*BENEFICIOS*/

	.beneficios{
		display: block;
	}

	.cont_titulo_seccion{
		display: flex;
		justify-content: space-between;
		align-items: flex-end;
		padding-left: 100px;
	}

	.titulo_hi{
		display: flex;
		align-items: center;
		position: relative;
		max-width: 1300px;
	}
	.titulo_hi:after{
		content: "";
		position: absolute;
		top: 50%;
		right: -8px;
		background: var(--color_2);
		width: 100vw;
/*		height: 5px;*/
		height: 11px;
		transform: translate(100%, -50%);
	}

	.titulo_hi img{
		max-width: 100%;
	}
	.titulo_hi h3{
		font-weight: 900;
		font-size: 60px;
		color: var(--color_1);
		text-transform: uppercase;
		padding-left: 28px;
		white-space: pre-line;
	}
	.titulo_hi h3 span{
		display: inline-block;
/*		width: 20px;*/
		width: 160px;
		height: 2px;
	}

	.color_black .titulo_hi h3{
		color: #000
	}

	.color_black .linea_negra{
		background: #000
	}

	.list_beneficios{
		display: flex;
		justify-content: space-evenly;
		align-items: center;
		flex-wrap: wrap;
		gap: 120px 20px;
		padding: 120px 0 180px 0;
	}

	.item_beneficio{
		width: 100%;
		max-width: 336px;
	}

	.logo_beneficio{
		display: flex;
		align-items: flex-start;
		justify-content: center;
		height: 120px;
	}
	.logo_beneficio img{
		display: block;
	}

	.text_beneficio{
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 124px;
		padding: 8px 0;
		position: relative;
	}
	.text_beneficio:before,
	.text_beneficio:after{
		content: "";
		position: absolute;
		left: 50%;
		transform: translateX(-50%);
		width: 100%;
		max-width: 365px;
		height: 4px;
		background: #000;
	}
	.text_beneficio:before{
		top: 0;
	}
	.text_beneficio:after{
		bottom: 0;
	}

	.text_beneficio p{
		font-size: 23px;
		font-weight: 600;
		text-transform: uppercase;
		text-align: center;
		white-space: pre-line;
		line-height: initial;
	}


/*CONSULTA*/
	
	.consulta{
		margin-bottom: 40px
	}

	.conte_consulta{
		border-bottom: 18px solid #000;
		display: flex;
		width: 100%;
		justify-content: center;
	}

	.conte_consulta div{
		background: #00ffd4;
		padding: 20px 15px;
		text-align: center;
		width: 90%;
		border-top-right-radius: 7px;
		border-top-left-radius: 7px;
		max-width: 924px
	}
	
	.conte_consulta div p{
		font-weight: bold;
		text-transform: uppercase;
		font-size: 13px
	}


/*MALLA CURRICULAR*/

	.cuadro_malla {
		background: #fff;
		padding: 100px 0 60px 0;
	}

	.cont_titulo_malla {
		display: block;
		width: 100%;
		margin: 0 auto;
		text-align: center;
	}

	.titulo_v2 {
		margin-bottom: 20px;
	}

	.titulo_v2 img {
		display: block;
		margin: 0 auto;
		margin-bottom: 10px;
		width: 40px;
	}

	.titulo_v2 h3 {
		text-align: center;
		font-size: 16px;
	}
	.paleta_color {
		width: 200px;
		margin: 0 auto;
	}

	.item_paleta {
		margin: 0 auto;
		margin-bottom: 20px;
	}

	.item_paleta h3 {
		font-size: 12px;
		color: #9f9f9f;
		text-align: center;
	}

	.item_paleta span {
		display: block;
		width: 100%;
		height: 8px;
		margin-top: 5px;
		background: #000;
	}

	.list_malla {
		color: #000;
		width: 100%;
		margin: auto;
		padding: 100px 0;
		max-width: 970px;
	}


	.cont_slider {
		display: flex;
		justify-content: space-between;
		align-items: flex-start;
	}
	.arrows {
		display: inline-block;
		vertical-align: top;
		width: 15px;
		cursor: pointer;
		outline: 0;
	}
	.arrows img{
		width: 100%;
		display: block;
	}
	.arrow-prev{
		visibility: hidden;
	}

	.slider_malla {
		white-space: nowrap;
		width: calc(100% - 40px);
		margin: 0;
		overflow: hidden;
		letter-spacing: -5px;
		vertical-align: top;
		display: inline-block;
	}

	.item_slider {
		width: 33.3%;
		padding: 0 8px;
		transition-duration: 0.7s;
		white-space: normal;
		display: inline-block;
		letter-spacing: normal;
		vertical-align: top;
	}

	.numb_malla {
		color: #fff;
		display: flex;
		align-items: center;
		justify-content: center;
		padding: 15px 0;
		font-size: 48px;
		font-weight: 700;
		height: 62px;
		background: #f84438;
		border-radius: 7px;
		margin-bottom: 30px;
		position: relative;
	}
	.numb_malla:after{
		content: "";
		position: absolute;
		width: 100%;
		height: 9px;
		background: #f84438;
		bottom: -5px;
		transform: translateY(100%);
	}

	.numb_malla p {
		font-weight: 500;
		font-size: 28px;
		margin: 0 5px;
	}

	/*.numb_malla span {
		font-size: 18px;
	}
	*/
	.items_malla{
		text-align: left;
		border: 1px solid #f84438;
		border-radius: 7px;
		/*padding: 15px;*/
		position: relative;
		overflow: hidden;
	}

	.items_malla ul{
		padding: 28px 16px;
		padding-left: 37px;
		position: relative;
		overflow: hidden;
		z-index: 10;
		display: flex;
		flex-direction: column;
		gap: 20px;
	}

	.items_malla li{
		font-weight: normal;
		list-style-image: url(../img/doble_arrow.png);
		line-height: initial;
	}
	.items_malla li.semi_p{
		font-weight: 500;
	}

	.nuevo_curso{
		color: var(--main-color)
	}

	.items_malla ul:before{
		content: "";
		position: absolute;
		z-index: 5;
		width: 50%;
		padding-bottom: 50%;
		border: 6px solid #fedad7;
		right: 2px;
		top: 2px;
		border-top-right-radius: 7px;
		border-left-color: transparent;
		border-bottom-color: transparent;
	}
	.items_malla ul:after{
		content: "";
		position: absolute;
		z-index: 5;
		width: 50%;
		padding-bottom: 50%;
		border: 6px solid #fedad7;
		left: 2px;
		bottom: 2px;
		border-bottom-left-radius: 7px;
		border-top-color: transparent;
		border-right-color: transparent;
	}

	.cabecera_slider{
		display: none;
		/* display: flex; */
		justify-content: center;
		align-items: center;
		padding: 5px;
		background: #000;
		color: #fff;
		font-size: 14px;
		width: 100%;
		min-height: 70px;
		text-align: center;
	}



/*DESCARGA*/

	.cont_descarga{
		display: flex;
		justify-content: flex-end;
		padding-right: 112px;
	}

	.dowload {
		display: flex;
		align-items: center;
		justify-content: center;
		gap: 8px;
		width: 500px;
		height: 112px;
		border-radius: 12px;
		background: var(--color_2);
	}
	/* .dowload:before{
		content: "";
		position: absolute;
		z-index: 10;
		background: rgba(255, 255, 255, 0.15);
		width: 100%;
		height: 50%;
		top: 0;
		left: 0;
	}

	.dowload:after{
		content: "";
		position: absolute;
		z-index: 5;
		background: var(--main-color);
		width: 100%;
		height: 100%;
		top: 0;
		left: 0;
	} */


	.dowload img {
		position: relative;
		z-index: 20;
		filter: invert(1);
	}

	.dowload p{
		color: #fff;
		font-weight: 500;
		font-size: 33px;
		text-transform: uppercase;
		position: relative;
		z-index: 20
	}

	.cont_nuevo{
		display: flex;
		align-items: center;
		justify-content: center;
		margin-bottom: 10px;
	}

	.cont_nuevo span{
		display: block;
		width: 16px;
		height: 16px;
		background: var(--main-color);
		margin-right: 10px;
	}
	.cont_nuevo h3{
		font-weight: 900;
		font-size: 20px;
	}


/*INFORMACION GENERAL*/
	.informacion_general{
		display: block;
	}
	.list_informacion{
		display: flex;
		flex-wrap: wrap;
		justify-content: space-around;
		gap: 40px 12px;
		padding: 60px 0 84px 0;
	}

	.item_informacion{
		max-width: 390px;
		width: 100%;
		text-align: center;
	}
	.ico_informacion{
		margin-bottom: 10px
	}
	.ico_informacion img{
		margin: 0 auto
	}

	.datos_informacion{
		display: flex;
		flex-direction: column;
		gap: 8px;
	}
	.datos_informacion h3{
		font-weight: 300;
		line-height: initial;
		font-size: 32px;
	}
	.datos_informacion p{
		line-height: initial;
		font-size: 29.5px;
		white-space: pre-line;
		font-weight: bold;
	}


/*INFORMES*/

	.informes{
		padding: var(--padding);
		padding-bottom: 120px;
	}

	.cont_informes{
		width: 100%;
		max-width: 1050px;
		margin: 0 auto;
		border: 1px solid #2c2c2c;
		padding: 16px 0;
		border-radius: 7px;
		display: flex;
		align-items: center;
		min-height: 200px;
	}
	.cont_informes>div{
		width: 100%;
		padding: 0 8px;
	}

	.ico_informe{
		display: flex;
		justify-content: center;
		align-items: center;
		gap: 32px;
	}

	.ico_informe img{
		display: block;
	}
	.ico_informe h3{
		font-weight: 900;
		color: var(--color_1);
		font-size: 46px
	}

	.list_asesoras{
		display: flex;
		justify-content: center;
		align-items: center;
		position: relative;
	}
	.list_asesoras:before{
		content: "";
		position: absolute;
		left: 0;
		top: 50%;
		transform: translate(-50%, -50%);
		width: 2px;
		height: 90%;
		background: #000;
	}
	.cont_list_asesoras{
		display: flex;
		flex-direction: column;
		gap: 24px;
	}

	.item_asesora{
		display: flex;
		flex-direction: column;
		gap: 12px;
		font-size: 24px
	}
	.item_asesora h3{
		font-weight: bold;
	}
	.item_asesora p{
		font-weight: 300
	}
	.item_asesora p a{
		font-size: inherit;
		font-weight: inherit;
		white-space: nowrap;
	}


/*BOTON DEJANOS*/

	.deja_datos{
		padding: var(--padding);
		width: 100%;
		display: flex;
		justify-content: center;
	}

	.btn_deja{
		background: #000;
		color: #fff;
		text-align: center;
		padding: 15px 10px;
		width: 100%;
		max-width: 1184px;
		margin-bottom: 80px;
		transition-duration: 0.5s;
		height: 125px;
		display: flex;
		align-items: center;
		justify-content: center;
	}
	.btn_deja:hover{
		opacity: 0.7
	}
	.btn_deja h3{
		font-size: 52px;
		font-weight: 900;
		letter-spacing: 10px;
		text-transform: uppercase;
	}

	.text_final{
		margin-bottom: 15px;
		font-size: 12px;
		font-weight: 300;
		font-style: italic;
	}


/*FOOTER*/

	footer{
		
	}

	.footer{
		display: flex;
		align-items: center;
		justify-content: center;
		min-height: 130px;
		width: 100%;
		margin: 0 auto;
		padding: 16px 24px;
		background: #222222;
	}
	.footer p{
		font-family: 'Arial';
		font-size: 29px;
		text-align: center;
		color: #fff;
		line-height: initial;
	}

/*POP*/

	.fondo_pop {
		background: rgba(255, 255, 255, 0.5);
		position: fixed;
		width: 100%;
		height: 100%;
		z-index: 990;
		left: 0;
		top: 0;
		display: none;
	}

	.pop {
		position: fixed;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
		z-index: 999;
		max-height: calc(100vh - 30px);
		overflow-y: auto;
		display: none;
	}

	.pop_term {
		background: #fff;
		width: 95%;
		max-width: 550px;
		padding: 25px 30px;
		font-family: 'WorkSans'
	}

	.cont_pop {
		position: relative;
		width: 100%;
	}

	.texto_term {
		overflow-y: auto;
		max-height: 90vh;
	}

	.cerar_pop {
		position: absolute;
		right: -5px;
		top: -5px;
		width: 25px;
		cursor: pointer;
	}
	.cerar_pop img {
		width: 100%;
	}

	.texto_term h3 {
		text-align: center;
		font-size: 20px;
		margin-bottom: 15px;
	}


/*GRACIAS*/

	.respuesta .conte_form .zona_segura{
		display: flex;
		flex-direction: column-reverse;
	}
	.respuesta .conte_form .zona_segura .formulario{
		margin-bottom: 25px
	}
	.gracias{
		flex-direction: column;
		min-height: 250px;
		height: auto;
		display: flex;
		align-items: center;
		margin: 7px 0;
		border-top: 9px solid #08085b;
		border-bottom: 3px solid #08085b;
		justify-content: space-around;
		padding: 20px 0
	}

	.gracias h3{
		font-size: 16px;
		text-align: center;
		max-width: 400px;
		margin: 0 auto
	}


/*LISTA UNICA*/

	.list_unica{
		display: block;
		width: 100%;
		color: #000;
		max-width: 870px;
		margin: 0 auto;
		margin-bottom: 45px;
	}

	.list_unica div{
		font-size: 14px;
		font-weight: 200;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center;
		min-height: 62px;
		padding: 3px 10px;
		border-top: 8px solid rgb(255, 255, 255);
		text-align: center;
	}

	.list_unica div p{
		font-family: WorkSans;
		line-height: 1.2
	}




/*SHARE*/

	.cont_share{
		margin-top: 20px;
		display: flex;
		flex-wrap: wrap;
		justify-content: center;
	}
	.cont_share a{
		display: block;
		width: 48%;
		min-width: 200px;
		margin: 15px 1%;
		max-width: 350px;
		transition-duration: 0.7s;
		background: #000;
		border-radius: 10px
	}
	.cont_share a img{
		display: block;
		width: 100%
	}
	.cont_share a:hover{
		background: var(--main-color)
	}


/*DOBLE LINEA DE SELECT*/

.doble_linea select{
	white-space: normal;
}


/*NUGGE*/

.text_lateral {
		/*width: 90%;*/
		margin: 0 auto;
		margin-bottom: 25px;
		text-align: left;
		font-size: 16px;
		font-weight: bold;
}
.text_lateral img {
		margin: 0 auto;
		margin-bottom: 20px;
}


/*CDR CONFERENCIAS MAGISTRALES*/

.conf_magis{
	display: block;
	width: 100%;
	margin-top: 20px
}
.cdr_magis{
	display: flex;
	align-items: center;
	justify-content: center;
	max-width: 230px;
	border: 1px solid #69dbc8;
	height: 45px;
	margin: 0 auto;
	margin-top: 45px;
	color: #087f6b;
	border-radius: 7px;
	font-weight: 500
}

.mrc_informacion{
	padding: 50px 58px 0 0;
}

.mrc_informacion_border{
	border: 8px solid #fff;
	padding: 44px 10px 20px 10px;
	position: relative;
}

.mrc_informacion_border_top{
	display: flex;
	position: absolute;
	top: -40px;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color_1);
	width: 80px;
	align-items: center;
	justify-content: center;
}
.mrc_informacion-info{
	width: 100%;
	max-width: 520px;
	margin: 0 auto;
	display: flex;
	flex-direction: column;
	gap: 24px;
}

.mrc_informacion_border h4{
	
	font-size: 26px;
	line-height: initial;
	text-transform: uppercase;
	text-align: center;
	color: #fff;
	margin-bottom: 12px;
	white-space: pre-line;
}

.mrc_informacion_border p{
	color: #fff;
	text-transform: uppercase;
	font-weight: bold;
	padding: 0 0 0 20px;
	font-size: 22px;
}

.mrc_informacion_border ul{
	padding: 0 0 0 18px;
	margin: 20px 0 0 0;
	color: #fff;
	font-size: 20px;
	letter-spacing: -1px;
}

.mrc_informacion_border ul li{
	margin: 10px 0;
}

.mrc_informacion_texto{
	display: flex;
	align-items: center;
	justify-content: center;
/*		width: 90%;*/
/*		margin: 40px auto 20px auto;*/
	gap: 20px;
	padding: 40px 0;
}

.mrc_informacion_texto img{
	max-width: 80px;
}

.mrc_informacion_texto_texto{
	display: flex;
	flex-direction: column;
	gap: 16px;
}

.mrc_informacion_texto_texto h4{
		font-size: 26px;
		color: #fff;
}

.mrc_informacion_texto_texto p{
	
	color: #fff;
	font-size: 20px;
	letter-spacing: -1px;
	line-height: initial;
/*	text-transform: uppercase;*/
}

.bases{
/*	border-top: 20px solid#08085b;*/
	position: relative;
	padding: 76px 0 0 0;
}
.bases:before{
	content: "";
	position: absolute;
	left: 50%;
	top: 0;
	transform: translateX(-50%);
	width: 100%;
	height: 26px;
	background: var(--color_1);
}

.bases .bases_block{
	display: flex;
	justify-content: space-evenly;
}

.bases .bases_box{
	width: 30%;
	max-width: 300px;
}
.bases .bases_box:last-child{
	max-width: 400px;
}

.bases_box-ico{
	display: flex;
	align-items: flex-start;
	justify-content: center;
	height: 92px;
}
.bases_box-txt{
	display: flex;
	flex-direction: column;
	gap: 24px;
	font-weight: bold;
	font-size: 25px;
}
.bases_box-txt h3{
	font-weight: 500;
	font-size: 27.8px;
/*	line-height: initial;*/
	white-space: pre-line;
}
.bases_box-txt p{
	line-height: initial;
	white-space: pre-line;
}

.bases .bases_box ul{
	display: flex;
	flex-direction: column;
	gap: 28px;
	max-width: 388px;
	padding-left: 44px;
	/*list-style: none;
	padding: 0;
	margin: 0;*/
}

.bases .bases_box ul li{
	position: relative;
	text-align: left;
	list-style: none;
}

.bases .bases_box ul li:before{
	content: '';
	background-image: url(../img/ul_check.png);
	background-size: cover;
	width: 27px;
	height: 28px;
	position: absolute;
	top: 6px;
	left: -16px;
	transform: translateX(-100%);
}
.bases .bases_box ul li:nth-child(1)::before{
	top: 50%;
	transform: translate(-100%, -50%)
}


.download{
	max-width: 1300px;
	margin: 0 auto;
/*	padding: 32px 0 84px 0;*/
	padding: 44px 0 128px 0;
	display: flex;
	flex-direction: column;
/*	gap: 36px;*/
	gap: 64px;
}

.download p{
	font-size: 24px;
	font-weight: 300;
	font-style: italic;
	line-height: initial;
	letter-spacing: -1px;
}

.download .download_btn{
	display: flex;
	justify-content: space-evenly;
	gap: 32px;
}

.download_btn a{
	width: 100%;
	max-width: 484px;
	height: 74px;
	border-radius: 8px;
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: bold;
	font-style: italic;
	text-transform: uppercase;
	text-align: center;
	background: var(--color_2);
	color: #fff;
	padding: 12px 6px;
}


.separador{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 260px;
	padding-bottom: 60px;
}

.separador div{
	width: 100%;
	max-width: 632px;
	height: 4px;
	background: var(--color_1);
}

.disclaimer{
	display: flex;
	align-items: center;
	justify-content: center;
	height: 350px;
	padding: var(--padding);
}

.disclaimer div{
	padding: 40px 0;
	position: relative;
	max-width: 1084px;
}
.disclaimer div:before,
.disclaimer div:after{
	content: "";
	position: absolute;
	left: 50%;
	transform: translateX(-50%);
	background: var(--color_2);
	height: 4px;
}
.disclaimer div:before{
	top: 0;
	width: 90%;
	max-width: 630px;
}
.disclaimer div:after{
	bottom: 0;
	width: 80%;
	max-width: 550px;
}

.disclaimer div p{
	text-align: center;
	font-weight: 100;
	font-size: 26px;
	font-style: italic;
	letter-spacing: -1px;
}


/*RESPUESTA*/
.con_respuesta{
	display: flex;
	width: 100%;
	height: 100%;
	align-items: center;
	padding-bottom: 250px;
}
.cdr_respuesta{
	display: flex;
	align-items: center;
	width: 100%;
	height: 420px;
	background: #fff;
	padding: 20px;
}
.cdr_respuesta div{
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
	height: 260px;
	border-top: 8px solid var(--color_1);
	border-bottom: 3px solid var(--color_1);
}
.cdr_respuesta div h3{
	font-size: 36px;
	text-align: center;
	width: 100%;
	max-width: 450px;
	line-height: initial;
}