.brank_wrap {
  display: flex;
  padding: 50px;
  flex-direction: column;
  align-items: center;
  gap: 50px;
  align-self: stretch;
  border-radius: 50px;
  background: var(--gray-100, #fff);
  box-shadow: 5px 5px 30px 0 rgba(54, 87, 92, 0.15);
}
.brank_wrap table th,
.brank_wrap table td {
  line-height: 130%;
}
.brank_wrap table th:first-child,
.brank_wrap table td:first-child {
  border-left: 0px;
}
.brank_wrap table th:last-child,
.brank_wrap table td:last-child {
  border-right: 0px;
}

.brank_box {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.brank_sub_tit_box {
  display: flex;
  align-items: center;
  gap: 10px;
  align-self: stretch;
}

.brank_sub_tit {
  color: var(--color-primary_dark, #1a3050);
  font-family: Paperlogy;
  font-size: 1.3rem;
  font-style: normal;
  font-weight: 600;
  line-height: 115.385%;
  letter-spacing: -0.78px;
}

@media (max-width: 726px) {
  .brank_wrap {
    gap: 30px;
  }
  .brank_box {
    gap: 20px;
  }
}