.cms .nav_menu {
    border-radius: 10px;
    padding: 15px 15px 5px 15px;
    margin-top: 20px;
    margin-bottom: 20px;
    box-shadow: 0 4px 20px rgba(2, 19, 62, .2);
    border-left: 4px solid #4667dc;
    background: white;
    margin-left: 0;
}
.cms .nav_menu li::before {
    display: none;
}
.cms .nav_menu li a {
    text-decoration: none;
}
table {
    line-height: 1.6;
    box-shadow: 0 2px 14px rgba(4, 0, 26, .15);
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 50px;
    border-spacing: 0;
    background-color: #fff;
    border-radius: 14px;
    border: 1px solid rgba(0, 0, 0, .2);
    display: block;
    width: 100%;
}
table tbody, table thead {
    min-width: 500px;
    display: table;
    width: 100%;
}
table th:first-child, table thead td:first-child {
    border-radius: 14px 0 0 0;
}
table th, table thead td {
    font-size: 18px;
    line-height: 1.556;
    background-color: #4667dc;
    padding: 12px 10px 12px 24px;
    color: #fff;
    text-align: left;
    text-transform: uppercase;
}
table td {
    font-size: 18px;
    padding: 11px 10px 11px 24px;
}
table tr:not(:last-child) td {
    border-bottom: 1px solid rgba(0, 0, 0, .2);
}
.big_table tbody, .big_table thead {
  min-width: 1200px;
}
.text_two_part {
    display: flex;
    gap: 20px;
    padding: 20px 0;
  }
  .text_two_part_left {
    width: 70%;
    align-items: center;
  }
  .text_two_part_right {
    width: 30%;
    align-items: center;
  }
  @media (max-width: 768px) {
    .table-of-content {
      margin-bottom: 40px;
    }
    .text_two_part {
      flex-wrap: wrap;
    }
    .text_two_part_left, .text_two_part_right {
      width: 100%;
    }
  }