* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: #fefefe;
}



.cards-wrapper {
  --gutter: 20px;
  display: flex;
  justify-content: flex-start;
  max-width: 1440px;
  width: 90%;
  margin: 0 auto;
  flex-wrap: wrap;
  align-content: flex-start;
  flex-direction: row;
}

.price-card.clr-1 {
  --clr: #ffb319;
}
.price-card.clr-2 {
  --clr: #6f69ac;
}
.price-card.clr-3 {
  --clr: #3db558;
}
.price-card.clr-4 {
  --clr: #3863c9;
}
.price-card.clr-5 {
  --clr: #ffb319;
}

.price-card {
  --bg-clr: #fff;
  --text-clr: #333;
  border: 2px solid var(--clr);
  padding: 40px 30px;
  width: 31%;
  background-color: var(--bg-clr);
  border-radius: 10px;
  margin-top: 30px;
  /* flex-direction: column; */
  display: flex;
  flex-direction: column;
}

.price-card:not(:last-child) {
  margin-right: var(--gutter);
}

.price-card .fa-check {
  color: #57cc99;
}

.price-card .fa-times {
  color: #ff0000;
}

.price-container {
  width: 70%;
  height: 55px;
  background-color: var(--clr);
  border-radius: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  color: #fff;
  margin: 0 auto;
  box-shadow: 0 0 0 5px var(--bg-clr), 0 0 0 7px var(--clr);
  margin-bottom: 20px;
}

.price {
  display: flex;
}

.price span:first-child {
  font-size: 30px;
}

.price span:last-child {
  font-size: 16px;
  margin: auto;
  /* font-weight: normal; */
}

.plan {
  /* margin: 0px 0; */
  text-transform: capitalize;
  font-size: 30px;
  color: var(--text-clr);
  text-align: center;
  position: relative;
  margin-bottom: 30px;
}

.plan span {
  background-color: var(--bg-clr);
  /* padding: 5px 30px; */
  position: relative;
  z-index: 1;
  /* color: #ffb319; */
  /* border: 1px solid #333; */
  border-radius: 40px;
  font-size: 25px;
}

.plan::before {
  /* content: ""; */
  position: absolute;
  width: 100%;
  height: 1px;
  background-color: var(--clr);
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.deliverable {
  display: flex;
  align-items: center;
  font-size: 18px;
  justify-content: space-between;
  border-top: 1px solid #c3c3c3;
  font-weight: 700;
  padding-top: 15px;
  padding-bottom: 15px;
}

.deliverable:first-child {

  border-top: none;
}
.deliverable:last-child {border-bottom: 1px solid #c3c3c3;margin-bottom: 20px;}

.deliverable span:first-child {
  text-transform: capitalize;
  color: var(--text-clr);
  margin-right: 25px;
  margin-top: 10px;
}
.deliverable.{
  font-size: 14px;
  padding-top: 10px;
  padding-bottom: 10px;
  line-height: 2;
}
.align-center {
  text-align: center;
  margin-top: auto;
}

.btn {
  display: inline-block;
  margin-top: 20px;
  padding: 1em 3.5em;
  border: 3px solid var(--clr);
  text-decoration: none;
  font-size: 18px;
  color: var(--clr);
  border-radius: 100px;
  transition: all 0.3s;
}

.btn:hover {
  background-color: var(--clr);
  color: #fff;
}

@media (max-width: 1200px) {
  .cards-wrapper {
    flex-wrap: wrap;
  }

  .price-card {
    width: calc(50% - var(--gutter));
  }

  .price-card:nth-child(2) {
    margin-right: 0;
  }

  .price-card:last-child {
    margin-top: var(--gutter);
  }
}

@media (max-width: 768px) {
  .cards-wrapper {
    flex-direction: column;
    align-items: center;
  }

  .price-card {
    width: 100%;
  }

  .price-card:first-child {
    margin-right: 0;
  }

  .price-card:last-child {
    margin-top: 0;
  }

  .price-card:not(:last-child) {
    margin-bottom: var(--gutter);
  }
}

@media (max-width: 320px) {
  .price-container {
    width: 120px;
    height: 120px;
  }

  .btn {
    padding: 0.5em 2em;
  }
}