.section-cards__title {
	margin-bottom: 30px;
}

.section-cards__cards {
	display: grid;
	gap: 30px;
	margin: 0 auto;
	padding-top: 10px;
}

.section-cards__card {
	display: flex;
	flex-direction: column;
	align-items: center;
	background: #FFFFFF;
	box-shadow: 0 3px 6px rgb(30 32 72 / 10%);
	border: 1px solid #f1f1f1;
	border-radius: 4px;
	height: 100%;
	max-width: 495px;
	overflow: hidden;
	transition: all 0.3s ease;
	text-decoration: none;
}

.section-cards__card:hover {
	box-shadow: 0 3px 6px rgb(30 32 72 / 20%);
	text-decoration: none;
}

.section-cards__card-image {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 100%;
}

.section-cards__card-image img {
	object-fit: contain;
	max-width: 100%;
	height: 100%;
}

.section-cards__card-arrow {
	position: absolute;
	right: 28px;
	line-height: 1;
	opacity: 1;
	transition: all 0.3s ease;
}

@media (max-width: 992px) {
	.section-cards__title {
		font-size: 2rem;
		line-height: 1.2;
	}
}

{# Card link #}
.section-cards__card-link-button {
	background-color: transparent;
	border: none;
	border-bottom: 2px solid #019fd6;
	font-family: "Avenir";
	font-size: 16px;
	font-weight: 500;
	padding: 0;
	transition: all 0.3s ease;
}
.section-cards__card-link-button:hover,
.section-cards__card-link-button:focus {
	text-decoration: none;
}
.section-cards__card-link-button:hover {
	border-color: transparent;
}

@media(max-width: 767px) {
	.section-cards__title {
		font-size: 1.5rem;
		line-height: 3.4rem;
	}
	.section-cards__cards {
		grid-template-columns: repeat(1, 1fr);
		padding-top: 0px;
	}
}