html {
    scroll-behavior: smooth;
}

.main {
    background: #080707;
}

.lp-content {
    max-width: 720px;
    margin: -8px auto;
    position: relative;
}

.lp-content img.section-img {
    width: 100%;
}

.lp-content .cta_btn {
    position: absolute;
    bottom: 8%;
    margin: 0 auto;
    left: 0;
    right: 0;
    width: 70%;
    animation: pulse 2s ease-in-out infinite;
}

.lp-content .cta_btn img {
    width: 100%;
}

#action_form {
    background-color: white;
}


  
@keyframes pulse {
    0%, 20%, 40%, 60% {
        transform: scale(1.0);
    }
    30%, 50% {
        transform: scale(0.95);
    }
}