.price-box {
  background-color: #1d1d1e;
  color: var(--main-white);
  padding: 20px 15px;
  border-radius: 10px;
  transition: all 0.4s ease-in-out;
  box-shadow: 0 10px 50px rgba(134, 134, 134, 0.1);
}
.price-box:hover {
  transform: translate3d(0, -20px, 0);
}
.price-box.featured {
  background-color: var(--primary-color);
  padding-top: 45px;
  margin-top: -55px;
}
.price-box.featured .filled__button {
  background-color: black;
  border: 1px solid transparent;
}
.price-box.featured .filled__button:hover {
  background-color: transparent;
  border: 1px solid black;
  color: black;
}
.price-box__top {
  padding: 0 10px;
}
.price-box__top__name {
  font-size: clamp(22px, 1.458333333333333vw, 28px);
}
.price-box__mid {
  padding: 15px 0;
  margin: 20px 0;
  border-top: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.price-box__bottom {
  padding-bottom: 15px;
  margin-bottom: 20px;
  border-bottom: 2px solid #fff;
}
.price-box__mid .paragraph__16,
.price-box__bottom .paragraph__16 {
  padding-bottom: 10px;
  margin-left: 18px;
}

@media only screen and (max-width: 992px) {
  .price-box.featured {
    padding-top: 20px;
    margin-top: 0;
  }
  .price-box {
    height: 100%;
  }
}
