.visually-hidden {
  position: absolute;

  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;

  white-space: nowrap;

  border: 0;

  clip: rect(0 0 0 0);
  -webkit-clip-path: inset(100%);
  clip-path: inset(100%);
}

/* intro */
.intro {
  min-height: 350px;
  display: flex;
}

.intro__video {
  display: block;
}

.intro picture {
  width: 100%;
}

.intro img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

/* description */
.description {
  padding-top: 80px;
  padding-bottom: 86px;
  position: relative;
  max-width: 1920px;
  margin: 0 auto;
}

.description--first {
  padding-top: 80px;
  padding-bottom: 84px;
  
  background-image: url("./img/decorate1.svg");
  background-repeat: no-repeat;
  background-position: bottom 31% right 12.5%;
}

.description--secondary {
  padding-bottom: 84px;
}

.description--third {
  padding-top: 81px;
  padding-bottom: 55px;
}

.description__container {
  max-width: 1260px;
  padding: 0 30px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
}

.description__tags-list {
  display: flex;
  gap: 15px;
  margin-bottom: 100px;
  flex-wrap: wrap;
}

.description__tags-item {
  font-size: 14px;
  line-height: 1;
  padding: 10px 25px;
  border-radius: 20px;
  background-color: #f1f1f1;
  color: #1d1d1b;
  text-transform: uppercase;
}

.description__title {
  margin: 0;
  margin-bottom: 32px;
  font-weight: 900;
  font-size: 55px;
  line-height: 1.2;
}

.description__text {
  margin: 0;
  margin-bottom: 60px;
  color: #676767;
  width: 63%;
}

.description__text--wide {
  width: 76%;
}

.description__text--middle {
  width: 63%;
}

.description__text--small {
  width: 55%;
}

.description__text--indent {
  margin: 0;
}

.description__text--bottom-indent {
  margin-bottom: 30px;
}

/* demo */
.demo {
  background-color: #f1f1f1;
}

.demo__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.demo__image-wrapper img {
  display: block;
  width: 100%;
}

.demo__image-wrapper--tall {
  grid-row: span 2;
}

/* demo-wide */
.demo-wide {
  background-color: #ffffff;

  display: flex;
}

.demo-wide picture {
  width: 100%;
}

.demo-wide img {
  height: 100%;
  width: 100%;
  display: block;
  object-fit: cover;
}

@media (max-width: 1600px) {
  /* description */
  .description--first {
    background-position: bottom 31% right 6%;
  }
}

@media (max-width: 1440px) {
  .description--first {
    background-position: bottom 31% right 3%;
    background-size: 400px auto;
  }
}

@media (max-width: 1200px) {
  /* description */
  .description {
    background-image: none;
  }

  .description--first,
  .description--secondary,
  .description--third {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .description--first {
    background-image: url("./img/decorate1.svg");
    background-repeat: no-repeat;
    background-position: bottom 60px center;
    padding-bottom: 200px;
  }

  .description__title {
    font-size: 40px;
  }

  .description__text {
    width: auto;
  }

  /* demo */
  .demo__container {
    grid-template-columns: 1fr;
  }

  .demo__image-wrapper--tall {
    grid-row: auto;
  }

  /* demo-wide */
  .demo-wide {
    min-height: 360px;
  }
}
