.podg_card {
	height: 330px;
	background: white;
	border-radius: 5px;
	-moz-box-shadow: 0px 0px 5px 2px rgba(33,33,33,.7);
	-webkit-box-shadow: 0px 0px 5px 2px rgba(33,33,33,.7);
	box-shadow: 0px 0px 5px 2px rgba(33,33,33,.7);
	-moz-transition: -moz-transform .15s linear;
	-o-transition: -o-transform .15s linear;
	-webkit-transition: -webkit-transform .15s linear;
	text-align: center;
	margin: 8px 7px 10px 7px;
	display: grid;
	padding: 0px !important;
	width: 31%;
	font-size: 16px;
}
.podg_card:hover {
	cursor: pointer;
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
}
.podg_name {
	vertical-align: middle;
	text-decoration: none;
    color: black;
    font-weight: bold;
}
@media(max-width: 991px) {
	.podg_card {
		width: 30%;
		font-size: 14px;
	}
}
@media(max-width: 768px) {
	.podg_card {
		width: 45%;
	}
}
@media(max-width: 767px) {
	.podg_card {
		font-size: 16px;
	}
}
@media(max-width: 436px) {
	.podg_card {
		font-size: 14px;
		height: 290px;
	}
}
@media(max-width: 360px) {
	.podg_card {
		font-size: 11px !important;
		width: 44%;
		height: 230px;
	}
}
@media(max-width: 330px) {
	.podg_card {
		font-size: 10px !important;
	}
}