.section-3 .grid-container{
	max-width: 735px;
	display: flex;
	flex-wrap: wrap;
	margin: auto;
	justify-content: space-between;
	margin-bottom: -24px;
	margin-top: 40px;
}

.section-3 .item{
	position: relative;
	width: 225px;
	min-height: 152px;
	
	flex: 0 1 auto;
	display: flex;
	
	justify-content: center;
	align-items: center;
	text-align: center;
	
	border-radius: 6px;
	border: 1px solid #BABABA;
	margin-bottom: 24px;
	
	font-size: 1.25rem;
	font-weight: bold;
	padding: 1em;
	
	overflow: hidden;
}

.section-3 .item:before{
	content: '';
	width: 0px;
	height: 0px;
	display: block;
	background: #006353;
	border-radius: 100% 0 0 0;
	position: absolute;
	bottom: 0;
	right: 0;
	z-index: 0;
	transition: all 0.3s;
}

.section-3 .item span {
	position: relative;
	z-index: 1;
	
	color: #3C3C3C;
	transition: all 0.3s;
}

.section-3 .item:hover:before {
	width: 150%;
	height: 150%;
	transition: all 0.45s;
}

.section-3 .item:hover span {
	color: white;
	transition: all 0.45s;
}

@media (max-width: 767px) {
	.section-3 .grid-container{	
		
	}
	.section-3 .item { width: calc(50% - 10px); }

}

