.stage .stage__main {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  -moz-column-gap: 32px;
  column-gap: 32px;
  row-gap: 32px;
  grid-template-rows: auto;
}
@media only screen and (max-width: 992px) {
  .stage .stage__main {
    grid-template-columns: repeat(6, 1fr);
    -moz-column-gap: 16px;
    column-gap: 16px;
    row-gap: 16px;
  }
}
.stage .stage__main.stage__main--image-right .stage__image {
  order: 2;
  grid-column: 8/13;
}
@media only screen and (max-width: 992px) {
  .stage .stage__main.stage__main--image-right .stage__image {
    order: 2;
    grid-column: span 3;
  }
}
@media only screen and (max-width: 768px) {
  .stage .stage__main.stage__main--image-right .stage__image {
    grid-column: span 6;
  }
}
.stage .stage__main.stage__main--image-right .stage__content {
  order: 1;
  grid-column: 1/7;
}
@media only screen and (max-width: 992px) {
  .stage .stage__main.stage__main--image-right .stage__content {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 768px) {
  .stage .stage__main.stage__main--image-right .stage__content {
    grid-column: span 6;
  }
}
.stage .stage__main.stage__main--image-left .stage__image {
  order: 1;
  grid-column: 1/6;
}
@media only screen and (max-width: 992px) {
  .stage .stage__main.stage__main--image-left .stage__image {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 768px) {
  .stage .stage__main.stage__main--image-left .stage__image {
    order: 2;
    grid-column: span 6;
  }
}
.stage .stage__main.stage__main--image-left .stage__content {
  order: 2;
  grid-column: 7/13;
}
@media only screen and (max-width: 992px) {
  .stage .stage__main.stage__main--image-left .stage__content {
    grid-column: span 3;
  }
}
@media only screen and (max-width: 768px) {
  .stage .stage__main.stage__main--image-left .stage__content {
    order: 1;
    grid-column: span 6;
  }
}
.stage .stage__main {
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .stage .stage__main .stage__content .stage__buttons {
    display: none;
    grid-column: span 6;
  }
}
@media only screen and (max-width: 992px) {
  .stage .stage__main .stage__content .stage__buttons .button {
    width: 100%;
    margin: 0 0 20px;
  }
  .stage .stage__main .stage__content .stage__buttons .button:last-of-type {
    margin: 0;
  }
}
.stage .stage__main .stage__mobile-buttons {
  display: none;
}
@media only screen and (max-width: 768px) {
  .stage .stage__main .stage__mobile-buttons {
    display: block;
    order: 3;
    grid-column: span 6;
  }
}
.stage .stage__main .stage__mobile-buttons .button {
  width: 100%;
  margin: 0 0 20px;
}