.page {
  font-family: 'Ubuntu', 'Oswald', sans-serif;
  font-weight: 400;
}

.page__body {
  min-width: 380px
}

*, ::before, ::after {
  box-sizing: border-box;
}

.article {
  padding-top: 80px;
  padding-bottom: 120px;
}

.container {
  max-width: 1250px;
  padding: 0 15px;
  margin: 0 auto;
}

.title-large, .title-medium {
  font-family: 'Oswald';
  font-weight: 600;
  font-size: 48px;
  line-height: 1.15;
  text-transform: uppercase;
  color: #2c332f;
}

.title-medium {
  font-size: 36px;
  margin-bottom: 40px;
}

.first-section {
  position: relative;
}

.first-section::before, .third-section::before {
  content: "" / "декорация в виде квадратиков";
  position: absolute;
  z-index: -1;
  width: 50%;
  height: 48px;
  background-image: url(../images/decor-section-image.svg);
}

.first-section::before {
  top: 455px;
  left: 0;
}

.article__title {
  max-width: 596px;
  margin: 0;
  margin-bottom: 40px;
}

.article__text {
  margin: 0;
  margin-bottom: 20px;
  line-height: 1.3;
  color: #535755;
}

.article__img, .article__video {
  width: 100%;
}

.article__list {
  margin: 0;
  padding: 0;
}

.article__list-item {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  line-height: 1.3;
  color: #535755;
  list-style-type: none;
}

.article__list-item::before {
  content: "";
  width: 8px;
  height: 8px;
  display: inline-block;
  background-color: #3596ED;
  border-radius: 50%;
}

.third-section {
  position: relative;
}

.third-section::before {
  top: 446px;
  right: 0;
}

.third-section__video-wrapper {
  position: relative;
  margin-bottom: 40px;
}

.third-section__play {
  width: 60px;
  height: 60px;
  background-color: #3596ED;
  border: 0;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  cursor: pointer;
  z-index: 1;
}

.third-section__play-icon {
  transform: translate(1px, 3px);
}

.mb-80 {
  margin-bottom: 80px;
}