.pg_boxes_list {
	width: 100%;
	display: grid;
	grid-template-columns: 1fr;
	grid-gap: 15px;
	padding-bottom: 15px;
}

.pg_box_elementTop {
	height: 245px;
}

.pg_box_element {
	display: flex;
	flex-direction: column;
	border-radius: 25px;
	overflow: hidden;
	background: #fff;
}

.pg_box_elementTop section {
	display: block;
	height: 100%;
	width: 100%;
	background-position: center;
	background-size: contain;
	background-repeat: no-repeat;
}

.pg_box_elementBottom {
	display: flex;
	flex-direction: column;
	background: #fff;
	align-items: center;
	padding: 20px 0 40px 0;
}

.pg_box_subTitle {
	color: #C50178;
	font-weight: 600;
	padding-bottom: 15px;
	font-size: 12px;
}

.pg_box_title {
	color: #001D8C;
	font-size: 20px;
	font-weight: 600;
	padding-bottom: 10px;
}

.pg_box_description {
	font-size: 14px;
	text-align: center;
	width: 90%;
}

.pg_box_button {
	background: #6CC100;
	color: #fff;
	/* padding: 12px 52px; */
	width: 222px;
	padding: 18px 56px;
	margin: 15px 0 0;
	/* border-radius: 15px; */
	transition: 0.3s;
	font-size: 13px;
}

.pg_box_button:hover {
	color: #fff !important;
}

@media (min-width: 768px) {
	.pg_box_button {
		margin: 35px 0 0;
	}
	.pg_box_elementTop {
		height: 280px;
	}
	.pg_boxes_list {
		grid-template-columns: 1fr 1fr 1fr;
	}
}