		<div id="accordion-faq">
			<div class="fyre-accordion">
									<div class="accordion-single" data-aos="fade-up" data-aos-anchor-placement="center-bottom" data-aos-delay="100">
						<div class="accordion-single-inner">
															<div class="accordion-btn">
															<h4 class="m-0">How do I contact you if I miss my delivery appointment?</h4><i class="fas fa-plus"></i>
							</div>
							<div class="accordion-body drk-txt">
								<p>Email our receiving team at warehousecrewphoenix@hensley.com or warehousecrewchandler@hensley.com.</p>
							</div>
						</div>
					</div>
									<div class="accordion-single" data-aos="fade-up" data-aos-anchor-placement="center-bottom" data-aos-delay="200">
						<div class="accordion-single-inner">
															<div class="accordion-btn">
															<h4 class="m-0">Do I need an appointment to deliver inbound freight?</h4><i class="fas fa-plus"></i>
							</div>
							<div class="accordion-body drk-txt">
								<p>Yes, we are appointment based only. Visit www.opendock.com and enter Hensley Beverage to book your appointment.</p>
							</div>
						</div>
					</div>
									<div class="accordion-single" data-aos="fade-up" data-aos-anchor-placement="center-bottom" data-aos-delay="300">
						<div class="accordion-single-inner">
															<div class="accordion-btn">
															<h4 class="m-0">Does Hensley sponsor organizations or events?</h4><i class="fas fa-plus"></i>
							</div>
							<div class="accordion-body drk-txt">
								<p>Yes, we do sponsor select organizations and events. You can visit <a href="/donation-and-sponsorship-request-form/">(link here)</a> to apply.</p>
							</div>
						</div>
					</div>
									<div class="accordion-single" data-aos="fade-up" data-aos-anchor-placement="center-bottom" data-aos-delay="400">
						<div class="accordion-single-inner">
															<div class="accordion-btn">
															<h4 class="m-0">How can I get a product list for all Hensley products?</h4><i class="fas fa-plus"></i>
							</div>
							<div class="accordion-body drk-txt">
								<p>You can ask your Sales Representative, or you can visit our <a href="/portfolio/">(portfolio here)</a>.</p>
							</div>
						</div>
					</div>
									<div class="accordion-single" data-aos="fade-up" data-aos-anchor-placement="center-bottom" data-aos-delay="500">
						<div class="accordion-single-inner">
															<div class="accordion-btn">
															<h4 class="m-0">I don’t know who my rep is, how can I get a hold of someone?</h4><i class="fas fa-plus"></i>
							</div>
							<div class="accordion-body drk-txt">
								<p>You can either call (602) 264-1635 or you can visit https://hensley.com/contact/ and fill out the information at the bottom of the page.</p>
							</div>
						</div>
					</div>
									<div class="accordion-single" data-aos="fade-up" data-aos-anchor-placement="center-bottom" data-aos-delay="600">
						<div class="accordion-single-inner">
															<div class="accordion-btn">
															<h4 class="m-0">How long will it take to get new sign requests back to my account?</h4><i class="fas fa-plus"></i>
							</div>
							<div class="accordion-body drk-txt">
								<p>On average, new signage from the Hensley Beverage Company Graphics Department is completed within two week. However, during peak periods such as the start of baseball, football seasons, and events, turnaround times may be longer. If your request has a specific deadline.</p>
							</div>
						</div>
					</div>
									<div class="accordion-single" data-aos="fade-up" data-aos-anchor-placement="center-bottom" data-aos-delay="700">
						<div class="accordion-single-inner">
															<div class="accordion-btn">
															<h4 class="m-0">Will I still be able to pick up orders at your locations?</h4><i class="fas fa-plus"></i>
							</div>
							<div class="accordion-body drk-txt">
								<p>Yes, pick up is available at the Phoenix Warehouse. They are open for pick-ups at Gate 6 Monday-Friday from 10am to 4pm.</p>
							</div>
						</div>
					</div>
									<div class="accordion-single" data-aos="fade-up" data-aos-anchor-placement="center-bottom" data-aos-delay="800">
						<div class="accordion-single-inner">
															<div class="accordion-btn">
															<h4 class="m-0">When can I expect to get my deliveries?</h4><i class="fas fa-plus"></i>
							</div>
							<div class="accordion-body drk-txt">
								<p>Deliveries are pre-determined based on location and volume. Please reach out to your Sales Representative if you need the product before your scheduled delivery day. Orders need to be placed by 3:00 pm two business days prior to the delivery date.</p>
							</div>
						</div>
					</div>
									<div class="accordion-single" data-aos="fade-up" data-aos-anchor-placement="center-bottom" data-aos-delay="900">
						<div class="accordion-single-inner">
															<div class="accordion-btn">
															<h4 class="m-0">How do I go about getting my draft system serviced and/or cleaned?</h4><i class="fas fa-plus"></i>
							</div>
							<div class="accordion-body drk-txt">
								<p>Please leave a message at (602) 264-1635 ext. 8080</p>
							</div>
						</div>
					</div>
									<div class="accordion-single" data-aos="fade-up" data-aos-anchor-placement="center-bottom" data-aos-delay="1000">
						<div class="accordion-single-inner">
															<div class="accordion-btn">
															<h4 class="m-0">What can I do with my expired product?</h4><i class="fas fa-plus"></i>
							</div>
							<div class="accordion-body drk-txt">
								<p>Please reach out to your sales representative.</p>
							</div>
						</div>
					</div>
							</div>
		</div>
		<!-- FAQ SCRIPT -->
		<script>
			jQuery(document).ready(function($) {
				//TOGGLE CLICK
				$(".accordion-btn").on('click', function() {
					var $this = $(this);
					if($this.hasClass('open-toggle')) {
						$this.removeClass("open-toggle");
						close_accordions();
					} else {
						close_accordions();
						open_this($this);
					}
				});
				function open_this($this) {
					$this.addClass("open-toggle");
					$this.parent().addClass("current-toggle");
					$this.siblings('.accordion-body').slideDown(200);
					$this.find('i').removeClass('fa-solid fa-plus').addClass('fa-solid fa-minus');
				}
				function close_accordions() {
					$(".accordion-btn").removeClass("open-toggle");
					$(".accordion-btn").parent().removeClass("current-toggle");
					$(".accordion-btn").siblings('.accordion-body').slideUp(200);
					$(".accordion-btn").find('i').removeClass('fa-solid fa-minus').addClass('fa-solid fa-plus');
				}
			}); 
		</script>
	{"id":18,"date":"2024-04-04T00:55:42","date_gmt":"2024-04-04T00:55:42","guid":{"rendered":"https:\/\/hensleybev.wpenginepowered.com\/?page_id=18"},"modified":"2024-05-09T19:35:24","modified_gmt":"2024-05-09T19:35:24","slug":"faq","status":"publish","type":"page","link":"https:\/\/hensley.com\/faq\/","title":{"rendered":"FAQ"},"content":{"rendered":"\n","protected":false},"excerpt":{"rendered":"","protected":false},"author":2,"featured_media":661,"parent":0,"menu_order":0,"comment_status":"closed","ping_status":"closed","template":"","meta":{"_acf_changed":false,"footnotes":""},"class_list":["post-18","page","type-page","status-publish","has-post-thumbnail","hentry"],"acf":[],"yoast_head":"<!-- This site is optimized with the Yoast SEO Premium plugin v20.1 (Yoast SEO v25.1) - https:\/\/yoast.com\/wordpress\/plugins\/seo\/ -->\n<title>FAQ &#8226; Hensley Beverage Company<\/title>\n<meta name=\"description\" content=\"Have questions? Let us help! Hensley has provided beverage distribution services for thousands of companies since its inception.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/hensley.com\/faq\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"FAQ\" \/>\n<meta property=\"og:description\" content=\"Have questions? Let us help! Hensley has provided beverage distribution services for thousands of companies since its inception.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/hensley.com\/faq\/\" \/>\n<meta property=\"og:site_name\" content=\"Hensley Beverage Company\" \/>\n<meta property=\"article:modified_time\" content=\"2024-05-09T19:35:24+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/hensley.com\/wp-content\/uploads\/2024\/05\/faqs-header1-scaled.jpg\" \/>\n\t<meta property=\"og:image:width\" content=\"2560\" \/>\n\t<meta property=\"og:image:height\" content=\"546\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/jpeg\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:label1\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data1\" content=\"1 minute\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\/\/schema.org\",\"@graph\":[{\"@type\":\"WebPage\",\"@id\":\"https:\/\/hensley.com\/faq\/\",\"url\":\"https:\/\/hensley.com\/faq\/\",\"name\":\"FAQ &#8226; Hensley Beverage Company\",\"isPartOf\":{\"@id\":\"https:\/\/hensley.com\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\/\/hensley.com\/faq\/#primaryimage\"},\"image\":{\"@id\":\"https:\/\/hensley.com\/faq\/#primaryimage\"},\"thumbnailUrl\":\"https:\/\/hensley.com\/wp-content\/uploads\/2024\/05\/faqs-header1-scaled.jpg\",\"datePublished\":\"2024-04-04T00:55:42+00:00\",\"dateModified\":\"2024-05-09T19:35:24+00:00\",\"description\":\"Have questions? Let us help! Hensley has provided beverage distribution services for thousands of companies since its inception.\",\"breadcrumb\":{\"@id\":\"https:\/\/hensley.com\/faq\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\/\/hensley.com\/faq\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\/\/hensley.com\/faq\/#primaryimage\",\"url\":\"https:\/\/hensley.com\/wp-content\/uploads\/2024\/05\/faqs-header1-scaled.jpg\",\"contentUrl\":\"https:\/\/hensley.com\/wp-content\/uploads\/2024\/05\/faqs-header1-scaled.jpg\",\"width\":2560,\"height\":546},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\/\/hensley.com\/faq\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Home\",\"item\":\"https:\/\/hensley.com\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"FAQ\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\/\/hensley.com\/#website\",\"url\":\"https:\/\/hensley.com\/\",\"name\":\"Hensley Beverage Company\",\"description\":\"Serving Arizona Since 1955\",\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\/\/hensley.com\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"}]}<\/script>\n<!-- \/ Yoast SEO Premium plugin. -->","yoast_head_json":{"title":"FAQ &#8226; Hensley Beverage Company","description":"Have questions? Let us help! Hensley has provided beverage distribution services for thousands of companies since its inception.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/hensley.com\/faq\/","og_locale":"en_US","og_type":"article","og_title":"FAQ","og_description":"Have questions? Let us help! Hensley has provided beverage distribution services for thousands of companies since its inception.","og_url":"https:\/\/hensley.com\/faq\/","og_site_name":"Hensley Beverage Company","article_modified_time":"2024-05-09T19:35:24+00:00","og_image":[{"width":2560,"height":546,"url":"https:\/\/hensley.com\/wp-content\/uploads\/2024\/05\/faqs-header1-scaled.jpg","type":"image\/jpeg"}],"twitter_card":"summary_large_image","twitter_misc":{"Est. reading time":"1 minute"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"WebPage","@id":"https:\/\/hensley.com\/faq\/","url":"https:\/\/hensley.com\/faq\/","name":"FAQ &#8226; Hensley Beverage Company","isPartOf":{"@id":"https:\/\/hensley.com\/#website"},"primaryImageOfPage":{"@id":"https:\/\/hensley.com\/faq\/#primaryimage"},"image":{"@id":"https:\/\/hensley.com\/faq\/#primaryimage"},"thumbnailUrl":"https:\/\/hensley.com\/wp-content\/uploads\/2024\/05\/faqs-header1-scaled.jpg","datePublished":"2024-04-04T00:55:42+00:00","dateModified":"2024-05-09T19:35:24+00:00","description":"Have questions? Let us help! Hensley has provided beverage distribution services for thousands of companies since its inception.","breadcrumb":{"@id":"https:\/\/hensley.com\/faq\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/hensley.com\/faq\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/hensley.com\/faq\/#primaryimage","url":"https:\/\/hensley.com\/wp-content\/uploads\/2024\/05\/faqs-header1-scaled.jpg","contentUrl":"https:\/\/hensley.com\/wp-content\/uploads\/2024\/05\/faqs-header1-scaled.jpg","width":2560,"height":546},{"@type":"BreadcrumbList","@id":"https:\/\/hensley.com\/faq\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/hensley.com\/"},{"@type":"ListItem","position":2,"name":"FAQ"}]},{"@type":"WebSite","@id":"https:\/\/hensley.com\/#website","url":"https:\/\/hensley.com\/","name":"Hensley Beverage Company","description":"Serving Arizona Since 1955","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/hensley.com\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"}]}},"_links":{"self":[{"href":"https:\/\/hensley.com\/wp-json\/wp\/v2\/pages\/18","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/hensley.com\/wp-json\/wp\/v2\/pages"}],"about":[{"href":"https:\/\/hensley.com\/wp-json\/wp\/v2\/types\/page"}],"author":[{"embeddable":true,"href":"https:\/\/hensley.com\/wp-json\/wp\/v2\/users\/2"}],"replies":[{"embeddable":true,"href":"https:\/\/hensley.com\/wp-json\/wp\/v2\/comments?post=18"}],"version-history":[{"count":0,"href":"https:\/\/hensley.com\/wp-json\/wp\/v2\/pages\/18\/revisions"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/hensley.com\/wp-json\/wp\/v2\/media\/661"}],"wp:attachment":[{"href":"https:\/\/hensley.com\/wp-json\/wp\/v2\/media?parent=18"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}