@charset "utf-8";
/* DEMO 01 */
.pricing-table-2 {
  margin: 10px auto;
  max-width: 300px;
  transition: all ease-in-out 0.25s;
}
.pricing-table-2:hover {
  transform: scale(1.1, 1.1);
  cursor: pointer;
}
.pricing-table-2.basic {
  background-color: #cf534a;
  color: #cf534a;
}
.pricing-table-2.basicb {
  background-color: #379067;
  color: #379067;
}
.pricing-table-2.premium {
  background-color: rgba(
    183,
    51,
    97,
    0
  ); /* Adjust the color values and alpha as needed */
  color: #b73362; /* Your text color */
}
.pricing-table-2.business {
  background-color: rgba(
    183,
    51,
    97,
    0
  ); /* Adjust the color values and alpha as needed */
  color: #b73362; /* Your text color */
}

.pricing-table-2 .pricing-table-header {
  padding: 0px;
  margin: 0;
}
.pricing-table-2 .pricing-table-header h3 {
  margin: 6px;
  color: #fff;
}

.pricing-table-2 .price {
  text-align: center;
  padding: 8px 0px;
  background-color: #2d3844;
  font-size: 35px;
}
.pricing-table-2 .price small {
  display: block;
  font-size: 13px;
  opacity: 0.7;
}

.pricing-table-2 .pricing-body {
  padding: 10px 6px 10px 6px;
  background-color: #2d3844;
  color: #fff;
  background-image: url(../images/top-line.png);
  background-repeat: repeat-x;
  background-position: top left;
  position: relative;
  overflow: hidden;
}

.pricing-table-2 .pricing-table-ul li {
  text-align: center;
  padding: 3px 10px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  font-size: 12.5px;
}
.pricing-table-2 .view-more {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  font-size: 16px;
}
.pricing-table-2.basicb {
  background-color: rgba(
    183,
    51,
    97,
    0
  ); /* Adjust the color values and alpha as needed */
  color: #b73362; /* Your text color */
}
.speed-icon {
  width: 12%;
  transition: all ease-in-out 0.25s;
  padding: 10px;
  height: auto;
  margin: 0px;
}

.hotspot-icon {
  width: 8%;
  transition: all ease-in-out 0.25s;
  padding: 10px;
  height: auto;
  margin: 0px;
}

.whatsapp-icon {
  width: 50px;
  height: 50px;
  margin-bottom: 30px;
}
.col-sm-3.no-padding {
  padding-left: 0;
  padding-right: 0;
  margin-left: 0;
  margin-right: 0;
}

@media (max-width: 768px) {
  .hotspot-icon {
    display: block;
    width: 40%;
    height: auto;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 768px) {
  .speed-icon {
    display: block;
    width: 40%;
    height: auto;
    padding: 10px;
    margin-left: auto;
    margin-right: auto;
  }
}

.speed-icon:hover {
  transform: scale(1.1, 1.1);
  transition: all ease-in-out 0.25s;
}

.hotspot-icon:hover {
  transform: scale(1.1, 1.1);
  transition: all ease-in-out 0.25s;
}
.features {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px; /* space between each feature */
  margin-top: 20px; /* space above the new section */
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 10px; /* space between the icon and the text */
}

.feature-icon {
  width: 24px; /* adjust size as needed */
  height: 24px; /* adjust size as needed */
}
