.solutions-table {
    --table-center-radius: 20px;
    background-color: #ecf5ff;
    padding-top: 80px;
    padding-bottom: 120px;
}

.solutions-table__table {
    margin-top: 40px;
}

.solutions-table .solutions-table__row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border-top: 1px solid #5CA7FF;
    gap: 24px;
}

.solutions-table .solutions-table__row.title {
    border: none;
}

.solutions-table .solutions-table__cell {
    padding: 20px 24px;
    font-family: Suisse Intl;
    font-weight: 400;
    font-size: 18px;
    line-height: 150%;
    letter-spacing: 0%;
    color: #8787AB;
}

.solutions-table .solutions-table__row:first-child .solutions-table__cell {
    padding-top: 24px;
    font-weight: 600;
    font-size: 32px;
    line-height: 120%;
    letter-spacing: 0%;
    color: #474766;
}

.solutions-table .solutions-table__row .solutions-table__cell.blue {
    color: #2589FF;
}

.solutions-table .solutions-table__row:last-child .solutions-table__cell {
    padding-bottom: 24px;
}

.solutions-table .solutions-table__cell:nth-child(2) {
    background-color: #fff;
}

.solutions-table .solutions-table__row:first-child .solutions-table__cell:nth-child(2) {
    border-radius: var(--table-center-radius) var(--table-center-radius) 0 0;
}

.solutions-table .solutions-table__row:last-child .solutions-table__cell:nth-child(2) {
    border-radius: 0 0 var(--table-center-radius) var(--table-center-radius);
}

@media screen and (max-width: 1140px) {
    .solutions-table .solutions-table__row:first-child .solutions-table__cell {
        font-size: 24px;
    }

    .solutions-table {
        --table-center-radius: 20px;
        background-color: #ecf5ff;
        padding-top: 60px;
        padding-bottom: 80px;
    }

    .solutions-table__table {
        margin-top: 20px;
    }

    .solutions-table .solutions-table__cell {
        font-size: 16px;
    }

    .solutions-table .solutions-table__cell {
        padding: 16px 20px;
    }
}

@media screen and (max-width: 760px) {
    .solutions-table__table {
        overflow-x: scroll;
    }

    .solutions-table .solutions-table__row {
        width: fit-content;
    }

    .solutions-table .solutions-table__row {
        grid-template-columns: repeat(3, 230px);
        padding: 0 20px;
    }

    .solutions-table .title-h2 {
        padding: 0 20px;
    }

    .solutions-table .solutions-table__wrapper {
        padding: 0;
    }
}
