.pricingTable {
  margin: 40px auto;
  text-align: center;
}

.pricingTable-title {
  color: #f7f7f7db;
  font-size: 3em;
  margin-bottom: 20px;
}

.pricingTable-subtitle {
  color: #b4bdc6;
  font-size: 1.5em;
  margin-bottom: 60px;
}

.pricingTable-firstTable {
  list-style: none;
  padding: 0;
}

.pricingTable-firstTable_table {
  width: 31%;
  background: #00000099;
  display: inline-block;
  padding: 30px;
  margin: 1%;
  border-radius: 6px;
  transition: transform 0.3s ease;
}

.pricingTable-firstTable_table:hover {
  transform: scale(1.05);
}

.pricingTable-firstTable_table__header {
  font-size: 1.5em;
  padding-bottom: 20px;
  border-bottom: 2px solid #ebedec;
}

.pricingTable-firstTable_table__pricing {
  font-size: 2.5em;
  padding: 20px 0;
  border-bottom: 2px solid #ebedec;
}

.pricingTable-firstTable_table__options {
  list-style: none;
  padding: 20px 0;
}

.pricingTable-firstTable_table__options li {
  padding: 8px 0;
}

.pricingTable-firstTable_table__options li::before {
  content: "✓";
  color: white;
  background: #74ce6a;
  border-radius: 50%;
  display: inline-block;
  width: 16px;
  height: 16px;
  text-align: center;
  margin-right: 10px;
}

.pricingTable-firstTable_table__getstart {
  background: #71ce73;
  color: #fff;
  border: none;
  padding: 15px 20px;
  margin-top: 20px;
  border-radius: 5px;
  cursor: pointer;
}

.pricingTable-firstTable_table__getstart:hover {
  background: #5cb85c;
}

@media (max-width: 900px) {
  .pricingTable-firstTable_table {
    width: 90%;
    margin-bottom: 20px;
  }
  
@media (min-width: 992px) {
    .col-lg-8 {
        flex: 0 0 auto;
    width: 66.66666667%; 
    }
}
