#slider-show {
  position: relative;
  height: 180px;
  width: 100%;
/*  max-width: 1000px;*/
  left: 0;
  right: 0;
  margin: auto;
  overflow: hidden;
  box-shadow: 0 0 15px #888;
}

#slider-srl {
  position: absolute;
/*
  top: 0;
  left: 0;
*/
  width: calc(260px * 6);
  height: 180px;
  transition: all 8s ease;
  background-image:url(index2.gif);
/*  background-color: rgb(2, 13, 45);*/
}

.slider-img {
  width: 220px;
  height: 150px;
  display: inline-block;
  margin: 20px;
  position: relative;
}

.slider-img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 220px;
  max-height: 100px;
}


* {
  box-sizing: border-box;
}

/* Create three equal columns that floats next to each other */
.column {
  float: left;
  width:45.5%;
}

.column2 {
  float: left;
  width:7.5%;
  padding-left:5px;
  padding-right: 5px;
  cursor: pointer;
  text-align:center;
}

/* Clear floats after the columns */
.row:after {
  content: "";
  display: table;
  clear: both;
}