#plans-and-pricing {
  width: 100%;
  height: 100%;
  background-image: url('../assets/images/bg-for-plans.png');
  background-size: cover;
  background-position: center;
}
#plans-and-pricing .container {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.plans-and-pricing_item {
  background-color: var(--black50);
  border-radius: var(--radius);
  padding: 32px 24px 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 100%;
}
#plans-and-pricing h2 {
  color: var(--white30);
}
.plans-and-pricing_body {
  display: flex;
  /* justify-content: center; */
  flex-wrap: wrap;
  gap: 12px;
}


.plans-and-pricing_body > div:nth-child(2) .plans-and-pricing_item-btn {
  background-color: #fafcfd;
  color: var(--pink);
}

.plans-and-pricing_item-title > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.plans-and-pricing_item-title span {
  font-weight: 600;
  color: var(--white30);
  line-height: 31.2px;
  font-size: 32px;
  text-transform: uppercase;
  font-style: italic;
}
.plans-and-pricing_item-title div > div {
  display: flex;
  align-items: center;
  gap: 2px;
  background-color: var(--black);
  padding: 2px 12px 2px 12px;
  border-radius: 8px;
  color: var(--white30);
  font-size: 18px;
  font-weight: 600;
}
.plans-and-pricing_item-title p,
.plans-and-pricing_item-included p {
  color: #e1e1ec;
}
.plans-and-pricing_item-price {
  display: flex;
  gap: 16px;
  align-items: center;
}
.plans-and-pricing_item-price > div {
  display: flex;
  flex-direction: column;
}
.plans-and-pricing_item-price img {
  max-width: 76px;
  max-height: 76px;
}
.plans-and-pricing_item-price div > span:first-child {
  font-weight: 600;
  font-size: 36px;
  line-height: 46.8px;
  color: white;
}
.plans-and-pricing_item-price div > span:last-child {
  font-weight: 500;
  font-size: 18px;
  line-height: 32.4px;
  color: #e1e1ec;
}
.plans-and-pricing_item-strip {
  height: 1px;
  width: 100%;
  background-color: #ffffff4d;
}
.plans-and-pricing_item-included {
  display: flex;
  flex-direction: column;
  gap: 8px;
  height: 100%;
}
.plans-and-pricing_item-included ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.plans-and-pricing_item-included li {
  color: #e1e1ec;
  position: relative;
  padding-left: 35px;
}

.plans-and-pricing_item-included li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  height: 24px;
  background-image: url('../assets/images/plans_check.png');
  background-size: cover;
}
.plans-and-pricing_item-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  /* height: 60px; */
  width: 100%;
  border: 2px solid var(--pink);
  padding: 15px 44px 15px 44px;
  border-radius: 12px;
  color: var(--white30);
  font-weight: 600;
  font-size: 20px;
  font-family: 'Outfit', serif;
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.plans-and-pricing_item-btn:hover {
  transition: all 0.4s cubic-bezier(0.075, 0.82, 0.165, 1);
  scale: 1.03;
}
@media (min-width: 1200px) {
  .plans-and-pricing_body {
    justify-content: center;
    gap: 24px;
  }
  .plans-and-pricing_body {
    /* min-width: 438px; */
    width: 100%;
    flex-direction: row;
    flex-wrap: nowrap;
  }
}
/* @media (min-width: 1400px) {
  .plans-and-pricing_item {
    min-width: 438px;
  }
} */
