.cards-icons {
	position: relative;
}

.cards-icons__top-content {
	margin-bottom: 25px;
}

.cards-icons-item {
	margin-top: 25px;
}

.cards-icon {
	padding: 36px 20px;
	border-radius: 8px;
	border: 2px solid #f5f5f7;
	background: #fff;
	display: block;
	color: #6b6b6b;
}

.cards-icon h4 {
	margin-bottom: 20px;
	color: #12284c;
}

.cards-icon h4:last-child {
	margin-bottom: 0;
}

.cards-icon__icon {
	font-size: 46px;
	line-height: 1em;
	color: #12284c;
	font-weight: normal;
	margin-bottom: 20px;
}

.cards-icon__bottom {
	margin-top: 26px;
}

.card__description p {
	margin-bottom: 20px;
}

.card__description p:last-child {
	margin-bottom: 0;
}

.cards-icon__description {
	margin-bottom: 20px;
	max-height: 180px;
	transition: height 0.3s ease-in-out;

}



.card-flex {
	justify-content: center;
}

.cards-icons.bg-dark-blue,
.cards-icons.bg-blue-gradient {
	& .cards-icons__top-content :is(h2, h3, h4, h5, h6) {
		color: #ffffff;
		-webkit-text-fill-color: #fff;
	}
}

.image-icon {
	width: 100px;
	height: 100px;

	& img {
		width: 100%;
		height: 100%;
		object-fit: contain;
	}
}

@media (min-width: 768px) {
	.cards-icons-item {
		margin-top: 32px;
	}

	.cards-icon {
		padding: 32px 20px;
		height: 100%;
		display: flex;
		justify-content: space-between;
		flex-direction: column;
	}

	.cards-icon__icon {
		font-size: 52px;
		margin-bottom: 20px;
	}

	.cards-icon__bottom {
		margin-top: 35px;
	}

	.cards-icon__description p {
		margin-bottom: 22px;
	}
}

@media (min-width: 1200px) {
	.cards-icons__top-content {
		margin-bottom: 15px;
	}

	.cards-icons-item {
		margin-top: 12px;
	}

	.cards-icon {
		padding: 30px 20px;
	}

	.cards-icon h4 {
		margin-bottom: 20px;
	}

	.cards-icon__icon {
		font-size: 52px;
		margin-bottom: 20px;
	}

	.cards-icon__bottom {
		margin-top: 12px;
	}
	.cards-icon--link.on-hover .cards-icon__description{
		max-height: 0;
		transition: max-height 0.3s ease-in-out;
	}
	.cards-icon--link.on-hover:hover .cards-icon__description{
		max-height: 180px;
	}
}


