.grid-cards-ac-me {
	display: grid;
	gap: 12px;
	font-size: 0;
	padding-bottom: 24px;
}

.grid-cards-ac-me article {
	position: relative;
	border-radius: 8px;
	overflow: hidden;
}

.grid-cards-ac-me article img {
	height: 120px;
	object-fit: cover;
	width: 100%;
}

.grid-cards-ac-me article a {
	position: absolute;
	background: #000000;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	opacity: 0.4;
	z-index: 1;
}

.grid-cards-ac-me article p {
	position: absolute;
	font-size: 20px;
	color: #ffffff;
	z-index: 2;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
	text-transform: none;
	pointer-events: none;
	width: 100%;
	text-align: center;
}

.grid-cards-ac-me article figure {
	position: relative;
}

@media screen and (min-width:576px) {
}

@media screen and (min-width:768px) {
}

@media screen and (min-width:992px) {
	.grid-cards-ac-me {
		grid-template-columns: repeat(5, calc(20% - 10px));
		text-align: center
	}
	.grid-cards-ac-me article a {
		background: none;
	}
	.grid-cards-ac-me article img {
		height: 156px;
		border-radius: 8px;
		overflow: hidden;
	}
	.grid-cards-ac-me article p {
		position: relative;
		top: initial;
		left: initial;
		transform: none;
		color: #000000;
		font-size: 16px;
		margin-top: 8px;
		border-bottom: 2px solid transparent;
		display: inline-block;
		width: auto;
		line-height: 1.3;
		transition: all .3s ease;
	}
	.grid-cards-ac-me article:hover p {
		color: var(--inv360-primary-color);
		border-color: var(--inv360-primary-color);
	}
	.grid-cards-ac-me article {
		border-radius: 0;
	}
	.grid-cards-ac-me article figure:after {
		content: '';
		position: absolute;
		z-index: 1;
		background-color: transparent;
		top: 0;
		left:0;
		right:0;
		bottom: 0;
		border-radius: 8px;
		transition: all .3s ease;
		pointer-events: none;
		background-position: center;
		background-repeat: no-repeat;
	}
	.grid-cards-ac-me article:hover figure:after {
		background-color: rgba(0,0,0,0.5);
		background-image: url(images/external-link.svg);
	}
}

@media screen and (min-width:1200px) {
}

@media screen and (min-width:1400px) {

}