.column-cards {
    margin: 0 0 50px 0;
}

.column-cards__item {
    position: relative;
    padding: 0;
    border-radius: 25px;
    text-align: center;
    overflow: hidden;
    height: 100%;
}

.column-cards__image {
    height: 100%;
    position: absolute;
    width: 100%;
    z-index: 0;
}

.column-cards__image img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.column-cards__texto {
    align-items: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: center;
    padding: 35px 10px 35px 10px;
    position: relative;
    z-index: 2;
}

.column-cards__texto:before {
    background: #000;
    border-radius: 25px;
    content: "";
    height: 100%;
    left: 0;
    opacity: 0.4;
    position: absolute;
    top: 0;
    z-index: -1;
    width: 100%;
}

.column-cards__texto .epm-btn {
    font-size: 16px;
}

@media (min-width: 768px){
    .column-cards__texto .epm-btn {
        font-size: 14px;
    }
}

@media (min-width: 992px){
    .column-cards__texto .epm-btn {
        font-size: 16px;
    }
}

.column-cards__texto_content{
    align-items: center;
    display: flex;
    flex-grow: 1;
    justify-content: center;
}

.column-cards__texto h3 {
    color: #fff;
    font-size: 20px;
    line-height: 23px;
    /*flex-grow: 1;*/
    padding: 0 0px 0 0px;
    margin: 13px 0 23px 0;
}

@media (min-width: 1024px){
    .column-cards__texto h3 {
        padding: 0 20px 0 20px;
    }
}

@media (max-width: 767px){
    .column-cards__list {
        flex-direction: column;
    }

    .column-cards__item {
        width: 100%;
    }
}