.article {
  padding-top: 80px;
  padding-bottom: 120px;
}

.article__subtitle {
  font-size: 36px;
}

.article__text {
  margin-bottom: 20px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #535755;
}

.article__text:last-child {
  margin-bottom: 0;
}

.article__text--margin {
  margin-bottom: 80px;
}

.article__decor-wrapper {
  position: relative;
  margin-bottom: 80px;
}

.article__decor-wrapper--second {
  margin-bottom: 40px;
}

.article__decor-wrapper::before {
  content: "";
  position: absolute;
  z-index: -1;
  background: url("../images/decor-icon.svg") no-repeat;
  width: 528px;
  height: 48px;
}

.article__decor-wrapper--first::before {
  top: 100px;
  left: -350px;
}

.article__decor-wrapper--second::before {
  right: -350px;
  bottom: 136px;
}

.article__image {
  width: 100%;
  height: auto;
}

.article__list {
  margin: 0 0 80px;
  padding-left: 16px;
  list-style: none;
}

.article__list-item {
  position: relative;
  padding-left: 20px;
  margin-bottom: 12px;
  font-weight: 400;
  font-size: 16px;
  line-height: 130%;
  color: #535755;
}

.article__list-item:last-child {
  margin-bottom: 0;
}

.article__list-item::before {
  content: "•";
  position: absolute;
  left: 0;
  font-size: 22px;
  color: #3596ed;
}

.article__play-button {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  padding: 0;
  background-color: #3596ed;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  -webkit-transition: background-color 0.2s;
  -o-transition: background-color 0.2s;
  transition: background-color 0.2s;
}

.article__play-button:hover {
  background-color: #38a2ff;
}

.article__play-button:not(:disabled):active {
  background-color: #2d82cd;
}

@media (width <= 768px) {
  .article__decor-wrapper::before {
    display: none;
  }

  .article__subtitle {
    font-size: 32px;
  }

  .article__text--margin {
    margin-bottom: 60px;
  }

  .article__decor-wrapper {
    margin-bottom: 60px;
  }

  .article__list {
    margin-bottom: 60px;
  }
}

@media (width <= 576px) {
  .article {
    padding-top: 60px;
    padding-bottom: 80px;
  }

  .article__subtitle {
    font-size: 28px;
  }

  .article__text--margin {
    margin-bottom: 40px;
  }

  .article__decor-wrapper {
    margin-bottom: 40px;
  }

  .article__decor-wrapper--second {
    margin-bottom: 30px;
  }

  .article__list {
    margin-bottom: 40px;
  }

  .article__play-button {
    width: 50px;
    height: 50px;
  }

  .article__play-button img {
    width: 18px;
    height: 18px;
  }
}
