.ctas {
    margin: 40px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

}

.ctas .ctas-item {
    width: 25%;
    padding: 0;
    margin-bottom: 40px;
}

.ctas .ctas-item .cta {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
    margin: 0;
}

.ctas .ctas-item .cta {
    border-right: 1px solid #E7EBED;
}

.ctas .ctas-item:nth-child(5n) .cta,
.ctas .ctas-item:last-child .cta {
    border: none;
}

.ctas .ctas-item .cta .title {
    font-size: 23px;
    margin-bottom: 20px;
    text-align: center;
}

.ctas .ctas-item .cta .button {
    margin-top: auto;
}

@media (max-width: 1200px) {

    .ctas .ctas-item {
        width: 33.333%;
    }

    .ctas .ctas-item:nth-child(5n) .cta {
        border-right: 1px solid #E7EBED;
    }
    .ctas .ctas-item:nth-child(3n) .cta {
        border: none;
    }
}

@media (max-width: 768px) {

    .ctas .ctas-item {
        width: 50%;
    }

    .ctas .ctas-item:nth-child(5n) .cta,
    .ctas .ctas-item:nth-child(3n) .cta {
        border-right: 1px solid #E7EBED;
    }
    .ctas .ctas-item:nth-child(2n) .cta {
        border: none;
    }
}

@media (max-width: 500px) {

    .ctas .ctas-item {
        width: 100%;
    }

    .ctas .ctas-item .cta {
        border: none;
    }
}