@charset "utf-8";
/*scroll icon*/
.hero-img {
  position: relative;
}
a.scroll-icon {
  position: absolute;
  left: 50%;
  bottom: 160px;
  z-index: 10000;
  display: block;
  transform: translateX(-50%);
  text-decoration: none;
  color: #fff;
}
@media screen and (max-width:768px) and (orientation:landscape){
  a.scroll-icon {
    bottom: 60px;
  }
}
a.scroll-icon {
  padding-top: 12px;
}
a.scroll-icon span {
  z-index: 10000;
  position: absolute;
  top: 16px;
  left: 50%;
  width: 24px;
  height: 24px;
  margin-left: -12px;
  border-left: 1px solid #fff;
  border-bottom: 1px solid #fff;
  transform: rotate(-45deg);
  animation: sdb 1.5s infinite;
  box-sizing: border-box;
}
@keyframes sdb {
  0% {
    transform: rotate(-45deg) translate(0, 0);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    transform: rotate(-45deg) translate(-20px, 20px);
    opacity: 0;
  }
}