.jq_bot {
            width: 100%;
            height: 100%;
            position: fixed;
            left: 0;
            bottom: 0;
            background: url(../images/essjq/jq5-phone.jpg) no-repeat center bottom/100% auto;
        }

        .jq_bot img {
            width: 100%;
        }

        .jq_logo {
            width: 100%;
            position: fixed;
            left: 0;
            top: 3%;
        }

        .jq_t1 {
            width: 100%;
            position: fixed;
            left: 0;
            top: 10%;
        }

        .jq_t2 {
            width:100%;
            position: fixed;
            left: 0;
            top: 20%;
        }

        .jq_t3 {
            width: 10%;
            position: fixed;
            left: 45%;
            bottom: 6%;
        }

        .jq_i1 {
            animation: move1 3s forwards;
            transform: scale(0);
            opacity: 0;
        }

        @keyframes move1 {
            from {
                opacity: 0;
                transform: scale(0);
            }

            to {
                opacity: 1;
                transform: scale(1);
            }
        }

        .jq_i2 {
            animation: move2 2s forwards;
            transform: translateY(100px);
            opacity: 0;
        }

        @keyframes move2 {
            from {
                opacity: 0;
                transform: translateY(100px);
            }

            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        .jq_i3 {
            animation: move3 1s 1s infinite;
            transform: scale(1);
            opacity: 0;
        }

        @keyframes move3 {
            0% {
                opacity: 1;
                transform: scale(1);
            }

            50% {
                opacity: 1;
                transform: scale(1.1);
            }

            100% {
                opacity: 1;
                transform: scale(1);
            }
        }
		.jqPhone {display:block;}
		.jqPhoneNone {display:none;}
