.info-table-heading {
    text-align: left;
    font-size: 24px;
    font-weight: 600;
    vertical-align: middle;
}

.info-table {
    color: #0E1729
}

.info-table td,
.info-table th {
    border-color: #fff;
    padding: 24px;
}

.info-table tr th:first-child {
    border-top-left-radius: 16px;
}

.info-table tr:last-child td:first-child {
    border-bottom-left-radius: 16px;
}

.info-table ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.info-table ul li {
    position: relative;
}

.info-table ul li::before {
    content: '';
    position: absolute;
    top: 0;
    left: -40px;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='24' height='24' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M7.5 12.5L10.5 15.5L16.5 9.5M12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22Z' stroke='%23FF6A14' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-size: cover;
    /* or contain */
    background-position: center;
    background-repeat: no-repeat;
}


.info-table .column-1 {
    font-weight: 500;
    background: #EDEDED;
}


.info-table .column-2 {
    background: #DDDDDD
}

.info-table .column-3 {
    background: #0E1729;
    color: #fff;
    position: relative;
}

.info-table-heading.column-3:before {
    content: '';
    width: 100%;
    height: 44px;
    position: absolute;
    background: #0E1729;
    border-top-right-radius: 16px;
    border-top-left-radius: 16px;
    top: -44px;
    left: 0;
}

.info-table-heading.column-3::after {
    content: '';
    width: 100%;
    height: 50%;
    position: absolute;
    top: -100%;
    z-index: -1;
    left: 0;
    background: rgba(14, 23, 41, 0.30);
    filter: blur(44px);
}

.info-table-col.column-3:last-child::before {
    content: '';
    width: 100%;
    height: 16px;
    position: absolute;
    background: #0E1729;
    border-bottom-right-radius: 16px;
    border-bottom-left-radius: 16px;
    bottom: -16px;
    left: 0;
}

.info-table-row:last-child .info-table-col.column-3:last-child::after {
    content: '';
    width: 100%;
    height: 50%;
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(14, 23, 41, 0.30);
    filter: blur(44px);
    z-index: -1;
}

.info-table-heading img {
    max-width: 426px;
    width: 100%;
    position: absolute;
    top: 6px;
}

@media screen and (max-width: 782px) {

    .info-table td,
    .info-table th {
        padding: 8px;
        font-size: 12px;
    }

    .info-table ul li::before {
        width: 16px;
        height: 16px;
        left: -24px;
    }

    .info-table ul {
        padding-left: 24px;
        ;
    }

    .info-table-heading img {
        top: 24px;
        left: 0;
        padding: 0 12px;
    }

    .info-table-heading.column-3:before {
        top: -24px;
        height: 24px;
    }

    .info-table-heading.column-3::after {
        top: -60%;
    }
}