/*-------------------------------------------Background Image---------------------------------------------*/
#bg {
    width: 100%;
    height: auto;
}


/*-------------------------------------------Redirect Button---------------------------------------------*/
.redirect-btn-def {
    top: 44%;
}

.redirect-btn-def img {
    width:60%;
    animation: pulse 0.9s  infinite linear;
}

.redirect-btn {
    top: 37%;
}

.redirect-btn img {
    width:60%;
    animation: pulse 0.9s  infinite linear;
}

.redirect-btn-1 {
    top: 19%;
    right: 15%;
}

.redirect-btn-1 img {
    width:30%;
    animation: pulse 0.9s  infinite linear;
}

.redirect-btn-2 {
    top: 41%;
}

.redirect-btn-2 img {
    width:40%;
    animation: pulse 0.9s  infinite linear;
}

.redirect-btn-3 {
      top: 57%;
}

.redirect-btn-3 img {
    width:40%;
    animation: pulse 0.9s  infinite linear;
}

.redirect-btn-4 {
      top: 73%;
}

.redirect-btn-4 img {
    width:40%;
    animation: pulse 0.9s  infinite linear;
}


/*-------------------------------------------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;
    }
}