/*-------------------------------------------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;
}

.text {
    top: 14%;
}

.text img {
    width:90%;
}

/*-------------------------------------------Redirect Button---------------------------------------------*/
.btn1 {
    top: 74%;
}
.btn1 img {
    width:65%;
    animation: pulse 1s  infinite linear;
}


.btn2 {
    top: 91%;
}

.btn2 img {
    width:65%;
    animation: pulse 1s  infinite linear;
}



@media(max-width:320px){

}

.dropdown-class{

      top: 20px;
      right: 20px;
      z-index: 1050;
    }
    






/*-------------------------------------------Keyframe Animation---------------------------------------------*/
@keyframes pulse {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.0);
    }

    100% {
        transform: scale(0.9);
    }
}




/*-------------------------------------------Multi Device Screen Size---------------------------------------------*/
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #bg {
        height: 100vh;
    }


}

@media (min-width: 1920px) {
    #bg {
        height: 100vh;
    }

}