.mySlider{
  width: 100%;
  margin: auto;
}
.mySlider__item {
  position: relative;
  overflow: hidden; }
  .mySlider__item img {
    width: 100%;
    -webkit-transform: scale(1);
        -ms-transform: scale(1);
            transform: scale(1);
    -webkit-transition: .5s all ease;
    -o-transition: .5s all ease;
    transition: .5s all ease; }
    .mySlider__item img:hover {
      -webkit-transform: scale(1.04);
          -ms-transform: scale(1.04);
              transform: scale(1.04);
      -webkit-transition: .5s all ease;
      -o-transition: .5s all ease;
      transition: .5s all ease; }
  .mySlider__item h5{
    font-family: Avetra;
  }
  .mySlider__item h5,
  .mySlider__item p {
    letter-spacing: 2px;
    color: white;
    padding: 0px 10px; }

.mySlider__opisanie {
  position: absolute;
  bottom: 0;
  width: 100%;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0)), to(rgba(0, 0, 0, 0.863)));
  background: -o-linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.863));
  background: linear-gradient(top, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.863)); }
