@import url("../../assets-custom/root.css");@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap");

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
}

body {
  font-family: "Poppins", sans-serif;
  background-color: var(--ea-white-color);
  color: #333;
  box-sizing: border-box;
    overflow-x: hidden;
}

/* Pricing  */

.pricing {
  width: 100%;
  height: auto;
  /* margin-bottom: 23px; */
  background-color: var(--ea-secondary-color);
  padding: 54px 0 23px 0;
}

.pricing .card-1,
.pricing .card-3 {
  max-width: 313px;
  max-height: 421px;
  padding: 24px 0px 24px 0px;
  gap: 25px;
  border-radius: 12px 0px 0px 0px;
  margin: 109px 36px;
  background-color: var(--card1-3-colors) ;
}

.pricing .card-2 {
  max-width: 313px;
  max-height: 455px;
  padding: 24px 0px 24px 0px;
  gap: 25px;
  margin: 75px 0;
  background: var(--ea-background-color);
}

.pricing .card {
  border: 0;
  border-radius: 12px;
  overflow: hidden;
}

.pricing-cards-container {
  height: auto;
  width: 100%;
  display: flex;
  justify-content: center;
}

.pricing .heading-title {
  /* margin-top: 54px; */
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.pricing .heading-title h6 {
  font-family: "Poppins";
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  text-align: left;
  margin: 10px 0;
}

.pricing .heading-title h3 {
  font-family: "Verdana";
  font-size: 39px;
  font-weight: 700;
  line-height: 47.4px;
  text-align: left;
}

.navbar {
  /* margin-top: 40px; */
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 83px;
  border-bottom: 1px solid var(--accountDetails-label-color);
  /* background: rgba(0, 0, 0, 0.5); */
}

/* cards  */

.pricing {
  text-align: center;
  padding: 50px 20px;
}

.cards-container {
  display: flex;
  justify-content: center;
  gap: 20px;
}

.card {
  background-color: var(--ea-white-color);
  border-radius: 15px;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
  padding: 30px 20px;
  width: 300px;
  text-align: center;
  position: relative;
}

.card-1 .plan-label {
  width: 51px;
  height: 22px;
  padding: 2px 12px 2px 12px;
  gap: 8px;
  border-radius: 24px;
  font-family: "Inter";
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  color: var(--ea-white-color);
  background: var(--ea-background-color);
}

.card-2 .plan-label {
  width: 69px;
  height: 22px;
  padding: 2px 12px 2px 12px;
  gap: 8px;
  border-radius: 24px;
  opacity: 0px;
  font-family: "Inter";
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  background: var(--ea-white-color);
}

.card-3 .plan-label {
  width: 67px;
  height: 22px;
  padding: 2px 12px 2px 12px;
  gap: 8px;
  border-radius: 24px;
  font-family: "Inter";
  font-size: 10px;
  font-weight: 600;
  line-height: 18px;
  text-align: center;
  color: var(--ea-white-color);
  background: var(--ea-background-color);
}

.pricing-cards-container .card {
  padding: 24px;
}

.card .value {
  font-family: "Inter";
  font-size: 30px;
  font-weight: 400;
  line-height: 38px;
  text-align: center;
  width: 120px;
  height: 38px;
  gap: 0px;
  opacity: 0px;
}

.card .month {
  font-family: "Poppins";
  font-size: 12px;
  font-weight: 400;
  line-height: 18px;
  text-align: center;
  color: var(--pricing-text-color);
}

.card-2 .month,
.card-2 .value,
.card-2 p,
.card-2 ul li {
  color: var(--ea-white-color);
}

.card .btn {
  color: var(--ea-white-color);
  max-width: 265px;
  height: auto;
  padding: 10px 16px 10px 16px;
  gap: 8px;
  border-radius: 8px;
  border: 1px 0px 0px 0px;
  opacity: 0px;
  background: var(--ea-black-color);
  font-family: "Poppins";
  font-size: 14px;
  font-weight: 600;
  line-height: 20px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card p,
.card ul li {
  font-family: "Poppins";
  font-size: 10px;
  font-weight: 400;
  line-height: 18px;
  text-align: left;
}

.plan-label {
  display: flex;
  align-items: center;
}

.card h3 {
  display: flex;
  align-items: center;
}

.card ul {
  list-style: none;
  /* Remove default bullets */
  padding-left: 0;
}

.card li {
  position: relative;
  padding-left: 30px;
  /* Space for the SVG icon */
  margin-bottom: 10px;
}

.card li::before {
  content: url("");
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  /* Adjust icon size */
  height: 20px;
}

.card-1 li::before {
  content: url("../img/pricing/yesBlackIcon.svg");
  /* Icon for Basic Plan */
}

.card-2 li::before {
  content: url("../img/pricing/yesWhiteIcon.svg");
  /* Icon for Standard Plan */
}

.card-3 li::before {
  content: url("../img/pricing/yesBlackIcon.svg");
  /* Icon for Premium Plan */
}

.card-1 ul li:nth-last-child(2)::before,
.card-1 ul li:nth-last-child(1)::before {
  content: url("../img/pricing/xIcon.svg");
  /* Icon for Basic Plan */
}

.card-3 ul li:nth-last-child(1)::before {
  content: url("../img/pricing/xIcon.svg");
}
