.content-cards {
	display: flex;
	flex-direction: column;
	margin: 0;
}

.content-cards .swiper-container {
    padding: 0 30px;
}
.content-cards > h3 {
    text-align: center;
}
.content-cards .model-cards {
    /*display: flex;
    flex-wrap: wrap;
    justify-content: center;*/
}
.content-cards .card {
	/*flex: 1 1 100%;*/
	transition: all 0.15s ease;
	/*padding: 1rem 0;
    margin: 0 1rem;*/
	display: flex;
	flex-direction: column;
	position: relative;
    margin: 1rem 0;
    /*max-width: 400px;*/
}
.card--content {
    padding: 0 10px;
}
.content-cards .card .card--image {
	display: block;
	width: 100%;
    height: max-content;
}
.content-cards .card img {
	width: 100%;
	height: auto;
	margin: 0;
    z-index: 5;
    position: relative;
    transition: all 0.15s ease-in-out;
    margin-bottom:0.5rem;
}
.content-cards .card:hover img {
    transform: scale(1.05);
}
.content-cards .card .card--actions {
	width: 100%;
	align-self: flex-end;
	text-align: center;
    z-index: 9;
    position: relative;
}
.content-cards .swiper-cards .swiper-button-next i,
.content-cards .swiper-cards .swiper-button-prev i {
    color: #000;
    background: #eee;
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.15s ease-in-out;
}
.content-cards .swiper-cards .swiper-button-next i:hover,
.content-cards .swiper-cards .swiper-button-prev i:hover {
    background: #ddd;
}
.content-cards .swiper-cards .swiper-button-next {
    right: 0px;
}
.content-cards .swiper-cards .swiper-button-prev {
    left: 0px;
}
@media screen and (min-width: 600px) {
	.content-cards[data-columns='2'] .card,
    .content-cards[data-columns='3'] .card,
    .content-cards[data-columns='4'] .card {
		flex: 1 1 calc(50% - 2rem);
	}
}
@media screen and (min-width: 1000px) {
	/*.content-cards[data-columns='2'] .card {
		flex: 1 1 calc(50% - 2rem);
	}
	.content-cards[data-columns='3'] .card {
		flex: 1 1 calc(33.33% - 2rem);
	}
	.content-cards[data-columns='4'] .card {
		flex: 1 1 calc(25% - 2rem);
	}*/
}
