.checkbox-table {
  padding: 160px 0;

  @media (max-width: 1024px) {
    display: none;
  }
  .container {
    .table_heading {
      margin-bottom: 130px;
      h2 {
        margin-block: 0 24px;
        max-width: 970px;
      }
      .text {
        max-width: 530px;
      }
    }
    .table_topnote {
      max-width: 1000px;
      margin: 0px auto;
      text-align: right;
    }

    table {
      border-collapse: separate;
      border-spacing: 0;
      margin: 0px auto;
      width: 100%;
      max-width: 1000px;
      font-family: Arial, sans-serif;
      margin-bottom: 18px;
    }

    th,
    td {
      border: 0.5px solid #181818;
      width: 20%;
      height: 80px;
      text-align: center;
      vertical-align: middle;
      padding: 8px 12px;
      margin: 0;
    }

    thead th {
      background-color: transparent;
    }

    thead th:first-child {
      border: none !important;
    }

    thead th:nth-child(2) {
      border-left: 1px solid #181818;
    }

    tbody tr:first-child td:first-child {
      border-top: 1px solid #181818;
    }

    thead tr:first-child th {
      border-top: 1px solid #181818;
    }
    tbody tr:last-child td {
      border-bottom: 1px solid #181818;
    }
    tr th:first-child,
    tr td:first-child {
      border-left: 1px solid #181818;
    }
    tr th:last-child,
    tr td:last-child {
      border-right: 1px solid #181818;
    }

    thead th:not(:first-child) {
      border-top-left-radius: 26px;
      border-top-right-radius: 26px;
    }

    tbody tr:last-child td:first-child {
      border-bottom-left-radius: 26px;
    }
    tbody tr:last-child td:last-child {
      border-bottom-right-radius: 26px;
    }
    h3 {
      margin-block: 0;
      font-size: 90px;
      &.smaller {
        font-size: 56px;
      }
    }
    h4 {
      margin-block: 0;
    }
    .table_list {
      max-width: 1000px;
      margin: 0px auto;

      .list_header {
        border-radius: 20px;
        border: 1px solid var(--c-black);
        width: 100%;
        padding: 16px 20px;
        margin-bottom: 12px;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 80px;

        h4 {
          margin-block: 0;
        }
      }
      .lists {
        width: 100%;
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 80px;
        ul {
          list-style-type: none;
          display: flex;
          flex-direction: column;
          gap: 8px;
          margin: 0;
          padding: 0;
          margin-left: 40px;

          li {
            position: relative;
            color: #181818;
            font-family: Inter;
            font-size: 18px;
            font-style: normal;
            font-weight: 400;
            line-height: 130%;
            letter-spacing: -0.36px;
            max-width: 70%;
            white-space: nowrap;

            @media (max-width: 1024px) {
              max-width: unset;
            }

            &:before {
              content: '';
              position: absolute;
              left: -40px;
              top: 12px;
              transform: translateY(-50%);
              width: 22px;
              height: 22px;
              border: 1px solid #181818;
              border-radius: 100%;
            }
          }
        }
      }
    }
  }
}
