/*-------------------------------------------Background Image---------------------------------------------*/
#bg {
    width: 100%;
    height: auto;
}

/*-------------------------------------------Title Animation---------------------------------------------*/
/* Comment if using Slide keyframe */
.add-animation-zoom {
    animation: zoomBounce 0.3s ease;
    animation: zoomOut 0.3s ease;
} 

/* Comment all if using Zoomout keyframe */
/* .add-animation { */
    /* animation: frmslideLeft 0.3s ease; */
    /* animation: frmslideRight 0.8s ease; */
/* } */

/* Comment all if using Zoomout keyframe */
/* .exit-animation { */
    /* animation: toslideRight 0.3s ease; */
    /* animation: toslideLeft 0.8s ease; */
/* } */

/*-------------------------------------------Redirect Button---------------------------------------------*/
.redirect-btn {
    top: 25%;
    z-index: 100;
}

.redirect-btn img {
    width:45%;
    animation: pulse 0.9s  infinite linear;
}

.redirect-7 {
    top: 26%;
    right:40%;
}

.redirect-7 img {
    width:30%;
    animation: move1 1.2s  infinite linear;
}

.redirect-m3 {
    top: 50%;
    right:45%;
}

.redirect-m3 img {
    width:15%;
    animation: move2 1.2s  infinite linear;
}

.redirect-green {
    top: 30%;
    left:30%;
}

.redirect-green img {
    width:15%;
    animation: move3 1.2s  infinite linear;
}
.redirect-map {
    top:55%;
    left:45%;
}

.redirect-map img {
    width:25%;
    animation: move1 1.5s  infinite linear;
}
.redirect-monster {
    top: 40%;
    left:30%;
}

.redirect-monster img {
    width:20%;
    animation: move2 1.5s  infinite linear;
}
.redirect-wild {
    top: 43%;
    right:35%;
}

.redirect-wild img {
    width:13%;
    animation: move3 1.5s  infinite linear;
}
.redirect-orange {
    top:57%;
    left:37%;
}

.redirect-orange img {
    width:5%;
    animation: move1 1.5s  infinite linear;
}


/*-------------------------------------------Keyframe Animation---------------------------------------------*/
@keyframes pulse {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(0.9);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    35% {
        transform: scale(0.9);
        opacity: 0.5;
    }

    65% {
        transform: scale(1.2);
        opacity: 0.8;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes zoomBounce {
    0% {
        transform: scale(0);
        opacity: 0;
    }

    35% {
        transform: scale(0.7);
        opacity: 0.5;
    }

    55% {
        transform: scale(1.1);
        opacity: 0.7;
    }

    65% {
        transform: scale(0.8);
        opacity: 0.8;
    }

    85% {
        transform: scale(1.2);
        opacity: 0.9;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

@keyframes frmslideLeft {
    0% {
        transform: translateX(-50%);
        opacity: 0;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toslideRight {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(50%);
        opacity: 0;
    }
}

@keyframes frmslideRight {
    0% {
        transform: translateX(10%);
        opacity: 0;
    }

    50% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes toslideLeft {
    0% {
        transform: translateX(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-10%);
        opacity: 0;
    }
}
@keyframes move1 {
    0% {
        transform: translate(0,0);
    }

    20% {
        transform: translate(-10px,10px);
    }

    40% {
        transform: translate(10px,10px);
    }

    60% {
        transform: translate(15px,15px);
    }

    80% {
        transform: translate(12px,15px);
    }

    100% {
        transform: translate(0,0);
    }
}

@keyframes move2 {
    0% {
        transform: translate(0,0);
    }

    20% {
        transform: translate(5px,15px);
    }

    40% {
        transform: translate(-15px,15px);
    }

    60% {
        transform: translate(-10px,-15px);
    }

    80% {
        transform: translate(-10px,-10px);
    }

    100% {
        transform: translate(0,0);
    }
}

@keyframes move3 {
    0% {
        transform: translate(0,0);
    }

    20% {
        transform: translate(10px,15px);
    }

    40% {
        transform: translate(10px,-15px);
    }

    60% {
        transform: translate(-10px,-15px);
    }

    80% {
        transform: translate(-10px,10px);
    }

    100% {
        transform: translate(0,0);
    }
}




/*-------------------------------------------Multi Device Screen Size---------------------------------------------*/
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #bg {
        height: 100vh;
    }
}