.solution-cards {
    position: relative;
    width: 100%;
    padding: 80px 0 100px;
    background-color: #F3F4F5;
}

.solution-cards .title-wrap {
    width: 100%;
    max-width: 830px;
    margin: 0 auto 58px;
    text-align: center;
}

.solution-cards .title-wrap h2 {
    /* H2 token: 50/60. */
    margin: 0 0 20px;
    color: #0C2340;
    font-family: 'UniversLTStd Cn' !important;
    font-weight: 700 !important;
    font-size: 50px !important;
    line-height: 60px !important;
}

.solution-cards .title-wrap p {
    /* <p> large token: 18/28 Roman, no tracking. */
    margin: 0 auto;
    max-width: 700px;
    color: #31445C;
    font-family: 'Univers LT Std Pro 55';
    font-weight: 400;
    font-size: 18px;
    line-height: 28px;
    letter-spacing: 0;
}

.solution-cards .row-wrap {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -25px;
        gap: 50px 0;
}

.solution-cards .row-wrap .col-two {
    max-width: 50%;
    flex: 0 0 50%;
    width: 100%;
    padding: 0 25px;
    margin-bottom: 0px;
    box-sizing: border-box;
    display: flex;
}

/* The last row sits directly above the button box, which carries its own
   top spacing. */
.solution-cards .row-wrap .col-two:nth-last-child(-n+2) {
    margin-bottom: 0;
}

.solution-cards .row-wrap .card-wrap {
    /* design: condensed card box - 25/35/20. */
    display: flex;
    flex-direction: column;
    width: 100%;
    padding: 25px 35px 20px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0px 5px 25px rgba(122, 149, 164, 0.25);
    box-sizing: border-box;
}

.solution-cards .row-wrap .card-wrap .content-wrap {
    flex: 1 0 auto;
}

.solution-cards .row-wrap .card-wrap h3 {
    /* H5 token 22/28; 10px to the intro. */
    margin: 0 0 10px;
    color: #0C2340;
    font-family: 'UniversLTStd Cn' !important;
    font-weight: 700 !important;
    font-size: 22px !important;
    line-height: 28px !important;
}

/* 'Univers LT Std Pro 55' only ships a 400 face, so the light weight these
   cards ask for never rendered. 'Univers LT Std' carries 300/400/700. */
.solution-cards .row-wrap .card-wrap p {
    /* <p> token: 16/24, Cool gray 85%; its 10px margin sets the gap to the bullets. */
    margin: 0 0 10px;
    color: #0C2340;
    font-family: 'Univers LT Std';
    font-weight: 300;
    font-size: 16px;
    line-height: 24px;
}

.solution-cards .row-wrap .card-wrap ul {
    margin: 0;
    padding: 0 0 0 20px;
    list-style: none;
}

.solution-cards .row-wrap .card-wrap ul li {
    /* dev note: smaller bullets - 14/24, flush stack. */
    /* <p> token: 16/24, Cool gray 85%. */
    position: relative;
    margin: 0;
    color: #31445C;
    font-family: 'Univers LT Std';
    font-weight: 300;
    font-size: 14px;
    line-height: 24px;
}

.solution-cards .row-wrap .card-wrap ul li:last-child {
    margin-bottom: 0;
}

.solution-cards .row-wrap .card-wrap ul li:before {
    content: "";
    position: absolute;
    left: -14px;
    top: 10px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: #485B6F;
}

/* 20px of air above and below the rule, per the design. */
.solution-cards .row-wrap .card-wrap .btn-wrap {
    /* Cool gray 25%; 20px above and below the rule. */
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #C2C8CF;
}

/* The global arrow sits at right: -34px, so reserve room for it inside the
   card rather than letting it run under the card padding. */
.solution-cards .row-wrap .card-wrap .btn-wrap .arrow-link {
    display: inline-block;
    margin-top: 0;
    margin-right: 34px;
}

.solution-cards .button-box {
    margin-top: 60px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

.solution-cards .button-box .product-btn {
    display: block;
    width: -webkit-fit-content;
    width: fit-content;
    margin: 0 auto 20px;
    padding: 17px 28px 15px;
}

.solution-cards .button-box .product-btn:last-child {
    margin-bottom: 0;
}

@media (max-width: 991px) {
    .solution-cards {
        padding: 60px 0 70px;
    }

    .solution-cards .title-wrap {
        margin-bottom: 42px;
    }

    .solution-cards .title-wrap h2 {
        font-size: 32px !important;
    }

    .solution-cards .title-wrap p {
        font-size: 16px;
    }

    .solution-cards .row-wrap {
        margin: 0 -15px;
    }

    .solution-cards .row-wrap .col-two {
        padding: 0 15px;
        margin-bottom: 0px;
    }

    .solution-cards .row-wrap .card-wrap {
        padding: 25px 25px 20px;
    }

    .solution-cards .row-wrap .card-wrap h3 {
        font-size: 21px !important;
    }

    .solution-cards .row-wrap .card-wrap p {
        font-size: 16px;
    }

    .solution-cards .button-box {
        margin-top: 45px;
    }
}

@media (max-width: 767px) {
    .solution-cards .row-wrap .card-wrap .btn-wrap .arrow-link {
        margin-right: 0;
    }
}

@media (max-width: 595px) {
    .solution-cards {
        padding: 45px 0 55px;
    }

    .solution-cards .title-wrap h2 {
        font-size: 28px !important;
    }

    .solution-cards .row-wrap {
        margin: 0;
    }

    .solution-cards .row-wrap .col-two {
        max-width: 100%;
        flex: 0 0 100%;
        padding: 0;
        margin-bottom: 20px;
    }

    /* Single column, so only the very last card can skip the gap. */
    .solution-cards .row-wrap .col-two:nth-last-child(-n+2) {
        margin-bottom: 20px;
    }

    .solution-cards .row-wrap .col-two:last-child {
        margin-bottom: 0;
    }

    .solution-cards .button-box {
        margin-top: 35px;
    }
}
