Red Rapid Car Wash is committed to be a part of the community and contribute to the community in different ways. Our fundraising program helps to raise funds for your organization.
HOW IT WORKS
A member from your organization signs the agreement and gets the Ultimate Red Wash Cards valued at $20.00
The team of your organization sells the wash cards for $20.00 or at a discount.
At the end of the fundraising event, the member gives back the unsold wash cards.
The member pays $5.00 each for the wash cards sold.
function isEasternDST(date) {
var janOffset = easternOffsetMinutes(new Date(date.getFullYear(), 0, 1));
var nowOffset = easternOffsetMinutes(date);
// DST shifts the clock forward → offset is larger (less negative) than the winter baseline.
return nowOffset > janOffset;
}