
@media screen {



    .scIn.fadeIn{
        opacity:0;
        -webkit-opacity:0;
        transition-duration: 600ms;
        transition-property: opacity;
        transition-timing-function: ease;
    }
    .scIn.fadeIn.move{
        opacity:1;
        -webkit-opacity:1;
    }

    .scIn.zoomIn{
        transform:scale(0);
        transition-duration: 600ms;
        transition-property: transform;
        transition-timing-function: ease;
    }
    .scIn.zoomIn.move{
        transform:scale(1);
    }


    .scIn.slideInTop{
        opacity:0;
        -webkit-opacity:0;
        position: relative;
        transition-duration: 600ms;
        transition-property: opacity,transform;
        transition-timing-function: ease;
        transform:translateY(-50px);
    }
    .scIn.slideInTop.move{
        opacity:1;
        -webkit-opacity:1;
        transform:translateY(0px);
    }


    .scIn.slideInBottom{
        opacity:0;
        -webkit-opacity:0;
        position: relative;
        transition-duration: 600ms;
        transition-property: opacity,transform;
        transition-timing-function: ease;
        transform:translateY(80px);
    }
    .scIn.slideInBottom.move{
        opacity:1;
        -webkit-opacity:1;
        transform:translateY(0px);
    }

    .scIn.slideInLeft{
        opacity:0;
        -webkit-opacity:0;
        position: relative;
        transition-duration: 600ms;
        transition-property: opacity,transform;
        transition-timing-function: ease;
        transform:translateX(-50px);
    }
    .scIn.slideInLeft.move{
        opacity:1;
        -webkit-opacity:1;
        transform:translateX(0px);
    }



    .scIn.slideInRight{
        opacity:0;
        -webkit-opacity:0;
        position: relative;
        transition-duration: 600ms;
        transition-property: opacity,transform;
        transition-timing-function: ease;
        transform:translateX(50px);
    }
    .scIn.slideInRight.move{
        opacity:1;
        -webkit-opacity:1;
        transform:translateX(0px);
    }



}

    .scIn.delay100{
        transition-delay: 100ms !important;
    }
    .scIn.delay200{
        transition-delay: 200ms !important;
    }
    .scIn.delay300{
        transition-delay: 300ms !important;
    }
    .scIn.delay400{
        transition-delay: 400ms !important;
    }
    .scIn.delay500{
        transition-delay: 500ms !important;
    }
    .scIn.delay600{
        transition-delay: 600ms !important;
    }
    .scIn.delay700{
        transition-delay: 700ms !important;
    }
    .scIn.delay800{
        transition-delay: 800ms !important;
    }
    .scIn.delay900{
        transition-delay: 900ms !important;
    }
    .scIn.delay1000{
        transition-delay: 1000ms !important;
    }
    .scIn.delay1100{
        transition-delay: 1100ms !important;
    }
    .scIn.delay1200{
        transition-delay: 1200ms !important;
    }
    .scIn.delay1300{
        transition-delay: 1300ms !important;
    }
    .scIn.delay1400{
        transition-delay: 1400ms !important;
    }
    .scIn.delay1500{
        transition-delay: 1500ms !important;
    }
    .scIn.delay2000{
        transition-delay: 2000ms !important;
    }
