button  {
  background: transparent;
  width: 200px;
  height: 200px;
  cursor: pointer;
  z-index: 9999;
  border: none;
  outline: none;
  }
  button:hover  {
  opacity: 0.8;
  }
@-webkit-keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-200px * 7));
            transform: translateX(calc(-200px * 7));
  }
}

@keyframes scroll {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(calc(-200px * 7));
            transform: translateX(calc(-200px * 7));
  }
}
h6 {
  color: #ff3200;
  margin: 8px 0;
  font-size: 30px;
  text-align: center;
  width: 100%;
}
.slider {
  background: transparent;
  height: 200px;
  margin: 0;
  overflow: hidden;
  position: relative;
  bottom: 0;
  left: 0;
  width: 96%;
  z-index: 9;
}
.slider::before, .slider::after {
  content: "";
  height: 200px;
  margin: 0;
  position: absolute;
  width: 10px;
  z-index: 2;
}
.slider::after {
  right: 0;
  top: 0;
  -webkit-transform: rotateZ(180deg);
          transform: rotateZ(180deg);
}
.slider::before {
  left: 0;
  top: 0;
}
.slider .slide-track {
  -webkit-animation: scroll 40s linear infinite;
          animation: scroll 40s linear infinite;
  display: flex;
  width: calc(200px * 14);
}
.slider .slide {
  height: 200px;
  width: 200px;
  margin: 0 5px;
}











.botons {
    min-width: 50%;
    height: 2.9vw;
    color: #fff;
    padding: 6px 20px 10px 20px;
    font-family: 'Fira Sans Condensed', sans-serif;
    font-size: 1.45vw;
    background: #000;
    -webkit-animation: glow 800ms ease-out infinite alternate;
	        animation: glow 800ms ease-out infinite alternate;
}

.botons:hover,
.botons:focus,
.botons:active {
  color: #fff;
  background: #90bb20;  
  	-webkit-animation: glow 800ms ease-out infinite alternate;
	        animation: glow 800ms ease-out infinite alternate;

}













@-webkit-keyframes glow {
    0% {
		border-color: #000;
		box-shadow: 0 0 3px rgba(144,187,32,.2), inset 0 0 5px rgba(144,187,32,.1), 0 2px 0 #000;
    }	
    100% {
		border-color: #90bb20;
		box-shadow: 0 0 20px rgba(144,187,32,.8), inset 0 0 10px rgba(144,187,32,.8), 0 2px 0 #000;
    }
}

@keyframes glow {
    0% {
		border-color: #000;
		box-shadow: 0 0 3px rgba(144,187,32,.2), inset 0 0 5px rgba(144,187,32,.1), 0 2px 0 #000;
    }	
    100% {
		border-color: #90bb20;
		box-shadow: 0 0 20px rgba(144,187,32,.8), inset 0 0 10px rgba(144,187,32,.8), 0 2px 0 #000;
    }
}