$190/hr/side 3 hr initial minimum of $770/side (including initial Admin fee). Thereafter the Fee Structure is $250/hr per side, payable as agreed.
Address:
P.O. Box #572135
Tarzana, CA 91357
Fee Structure:
TBD
Administrative Costs:
$200.00/per side/per hearing event.
Payment Responsibility:
Shared equally per party.
Deposit:
$770/per side
Expenses:
As agreed.
3 working days notice fully credited towards an agreed rescheduled date acceptable to all parties. If the rescheduled date cannot reasonably be agreed by all parties, the deposit is non-refundable.
document.addEventListener("DOMContentLoaded", function () {
// Target each individual card inside your loop grid
const panelistCards = document.querySelectorAll('.panelist-detail-row');
panelistCards.forEach(card => {
// 1. Locate the panelist's name inside this specific card
// Note: Change '.elementor-heading-title' if your name uses a different widget/class
const nameElement = card.querySelector('.elementor-heading-title');
if (nameElement) {
const name = nameElement.textContent.trim();
// 2. Find the email link inside this card (looks for mailto:)
const emailLink = card.querySelector('a[href^="mailto:"]');
if (emailLink) {
emailLink.setAttribute('aria-label', `Email ${name}`);
}
// 3. Find the phone link inside this card (looks for tel:)
const phoneLink = card.querySelector('a[href^="tel:"]');
if (phoneLink) {
phoneLink.setAttribute('aria-label', `Call ${name}`);
}
}
});
});