@charset "utf-8";

.cards {
	margin: 0 auto;
	display: grid;
	gap: 7px;
	padding: 10px 0px 0px 0px;
	background: #00507C !important;
}

@media screen and (min-width: 768px) {
	.cards {
		grid-template-columns: repeat(auto-fit, minmax(200px, 1fr))
	}
}

@media screen and (max-width: 767px) {
	.cards, .cards1 {
		grid-template-columns: repeat(1, 1fr);
	}
}

.cards2 {
	color: #272727;
	margin: 0 auto;
	display: grid;
	gap: 18px;
}

@media screen and (min-width:768px) {
	.cards2 {
		grid-template-columns: repeat(auto-fit, minmax(250px, 1fr))
	}
}

@media screen and (max-width:767px) {
	.cards2 {
		grid-template-columns: repeat(1, 1fr);
		gap: 0px;
	}
}

.cards1 {
	margin: 0 auto;
	display: grid;
	gap: 7px;
	padding: 10px 0px 0px 0px;
}

@media screen and (min-width: 768px) {
	.cards1 {
		grid-template-columns: repeat(4, 1fr);
	}
}

.card {
	opacity: 1.0 !important;
}

.card1 {
	background: #FFFFFF;
	border: 1px solid #DBDBDB;
	box-shadow: 0px 2px 16px rgba(0, 0, 0, 0.08);
	border-radius: 5px;
}

.card-body {
	padding-left: 0px !important;
	padding-right: 0px !important;
}

.cardicon {
	height: 70px;
	width: 71px;
}

.card2 {
	background: #00507C !important;
	border: 0;
	border-radius: 5px;
}

.borderWhite {
	border-bottom: 1px solid #DBDBDB;
	width: 100%;
}

.card-image {
	border-radius: 8px;
	width: 100%;
}

.border-bottom-line {
	border-bottom: 1px solid #DBDBDB;
}

.cards3 {
	display: flex;
	flex-direction: column;
}