.motion__top {
  margin-bottom: 15px;
}
.motion__top.motion__top-row {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 20px 2fr;
  grid-template-columns: 1fr 2fr;
  grid-column-gap: 20px;
}
.motion__title {
  margin-bottom: 8px;
}
.motion__text {
  margin-bottom: 0;
}
.motion-examples {
  padding-top: 70px;
}
.motion-examples__list {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1.5fr 16px 1fr 16px 1.5fr;
  grid-template-columns: 1.5fr 1fr 1.5fr;
  -ms-grid-rows: 1fr 16px 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 16px;
  grid-row-gap: 16px;
  padding: 0px 0 70px;
  border-bottom: 1px solid rgba(14, 17, 34, 0.3019607843);
}
.motion-examples__list > *:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.motion-examples__list > *:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
}
.motion-examples__list > *:nth-child(3) {
  -ms-grid-row: 1;
  -ms-grid-column: 5;
}
.motion-examples__list > *:nth-child(4) {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
}
.motion-examples__list > *:nth-child(5) {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
}
.motion-examples__list > *:nth-child(6) {
  -ms-grid-row: 3;
  -ms-grid-column: 5;
}
.motion-examples__list > div:nth-child(1) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 1;
  grid-area: 1/1/2/2;
}
.motion-examples__list > div:nth-child(2) {
  -ms-grid-row: 1;
  -ms-grid-row-span: 1;
  -ms-grid-column: 2;
  -ms-grid-column-span: 2;
  grid-area: 1/2/2/4;
}
.motion-examples__list > div:nth-child(3) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: 2/1/3/3;
}
.motion-examples__list > div:nth-child(4) {
  -ms-grid-row: 2;
  -ms-grid-row-span: 1;
  -ms-grid-column: 3;
  -ms-grid-column-span: 1;
  grid-area: 2/3/3/4;
}
.motion-examples__item {
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
.motion-examples__item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.motion-examples__video {
  height: 100%;
}
.motion-examples__video video {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 767px) {
  .motion-examples {
    padding-top: 50px;
  }
  .motion-examples__list {
    grid-column-gap: 8px;
    grid-row-gap: 8px;
    padding: 0px 0 50px;
  }
}
@media (max-width: 575px) {
  .motion-examples__list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 0px 0 50px;
  }
  .motion-five-column {
    padding-top: 50px;
  }
}