#global-footer {
    background-color: var(--black-100);
    padding: var(--pd-6);
    padding-top: 12rem;
}
#global-footer .global-footer-inner {
    gap: 6cqw;
}

#global-footer input, #global-footer select     {
    font-family: 'Geist Mono', monospace;
    text-transform: uppercase;
    font-weight: 500;
    background: none;
    background-color: none;
    border: none;
    outline: none;
    color: var(--smoke-200);
    opacity: 1;
    border-bottom: 1px solid var(--smoke-200);
    padding:0;
    padding-bottom: var(--pd-2);

}

#global-footer form .hs-submit input[type="submit"] {
    background: transparent;
    color: var(--smoke-200);
    font-family: 'Geist Mono', monospace ;
    font-weight: 550;
    text-transform: uppercase;
    padding: 0.5rem 1rem ;
    border-radius: 0.25rem;
    border: 1px solid currentColor ;
    outline: none;
    cursor: pointer;
    transition: background-color 0.3s ease, color 0.3s ease;
}

#global-footer form .hs-submit input[type="submit"]:hover {
    
    color: var(--orange-100);
}

#global-footer form.hs-form.stacked input[type="radio"],
#global-footer form.hs-form.stacked input[type="checkbox"] {
    all: unset;
    width: 1rem;
    height: 1rem;
    border: 1px solid currentColor; 
    outline: none;
    accent-color: var(--orange-100);
    border-radius: 0.25rem; 
    position: relative;
    flex: none;


}

#global-footer .hs-fieldtype-booleancheckbox.field.hs-form-field {
    gap: 0.5rem;
    color: var(--smoke-200);
}

#global-footer input::placeholder{
    color: var(--smoke-200);
    opacity: 1;
}

#global-footer {
    overflow: clip;
}

@media only screen and (max-width: 64rem) {
    #global-footer .global-footer-inner {
        flex-direction: column;
        gap:3rem;
    
    }

    #global-footer {
        padding-top: 2rem;
    }
}

@media only screen and (max-width: 48rem) {

    #global-footer .global-footer-link-columns{
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }

    #global-footer form > div {
        flex-direction: column;
        align-items: flex-end;
    }


}