.af_row br {
    display: none;
}

	.af_row{
		display: flex;
		flex-wrap: wrap
	}
	.af_col{
		padding: 0 15px;
		width: 25%;
		box-sizing: border-box;
		margin-bottom: 20px;
		display: flex
	}
	.af_box{
		padding: 20px;
		width: 100%;
		box-sizing: border-box;
		position: relative;
		transition: .3s all ease;
		text-align: center;
		background-color: #fff;
    	border-radius: 3px
	}
	.af_box:hover{
		box-shadow: 0 20px 25px -5px rgb(0 0 0 / 10%), 0 10px 10px -5px rgb(0 0 0 / 4%);
		transform: scale(1.05);
	}
	.af_h2{
		font-size: 1.5rem;
    	font-weight: 600;
    	margin: 1.5rem 0 1rem;
    	color: #250269
	}
	.af_logo{
		max-height: 70px
	}
	.af_link{
		position: absolute;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0
	}
		.af_col {
    width: 30%;
}
.af_row {
    justify-content: space-around;
}
	@media only screen and (max-width: 991px){
		.af_col{
			width: 33.33%
		}
	}
	@media only screen and (max-width: 767px){
		.af_col{
			width: 50%
		}
	}
	@media only screen and (max-width: 575px){
		.af_col{
			width: 100%;
			margin: 0
		}
		.af_col + .af_col {
		    margin-top: 20px;
		}
	}
