.c-button {
	display: inline-block;
	width: fit-content;
	padding: 18px 36px;
	background-color: #cd421d;
	border-radius: 100px;
	font-weight: 700;
	line-height: 1;
	color: #fff;
	transition: background-color 0.5s ease-in-out;
}

@media (any-hover: hover) {
	.c-button:hover {
		background-color: #898a8a;
		opacity: 1;
	}
}