.stoplight-subfooter {
    background: var(--off-midnight);
    color: var(--white);
    padding: var(--padding);
    width: calc(100% - var(--padding)*2)
}

.subfooter-inner {
    align-items: center;
    border: 1px solid var(--blue);
    border-radius: 10px;
    display: flex;
    flex-flow: row nowrap;
    gap: var(--padding);
    justify-content: space-between;
    margin: 0 auto;
    max-width: calc(var(--screen) - 260px);
    padding: 50px;
    width: calc(100% - 100px)
}

@media screen and (max-width:950px) {
    .subfooter-inner {
        align-items: stretch;
        flex-flow: column nowrap;
        max-width: 450px
    }
}

@media screen and (max-width:767px) {
    .subfooter-inner {
        padding: 30px;
        width: calc(100% - 60px)
    }
}

.subfooter-left {
    max-width: 450px;
    width: 45%
}

@media screen and (max-width:950px) {
    .subfooter-left {
        max-width: none;
        width: 100%
    }
}

.subfooter-title {
    font-size: 1.5em;
    font-weight: 600;
    line-height: 1.4em;
    margin-bottom: 10px
}

@media screen and (max-width:767px) {
    .subfooter-title {
        font-size: 1.375em
    }
}

.subfooter-text {
    font-size: 1.125rem;
    font-weight: 300;
    line-height: 1.5em;
    opacity: .7
}

.subfooter-right {
    flex-grow: 1
}

.subfooter-disclaimer {
    font-size: .75rem;
    line-height: 1.4em;
    margin-top: 15px;
    opacity: .7;
    text-align: center
}

.subfooter-form form {
    display: flex;
    flex-flow: row nowrap
}

.subfooter-form form>div.hs-email {
    flex-grow: 1
}

.subfooter-form input.hs-input {
    border: none;
    border-radius: 5px 0 0 5px;
    height: 20px;
    width: calc(100% - 40px)
}

.subfooter-form input.hs-button,
.subfooter-form input.hs-input {
    background: var(--midnight);
    color: var(--white);
    font-family: Inter, sans-serif;
    font-size: 1rem;
    line-height: 1rem;
    padding: 16px 20px 14px
}

.subfooter-form input.hs-button {
    border: none;
    border-radius: 0 5px 5px 0;
    cursor: pointer;
    font-weight: 600;
    height: 50px
}

.subfooter-form input.hs-button:focus-visible,
.subfooter-form input.hs-input:focus-visible {
    outline: none
}

.subfooter-form input.hs-input::placeholder {
    color: var(--white) !important;
    opacity: .5 !important
}

.subfooter-form input.hs-input::-ms-placeholder {
    color: var(--white) !important;
    opacity: .5 !important
}

.subfooter-form input.hs-input::-moz-placeholder {
    color: var(--white) !important;
    opacity: .5 !important
}

.subfooter-form input.hs-input::-webkit-input-placeholder {
    color: var(--white) !important;
    opacity: .5 !important
}

.subfooter-form ul.hs-error-msgs {
    display: none !important
}

.subfooter-form .submitted-message p {
    margin-top: 0 !important;
    text-align: center
}

@media screen and (max-width:950px) {

    .subfooter-disclaimer,
    .subfooter-form .submitted-message p {
        text-align: left
    }
}