/** Newsletter Banner **/
.newsletter-banner {
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--twilight);
    border-radius: 10px;
    padding: 44px 52px;
}
.newsletter-header {
    font-family: Montserrat, sans-serif;
    font-weight: 700;
    font-size: 28px;
    line-height: 44px;
    color: var(--mist);
    max-width: 520px;
    margin: 0 -42px 0 0;
}
.newsletter-pop-text {
    color: var(--pop-blue);
}
@media (max-width: 1128px) {
    .newsletter-banner {
        flex-direction: column;
        padding: 44px 0;
        max-width: calc(100dvw - 56px);
        gap: 12px;
    }
    .newsletter-header {
        max-width: 840px;
        font-size: clamp(18px, 4vw, 28px);
        line-height: clamp(26px, 5vw, 44px);
        width: 80%;
        margin: 0;
    }
    .button-input-container {
        max-width: 80%;
    }
    .button-input-text {
        width: calc(100% - 30px);
    }
    .button-input-submit-text {
        display: none;
    }

    .home-contact-form-container .input,.input-long {
        background: var(--theme-white);
    }
}