/* ------- General ------- */
.block-d-flex {
  display: flex;
  display: -webkit-box;
  display: -ms-flexbox;
}
.block-flex-left {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.block-flex-right {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.block-flex-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}
.block-flex-wrap {
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.block-flex-column {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
/* ------- Introduction Block ------- */
.introduction-block {
  margin-bottom: 16px;
}
.introduction-block .intro_content.half_size {
  padding-right: 50px;
}
.introduction-block .intro_content > div {
  padding-top: 6px;
  max-width: 466px;
}
.introduction-block .intro_image {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-clip: content-box;
  height: 532px;
}
.introduction-block .intro_image.half_size {
  padding-left: 50px;
}
/* ------- FAQ Block ------- */
.faq-block .question_item:not(:last-child) {
  margin-bottom: 50px;
}
/* ------- Price List Table Block ------- */
.price-list-table-block {
  position: relative;
  margin: 35px -25px 60px;
  padding: 5px 0;
}
.price-list-table-block table {
  width: 100%;
  border: none;
  border-collapse: collapse;
}
.price-list-table-block table th, .price-list-table-block table td {
  width: 130px;
  padding-left: 20px;
  padding-right: 10px;
  border: none;
}
.price-list-table-block table th p, .price-list-table-block table td p {
  margin: 0;
  color: #00323A;
  font-size: 14px;
  font-weight: 300;
  letter-spacing: 1px;
  line-height: 26px;
}
.price-list-table-block table th p strong, .price-list-table-block table td p strong {
  font-weight: 500;
}
.price-list-table-block table th:first-child, .price-list-table-block table td:first-child {
  width: auto;
  padding-left: 25px;
  text-align: left;
}
.price-list-table-block table thead tr th {
  padding-bottom: 5px;
  color: #00323A;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 15px;
  text-align: right;
  vertical-align: bottom;
}
.price-list-table-block table tbody tr td {
  color: #00323A;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 26px;
  text-align: right;
}
.price-list-table-block table tbody tr:nth-child(2n + 1) td {
  background: #F2F2F2;
}
.price-list-table-block:before, .price-list-table-block:after {
  content: "";
  position: absolute;
  width: 100vw;
  height: 1px;
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;
  background-color: rgba(184, 184, 184, 0.2);
}
.price-list-table-block:before {
  top: -1px;
}
.price-list-table-block:after {
  bottom: -1px;
}
.price-list-table-block .table_mobile_hint {
  display: none;
  color: red;
  padding-left: 12px;
}
.price-list-table-block .table_mobile_hint h5 {
  margin-bottom: unset;
}
@media only screen and (max-width: 991px) {
  .price-list-table-block {
    overflow-x: scroll;
    margin: 16px 0 32px;
    padding: 12px 0px;
  }
  .price-list-table-block table {
    min-width: 500px;
  }
  .price-list-table-block table thead tr th, .price-list-table-block table tr td {
    width: auto;
    padding-left: 10px;
  }
  .price-list-table-block table thead tr th:first-child, .price-list-table-block table tr td:first-child {
    padding-left: 12px;
  }
  .price-list-table-block:before, .price-list-table-block:after {
    display: none;
  }
  .price-list-table-block .table_mobile_hint {
    display: block;
  }
}
