.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: 30px;
    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;
}

.desktop-text {
    display: block;
}

.mobile-text {
    display: none;
}

@media (max-width: 768px) {
    .desktop-text {
        display: none;
    }

    .mobile-text {
        display: block;
    }
}

.margin-top-75 {
    margin-top: 75px;
}

/* benefits start */
.ss-box-container {
    display: flex;
    flex-wrap: wrap;
}

.ss-boxes {
    width: calc(50% - 6px);
    margin: 3px;
}

.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;
    padding: 5px;
}

.yellow-list {
    color: #03234b;
}

.yellow-list::before {
    color: #03234b !important;
}

.darkblue-list {
    color: #fff;
}


.second-list {
    color: white;
}

@media (max-width: 600px) {
    .ss-boxes {
        width: 100%;
        margin: 3px;

        padding: 5px;
    }
}