.right {
    margin-left: 20px;
    margin-bottom: 20px;
    max-width: 350px;
}

@media only screen and (max-width: 600px) {
    .right {
        margin-left: initial;
    }
}


/* .right END */

.ss-app-card-block-img {
    display: flex;
    justify-content: center;
    margin: 20px 0;
}

.ss-app-card-block-img {
    display: grid;
    place-items: center;
    height: 100px;
}

.ss-app-card-block-img img {
    max-height: 100px;
    min-height: 100px;
    height: 100%;
}

.ss-app-card-block-title {
    font-weight: bold;
    height: 50px;
    color: #03234b;
    text-align: center;
}

.ss-app-card-blocks {
    display: flex;
    flex-wrap: wrap;
}

.ss-app-card-block-list ul li::before {
    display: none;
}

.ss-app-card-block-list ul li {
    padding-left: 0;
    font-size: 14px;
}

.ss-app-card-block-list {
    text-align: center;
}


/*  APP CARDS END */

.ss-card {
    display: flex;
    margin-top: 25px;
    transition: all .3s ease;
    -webkit-box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
    box-shadow: 0 0 10px 0 rgb(0 0 0 / 10%);
}

.ss-card:hover {
    border-color: rgba(2, 171, 245, .4);
    -webkit-box-shadow: 0 0 15px 0 rgba(2, 171, 245, .3);
    box-shadow: 0 0 15px 0 rgba(2, 171, 245, .3);
    outline: 0;
}

.ss-card-left {
    background-color: #03243b;
    padding: 20px;
    color: white;
    font-weight: bold;
    font-size: 20px;
    display: grid;
    place-items: center;
    text-align: center;
}

.ss-card-right {
    padding: 10px;
    padding-left: 20px;
    width: 100%;
    color: #74757c;
}

.ss-card-title {
    font-weight: bold;
}

.ss-card-cta {
    float: right;
    margin-right: 30px;
    margin-top: 10px;
}

.st-link .st-link__icon--arrow-small,
a .st-link__icon--arrow-small {
    width: 6px;
    height: 15px;
}

@media only screen and (max-width: 600px) {
    .ss-card {
        display: grid;
    }
}

/* benefits start */
.ss-box-container {
    display: flex;
    flex-wrap: wrap;
}

.ss-boxes {
    width: calc(50% - 6px);
    margin: 3px;
    /* height: 225px; */
}

.ss-yellow-box {
    background-color: #FFD200;
}

.ss-yellow-text {
    color: #03234b;
}

.ss-yellow-title {
    color: #03234b;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

.ss-darkblue-box {
    background-color: #03234b;
}

.ss-darkblue-text {
    color: #fff;
}

.ss-darkblue-title {
    color: #fff;
    text-align: center;
    padding: 10px;
    margin-top: 20px;
}

.benefits-title {
    height: 55px;
}

.benefits-description {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    height: 120px;
    padding: 5px;
}

.yellow-list {
    color: #03234b;
}
.yellow-list::before {
    color: #03234b !important;
}

.darkblue-list {
    color: #fff;
}
.darkblue-list::before {
    color: #fff !important;
}

@media (max-width: 600px) {
    .ss-boxes {
        width: 100%;
        margin: 3px;
        height: 245px;
        padding: 5px;
    }
}
/* benefits end */