/*
**  Estilos que se asocian a los textos
*/

.hero h1,
.uppercase,
.uppercase *{
	text-transform: uppercase;	
}

.underline,
.underline *{
	text-decoration: underline;	
}

.text-center,
.text-center *{
	text-align: center;	
}

.text-light,
.text-light *{
	font-weight: 300;
	
	strong,
	b{
	  font-weight: 700;	
	}
	
}

.text-regular,
.text-regular *{
	font-weight: 400;
	
  strong,
	b{
	  font-weight: 700;	
	}

}
.text-bold,
.text-bold *,
p strong,
p.b{
	font-weight: 700;
}

.text-italic,
.text-italic *{
	font-style: italic;
}

.blanco,
.blanco *{
	color: var(--White-100);
}

.pathway,
.pathway * {
	font-family: "Pathway Gothic One";
}

.poppins,
.poppins *{
	font-family: "Poppins";
}

/*Migas de pan*/
#breadcrumbs{
    display: inline-block;
    padding: 0px 5px;
    background-color: var(--Secondary-100);

	span{
		font-weight:300;
	}
	a{
		font-weight:700;
	}
}