@property --c {
    syntax: '<color>';
    inherits: false;
    initial-value: #00FFF7;
}
@property --p {
    syntax: '<percentage>';
    inherits: false;
    initial-value: 10%;
}
@property --l {
    syntax: '<length>';
    inherits: false;
    initial-value: 10px;
}

body.contact-us-updated {
    font-family: Overpass;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%;
    background-color: transparent;
    /* margin: 32px; */
    height: 100%;
    overflow: hidden;
    h1, h2, h3, h4, h5, h6, p {
        margin-bottom: .5rem;
        font-weight: 500;
        line-height: 1.1;
        color: white;
    }
    span {
        font-weight: 500;
        line-height: 1.1;
        color: #EAEDF5;
        font-size: 12px;
    }
    a {
        text-decoration: underline;
        text-underline-offset: 4px;
        color: #EAEDF5;
        &:hover {
            text-decoration: none;
            background-color: #00f7db;
            color: black;
        }
        &:active {
            color: #b3b6c3;
        }
    }
    a:focus {
        outline: 2px solid #b07bff;
        outline-offset: 5px;
    }
    .leadForm {
        .leadFormBody {
            #pardot-form {
                .before-form-content {
                    p {
                        font-size: 16px;
                    }
                }
                .form-fields-wrapper {
                    display: flex;
                    justify-content: flex-start;
                    flex-wrap: wrap;
                    column-gap: 20px;
                    row-gap: 10px;
                    overflow: hidden;
                    .form-field {
                        width: 100%;
                        .field-label {
                            display: none;
                        }
                        input[type=text] {
                            font-family: Overpass;
                            font-size: 15px;
                            height: 40px !important;
                            margin-bottom: 10px !important;
                            padding: 10px;
                            width: 95%;
                            &:focus {
                                outline: 2px solid #b07bff;
                                outline-offset: 5px;
                            }
                        }
                        select {
                            font-family: Overpass;
                            font-size: 15px;
                            height: 62px !important;
                            margin-bottom: 10px !important;
                            padding-left: 10px;
                            padding-right: 10px;
                            color: gray;
                            width: 100%;
                            &:focus {
                                outline: 2px solid #b07bff;
                                outline-offset: 5px;
                            }
                        }
                        textarea {
                            font-family: Overpass !important;
                            font-size: 15px;
                            width: 94%;
                            padding: 10px;
                        }
                    }
                    .hidden {
                        display: none;
                    }
                    .explicit_consent_website_checkbox {
                        width: 100% !important;
                        margin-bottom: -20px;
                            .field-label {
                                display: block;
                                margin-left: 24px;
                                color: white;
                                font-size: 12px;
                            }
                            .value {
                                display: inline-block;
                                position: relative;
                                top: -33px;
                            }
                    }
                    .pd-captcha {
                        display: block !important;
                        margin-bottom: 20px;
                        width: 100% !important;
                    }
                }
                input[type=submit] {
                    --c:#00FFF7;
                    --p:10%;
                    --l:10px;
                    --a:10deg;
                    text-transform: uppercase;
                    padding: 16px 40px;
                    border-radius: 40px;
                    font-weight: 900;
                    font-size: 15px;
                    width: 100%;
                    color: black;
                    text-decoration: none;
                    border: 2px solid black;
                    transition:--c 0.7s,--p 0.5s,--l 0.3s;
                    background:linear-gradient(90deg, var(--c) var(--p),#00FFA0);
                    &:hover{
                        --c:black;
                        --p:100%;
                        --l:100%;
                        color: white;
                        border: 2px solid white;
                        cursor: pointer;
                    }
                    &:active {
                        color: white;
                        background: linear-gradient(90deg, #00AAAA, #0087BF);
                    }
                    &:focus {
                        outline: 2px solid #b07bff;
                        outline-offset: 5px;
                    }
                }
                .after-form-content {
                    height: 100px;
                    br {
                        display: none;
                    }
                    p {
                        font-size: 12px;
                    }
                }
            }
        }
    }
}