@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}
#msisdn_back{
    width: 100%;
    text-align: center;
    margin-top: 0px;
}
#msisdn_back input {
    width: 100%;
    max-width: 310px;
    height: 38px;
    font-size: 16px;
    padding: 10px;
    text-align: center;
}
.download_btn {
    animation: pulse 1.5s infinite;
    cursor: pointer;
}
.download_btn:hover {
    animation: pulse 1s infinite;
}
.footer{
    width: 100%; 
    padding-top: 1rem; 
    text-align: center; 
    padding-bottom: 1rem; 
    font-size: 12px;
    color: #787373;
    /* position: fixed; */
    bottom: 0;
    background-color: #1b4a68;
}
button.btn{
    background-color: transparent;
    border: 0;
    cursor: pointer;
}
.landing_page .step_container .work_container .bounceInRight .icon {
    display: none;
}
@media (max-width: 754px) {
    .landing_page .step_container .work_container .bounceInRight .icon {
        display: block;
        text-align: center;
        float: none;
    }
    #msisdn_back{
        margin-top: 30px;
    }
}