/* Pricing Section */
.pricing {
  padding-bottom: 100px;
  padding-top: 100px;
  /* min-height: 100vh; */
  /* background: #000; */
  /* display: none; */
}

.sort {
  display: flex;
  flex-direction: column;
  align-items: center;
  /* background: #000;x */
}

.locations {
  /* background: var(--gray); */
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 50%;
  /* height: 48px; */
  margin: 0 auto;
  gap: 10px;
  /* padding: 10px 10px; */
  font-size: 20px;
}
.plans {
  /* background: var(--gray); */
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  /* width: fit-content; */
  /* height: 48px; */
  margin: 0 auto;
  gap: 10px;
  /* padding: 10px 10px; */
  font-size: 20px;
  margin-top: 20px;
}

.locals {
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
  font-size: 24px;
}

.write-up p {
  /* background: blue; */
  text-align: center;
  color: var(--gray-3);
  font-size: 16px;
  width: 50%;
  margin: 20px auto;
}

.plan-cards {
  /* background: green; */
  display: flex;
  /* flex-wrap: wrap; */
  gap: 15px;
  justify-content: space-evenly;
}

.card {
  height: 301px;
  width: 210px;
  border-radius: 12px;
  background-color: var(--white);
  box-shadow: 0px 0px 3px 0px #52147840;
  padding: 20px 24px;
  display: flex;
  flex-direction: column;
  /* margin: 0; */
  /* justify-content: space-between; */
}

.card h3 {
  font-size: 24px;
  font-weight: 400;
}
.card .price {
  font-size: 32px;
  justify-self: center;
  font-weight: 400;
  line-height: 50px;
  margin: auto 0;
}

.card p {
  font-size: 12px;
  line-height: 18px;
}

.card .description {
  margin-top: auto;
}

.plan-cards .popular {
  background: var(--primary);
  color: var(--white);
  font-size: 46px;
}
.plan-cards .popular .price {
  /* background: var(--primary);
  color: var(--white); */
  font-size: 36px;
  font-weight: 600;
}

.tabs {
  display: flex;
  gap: 16px;
  margin-top: 10px;
  overflow: auto;
  flex-wrap: wrap;
  justify-content: center;
}

.tab {
  padding: 4px 12px;
  border-radius: 10px;
  background-color: var(--gray);
  color: var(--gray-3);
  white-space: nowrap;
  cursor: pointer;
}

.active-tab {
  background: var(--primary);
  color: white;
}

/* Media query */

@media screen and (max-width: 1100px) {
  .plan-cards {
    flex-wrap: wrap;
    justify-content: center;
  }
  .pricing {
    padding-bottom: 50px;
    padding-top: 50px;
    min-height: 100vh;
    /* background: #000; */
    /* display: none; */
  }
}
@media screen and (max-width: 900px) {
  .pricing {
    /* padding-bottom: 50px; */
    padding-top: 100px;
    /* min-height: 100vh; */
    /* background: #000; */
    /* display: none; */
  }
}

@media screen and (max-width: 500px) {
  .write-up p {
    font-size: 14px;
    width: 100%;
  }

  .card {
    padding: 16px 14px;
    /* height: 270px; */
    width: 70%;
  }
  .card .price {
    font-size: 46px;
    /* margin-top: 32px; */
    line-height: 26px;
  }
  .card p {
    font-size: 16px;
    line-height: 26px;
  }
  .card {
    font-size: 16px;
    line-height: 26px;
  }

  .locations {
    width: 100%;
  }
  .plans {
    width: 100%;
  }

  .locals {
    font-size: 14px;
  }
}

@media screen and (max-width: 450px) {
  .card {
    width: 80%;
  }
}

@media screen and (max-width: 400px) {
  .card {
    width: 95%;
  }
}
@media screen and (max-width: 350px) {
  .card {
    width: 100%;
  }
}
