.cards_module .item {
    /* flex-basis: calc(25% - 3rem); */
	border-radius: var(--radius1);
	overflow: hidden;
	cursor: pointer;
}
.cards_module .call-to-action .item {
	position: relative;
	text-align: center;
}
.cards_module .call-to-action .item * {
	color: #FFF;
}
.cards_module .call-to-action .item:before {
	content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(000, 000, 000, 0.2);
    -webkit-transition: background-color 100ms linear;
    -moz-transition: background-color 100ms linear;
    -o-transition: background-color 100ms linear;
    -ms-transition: background-color 100ms linear;
    transition: background-color 100ms linear;
	z-index: 2;
}
.cards_module .call-to-action .item:hover:before {
    background-color: rgba(000, 000, 000, 0.0);
}
.cards_module .item a { text-decoration: none;}
/* .cards_module .items-list { */
	/* margin-top: 35px; */
    /* display: grid; */
    /* grid-template-columns: calc(25% - 3rem) calc(25% - 3rem) calc(25% - 3rem) calc(25% - 3rem); */
    /* justify-content: space-between; */
    /* column-gap: 25px; */
    /* row-gap: 35px; */
    /* flex-wrap: wrap; */
/* } */
.cards_module .items-top-content {
    text-align: center;
}
.cards_module .itemtext {
    padding: 0.9rem 0 3rem 0;
	max-width: 80%;
}
.cards_module .call-to-action .itemtext {
	position: absolute;
	top: 50%;
	left: 50%;
	transform:translate(-50%, -50%);
	padding: 1.5rem;
	z-index: 3;
    border: 0;
}
.cards_module .media, 
.cards_module .media figure {
    width: 100%;
    height: 46rem;
	border-radius: var(--radius1);
}
.cards_module .call-to-action .media, 
.cards_module .call-to-action .media figure {
	height: 40rem;
}
.cards_module .media img,
.cards_module .media video{
    position: absolute;
    width: 100%;
    height: 100%;
    z-index: 1;
    object-fit: cover;
    object-position: center;	
}
@media screen and (max-width: 1000px) {
	.cards_module .item {
		flex-basis: calc(100%);
	}
	.cards_module .items-list {
		column-gap: 0;
	}
	.cards_module .media, .cards_module .media figure {
		height: 29vw;
	}
}
