Consultation services are available either on an hourly basis at a cost of $175 per hour, or on a flat fee basis. The flat fee will be determined in advance based on the type and complexity of the project. Please fill out the below contact information and provide a detailed explanation of your project.
document.addEventListener('DOMContentLoaded', function () {
var numberFields = document.querySelectorAll('.only-number input[type="number"]');
numberFields.forEach(function(field) {
field.addEventListener('input', function(e) {
var value = e.target.value;
e.target.value = value.replace(/[^0-9]/g, '');
});
});
});