.announce__slider {
  width: 100%;
  height: 8000px;
  /*background-image: url('plate.svg');*/
  background-color: #28313b;
  overflow: hidden;
}
.announce__slider_container {
  position: relative;
  top: 0;
  width: 100%;
  height: 100vh;
  /*background: red;*/
}
.announce__slide {
  position: absolute;
  width: 100%;
  bottom: 15%;
  text-align: center;
  font-family: 'ALSArtemiusSerif', serif;
  opacity: 0;
  transition: opacity 0.75s ease;
}
.announce__slide h1 {
  color: #fff;
}
.announce__slider_train_container {
  position: absolute;
  top: 0%;
  left: 0%;
  width: 100%;
  height: 100vh;
}
.announce__slider_train_img {
  position: absolute;
  top: 80%;
  left: 100%;
  transform: translate(-50%, -50%);
}
@media (max-width: 1680px) {
  .announce__slider_train_img {
    top: 100%;
  }
}
/* мобилки */
@media (max-width: 980px) {
  .announce__slider {
    height: 100vh;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    overflow-scrolling: touch;
  }
  .announce__slide {
    opacity: 0;
    top: 4%;
    bottom: inherit;
  }
  .announce__slide h1 {
    display: inline;
    background-color: rgb(255,255,255);
    color: black;
    padding: 4px 16px;
  }
  .announce__slider_train_container {
    position: relative;
    top: 0%;
    left: 0%;
    width: 100%;
    height: 100vh;
  }
  .announce__slider_train_img {
    position: relative;
    top: 50%;
    left: 50%;
    transform: translate(-300px, -1700px);
    will-change: transform, top;
    image-rendering: optimizeSpeed; /* STOP SMOOTHING, GIVE ME SPEED */
    image-rendering: -moz-crisp-edges; /* Firefox */
    image-rendering: -o-crisp-edges; /* Opera */
    image-rendering: -webkit-optimize-contrast; /* Chrome (and eventually Safari) */
    image-rendering: pixelated; /* Chrome */
    image-rendering: optimize-contrast; /* CSS3 Proposed */
    -ms-interpolation-mode: nearest-neighbor; /* IE8+ */
  }
}