.feature_table {
    background-color: var(--light);
    border-radius: 25px;
    padding: 120px 0;
}
.table_items {
    width: 100%;
    display: grid;
    column-gap: 30px;
    row-gap: 70px;
    position: relative;
}
.table_items.grid-2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}
.table_items.grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}
.table_items .table_item {
    background-color: var(--white);
    border-radius: 25px;
    padding: 30px 30px 42px 30px;
    position: relative;
    font-weight: 300;
}
.table_items .table_item a.button_cta {
    position: absolute;
    bottom: -17px;
    left: 50%;
    transform: translateX(-50%);
}
.table_items .table_icon {
    position: absolute;
    top: -46px;
    right: 25px;
}
.table_items .table_icon img {
    width: 90px;
}
h2.table_title {
    margin: 0 0 10px 0;
    padding: 0 100px 0 0;
}
.feature_block ul.feature_list {
    padding: 15px 30px;
}
.table_items.grid-3 .feature_block ul.feature_list {
    padding: 15px;
}
.table_items.grid-3 .feature_block ul.feature_list li {
    gap: 15px;
}
ul.feature_list li {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 10px;
}
ul.feature_list li:last-of-type {
    margin-bottom: 0;
}
.feature_block {
    border-top: 2px solid var(--gray);
}
ul.feature_list {
    padding: 15px 30px;
    margin: 0;
}
.table_description {
    margin-bottom: 15px;
}
.feature_title {
    font-weight: 700;
    margin: 0 0 15px;
}
.table_element_tr {
    position: absolute;
    top: -210px;
    right: 0;
}
.table_element_tr img {
    width: 270px;
}
.table_element_bl {
    position: absolute;
    bottom: -178px;
    left: 0;
}
.table_element_bl img {
    width: 215px;
}

@media screen and (max-width: 991px) {
    .table_items.grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media screen and (max-width: 767px) {
    .table_items.grid-2, .table_items.grid-3 {
        grid-template-columns: repeat(1, minmax(0, 1fr));
    }

    .table_element_tr {
        top: -170px;
    }
    .table_element_tr img {
        width: 150px;
    }
    .table_element_bl {
        bottom: -158px;
    }
    .table_element_bl img {
        width: 135px;
    }
}


@media screen and (max-width: 479px) {
    .feature_block ul.feature_list {
        padding: 15px 15px;
    }
}
