.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 a {
    background-color: #0f77be;
    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;
}
.block-list a:hover {
	background-color: #87CD1D;
}
.block-list a i {
	font-style: normal;
	background-color: #87CD1D;
	color: #ffffff;
	width: 40px;
	display: flex;
	align-items: center;
	justify-content: center;
	height: 40px;
	font-weight: normal;
	border-radius: 50%;
	
}
@media (max-width: 690px) {
	.block-list a {
		font-size: 14px;
	}
}
