#phone-menu {
    position: relative;
    z-index: 1001;
}

#phone-menu a {
    color: #A0A0A0;
    font-family: "Open Sans", sans-serif;
    letter-spacing: 2px;
    font-size: 16px;
    line-height: 22px;
    font-weight: 600;
}

#phone-menu a:after {
    transition: transform .3s ease-out, border-color .3s ease-out;
    position: absolute;
    display: block;
    bottom: -6px;
    left: 0;
    width: 100%;
    transform: scaleX(0);
    border-top: 2px solid #000;
    content: '';
    padding-bottom: inherit;
}

#phone-menu a:hover:after {
    color: #ffffff;
    border-top-color: #f7941d;
    transform: scaleX(1);
}

#footer-registration-form {
    width: 100%;
    padding: 14px 28px;
    font-size: 14px;
}

#footer-registration-form textarea {
    resize: vertical;
    min-height: 44px;
    height: 44px;
}

#footer-registration-form label {
    color: #000000
}

#footer-registration-form .nf-form-title h3 {
    color: #ffffff;
}

#footer-registration-form .nf-response-msg {
    font-size: 18px;
    color: #ffffff;
}

#footer-registration-form .nf-form-fields-required,
#footer-registration-form .nf-error-msg {
    color: #000;
    font-weight: bold;
}

@media all and (max-width: 1000px) {
    #phone-menu .col {
        margin-bottom: 0;
    }

    #phone-menu a {
        position: absolute;
        top: -40px;
        left: 50%;
        transform: translateX(-50%);
        z-index: 2;
    }
}

@media all and (min-width: 1001px) {
    #phone-menu {
        margin-bottom: 15px;
        position: static;
    }

    #phone-menu a {
        position: relative;
    }

    #footer-registration-form nf-fields-wrap {
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    #footer-registration-form nf-fields-wrap nf-field {
        flex: 0 0 30%;
        width: 30%;
    }

    #footer-registration-form .submit-container {
        margin-top: 36px;
    }

    #footer-registration-form .submit-container input[type=button] {
        width: 100%;
        padding: 10px;
        height: 44px;
        border: 1px solid #000;
    }
}

@media all and (min-width: 1260px) {
    #phone-menu .col {
        margin-bottom: 0;
    }

    #phone-menu a {
        position: absolute;
        top: -56px;
        left: 795px;
        z-index: 2;
        transition: top 0.4s ease;
    }

    .small-nav #phone-menu a {
        top: -46px;
    }
}