.wide-btn {
    width: 60%
}

.button-pulse {
    transition-property: transform;
    transition-delay: 3s;
    transform: scale(1);
    animation: pulse 1s
}

.download-button--green {
    background: #BA3A3A;
    color: #fff;
    border: 1px solid #BA3A3A;
    font-family: Poppins, Inter, sans-serif;
    padding: 30px;
    text-transform: uppercase;
    white-space: normal;
    font-size: clamp(30px, 3.1vw, 58px);
    margin-bottom: 0;
    text-align: center;
    vertical-align: middle;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    user-select: none;
    border-radius: 5px;
    font-weight: 900;
    overflow: hidden;
    transform: translateZ(0);
    backface-visibility: hidden;
    transition-duration: .3s;
    transition-property: box-shadow;
    line-height: .8;
}

.download-button--green i {
    font-size: 75%;
    margin-right: 10px
}

.download-button--green:hover {
    background: #BA3A3A !important
}

@keyframes pulse {
    0% {
        transform: scale(1)
    }

    25% {
        transform: scale(1.2)
    }

    50% {
        transform: scale(1)
    }

    75% {
        transform: scale(1.2)
    }

    to {
        transform: scale(1)
    }
}