.tab3 {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: center;
  align-items: flex-start;
  width: 90%;
  gap: 40px;
  box-sizing: border-box;
  margin: 0 auto 40px auto;
}

.tab3 .priceCard {
  display: flex;
  flex-direction: column;
  flex-wrap: nowrap;
  justify-content: center;
  align-items: center;
  width: 300px;
  border-radius: 10px;
  box-shadow: 0px 0px 10px rgba(138, 57, 165, 0.2);
  padding: 20px;
  background-color: #E9E7EC;
  box-sizing: border-box;
  text-align: center;
  transition: all 0.2s ease-in-out;
}

.tab3 .priceCard .priceCardHeader h2 {
  color: #8a39a5;
  cursor: default;
}

.tab3 .priceCard:hover {
  scale: 1.1;
  transition: all 0.2s ease-in-out;
}

.tab3 .priceCard .priceCardBody {
  height: 500px;
  max-height: 500px;
  box-sizing: border-box;
  cursor: default;
}

.tab3 .priceCard .priceCardFooter {
  cursor: default;
}

.tab3 .priceCard .priceCardFooter #discount {
  text-decoration: line-through;
  color: #707070;
  font-size: 12px;
}

.tab3 .priceCard .priceCardFooter h2 {
  margin: 0;
  margin-bottom: 10px;
}

.tab3 .priceCard .priceCardFooter span {
  font-size: 14px;
}

.tab3 .priceCard .buy button {
  background-color: #8a39a5;
  color: #fff;
  border: none;
  padding: 8px 52px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  margin-top: 20px;
  font-weight: 700;
}

.tab3 .priceCard .buy button:hover {
  background-color: #ec6608;
}