/* Scroll Animation (sa, 스크롤 애니메이션) */
.scrAni {
    opacity: 0;
    transition: all .5s ease;
}
.aniSpdFast {
    transition: all .3s ease;
}
.aniSpdSlow {
    transition: all .8s ease;
}
.scrAni-up {/* 아래에서 위로 페이드 인 */
    transform: translate(0, 100px);
}
.scrAni-down {/* 위에서 아래로 페이드 인 */
    transform: translate(0, -100px);
}
.scrAni-right {/* 왼쪽에서 오른쪽으로 페이드 인 */
    transform: translate(-100px, 0);
}
.scrAni-left {/* 오른쪽에서 왼쪽으로 페이드 인 */
    transform: translate(100px, 0);
}
.scrAni-rotateL {/* 왼쪽으로 회전하면서 페이드 인 */
    transform: rotate(180deg);
}
.scrAni-rotateR {/* 오른쪽으로 회전하면서 페이드 인 */
    transform: rotate(-180deg);
}
.scrAni-scaleUp {/* 작아진 상태에서 커지면서 페이드 인 */
    transform: scale(.5);
}
.scrAni-scaleDown {/* 커진 상태에서 작아지면서 페이드 인 */
    transform: scale(1.5);
}
.scrAni.show {
    opacity: 1;
    transform: none;
}

@media(min-width:480px){

}
@media(min-width:720px){
 
}
@media(min-width:960px){

}
@media(min-width:1280px){
      
}