
/***** 7009 ******/

:root {
	
	--redblue: linear-gradient(80deg, #f20687, #077ee7);
	--bluered: linear-gradient(80deg, #077ee7, #f20687);
	--ffc6: linear-gradient(80deg, #ffc600, #f20687);

}

h1,

h1 {
	font-size: calc(var(--fs) * 3);
	margin-bottom: 2.5rem;
}
/****** ************/
.txt-redblue {
	display: inline-block;
	background: var(--redblue);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.txt-success {
	color: #008000;
}
.txt-danger {
	color: #ff0000;
}
.txt-center {
	text-align: center;
}
/****** ************/
.txt-bluered {
	display: inline-block;
	background: var(--bluered);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/****** ************/
.txt-ffc6 {
	display: inline-block;
	background: var(--ffc6);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

