

@keyframes bounceBall{
  0% {
    transform:  translate(0px,0px)  ;
  }
  15% {
    transform:  translate(0px,15px)  ;
  }
  30% {
    transform:  translate(0px,0px)  ;
  }
  45% {
    transform:  translate(0px,10px)  ;
  }
  60% {
    transform:  translate(0px,0px)  ;
  }
  75% {
    transform:  translate(0px,5px)  ;
  }
  100% {
    transform:  translate(0px,0px)  ;
  }
}

@-moz-keyframes bounceBall{
  0% {
    -moz-transform:  translate(0px,0px)  ;
  }
  15% {
    -moz-transform:  translate(0px,15px)  ;
  }
  30% {
    -moz-transform:  translate(0px,0px)  ;
  }
  45% {
    -moz-transform:  translate(0px,10px)  ;
  }
  60% {
    -moz-transform:  translate(0px,0px)  ;
  }
  75% {
    -moz-transform:  translate(0px,5px)  ;
  }
  100% {
    -moz-transform:  translate(0px,0px)  ;
  }
}

@-webkit-keyframes bounceBall {
  0% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  15% {
    -webkit-transform:  translate(0px,15px)  ;
  }
  30% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  45% {
    -webkit-transform:  translate(0px,10px)  ;
  }
  60% {
    -webkit-transform:  translate(0px,0px)  ;
  }
  75% {
    -webkit-transform:  translate(0px,5px)  ;
  }
  100% {
    -webkit-transform:  translate(0px,0px)  ;
  }
}

@-o-keyframes bounceBall {
  0% {
    -o-transform:  translate(0px,0px)  ;
  }
  15% {
    -o-transform:  translate(0px,15px)  ;
  }
  30% {
    -o-transform:  translate(0px,0px)  ;
  }
  45% {
    -o-transform:  translate(0px,10px)  ;
  }
  60% {
    -o-transform:  translate(0px,0px)  ;
  }
  75% {
    -o-transform:  translate(0px,5px)  ;
  }
  100% {
    -o-transform:  translate(0px,0px)  ;
  }
}

@-ms-keyframes bounceBall {
  0% {
    -ms-transform:  translate(0px,0px)  ;
  }
  15% {
    -ms-transform:  translate(0px,15px)  ;
  }
  30% {
    -ms-transform:  translate(0px,0px)  ;
  }
  45% {
    -ms-transform:  translate(0px,10px)  ;
  }
  60% {
    -ms-transform:  translate(0px,0px)  ;
  }
  75% {
    -ms-transform:  translate(0px,5px)  ;
  }
  100% {
    -ms-transform:  translate(0px,0px)  ;
  }
}

section#slideshow{
	height:100vh;
	width: 100%;
	position: relative;
	z-index: 1;
	transform: translateY(50%,-50%);
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
}
	section#slideshow .item{
		position: absolute;
		width:100%;
		height: 100%;
		background-position: center center;
		background-repeat: no-repeat;
		background-size: cover;
	}
	section#slideshow .item .container{
		position: absolute;
		top:50%;
		left:0;
		padding-left:40px;
		box-sizing: border-box;
		-webkit-box-sizing: border-box;
		transform: translateY(-50%);
		width:calc((100% - 4px) / 3);
	}
	section#slideshow .item .container h1{
		font-size: 28px;
		color: #FFFFFF;
		padding-bottom: 6px;
		margin-bottom:16px;
		display: inline-block;
		position: relative;
	}


	section#slideshow .item .container .btn {
		margin-top: 20px;
}
	
	section#slideshow #scrolldown{
		position: absolute;
		bottom:20px;
		left:50%;
		cursor: pointer;
		transform:translateX(-50%) scale(.5);
	}
	section#slideshow #scrolldown > *{
		fill:#fff;
	}
	section#slideshow #scrolldown > circle{
		  animation: bounceBall linear 0.8s;
		  animation-iteration-count: infinite;
		  transform-origin: 50% 50%;
		  -webkit-animation: bounceBall linear 0.8s;
		  -webkit-animation-iteration-count: infinite;
		  -webkit-transform-origin: 50% 50%;
		  -moz-animation: bounceBall linear 0.8s;
		  -moz-animation-iteration-count: infinite;
		  -moz-transform-origin: 50% 50%;
		  -o-animation: bounceBall linear 0.8s;
		  -o-animation-iteration-count: infinite;
		  -o-transform-origin: 50% 50%;
		  -ms-animation: bounceBall linear 0.8s;
		  -ms-animation-iteration-count: infinite;
		  -ms-transform-origin: 50% 50%;
	}