.cards-with-button-repeater {
    padding: 100px 0 108px;
    width: 100%;
}

.cards-with-button .cards-button {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-gap: 20px;
    width: 100%;
}
.cards-with-button .cards-button .card {
    width: 100%;
    padding: 60px 55px 66px 90px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 5px 5px 15px rgba(0,0,0,0.15);
    position: relative;
    height: 100%;
    transition: all 0.35s ease-in-out;
}
.cards-with-button .cards-button .card .card-body h3.card-title {
    font-size: 25px;
    text-transform: initial;
    line-height: 35px;
    margin: 0 0 10px;
}
.cards-with-button .cards-button .card .card-img {
    width: 45px;
    height: 52px;
    margin: 0 0 20px;
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.cards-with-button .cards-button .card .card-body p.card-text {
    font-size: 22px;
    line-height: 30px;
    font-family: 'Source Sans Pro', sans-serif;
    font-weight: 400;
    margin: 0 0 20px;
}
.cards-with-button .cards-button .card a.wp-block-button__link {
    display: inline-block;
}

@media screen and (max-width: 1199px){
    .cards-with-button-repeater{
        padding: 70px 0px;
    }
    .cards-with-button .cards-button .card .card-body h3.card-title {
        font-size: 20px;
        line-height: 30px;
    }
}
@media screen and (max-width: 767px){
    .cards-with-button .cards-button .card {
        padding: 50px 35px;
    }
}
@media screen and (max-width: 575px){
    .cards-with-button .cards-button {
        grid-template-columns: 1fr;
    }
}