/* globals */
@import url("./normalize.css");
@import url("./fonts.css");
@import url("./globals.css");

/* variables */
@import url("./variables.css");


/* components */
@import url("./components/header.css");
@import url("./components/footer.css");

.article {
  padding-top: 80px;
  padding-bottom: 120px;
}

.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-bottom: 40px;
}

.article__text {
  margin-bottom: 20px;
  line-height: 1.3;
  color: #535755;
}

.article__text:last-child {
  margin-bottom: 0;
}

.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:last-child {
  margin-bottom: 0;
}

.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;
  transition: background-color .3s;
}

.third-section__play:hover {
  background-color: #3597ed9f;
}

.third-section__play:focus-visible {
  outline: 2px solid white;
  outline-offset: 3px;
}

.third-section__play-icon {
  transform: translate(1px, 3px);
}

.mb-80 {
  margin-bottom: 80px;
}