.section-feature-table {
    width: 100%;
    max-width: 1316px;
    margin: 0 auto;
}

.dark-grey {
    background-color: darkgrey;
}

.feature-table-subtitle-page {
    margin: 10px 0;
}

.feature-table-rows,
.feature-table-row {
    width: 100%;
}

.feature-table-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    border: 1px solid #E5E5E5;
    border-radius: 5px;
    margin-bottom: 10px;
}

.feature-table-text-icon-row {
    margin-bottom: 0;
    width: 50%;
    justify-content: space-between;
}

.feature-table-icon-text-block-row {
    display: flex;
    width: 40%;
}

.feature-table-text-row {
    border-right: 1px solid #E5E5E5;
    width: 50%;
}

.feature-table-icon-text-row {
    display: flex;
}

.feature-table-icon-row {
    width: 20px;
    height: 20px;
    margin-right: 10px;
}

.feature-table-icon-row picture img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.feature-table-link-row {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background-color: #05365F;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
}

.feature-table-link-row a {
    display: block;
    text-decoration: none;
    color: #fff;
    height: 100%;
    width: 100%;
    padding: 2px;
}

.feature-table-description-link-row {
    display: flex;
    justify-content: space-between;
    width: 50%;
}

.feature-table-text-icon-row {
    display: flex;
    align-items: center;
}

.feature-table-row:hover .feature-table-link-row {
    filter: brightness(130%);
}

/* Mobile - 600 */
@media (max-width: 600px) {
    .feature-table-row {
        flex-direction: column;
    }

    .feature-table-text-icon-row {
        margin-bottom: 20px;
        justify-content: space-between;
        width: 100%;
    }

    .feature-table-text-row {
        border-right: none;
        width: 50%;
    }

    .feature-table-icon-text-block-row {
        width: 50%;
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .feature-table-description-link-row {
        justify-content: space-between;
        width: 100%;
    }

    .feature-table-description-row {
        width: 80%;
    }
}