.grow img{
transition: 1s ease;
}

.grow img:hover{
-webkit-transform: scale(1.2);
-ms-transform: scale(1.2);
transform: scale(1.2);
transition: 1s ease;
}


.example_d {
color: #fff !important;
text-transform: uppercase;
background: #36BDBA;
padding: 20px;
border: 4px solid #fff !important;
border-radius: 6px;
display: inline-block;
transition: all 0.3s ease 0s;
}


.example_d:hover {
color: #fff !important;
border-radius: 50px;
border-color: #FFE449 !important;
transition: all 0.3s ease 0s;
	background: #FA68A0;
}

