/* start pricing */
.pricing {
  background-color: #f9fafb;
  padding: 64px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 64px;
}
.pricing .title {
  color: #101828;
  font-size: 30px;
  margin-bottom: 1rem;
  font-family: "inter-bold";
}
.pricing .desc {
  color: #475467;
  font-size: 20px;
  margin-bottom: 0rem;
}
@media (max-width: 1500px) {
  .pricing {
    padding: 2rem;
    border-radius: 15px;
  }
  .pricing .title {
    font-size: 25px;
  }
  .pricing .desc {
    font-size: 16px;
  }
}
@media (max-width: 992px) {
  .pricing {
    display: block;
    padding: 40px 24px;
    text-align: center;
  }
  .pricing .title {
    font-size: 28px;
  }
  .pricing .desc {
    margin-bottom: 2rem;
    font-size: 18px;
  }
  .pricing a {
    margin-bottom: 0rem !important;
    display: inline-block;
    width: 100%;
  }
}
/* end  pricing */
