#find-a-pet .pet-tile {
	position: relative;
	display: block;
	margin-bottom: 2rem;
	box-shadow: 1px 1px 3px #EEE;
	transition: all 0.4s ease;
}

#find-a-pet .pet-tile:hover {
	transform: scale(105%);
	z-index: 2;
}

#find-a-pet .pet-tile > .img-cntr {
    display: block;
    position: relative;
    width: 100%;
    height: 0;
	padding-top: 71.42%;
	background: #FFF;
    border: 10px solid #FFF;
	border-bottom: 0;
    text-align: center;
	overflow: hidden;
	transition: all 0.2s ease;
}

#find-a-pet .pet-tile:hover > .img-cntr {
	border-color: #00C8C3;
}

#find-a-pet .pet-tile > .img-cntr > .bg {
	position: absolute;
	top: 0;
	bottom: 0;
	width: 100%;
    background-repeat: no-repeat;
	background-position: center;
	background-size: cover;
	transition: all 0.4s ease;
}

#find-a-pet .pet-tile:hover > .img-cntr > .bg {
	transform: scale(110%);
}

#find-a-pet .pet-tile > h3 {
	width: 100%;
	height: 3.6rem;
	background: #FFF;
	font-size: 0.9rem;
	font-weight: 600;
	text-align: center;
	line-height: 3.6rem;
	margin: 0;
	transition: all 0.2s ease;
}

#find-a-pet .pet-tile:hover > h3 {
	background: #00C8C3;
	color: #FFF;
}

#find-a-pet .pet-tile > h3 > span {
	font-family: 'Nanum Pen Script', sans-serif;
	font-size: 2.2rem;
	vertical-align: middle;
	margin-left: 0.2rem;
	transition: font-size 0.2s ease;
}

#find-a-pet .pet-tile:hover > h3 > span {
	font-size: 2.6rem;
}