.cont-cards {
	gap: 2em;
	display: grid;
	padding-top: 2em;
	padding-bottom: 2em;
	grid-template-columns: repeat(3,1fr);
}

.cont-cards > div {
	background-color: #ffffff;
	border-radius: 0 0 30px 0;
	box-shadow: 0 3px 30px #00000012;
}


.card .card-bg {
	height: 230px;
	overflow: hidden;
	position: relative;
	background-size: cover;
	border-radius: 0 0 30px 0;
	background-position: center;
	background-repeat: no-repeat;
}

.card .card-bg .bg {
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	position: absolute;
	background-size: cover;
	background-position: center;
	background-repeat: no-repeat;
}

.card .card-infos {
	padding: 1.5em;
	text-align: center;
	border-radius: 0 0 30px 0;
}



.card .card-infos h2 {
	line-height: 40px;
	font-weight: 700;
	letter-spacing: 0;
	opacity: 1!important;
	text-transform: none!important;
	font-size: calc(10px + 6 * ((100vw - 320px) / 680))!important;
}


.card .card-infos a {
	color: #ffffff;
	display: flex;
	font-size: 14px;
	font-weight: 400;
	padding: 0.8em 1em;
	border-radius: 50px;
	align-items: center;
	text-decoration: none;
	background-color: #a8ab00;
	font-family: "Montserrat", Sans-serif;
}

.card .card-infos a > span {
	width: 100%;
	display: flex;
	padding-right: 4em;
	position: relative;
	align-items: center;
}

.card .card-infos a > span:after {
	right: 0;
	content: "";
	width: 16px;
	height: 16px;
	display: block;
	position: absolute;
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition: all .5s ease-in-out;
	background-image: url("/wp-content/themes/astra-child/assets/img/arrow-w.svg");
}

.card .card-infos a:hover > span:after {
	right: 3em;
}


/*RESPONSIVE*/

/*phone*/
@media (max-width: 767px) {

	.card .card-bg {
		height: 180px;
	}

	.cont-cards {
		grid-template-columns: repeat(1, 1fr);
	}

	.card .card-infos h2 {
		font-size: calc(18px + 6 * ((100vw - 320px) / 680))!important;
	}

}

/*tablet*/
@media (min-width: 768px) and (max-width: 1024px) {

	.card .card-bg {
		height: 200px;
	}

	.cont-cards {
		grid-template-columns: repeat(2, 1fr);
	}

	.card .card-infos h2 {
		font-size: calc(16px + 6 * ((100vw - 320px) / 680))!important;
	}

}

/*mobile and tablet*/
@media (max-width: 1024px) {

	.cont-cards {
		padding-left: 5%;
		padding-right: 5%;
	}


}

/*desktop*/
@media (min-width: 1025px) {

	.cont-cards {
		padding-left: 15%;
		padding-right: 15%;
	}


}

/*pc portable*/
@media (min-width: 1025px) and (max-width: 1700px) {

	.cont-cards {
		padding-left: 10%;
		padding-right: 10%;
	}

}


/*RESPONSIVE*/
