.block-list {
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 10px;
	margin-bottom: 25px;
}

.block-list h2 {
	font-size: 15px;
	text-align: center;
	margin-bottom: 0;
	margin-top: 0;
	color: #000;
	font-weight: 600;
}

.block-list span {
	color: #FFF;
}

.block-list a {
	background-color: #996f00;
	color: #FFF;
	text-decoration: none;
	border-radius: 8px;
	padding: 13px 25px;
	font-size: 20px;
	font-weight: 700;
	border: 1px solid #e9e9e9;
	box-shadow: 0 10px 2.5rem #e9e9e9;
	display: flex;
	align-items: center;
	justify-content: space-between;
	transition: background-color 0.3s ease;
}

.block-list a:hover {
	background-color: #e6ac00;
}

.block-list a i {
	font-style: normal;
	background-color: #e6ac00;
	color: #ffffff;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	font-weight: normal;
	border-radius: 50%;
	transition: background-color 0.3s ease;
}

.block-list a:hover i {
	background-color: #996f00;
}

@media (max-width: 690px) {
	.block-list a {
		font-size: 15px;
	}
}