/* ========== pricing card Start ============= */
.wrapper_pricing {
  background-image: url("../images/pricing-bg.png");
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 100vh;
  width: 100%;
  padding-top: 120px;
  padding-bottom: 100px;
}

.wrapper_pricing .pricing_head {
  padding-bottom: 100px;
}
.wrapper_pricing .pricing_head h1 {
  font-size: 48px;
  font-weight: 600;
}

.wrapper_pricing .pricing_head p {
  font-size: 16px;
  font-weight: 400;
}

.pricing_section .tab_container .card {
  height: 100%;
  border-radius: 22px;
  padding: 25px 16px;
  max-width: 300px;
  border: 1px solid white;
  background-color: #171717;
  color: black !important;
  overflow: hidden;
}

.pricing_section .card:hover {
  transition: 0.3s ease all;
  background: linear-gradient(90deg, #ab4cba 0%, #6f3ab1 100%, #5941ce 100.01%);
  transform: scale(1.1) !important;
}

.pricing_section .card:hover .choose_plan a {
  background: #fff;
  color: #7904eb;
}

.pricing_section .card:hover .list_lock ul li::before {
  content: "";
  background-image: url("../images/lock-hover.svg");
}

.pricing_section .card_listing.popular_card {
  border-top: 1px solid white;
}

.pricing_section .tab_container .card h2 {
  font-size: 24px;
  font-weight: 600;
  color: white;
}

.pricing_section .tab_container .card p {
  font-size: 16px;
  font-weight: 400;
  padding: 20px 0;
  color: white;
}

.pricing_section .tab_container .card span {
  font-size: 48px;
  font-weight: 600;
  color: white;
}

.pricing_section .tab_container .card span.free {
  text-decoration: line-through;
  padding-right: 10px;
}
.pricing_section .card_listing {
  border-top: 1px solid white;
  position: relative;
}

.pricing_section .card_listing ul li,
.pricing_section .list_lock ul li {
  list-style-type: none;
  line-height: 26px;
  padding-bottom: 15px;
  color: white;
  font-size: 16px;
  font-weight: 400;
}

.list_lock {
  position: relative;
}

.list_lock ul li::before {
  content: "";
  background-image: url("../images/lock-icon.svg");
  height: 26px;
  width: 26px;
  left: 0px;
  position: absolute;
  background-repeat: no-repeat;
  z-index: 9;
  background-size: 100% 100%;
}

.pricing_section .card_listing ul li::before {
  content: "";
  background-image: url("../images/right-tick.svg");
  height: 26px;
  width: 26px;
  left: 0px;
  position: absolute;
  background-repeat: no-repeat;
  z-index: 9;
  background-size: 100% 100%;
}

.pricing_section .choose_plan a {
  background: linear-gradient(90deg, #ab4cba 0%, #6f3ab1 100%, #5941ce 100.01%);
  display: block;
  text-align: center;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  color: white;
  padding: 17px;
  border-radius: 9px;
  border: 1px solid transparent;
}

.pricing_section .tab_section .tabs {
  width: 100%;
  margin: 0 auto;
}

.pricing_section .tab_section .sidebar {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
  margin: 0 auto;
  background-color: black;
  border-radius: 10px;
  border: 1px solid white;
  margin-bottom: 100px;
}

.pricing_section .tab_section .tab-btn {
  background-color: black;
  border: none;
  color: #000;
  cursor: pointer;
  padding: 7px;
  outline: none;
  width: 100%;
  font-size: 20px;
  border-radius: 10px;
  font-weight: lighter;
  color: white;
}

.pricing_section .tab_section .tab-btn-active {
  font-weight: 600;
  background: linear-gradient(90deg, #ab4cba 0%, #6f3ab1 100%, #5941ce 100.01%);
  font-size: 18px;
}

.pricing_section .tab_section .tab-content {
  display: flex;
  display: none;
}

.pricing_section .tab_section .tab-content-active {
  display: block;
}

/* ========== pricing card End ============= */
