@import url('https://fonts.googleapis.com/css?family=Poppins:200,300,400,500,600,700,800,900&display=swap');
*
{
	margin: 0;
	padding: 0;
	box-sizing: border-box;
	font-family: 'Poppins', sans-serif;
}


/********************/
/* ESTILOS DEL BODY */
/********************/


.cl_body
{
	display: flex;
	flex-direction: column;
	background-repeat: no-repeat;
	background-position-x: center;
	background-position-y: top;
	overscroll-behavior-y: none;
    touch-action: pan-y;
}


/********************/
/* ESTILOS DEL MAIN */
/********************/


.cl_main 
{
	display: block;
	visibility: hidden;
	position: absolute;
	width: 100%;
	opacity: 0;
	transition-property: opacity;
	transition-duration: 1000ms;
	transition-timing-function: ease-in-out;
}


/***************************************/
/* ESTILOS DE LOS TEXTOS DE LA EMPRESA */
/***************************************/


.cl_cont_texto_la_emp_cen_tel_tab_not_com
{
	display: flex;
	flex-direction: column;
	position: relative;
	top: 0;
	width: 100%;
	height: 472px;
 	margin-top: 105px;
	padding-top: 4px;
	background-color: transparent;	
}

.cl_cont_texto_la_emp_cen_tel_cel
{
	display: none;
	flex-direction: column;
	position: relative;
	top: 0;
	width: 100%;
 	margin-top: 77px;
	padding-top: 4px;
	background-color: transparent;	
}

.cl_texto_la_emp_cen_tel
{
	font-family: "Helvetica";
	font-size: 21px;
 	font-weight: 100;
	color: rgb(255, 255, 255);
	text-decoration: none;
 	letter-spacing: 1px;
	text-align: center;
	text-wrap: balance;
	padding-top: 10px;
	padding-bottom: 10px;
	user-select: none;
}

.cl_cont_texto_la_emp_por_enf_tab_not_com
{
	display: flex;
	flex-direction: column;
	position: absolute;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;	
	background-color: rgb(255, 255, 255);	
}

.cl_cont_texto_la_emp_por_enf_cel
{
	display: none;
	flex-direction: column;
	position: absolute;
	width: 100%;
	padding-top: 20px;
	padding-bottom: 20px;	
	background-color: rgb(255, 255, 255);	
}

.cl_texto_la_emp_por_enf
{
	font-family: "Helvetica";
	font-size: 21px;
 	font-weight: 100;
	color: rgb(0, 0, 0);
	text-decoration: none;
 	letter-spacing: 1px;
	text-align: center;
	text-wrap: balance;
	padding-top: 10px;
	padding-bottom: 10px;
	user-select: none;
}


/*********************/
/* PUNTOS DE RUPTURA */
/*********************/


/* Dispositivos grandes como notebooks o computadoras (más de 960 px) */
@media only screen and (min-width: 961px)
{

}

/* Dispositivos medianos como tablets (960 px o menos) */
@media only screen and (max-width: 960px)
{
	.cl_cont_texto_la_emp_cen_tel_tab_not_com
	{
		margin-top: 90px;
	}
}

/* Dispositivos chicos como teléfonos (768 px o menos) */
@media only screen and (max-width: 768px)
{
	.cl_cont_texto_la_emp_cen_tel_tab_not_com
	{
		display: none;
	}
	.cl_cont_texto_la_emp_cen_tel_cel
	{
		display: flex;
	}
	.cl_cont_texto_la_emp_por_enf_tab_not_com
	{
		display: none;	
	}
	.cl_cont_texto_la_emp_por_enf_cel
	{
		display: flex;
	}
	.cl_texto_la_emp_cen_tel
	{
		font-size: 16px;
		font-weight: 400;
	}
	.cl_texto_la_emp_por_enf
	{
		font-size: 16px;
		font-weight: 400;
	}
}