@import url(utils/index.css);

body {
  background: #f7faff;
}

.pricing {
  padding-inline: 15px;
  background: #fff;
}

.pricing__list {
  max-width: 500px;
  margin: 50px auto 0;
}

.pricing__item {
  width: 100%;
  padding: 0 0 2px;
  text-align: left;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #ddd;
}

.pricing__item:not(:last-child) {
  margin: 0 0 20px;
}

.about {
  background: #fff;
  margin: 80px auto 100px;
}

.about__list {
  width: 70%;
  margin: 50px auto 0;
}

.about__item {
  line-height: 1.2;
  padding: 45px 20px 20px 60px;
  max-width: 400px;
  text-align: left;
  font-weight: bold;
  position: relative;
  background: #f7faff;
}

.about__item:not(:last-child) {
  margin-bottom: 20px;
}

.about__item--right {
  margin-left: auto;
}

.about__item-icon {
  color: #fff;
  width: 100%;
  padding: 10px;
  max-width: 36px;
  font-size: 14px;
  aspect-ratio: 1;
  margin: 0 0 10px;
  border-radius: 50%;
  text-align: center;
  background: #1127e9;
  display: inline-block;
  position: absolute;
  top: 20px;
  left: 20px;
}

@media (max-width: 480px) {
  .pricing__item,
  .about__item {
    font-size: 16px;
  }
}

