html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small,
strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form,
label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, details, embed,
figure, figcaption, footer, header, hgroup, menu, nav, output, ruby, section, summary, time,
mark, audio, video {
  
  margin: 0; padding: 0; border: 0; font-size: 100%; font: inherit; vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

.slider {
  position: relative;
  transform-style: preserve-3d;
  overflow: hidden;

  /* Цвет фона */
  background-color: #fff;

}

/* Если нужен фиксированный размер */



.slide {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom:0;
 
  overflow: hidden;
  opacity: 0;

  /* Время анимации для смены слайдов */
  transition: opacity .3s linear,
              transform .3s linear;
}

.slide_on {
  position: static;
  opacity: 1;
}

.slide__image {
  display: block;
  width: auto;
  

  margin-left: 50%;
  transform: translateX(-50%);

  /* Высота слайда */
  max-height: 120px;
}


a {
  width: 1000px;
  height: 120px;
  display: block;

}