/* Services pricing table — tabular column layout */
.plansSec {
  background: #fff;
}

.plansSec_head {
  max-width: 820px;
  margin: 0 auto 48px;
  text-align: center;
}

.plansSec_head h2 {
  font-size: 36px;
  line-height: 1.25;
  font-weight: 700;
  color: #151231;
  margin-bottom: 14px;
}

.plansSec_head p {
  margin: 0;
  color: #555;
  font-size: 16px;
  line-height: 1.7;
}

.plansTable {
  display: flex;
  align-items: stretch;
  border-top: 1px solid #e5e5e5;
  border-bottom: 1px solid #e5e5e5;
  position: relative;
}

.plansTable_col {
  flex: 1 1 0;
  min-width: 0;
  padding: 36px 28px 40px;
  display: flex;
  flex-direction: column;
  position: relative;
}

.plansTable_col:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 28px;
  bottom: 28px;
  right: 0;
  width: 1px;
  background: #d9d9d9;
}

.plansTable_name {
  font-family: "Rajdhani", sans-serif;
  font-size: 28px;
  line-height: 1.2;
  font-weight: 700;
  color: #67a800;
  margin: 0 0 10px;
}

.plansTable_price {
  font-family: "Rajdhani", sans-serif;
  font-size: 40px;
  line-height: 1.15;
  font-weight: 700;
  color: #151231;
  margin: 0 0 4px;
}

.plansTable_period {
  display: block;
  font-size: 14px;
  font-weight: 600;
  color: #777;
  margin-bottom: 22px;
}

.plansTable_label {
  font-family: "Rajdhani", sans-serif;
  font-size: 20px;
  font-weight: 700;
  color: #151231;
  margin: 0 0 8px;
}

.plansTable_included {
  margin: 0 0 22px;
  color: #444;
  font-size: 15px;
  line-height: 1.5;
}

.plansTable_benefits {
  list-style: disc;
  padding-left: 18px;
  margin: 0 0 28px;
  color: #555;
  flex: 1 1 auto;
}

.plansTable_benefits li {
  margin-bottom: 8px;
  line-height: 1.45;
  font-size: 15px;
}

.plansTable_benefits li:last-child {
  margin-bottom: 0;
}

.plansTable_btn {
  display: inline-block;
  align-self: center;
  min-width: 140px;
  text-align: center;
  padding: 10px 28px;
  font-size: 16px;
  font-weight: 700;
  color: #fff !important;
  background: #67a800;
  border: 1px solid #67a800;
  border-radius: 2px;
  transition: background 0.25s ease, border-color 0.25s ease;
}

.plansTable_btn:hover {
  background: #74bc00;
  border-color: #74bc00;
  color: #fff !important;
}

@media (max-width: 991.98px) {
  .plansSec_head h2 {
    font-size: 30px;
  }

  .plansTable {
    flex-wrap: wrap;
    border: none;
  }

  .plansTable_col {
    flex: 1 1 50%;
    border: 1px solid #e5e5e5;
  }

  .plansTable_col:not(:last-child)::after {
    display: none;
  }

  .plansTable_price {
    font-size: 34px;
  }
}

@media (max-width: 575.98px) {
  .plansSec_head {
    margin-bottom: 32px;
    text-align: left;
  }

  .plansSec_head h2 {
    font-size: 26px;
  }

  .plansTable_col {
    flex: 1 1 100%;
    padding: 28px 20px 32px;
  }

  .plansTable_name {
    font-size: 24px;
  }

  .plansTable_price {
    font-size: 32px;
  }
}
