/*-------------------------------------------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: 26%;
    z-index: 100;
}

.redirect-btn img {
    width: 70%;
    animation: pulse 0.9s infinite linear;
}

.redirect-element1 {
    top: 35%;
    right: 37%;
    z-index: 90;

}

.redirect-element1 img {
    width: 20%;
    animation: inclineMove 1.3s infinite linear;

}

.redirect-element2 {
    top: 70%;
    left: 27%;
    z-index: 1000;

}

.redirect-element2 img {
    width: 55%;
    animation: pulse2 1.8s infinite linear;

}

.redirect-element3 {
    top: 85%;
    right: 35%;
    z-index: 1000;

}

.redirect-element3 img {
    width: 50%;
    animation: inclineMove 1.5s infinite linear;

}

.redirect-element4 {
    top: 50%;
    left: 40%;
    z-index: 10000;

}

.redirect-element4 img {
    width: 25%;
    animation: inclineMove 1.5s infinite linear;

}

.redirect-element5 {
    top: 20%;
    right: 35%;
    z-index: 90;

}

.redirect-element5 img {
    width: 25%;
    animation: inclineMove 1.5s infinite linear;

}

.redirect-element6 {
    top: 35%;
    z-index: 95;
    /* make sure above background */
}

.redirect-element6 video {
    width: 59%;
    border-radius: 10px;
}


.video-container {
    position: relative;
    display: inline-block;
}

/*-------------------------------------------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 inclineMove {
    0% {
        transform: scale(1) translate(0);
    }

    30% {
        transform: scale(1.11) translate(-0px, -10px);
        ;
    }

    50% {
        transform: scale(1.13) translate(-5px, -20px);
    }

    100% {
        transform: scale(1) translate(0);
    }
}

/*-------------------------------------------Multi Device Screen Size---------------------------------------------*/
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #bg {
        height: 100vh;
    }
}