Showing source for: https://bowlcentral.co.uk/fareham-bowl-central/
Duration: 0.267179s
Server: Apache

<!-- This page is cached by the Hummingbird Performance plugin v3.8.1 - https://wordpress.org/plugins/hummingbird-performance/. --><!DOCTYPE html>
<html lang="en">

<head>
  <meta content="text/html; charset=UTF-8" />
  <title> 
      Bowl Central - Fareham Bowl Central    </title>

  <link rel="apple-touch-icon" sizes="180x180" href="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/favicon/apple-touch-icon.png">
<link rel="icon" type="image/png" sizes="32x32" href="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/favicon/favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/favicon/favicon-16x16.png">
<link rel="manifest" href="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/favicon/site.webmanifest">
<link rel="mask-icon" href="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/favicon/safari-pinned-tab.svg" color="#5bbad5">
<meta name="msapplication-TileColor" content="#da532c">
<meta name="theme-color" content="#ffffff">
  <link rel="preload" href="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/assets/fonts/full_sans_lc_bold_italic-webfont.woff2" as="font" type="font/woff2" crossorigin="anonymous">
  <link rel="preload" href="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/assets/fonts/full_sans_lc_bold-webfont.woff2" as="font" type="font/woff2" crossorigin="anonymous">
  <link rel="preload" href="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/assets/fonts/full_sans_lc_book_italic-webfont.woff2" as="font" type="font/woff2" crossorigin="anonymous">
  <link rel="preload" href="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/assets/fonts/full_sans_lc_book-webfont.woff2" as="font" type="font/woff2" crossorigin="anonymous">
  <link rel="preload" href="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/assets/fonts/neonledlight_2-webfont.woff2" as="font" type="font/woff2" crossorigin="anonymous">
  
  <meta name="viewport" content="minimal-ui, width=device-width, initial-scale=1, maximum-scale=5">
  
  <!-- Styles & Scripts enqueued in Functions -->

  	<link rel='archives' title='November 2022' href='https://bowlcentral.co.uk/2022/11/' />
<meta name='robots' content='index, follow, max-image-preview:large, max-snippet:-1, max-video-preview:-1' />
<script type="text/javascript">
    (function() {
  var pvData = {"source":"Direct","referrer":"https:\/\/bowlcentral.co.uk\/","visitor_type":"logged out","visitor_login_status":"logged out","visitor_id":0,"page_title":"Fareham Bowl Central | Bowl Central","post_type":"page","post_type_with_prefix":"single page","post_categories":"","post_tags":"","post_author":"Kurt Standish","post_full_date":"15 December 2022","post_year":"2022","post_month":"12","post_day":"15","is_front_page":0,"is_home":1,"search_query":"","search_results_count":0};
  var body = {
    url: encodeURIComponent(window.location.href),
    referrer: encodeURIComponent(document.referrer)
  };

  function makePostRequest(e,t){var n=[];if(t.body){for(var o in t.body)n.push(encodeURIComponent(o)+"="+encodeURIComponent(t.body[o]));t.body=n.join("&")}return window.fetch?new Promise(n=>{var o={method:"POST",headers:{"Content-Type":"application/x-www-form-urlencoded"},redirect:"follow",body:{},...t};window.fetch(e,o).then(e=>{n(e.text())})}):new Promise(t=>{var o;"undefined"==typeof XMLHttpRequest&&t(null),(o=new XMLHttpRequest).open("POST",e,!0),o.onreadystatechange=function(){4==o.readyState&&200==o.status&&t(o.responseText)},o.setRequestHeader("Content-type","application/x-www-form-urlencoded"),o.send(n.join("&"))})}
  function observeAjaxCartActions(e){new PerformanceObserver(function(t){for(var n=t.getEntries(),r=0;r<n.length;r++)["xmlhttprequest","fetch"].includes(n[r].initiatorType)&&['=get_refreshed_fragments', 'add_to_cart'].some(p => n[r].name.includes(p))&&fetchCart(e)}).observe({entryTypes:["resource"]})};

  function fetchCart(adapter) {
    makePostRequest("//bowlcentral.co.uk/index.php?plugin=optimonk&action=cartData", { body })
      .then((response) => {
        var data = JSON.parse(response);
        setCartData(data, adapter);
      })
  }

  function setCartData(cartData, adapter) {
    adapter.Cart.clear();

    cartData.cart.forEach(cartItem => {
      adapter.Cart.add(cartItem.sku, {quantity: cartItem.quantity, price: cartItem.price, name: cartItem.name});
    });
    Object.keys(cartData.avs).forEach((key, value) => {
      adapter.attr(`wp_${key}`, cartData.avs[key]);
    })
  }

  function setAssocData(assocData, adapter) {
    Object.keys(assocData).forEach((key) => {
      adapter.attr(`wp_${key}`, assocData[key]);
    })
  }

  var RuleHandler = {
    hasVisitorCartRules: (campaignMeta) => {
      return !!(campaignMeta.rules.visitorCart || campaignMeta.rules.visitorCartRevamp);
    },
    hasVisitorAttributeRule: (campaignMeta) => {
      return !!campaignMeta.rules.visitorAttribute;
    }
  }

  document.querySelector('html').addEventListener('optimonk#embedded-campaigns-init', function(e) {
    var campaignsData = e.parameters;

    if (!campaignsData.length) {
      return;
    }

    var adapter = window.OptiMonkEmbedded.Visitor.createAdapter();
    var hasCartRule = false;
    var hasAttributeRule = false;

    campaignsData.forEach((campaignMetaData) => {
      hasCartRule = hasCartRule || RuleHandler.hasVisitorCartRules(campaignMetaData);
      hasAttributeRule = hasAttributeRule || RuleHandler.hasVisitorAttributeRule(campaignMetaData);
    });

    setAssocData(pvData, adapter);

    if (hasCartRule) {
      observeAjaxCartActions(adapter);
      fetchCart(adapter);
    }

    if (hasAttributeRule) {
      makePostRequest("//bowlcentral.co.uk/index.php?plugin=optimonk&action=productData", { body })
        .then((response) => {
          var data = JSON.parse(response);
          setAssocData(data, adapter);
        })
    }
  });

  document.querySelector('html').addEventListener('optimonk#campaigns_initialized', function () {
    if (!OptiMonk.campaigns) {
      return;
    }

    var adapter = window.OptiMonk.Visitor.createAdapter();

    setAssocData(pvData, adapter);

    if (OptiMonk.campaigns.filter(campaign => campaign.hasVisitorCartRules()).length) {
      observeAjaxCartActions(adapter);
      fetchCart(adapter);
    }

    if (OptiMonk.campaigns.filter(campaign => campaign.hasVisitorAttributeRules()).length) {
      makePostRequest("//bowlcentral.co.uk/index.php?plugin=optimonk&action=productData", { body })
        .then((response) => {
          var data = JSON.parse(response);
          setAssocData(data, adapter);
        });
    }
  });
}());

</script>
<script type="text/javascript" src="https://onsite.optimonk.com/script.js?account=209726" async></script>
	<!-- This site is optimized with the Yoast SEO plugin v22.7 - https://yoast.com/wordpress/plugins/seo/ -->
	<link rel="canonical" href="https://bowlcentral.co.uk/fareham-bowl-central/" />
	<meta property="og:locale" content="en_GB" />
	<meta property="og:type" content="article" />
	<meta property="og:title" content="Fareham Bowl Central - Bowl Central" />
	<meta property="og:description" content="BOWL CENTRAL FAREHAM IS LOCATED OPPOSITE MARKET QUAY CARPARK.FREE PARKING AFTER 6PM EVERY DAY!!" />
	<meta property="og:url" content="https://bowlcentral.co.uk/fareham-bowl-central/" />
	<meta property="og:site_name" content="Bowl Central" />
	<meta property="article:modified_time" content="2024-03-29T13:48:42+00:00" />
	<meta property="og:image" content="https://bowlcentral.co.uk/wp-content/uploads/2022/11/Screenshot-2023-04-12-at-10.37.50.png" />
	<meta name="twitter:card" content="summary_large_image" />
	<meta name="twitter:label1" content="Estimated reading time" />
	<meta name="twitter:data1" content="3 minutes" />
	<script type="application/ld+json" class="yoast-schema-graph">{"@context":"https://schema.org","@graph":[{"@type":"WebPage","@id":"https://bowlcentral.co.uk/fareham-bowl-central/","url":"https://bowlcentral.co.uk/fareham-bowl-central/","name":"Fareham Bowl Central - Bowl Central","isPartOf":{"@id":"https://bowlcentral.co.uk/#website"},"primaryImageOfPage":{"@id":"https://bowlcentral.co.uk/fareham-bowl-central/#primaryimage"},"image":{"@id":"https://bowlcentral.co.uk/fareham-bowl-central/#primaryimage"},"thumbnailUrl":"https://bowlcentral.co.uk/wp-content/uploads/2022/11/Screenshot-2023-04-12-at-10.37.50.png","datePublished":"2022-12-15T16:35:47+00:00","dateModified":"2024-03-29T13:48:42+00:00","breadcrumb":{"@id":"https://bowlcentral.co.uk/fareham-bowl-central/#breadcrumb"},"inLanguage":"en-GB","potentialAction":[{"@type":"ReadAction","target":["https://bowlcentral.co.uk/fareham-bowl-central/"]}]},{"@type":"ImageObject","inLanguage":"en-GB","@id":"https://bowlcentral.co.uk/fareham-bowl-central/#primaryimage","url":"https://bowlcentral.co.uk/wp-content/uploads/2022/11/Screenshot-2023-04-12-at-10.37.50.png?quality=100","contentUrl":"https://bowlcentral.co.uk/wp-content/uploads/2022/11/Screenshot-2023-04-12-at-10.37.50.png?quality=100","width":2142,"height":1578},{"@type":"BreadcrumbList","@id":"https://bowlcentral.co.uk/fareham-bowl-central/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https://bowlcentral.co.uk/"},{"@type":"ListItem","position":2,"name":"Fareham Bowl Central"}]},{"@type":"WebSite","@id":"https://bowlcentral.co.uk/#website","url":"https://bowlcentral.co.uk/","name":"Bowl Central","description":"Cocktail bar, Lounge and Lanes Play. Win. Prizes!","potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https://bowlcentral.co.uk/?s={search_term_string}"},"query-input":"required name=search_term_string"}],"inLanguage":"en-GB"}]}</script>
	<!-- / Yoast SEO plugin. -->


<link rel='dns-prefetch' href='//fonts.googleapis.com' />
<link rel='dns-prefetch' href='//hb.wpmucdn.com' />
<link href='//hb.wpmucdn.com' rel='preconnect' />
<link href='http://fonts.googleapis.com' rel='preconnect' />
<link href='//fonts.gstatic.com' crossorigin='' rel='preconnect' />
<link rel='stylesheet' id='wp-block-library-css' href='https://hb.wpmucdn.com/bowlcentral.co.uk/5f521623-56b5-4086-bfa2-f6199f4172f8.css' media='all' />
<style id='wp-block-library-theme-inline-css'>
.wp-block-audio figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-audio figcaption{color:#ffffffa6}.wp-block-audio{margin:0 0 1em}.wp-block-code{border:1px solid #ccc;border-radius:4px;font-family:Menlo,Consolas,monaco,monospace;padding:.8em 1em}.wp-block-embed figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-embed figcaption{color:#ffffffa6}.wp-block-embed{margin:0 0 1em}.blocks-gallery-caption{color:#555;font-size:13px;text-align:center}.is-dark-theme .blocks-gallery-caption{color:#ffffffa6}.wp-block-image figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-image figcaption{color:#ffffffa6}.wp-block-image{margin:0 0 1em}.wp-block-pullquote{border-bottom:4px solid;border-top:4px solid;color:currentColor;margin-bottom:1.75em}.wp-block-pullquote cite,.wp-block-pullquote footer,.wp-block-pullquote__citation{color:currentColor;font-size:.8125em;font-style:normal;text-transform:uppercase}.wp-block-quote{border-left:.25em solid;margin:0 0 1.75em;padding-left:1em}.wp-block-quote cite,.wp-block-quote footer{color:currentColor;font-size:.8125em;font-style:normal;position:relative}.wp-block-quote.has-text-align-right{border-left:none;border-right:.25em solid;padding-left:0;padding-right:1em}.wp-block-quote.has-text-align-center{border:none;padding-left:0}.wp-block-quote.is-large,.wp-block-quote.is-style-large,.wp-block-quote.is-style-plain{border:none}.wp-block-search .wp-block-search__label{font-weight:700}.wp-block-search__button{border:1px solid #ccc;padding:.375em .625em}:where(.wp-block-group.has-background){padding:1.25em 2.375em}.wp-block-separator.has-css-opacity{opacity:.4}.wp-block-separator{border:none;border-bottom:2px solid;margin-left:auto;margin-right:auto}.wp-block-separator.has-alpha-channel-opacity{opacity:1}.wp-block-separator:not(.is-style-wide):not(.is-style-dots){width:100px}.wp-block-separator.has-background:not(.is-style-dots){border-bottom:none;height:1px}.wp-block-separator.has-background:not(.is-style-wide):not(.is-style-dots){height:2px}.wp-block-table{margin:0 0 1em}.wp-block-table td,.wp-block-table th{word-break:normal}.wp-block-table figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-table figcaption{color:#ffffffa6}.wp-block-video figcaption{color:#555;font-size:13px;text-align:center}.is-dark-theme .wp-block-video figcaption{color:#ffffffa6}.wp-block-video{margin:0 0 1em}.wp-block-template-part.has-background{margin-bottom:0;margin-top:0;padding:1.25em 2.375em}
</style>
<style id='classic-theme-styles-inline-css'>
/*! This file is auto-generated */
.wp-block-button__link{color:#fff;background-color:#32373c;border-radius:9999px;box-shadow:none;text-decoration:none;padding:calc(.667em + 2px) calc(1.333em + 2px);font-size:1.125em}.wp-block-file__button{background:#32373c;color:#fff;text-decoration:none}
</style>
<style id='global-styles-inline-css'>
body{--wp--preset--color--black: #000000;--wp--preset--color--cyan-bluish-gray: #abb8c3;--wp--preset--color--white: #FFFFFF;--wp--preset--color--pale-pink: #f78da7;--wp--preset--color--vivid-red: #cf2e2e;--wp--preset--color--luminous-vivid-orange: #ff6900;--wp--preset--color--luminous-vivid-amber: #fcb900;--wp--preset--color--light-green-cyan: #7bdcb5;--wp--preset--color--vivid-green-cyan: #00d084;--wp--preset--color--pale-cyan-blue: #8ed1fc;--wp--preset--color--vivid-cyan-blue: #0693e3;--wp--preset--color--vivid-purple: #9b51e0;--wp--preset--color--transparent: #FFFFFF00;--wp--preset--color--neon-blue: #00CAFA;--wp--preset--color--neon-pink: #D70980;--wp--preset--color--neon-green: #09D7B7;--wp--preset--color--neon-orange: #FFB100;--wp--preset--color--neon-purple: #4809D7;--wp--preset--color--neon-yellow: #FFD800;--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple: linear-gradient(135deg,rgba(6,147,227,1) 0%,rgb(155,81,224) 100%);--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan: linear-gradient(135deg,rgb(122,220,180) 0%,rgb(0,208,130) 100%);--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange: linear-gradient(135deg,rgba(252,185,0,1) 0%,rgba(255,105,0,1) 100%);--wp--preset--gradient--luminous-vivid-orange-to-vivid-red: linear-gradient(135deg,rgba(255,105,0,1) 0%,rgb(207,46,46) 100%);--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray: linear-gradient(135deg,rgb(238,238,238) 0%,rgb(169,184,195) 100%);--wp--preset--gradient--cool-to-warm-spectrum: linear-gradient(135deg,rgb(74,234,220) 0%,rgb(151,120,209) 20%,rgb(207,42,186) 40%,rgb(238,44,130) 60%,rgb(251,105,98) 80%,rgb(254,248,76) 100%);--wp--preset--gradient--blush-light-purple: linear-gradient(135deg,rgb(255,206,236) 0%,rgb(152,150,240) 100%);--wp--preset--gradient--blush-bordeaux: linear-gradient(135deg,rgb(254,205,165) 0%,rgb(254,45,45) 50%,rgb(107,0,62) 100%);--wp--preset--gradient--luminous-dusk: linear-gradient(135deg,rgb(255,203,112) 0%,rgb(199,81,192) 50%,rgb(65,88,208) 100%);--wp--preset--gradient--pale-ocean: linear-gradient(135deg,rgb(255,245,203) 0%,rgb(182,227,212) 50%,rgb(51,167,181) 100%);--wp--preset--gradient--electric-grass: linear-gradient(135deg,rgb(202,248,128) 0%,rgb(113,206,126) 100%);--wp--preset--gradient--midnight: linear-gradient(135deg,rgb(2,3,129) 0%,rgb(40,116,252) 100%);--wp--preset--font-size--small: 13px;--wp--preset--font-size--medium: 20px;--wp--preset--font-size--large: 36px;--wp--preset--font-size--x-large: 42px;--wp--preset--spacing--20: 0.44rem;--wp--preset--spacing--30: 0.67rem;--wp--preset--spacing--40: 1rem;--wp--preset--spacing--50: 1.5rem;--wp--preset--spacing--60: 2.25rem;--wp--preset--spacing--70: 3.38rem;--wp--preset--spacing--80: 5.06rem;--wp--preset--shadow--natural: 6px 6px 9px rgba(0, 0, 0, 0.2);--wp--preset--shadow--deep: 12px 12px 50px rgba(0, 0, 0, 0.4);--wp--preset--shadow--sharp: 6px 6px 0px rgba(0, 0, 0, 0.2);--wp--preset--shadow--outlined: 6px 6px 0px -3px rgba(255, 255, 255, 1), 6px 6px rgba(0, 0, 0, 1);--wp--preset--shadow--crisp: 6px 6px 0px rgba(0, 0, 0, 1);}:where(.is-layout-flex){gap: 0.5em;}:where(.is-layout-grid){gap: 0.5em;}body .is-layout-flex{display: flex;}body .is-layout-flex{flex-wrap: wrap;align-items: center;}body .is-layout-flex > *{margin: 0;}body .is-layout-grid{display: grid;}body .is-layout-grid > *{margin: 0;}:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}.has-black-color{color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-color{color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-color{color: var(--wp--preset--color--white) !important;}.has-pale-pink-color{color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-color{color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-color{color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-color{color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-color{color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-color{color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-color{color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-color{color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-color{color: var(--wp--preset--color--vivid-purple) !important;}.has-black-background-color{background-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-background-color{background-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-background-color{background-color: var(--wp--preset--color--white) !important;}.has-pale-pink-background-color{background-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-background-color{background-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-background-color{background-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-background-color{background-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-background-color{background-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-background-color{background-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-background-color{background-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-background-color{background-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-background-color{background-color: var(--wp--preset--color--vivid-purple) !important;}.has-black-border-color{border-color: var(--wp--preset--color--black) !important;}.has-cyan-bluish-gray-border-color{border-color: var(--wp--preset--color--cyan-bluish-gray) !important;}.has-white-border-color{border-color: var(--wp--preset--color--white) !important;}.has-pale-pink-border-color{border-color: var(--wp--preset--color--pale-pink) !important;}.has-vivid-red-border-color{border-color: var(--wp--preset--color--vivid-red) !important;}.has-luminous-vivid-orange-border-color{border-color: var(--wp--preset--color--luminous-vivid-orange) !important;}.has-luminous-vivid-amber-border-color{border-color: var(--wp--preset--color--luminous-vivid-amber) !important;}.has-light-green-cyan-border-color{border-color: var(--wp--preset--color--light-green-cyan) !important;}.has-vivid-green-cyan-border-color{border-color: var(--wp--preset--color--vivid-green-cyan) !important;}.has-pale-cyan-blue-border-color{border-color: var(--wp--preset--color--pale-cyan-blue) !important;}.has-vivid-cyan-blue-border-color{border-color: var(--wp--preset--color--vivid-cyan-blue) !important;}.has-vivid-purple-border-color{border-color: var(--wp--preset--color--vivid-purple) !important;}.has-vivid-cyan-blue-to-vivid-purple-gradient-background{background: var(--wp--preset--gradient--vivid-cyan-blue-to-vivid-purple) !important;}.has-light-green-cyan-to-vivid-green-cyan-gradient-background{background: var(--wp--preset--gradient--light-green-cyan-to-vivid-green-cyan) !important;}.has-luminous-vivid-amber-to-luminous-vivid-orange-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-amber-to-luminous-vivid-orange) !important;}.has-luminous-vivid-orange-to-vivid-red-gradient-background{background: var(--wp--preset--gradient--luminous-vivid-orange-to-vivid-red) !important;}.has-very-light-gray-to-cyan-bluish-gray-gradient-background{background: var(--wp--preset--gradient--very-light-gray-to-cyan-bluish-gray) !important;}.has-cool-to-warm-spectrum-gradient-background{background: var(--wp--preset--gradient--cool-to-warm-spectrum) !important;}.has-blush-light-purple-gradient-background{background: var(--wp--preset--gradient--blush-light-purple) !important;}.has-blush-bordeaux-gradient-background{background: var(--wp--preset--gradient--blush-bordeaux) !important;}.has-luminous-dusk-gradient-background{background: var(--wp--preset--gradient--luminous-dusk) !important;}.has-pale-ocean-gradient-background{background: var(--wp--preset--gradient--pale-ocean) !important;}.has-electric-grass-gradient-background{background: var(--wp--preset--gradient--electric-grass) !important;}.has-midnight-gradient-background{background: var(--wp--preset--gradient--midnight) !important;}.has-small-font-size{font-size: var(--wp--preset--font-size--small) !important;}.has-medium-font-size{font-size: var(--wp--preset--font-size--medium) !important;}.has-large-font-size{font-size: var(--wp--preset--font-size--large) !important;}.has-x-large-font-size{font-size: var(--wp--preset--font-size--x-large) !important;}
.wp-block-navigation a:where(:not(.wp-element-button)){color: inherit;}
:where(.wp-block-post-template.is-layout-flex){gap: 1.25em;}:where(.wp-block-post-template.is-layout-grid){gap: 1.25em;}
:where(.wp-block-columns.is-layout-flex){gap: 2em;}:where(.wp-block-columns.is-layout-grid){gap: 2em;}
.wp-block-pullquote{font-size: 1.5em;line-height: 1.6;}
</style>
<link rel='stylesheet' id='wphb-1-css' href='https://hb.wpmucdn.com/bowlcentral.co.uk/05b70604-b6ae-4d14-a7d1-1e3286e5df9c.css' media='all' />
<link rel="preload" as="style" href="https://fonts.googleapis.com/css?family=Crimson+Text%3A400%2C700%7CMontserrat%3A300%2C400%2C700&#038;display=swap&#038;ver=1" /><link rel='stylesheet' id='google-font-css' href='https://fonts.googleapis.com/css?family=Crimson+Text%3A400%2C700%7CMontserrat%3A300%2C400%2C700&#038;display=swap&#038;ver=1' media='print' onload='this.media=&#34;all&#34;' />
<script defer src="https://hb.wpmucdn.com/bowlcentral.co.uk/a0aa3c80-b2aa-414e-a50d-295b4372ae19.js" id="wphb-2-js"></script>
<link rel="https://api.w.org/" href="https://bowlcentral.co.uk/wp-json/" /><link rel="alternate" type="application/json" href="https://bowlcentral.co.uk/wp-json/wp/v2/pages/785" /><link rel='shortlink' href='https://bowlcentral.co.uk/?p=785' />
<link rel="alternate" type="application/json+oembed" href="https://bowlcentral.co.uk/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fbowlcentral.co.uk%2Ffareham-bowl-central%2F" />
<link rel="alternate" type="text/xml+oembed" href="https://bowlcentral.co.uk/wp-json/oembed/1.0/embed?url=https%3A%2F%2Fbowlcentral.co.uk%2Ffareham-bowl-central%2F&#038;format=xml" />
<script type="text/javascript" src="https://secure.24-visionaryenterprise.com/js/784747.js" ></script>
<noscript><img alt="" src="https://secure.24-visionaryenterprise.com/784747.png" style="display:none;" /></noscript><!-- SEO meta tags powered by SmartCrawl https://wpmudev.com/project/smartcrawl-wordpress-seo/ -->
<link rel="canonical" href="https://bowlcentral.co.uk/fareham-bowl-central/" />
<meta name="description" content="Fareham BOWL CENTRAL FAREHAM IS LOCATED OPPOSITE MARKET QUAY CARPARK.FREE PARKING AFTER 6PM EVERY DAY!!" />
<script type="application/ld+json">{"@context":"https:\/\/schema.org","@graph":[{"@type":"Organization","@id":"https:\/\/bowlcentral.co.uk\/#schema-publishing-organization","url":"https:\/\/bowlcentral.co.uk","name":"Bowl Central","logo":{"@type":"ImageObject","@id":"https:\/\/bowlcentral.co.uk\/#schema-organization-logo","url":"https:\/\/bowlcentral.co.uk\/wp-content\/uploads\/2022\/12\/Bowl-central.png","height":60,"width":60}},{"@type":"WebSite","@id":"https:\/\/bowlcentral.co.uk\/#schema-website","url":"https:\/\/bowlcentral.co.uk","name":"Bowl Central","encoding":"UTF-8","potentialAction":{"@type":"SearchAction","target":"https:\/\/bowlcentral.co.uk\/search\/{search_term_string}\/","query-input":"required name=search_term_string"},"image":{"@type":"ImageObject","@id":"https:\/\/bowlcentral.co.uk\/#schema-site-logo","url":"https:\/\/bowlcentral.co.uk\/wp-content\/uploads\/2022\/12\/Bowl-central.png?quality=100","height":837,"width":809}},{"@type":"BreadcrumbList","@id":"https:\/\/bowlcentral.co.uk\/fareham-bowl-central?page&pagename=fareham-bowl-central\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Home","item":"https:\/\/bowlcentral.co.uk"},{"@type":"ListItem","position":2,"name":"Fareham Bowl Central"}]},{"@type":"Person","@id":"https:\/\/bowlcentral.co.uk\/author\/k-standishbowlcentral-co-uk\/#schema-author","name":"Kurt Standish","url":"https:\/\/bowlcentral.co.uk\/author\/k-standishbowlcentral-co-uk\/"},{"@type":"WebPage","@id":"https:\/\/bowlcentral.co.uk\/fareham-bowl-central\/#schema-webpage","isPartOf":{"@id":"https:\/\/bowlcentral.co.uk\/#schema-website"},"publisher":{"@id":"https:\/\/bowlcentral.co.uk\/#schema-publishing-organization"},"url":"https:\/\/bowlcentral.co.uk\/fareham-bowl-central\/","hasPart":[{"@type":"SiteNavigationElement","@id":"https:\/\/bowlcentral.co.uk\/fareham-bowl-central\/#schema-nav-element-73","name":"Home","url":"https:\/\/bowlcentral.co.uk\/"},{"@type":"SiteNavigationElement","@id":"https:\/\/bowlcentral.co.uk\/fareham-bowl-central\/#schema-nav-element-642","name":"","url":"https:\/\/bowlcentral.co.uk\/bowl-central-locations\/"},{"@type":"SiteNavigationElement","@id":"https:\/\/bowlcentral.co.uk\/fareham-bowl-central\/#schema-nav-element-641","name":"Game Card","url":"https:\/\/bowlcentral.co.uk\/bowl-central-game-card\/"},{"@type":"SiteNavigationElement","@id":"https:\/\/bowlcentral.co.uk\/fareham-bowl-central\/#schema-nav-element-643","name":"","url":"https:\/\/bowlcentral.co.uk\/contact-us\/"}]},{"@type":"Article","mainEntityOfPage":{"@id":"https:\/\/bowlcentral.co.uk\/fareham-bowl-central\/#schema-webpage"},"author":{"@id":"https:\/\/bowlcentral.co.uk\/author\/k-standishbowlcentral-co-uk\/#schema-author"},"publisher":{"@id":"https:\/\/bowlcentral.co.uk\/#schema-publishing-organization"},"dateModified":"2024-03-29T13:48:42","datePublished":"2022-12-15T16:35:47","headline":"Fareham Bowl Central | Bowl Central","description":"Fareham BOWL CENTRAL FAREHAM IS LOCATED OPPOSITE MARKET QUAY CARPARK.FREE PARKING AFTER 6PM EVERY DAY!!","name":"Fareham Bowl Central"}]}</script>
<meta property="og:type" content="article" />
<meta property="og:url" content="https://bowlcentral.co.uk/fareham-bowl-central/" />
<meta property="og:title" content="Fareham Bowl Central | Bowl Central" />
<meta property="og:description" content="Fareham BOWL CENTRAL FAREHAM IS LOCATED OPPOSITE MARKET QUAY CARPARK.FREE PARKING AFTER 6PM EVERY DAY!!" />
<meta property="og:image" content="https://bowlcentral.co.uk/wp-content/uploads/2022/11/Screenshot-2023-04-12-at-10.37.50.png" />
<meta property="og:image:width" content="2142" />
<meta property="og:image:height" content="1578" />
<meta property="article:published_time" content="2022-12-15T16:35:47" />
<meta property="article:author" content="Kurt Standish" />
<meta name="twitter:card" content="summary_large_image" />
<meta name="twitter:title" content="Fareham Bowl Central | Bowl Central" />
<meta name="twitter:description" content="Fareham BOWL CENTRAL FAREHAM IS LOCATED OPPOSITE MARKET QUAY CARPARK.FREE PARKING AFTER 6PM EVERY DAY!!" />
<meta name="twitter:image" content="https://bowlcentral.co.uk/wp-content/uploads/2022/11/Screenshot-2023-04-12-at-10.37.50.png" />
<!-- /SEO -->
		<script>
			document.documentElement.className = document.documentElement.className.replace('no-js', 'js');
		</script>
				<style>
			.no-js img.lazyload {
				display: none;
			}

			figure.wp-block-image img.lazyloading {
				min-width: 150px;
			}

						.lazyload, .lazyloading {
				opacity: 0;
			}

			.lazyloaded {
				opacity: 1;
				transition: opacity 400ms;
				transition-delay: 0ms;
			}

					</style>
		<meta name="bmi-version" content="1.4.5" /><style type="text/css">.broken_link, a.broken_link {
	text-decoration: line-through;
}</style><link rel="icon" href="https://bowlcentral.co.uk/wp-content/uploads/2023/01/cropped-Bowl-Central-Logo-Grey-32x32.jpg?quality=100" sizes="32x32" />
<link rel="icon" href="https://bowlcentral.co.uk/wp-content/uploads/2023/01/cropped-Bowl-Central-Logo-Grey-192x192.jpg?quality=100" sizes="192x192" />
<link rel="apple-touch-icon" href="https://bowlcentral.co.uk/wp-content/uploads/2023/01/cropped-Bowl-Central-Logo-Grey-180x180.jpg?quality=100" />
<meta name="msapplication-TileImage" content="https://bowlcentral.co.uk/wp-content/uploads/2023/01/cropped-Bowl-Central-Logo-Grey-270x270.jpg?quality=100" />
</head>

<body>
  <div class="site">
    <header class="main-header">
      <div class="inner">
        <div class="logo">
          <a href="https://bowlcentral.co.uk" title="Bowl Central">
            <img data-src="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/images/bowl-central.svg" alt="Bowl Central" width="100%" height="auto" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" class="lazyload"><noscript><img src="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/images/bowl-central.svg" alt="Bowl Central" width="100%" height="auto"></noscript>
          </a>
        </div>
        <div class="nav">
          <a href="https://bowlcentral.co.uk/bowl-central-locations/" title="Bowl Central Locations">Locations</a>
          <ul class="social">
            <li><a href="https://www.facebook.com/bowlcentraluk/" title="follow Bowl Central on Facebook" rel="nofollow" target="_blank"  >
              <svg version="1.1" id="Layer_facebook" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
                   viewBox="0 0 56.7 56.7" style="enable-background:new 0 0 56.7 56.7;" xml:space="preserve">
                <path class="facebook" d="M34,54.9H21.6V32.8h-7.9V21h7.9v-5.7c0-8.4,5-13.6,13.1-13.6c2.4,0,4.8,0.2,7.2,0.6L43,2.6v10.2l-5.4,0
                  c-0.2,0-0.5,0-0.7,0c-1.8,0.2-3.1,1.8-2.9,3.5l0,4.8h8.8L41,32.8H34V54.9z M24.2,52.3h7.1V30.2h7.4l1-6.5h-8.4v-7.2
                  c-0.3-3.1,2-5.9,5.2-6.3c0.4,0,0.8,0,1.2,0h2.5V4.8c-1.9-0.3-3.8-0.4-5.7-0.4c-6.6,0-10.4,4-10.4,11v8.3h-7.9v6.5h7.9V52.3z"/>
                </svg>
              </a>
            </li>
            <li>
              <a href="https://www.instagram.com/bowlcentraluk/" title="follow Bowl Central on Instagram" rel="nofollow" target="_blank" >
                <svg version="1.1" id="Layer_insta" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
                   viewBox="0 0 56.7 56.7" style="enable-background:new 0 0 56.7 56.7;" xml:space="preserve">
                <path class="instagram" d="M28.4,54.2c-4,0-8-0.1-10-0.2c-4,0.2-8-1.5-11-4.3C4.4,46.6,2.9,42.6,3,38.4c-0.2-4-0.2-16.2,0-20.2
                  C2.9,14.1,4.4,10.1,7.3,7c3.1-2.9,7-4.4,11.2-4.4c3.9-0.2,15.9-0.2,19.9,0c4.1-0.1,8,1.5,11,4.3c2.9,3.1,4.4,7.1,4.3,11.3
                  c0.2,4.1,0.2,16.1,0,20.3c0.1,4.1-1.4,8.1-4.3,11.1c-3,2.9-7.2,4.5-11.2,4.4C36.3,54.2,32.3,54.2,28.4,54.2z M18.4,51.2
                  c4.1,0.2,15.8,0.2,19.8,0c3.5,0,6.8-1.2,9.2-3.6c2.3-2.5,3.5-5.8,3.4-9.2c0.2-4.2,0.2-16.2,0-20.1l0-0.1c0.1-3.4-1.2-6.7-3.5-9.2
                  c-2.4-2.3-5.7-3.5-9-3.5c-4.1-0.2-15.8-0.2-19.8,0C15,5.4,11.8,6.7,9.3,9c-2.3,2.5-3.5,5.7-3.4,9.2c-0.2,4.1-0.2,16.1,0,20.1
                  c-0.1,3.5,1.2,6.8,3.5,9.3C11.8,50,15,51.3,18.4,51.2z M32.6,49.9c-0.9,0-1.8,0-2.5,0l-1.7,0l-1.7,0c-4,0-10.1,0.1-13-1.1
                  c-2.5-1-4.4-3-5.4-5.5c-1.2-3-1.1-9.1-1.1-13.2l0-1.7l0-1.7c0-4.1-0.1-10.2,1.1-13.2c1-2.5,2.9-4.5,5.4-5.4c3-1.2,9-1.1,13-1.1
                  l1.7,0l1.7,0c4,0,10.1-0.1,13,1.1c2.5,1,4.4,3,5.4,5.5c1.2,3,1.1,9.2,1.1,13.2l0,1.7l0,1.7c0,4.1,0.1,10.2-1.1,13.2l0,0
                  c-1,2.5-2.9,4.5-5.4,5.5C40.7,49.7,36.3,49.9,32.6,49.9z M28.4,47l1.7,0c3.5,0,9.5,0.1,11.9-0.9c1.7-0.7,3.1-2.1,3.8-3.8l0,0
                  c1-2.5,0.9-8.5,0.9-12.1l0-1.8l0-1.8c0-3.6,0.1-9.6-0.9-12.1c-0.7-1.7-2-3.1-3.8-3.8c-2.4-1-8.4-0.9-11.9-0.9l-1.7,0l-1.7,0
                  c-3.5,0-9.5-0.1-11.9,0.9c-1.7,0.7-3.1,2.1-3.8,3.8c-1,2.5-0.9,8.5-0.9,12.1l0,1.8l0,1.8c0,3.6-0.1,9.6,0.9,12.1
                  c0.7,1.7,2,3.1,3.8,3.8c2.4,1,8.4,0.9,11.9,0.9L28.4,47z M28.1,42.3c-0.1,0-0.2,0-0.2,0c-7.7-0.1-13.9-6.5-13.7-14.2
                  c0.1-7.7,6.5-13.9,14.2-13.7h0c3.7,0,7.2,1.5,9.8,4.2c2.6,2.6,4,6.1,4,9.8C42,36.2,35.7,42.3,28.1,42.3z M28.1,17.2
                  c-2.9,0-5.6,1.1-7.7,3.1c-2.1,2.1-3.3,4.8-3.4,7.8c-0.1,6.1,4.8,11.2,10.9,11.3c6.1,0,11.2-4.8,11.3-10.9c0-3.1-1.1-5.9-3.1-8
                  c-2.1-2.1-4.8-3.3-7.7-3.3h0C28.3,17.2,28.2,17.2,28.1,17.2z M28.2,37.9c-2.5,0-4.9-1-6.7-2.7c-1.8-1.8-2.9-4.2-2.9-6.7
                  c0-2.6,0.9-5,2.7-6.8c1.8-1.8,4.2-2.9,6.7-2.9c2.5-0.1,5,0.9,6.8,2.7c1.8,1.8,2.9,4.2,2.9,6.7c0,5.4-4.2,9.7-9.4,9.8
                  C28.3,37.9,28.3,37.9,28.2,37.9z M28.2,21.6c0,0-0.1,0-0.1,0c-1.8,0-3.5,0.8-4.7,2c-1.2,1.3-1.9,3-1.9,4.8c0,1.8,0.8,3.5,2,4.7
                  c1.3,1.2,3,1.9,4.8,1.9h0c3.7,0,6.6-3,6.6-6.7c0-1.9-0.8-3.6-2.1-4.8C31.6,22.3,30,21.6,28.2,21.6z M41.2,19.6
                  C41.2,19.6,41.1,19.6,41.2,19.6c-2.5,0-4.4-2-4.3-4.4c0-2.3,2-4.3,4.3-4.3c2.4,0,4.3,1.9,4.3,4.3v0.1C45.5,17.7,43.5,19.6,41.2,19.6
                  z M41.2,13.8c-0.8,0-1.4,0.6-1.4,1.4c0,0.8,0.6,1.5,1.4,1.5c0,0,0,0,0,0c0.8,0,1.4-0.6,1.4-1.4v0C42.6,14.4,42,13.8,41.2,13.8z"/>
                </svg>
              </a>
            </li>
            <li>
              <a href="https://www.linkedin.com/company/bowl-central" title="follow Bowl Central on Linkedin" rel="nofollow" target="_blank"  >
                <svg version="1.1" id="Layer_linkedin" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px"
                   viewBox="0 0 56.7 56.7" style="enable-background:new 0 0 56.7 56.7;" xml:space="preserve">
                <path class="linkedin" d="M53.7,54.3L52,53.9H40.9V36.7c0-4.9-0.6-7.2-3.7-7.2c-3.3,0-4.5,1.9-4.5,6.9v17.5H19.9V18.6h12.4v2.1
                  c2.2-1.9,5.1-3,8.1-2.9c11.7,0,13.3,8.5,13.3,16.9V54.3z M22.8,51h7V36.4c0-2.4,0-9.8,7.4-9.8c6.6,0,6.6,6.5,6.6,10V51h7V34.6
                  c0-10.2-2.8-14-10.4-14c-3.4-0.1-6.5,1.6-8.1,4.5l-0.4,0.7h-2.3l-0.1-1.4v-3h-6.7V51z M16.6,53.9H3.8V18.6h12.8V53.9z M6.7,51h7
                  V21.4h-7V51z M10.2,17L10.2,17C6.2,16.9,3,13.6,3,9.7c0-3.9,3.2-7.2,7.1-7.3c4,0,7.2,3.3,7.2,7.3C17.4,13.6,14.2,16.9,10.2,17
                  L10.2,17z M10.2,5.3c-2.4,0-4.3,2-4.3,4.4c0,2.4,1.9,4.4,4.3,4.5c2.4-0.1,4.3-2.1,4.3-4.4C14.5,7.3,12.6,5.3,10.2,5.3z"/>
                </svg>

              </a>
            </li>
          </ul>
        </div>
      </div>
    </header>
    <!--- MENU -->
    <input id="menu-toggle" type="checkbox" />
        <label class='menu-button-container' for="menu-toggle">
          <div class='menu-button'></div>
        </label>
    <div class="site-overly site-overly-with-3">
	<div class="inner">
		<div class="logo-bar">
			<img data-src="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/images/bowl-central.svg" alt="Bowl Central" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" class="lazyload"><noscript><img src="https://bowlcentral.co.uk/wp-content/themes/Bowl-Central-2023/images/bowl-central.svg" alt="Bowl Central"></noscript>
		</div>
		<div class="main-menu">
			<nav>
        		<ul id="menu-main-menu" class="menu"><li id="menu-item-73" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-home menu-item-73"><a title="Bowl Central &#8211; Home page" href="https://bowlcentral.co.uk/">Home</a></li>
<li id="menu-item-642" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-642"><a title="Location of your nearest Bowl Central" href="https://bowlcentral.co.uk/bowl-central-locations/">Locations</a></li>
<li id="menu-item-641" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-641"><a title="Bowl Central Game Card" href="https://bowlcentral.co.uk/bowl-central-game-card/">Game Card</a></li>
<li id="menu-item-643" class="menu-item menu-item-type-post_type menu-item-object-page menu-item-643"><a title="Contact Bowl Central" href="https://bowlcentral.co.uk/contact-us/">Contact Us</a></li>
</ul>			</nav>
		</div>
		<div class="overlay-locations overlay-locations-3">
		
						<div class="overlay-location-block overlay-block-count-3">
				<h2 style="border-color:#09d7b7;" class="">
										<a href="https://bowlcentral.co.uk/bowl-central-bournemouth/" title="Bournemouth Bowl Central" style="color:#09d7b7;text-shadow: 0 0 18px rgb(9,215,183);">Bournemouth					</a>
									</h2>
													<ul>
								    				<li>
		    					<a href="https://bowlcentral.co.uk/bowl-central-bournemouth/pins-bournemouth/" title="Bournemouth Bowl Central - Pins"  style="background:rgba(9,215,183,0.1); border:1px solid #09d7b7; ">Pins</a>
		    				</li>
		    					    				<li>
		    					<a href="https://bowlcentral.co.uk/bowl-central-bournemouth/prizes-bournemouth/" title="Bournemouth Bowl Central - Prizes"  style="background:rgba(9,215,183,0.1); border:1px solid #09d7b7; ">Prizes</a>
		    				</li>
		    					    				<li>
		    					<a href="https://bowlcentral.co.uk/bowl-central-bournemouth/parties-bournemouth/" title="Bournemouth Bowl Central - Parties"  style="background:rgba(9,215,183,0.1); border:1px solid #09d7b7; ">Parties</a>
		    				</li>
		    					    				<li>
		    					<a href="https://bowlcentral.co.uk/bowl-central-bournemouth/packages-and-events-bournemouth/" title="Bournemouth Bowl Central - Corporate Events"  style="background:rgba(9,215,183,0.1); border:1px solid #09d7b7; ">Corporate Events</a>
		    				</li>
		    								</ul>
												<div class="location-block-details">
										<div class="location-block-contact location-block-pins">
						<p>
							<span>Pins: </span>
							<span>01202 093000</span>
						</p>
					</div>
															<div class="location-block-contact location-block-prizes">
						<p>
							<span>Prizes: </span>
							<span>01202 555552</span>
						</p>
					</div>
															<div class="location-block-contact location-block-address">
						<p>
							<span>Find Us: </span>
							<span>
																	45-47 Westover Road,<br />
Bournemouth,<br />
Dorset<br />
BH1 2BZ																									<a href="https://g.page/bowlcentral?share" title="Get directions to Bournemouth Bowl Central" target="_blank" style="background:rgba(9,215,183,0.1); border:1px solid #09d7b7; " class="overlay-findus">Find Us</a>
															</span>
						</p>
					</div>
																			</div>
							</div>
  
						<div class="overlay-location-block overlay-block-count-3">
				<h2 style="border-color:#d70980;" class="">
										<a href="https://bowlcentral.co.uk/fareham-bowl-central/" title="Fareham Bowl Central" style="color:#d70980;text-shadow: 0 0 18px rgb(215,9,128);">Fareham					</a>
									</h2>
													<ul>
								    				<li>
		    					<a href="https://bowlcentral.co.uk/fareham-bowl-central/pins-fareham/" title="Fareham Bowl Central - Pins"  style="background:rgba(215,9,128,0.1); border:1px solid #d70980; ">Pins</a>
		    				</li>
		    					    				<li>
		    					<a href="https://bowlcentral.co.uk/bowl-central-bournemouth/prizes-bournemouth/" title="Fareham Bowl Central - Prizes"  style="background:rgba(215,9,128,0.1); border:1px solid #d70980; ">Prizes</a>
		    				</li>
		    					    				<li>
		    					<a href="https://bowlcentral.co.uk/fareham-bowl-central/parties-fareham/" title="Fareham Bowl Central - Parties"  style="background:rgba(215,9,128,0.1); border:1px solid #d70980; ">Parties</a>
		    				</li>
		    					    				<li>
		    					<a href="https://bowlcentral.co.uk/fareham-bowl-central/packages-and-events-fareham/" title="Fareham Bowl Central - Events and Corporate"  style="background:rgba(215,9,128,0.1); border:1px solid #d70980; ">Events and Corporate</a>
		    				</li>
		    								</ul>
												<div class="location-block-details">
										<div class="location-block-contact location-block-pins">
						<p>
							<span>Pins: </span>
							<span>01329 760922</span>
						</p>
					</div>
															<div class="location-block-contact location-block-prizes">
						<p>
							<span>Prizes: </span>
							<span>01329 760922</span>
						</p>
					</div>
															<div class="location-block-contact location-block-address">
						<p>
							<span>Find Us: </span>
							<span>
																	Unit 4, Market Quay, <br />
1 Vanness Parade, <br />
Fareham, <br />
PO16 0BX																									<a href="https://goo.gl/maps/JANeqi89E4cnvrAR9" title="Get directions to Fareham Bowl Central" target="_blank" style="background:rgba(215,9,128,0.1); border:1px solid #d70980; " class="overlay-findus">Find Us</a>
															</span>
						</p>
					</div>
																			</div>
							</div>
  
						<div class="overlay-location-block overlay-block-count-3">
				<h2 style="border-color:#00cafa;" class="overlay-block-coming-soon">
											<span style="color:#00cafa;text-shadow: 0 0 18px rgb(0,202,250);">
							Reading						</span>
									</h2>
				<p class='overlay-coming-soon-notice'>Coming Soon</p>											</div>
  	</div>
	</div>
</div>
<style>
.site-overly{
	width: 100vw;
	height: 100vh;
	background: #131819;
	z-index: 3000;
	position: fixed;
	top: 0px;
	right:0vw;
}
.site-overly .inner{}
.site-overly .logo-bar{
	width: 100%;
	display: flex;
	justify-content: center;
	padding: 50px 0 30px;
}
.site-overly .logo-bar img{
	text-align: center;
	width: 100%;
	height: auto;
	max-width: 100px;
}
.site-overly .main-menu{
	width: 100%;
	border-bottom: 1px solid rgba(255,255,255,0.2);
	padding: 15px 0 40px;
}
.site-overly .main-menu nav{
	width: 100%;
}
.site-overly .main-menu nav ul{
	width: 100%;
	display: flex;
	justify-content: center;
	flex-wrap: wrap;
	align-items: center;
	margin: 0;
	padding: 0;
	list-style: none;
}
.site-overly .main-menu nav ul li{
	max-width:calc(25% - 14px);
	margin: 7px;
}
.site-overly .main-menu nav ul li a{
	width: 100%;
	padding: 21px 30px 18px;
	text-align: center;
	display: block;
	border: 1px solid #fff;
	line-height: 1em;
	font-size: 1em;
	color: #fff;
	background: rgba(255,255,255, 0.1);
}
.site-overly .overlay-locations{
	display: flex;
	justify-content: center;
	width: 100%;
	height: 100vh;
	flex-wrap: wrap;
}
.site-overly .overlay-locations .overlay-location-block{
	min-width: 25%;
	border-left: 1px solid rgba(255,255,255,0.2);
	padding: 30px;
	height: 100%;
}
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-1{
	width: calc(100%/2);
}
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-2{
	width: calc(100%/2);
}
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3,
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5,
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6{
	width: calc(100%/3);
}
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4,
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7,
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8{
	width: calc(100%/4);
}
.site-overly .overlay-locations .overlay-location-block:first-child{
	border-left: 1px solid rgba(0, 0, 0, 0);
}
.site-overly .overlay-locations .overlay-location-block h2{
	width: 100%;
	margin-bottom: 40px;
	padding-bottom: 25px;
	border-bottom: 1px solid;
}
.site-overly .overlay-locations .overlay-location-block h2 span,
.site-overly .overlay-locations .overlay-location-block h2 a{
	text-align: center;
	text-transform: uppercase;
	font-family: 'NEON LED Light';
	font-size: 1.75em;
	display: block;
}
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 h2 span,
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 h2 span,
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 h2 span,
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 h2 a,
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 h2 a,
.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 h2 a{
	font-size: 1.25em;
}
p.overlay-coming-soon-notice{
	width: 100%;
	text-align: center;
	font-family: 'NEON LED Light';
	font-size: 3.3em;
	letter-spacing: 2px;
	color:#fff;
	opacity: 0.16;
	line-height: 1.9em;
}
p.overlay-open-soon-notice{
	width: 100%;
	text-align: center;
	font-family: 'NEON LED Light';
	font-size: 2.3em;
	letter-spacing: 2px;
	color:#fff;
	opacity: 0.16;
	line-height: 1em;
	margin: 0;
	padding-top: 20px;
	min-height: 150px;
}
.site-overly .overlay-locations .overlay-location-block ul{
	width: 100%;
	margin: 0;
	padding: 0 0 50px;
	list-style: none;
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
	align-items: center;
}
.site-overly .overlay-locations .overlay-location-block ul li{
	width: calc(50% - 7px);
	margin: 7px 0;
}
.site-overly .overlay-locations .overlay-location-block ul li a{
	width: 100%;
	padding: 17px 15px 13px;
	text-align: center;
	display: block;
	line-height: 1em;
	font-size: 1em;
	color: #fff;
}
.site-overly .overlay-locations .overlay-location-block .location-block-details{
	padding-bottom: 30px;
}
.site-overly .overlay-locations .overlay-location-block .location-block-details div{
	padding-bottom: 20px;
	width: 100%;
	max-width: 350px;
	margin: 0 auto 0px;
}
.site-overly .overlay-locations .overlay-location-block .location-block-details p{
	width: 100%;
	display: flex;
	justify-content: space-between;
	align-items: flex-start;
	margin: 0;
	padding: 0;
}
.site-overly .overlay-locations .overlay-location-block .location-block-details p span{
}
.site-overly .overlay-locations .overlay-location-block .location-block-details p span:first-child{
	width: calc(33% - 15px);
	display: inline-block;
}
.site-overly .overlay-locations .overlay-location-block .location-block-details p span:last-child{
	width: 67%;
	display: inline-block;
}
.site-overly .overlay-locations .overlay-location-block .location-block-details p span a.overlay-findus{
	text-align: center;
	color: #fff;
	padding: 17px 20px 13px;
	display: block;
	margin:20px auto 0 0;
	width: auto;
	max-width: 140px;
}
.site-overly .overlay-locations .overlay-location-block .location-buttons{
	display: flex;
	flex-wrap: wrap;
	align-items: center;
	justify-content: center;
}
.site-overly .overlay-locations .overlay-location-block .findus-button{
	display: none;
}
.site-overly .overlay-locations .overlay-location-block .overlay-locations-book{
	max-width: 400px;
	width: 100%;
}
.site-overly .overlay-locations .overlay-location-block .location-buttons a{
	text-align: center;
	color: #fff;
	padding: 17px 30px 13px;
}
	.site-overly-with-5,
	.site-overly-with-6{
	}
	.site-overly-with-5 .inner,
	.site-overly-with-6 .inner{
		padding:0 20px;
	}
	.site-overly-with-5 .logo-bar,
	.site-overly-with-6 .logo-bar{
		padding: 50px 0 20px;
	}
	.site-overly .overlay-locations.overlay-locations-5,
	.site-overly .overlay-locations.overlay-locations-6{
		height: auto;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6{
		height: auto;
		width: 33.333%;
		border-bottom: 1px solid rgba(255,255,255,0.2);
		padding: 20px;
	}
	.site-overly .overlay-locations.overlay-locations-5 .overlay-location-block:first-child,
	.site-overly .overlay-locations.overlay-locations-6 .overlay-location-block:first-child,
	.site-overly .overlay-locations.overlay-locations-5 .overlay-location-block:nth-child(4),
	.site-overly .overlay-locations.overlay-locations-6 .overlay-location-block:nth-child(4){
		border-right: 1px solid rgba(255,255,255,0);
		border-left: 1px solid rgba(255,255,255,0);
	}
	.site-overly .overlay-locations.overlay-locations-5 .overlay-location-block:nth-child(2),
	.site-overly .overlay-locations.overlay-locations-6 .overlay-location-block:nth-child(2)
	.site-overly .overlay-locations.overlay-locations-5 .overlay-location-block:nth-child(3),
	.site-overly .overlay-locations.overlay-locations-6 .overlay-location-block:nth-child(3),
	.site-overly .overlay-locations.overlay-locations-6 .overlay-location-block:nth-child(5),
	.site-overly .overlay-locations.overlay-locations-5 .overlay-location-block:last-child,
	.site-overly .overlay-locations.overlay-locations-6 .overlay-location-block:last-child{
		border-left: 1px solid rgba(255,255,255,0.2);
		border-right: 1px solid rgba(255,255,255,0);
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2{
		margin-bottom: 20px;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2 a{
		font-size: 1em;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 .location-block-details,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 .location-block-details{
		display:none;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 ul,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 ul{
		padding-bottom: 15px;
		border-bottom: 1px solid rgba(255,255,255,0.1);
		margin-bottom: 15px
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 ul li a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 ul li a{
	    width: 100%;
	    padding: 11px 10px 9px;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 .location-buttons,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 .location-buttons{
		justify-content: space-between;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 .location-buttons a.findus-button,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 .location-buttons a.findus-button,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 .location-buttons a.overlay-locations-book,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 .location-buttons a.overlay-locations-book{
		display: inline-block;
		width: calc(50% - 7px);
    	margin: 0 0 10px;
	    padding: 11px 10px 9px;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2 a{
		font-size: 1.25em;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 p.overlay-coming-soon-notice ,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 p.overlay-coming-soon-notice ,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 p.overlay-coming-soon-notice {
	    font-size: 2.3em;
	}

@media screen and (max-width:1550px){
	.site-overly .main-menu nav ul li{
		max-width:calc(33% - 14px);
	}
	.site-overly .main-menu nav ul li a {
	    padding: 15px 10px 12px;
	}
	.site-overly-with-4,
	.site-overly-with-7,
	.site-overly-with-8{
	}
	.site-overly-with-4 .inner,
	.site-overly-with-7 .inner,
	.site-overly-with-8 .inner{
		padding:0 20px;
	}
	.site-overly-with-4 .logo-bar,
	.site-overly-with-7 .logo-bar,
	.site-overly-with-8 .logo-bar{
		padding: 50px 0 20px;
	}
	.site-overly-with-4 .main-menu,
	.site-overly-with-7 .main-menu,
	.site-overly-with-8 .main-menu{
		padding: 10px 0 30px;
	}
	.site-overly .overlay-locations.overlay-locations-4,
	.site-overly .overlay-locations.overlay-locations-7,
	.site-overly .overlay-locations.overlay-locations-8{
		height: auto;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8{
		height: auto;
		width: 50%;
		border-bottom: 1px solid rgba(255,255,255,0.2);
		padding: 20px;
	}
	.site-overly .overlay-locations.overlay-locations-4 .overlay-location-block:nth-child(odd),
	.site-overly .overlay-locations.overlay-locations-7 .overlay-location-block:nth-child(odd),
	.site-overly .overlay-locations.overlay-locations-8 .overlay-location-block:nth-child(odd){
		border-right: 1px solid rgba(255,255,255,0);
		border-left: 1px solid rgba(255,255,255,0);
	}
	.site-overly .overlay-locations.overlay-locations-4 .overlay-location-block:nth-child(even),
	.site-overly .overlay-locations.overlay-locations-7 .overlay-location-block:nth-child(even),
	.site-overly .overlay-locations.overlay-locations-8 .overlay-location-block:nth-child(even){
		border-left: 1px solid rgba(255,255,255,0.2);
		border-right: 1px solid rgba(255,255,255,0);
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 h2,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 h2,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 h2{
		margin-bottom: 20px;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 h2 a{
		font-size: 1em;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 .location-block-details,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 .location-block-details,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 .location-block-details{
		display:none;
	}
	.site-overly .overlay-locations .overlay-location-block ul{
		padding-bottom: 25px;
	}
	.site-overly .overlay-locations .overlay-location-block ul li a,
	.site-overly .overlay-locations .overlay-location-block .location-buttons a.findus-button,
	.site-overly .overlay-locations .overlay-location-block .location-buttons a.overlay-locations-book,
	.site-overly .overlay-locations .overlay-location-block .location-block-details p span a.overlay-findus{
		font-size: 0.9em;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 ul,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 ul,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 ul{
		padding-bottom: 15px;
		border-bottom: 1px solid rgba(255,255,255,0.1);
		margin-bottom: 15px
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 ul li a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 ul li a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 ul li a{
	    width: 100%;
	    padding: 11px 10px 9px;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 .location-buttons,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 .location-buttons,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 .location-buttons{
		justify-content: space-between;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 .location-buttons a.findus-button,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 .location-buttons a.findus-button,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 .location-buttons a.findus-button,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 .location-buttons a.overlay-locations-book,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 .location-buttons a.overlay-locations-book,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 .location-buttons a.overlay-locations-book{
		display: inline-block;
		width: calc(50% - 7px);
    	margin: 0 0 10px;
	    padding: 11px 10px 9px;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2 a{
		font-size: 1.25em;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 p.overlay-coming-soon-notice ,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 p.overlay-coming-soon-notice ,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 p.overlay-coming-soon-notice {
	    font-size: 2.3em;
	}
}
@media screen and (max-width:1456px){
	p.overlay-coming-soon-notice{
	    font-size: 3em;
	    line-height: 1em;
	}
}
@media screen and (max-width:1320px){
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6{
		height: auto;
		border-bottom: 0px solid rgba(255,255,255,0);
		padding: 10px;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2 a{
		border:1px solid;
		padding: 23px 30px 16px;
    	font-family: 'Full Sans LC Book';
    	font-size: 1em;
    	margin: 0 auto;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2{
		border-bottom: 0px solid rgba(255,255,255,0);
		margin:5px 0;
		position:relative;
		padding: 0;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2.overlay-block-coming-soon:after,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2.overlay-block-coming-soon:after{
		    content: "Coming soon";
		    border: 1px solid rgba(255,255,255,0.2);
		    color: rgba(255,255,255,0.8);
		    background: #131819;
		    padding: 7px 15px;
		    left: 50%;
		    transform: translateX(-50%) translateY(-50%);
		    bottom: -33px;
		    position: absolute;
		    font-size: 0.6em;
    		font-family: 'Full Sans LC Book';
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 p.overlay-open-soon-notice,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 p.overlay-open-soon-notice{
		border: 1px solid rgba(255,255,255,0.2);
	    color: rgba(255,255,255,0.8);
	    background: #131819;
	    padding: 7px 15px;
	    left: 50%;
	    transform: translateX(-50%) translateY(-69%);
	    /* bottom: 563px; */
	    position: absolute;
	    font-size: 0.9em;
	    font-family: 'Full Sans LC Book';
	    text-align: center;
	    margin: 0;
	    padding: 10px;
	    min-height: auto;
	    opacity: 1;
	    width: auto;
	    display: inline-block;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 ul,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 ul{
		display: none;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 .location-buttons,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 .location-buttons{
		display: none;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 p.overlay-coming-soon-notice ,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 p.overlay-open-soon-notice{
		display: none;
	}
	.site-overly .overlay-locations.overlay-locations-5 .overlay-location-block:nth-child(odd),
	.site-overly .overlay-locations.overlay-locations-6 .overlay-location-block:nth-child(odd),
	.site-overly .overlay-locations.overlay-locations-5 .overlay-location-block:nth-child(even),
	.site-overly .overlay-locations.overlay-locations-6 .overlay-location-block:nth-child(even){
		border: 1px solid rgba(255,255,255,0);
	}
}
@media screen and (max-width:1260px){
	.site-overly-with-3{
	}
	.site-overly-with-3 .inner{
		padding:0 20px;
	}
	.site-overly-with-3.logo-bar{
		padding: 50px 0 20px;
	}
	.site-overly-with-3 .main-menu{
		padding: 10px 0 30px;
	}
	.site-overly .overlay-locations.overlay-locations-3{
		height: auto;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3{
		height: auto;
		width: 50%;
		border-bottom: 1px solid rgba(255,255,255,0.2);
		padding: 20px;
	}
	.site-overly .overlay-locations.overlay-locations-3 .overlay-location-block:nth-child(odd){
		border-right: 1px solid rgba(255,255,255,0);
		border-left: 1px solid rgba(255,255,255,0);
	}
	.site-overly .overlay-locations.overlay-locations-3 .overlay-location-block:nth-child(even){
		border-left: 1px solid rgba(255,255,255,0.2);
		border-right: 1px solid rgba(255,255,255,0);
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2{
		margin-bottom: 20px;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2 a{
		font-size: 1em;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 .location-block-details{
		display:none;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 ul{
		padding-bottom: 15px;
		border-bottom: 1px solid rgba(255,255,255,0.1);
		margin-bottom: 15px
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 ul li a{
	    width: 100%;
	    padding: 11px 10px 9px;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 .location-buttons{
		justify-content: space-between;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 .location-buttons a.findus-button,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 .location-buttons a.overlay-locations-book{
		display: inline-block;
		width: calc(50% - 7px);
    	margin: 0 0 10px;
	    padding: 11px 10px 9px;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2 a{
		font-size: 1.25em;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 p.overlay-coming-soon-notice {
	    font-size: 2.3em;
	}
}
@media screen and (max-width:1000px){
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6{
		width: 50%;
	}
}
@media screen and (max-width:850px){
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8{
		height: auto;
		width: 100%;
		border-bottom: 0px solid rgba(255,255,255,0);
		padding: 10px;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 h2 a{
		width: 100%;
		max-width: 400px;
		border:1px solid;
		padding: 23px 30px 16px;
    	font-family: 'Full Sans LC Book';
    	font-size: 1em;
    	margin: 0 auto;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 h2,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 h2,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 h2{
		border-bottom: 0px solid rgba(255,255,255,0);
		margin:5px 0;
		position:relative;
		padding: 0;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2.overlay-block-coming-soon:after,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 h2.overlay-block-coming-soon:after,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 h2.overlay-block-coming-soon:after,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 h2.overlay-block-coming-soon:after{
		    content: "Coming soon";
		    border: 1px solid rgba(255,255,255,0.2);
		    color: rgba(255,255,255,0.8);
		    background: #131819;
		    padding: 7px 15px;
		    left: 50%;
		    transform: translateX(-50%) translateY(-50%);
		    bottom: -33px;
		    position: absolute;
		    font-size: 0.6em;
    		font-family: 'Full Sans LC Book';
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 p.overlay-open-soon-notice,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 p.overlay-open-soon-notice,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 p.overlay-open-soon-notice,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 p.overlay-open-soon-notice{
		    border: 1px solid rgba(255,255,255,0.2);
		    color: rgba(255,255,255,0.8);
		    background: #131819;
		    padding: 7px 15px;
		    left: 50%;
		    transform: translateX(-50%) translateY(-69%);
		    /* bottom: 563px; */
		    position: absolute;
		    font-size: 0.9em;
		    font-family: 'Full Sans LC Book';
		    text-align: center;
		    margin: 0;
		    padding: 10px;
		    min-height: auto;
		    opacity: 1;
		    width: auto;
		    display: inline-block;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 ul,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 ul,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 ul,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 ul{
		display: none;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 .location-buttons,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 .location-buttons,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 .location-buttons,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 .location-buttons{
		display: none;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 p.overlay-coming-soon-notice ,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 p.overlay-coming-soon-notice ,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 p.overlay-coming-soon-notice ,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 p.overlay-coming-soon-notice{
		display: none;
	}
	.site-overly .overlay-locations.overlay-locations-3 .overlay-location-block:nth-child(odd),
	.site-overly .overlay-locations.overlay-locations-4 .overlay-location-block:nth-child(odd),
	.site-overly .overlay-locations.overlay-locations-7 .overlay-location-block:nth-child(odd),
	.site-overly .overlay-locations.overlay-locations-8 .overlay-location-block:nth-child(odd),
	.site-overly .overlay-locations.overlay-locations-3 .overlay-location-block:nth-child(even),
	.site-overly .overlay-locations.overlay-locations-4 .overlay-location-block:nth-child(even),
	.site-overly .overlay-locations.overlay-locations-7 .overlay-location-block:nth-child(even),
	.site-overly .overlay-locations.overlay-locations-8 .overlay-location-block:nth-child(even){
		border: 1px solid rgba(255,255,255,0);
	}
}
@media screen and (max-width:750px){
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6{
		height: auto;
		width: 100%;
	}
	.site-overly-with-1 .logo-bar,
	.site-overly-with-2 .logo-bar,
	.site-overly-with-3 .logo-bar,
	.site-overly-with-4 .logo-bar,
	.site-overly-with-5 .logo-bar,
	.site-overly-with-6 .logo-bar,
	.site-overly-with-7 .logo-bar,
	.site-overly-with-8 .logo-bar{
		padding: 50px 0 5px;
	}
	.site-overly .logo-bar img{
		max-width: 60px;
	}
	.site-overly .main-menu nav ul li{
		max-width:400px;
		width: 100%;
		margin: 7px 0;
	}
	.site-overly .main-menu nav ul li a {
		padding: 14px 10px 8px;
	}	
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-1 h2,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-2 h2,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2,	
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 h2,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 h2{
		margin:0px 0;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-1 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-2 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 h2 span,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-1 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-2 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 h2 a,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 h2 a{
		width: 100%;
		max-width: 400px;
		border:1px solid;
		padding: 14px 30px 12px;
    	font-family: 'Full Sans LC Book';
    	font-size: 0.7em;
    	margin: 0 auto;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-1 h2.overlay-block-coming-soon:after,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-2 h2.overlay-block-coming-soon:after,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 h2.overlay-block-coming-soon:after,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 h2.overlay-block-coming-soon:after,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 h2.overlay-block-coming-soon:after,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 h2.overlay-block-coming-soon:after,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 h2.overlay-block-coming-soon:after,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 h2.overlay-block-coming-soon:after{
		    padding: 3px 15px;
		    bottom: -23px;
		    font-size: 0.5em;
	}
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-1 p.overlay-open-soon-notice,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-2 p.overlay-open-soon-notice,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-3 p.overlay-open-soon-notice,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-4 p.overlay-open-soon-notice,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-5 p.overlay-open-soon-notice,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-6 p.overlay-open-soon-notice,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-7 p.overlay-open-soon-notice,
	.site-overly .overlay-locations .overlay-location-block.overlay-block-count-8 p.overlay-open-soon-notice{
		 padding: 5px 15px;
	    font-size: 0.7em;
	    transform: translateX(-50%) translateY(-55%);
	}
}
</style>    <!---   /MENU -->
  
    <div class="wp-block-cover alignfull" style="min-height:350px;aspect-ratio:unset;"><span aria-hidden="true" class="wp-block-cover__background has-background-dim-10 has-background-dim"></span><img fetchpriority="high" decoding="async" width="2142" height="1578" class="wp-block-cover__image-background wp-image-2563" alt="" src="https://bowlcentral.co.uk/wp-content/uploads/2022/11/Screenshot-2023-04-12-at-10.37.50.png" style="object-position:51% 40%" data-object-fit="cover" data-object-position="51% 40%" srcset="https://bowlcentral.co.uk/wp-content/uploads/2022/11/Screenshot-2023-04-12-at-10.37.50.png 2142w, https://bowlcentral.co.uk/wp-content/uploads/2022/11/Screenshot-2023-04-12-at-10.37.50-300x221.png 300w, https://bowlcentral.co.uk/wp-content/uploads/2022/11/Screenshot-2023-04-12-at-10.37.50-1024x754.png 1024w, https://bowlcentral.co.uk/wp-content/uploads/2022/11/Screenshot-2023-04-12-at-10.37.50-768x566.png 768w, https://bowlcentral.co.uk/wp-content/uploads/2022/11/Screenshot-2023-04-12-at-10.37.50-1536x1132.png 1536w, https://bowlcentral.co.uk/wp-content/uploads/2022/11/Screenshot-2023-04-12-at-10.37.50-2048x1509.png 2048w" sizes="(max-width: 2142px) 100vw, 2142px" /></p><div class="wp-block-cover__inner-container is-layout-flow wp-block-cover-is-layout-flow"><h1 class="wp-block-heading has-text-align-center has-neon-pink-color has-transparent-background-color has-text-color has-background" style="font-size:4.2em;font-style:normal;font-weight:700">Fareham</h1></div></div><nav class="is-responsive items-justified-center no-wrap alignfull wp-block-navigation is-horizontal is-content-justification-center is-nowrap is-layout-flex wp-container-core-navigation-is-layout-1 wp-block-navigation-is-layout-flex" aria-label="Fareham Bowl Central" 		 data-wp-interactive="core/navigation" data-wp-context='{"overlayOpenedBy":{"click":false,"hover":false,"focus":false},"type":"overlay","roleAttribute":"","ariaLabel":"Menu"}'><button aria-haspopup="dialog" aria-label="Open menu" class="wp-block-navigation__responsive-container-open " 				data-wp-on--click="actions.openMenuOnClick"				data-wp-on--keydown="actions.handleMenuKeydown"			><svg width="24" height="24" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24"><path d="M5 5v1.5h14V5H5zm0 7.8h14v-1.5H5v1.5zM5 19h14v-1.5H5V19z" /></svg></button></p><div class="wp-block-navigation__responsive-container  " style="" id="modal-3" 				data-wp-class--has-modal-open="state.isMenuOpen"				data-wp-class--is-menu-open="state.isMenuOpen"				data-wp-watch="callbacks.initMenu"				data-wp-on--keydown="actions.handleMenuKeydown"				data-wp-on--focusout="actions.handleMenuFocusout"				tabindex="-1"			></p><div class="wp-block-navigation__responsive-close" tabindex="-1"><div class="wp-block-navigation__responsive-dialog" 				data-wp-bind--aria-modal="state.ariaModal"				data-wp-bind--aria-label="state.ariaLabel"				data-wp-bind--role="state.roleAttribute"			>							<button aria-label="Close menu" class="wp-block-navigation__responsive-container-close" 				data-wp-on--click="actions.closeMenuOnClick"			><svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="24" height="24" aria-hidden="true" focusable="false"><path d="M13 11.8l6.1-6.3-1-1-6.1 6.2-6.1-6.2-1 1 6.1 6.3-6.5 6.7 1 1 6.5-6.6 6.5 6.6 1-1z"></path></svg></button></p><div class="wp-block-navigation__responsive-container-content" 				data-wp-watch="callbacks.focusFirstElement"			 id="modal-3-content"></p><ul class="wp-block-navigation__container is-responsive items-justified-center no-wrap alignfull wp-block-navigation"><li class=" wp-block-navigation-item current-menu-item wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://bowlcentral.co.uk/fareham-bowl-central/" aria-current="page"><span class="wp-block-navigation-item__label">Home</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://bowlcentral.co.uk/fareham-bowl-central/promotions-fareham/"><span class="wp-block-navigation-item__label">Promotions</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://bowlcentral.co.uk/fareham-bowl-central/pins-fareham/"><span class="wp-block-navigation-item__label">Pins</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://bowlcentral.co.uk/fareham-bowl-central/prizes-fareham/"><span class="wp-block-navigation-item__label">Prizes</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link"><a class="wp-block-navigation-item__content"  href="https://bowlcentral.co.uk/fareham-bowl-central/parties-fareham/"><span class="wp-block-navigation-item__label">Kids Parties</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link wp-container-content-1"><a class="wp-block-navigation-item__content"  href="https://bowlcentral.co.uk/fareham-bowl-central/packages-and-events-fareham/"><span class="wp-block-navigation-item__label">Events &amp; Corporate</span></a></li><li class=" wp-block-navigation-item wp-block-navigation-link wp-container-content-2"><a class="wp-block-navigation-item__content"  href="https://bowlcentral.co.uk/fareham-bowl-central/contact-fareham-bowl-central/"><span class="wp-block-navigation-item__label">Contact &amp; Testimonials</span></a></li></ul></div></p></div></p></div></p></div></nav><figure class="wp-block-image alignfull size-large"><a href="https://secure.meriq.com/bowlcentral/"><img decoding="async" width="1024" height="576" data-src="https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-1024x576.png?quality=100" alt="" class="wp-image-8852 lazyload" data-srcset="https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-1024x576.png 1024w, https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-300x169.png 300w, https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-768x432.png 768w, https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-1536x864.png 1536w, https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-2048x1152.png 2048w, https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-640x360.png 640w" data-sizes="(max-width: 1024px) 100vw, 1024px" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="--smush-placeholder-width: 1024px; --smush-placeholder-aspect-ratio: 1024/576;" /><noscript><img decoding="async" width="1024" height="576" src="https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-1024x576.png?quality=100" alt="" class="wp-image-8852" srcset="https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-1024x576.png 1024w, https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-300x169.png 300w, https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-768x432.png 768w, https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-1536x864.png 1536w, https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-2048x1152.png 2048w, https://bowlcentral.co.uk/wp-content/uploads/2024/03/Website-Jan-24-1-640x360.png 640w" sizes="(max-width: 1024px) 100vw, 1024px" /></noscript></a></figure><figure class="wp-block-pullquote has-medium-font-size"><blockquote><p>BOWL CENTRAL FAREHAM IS LOCATED OPPOSITE  MARKET QUAY CARPARK.<br>FREE PARKING AFTER 6PM EVERY DAY!!</p></blockquote></figure><div class="page-content alignfull page-content-holder page-content-1954970364" id="page-content1954970364"><h2 class="page-content-title">Opening Times</h2><div class="inner page-content-area"><div class="opening-block opening-block-holder opening-block-1160999480" ><div class="opening-blocks inner"><div class="opening-time"><h3>Term Times</h3><p class="opening-time-entry open-header">					        		<span class="open-day"></span>					        		<span class="open-time">Open</span>					        		<span class="open-close">Close</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Monday</span>					        		<span class="open-time">2:00 pm</span>					        		<span class="open-close">10:00 pm</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Tuesday</span>					        		<span class="open-time">2:00 pm</span>					        		<span class="open-close">10:00 pm</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Wednesday</span>					        		<span class="open-time">2:00 pm</span>					        		<span class="open-close">10:00 pm</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Thursday</span>					        		<span class="open-time">2:00 pm</span>					        		<span class="open-close">10:00 pm</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Friday</span>					        		<span class="open-time">2:00 pm</span>					        		<span class="open-close">12:00 am</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Saturday</span>					        		<span class="open-time">10:00 am</span>					        		<span class="open-close">12:00 am</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Sunday</span>					        		<span class="open-time">10:00 am</span>					        		<span class="open-close">10:00 pm</span>					        	</p></p></div><div class="opening-time"><h3>Holiday Times</h3><p class="opening-time-entry open-header">					        		<span class="open-day"></span>					        		<span class="open-time">Open</span>					        		<span class="open-close">Close</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Monday</span>					        		<span class="open-time">10:00 am</span>					        		<span class="open-close">10:00 pm</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Tuesday</span>					        		<span class="open-time">10:00 am</span>					        		<span class="open-close">10:00 pm</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Wednesday</span>					        		<span class="open-time">10:00 am</span>					        		<span class="open-close">10:00 pm</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Thursday</span>					        		<span class="open-time">10:00 am</span>					        		<span class="open-close">10:00 pm</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Friday</span>					        		<span class="open-time">10:00 am</span>					        		<span class="open-close">12:00 am</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Saturday</span>					        		<span class="open-time">10:00 am</span>					        		<span class="open-close">12:00 am</span>					        	</p><p class="opening-time-entry">					        		<span class="open-day">Sunday</span>					        		<span class="open-time">10:00 am</span>					        		<span class="open-close">10:00 pm</span>					        	</p></p></div></p></div></div><style>		.opening-time h3{	    color:#d70980 !important;        text-shadow: 0 0 18px #d70980;    }</style></p></div></div><style>	.page-content-1954970364.page-content-holder{		width: 100%;		background: rgba(255,255,255,0.1);		margin-bottom:15px;		position: relative;	} 	.page-content-1954970364.page-content-holder{		padding: 100px 0;	}	@media screen and (max-width:750px){		.page-content-1954970364.page-content-holder{			padding: 50px 0;		}	}</p><p>	.page-content-1954970364 .page-content-area {		position: relative;		width: 100%;	}	.page-content-area h2:first-child,	.page-content-area h3:first-child{		margin-top: 0;	}	figure.wp-block-gallery.has-nested-images {	   margin: 0;	}				.page-content-1954970364 h2.page-content-title{			    position: absolute;			    text-align: left;	    		top: 30px;			    left: 35px;			    font-size: 3.5em;			    transform: rotate(90deg);			    transform-origin: 0 100%;			    margin: 0;			    z-index: 30;			}			.page-content-1954970364.page-content-holder{				padding-left: 3.5em;			}			@media screen and (max-width:1000px){					.page-content-1954970364.page-content-holder {				    padding-left: 5.5em;				}			}			@media screen and (max-width:750px){				.page-content-1954970364.page-content-holder {				    padding-left: 0em;				}				.page-content-1954970364 h2.page-content-title{			    position: relative;			    text-align: center;	    		top: auto;			    left: auto;			    font-size: 3.5em;			    transform: rotate(0deg);			    transform-origin: 0;			    margin: 0px 0 40px;				}			}			@media screen and (max-width:550px){				.page-content-1954970364 h2.page-content-title{			    font-size: 2em;			  }			}				.page-content-1954970364 h2.page-content-title{          color:#d70980 !important;          text-shadow: 0 0 18px #d70980;        }			.page-content .wp-block-buttons>.wp-block-button{		margin: 40px 0 !important;	}		.page-content	a.wp-block-button__link {    border: 2px solid #d70980 !important;    color:#d70980 !important;    padding: 0.8em 2.5em !important;}.page-content .wp-block-paragraph a,.page-content .block-editor-block-list__layout  li a{	color:#d70980 !important;	line-height: 1.6em;}@media screen and (max-width:400px){	.page-content-area h2{		font-size: 1.9em !important;	}}</style><div class="location-callout location-callout-holder location-callout-1480723977 alignfull" ><a href="https://bowlcentral.co.uk/fareham-bowl-central/pins-fareham/" title="Pins" class="location-callout-lefttext"></p><article class="inner"><h2>Pins</h2><p class="location-callout-subtitle">Great bowling</p><p class="location-callout-arrow-holder"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 64.3 278.9" style="enable-background:new 0 0 64.3 278.9;" xml:space="preserve"><path class="location-callout-arrow" d="M64,140.1L10.6,3.6c0,0,0-0.1,0-0.1c-1.1-2.8-4.3-4.2-7.2-3c-2.8,1.1-4.2,4.3-3,7.2l52.5,134.5L0.4,271.4 C0.2,272,0,272.7,0,273.4c0,3,2.5,5.5,5.5,5.5c2.2,0,4.3-1.4,5.1-3.4l53.3-131.4C64.5,142.9,64.5,141.4,64,140.1z"/></svg></article><p>			</a>	</div><style>.location-callout-1480723977 {	width: 100%;	margin-bottom: 15px;}.location-callout-1480723977  div,.location-callout-1480723977  a{	width: 100%;	display: block;	background: url(https://bowlcentral.co.uk/wp-content/uploads/2022/12/pins-banner.jpg)black;	background-size: cover;	background-position: center;}.location-callout h2{  color:#d70980 !important;  text-shadow: 0 0 18px #d70980;}.location-callout p.location-callout-subtitle{  color:#d70980 !important;  text-shadow: 0 0 18px #d70980;}.location-callout article svg{	fill: #d70980 !important;	filter: drop-shadow(0px 0px 18px #d70980);}</style><div class="location-callout location-callout-holder location-callout-1010181387 alignfull" ><a href="https://bowlcentral.co.uk/fareham-bowl-central/prizes-fareham/" title="Prizes" class="location-callout-righttext"></p><article class="inner"><h2>Prizes</h2><p class="location-callout-subtitle">Games and prizes</p><p class="location-callout-arrow-holder"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 64.3 278.9" style="enable-background:new 0 0 64.3 278.9;" xml:space="preserve"><path class="location-callout-arrow" d="M64,140.1L10.6,3.6c0,0,0-0.1,0-0.1c-1.1-2.8-4.3-4.2-7.2-3c-2.8,1.1-4.2,4.3-3,7.2l52.5,134.5L0.4,271.4 C0.2,272,0,272.7,0,273.4c0,3,2.5,5.5,5.5,5.5c2.2,0,4.3-1.4,5.1-3.4l53.3-131.4C64.5,142.9,64.5,141.4,64,140.1z"/></svg></article><p>			</a>	</div><style>.location-callout-1010181387 {	width: 100%;	margin-bottom: 15px;}.location-callout-1010181387  div,.location-callout-1010181387  a{	width: 100%;	display: block;	background: url(https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8171-scaled.jpg)black;	background-size: cover;	background-position: center;}.location-callout h2{  color:#d70980 !important;  text-shadow: 0 0 18px #d70980;}.location-callout p.location-callout-subtitle{  color:#d70980 !important;  text-shadow: 0 0 18px #d70980;}.location-callout article svg{	fill: #d70980 !important;	filter: drop-shadow(0px 0px 18px #d70980);}</style><div class="location-callout location-callout-holder location-callout-116575908 alignfull" ><a href="https://bowlcentral.co.uk/fareham-bowl-central/parties-fareham/" title="Parties" class="location-callout-lefttext"></p><article class="inner"><h2>Parties</h2><p class="location-callout-subtitle">Want to book a party?</p><p class="location-callout-arrow-holder"><svg version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" x="0px" y="0px" viewBox="0 0 64.3 278.9" style="enable-background:new 0 0 64.3 278.9;" xml:space="preserve"><path class="location-callout-arrow" d="M64,140.1L10.6,3.6c0,0,0-0.1,0-0.1c-1.1-2.8-4.3-4.2-7.2-3c-2.8,1.1-4.2,4.3-3,7.2l52.5,134.5L0.4,271.4 C0.2,272,0,272.7,0,273.4c0,3,2.5,5.5,5.5,5.5c2.2,0,4.3-1.4,5.1-3.4l53.3-131.4C64.5,142.9,64.5,141.4,64,140.1z"/></svg></article><p>			</a>	</div><style>.location-callout-116575908 {	width: 100%;	margin-bottom: 15px;}.location-callout-116575908  div,.location-callout-116575908  a{	width: 100%;	display: block;	background: url(https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8469-scaled.jpg)black;	background-size: cover;	background-position: center;}.location-callout h2{  color:#d70980 !important;  text-shadow: 0 0 18px #d70980;}.location-callout p.location-callout-subtitle{  color:#d70980 !important;  text-shadow: 0 0 18px #d70980;}.location-callout article svg{	fill: #d70980 !important;	filter: drop-shadow(0px 0px 18px #d70980);}</style><div class="page-content alignfull page-content-holder page-content-1550676542" id="page-content1550676542"><h2 class="page-content-title">Gallery</h2><div class=" page-content-area"><figure class="wp-block-gallery alignfull has-nested-images columns-4 is-cropped wp-block-gallery-4 is-layout-flex wp-block-gallery-is-layout-flex"><figure class="wp-block-image size-large"><img decoding="async" width="800" height="920" data-src="https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-2.jpg" alt="" class="wp-image-771 lazyload" data-srcset="https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-2.jpg 800w, https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-2-261x300.jpg 261w, https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-2-768x883.jpg 768w" data-sizes="(max-width: 800px) 100vw, 800px" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="--smush-placeholder-width: 800px; --smush-placeholder-aspect-ratio: 800/920;" /><noscript><img decoding="async" width="800" height="920" src="https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-2.jpg" alt="" class="wp-image-771" srcset="https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-2.jpg 800w, https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-2-261x300.jpg 261w, https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-2-768x883.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" /></noscript></figure><figure class="wp-block-image size-large is-style-default"><img loading="lazy" decoding="async" width="683" height="1024" data-src="https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-683x1024.jpg" alt="" class="wp-image-2581 lazyload" data-srcset="https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-683x1024.jpg 683w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-200x300.jpg 200w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-768x1152.jpg 768w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-1024x1536.jpg 1024w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-1365x2048.jpg 1365w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-scaled.jpg 1707w" data-sizes="(max-width: 683px) 100vw, 683px" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="--smush-placeholder-width: 683px; --smush-placeholder-aspect-ratio: 683/1024;" /><noscript><img loading="lazy" decoding="async" width="683" height="1024" src="https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-683x1024.jpg" alt="" class="wp-image-2581" srcset="https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-683x1024.jpg 683w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-200x300.jpg 200w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-768x1152.jpg 768w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-1024x1536.jpg 1024w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-1365x2048.jpg 1365w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8928-scaled.jpg 1707w" sizes="(max-width: 683px) 100vw, 683px" /></noscript></figure><figure class="wp-block-image size-full"><img loading="lazy" decoding="async" width="800" height="920" data-src="https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-5.jpg" alt="" class="wp-image-774 lazyload" data-srcset="https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-5.jpg 800w, https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-5-261x300.jpg 261w, https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-5-768x883.jpg 768w" data-sizes="(max-width: 800px) 100vw, 800px" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="--smush-placeholder-width: 800px; --smush-placeholder-aspect-ratio: 800/920;" /><noscript><img loading="lazy" decoding="async" width="800" height="920" src="https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-5.jpg" alt="" class="wp-image-774" srcset="https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-5.jpg 800w, https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-5-261x300.jpg 261w, https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-5-768x883.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" /></noscript></figure><figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="683" height="1024" data-src="https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-683x1024.jpg" alt="" class="wp-image-2580 lazyload" data-srcset="https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-683x1024.jpg 683w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-200x300.jpg 200w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-768x1152.jpg 768w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-1024x1536.jpg 1024w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-1365x2048.jpg 1365w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-scaled.jpg 1707w" data-sizes="(max-width: 683px) 100vw, 683px" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="--smush-placeholder-width: 683px; --smush-placeholder-aspect-ratio: 683/1024;" /><noscript><img loading="lazy" decoding="async" width="683" height="1024" src="https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-683x1024.jpg" alt="" class="wp-image-2580" srcset="https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-683x1024.jpg 683w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-200x300.jpg 200w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-768x1152.jpg 768w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-1024x1536.jpg 1024w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-1365x2048.jpg 1365w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A8578-scaled.jpg 1707w" sizes="(max-width: 683px) 100vw, 683px" /></noscript></figure><figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="782" data-src="https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.51.48-1024x782.png" alt="" class="wp-image-2574 lazyload" data-srcset="https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.51.48-1024x782.png 1024w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.51.48-300x229.png 300w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.51.48-768x586.png 768w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.51.48.png 1134w" data-sizes="(max-width: 1024px) 100vw, 1024px" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="--smush-placeholder-width: 1024px; --smush-placeholder-aspect-ratio: 1024/782;" /><noscript><img loading="lazy" decoding="async" width="1024" height="782" src="https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.51.48-1024x782.png" alt="" class="wp-image-2574" srcset="https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.51.48-1024x782.png 1024w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.51.48-300x229.png 300w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.51.48-768x586.png 768w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.51.48.png 1134w" sizes="(max-width: 1024px) 100vw, 1024px" /></noscript></figure><figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="800" height="920" data-src="https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-6.jpg" alt="" class="wp-image-775 lazyload" data-srcset="https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-6.jpg 800w, https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-6-261x300.jpg 261w, https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-6-768x883.jpg 768w" data-sizes="(max-width: 800px) 100vw, 800px" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="--smush-placeholder-width: 800px; --smush-placeholder-aspect-ratio: 800/920;" /><noscript><img loading="lazy" decoding="async" width="800" height="920" src="https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-6.jpg" alt="" class="wp-image-775" srcset="https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-6.jpg 800w, https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-6-261x300.jpg 261w, https://bowlcentral.co.uk/wp-content/uploads/2022/12/bournemouth-gallery-6-768x883.jpg 768w" sizes="(max-width: 800px) 100vw, 800px" /></noscript></figure><figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="1024" height="929" data-src="https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.56.10-1024x929.png" alt="" class="wp-image-2579 lazyload" data-srcset="https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.56.10-1024x929.png 1024w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.56.10-300x272.png 300w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.56.10-768x697.png 768w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.56.10.png 1140w" data-sizes="(max-width: 1024px) 100vw, 1024px" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="--smush-placeholder-width: 1024px; --smush-placeholder-aspect-ratio: 1024/929;" /><noscript><img loading="lazy" decoding="async" width="1024" height="929" src="https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.56.10-1024x929.png" alt="" class="wp-image-2579" srcset="https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.56.10-1024x929.png 1024w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.56.10-300x272.png 300w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.56.10-768x697.png 768w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/Screenshot-2023-04-12-at-10.56.10.png 1140w" sizes="(max-width: 1024px) 100vw, 1024px" /></noscript></figure><figure class="wp-block-image size-large"><img loading="lazy" decoding="async" width="683" height="1024" data-src="https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-683x1024.jpg" alt="" class="wp-image-2582 lazyload" data-srcset="https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-683x1024.jpg 683w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-200x300.jpg 200w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-768x1152.jpg 768w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-1024x1536.jpg 1024w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-1365x2048.jpg 1365w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-scaled.jpg 1707w" data-sizes="(max-width: 683px) 100vw, 683px" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" style="--smush-placeholder-width: 683px; --smush-placeholder-aspect-ratio: 683/1024;" /><noscript><img loading="lazy" decoding="async" width="683" height="1024" src="https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-683x1024.jpg" alt="" class="wp-image-2582" srcset="https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-683x1024.jpg 683w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-200x300.jpg 200w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-768x1152.jpg 768w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-1024x1536.jpg 1024w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-1365x2048.jpg 1365w, https://bowlcentral.co.uk/wp-content/uploads/2023/04/0Z3A9213-scaled.jpg 1707w" sizes="(max-width: 683px) 100vw, 683px" /></noscript></figure></figure></div></div><style>	.page-content-1550676542.page-content-holder{		width: 100%;		background: rgba(255,255,255,0.1);		margin-bottom:15px;		position: relative;	}</p><p>	.page-content-1550676542 .page-content-area {		position: relative;		width: 100%;	}	.page-content-area h2:first-child,	.page-content-area h3:first-child{		margin-top: 0;	}	figure.wp-block-gallery.has-nested-images {	   margin: 0;	}				.page-content-1550676542.page-content-holder{				background: rgba(255,255,255,0);			}			.page-content-1550676542 h2.page-content-title{				position: absolute;				top: 50%;				left: 50%;				font-size: 5em;				transform: translateX(-50%) translateY(-50%);				margin: 0;				padding: 40px;				text-align: center;				background: rgba(0, 0, 0, 0.7);				z-index: 30;			}			@media screen and (max-width:750px){				.page-content-1550676542 h2.page-content-title{					font-size: 4em;				}			}			@media screen and (max-width:450px){				.page-content-1550676542 h2.page-content-title{					font-size: 2em;					padding: 25px;				}			}				.page-content-1550676542 h2.page-content-title{          color:#d70980 !important;          text-shadow: 0 0 18px #d70980;        }			.page-content .wp-block-buttons>.wp-block-button{		margin: 40px 0 !important;	}		.page-content	a.wp-block-button__link {    border: 2px solid #d70980 !important;    color:#d70980 !important;    padding: 0.8em 2.5em !important;}.page-content .wp-block-paragraph a,.page-content .block-editor-block-list__layout  li a{	color:#d70980 !important;	line-height: 1.6em;}@media screen and (max-width:400px){	.page-content-area h2{		font-size: 1.9em !important;	}}</style><style>.contact-block-info-details h2{	color:#d70980 !important;	text-shadow: 0 0 18px #d70980;}.contact-block-info-links a{	border:1px solid #d70980;	background: rgba(215,9,128,0.1);}.contact-block-info-book a{	border:1px solid #d70980;	background: rgba(215,9,128,0.1);}</style><div class="contact-block contact-block-holder contact-block-1062461358 alignfull" ><div class="contact-block-info"><div class="contact-block-info-details"><h2>Contact Us</h2><p><span>Pins</span>					<span>01329 760922</span>				</p><p><span>Prizes</span>					<span>01329 760922</span>				</p><p><span>Find Us</span>					<span>Unit 4, Market Quay, <br />1 Vanness Parade, <br />Fareham, <br />PO16 0BX</span>				</p></p></div><div class="contact-block-info-links">							<a href="https://bowlcentral.co.uk/fareham-bowl-central/contact-fareham-bowl-central/" title="Contact Fareham Bowl Central" >Contact Us</a>									<a href="https://goo.gl/maps/JANeqi89E4cnvrAR9" title="Get directions to Fareham Bowl Central" target="_blank">Get Directions</a>					</div><div class="contact-block-info-book">				<a href="https://secure.meriq.com/bowlcentral/" title="Book Now at Fareham Bowl Central">Book Now</a>			</div></p></div><div class="contact-block-map">		<iframe data-src="https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d2518.8855625207466!2d-1.1806650842540247!3d50.851803379532704!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0%3A0xfd1b29630f8742cc!2sBowl%20Central%20Fareham!5e0!3m2!1sen!2suk!4v1673452495152!5m2!1sen!2suk" width="600" height="450" style="border:0;" allowfullscreen="" loading="lazy" referrerpolicy="no-referrer-when-downgrade" src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw==" class="lazyload" data-load-mode="1"></iframe>	</div></div>            <style>
        h1{
          color:#d70980 !important;
          text-shadow: 0 0 18px #d70980;
        }
        ul.wp-block-navigation__container li a{
          border: 1px solid #d70980;
          background: rgba(215,9,128,0.1);
        }     

        button.wp-block-navigation__responsive-container-open {
          border-color:#d70980;
          background: rgba(215,9,128,0.1);
        }
      </style>

  


		<footer class="main-footer">
			<div class="inner">
				<p> &copy; 2024  Bowl Central <span> | </span> <a href="https://bowlcentral.co.uk/privacy-policy/">Cookie Policy</a> <span> | </span> <a href="https://bowlcentral.co.uk/terms-and-conditions/" title="Bowl central - Terms and Conditions">Terms &amp; Conditions</a></p>
				<p>Designed and built by <a href="https://telappliant.com" title="Telappliant - High quality web and print deisgn" target="_blank">Telappliant Ltd</a></p>
			</div>
		</footer>
	</div>

<!-- Footer scripts enqueued in functions.php -->

<script id="wp-load-polyfill-importmap">
( HTMLScriptElement.supports && HTMLScriptElement.supports("importmap") ) || document.write( '<script src="https://bowlcentral.co.uk/wp-includes/js/dist/vendor/wp-polyfill-importmap.min.js"></scr' + 'ipt>' );
</script>
<script type="importmap" id="wp-importmap">
{"imports":{"@wordpress\/interactivity":"https:\/\/bowlcentral.co.uk\/wp-includes\/js\/dist\/interactivity.min.js?ver=6.5.3"}}
</script>
<script type="module" src="https://bowlcentral.co.uk/wp-includes/blocks/navigation/view.min.js?ver=6.5.3" id="@wordpress/block-library/navigation-js-module"></script>
<link rel="modulepreload" href="https://bowlcentral.co.uk/wp-includes/js/dist/interactivity.min.js?ver=6.5.3" id="@wordpress/interactivity-js-modulepreload"><style id='core-block-supports-inline-css'>
.wp-container-content-1{flex-basis:230px;}.wp-container-content-2{flex-basis:255px;}.wp-container-core-navigation-is-layout-1.wp-container-core-navigation-is-layout-1{flex-wrap:nowrap;justify-content:center;}.wp-block-gallery.wp-block-gallery-4{--wp--style--unstable-gallery-gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );gap:var( --wp--style--gallery-gap-default, var( --gallery-block--gutter-size, var( --wp--style--block-gap, 0.5em ) ) );}
</style>
<script defer src="https://hb.wpmucdn.com/bowlcentral.co.uk/24f285b8-bff9-4e71-ba66-1dd2b23c7db5.js" id="wphb-3-js"></script>
  <noscript>
    <style>
      [data-lazy-asset],
      [data-lazy-template] {
        opacity: 1!important;
      }
    </style>
  </noscript>
  
</body>
</html><!-- Hummingbird cache file was created in 2.6726570129395 seconds, on 17-05-24 9:54:33 -->

Latest requests

# Url Url Source Date
1 https://bowlcentral.co.uk/fareham-… 2024-05-18 02:15:12
2 https://thebolditalic.com/?gi=662a… 2024-05-18 02:15:12
3 https://thebolditalic.com/?gi=7283… 2024-05-18 02:15:11
4 https://thebolditalic.com/?gi=250a… 2024-05-18 02:15:09
5 https://tendoncare12.b-cdn.net/res… 2024-05-18 02:15:08
6 https://megahmegahmegah.com 2024-05-18 02:15:07
7 https://thebolditalic.com/?gi=29bb… 2024-05-18 02:15:06
8 https://thebolditalic.com/?gi=6c20… 2024-05-18 02:15:06
9 https://thebolditalic.com/?gi=79ca… 2024-05-18 02:15:06
10 https://thebolditalic.com/?gi=177e… 2024-05-18 02:15:01
11 https://mmsi-pkc.auth0.com/login?s… 2024-05-18 02:14:57
12 https://mmsi-pkc.auth0.com/login?s… 2024-05-18 02:14:57
13 https://thebolditalic.com/?gi=9e64… 2024-05-18 02:14:57
14 https://www.loginsu.com/ 2024-05-18 02:14:55
15 https://thebolditalic.com/?gi=b2ff… 2024-05-18 02:14:53
16 https://mmsi-pkc.auth0.com/login?s… 2024-05-18 02:14:52
17 https://thebolditalic.com/?gi=4002… 2024-05-18 02:14:51
18 https://thebolditalic.com/?gi=1a8e… 2024-05-18 02:14:49
19 https://thebolditalic.com/?gi=6ee7… 2024-05-18 02:14:48
20 https://thebolditalic.com/?gi=4869… 2024-05-18 02:14:45