/*-------------------------------------------Background Image---------------------------------------------*/
#bg {
    width: 100%;
    height: auto;
}


/*-------------------------------------------Redirect Button---------------------------------------------*/
.redirect-btn {
    top: 43%;
    z-index: 10;
}

.redirect-btn img {
    width:65%;
    animation: pulse 0.9s  infinite linear;
}

.element1 {
    top: -1%;
    z-index: 2;
}

.element1 img {
    width:100%;   

}

.element2 {
    top:-0%;
    z-index: 2;
}

.element2 img {
    width:100%;   

}


.txt {
    top:7%;
    z-index: 2;
    left: 5%;
}

.txt img {
    width:80%;   

}
/*-------------------------------------------Keyframe Animation---------------------------------------------*/
@keyframes pulse {
    0% {
        transform: scale(0.9);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(0.9);
    }
}



/*-------------------------------------------Multi Device Screen Size---------------------------------------------*/
/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {
    #bg {
        height: 100vh;
    }
}