@keyframes pulse {
    0% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

.download_btn {
    animation: pulse 1.5s infinite;
    cursor: pointer;
}
.download_btn:hover {
    animation: pulse 1s infinite;
}
.footer{
    width: 100%; 
    /* padding-top: 20rem;  */
    text-align: center; 
    padding-bottom: 1rem; 
    font-size: 12px;
    color: #787373;
    position: fixed;
    bottom: 0;
    background-color: #1b4a68;
}
.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;
    }
}