/*================================================================================================
    Start Pricing CSS
===================================================================================================*/
.pricing-inner {
  border-radius: 16px;
}

.pricing-wrapper {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 30px;
}

.pricing-card {
  border-radius: 16px;
  background: var(--white-color);
  padding: 40px;
  transition: all 0.3s ease;
}
.pricing-card:hover {
  transform: translateY(-5px);
}
.pricing-head .title {
  font-size: 28px;
  font-weight: 600;
  line-height: 38px;
  margin-bottom: 8px;
}

.pricing-head .text {
  font-size: 18px;
  line-height: 30px;
}

.pricing-head .price {
  margin: 0;
  margin-top: 24px;
  display: flex;
  align-items: baseline;
  gap: 4px;
  font-size: 58px;
  font-weight: 600;
  letter-spacing: -1.74px;
  line-height: 46px;
}

.pricing-head .price span {
  font-size: 24px;
  letter-spacing: -0.48px;
}

.pricing-features {
  margin-top: 34px;
}
.pricing-features li {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  letter-spacing: -0.16px;
  color: var(--title-color);
  margin-bottom: 16px;
  position: relative;
  padding-left: 30px;
}
.pricing-features li:last-child {
  margin: 0;
}
.pricing-features li::before {
  position: absolute;
  content: "";
  width: 24px;
  height: 24px;
  left: 0;
  top: 0;
  background-image: url("../images/icons/black-check.svg");
  background-position: center;
  background-repeat: no-repeat;
}
.pricing-bottom {
  margin-top: 48px;
}
.pricing-bottom .theme-btn {
  width: 100%;
  height: 60px;
  text-transform: capitalize;
  background: #0a0c00;
}
.pricing-card:hover .theme-btn {
  background: var(--primary-color);
}

@media only screen and (min-width: 992px) and (max-width: 1199.99px) {
  .pricing-head .price {
    font-size: 39px;
  }
  .pricing-card {
    padding: 24px;
  }
  .pricing-bottom .theme-btn {
    height: 52px;
  }
}

@media only screen and (min-width: 768px) and (max-width: 991.99px) {
  .pricing-wrapper {
    grid-template-columns: repeat(2, 1fr);
  }
  .pricing-head .price {
    font-size: 39px;
  }
  .pricing-features {
    margin-top: 24px;
  }
  .pricing-bottom .theme-btn {
    height: 52px;
  }
}

@media only screen and (max-width: 767px) {
  .pricing-wrapper {
    grid-template-columns: repeat(1, 1fr);
  }
  .pricing-head .price {
    font-size: 34px;
  }
  .pricing-card {
    padding: 24px;
  }
  .pricing-head .text {
    line-height: 24px;
  }
  .pricing-head .title {
    font-size: 24px;
    line-height: 32px;
  }
  .pricing-bottom .theme-btn {
    height: 48px;
  }
  .pricing-bottom {
    margin-top: 32px;
  }
  .pricing-inner {
    padding: 32px 0px;
  }
}

/*================================================================================================
    End Pricing CSS
===================================================================================================*/
