 .Slider {
      width: auto;
      height: 400px;
	  overflow:auto;
	  margin:0 auto;
	  position: relative;
	  z-index:-1;
    }

    .Slider .other-content {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      text-align: center;
      z-index: 2;
      padding: 30px;
      font-size: 50px;
      color: white;
    }

    .Slider .slide {
      z-index: 1;
      position: absolute;
      width: 100%;
      top: 0;
      left: 0;
      height: 100%;
      transition: opacity 1s ease-in-out;
      background-position: center center;
      background-repeat: no-repeat;
      background-size: cover;
      opacity: 0;
    }

    .Slider .slide.show {
      opacity: 1;
    }
