.styled-title:after {
    content: "";
    display: block;
    width: 140px;
    height: 2px;
    margin: 2px auto 0;
    line-height: auto;
    background: linear-gradient(90deg, #000FFF 0%, #00FFFF 100%);
}

/* ----------
	BADGE */
.badge {
	position: absolute;
	top: 0;
	left: 0;
	padding: 12px;
	margin: -10px -10px;
	background-color: #000;
	border-radius: 50px;
	display: flex;
	justify-content: center;
	max-height: 40px;
	aspect-ratio: 1/1;
}
.badge img {
	max-width: 25px;
	height: auto;
}
.badge.badge-primary {
	background-color: #000FFF;
}
.badge.badge-secondary {
	background-color: #00FFFF;
}
.badge.badge-white {
	background-color: #fff;
}
.badge.badge-green {
  background-color: #00ff00;
}
.badge.badge-dark {
  background-color: #000;
}
