.pricing-block {
  padding: 30px 0;
}
.pricing-block__row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
}
.pricing__item {
  display: flex;
  flex-direction: column;
  padding: 32px;
  border-radius: 24px;
  border: 2px solid #dedede;
  width: 294px;
}
.pricing__item--plan {
  color: var(--text-color-second);
  font-weight: 600;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 12px;
}
.pricing__item--price {
  position: relative;
  display: flex;
  gap: 8px;
  margin-bottom: 12px;
}
.pricing__item--discount {
  background: var(--main-color);
  color: white;
  text-shadow: 1px 1px 0px rgba(0, 0, 0, 0.3);
  padding: 5px 10px;
  font-weight: 400;
  border-radius: 6px;
  display: flex;
  align-items: center;
  margin-left: 8px;
  font-size: 14px;
  height: max-content;
}
.pricing__item--price h3 {
  font-weight: 700;
  font-size: 28px;
  line-height: 36px;
  letter-spacing: 0.2px;
}
.pricing__item--text {
  color: var(--text-color-second);
}
.pricing__item a.btn {
  max-width: 160px;
  padding-left: 0;
  padding-right: 0;
  font-weight: 600;
}
.pricing__item--wrapper {
  margin-bottom: 24px;
  min-height: 70px;
}
.pricing__item--content {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.pricing__item--content ul > li {
  padding: 11px 0;
  font-size: 18px;
  line-height: 24px;
}
.pricing__item--content p {
  font-size: 18px;
  line-height: 24px;
}
.pricing-block__row .pricing__item:nth-of-type(2) {
  border-color: #14c9c1;
  border-width: 3px;
  box-shadow:
    0 15px 40px 0 #559d9d33,
    0 2px 8px 0 #2031310d;
}

.plans__include ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding: 20px 0;
}
.plans__include ul > li {
  position: relative;
  padding-left: 28px;
}
.plans__include ul > li::before {
  content: '✔';
  position: absolute;
  left: 0;
  top: 0;
  padding: 5px;
  border-radius: 50%;
  width: 14px;
  height: 14px;
  background-color: #eaf5ed;
  display: flex;
  align-items: center;
  color: #02867d;
}
.plans__payments {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  row-gap: 0;
  flex-wrap: wrap;
  padding: 40px 0;
}
.plans__payments img {
  max-height: 33px;
  max-width: 52px;
  object-fit: contain;
}
.plans__payments p {
  display: block;
  max-width: 70%;
  margin: 0 auto;
  margin-top: 20px;
}
.pricing-block__row .pricing__item:nth-of-type(2) {
  border-color: var(--second-color);
  box-shadow:
    0 15px 40px 0 var(--second-color) 33,
    0 2px 8px 0 var(--second-color) 33;
}
section {
  margin: 20px auto;
}
ol,
ul {
  list-style: none;
}
.pricing__item {
  width: 100%;
  max-width: 362px;
}
.plans__include ul > li::before {
  color: var(--second-color);
  background-color: var(--second-color) 40;
  box-sizing: content-box;
}
