.full-cards {
	display: grid;
	gap: 16px;
}
@media (min-width: 768px) {
	.full-cards {
		grid-template-columns: repeat(2, 1fr);
	}
}
@media (min-width: 1024px) {
	.full-cards {
		grid-template-columns: repeat(3, 1fr);
	}
}
@media (min-width: 1200px) {
	.full-cards {
		grid-template-columns: repeat(4, 1fr);
	}
	.full-cards--three {
		grid-template-columns: repeat(3, 1fr);
	}
}
.full-cards__item {
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-box-pack: justify;
	-ms-flex-pack: justify;
	border: 1px solid rgba(31, 82, 105, 0.24);
	border-radius: 8px;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	height: 100%;
	justify-content: space-between;
	overflow: hidden;
}
.full-cards__item-image {
	max-height: 180px;
}
.full-cards__item-image img {
	max-height: 180px;
	-o-object-fit: cover;
	object-fit: cover;
	-o-object-position: center;
	object-position: center;
	width: 100%;
}
.full-cards__item-image.custom {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	height: 100%;
	justify-content: center;
	max-height: 100px;
	padding: 30px 30px 10px;
}
.full-cards__item-image.custom img {
	max-height: 100px;
	-o-object-fit: contain;
	object-fit: contain;
}
.full-cards__item-image.small {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	-webkit-box-align: center;
	-ms-flex-align: center;
	align-items: center;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	justify-content: center;
	padding: 16px;
	width: auto;
}
.full-cards__item-image.small img {
	height: 80px;
	-o-object-fit: contain;
	object-fit: contain;
	width: 80px;
}
.full-cards__item-container {
	-webkit-box-flex: 1;
	-ms-flex-positive: 1;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-box-pack: start;
	-ms-flex-pack: start;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-direction: column;
	flex-direction: column;
	flex-grow: 1;
	justify-content: flex-start;
	padding: 12px;
}
.full-cards__item h3,
.full-cards__item-title {
	color: #111827;
	font-family: Montserrat, Arial, Verdana, sans-serif;
	font-size: 16px;
	font-weight: 700;
	line-height: 24px;
}
@media (min-width: 768px) {
	.full-cards__item h3,
	.full-cards__item-title {
		font-size: 18px;
		line-height: 27px;
	}
}
.full-cards__item-subtitle {
	color: #313d4a;
	font-family: proxima_nova_rgregular, Arial, Verdana, sans-serif;
	font-size: 12px;
	font-weight: 400;
	margin-top: 4px;
}
@media (min-width: 768px) {
	.full-cards__item-subtitle {
		font-size: 14px;
	}
}
.full-cards__item-description {
	color: #313d4a;
	font-family: proxima_nova_rgregular, Arial, Verdana, sans-serif;
	font-size: 12px;
	font-weight: 400;
	margin-top: 4px;
}
@media (min-width: 768px) {
	.full-cards__item-description {
		font-size: 14px;
	}
}
.full-cards__item-link {
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	background-color: #cd1b22;
	border-radius: 999px;
	color: #fff;
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	font-size: 16px;
	font-weight: 700;
	justify-content: center;
	line-height: 150%;
	margin: 0 12px 12px;
	padding: 8px 32px;
	text-align: center;
	text-decoration: none;
}
.full-cards__item-link:hover {
	background-color: #a0151b;
	color: #fff;
	text-decoration: none;
}
.full-cards__item .list-check {
	font-size: 12px;
	font-weight: 400;
	margin: 0;
}
@media (min-width: 768px) {
	.full-cards__item .list-check {
		font-size: 14px;
	}
}
