@charset "utf-8";

@import url("style-s.css?v=1.7") only screen and (max-width: 768px);
@import url("style.css?v=1.7") only screen and (min-width: 769px), print;

main{
	overflow: hidden;
}


.scroll-downs {
  position: absolute;
  top: 90%;
  left: 50%;
  margin: auto;
  transform: translate(-50%, -50%);
  width : 17px;
  height: 28px;
}
.mousey {
  width: 3px;
  padding: 6px 9px;
  height: 23px;
  border: 2px solid #fff;
  border-radius: 25px;
  opacity: 0.75;
  box-sizing: content-box;
}
.scroller {
  width: 3px;
  height: 10px;
  border-radius: 25%;
  background-color: #5e9733;
  animation-name: scroll;
  animation-duration: 2.2s;
  animation-timing-function: cubic-bezier(.15,.41,.69,.94);
  animation-iteration-count: infinite;
}
@keyframes scroll {
  0% { opacity: 0; }
  10% { transform: translateY(0); opacity: 1; }
  100% { transform: translateY(15px); opacity: 0;}
}



