.cards_module .item {
    border-radius: var(--radius1);
    overflow: hidden;
    cursor: pointer;
    flex-basis: auto;
    width: 32rem;
}
.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);
}
.cards_module .item a {
    color: initial;
    text-decoration: none;
}
.cards_module .item.no-link {
    cursor: auto;
}
/* .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 {
    display: flex;
    justify-content: space-between;
    column-gap: 2.4rem;
    align-items: center;
    margin: 0 0 7rem;
}
.cards_module .itemtext {
    padding: 0.9rem 0 3rem 0;
}
.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: 25.6rem;
}
.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;
}
.cards_module .items-list,
.cards_module .swiper-wrapper {
    margin: 0;
}

.cards_module .swiper .itemtext {
    padding: 3.2rem 0 0;
}

.cards_module .swiper .itemtext h3 {
    margin: 0;
    text-align: center;
}

.cards_module .items-list,
div.swiper-free-mode > .swiper-wrapper {
    margin: 0;
}
@media screen and (max-width: 1000px) {
    .cards_module .swiper .itemtext {
        padding: 2.4rem 0 0;
    }

    .cards_module .items-top-content {
        flex-direction: column;
        row-gap: 2.4rem;
        margin: 0 0 3.2rem;
        align-items: flex-start;
    }

    .cards_module .navigation-arrows {
        display: none;
    }

    .cards_module .items-list.swiper {
        margin-left: -2.4rem;
        margin-right: -2.4rem;
    }
}
