An 8-Point Checklist for Debugging Strange Technical SEO Problems

An 8-Point Checklist for Debugging Strange Technical SEO Problems

An 8-Point Checklist for Debugging Strange Technical SEO Problems 1920 1281 Dom-Woodman

Posted by Dom-Woodman

Occasionally, a problem will land on your desk that’s a little out of the ordinary. Something where you don’t have an easy answer. You go to your brain and your brain returns nothing.

These problems can’t be solved with a little bit of keyword research and basic technical configuration. These are the types of technical SEO problems where the rabbit hole goes deep.

The very nature of these situations defies a checklist, but it’s useful to have one for the same reason we have them on planes: even the best of us can and will forget things, and a checklist will provvide you with places to dig.


Fancy some examples of strange SEO problems? Here are four examples to mull over while you read. We’ll answer them at the end.

1. Why wasn’t Google showing 5-star markup on product pages?

  • The pages had server-rendered product markup and they also had Feefo product markup, including ratings being attached client-side.
  • The Feefo ratings snippet was successfully rendered in Fetch & Render, plus the mobile-friendly tool.
  • When you put the rendered DOM into the structured data testing tool, both pieces of structured data appeared without errors.

2. Why wouldn’t Bing display 5-star markup on review pages, when Google would?

  • The review pages of client & competitors all had rating rich snippets on Google.
  • All the competitors had rating rich snippets on Bing; however, the client did not.
  • The review pages had correctly validating ratings schema on Google’s structured data testing tool, but did not on Bing.

3. Why were pages getting indexed with a no-index tag?

  • Pages with a server-side-rendered no-index tag in the head were being indexed by Google across a large template for a client.

4. Why did any page on a website return a 302 about 20–50% of the time, but only for crawlers?

  • A website was randomly throwing 302 errors.
  • This never happened in the browser and only in crawlers.
  • User agent made no difference; location or cookies also made no difference.

Finally, a quick note. It’s entirely possible that some of this checklist won’t apply to every scenario. That’s totally fine. It’s meant to be a process for everything you could check, not everything you should check.

The pre-checklist check

Does it actually matter?

Does this problem only affect a tiny amount of traffic? Is it only on a handful of pages and you already have a big list of other actions that will help the website? You probably need to just drop it.

I know, I hate it too. I also want to be right and dig these things out. But in six months’ time, when you’ve solved twenty complex SEO rabbit holes and your website has stayed flat because you didn’t re-write the title tags, you’re still going to get fired.

But hopefully that’s not the case, in which case, onwards!

Where are you seeing the problem?

We don’t want to waste a lot of time. Have you heard this wonderful saying?: “If you hear hooves, it’s probably not a zebra.”

The process we’re about to go through is fairly involved and it’s entirely up to your discretion if you want to go ahead. Just make sure you’re not overlooking something obvious that would solve your problem. Here are some common problems I’ve come across that were mostly horses.

  1. You’re underperforming from where you should be.
    1. When a site is under-performing, people love looking for excuses. Weird Google nonsense can be quite a handy thing to blame. In reality, it’s typically some combination of a poor site, higher competition, and a failing brand. Horse.
  2. You’ve suffered a sudden traffic drop.
    1. Something has certainly happened, but this is probably not the checklist for you. There are plenty of common-sense checklists for this. I’ve written about diagnosing traffic drops recently — check that out first.
  3. The wrong page is ranking for the wrong query.
    1. In my experience (which should probably preface this entire post), this is usually a basic problem where a site has poor targeting or a lot of cannibalization. Probably a horse.

Factors which make it more likely that you’ve got a more complex problem which require you to don your debugging shoes:

  • A website that has a lot of client-side JavaScript.
  • Bigger, older websites with more legacy.
  • Your problem is related to a new Google property or feature where there is less community knowledge.

1. Start by picking some example pages.

Pick a couple of example pages to work with — ones that exhibit whatever problem you’re seeing. No, this won’t be representative, but we’ll come back to that in a bit.

Of course, if it only affects a tiny number of pages then it might actually be representative, in which case we’re good. It definitely matters, right? You didn’t just skip the step above? OK, cool, let’s move on.

2. Can Google crawl the page once?

First we’re checking whether Googlebot has access to the page, which we’ll define as a 200 status code.

We’ll check in four different ways to expose any common issues:

  1. Robots.txt: Open up Search Console and check in the robots.txt validator.
  2. User agent: Open Dev Tools and verify that you can open the URL with both Googlebot and Googlebot Mobile.
    1. To get the user agent switcher, open Dev Tools.
    2. Check the console drawer is open (the toggle is the Escape key)
    3. Hit the … and open “Network conditions”
    4. Here, select your user agent!

  1. IP Address: Verify that you can access the page with the mobile testing tool. (This will come from one of the IPs used by Google; any checks you do from your computer won’t.)
  2. Country: The mobile testing tool will visit from US IPs, from what I’ve seen, so we get two birds with one stone. But Googlebot will occasionally crawl from non-American IPs, so it’s also worth using a VPN to double-check whether you can access the site from any other relevant countries.
    1. I’ve used HideMyAss for this before, but whatever VPN you have will work fine.

We should now have an idea whether or not Googlebot is struggling to fetch the page once.

Have we found any problems yet?

If we can re-create a failed crawl with a simple check above, then it’s likely Googlebot is probably failing consistently to fetch our page and it’s typically one of those basic reasons.

But it might not be. Many problems are inconsistent because of the nature of technology. 😉

3. Are we telling Google two different things?

Next up: Google can find the page, but are we confusing it by telling it two different things?

This is most commonly seen, in my experience, because someone has messed up the indexing directives.

By “indexing directives,” I’m referring to any tag that defines the correct index status or page in the index which should rank. Here’s a non-exhaustive list:

  • No-index
  • Canonical
  • Mobile alternate tags
  • AMP alternate tags

An example of providing mixed messages would be:

  • No-indexing page A
  • Page B canonicals to page A

Or:

  • Page A has a canonical in a header to A with a parameter
  • Page A has a canonical in the body to A without a parameter

If we’re providing mixed messages, then it’s not clear how Google will respond. It’s a great way to start seeing strange results.

Good places to check for the indexing directives listed above are:

  • Sitemap
    • Example: Mobile alternate tags can sit in a sitemap
  • HTTP headers
    • Example: Canonical and meta robots can be set in headers.
  • HTML head
    • This is where you’re probably looking, you’ll need this one for a comparison.
  • JavaScript-rendered vs hard-coded directives
    • You might be setting one thing in the page source and then rendering another with JavaScript, i.e. you would see something different in the HTML source from the rendered DOM.
  • Google Search Console settings
    • There are Search Console settings for ignoring parameters and country localization that can clash with indexing tags on the page.

A quick aside on rendered DOM

This page has a lot of mentions of the rendered DOM on it (18, if you’re curious). Since we’ve just had our first, here’s a quick recap about what that is.

When you load a webpage, the first request is the HTML. This is what you see in the HTML source (right-click on a webpage and click View Source).

This is before JavaScript has done anything to the page. This didn’t use to be such a big deal, but now so many websites rely heavily on JavaScript that the most people quite reasonably won’t trust the the initial HTML.

Rendered DOM is the technical term for a page, when all the JavaScript has been rendered and all the page alterations made. You can see this in Dev Tools.

In Chrome you can get that by right clicking and hitting inspect element (or Ctrl + Shift + I). The Elements tab will show the DOM as it’s being rendered. When it stops flickering and changing, then you’ve got the rendered DOM!

4. Can Google crawl the page consistently?

To see what Google is seeing, we’re going to need to get log files. At this point, we can check to see how it is accessing the page.

Aside: Working with logs is an entire post in and of itself. I’ve written a guide to log analysis with BigQuery, I’d also really recommend trying out Screaming Frog Log Analyzer, which has done a great job of handling a lot of the complexity around logs.

When we’re looking at crawling there are three useful checks we can do:

  1. Status codes: Plot the status codes over time. Is Google seeing different status codes than you when you check URLs?
  2. Resources: Is Google downloading all the resources of the page?
    1. Is it downloading all your site-specific JavaScript and CSS files that it would need to generate the page?
  3. Page size follow-up: Take the max and min of all your pages and resources and diff them. If you see a difference, then Google might be failing to fully download all the resources or pages. (Hat tip to @ohgm, where I first heard this neat tip).

Have we found any problems yet?

If Google isn’t getting 200s consistently in our log files, but we can access the page fine when we try, then there is clearly still some differences between Googlebot and ourselves. What might those differences be?

  1. It will crawl more than us
  2. It is obviously a bot, rather than a human pretending to be a bot
  3. It will crawl at different times of day

This means that:

  • If our website is doing clever bot blocking, it might be able to differentiate between us and Googlebot.
  • Because Googlebot will put more stress on our web servers, it might behave differently. When websites have a lot of bots or visitors visiting at once, they might take certain actions to help keep the website online. They might turn on more computers to power the website (this is called scaling), they might also attempt to rate-limit users who are requesting lots of pages, or serve reduced versions of pages.
  • Servers run tasks periodically; for example, a listings website might run a daily task at 01:00 to clean up all it’s old listings, which might affect server performance.

Working out what’s happening with these periodic effects is going to be fiddly; you’re probably going to need to talk to a back-end developer.

Depending on your skill level, you might not know exactly where to lead the discussion. A useful structure for a discussion is often to talk about how a request passes through your technology stack and then look at the edge cases we discussed above.

  • What happens to the servers under heavy load?
  • When do important scheduled tasks happen?

Two useful pieces of information to enter this conversation with:

  1. Depending on the regularity of the problem in the logs, it is often worth trying to re-create the problem by attempting to crawl the website with a crawler at the same speed/intensity that Google is using to see if you can find/cause the same issues. This won’t always be possible depending on the size of the site, but for some sites it will be. Being able to consistently re-create a problem is the best way to get it solved.
  2. If you can’t, however, then try to provide the exact periods of time where Googlebot was seeing the problems. This will give the developer the best chance of tying the issue to other logs to let them debug what was happening.

If Google can crawl the page consistently, then we move onto our next step.

5. Does Google see what I can see on a one-off basis?

We know Google is crawling the page correctly. The next step is to try and work out what Google is seeing on the page. If you’ve got a JavaScript-heavy website you’ve probably banged your head against this problem before, but even if you don’t this can still sometimes be an issue.

We follow the same pattern as before. First, we try to re-create it once. The following tools will let us do that:

  • Fetch & Render
    • Shows: Rendered DOM in an image, but only returns the page source HTML for you to read.
  • Mobile-friendly test
    • Shows: Rendered DOM and returns rendered DOM for you to read.
    • Not only does this show you rendered DOM, but it will also track any console errors.

Is there a difference between Fetch & Render, the mobile-friendly testing tool, and Googlebot? Not really, with the exception of timeouts (which is why we have our later steps!). Here’s the full analysis of the difference between them, if you’re interested.

Once we have the output from these, we compare them to what we ordinarily see in our browser. I’d recommend using a tool like Diff Checker to compare the two.

Have we found any problems yet?

If we encounter meaningful differences at this point, then in my experience it’s typically either from JavaScript or cookies

Why?

We can isolate each of these by:

  • Loading the page with no cookies. This can be done simply by loading the page with a fresh incognito session and comparing the rendered DOM here against the rendered DOM in our ordinary browser.
  • Use the mobile testing tool to see the page with Chrome 41 and compare against the rendered DOM we normally see with Inspect Element.

Yet again we can compare them using something like Diff Checker, which will allow us to spot any differences. You might want to use an HTML formatter to help line them up better.

We can also see the JavaScript errors thrown using the Mobile-Friendly Testing Tool, which may prove particularly useful if you’re confident in your JavaScript.

If, using this knowledge and these tools, we can recreate the bug, then we have something that can be replicated and it’s easier for us to hand off to a developer as a bug that will get fixed.

If we’re seeing everything is correct here, we move on to the next step.

6. What is Google actually seeing?

It’s possible that what Google is seeing is different from what we recreate using the tools in the previous step. Why? A couple main reasons:

  • Overloaded servers can have all sorts of strange behaviors. For example, they might be returning 200 codes, but perhaps with a default page.
  • JavaScript is rendered separately from pages being crawled and Googlebot may spend less time rendering JavaScript than a testing tool.
  • There is often a lot of caching in the creation of web pages and this can cause issues.

We’ve gotten this far without talking about time! Pages don’t get crawled instantly, and crawled pages don’t get indexed instantly.

Quick sidebar: What is caching?

Caching is often a problem if you get to this stage. Unlike JS, it’s not talked about as much in our community, so it’s worth some more explanation in case you’re not familiar. Caching is storing something so it’s available more quickly next time.

When you request a webpage, a lot of calculations happen to generate that page. If you then refreshed the page when it was done, it would be incredibly wasteful to just re-run all those same calculations. Instead, servers will often save the output and serve you the output without re-running them. Saving the output is called caching.

Why do we need to know this? Well, we’re already well out into the weeds at this point and so it’s possible that a cache is misconfigured and the wrong information is being returned to users.

There aren’t many good beginner resources on caching which go into more depth. However, I found this article on caching basics to be one of the more friendly ones. It covers some of the basic types of caching quite well.

How can we see what Google is actually working with?

  • Google’s cache
    • Shows: Source code
    • While this won’t show you the rendered DOM, it is showing you the raw HTML Googlebot actually saw when visiting the page. You’ll need to check this with JS disabled; otherwise, on opening it, your browser will run all the JS on the cached version.
  • Site searches for specific content
    • Shows: A tiny snippet of rendered content.
    • By searching for a specific phrase on a page, e.g. inurl:example.com/url “only JS rendered text”, you can see if Google has manage to index a specific snippet of content. Of course, it only works for visible text and misses a lot of the content, but it’s better than nothing!
    • Better yet, do the same thing with a rank tracker, to see if it changes over time.
  • Storing the actual rendered DOM
    • Shows: Rendered DOM
    • Alex from DeepCrawl has written about saving the rendered DOM from Googlebot. The TL;DR version: Google will render JS and post to endpoints, so we can get it to submit the JS-rendered version of a page that it sees. We can then save that, examine it, and see what went wrong.

Have we found any problems yet?

Again, once we’ve found the problem, it’s time to go and talk to a developer. The advice for this conversation is identical to the last one — everything I said there still applies.

The other knowledge you should go into this conversation armed with: how Google works and where it can struggle. While your developer will know the technical ins and outs of your website and how it’s built, they might not know much about how Google works. Together, this can help you reach the answer more quickly.

The obvious source for this are resources or presentations given by Google themselves. Of the various resources that have come out, I’ve found these two to be some of the more useful ones for giving insight into first principles:

But there is often a difference between statements Google will make and what the SEO community sees in practice. All the SEO experiments people tirelessly perform in our industry can also help shed some insight. There are far too many list here, but here are two good examples:

7. Could Google be aggregating your website across others?

If we’ve reached this point, we’re pretty happy that our website is running smoothly. But not all problems can be solved just on your website; sometimes you’ve got to look to the wider landscape and the SERPs around it.

Most commonly, what I’m looking for here is:

  • Similar/duplicate content to the pages that have the problem.
    • This could be intentional duplicate content (e.g. syndicating content) or unintentional (competitors’ scraping or accidentally indexed sites).

Either way, they’re nearly always found by doing exact searches in Google. I.e. taking a relatively specific piece of content from your page and searching for it in quotes.

Have you found any problems yet?

If you find a number of other exact copies, then it’s possible they might be causing issues.

The best description I’ve come up with for “have you found a problem here?” is: do you think Google is aggregating together similar pages and only showing one? And if it is, is it picking the wrong page?

This doesn’t just have to be on traditional Google search. You might find a version of it on Google Jobs, Google News, etc.

To give an example, if you are a reseller, you might find content isn’t ranking because there’s another, more authoritative reseller who consistently posts the same listings first.

Sometimes you’ll see this consistently and straightaway, while other times the aggregation might be changing over time. In that case, you’ll need a rank tracker for whatever Google property you’re working on to see it.

Jon Earnshaw from Pi Datametrics gave an excellent talk on the latter (around suspicious SERP flux) which is well worth watching.

Once you’ve found the problem, you’ll probably need to experiment to find out how to get around it, but the easiest factors to play with are usually:

  • De-duplication of content
  • Speed of discovery (you can often improve by putting up a 24-hour RSS feed of all the new content that appears)
  • Lowering syndication

8. A roundup of some other likely suspects

If you’ve gotten this far, then we’re sure that:

  • Google can consistently crawl our pages as intended.
  • We’re sending Google consistent signals about the status of our page.
  • Google is consistently rendering our pages as we expect.
  • Google is picking the correct page out of any duplicates that might exist on the web.

And your problem still isn’t solved?

And it is important?

Well, shoot.

Feel free to hire us…?

As much as I’d love for this article to list every SEO problem ever, that’s not really practical, so to finish off this article let’s go through two more common gotchas and principles that didn’t really fit in elsewhere before the answers to those four problems we listed at the beginning.

Invalid/poorly constructed HTML

You and Googlebot might be seeing the same HTML, but it might be invalid or wrong. Googlebot (and any crawler, for that matter) has to provide workarounds when the HTML specification isn’t followed, and those can sometimes cause strange behavior.

The easiest way to spot it is either by eye-balling the rendered DOM tools or using an HTML validator.

The W3C validator is very useful, but will throw up a lot of errors/warnings you won’t care about. The closest I can give to a one-line of summary of which ones are useful is to:

  • Look for errors
  • Ignore anything to do with attributes (won’t always apply, but is often true).

The classic example of this is breaking the head.

An iframe isn’t allowed in the head code, so Chrome will end the head and start the body. Unfortunately, it takes the title and canonical with it, because they fall after it — so Google can’t read them. The head code should have ended in a different place.

Oliver Mason wrote a good post that explains an even more subtle version of this in breaking the head quietly.

When in doubt, diff

Never underestimate the power of trying to compare two things line by line with a diff from something like Diff Checker. It won’t apply to everything, but when it does it’s powerful.

For example, if Google has suddenly stopped showing your featured markup, try to diff your page against a historical version either in your QA environment or from the Wayback Machine.


Answers to our original 4 questions

Time to answer those questions. These are all problems we’ve had clients bring to us at Distilled.

1. Why wasn’t Google showing 5-star markup on product pages?

Google was seeing both the server-rendered markup and the client-side-rendered markup; however, the server-rendered side was taking precedence.

Removing the server-rendered markup meant the 5-star markup began appearing.

2. Why wouldn’t Bing display 5-star markup on review pages, when Google would?

The problem came from the references to schema.org.

        

Avatar

Director: James Cameron (born August 16, 1954)

Science fiction

Trailer

We diffed our markup against our competitors and the only difference was we’d referenced the HTTPS version of schema.org in our itemtype, which caused Bing to not support it.

C’mon, Bing.

3. Why were pages getting indexed with a no-index tag?

The answer for this was in this post. This was a case of breaking the head.

The developers had installed some ad-tech in the head and inserted an non-standard tag, i.e. not:

  • </li><li><style></li><li><base></li><li><link></li><li><meta></li><li><script></li> <li><noscript></li> </ul> <p>This caused the head to end prematurely and the no-index tag was left in the body where it wasn’t read. </p> <p><strong>4. Why did any page on a website return a 302 about 20–50% of the time, but only for crawlers?<br /> </strong></p> <p>This took some time to figure out. The client had an old legacy website that has two servers, one for the blog and one for the rest of the site. This issue started occurring shortly after a migration of the blog from a subdomain (blog.client.com) to a subdirectory (client.com/blog/…). </p> <p>At surface level everything was fine; if a user requested any individual page, it all looked good. A crawl of all the blog URLs to check they’d redirected was fine. </p> <p>But we noticed a sharp increase of errors being flagged in Search Console, and during a routine site-wide crawl, many pages that were fine when checked manually were causing redirect loops. </p> <p>We checked using Fetch and Render, but once again, the pages were fine.</p> <p>Eventually, it turned out that when a non-blog page was requested very quickly after a blog page (which, realistically, only a crawler is fast enough to achieve), the request for the non-blog page would be sent to the blog server. </p> <p>These would then be caught by a long-forgotten redirect rule, which 302-redirected deleted blog posts (or other duff URLs) to the root. This, in turn, was caught by a blanket HTTP to HTTPS 301 redirect rule, which would be requested from the blog server again, perpetuating the loop. </p> <p>For example, requesting <a href="https://www.client.com/blog/">https://www.client.com/blog/</a> followed quickly enough by <a href="https://www.client.co">https://www.client.co</a>m/category/ would result in: </p> <ul> <li>302 to <a href="http://www.client.com">http://www.client.com</a> - This was the rule that redirected deleted blog posts to the root</li> <li>301 to <a href="https://www.client.co">https://www.client.co</a>m - This was the blanket HTTPS redirect</li> <li>302 to <a href="http://www.client.com">http://www.client.com</a> - The blog server doesn’t know about the HTTPS non-blog homepage and it redirects back to the HTTP version. Rinse and repeat.</li> </ul> <p>This caused the periodic 302 errors and it meant we could work with their devs to fix the problem. </p> <h2>What are the best brainteasers you've had?</h2> <p>Let’s hear them, people. What problems have you run into? <a href="https://moz.com/blog/checklist-strange-technical-seo-problems#comments">Let us know in the comments</a>.</p> <p>Also credit to <a href="https://twitter.com/RobinLord8" target="_blank">@RobinLord8</a>, <a href="https://twitter.com/TomAnthonySEO" target="_blank">@TomAnthonySEO</a>, <a href="https://twitter.com/THCapper" target="_blank">@THCapper</a>, <a href="https://twitter.com/samnemzer" target="_blank">@samnemzer</a>, and <a href="https://twitter.com/sergeystefoglo_" target="_blank">@sergeystefoglo_</a> for help with this piece.</p> <p></p> <p><a href="https://moz.com/moztop10">Sign up for The Moz Top 10</a>, a semimonthly mailer updating you on the top ten hottest pieces of SEO news, tips, and rad links uncovered by the Moz team. Think of it as your exclusive digest of stuff you don't have time to hunt down but want to read!</p> <p><img decoding="async" loading="lazy" src="data:image/gif;base64,R0lGODdhAQABAPAAAP///wAAACwAAAAAAQABAEACAkQBADs=" data-lazy-src="//beardesign.me/media/9495403.gif" height="1" width="1" /><noscript><img decoding="async" loading="lazy" src="//beardesign.me/media/9495403.gif" height="1" width="1" /></noscript></p> </div><div class="essb_break_scroll"></div> </div> </div> </article> <div class="grve-container"> <div class="grve-single-post-tags grve-margin-top-3x"> <ul class="grve-tags grve-link-text grve-border"><li><a href="https://beardesign.me/blog/tag/beardesignme/" rel="tag">@beardesignme</a></li><li><a href="https://beardesign.me/blog/tag/contentmarketing/" rel="tag">#ContentMarketing</a></li><li><a href="https://beardesign.me/blog/tag/emailmarketing/" rel="tag">#EmailMarketing</a></li><li><a href="https://beardesign.me/blog/tag/growthhacking/" rel="tag">#GrowthHacking</a></li><li><a href="https://beardesign.me/blog/tag/makeyourownlane/" rel="tag">#makeyourownlane</a></li><li><a href="https://beardesign.me/blog/tag/onlinebusiness/" rel="tag">#onlinebusiness</a></li><li><a href="https://beardesign.me/blog/tag/onlinelearning/" rel="tag">#OnlineLearning</a></li><li><a href="https://beardesign.me/blog/tag/searchengine/" rel="tag">#searchengine</a></li><li><a href="https://beardesign.me/blog/tag/smallbiz/" rel="tag">#SmallBiz</a></li><li><a href="https://beardesign.me/blog/tag/smallbusiness/" rel="tag">#SmallBusiness</a></li><li><a href="https://beardesign.me/blog/tag/smm/" rel="tag">#SMM</a></li><li><a href="https://beardesign.me/blog/tag/socialmedia/" rel="tag">#SocialMedia</a></li><li><a href="https://beardesign.me/blog/tag/socialmediamarketing/" rel="tag">#socialmediamarketing</a></li><li><a href="https://beardesign.me/blog/tag/startups/" rel="tag">#startups</a></li><li><a href="https://beardesign.me/blog/tag/seo/" rel="tag">SEO</a></li></ul> </div> <div id="grve-comment-form" class="grve-margin-top-3x clearfix"> <div id="respond" class="comment-respond"> <div id="reply-title" class="grve-link-text comment-reply-title">Leave a Reply <small><a rel="nofollow" id="cancel-comment-reply-link" href="/blog/an-8-point-checklist-for-debugging-strange-technical-seo-problems/#respond" style="display:none;">Cancel Reply</a></small></div><form action="//beardesign.me/visitor-comment.php" method="post" id="commentform" class="comment-form"><div class="grve-form-textarea grve-border"><textarea style="resize:none;" id="comment" name="comment" placeholder="Your Comment Here..." cols="45" rows="15" aria-required="true"></textarea></div><p class="notice"><small>* Checkbox GDPR is required</small></p><div class="js-gdpr-warning"></div><span class="required">*</span> <label for="gdpr">This form collects your name, email and content so that we can keep track of the comments placed on the website. For more info check our privacy policy where you'll get more info on where, how and why we store your data.</label><p class="comment-form-gdpr"><input required="required" id="gdpr" name="gdpr" type="checkbox" style="display:inline; width:auto;" />I agree</p><div class="grve-form-input grve-border"><input id="author" name="author" type="text" value="" placeholder="Name (required)" /></div> <div class="grve-form-input grve-border"><input id="email" name="email" type="text" value="" placeholder="E-mail (required)" /></div> <div class="grve-form-input grve-border"><input id="url" name="url" type="text" value="" placeholder="Website" /></div> <p class="wpgdprc-checkbox comment-form-wpgdprc"> <input type="checkbox" name="wpgdprc" id="wpgdprc" value="1" /> <label for="wpgdprc"> By using this form you agree with the storage and handling of your data by this website. <abbr class="wpgdprc-required" title="You need to accept this checkbox">*</abbr> </label> </p> <p class="form-submit"><input name="submit" type="submit" id="grve-comment-submit-button" class="submit" value="Submit Comment" /> <input type='hidden' name='comment_post_ID' value='17141' id='comment_post_ID' /> <input type='hidden' name='comment_parent' id='comment_parent' value='0' /> </p><p style="display: none;"><input type="hidden" id="akismet_comment_nonce" name="akismet_comment_nonce" value="d47e02fa3a" /></p><p style="display: none !important;"><label>Δ<textarea name="ak_hp_textarea" cols="45" rows="8" maxlength="100"></textarea></label><input type="hidden" id="ak_js_1" name="ak_js" value="247"/><script>document.getElementById( "ak_js_1" ).setAttribute( "value", ( new Date() ).getTime() );</script></p></form></div><!-- #respond --></div></div></div></div><!-- END MAIN CONTENT --></div></div><!-- END CONTENT --><!-- POST BAR --><div id="grve-post-bar" class="grve-navigation-bar grve-singular-section grve-fullwidth grve-layout-2 clearfix grve-nav-columns-3"><div class="grve-container"><div class="grve-bar-wrapper"><div class="grve-post-bar-item grve-post-navigation"><a class="grve-nav-item grve-prev" href="https://beardesign.me/blog/when-bounce-rate-browse-rate-ppv-and-time-on-site-are-useful-metrics-and-when-they-arent-whiteboard-friday/"><div class="grve-nav-item-wrapper"><div class="grve-arrow grve-icon-nav-left"></div><h6 class="grve-title">When Bounce Rate,Browse Rate (PPV),and Time-on-Site Are Useful Metrics…and When They Aren’t –Whiteboard Friday</h6></div></a><a class="grve-nav-item grve-next" href="https://beardesign.me/blog/qa-lost-anonymous-google-reviews-scoop-removal-moving-forward/"><div class="grve-nav-item-wrapper"><h6 class="grve-title">Q&A:Lost Your Anonymous Google Reviews? The Scoop on Removal and Moving Forward</h6><div class="grve-arrow grve-icon-nav-right"></div></div></a></div><div class="grve-post-bar-item grve-post-socials"><ul class="grve-bar-socials grve-h6"><li><a href="mailto:?subject=An%208-Point%20Checklist%20for%20Debugging%20Strange%20Technical%20SEO%20Problems&body=An%208-Point%20Checklist%20for%20Debugging%20Strange%20Technical%20SEO%20Problems:%20https://beardesign.me/blog/an-8-point-checklist-for-debugging-strange-technical-seo-problems/" title="An 8-Point Checklist for Debugging Strange Technical SEO Problems" class="grve-social-share-email"><i class="fa fa-envelope"></i></a></li><li><a href="https://beardesign.me/blog/an-8-point-checklist-for-debugging-strange-technical-seo-problems/" title="An 8-Point Checklist for Debugging Strange Technical SEO Problems" class="grve-social-share-facebook"><i class="fa fa-facebook"></i></a></li><li><a href="https://beardesign.me/blog/an-8-point-checklist-for-debugging-strange-technical-seo-problems/" title="An 8-Point Checklist for Debugging Strange Technical SEO Problems" class="grve-social-share-twitter"><i class="fa fa-twitter"></i></a></li><li><a href="https://beardesign.me/blog/an-8-point-checklist-for-debugging-strange-technical-seo-problems/" title="An 8-Point Checklist for Debugging Strange Technical SEO Problems" class="grve-social-share-linkedin"><i class="fa fa-linkedin"></i></a></li><li><a href="#" class="grve-like-counter-link " data-post-id="17141"><i class="fa fa-heart"></i><span class="grve-like-counter">0</span></a></li></ul></div><!-- End Socials --><div class="grve-post-bar-item grve-post-related"><div id="grve-post-related-27322-6627caf8afa20" class="grve-related-item grve-image-hover"><a href="https://beardesign.me/blog/new-improved-announcing-the-beginners-guide-to-link-building/" target="_self"><div class="grve-related-content"><div class="grve-title grve-h5 grve-text-white">New &Improved:Announcing The Beginner’s Guide To Link Building</div></div><div class="grve-background-wrapper"><div class="grve-bg-image" style="background-image: url(https://beardesign.me/media/bear-design-content-marketing-9-560x420.jpg);"></div></div></a></div><div id="grve-post-related-27312-6627caf8b229b" class="grve-related-item grve-image-hover"><a href="https://beardesign.me/blog/6-ways-to-bring-empathy-into-your-marketing-strategy-in-2021-and-beyond/" target="_self"><div class="grve-related-content"><div class="grve-title grve-h5 grve-text-white">6 Ways to Bring Empathy Into Your Marketing Strategy (in 2021 and Beyond)</div></div><div class="grve-background-wrapper"><div class="grve-bg-image" style="background-image: url(https://beardesign.me/media/bear-design-content-marketing-17-560x420.jpg);"></div></div></a></div></div></div></div></div><!-- END POST BAR --></div><footer id="grve-footer" data-sticky-footer="no" class="grve-border grve-bookmark"><!-- BOTTOM BAR --><div id="grve-bottom-bar" class="grve-bookmark"><p><div class="grve-section grve-row-section grve-fullwidth grve-bg-none grve-headings-light grve-custom-height grve-middle-content grve-tablet-sm-row-hide grve-mobile-row-hide" style="background-color:#3f3f3f;color:#ffffff;"><div class="grve-container"><div class="grve-row grve-bookmark grve-columns-gap-none"><div class="grve-column wpb_column grve-column-1-2"><div class="grve-column-wrapper vc_custom_1520329489733"><h2 class="grve-element grve-title grve-align-left grve-animated-item grve-duration-normal grve-fade-in-up grve-h2" style="" data-delay="200"><span>Will you like to book a consultation today?</span></h2><div class="grve-element grve-text grve-leader-text grve-animated-item grve-fade-in-up grve-duration-normal" data-delay="200"><p>We promise you’ll be glad to have us as the only premium website developer you’ve ever had!</p></div><div class="grve-element grve-divider grve-animated-item grve-fade-in-left-big grve-duration-normal grve-align-left" style="padding-top: 30px;padding-bottom: 40px;" data-delay="200"><span class="grve-custom-divider grve-bg-primary-1" style="width: 100px;height: 5px;"></span></div><div class="grve-element grve-align-left grve-animated-item grve-fade-in-up grve-duration-normal" data-delay="200"><a href="https://beardesign.me/website-consultation/" class="grve-btn grve-btn-large grve-extra-round grve-bg-primary-1 grve-bg-hover-black"><span>Free Consultation</span></a></div></div></div><div class="grve-column wpb_column grve-column-1-2"><div class="grve-column-wrapper vc_custom_1520329308291"></div></div></div></div><div class="grve-background-wrapper"></div></div><div class="grve-section grve-row-section grve-fullwidth grve-bg-none grve-headings-light grve-custom-height grve-middle-content grve-desktop-row-hide grve-tablet-row-hide" style="background-color:#3f3f3f;color:#ffffff;"><div class="grve-container"><div class="grve-row grve-bookmark grve-columns-gap-none"><div class="grve-column wpb_column grve-column-1"><div class="grve-column-wrapper vc_custom_1522760986042"><h2 class="grve-element grve-title grve-align-center grve-animated-item grve-duration-normal grve-fade-in-up grve-h2" style="" data-delay="200"><span><span style="color: #ffffff;">Will you like to book a consultation today?</span></span></h2><div class="grve-element grve-text grve-leader-text grve-animated-item grve-fade-in-up grve-duration-normal" data-delay="200"><p style="text-align: center;"><span style="color: #ffffff;">We promise you’ll be glad to have us as the only premium website developer you’ve ever had!</span></p></div><div class="grve-element grve-divider grve-animated-item grve-fade-in-left-big grve-duration-normal grve-align-center" style="padding-top: 30px;padding-bottom: 40px;" data-delay="200"><span class="grve-custom-divider grve-bg-primary-1" style="width: 100px;height: 5px;"></span></div><div class="grve-element grve-align-center grve-animated-item grve-fade-in-up grve-duration-normal" data-delay="200"><a href="https://beardesign.me/website-consultation/" class="grve-btn grve-btn-large grve-extra-round grve-bg-primary-1 grve-bg-hover-black"><span>Free Consultation</span></a></div></div></div></div></div><div class="grve-background-wrapper"></div></div><div class="grve-section grve-row-section grve-fullwidth-background grve-padding-top-3x grve-padding-bottom-3x grve-bg-none grve-headings-dark grve-tablet-sm-row-hide grve-mobile-row-hide" style="background-color:#f2f2f2;color:#333333;"><div class="grve-container"><div class="grve-row grve-bookmark grve-columns-gap-30"><div class="grve-column wpb_column grve-column-1-4 grve-tablet-sm-column-1-4"><div class="grve-column-wrapper"><div class="grve-element grve-text"><p><img decoding="async" loading="lazy" class="alignnone wp-image-16250" src="//beardesign.me/media/bear-design-mono-light-logo.svg" alt="Bear Design - WordPress Development" width="199" height="69" /></p><p><span style="color: #333333; font-size: 14px; line-height: 14px;">Bear Design provides website development and design,creating content uploaded websites and improving web page placements and web traffic. Bear Design websites are unique,easy to use and responsive. Site owners can easily edit the content,or can trust the Bear Design &Communications to keep them up to date and supply quality content regularly.</span></p></div></div></div><div class="grve-column wpb_column grve-column-1-4 grve-tablet-sm-column-1-4"><div class="grve-column-wrapper"><h6 class="grve-element grve-title grve-align-left grve-h6" style="margin-bottom: 30px;"><span><br><h6>GET IN TOUCH</h6></span></h6><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-cursor"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">160 City Road,EC1V 2NX London,United Kingdom</div></div></div></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="tel:+36702448100" rel="nofollow"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-globe"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">+36 702 448 100</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="mailto:office@beardeign.me" rel="nofollow"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-envelope-letter"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">office@beardesign.me</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-clock"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Monday – Thursday:9:0 AM – 5:0 PM</div></div></div></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-clock"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Friday:9:0 AM – 2:0 PM</div></div></div></div></div></div><div class="grve-column wpb_column grve-column-1-6"><div class="grve-column-wrapper"><h6 class="grve-element grve-title grve-align-left grve-h6" style=""><span><br><h6>THE COMPANY</h6></span></h6><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/website-consultation/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-bubble"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Contact Us</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/terms-and-conditions/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-eye"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Terms &Conditions</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/privacy-policy/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-eye"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Privacy Policy</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/cookies/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-eye"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Cookie Policy</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/gdpr-request-personal-data/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-lock"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">GDPR Data Request</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="https://care.beardesign.me/" target="_blank" rel="noopener noreferrer"><div class="grve-wrapper-icon grve-no-shape" style=""><i class="grve-text-primary-1 smp-icon-layers"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Server &Maintenance</div></div></div></a></div></div></div><div class="grve-column wpb_column grve-column-1-3"><div class="grve-column-wrapper"><h6 class="grve-element grve-title grve-align-left grve-h6" style="margin-bottom: 30px;"><span><br><h6>WE ARE IN LONDON</h6></span></h6><div class="grve-map-wrapper"><div class="grve-element grve-map" data-lat="51.5273002" data-lng="-0.0910881" data-zoom="15" data-disable-style="no" style="height: 200px;"></div><div style="display:none" class="grve-map-point" data-point-marker="//beardesign.me/paint/images/markers/markers.png" data-point-lat="51.5273002" data-point-lng="-0.0910881" data-point-title="" data-point-type="image" data-point-marker-width="38" data-point-marker-height="60"></div></div></div></div></div></div><div class="grve-background-wrapper"></div></div><div class="grve-section grve-row-section grve-fullwidth-background grve-padding-top-3x grve-padding-bottom-3x grve-bg-none grve-headings-dark grve-desktop-row-hide grve-tablet-row-hide grve-mobile-row-hide" style="background-color:#f2f2f2;color:#333333;"><div class="grve-container"><div class="grve-row grve-bookmark grve-columns-gap-30"><div class="grve-column wpb_column grve-column-1-2 grve-tablet-sm-column-1-4"><div class="grve-column-wrapper"><div class="grve-element grve-text"><p><img decoding="async" loading="lazy" class="alignnone wp-image-16250" src="//beardesign.me/media/bear-design-mono-light-logo.svg" alt="Bear Design - WordPress Development" width="199" height="69" /></p><p><span style="color: #333333; font-size: 14px; line-height: 14px;">Bear Design provides website development and design,creating content uploaded websites and improving web page placements and web traffic. Bear Design websites are unique,easy to use and responsive. Site owners can easily edit the content,or can trust the Bear Design &Communications to keep them up to date and supply quality content regularly.</span></p></div></div></div><div class="grve-column wpb_column grve-column-1-2 grve-tablet-sm-column-1-4"><div class="grve-column-wrapper"><h6 class="grve-element grve-title grve-align-left grve-h6" style="margin-bottom: 30px;"><span><br><h6>WE ARE IN LONDON</h6></span></h6><div class="grve-map-wrapper"><div class="grve-element grve-map" data-lat="51.5273002" data-lng="-0.0910881" data-zoom="15" data-disable-style="no" style="height: 200px;"></div><div style="display:none" class="grve-map-point" data-point-marker="//beardesign.me/paint/images/markers/markers.png" data-point-lat="51.5273002" data-point-lng="-0.0910881" data-point-title="" data-point-type="image" data-point-marker-width="38" data-point-marker-height="60"></div></div></div></div><div class="grve-column wpb_column grve-column-1"><div class="grve-column-wrapper"><div class="grve-empty-space grve-height-2x" style=""></div></div></div><div class="grve-column wpb_column grve-column-1-2"><div class="grve-column-wrapper"><h6 class="grve-element grve-title grve-align-left grve-h6" style="margin-bottom: 30px;"><span><br><h6>GET IN TOUCH</h6></span></h6><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-cursor"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">160 City Road,EC1V 2NX London,United Kingdom</div></div></div></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="tel:+36702448100" rel="nofollow"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-globe"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">+36 702 448 100</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="mailto:office@beardeign.me" rel="nofollow"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-envelope-letter"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">office@beardesign.me</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-clock"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Monday – Thursday:9:0 AM – 5:0 PM</div></div></div></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-clock"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Friday:9:0 AM – 2:0 PM</div></div></div></div></div></div><div class="grve-column wpb_column grve-column-1-2"><div class="grve-column-wrapper"><h6 class="grve-element grve-title grve-align-left grve-h6" style=""><span><br><h6>THE COMPANY</h6></span></h6><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/website-consultation/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-bubble"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Contact Us</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/terms-and-conditions/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-eye"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Terms &Conditions</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/privacy-policy/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-eye"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Privacy Policy</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/cookies/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-eye"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Cookie Policy</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/gdpr-request-personal-data/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-lock"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">GDPR Data Request</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="https://care.beardesign.me/" target="_blank" rel="noopener noreferrer"><div class="grve-wrapper-icon grve-no-shape" style=""><i class="grve-text-primary-1 smp-icon-layers"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Server &Maintenance</div></div></div></a></div></div></div></div></div><div class="grve-background-wrapper"></div></div><div class="grve-section grve-row-section grve-fullwidth-background grve-padding-top-3x grve-padding-bottom-3x grve-bg-none grve-headings-dark grve-desktop-row-hide grve-tablet-row-hide grve-tablet-sm-row-hide" style="background-color:#f2f2f2;color:#333333;"><div class="grve-container"><div class="grve-row grve-bookmark grve-columns-gap-30"><div class="grve-column wpb_column grve-column-1-4 grve-tablet-sm-column-1-4"><div class="grve-column-wrapper"><div class="grve-element grve-text"><p><img decoding="async" loading="lazy" class="alignnone wp-image-16250" src="//beardesign.me/media/bear-design-mono-light-logo.svg" alt="Bear Design - WordPress Development" width="199" height="69" /></p><p style="text-align: center;"><span style="color: #333333; font-size: 14px; line-height: 14px;">Bear Design provides website development and design,creating content uploaded websites and improving web page placements and web traffic. Bear Design websites are unique,easy to use and responsive. Site owners can easily edit the content,or can trust the Bear Design &Communications to keep them up to date and supply quality content regularly.</span></p></div></div></div><div class="grve-column wpb_column grve-column-1-4 grve-tablet-sm-column-1-4"><div class="grve-column-wrapper"><h6 class="grve-element grve-title grve-align-center grve-h6" style="margin-bottom: 30px;"><span><br><h6>GET IN TOUCH</h6></span></h6><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-cursor"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">160 City Road,EC1V 2NX London,United Kingdom</div></div></div></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="tel:+36702448100" rel="nofollow"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-globe"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">+36 702 448 100</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="mailto:office@beardeign.me" rel="nofollow"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-envelope-letter"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">office@beardesign.me</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-clock"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Monday – Thursday:9:0 AM – 5:0 PM</div></div></div></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-clock"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Friday:9:0 AM – 2:0 PM</div></div></div></div></div></div><div class="grve-column wpb_column grve-column-1-6"><div class="grve-column-wrapper"><h6 class="grve-element grve-title grve-align-center grve-h6" style=""><span><br><h6>THE COMPANY</h6></span></h6><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/website-consultation/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-bubble"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Contact Us</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/terms-and-conditions/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-eye"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Terms &Conditions</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/privacy-policy/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-eye"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Privacy Policy</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/cookies/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-eye"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Cookie Policy</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="/gdpr-request-personal-data/"><div class="grve-wrapper-icon grve-no-shape" style=" color: #333333;"><i class="grve-text-custom smp-icon-lock"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">GDPR Data Request</div></div></div></a></div><div class="grve-empty-space" style="height: 15px;"></div><div class="grve-element grve-box-icon grve-extra-small grve-side-icon grve-align-left" style=""><a href="https://care.beardesign.me/" target="_blank" rel="noopener noreferrer"><div class="grve-wrapper-icon grve-no-shape" style=""><i class="grve-text-primary-1 smp-icon-layers"></i></div><div class="grve-box-content"><div class="grve-box-title-wrapper"><div class="grve-box-title grve-small-text">Server &Maintenance</div></div></div></a></div></div></div><div class="grve-column wpb_column grve-column-1-3"><div class="grve-column-wrapper"><h6 class="grve-element grve-title grve-align-center grve-h6" style="margin-bottom: 30px;"><span><br><h6>WE ARE IN LONDON</h6></span></h6><div class="grve-map-wrapper"><div class="grve-element grve-map" data-lat="51.5273002" data-lng="-0.0910881" data-zoom="15" data-disable-style="no" style="height: 200px;"></div><div style="display:none" class="grve-map-point" data-point-marker="//beardesign.me/paint/images/markers/markers.png" data-point-lat="51.5273002" data-point-lng="-0.0910881" data-point-title="" data-point-type="image" data-point-marker-width="38" data-point-marker-height="60"></div></div></div></div></div></div><div class="grve-background-wrapper"></div></div><div class="grve-section grve-row-section grve-fullwidth-background grve-bg-none grve-mobile-row-hide" style="background-color:#f2f2f2;"><div class="grve-container"><div class="grve-row grve-bookmark grve-columns-gap-30"><div class="grve-column wpb_column grve-column-1"><div class="grve-column-wrapper"><div class="grve-element grve-divider grve-align-left" style=""><span class="grve-custom-divider grve-bg-custom" style="width: 100%;height: 1px;background-color: #cccccc;"></span></div></div></div></div></div><div class="grve-background-wrapper"></div></div><div class="grve-section grve-row-section grve-fullwidth-background grve-bg-none grve-mobile-row-hide" style="background-color:#f2f2f2;padding-top: 10px;padding-bottom: 5px;"><div class="grve-container"><div class="grve-row grve-bookmark grve-columns-gap-30"><div class="grve-column wpb_column grve-column-1-2" style="color:#cccccc;"><div class="grve-column-wrapper"><div class="grve-element grve-text"><p><span style="font-size: 14px; color: #333333;">© Made with <i class="fa fa-heart-o" style="color: #f2498b;"></i>by <a href="https://beardesign.me/yup/" target="_blank" rel="noopener noreferrer">Bear Design</a></span></p></div></div></div><div class="grve-column wpb_column grve-column-1-2"><div class="grve-column-wrapper vc_custom_1520257706337"><div class="grve-element grve-social grve-align-right" style=""><ul><li><a href="https://twitter.com/beardesignme" class="grve-extra-small grve-no-shape" aria-label="Twitter" target="_blank" rel="noopener noreferrer"><i class="grve-text-primary-6 fab fa-twitter"></i></a></li><li><a href="https://www.facebook.com/Bear-Design-Communications-165594420632416/" class="grve-extra-small grve-no-shape" aria-label="Facebook" target="_blank" rel="noopener noreferrer"><i class="grve-text-primary-6 fab fa-facebook-f"></i></a></li><li><a href="https://www.instagram.com/beardesignme/" class="grve-extra-small grve-no-shape" aria-label="Instagram" target="_blank" rel="noopener noreferrer"><i class="grve-text-primary-6 fab fa-instagram"></i></a></li><li><a href="https://www.linkedin.com/company/bear-design-&-communications-ltd.?" class="grve-extra-small grve-no-shape" aria-label="LinkedIn" target="_blank" rel="noopener noreferrer"><i class="grve-text-primary-6 fab fa-linkedin-in"></i></a></li><li><a href="https://www.youtube.com/channel/UCtqY5n6XPqhKYOohx4DIkZg" class="grve-extra-small grve-no-shape" aria-label="YouTube" target="_blank" rel="noopener noreferrer"><i class="grve-text-primary-6 fab fa-youtube"></i></a></li></ul></div></div></div></div></div><div class="grve-background-wrapper"></div></div><div class="grve-section grve-row-section grve-fullwidth-background grve-padding-bottom-2x grve-bg-none grve-desktop-row-hide grve-tablet-row-hide grve-tablet-sm-row-hide" style="background-color:#f2f2f2;"><div class="grve-container"><div class="grve-row grve-bookmark grve-columns-gap-none"><div class="grve-column wpb_column grve-column-1-2" style="color:#cccccc;"><div class="grve-column-wrapper"><div class="grve-element grve-social grve-align-center" style=""><ul><li><a href="https://twitter.com/beardesignme" class="grve-extra-small grve-no-shape" aria-label="Twitter" target="_blank" rel="noopener noreferrer"><i class="grve-text-primary-6 fab fa-twitter"></i></a></li><li><a href="https://www.facebook.com/Bear-Design-Communications-165594420632416/" class="grve-extra-small grve-no-shape" aria-label="Facebook" target="_blank" rel="noopener noreferrer"><i class="grve-text-primary-6 fab fa-facebook-f"></i></a></li><li><a href="https://www.instagram.com/beardesignme/" class="grve-extra-small grve-no-shape" aria-label="Instagram" target="_blank" rel="noopener noreferrer"><i class="grve-text-primary-6 fab fa-instagram"></i></a></li><li><a href="https://www.linkedin.com/company/bear-design-&-communications-ltd.?" class="grve-extra-small grve-no-shape" aria-label="LinkedIn" target="_blank" rel="noopener noreferrer"><i class="grve-text-primary-6 fab fa-linkedin-in"></i></a></li><li><a href="https://www.youtube.com/channel/UCtqY5n6XPqhKYOohx4DIkZg" class="grve-extra-small grve-no-shape" aria-label="YouTube" target="_blank" rel="noopener noreferrer"><i class="grve-text-primary-6 fab fa-youtube"></i></a></li></ul></div></div></div><div class="grve-column wpb_column grve-column-1-2"><div class="grve-column-wrapper"><div class="grve-element grve-text"><p style="text-align: center;"><span style="font-size: 14px; color: #333333;">© Made with <i class="fa fa-heart-o" style="color: #f2498b;"></i>by <a href="https://beardesign.me/yup/" target="_blank" rel="noopener noreferrer">Bear Design</a></span></p></div></div></div></div></div><div class="grve-background-wrapper"></div></div></p></div><!-- END BOTTOM BAR --><div class="grve-footer-wrapper"></div></footer><!-- SIDE AREA --><!-- END SIDE AREA --><!-- HIDDEN MENU --><nav id="grve-hidden-menu" class="grve-hidden-area grve-small-width grve-slide-menu grve-align-left"><div class="grve-hiddenarea-wrapper"><!-- Close Button --><div class="grve-close-btn-wrapper"><div class="grve-close-btn"><span class="grve-icon-close"></span></div></div><!-- End Close Button --><div class="grve-hiddenarea-content"><div id="grve-responsive-menu-wrapper" class="grve-menu-wrapper"><ul id="menu-main-1" class="grve-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16493 grve-first-level"><a href="https://beardesign.me/brand-designer/"><span class="grve-item">Graphics Design</span></a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16496 grve-first-level"><a href="https://beardesign.me/best-business-website/"><span class="grve-item">Website Development</span></a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16494 grve-first-level"><a href="https://beardesign.me/blog/"><span class="grve-item">Blog</span></a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16495 grve-first-level grve-menu-type-button grve-primary-1 grve-hover-black"><a href="https://beardesign.me/contact-us/"><span class="grve-item">Contact Us</span></a></li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20284 grve-first-level"><a href="https://hu.beardesign.me"><span class="grve-item">HU</span></a></li></ul></div><div id="grve-responsive-hidden-menu-wrapper" class="grve-menu-wrapper"><ul id="menu-main-2" class="grve-menu"><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16493 grve-first-level"><a href="https://beardesign.me/brand-designer/"><span class="grve-item">Graphics Design</span></a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16496 grve-first-level"><a href="https://beardesign.me/best-business-website/"><span class="grve-item">Website Development</span></a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16494 grve-first-level"><a href="https://beardesign.me/blog/"><span class="grve-item">Blog</span></a></li><li class="menu-item menu-item-type-post_type menu-item-object-page menu-item-16495 grve-first-level grve-menu-type-button grve-primary-1 grve-hover-black"><a href="https://beardesign.me/contact-us/"><span class="grve-item">Contact Us</span></a></li><li class="menu-item menu-item-type-custom menu-item-object-custom menu-item-20284 grve-first-level"><a href="https://hu.beardesign.me"><span class="grve-item">HU</span></a></li></ul></div><!-- Responsive social Header Elements --><div class="grve-header-responsive-elements"><div class="grve-wrapper"><ul><li class="grve-header-responsive-element"><a href="https://twitter.com/beardesignme" target="_blank" rel="noopener noreferrer" aria-label="Twitter"><span class="grve-item"><i class="fab fa-twitter"></i></span></a></li><li class="grve-header-responsive-element"><a href="https://www.facebook.com/beardesignme" target="_blank" rel="noopener noreferrer" aria-label="Facebook"><span class="grve-item"><i class="fab fa-facebook-f"></i></span></a></li><li class="grve-header-responsive-element"><a href="https://www.instagram.com/beardesignme/" target="_blank" rel="noopener noreferrer" aria-label="Instagram"><span class="grve-item"><i class="fab fa-instagram"></i></span></a></li><li class="grve-header-responsive-element"><a href="https://www.linkedin.com/company/bear-design-&-communications-ltd.?" target="_blank" rel="noopener noreferrer" aria-label="LinkedIn"><span class="grve-item"><i class="fab fa-linkedin-in"></i></span></a></li></ul></div></div><!-- End Social Header Elements --></div></div></nav><!-- END HIDDEN MENU --><div id="grve-search-modal" class="grve-modal grve-dark-cursor"><div class="grve-modal-wrapper"><div class="grve-modal-content"><div class="grve-modal-item"><form class="grve-search grve-search-modal" method="get" action="//beardesign.me/"><div class="grve-search-input-wrapper grve-heading-color"><div class="grve-search-placeholder grve-h1 grve-typed-placeholder"><span class="grve-heading-color" style="font-size:200%;">Enter your<br>text here</span></div><input type="text" class="grve-search-textfield grve-h2" value="" name="s" autocomplete="off" aria-label="Search for ..."/></div><input class="grve-search-btn" type="submit" value="Start Searching"></form></div></div></div></div><div id="grve-top-left-form-modal" class="grve-modal grve-dark-cursor"><div class="grve-modal-wrapper"><div class="grve-modal-content"><div class="grve-modal-form"><div class="grve-modal-item"></div></div></div></div></div><div id="grve-top-right-form-modal" class="grve-modal grve-dark-cursor"><div class="grve-modal-wrapper"><div class="grve-modal-content"><div class="grve-modal-form"><div class="grve-modal-item"></div></div></div></div></div><div id="grve-menu-form-modal" class="grve-modal grve-dark-cursor"><div class="grve-modal-wrapper"><div class="grve-modal-content"><div class="grve-modal-form"><div class="grve-modal-item"></div></div></div></div></div><div id="grve-language-modal" class="grve-modal grve-dark-cursor"><div class="grve-modal-wrapper"><div class="grve-modal-content"><div class="grve-modal-item"><ul class="grve-language"></ul></div></div></div></div><div id="grve-login-modal" class="grve-modal grve-dark-cursor"><div class="grve-modal-wrapper"><div class="grve-modal-content"><div class="grve-modal-item"><div class="grve-login-modal"><!-- Login form --><div class="grve-login-form grve-login-form-item grve-align-center"><div class="grve-login-form-title grve-h3 grve-with-line grve-align-center">Login to Bear Design</div><form id="grve_login_form" action="//beardesign.me/" method="post"><div class="grve-form-field"><input class="grve-form-control required" name="grve_user_login" type="text" placeholder="Username *"/></div><div class="grve-form-field"><input class="grve-form-control required" name="grve_user_pass" id="grve_user_pass" type="password" placeholder="Password *"/></div><div class="grve-form-field"><input type="hidden" name="action" value="movedo_grve_login_user"/><button class="btn grve-fullwidth-btn" data-loading-text="Loading..." type="submit">Login</button><a class="grve-reset-password-form-btn grve-link-text grve-text-hover-primary-1" href="#">Lost Password?</a></div><input type="hidden" id="_movedo_grve_nonce_login" name="_movedo_grve_nonce_login" value="91479249ad" /><input type="hidden" name="_wp_http_referer" value="/blog/an-8-point-checklist-for-debugging-strange-technical-seo-problems/" /></form><div class="grve-form-errors grve-align-center grve-text-primary-1 grve-link-text"></div></div><!-- Lost Password form --><div class="grve-reset-password-form grve-login-form-item grve-align-center"><div class="grve-login-form-title grve-h3 grve-with-line grve-align-center">Reset Password</div><span class="grve-login-form-description grve-link-text">Enter the username or e-mail you used in your profile. A password reset link will be sent to you by email.</span><form id="grve_reset_password_form" action="//beardesign.me/" method="post"><div class="grve-form-field"><input class="grve-form-control required" name="grve_user_or_email" id="grve_user_or_email" type="text" placeholder="Username or E-mail"/></div><div class="grve-form-field"><input type="hidden" name="action" value="movedo_grve_reset_password_user"/><button class="btn grve-fullwidth-btn" data-loading-text="Loading..." type="submit">Get new password</button></div><div class="grve-form-field"><span class="grve-login-link grve-link-text">Already have an account? <a class="grve-text-hover-primary-1 grve-login-form-btn" href="#">Login</a></span></div><input type="hidden" id="_movedo_grve_nonce_password" name="_movedo_grve_nonce_password" value="91479249ad" /><input type="hidden" name="_wp_http_referer" value="/blog/an-8-point-checklist-for-debugging-strange-technical-seo-problems/" /></form><div class="grve-form-errors grve-align-center grve-text-primary-1 grve-link-text"></div></div></div></div></div></div></div><div id="grve-socials-modal" class="grve-modal grve-dark-cursor"><div class="grve-modal-wrapper"><div class="grve-modal-content grve-align-center"><div class="grve-modal-item"><ul class="grve-social"><li><a href="https://twitter.com/beardesignme" target="_blank" rel="noopener noreferrer" class="fab fa-twitter" aria-label="Twitter"></a></li><li><a href="https://www.facebook.com/beardesignme" target="_blank" rel="noopener noreferrer" class="fab fa-facebook-f" aria-label="Facebook"></a></li><li><a href="https://www.instagram.com/beardesignme/" target="_blank" rel="noopener noreferrer" class="fab fa-instagram" aria-label="Instagram"></a></li><li><a href="https://www.linkedin.com/company/bear-design-&-communications-ltd.?" target="_blank" rel="noopener noreferrer" class="fab fa-linkedin-in" aria-label="LinkedIn"></a></li></ul></div></div></div></div><div class="grve-back-top"><div class="grve-arrow-wrapper grve-round grve-wrapper-color"><i class="grve-icon-nav-up-small grve-back-top-icon"></i></div></div></div><!-- end #grve-theme-content --><div id="grve-safebutton-area"><!-- Logo --><div class="grve-logo grve-position-left"><div class="grve-wrapper"><a href="https://beardesign.me/"><img class="grve-movedo-sticky" src="//beardesign.me/media/bear-design-dark-logo.svg" alt="Bear Design"></a></div></div><!-- End Logo --><div class="grve-close-button-wrapper grve-position-right"><a href="#" class="grve-close-button" aria-label="Close"><span class="grve-item"><i class="grve-icon-close"></i></span></a></div><div class="grve-safebutton-wrapper"><div class="grve-section grve-row-section grve-fullwidth grve-bg-none grve-custom-height grve-middle-content"><div class="grve-container"><div class="grve-row grve-bookmark grve-columns-gap-none"><div class="grve-column wpb_column grve-column-1-2 grve-headings-light grve-tablet-column-1 grve-tablet-sm-column-1" style="color:#ffffff;"><div class="grve-column-wrapper vc_custom_1522677672858 grve-with-fullheight grve-column-fullheight" data-tablet-landscape-fullheight="false" data-tablet-portrait-fullheight="false" data-mobile-fullheight="false"><div class="grve-empty-space grve-height-6x" style=""></div><h3 class="grve-element grve-title grve-align-center grve-animated-item grve-duration-normal grve-fade-in-up grve-h4" style="" data-delay="40"><span>We are Bear Design</span></h3><h2 class="grve-element grve-title grve-align-center grve-animated-item grve-duration-normal grve-fade-in-up grve-h1 grve-increase-heading grve-heading-300" style="margin-bottom: 0px;" data-delay="60"><span>WE DESIGN</span></h2><h2 class="grve-element grve-title grve-align-center grve-animated-item grve-duration-normal grve-fade-in-up grve-h1 grve-increase-heading grve-heading-300" style="margin-bottom: 0px;" data-delay="80"><span>YOUR WORLD</span></h2><div class="grve-empty-space grve-height-2x" style=""></div><div class="grve-element grve-social grve-align-center grve-animated-item grve-fade-in-up grve-duration-normal" style="" data-delay="100"><ul><li><a href="https://twitter.com/beardesignme/" class="grve-small grve-circle grve-with-shape grve-outline grve-text-white grve-text-hover-white" aria-label="Twitter" target="_blank" rel="noopener noreferrer"><i class="grve-text-white fab fa-twitter"></i></a></li><li><a href="https://www.facebook.com/beardesignme/" class="grve-small grve-circle grve-with-shape grve-outline grve-text-white grve-text-hover-white" aria-label="Facebook" target="_blank" rel="noopener noreferrer"><i class="grve-text-white fab fa-facebook-f"></i></a></li><li><a href="https://www.instagram.com/beardesignme/" class="grve-small grve-circle grve-with-shape grve-outline grve-text-white grve-text-hover-white" aria-label="Instagram" target="_blank" rel="noopener noreferrer"><i class="grve-text-white fab fa-instagram"></i></a></li><li><a href="https://www.linkedin.com/company/bear-design-&-communications-ltd.?" class="grve-small grve-circle grve-with-shape grve-outline grve-text-white grve-text-hover-white" aria-label="LinkedIn" target="_blank" rel="noopener noreferrer"><i class="grve-text-white fab fa-linkedin-in"></i></a></li></ul></div><div class="grve-empty-space grve-height-6x" style=""></div></div></div><div class="grve-column wpb_column grve-column-1-2 grve-tablet-column-1 grve-tablet-sm-column-1 grve-parallax-effect" data-parallax-effect="mouse-move-x-y" data-sensitive="high" data-limit="5x" data-invert="true"><div class="grve-column-wrapper vc_custom_1522678495598"><div class="grve-empty-space grve-height-3x" style=""></div><h3 class="grve-element grve-title grve-align-left grve-animated-item grve-duration-normal grve-fade-in-right grve-h5" style="" data-delay="100"><span><span class="grve-text-primary-1">Bear</span>Design &Communications Ltd.</span></h3><div class="grve-element grve-text grve-animated-item grve-fade-in-right grve-duration-normal" data-delay="200"><p><strong>Address :</strong>160 City Road, EC1V 2NX<strong> London,United Kingdom</strong><br /><strong>Phone :</strong>+36 702 448 100<br /><strong>Email :</strong>office@beardesign.me</p><p><strong>Opening hours :</strong><br />Monday – Thursday:9:0 AM – 5:0 PM<br />Friday:9:0 AM – 2:0 PM</p></div><div class="grve-empty-space grve-height-2x" style=""></div></div></div></div></div><div class="grve-background-wrapper"></div></div></div></div><div class="grve-mask-wrapper" data-layers="3" data-mask-colors="#fc4a1a,#fc5a2d,#fc643a"></div></div><!-- end #grve-theme-wrapper --><div class="essb_links essb_displayed_sidebar essb_displayed_sidebar_right essb_share essb_sidebar_transition essb_sidebar_transition_fade essb_sidebar_location_middle essb_template_white-fill-retina essb_716244977 print-no" id="essb_displayed_sidebar_716244977" data-essb-postid="17141" data-essb-position="sidebar essb_displayed_sidebar_right" data-essb-button-style="icon_hover" data-essb-template="white-fill-retina" data-essb-counter-pos="hidden" data-essb-url="https://beardesign.me/blog/an-8-point-checklist-for-debugging-strange-technical-seo-problems/" data-essb-fullurl="https://beardesign.me/blog/an-8-point-checklist-for-debugging-strange-technical-seo-problems/" data-essb-instance="716244977"><ul class="essb_links_list essb_hide_name"><li class="essb_item essb_link_facebook nolightbox"><a href="https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fbeardesign.me%2Fblog%2Fan-8-point-checklist-for-debugging-strange-technical-seo-problems%2F&t=An+8-Point+Checklist+for+Debugging+Strange+Technical+SEO+Problems" title="Share on Facebook" onclick="essb.window('https://www.facebook.com/sharer/sharer.php?u=https%3A%2F%2Fbeardesign.me%2Fblog%2Fan-8-point-checklist-for-debugging-strange-technical-seo-problems%2F&t=An+8-Point+Checklist+for+Debugging+Strange+Technical+SEO+Problems','facebook','716244977'); return false;" target="_blank" rel="nofollow" class="nolightbox"><span class="essb_icon essb_icon_facebook"></span><span class="essb_network_name">Facebook</span></a></li><li class="essb_item essb_link_twitter nolightbox"><a href="#" title="Share on Twitter" onclick="essb.window('https://twitter.com/intent/tweet?text=An%208-Point%20Checklist%20for%20Debugging%20Strange%20Technical%20SEO%20Problems&url=https%3A%2F%2Fbeardesign.me%2Fblog%2Fan-8-point-checklist-for-debugging-strange-technical-seo-problems%2F&counturl=https%3A%2F%2Fbeardesign.me%2Fblog%2Fan-8-point-checklist-for-debugging-strange-technical-seo-problems%2F','twitter','716244977'); return false;" target="_blank" rel="nofollow" class="nolightbox"><span class="essb_icon essb_icon_twitter"></span><span class="essb_network_name">Twitter</span></a></li><li class="essb_item essb_link_pinterest nolightbox"><a href="#" title="Share on Pinterest" onclick="essb.pinterest_picker('716244977'); return false;" target="_blank" rel="nofollow" class="nolightbox"><span class="essb_icon essb_icon_pinterest"></span><span class="essb_network_name">Pinterest</span></a></li><li class="essb_item essb_link_linkedin nolightbox"><a href="https://www.linkedin.com/shareArticle?mini=true&ro=true&trk=EasySocialShareButtons&title=An+8-Point+Checklist+for+Debugging+Strange+Technical+SEO+Problems&url=https%3A%2F%2Fbeardesign.me%2Fblog%2Fan-8-point-checklist-for-debugging-strange-technical-seo-problems%2F" title="Share on LinkedIn" onclick="essb.window('https://www.linkedin.com/shareArticle?mini=true&ro=true&trk=EasySocialShareButtons&title=An+8-Point+Checklist+for+Debugging+Strange+Technical+SEO+Problems&url=https%3A%2F%2Fbeardesign.me%2Fblog%2Fan-8-point-checklist-for-debugging-strange-technical-seo-problems%2F','linkedin','716244977'); return false;" target="_blank" rel="nofollow" class="nolightbox"><span class="essb_icon essb_icon_linkedin"></span><span class="essb_network_name">LinkedIn</span></a></li></ul></div> <script>window.RS_MODULES = window.RS_MODULES || {}; window.RS_MODULES.modules = window.RS_MODULES.modules || {}; window.RS_MODULES.waiting = window.RS_MODULES.waiting || []; window.RS_MODULES.defered = false; window.RS_MODULES.moduleWaiting = window.RS_MODULES.moduleWaiting || {}; window.RS_MODULES.type = 'compiled';</script> <script>function trackJavaScriptError(e) { var errMsg = e.message; var errSrc = e.filename + ': ' + e.lineno; ga('send', 'event', 'JavaScript Error', errMsg, errSrc, { 'nonInteraction': 1 }); } if (typeof ga !== 'undefined') { window.addEventListener('error', trackJavaScriptError, false); }</script><script>if (typeof ga !== 'undefined') { jQuery(document).ajaxError(function (e, request, settings) { ga ('send' , 'event' , 'Ajax Error' , request.statusText ,settings.url , { 'nonInteraction': 1 }); }); }</script><script type="text/html" id="wpb-modifications"></script> <!-- MPP:MasterPopups:Footer --> <script type='text/javascript'>var MPP_POPUP_OPTIONS = MPP_POPUP_OPTIONS || {}; var MPP_POPUP_DISPLAY_OPTIONS = MPP_POPUP_DISPLAY_OPTIONS || {}; MPP_POPUP_DISPLAY_OPTIONS[16591] = {"id":16591,"is_on":true,"should_display":true,"should_display_target":true,"should_display_by_publish_settings":true,"target":{"mpp_display-on-portfolio":"on","mpp_display-on-portfolio-include":"","mpp_display-on-portfolio-exclude":"","mpp_display-on-testimonial":"on","mpp_display-on-testimonial-include":"","mpp_display-on-testimonial-exclude":"","mpp_display-on-all-site":"on","mpp_display-on-homepage":"on","mpp_display-on-archive":"on","mpp_display-on-page":"on","mpp_display-on-page-include":"","mpp_display-on-page-exclude":"","mpp_display-on-post":"on","mpp_display-on-post-include":"","mpp_display-on-post-exclude":"","mpp_display-on-taxonomy-category":"on","mpp_display-on-posts-with-taxonomy-category":"off","mpp_display-on-taxonomy-category-terms":[],"mpp_display-on-taxonomy-post_tag":"on","mpp_display-on-posts-with-taxonomy-post_tag":"off","mpp_display-on-taxonomy-post_tag-terms":[],"mpp_display-on-specific-urls":"http:\/\/example.com,\r\nhttp:\/\/example.com\/shop\/*","mpp_display-on-specific-urls-exclude":"","mpp_display-for-users":["logged-in","not-logged-in"],"mpp_display-on-devices":["desktop","tablet","mobile"],"mpp_display-by-post-content":"","mpp_display-by-referrer-url":"","mpp_hide-by-referrer-url":"","mpp_display-by-url-parameters":[]},"triggers":{"mpp_load-counter":"0","mpp_trigger-open-on-click-event":"click","mpp_trigger-open-on-click-custom-class":"your-custom-class","mpp_trigger-open-on-click-prevent-default":"off","mpp_trigger-open-on-load":"off","mpp_trigger-open-on-load-delay":"1","mpp_cookie-on-load":"off","mpp_cookie-on-load-duration":"days","mpp_cookie-on-load-days":"7","mpp_trigger-open-on-exit":"off","mpp_cookie-on-exit":"off","mpp_cookie-on-exit-duration":"current_session","mpp_cookie-on-exit-days":"7","mpp_trigger-open-on-inactivity":"off","mpp_trigger-open-on-inactivity-period":"60","mpp_cookie-on-inactivity":"off","mpp_cookie-on-inactivity-duration":"current_session","mpp_cookie-on-inactivity-days":"7","mpp_trigger-open-on-scroll":"off","mpp_trigger-open-on-scroll-amount":"0","mpp_trigger-open-on-scroll-amount_unit":"%","mpp_trigger-open-on-scroll-after-post":"off","mpp_trigger-open-on-scroll-selector":"","mpp_cookie-on-scroll":"off","mpp_cookie-on-scroll-duration":"days","mpp_cookie-on-scroll-days":"7","mpp_trigger-open-display-inline-in":[],"mpp_trigger-close-on-click-overlay":"off","mpp_trigger-close-on-esc-keydown":"off","mpp_trigger-close-automatically":"off","mpp_trigger-close-automatically-delay":"10","mpp_trigger-close-on-scroll":"off","mpp_trigger-close-on-scroll-amount":"10","mpp_trigger-close-on-scroll-amount_unit":"%","mpp_trigger-close-on-scroll-up":"off","mpp_trigger-close-on-scroll-up-amount":"10","mpp_trigger-close-on-scroll-up-amount_unit":"%"}}; MPP_POPUP_OPTIONS[16591] = {"id":16591,"position":"bottom-center","fullScreen":false,"mobileDesign":false,"ratioSmallDevices":1,"list":{"service":""},"afterConversion":{"message":""},"wpEditor":{"enabled":false,"autoHeight":true,"padding":"20px 36px"},"sound":{"enabled":false,"delay":-10,"src":""},"preloader":{"show":false,"duration":1000},"open":{"delay":0,"duration":800,"animation":"mpp-slideInUp","disablePageScroll":true,"loadCounter":0},"close":{"delay":0,"duration":700,"animation":"mpp-slideOutDown"},"overlay":{"show":true,"durationIn":300,"durationOut":250},"notificationBar":{"fixed":true,"pushPageDown":true,"fixedHeaderSelector":"","containerPageSelector":""},"sticky":{"enabled":false,"initial":false,"vertical":false},"inline":{"shouldClose":false,"disableTriggers":false},"desktop":{"device":"desktop","browserWidth":1080,"browserHeight":480,"width":600,"widthUnit":"px","height":130,"heightUnit":"px"},"mobile":{"device":"mobile","browserWidth":600,"browserHeight":480,"width":560,"widthUnit":"px","height":315,"heightUnit":"px","resizeOpeningKeyborad":true},"callbacks":[],"triggers":{"open":{"onClick":{"event":"click","customClass":"your-custom-class","preventDefault":false},"onLoad":{"enabled":false,"delay":1000},"onExit":{"enabled":false},"onInactivity":{"enabled":false,"period":60000},"onScroll":{"enabled":false,"amount":"0%","afterPost":false,"selector":"","displayed":false}},"close":{"onClickOverlay":false,"onEscKeydown":false,"automatically":{"enabled":false,"delay":10000},"onScroll":{"enabled":false,"amount":"10%"},"onScrollUp":{"enabled":false,"amount":"10%"}}},"cookies":{"loadCounter":{"name":"mpp_load_counter_16591"},"onLoad":{"name":"mpp_on_load_16591","enabled":false,"duration":"days","days":7},"onExit":{"name":"mpp_on_exit_16591","enabled":false,"duration":"current_session","days":7},"onInactivity":{"name":"mpp_on_inactivity_16591","enabled":false,"duration":"current_session","days":7},"onScroll":{"name":"mpp_on_scroll_16591","enabled":false,"duration":"days","days":7},"onConversion":{"name":"mpp_on_conversion_16591","enabled":true,"duration":"days","days":60}},"custom_cookies":[],"contentLocker":{"cookies":{"unlockWithPassword":"mpp_unlock_password","unlockWithForm":"mpp_unlock_form","duration":365},"enabled":false,"type":"shortcode","unlock":"password"}}; MPP_POPUP_OPTIONS[16591].callbacks.afterOpen = function( $, popup_instance, popup_id, options ){ //console.log("After Open Popup"); }; MPP_POPUP_OPTIONS[16591].callbacks.afterClose = function( $, popup_instance, popup_id, options ){ //console.log("After Close Popup"); }; MPP_POPUP_OPTIONS[16591].callbacks.onSubmit = function( $, popup_instance, popup_id, options, success ){ //console.log("After Form Submission"); }; MPP_POPUP_DISPLAY_OPTIONS[16589] = {"id":16589,"is_on":true,"should_display":true,"should_display_target":true,"should_display_by_publish_settings":true,"target":{"mpp_display-on-portfolio":"on","mpp_display-on-portfolio-include":"","mpp_display-on-portfolio-exclude":"","mpp_display-on-testimonial":"on","mpp_display-on-testimonial-include":"","mpp_display-on-testimonial-exclude":"","mpp_display-on-all-site":"on","mpp_display-on-homepage":"on","mpp_display-on-archive":"on","mpp_display-on-page":"on","mpp_display-on-page-include":"","mpp_display-on-page-exclude":"","mpp_display-on-post":"on","mpp_display-on-post-include":"","mpp_display-on-post-exclude":"","mpp_display-on-taxonomy-category":"on","mpp_display-on-posts-with-taxonomy-category":"off","mpp_display-on-taxonomy-category-terms":[],"mpp_display-on-taxonomy-post_tag":"on","mpp_display-on-posts-with-taxonomy-post_tag":"off","mpp_display-on-taxonomy-post_tag-terms":[],"mpp_display-on-specific-urls":"http:\/\/example.com,\r\nhttp:\/\/example.com\/shop\/*","mpp_display-on-specific-urls-exclude":"","mpp_display-for-users":["logged-in","not-logged-in"],"mpp_display-on-devices":["desktop","tablet","mobile"],"mpp_display-by-post-content":"","mpp_display-by-referrer-url":"","mpp_hide-by-referrer-url":"","mpp_display-by-url-parameters":[]},"triggers":{"mpp_load-counter":"0","mpp_trigger-open-on-click-event":"click","mpp_trigger-open-on-click-custom-class":"your-custom-class","mpp_trigger-open-on-click-prevent-default":"off","mpp_trigger-open-on-load":"off","mpp_trigger-open-on-load-delay":"0","mpp_cookie-on-load":"off","mpp_cookie-on-load-duration":"days","mpp_cookie-on-load-days":"7","mpp_trigger-open-on-exit":"off","mpp_cookie-on-exit":"off","mpp_cookie-on-exit-duration":"current_session","mpp_cookie-on-exit-days":"7","mpp_trigger-open-on-inactivity":"off","mpp_trigger-open-on-inactivity-period":"60","mpp_cookie-on-inactivity":"off","mpp_cookie-on-inactivity-duration":"current_session","mpp_cookie-on-inactivity-days":"7","mpp_trigger-open-on-scroll":"off","mpp_trigger-open-on-scroll-amount":"0","mpp_trigger-open-on-scroll-amount_unit":"%","mpp_trigger-open-on-scroll-after-post":"off","mpp_trigger-open-on-scroll-selector":"","mpp_cookie-on-scroll":"off","mpp_cookie-on-scroll-duration":"days","mpp_cookie-on-scroll-days":"7","mpp_trigger-open-display-inline-in":[],"mpp_trigger-close-on-click-overlay":"off","mpp_trigger-close-on-esc-keydown":"off","mpp_trigger-close-automatically":"off","mpp_trigger-close-automatically-delay":"10","mpp_trigger-close-on-scroll":"off","mpp_trigger-close-on-scroll-amount":"10","mpp_trigger-close-on-scroll-amount_unit":"%","mpp_trigger-close-on-scroll-up":"off","mpp_trigger-close-on-scroll-up-amount":"10","mpp_trigger-close-on-scroll-up-amount_unit":"%"}}; MPP_POPUP_OPTIONS[16589] = {"id":16589,"position":"bottom-center","fullScreen":false,"mobileDesign":true,"ratioSmallDevices":1,"list":{"service":""},"afterConversion":{"message":""},"wpEditor":{"enabled":false,"autoHeight":true,"padding":"20px 36px"},"sound":{"enabled":false,"delay":-10,"src":""},"preloader":{"show":false,"duration":1000},"open":{"delay":0,"duration":800,"animation":"mpp-slideInUp","disablePageScroll":true,"loadCounter":0},"close":{"delay":0,"duration":700,"animation":"mpp-slideOutDown"},"overlay":{"show":true,"durationIn":300,"durationOut":250},"notificationBar":{"fixed":true,"pushPageDown":true,"fixedHeaderSelector":"","containerPageSelector":""},"sticky":{"enabled":false,"initial":false,"vertical":false},"inline":{"shouldClose":false,"disableTriggers":false},"desktop":{"device":"desktop","browserWidth":1080,"browserHeight":610,"width":600,"widthUnit":"px","height":500,"heightUnit":"px"},"mobile":{"device":"mobile","browserWidth":600,"browserHeight":610,"width":560,"widthUnit":"px","height":315,"heightUnit":"px","resizeOpeningKeyborad":true},"callbacks":[],"triggers":{"open":{"onClick":{"event":"click","customClass":"your-custom-class","preventDefault":false},"onLoad":{"enabled":false,"delay":0},"onExit":{"enabled":false},"onInactivity":{"enabled":false,"period":60000},"onScroll":{"enabled":false,"amount":"0%","afterPost":false,"selector":"","displayed":false}},"close":{"onClickOverlay":false,"onEscKeydown":false,"automatically":{"enabled":false,"delay":10000},"onScroll":{"enabled":false,"amount":"10%"},"onScrollUp":{"enabled":false,"amount":"10%"}}},"cookies":{"loadCounter":{"name":"mpp_load_counter_16589"},"onLoad":{"name":"mpp_on_load_16589","enabled":false,"duration":"days","days":7},"onExit":{"name":"mpp_on_exit_16589","enabled":false,"duration":"current_session","days":7},"onInactivity":{"name":"mpp_on_inactivity_16589","enabled":false,"duration":"current_session","days":7},"onScroll":{"name":"mpp_on_scroll_16589","enabled":false,"duration":"days","days":7},"onConversion":{"name":"mpp_on_conversion_16589","enabled":true,"duration":"days","days":60}},"custom_cookies":[],"contentLocker":{"cookies":{"unlockWithPassword":"mpp_unlock_password","unlockWithForm":"mpp_unlock_form","duration":365},"enabled":false,"type":"shortcode","unlock":"password"}}; MPP_POPUP_OPTIONS[16589].callbacks.afterOpen = function( $, popup_instance, popup_id, options ){ //console.log("After Open Popup"); }; MPP_POPUP_OPTIONS[16589].callbacks.afterClose = function( $, popup_instance, popup_id, options ){ //console.log("After Close Popup"); }; MPP_POPUP_OPTIONS[16589].callbacks.onSubmit = function( $, popup_instance, popup_id, options, success ){ //console.log("After Form Submission"); }; MPP_POPUP_DISPLAY_OPTIONS[16587] = {"id":16587,"is_on":true,"should_display":true,"should_display_target":true,"should_display_by_publish_settings":true,"target":{"mpp_display-on-portfolio":"on","mpp_display-on-portfolio-include":"","mpp_display-on-portfolio-exclude":"","mpp_display-on-testimonial":"on","mpp_display-on-testimonial-include":"","mpp_display-on-testimonial-exclude":"","mpp_display-on-all-site":"on","mpp_display-on-homepage":"on","mpp_display-on-archive":"on","mpp_display-on-page":"on","mpp_display-on-page-include":"","mpp_display-on-page-exclude":"","mpp_display-on-post":"on","mpp_display-on-post-include":"","mpp_display-on-post-exclude":"","mpp_display-on-taxonomy-category":"on","mpp_display-on-posts-with-taxonomy-category":"off","mpp_display-on-taxonomy-category-terms":[],"mpp_display-on-taxonomy-post_tag":"on","mpp_display-on-posts-with-taxonomy-post_tag":"off","mpp_display-on-taxonomy-post_tag-terms":[],"mpp_display-on-specific-urls":"http:\/\/example.com,\r\nhttp:\/\/example.com\/shop\/*","mpp_display-on-specific-urls-exclude":"","mpp_display-for-users":["logged-in","not-logged-in"],"mpp_display-on-devices":["desktop","tablet","mobile"],"mpp_display-by-post-content":"","mpp_display-by-referrer-url":"","mpp_hide-by-referrer-url":"","mpp_display-by-url-parameters":[]},"triggers":{"mpp_load-counter":"0","mpp_trigger-open-on-click-event":"click","mpp_trigger-open-on-click-custom-class":"your-custom-class","mpp_trigger-open-on-click-prevent-default":"off","mpp_trigger-open-on-load":"on","mpp_trigger-open-on-load-delay":"0","mpp_cookie-on-load":"off","mpp_cookie-on-load-duration":"current_session","mpp_cookie-on-load-days":"365","mpp_trigger-open-on-exit":"off","mpp_cookie-on-exit":"off","mpp_cookie-on-exit-duration":"current_session","mpp_cookie-on-exit-days":"7","mpp_trigger-open-on-inactivity":"off","mpp_trigger-open-on-inactivity-period":"60","mpp_cookie-on-inactivity":"off","mpp_cookie-on-inactivity-duration":"current_session","mpp_cookie-on-inactivity-days":"7","mpp_trigger-open-on-scroll":"off","mpp_trigger-open-on-scroll-amount":"0","mpp_trigger-open-on-scroll-amount_unit":"%","mpp_trigger-open-on-scroll-after-post":"off","mpp_trigger-open-on-scroll-selector":"","mpp_cookie-on-scroll":"off","mpp_cookie-on-scroll-duration":"days","mpp_cookie-on-scroll-days":"7","mpp_trigger-open-display-inline-in":[],"mpp_trigger-close-on-click-overlay":"off","mpp_trigger-close-on-esc-keydown":"off","mpp_trigger-close-automatically":"off","mpp_trigger-close-automatically-delay":"10","mpp_trigger-close-on-scroll":"off","mpp_trigger-close-on-scroll-amount":"10","mpp_trigger-close-on-scroll-amount_unit":"%","mpp_trigger-close-on-scroll-up":"off","mpp_trigger-close-on-scroll-up-amount":"10","mpp_trigger-close-on-scroll-up-amount_unit":"%"}}; MPP_POPUP_OPTIONS[16587] = {"id":16587,"position":"bottom-center","fullScreen":false,"mobileDesign":false,"ratioSmallDevices":1,"list":{"service":""},"afterConversion":{"message":""},"wpEditor":{"enabled":false,"autoHeight":true,"padding":"20px 36px"},"sound":{"enabled":false,"delay":-10,"src":""},"preloader":{"show":false,"duration":1000},"open":{"delay":0,"duration":1300,"animation":"mpp-bounce","disablePageScroll":true,"loadCounter":0},"close":{"delay":0,"duration":700,"animation":"mpp-slideOutDown"},"overlay":{"show":true,"durationIn":300,"durationOut":250},"notificationBar":{"fixed":true,"pushPageDown":true,"fixedHeaderSelector":"","containerPageSelector":""},"sticky":{"enabled":false,"initial":false,"vertical":false},"inline":{"shouldClose":false,"disableTriggers":false},"desktop":{"device":"desktop","browserWidth":1080,"browserHeight":480,"width":600,"widthUnit":"px","height":130,"heightUnit":"px"},"mobile":{"device":"mobile","browserWidth":600,"browserHeight":480,"width":560,"widthUnit":"px","height":315,"heightUnit":"px","resizeOpeningKeyborad":true},"callbacks":[],"triggers":{"open":{"onClick":{"event":"click","customClass":"your-custom-class","preventDefault":false},"onLoad":{"enabled":true,"delay":0},"onExit":{"enabled":false},"onInactivity":{"enabled":false,"period":60000},"onScroll":{"enabled":false,"amount":"0%","afterPost":false,"selector":"","displayed":false}},"close":{"onClickOverlay":false,"onEscKeydown":false,"automatically":{"enabled":false,"delay":10000},"onScroll":{"enabled":false,"amount":"10%"},"onScrollUp":{"enabled":false,"amount":"10%"}}},"cookies":{"loadCounter":{"name":"mpp_load_counter_16587"},"onLoad":{"name":"mpp_on_load_16587","enabled":false,"duration":"current_session","days":365},"onExit":{"name":"mpp_on_exit_16587","enabled":false,"duration":"current_session","days":7},"onInactivity":{"name":"mpp_on_inactivity_16587","enabled":false,"duration":"current_session","days":7},"onScroll":{"name":"mpp_on_scroll_16587","enabled":false,"duration":"days","days":7},"onConversion":{"name":"mpp_on_conversion_16587","enabled":true,"duration":"days","days":60}},"custom_cookies":{"bear__gdpr":{"name":"bear__gdpr","enable":"on","duration":"days","days":"365","days_unit":"days","behavior":["not_show_popup"],"event":"click"}},"contentLocker":{"cookies":{"unlockWithPassword":"mpp_unlock_password","unlockWithForm":"mpp_unlock_form","duration":365},"enabled":false,"type":"shortcode","unlock":"password"}}; MPP_POPUP_OPTIONS[16587].callbacks.afterOpen = function( $, popup_instance, popup_id, options ){ //console.log("After Open Popup"); }; MPP_POPUP_OPTIONS[16587].callbacks.afterClose = function( $, popup_instance, popup_id, options ){ //console.log("After Close Popup"); }; MPP_POPUP_OPTIONS[16587].callbacks.onSubmit = function( $, popup_instance, popup_id, options, success ){ //console.log("After Form Submission"); }; /* Custom JS */ (function($){ jQuery(document).ready(function($){ }); })(jQuery);</script> <script></script> <!-- MPP:MasterPopups:Footer End --><!-- MPP:MasterPopups:Popups --><!-- MPP:MasterPopups:Popup id=16591 --><div class='mpp-container mpp-container-16591 mpp-container-position-bottom-center'><div class='mpp-box mpp-position-bottom-center mpp-popup mpp-popup-16591' data-popup-id='16591' data-form-type='none'><div class='mpp-wrap mpp-wrap-16591'><div class='mpp-content'><div class='mpp-content-desktop' data-device='desktop' style='overflow: visible'><div class='mpp-element mpp-element-text-html mpp-desktop-element-0' title='' data-index='0' data-type='text-html' data-device='desktop' data-position='{"top":"7px","left":"211px"}' data-size='{"width":"149px","height":"33px","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeInLeft","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"default","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' data-font='{"font-family":"Roboto","color":"rgba(68, 68, 68, 1)","font-size":"22px","font-weight":"300","font-style":"normal","text-align":"center","line-height":"1.5em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"0px","right":"0px","bottom":"0px","left":"0px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"0px"}'>Are you sure?</div></div><div class='mpp-element mpp-element-text-html mpp-desktop-element-1' title='' data-index='1' data-type='text-html' data-device='desktop' data-position='{"top":"45px","left":"22px"}' data-size='{"width":"419px","height":"60px","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeInLeft","duration":"1000","delay":"300"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"default","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' data-font='{"font-family":"Roboto","color":"rgba(68, 68, 68, 1)","font-size":"13px","font-weight":"300","font-style":"normal","text-align":"left","line-height":"1.5em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"0px","right":"0px","bottom":"0px","left":"0px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"0px"}'>You must approve our cookie policy to use our site. I you refuse it you will redirect to the Google. </div></div><div class='mpp-element mpp-element-button mpp-desktop-element-2' title='' data-index='2' data-type='button' data-device='desktop' data-position='{"top":"32px","left":"468px"}' data-size='{"width":"auto","height":"auto","full-screen":"off","full-width":"off"}' data-animation='{"enable":"on","effect":"mpp-pulse","duration":"1000","delay":"300"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"redirect-to-url","popup_id":0,"url":"https:\/\/google.com","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' tabindex="213" data-font='{"font-family":"Roboto","color":"rgb(255, 255, 255)","font-size":"15px","font-weight":"400","font-style":"normal","text-align":"center","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"none"}' data-padding='{"top":"12px","right":"25px","bottom":"12px","left":"25px"}' data-border='{"color":"","style":"","top-width":"0px","right-width":"0px","bottom-width":"0px","left-width":"0px","radius":"22px"}'>Refuse</div></div><div class='mpp-element mpp-element-button mpp-desktop-element-3' title='' data-index='3' data-type='button' data-device='desktop' data-position='{"top":"83px","left":"430px"}' data-size='{"width":"170px","height":"45px","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeInUp","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"close-popup","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":"bear__gdpr"}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' tabindex="214" data-font='{"font-family":"Roboto","color":"rgb(68,68,68)","font-size":"15px","font-weight":"400","font-style":"normal","text-align":"center","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"none"}' data-padding='{"top":"5px","right":"5px","bottom":"5px","left":"5px"}' data-border='{"color":"","style":"","top-width":"2px","right-width":"2px","bottom-width":"2px","left-width":"2px","radius":"0px"}'><i class="mpp-icon-check-circle-o"></i>Approve Cookies</div></div><div class='mpp-element mpp-element-button mpp-desktop-element-4' title='' data-index='4' data-type='button' data-device='desktop' data-position='{"top":"67px","left":"153px"}' data-size='{"width":"auto","height":"auto","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeInUp","duration":"1000","delay":"300"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"open-popup","popup_id":16589,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' tabindex="215" data-font='{"font-family":"Roboto","color":"rgba(68,68,68,1)","font-size":"13px","font-weight":"500","font-style":"normal","text-align":"center","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"1px","right":"1px","bottom":"1px","left":"1px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"50px"}'>Cookie Policy <i class="mpp-icon-external-link"></i></div></div><div class='mpp-element mpp-element-object mpp-desktop-element-5' title='' data-index='5' data-type='object' data-device='desktop' data-position='{"top":"-34px","left":"-12px"}' data-size='{"width":"62px","height":"62px","full-screen":"off","full-width":"off"}' data-animation='{"enable":"on","effect":"mpp-rubberBand","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"default","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' data-font='{"font-family":"Roboto","color":"rgba(68, 68, 68, 1)","font-size":"40px","font-weight":"400","font-style":"normal","text-align":"left","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"0px","right":"0px","bottom":"0px","left":"0px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"0px"}'><img src='//beardesign.me/apps/master-popups/assets/svg/teddy-bear.svg'></div></div></div><div class='mpp-content-mobile' data-device='mobile' style='overflow: visible'></div></div></div></div><div id='mpp-overlay-16591' class='mpp-overlay'><div class='mpp-overlay-bg'></div></div></div><style>.mpp-popup-16591,.mpp-inline-16591{margin-top:0;margin-right:auto;margin-bottom:0;margin-left:auto}.mpp-wrap-16591{background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();box-shadow:0 0 0 0 rgba(0,0,0,0);border-radius:0}.mpp-wrap-16591 .mpp-content{background-color:rgba(255,255,255,1);border-radius:0}#mpp-overlay-16591 .mpp-overlay-bg{background-color:rgba(0,0,0,.4);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();opacity:1}#mpp-sticky-16591 .mpp-sticky-control{width:auto;height:40px;padding-left:15px;padding-right:15px;font-size:15px;color:rgba(255,255,255,1);font-family:Roboto;background-color:rgba(0,0,0,.8);background-size:cover;background-position:center center;background-image:url();line-height:40px}#mpp-sticky-16591 .mpp-sticky-icon{background-color:rgba(32,95,240,.8)}.mpp-wrap-16591 .mpp-preloader.mpp-preloader-animation .mpp-preloader-spinner1{background:rgba(0,221,210,1)}#mpp-overlay-16591 .mpp-preloader.mpp-preloader-animation .mpp-preloader-spinner1{background:rgba(0,221,210,1)}.mpp-wrap-16591 .mpp-preloader.mpp-preloader-animation .mpp-preloader-spinner2{background:rgba(62,153,255,1)}#mpp-overlay-16591 .mpp-preloader.mpp-preloader-animation .mpp-preloader-spinner2{background:rgba(62,153,255,1)}.mpp-wrap-16591 .mpp-processing-form,.mpp-wrap-16591 .mpp-conversion{font-size:14px;color:rgba(68,68,68,1);font-family:Roboto;border-width:1px;border-color:rgba(0,181,183,1);border-style:solid;background-color:rgba(245,245,245,1);background-image:url();border-radius:0}.mpp-wrap-16591 .mpp-processing-form .mpp-processing-form-footer .mpp-back-to-form{font-size:13px}.mpp-wrap-16591 .mpp-processing-form .mpp-processing-form-footer .mpp-close-popup{font-size:13px}.mpp-wrap-16591 .mpp-conversion .mpp-conversion-footer .mpp-back-to-form{font-size:13px}.mpp-wrap-16591 .mpp-conversion .mpp-conversion-footer .mpp-close-popup{font-size:13px}.mpp-container-16591 .mpp-form-sent-ok .mpp-processing-form .mpp-processing-form-content{color:rgba(68,68,68,1)}.mpp-wrap-16591 ::-webkit-input-placeholder{color:rgba(134,134,134,1)!important}.mpp-wrap-16591 ::-moz-placeholder{color:rgba(134,134,134,1)!important}.mpp-wrap-16591 :-ms-input-placeholder{color:rgba(134,134,134,1)!important}.mpp-wrap-16591 :-moz-placeholder{color:rgba(134,134,134,1)!important}.mpp-box .mpp-wrap-16591 .mpp-desktop-element-0{z-index:1;visibility:visible;width:149px;height:33px;top:7px;left:211px;cursor:default}.mpp-box .mpp-wrap-16591 .mpp-desktop-element-0 .mpp-element-content{line-height:1.5em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:22px;font-weight:300;font-style:normal;color:rgba(68,68,68,1);text-align:center;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}.mpp-box .mpp-wrap-16591 .mpp-desktop-element-1{z-index:2;visibility:visible;width:419px;height:60px;top:45px;left:22px;cursor:default}.mpp-box .mpp-wrap-16591 .mpp-desktop-element-1 .mpp-element-content{line-height:1.5em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:13px;font-weight:300;font-style:normal;color:rgba(68,68,68,1);text-align:left;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}.mpp-box .mpp-wrap-16591 .mpp-desktop-element-2{z-index:3;visibility:visible;width:auto;height:auto;top:32px;left:468px;cursor:default}.mpp-box .mpp-wrap-16591 .mpp-desktop-element-2 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:none;font-family:Roboto;font-size:15px;font-weight:400;font-style:normal;color:rgb(255,255,255);text-align:center;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:none;padding-top:12px;padding-right:25px;padding-bottom:12px;padding-left:25px;background-color:rgba(252,74,26,1);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:!important;border-style:!important;border-top-width:0;border-right-width:0;border-bottom-width:0;border-left-width:0;border-radius:22px}.mpp-box .mpp-wrap-16591 .mpp-desktop-element-2 .mpp-element-content:hover{background:rgba(56,56,56,1)}.mpp-box .mpp-wrap-16591 .mpp-desktop-element-3{z-index:4;visibility:visible;width:170px;height:45px;top:83px;left:430px;cursor:default}.mpp-box .mpp-wrap-16591 .mpp-desktop-element-3 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:none;font-family:Roboto;font-size:15px;font-weight:400;font-style:normal;color:rgb(68,68,68);text-align:center;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:none;padding-top:5px;padding-right:5px;padding-bottom:5px;padding-left:5px;background-color:rgba(255,255,255,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:!important;border-style:!important;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-radius:0}.mpp-box .mpp-wrap-16591 .mpp-desktop-element-4{z-index:5;visibility:visible;width:auto;height:auto;top:67px;left:153px;cursor:default}.mpp-box .mpp-wrap-16591 .mpp-desktop-element-4 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:13px;font-weight:500;font-style:normal;color:rgba(68,68,68,1);text-align:center;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:1px;padding-right:1px;padding-bottom:1px;padding-left:1px;background-color:rgba(255,255,255,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:50px}.mpp-box .mpp-wrap-16591 .mpp-desktop-element-5{z-index:6;visibility:visible;width:62px;height:62px;top:-34px;left:-12px;cursor:default}.mpp-box .mpp-wrap-16591 .mpp-desktop-element-5 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:40px;font-weight:400;font-style:normal;color:rgba(68,68,68,1);text-align:left;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}.mpp-box .mpp-wrap-16591 .mpp-mobile-element--1{visibility:visible;width:auto;height:auto;top:30px;left:30px;cursor:default}.mpp-box .mpp-wrap-16591 .mpp-mobile-element--1 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:16px;font-weight:400;font-style:normal;color:rgba(68,68,68,1);text-align:left;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}</style><script>//Custom javascript (function($){ jQuery(document).ready(function($){ }); })(jQuery);</script> <div class='mpp-container mpp-container-16589 mpp-container-position-bottom-center'><div class='mpp-box mpp-position-bottom-center mpp-popup mpp-popup-16589' data-popup-id='16589' data-form-type='none'><div class='mpp-wrap mpp-wrap-16589'><div class='mpp-content'><div class='mpp-content-desktop' data-device='desktop' style='overflow: visible'><div class='mpp-element mpp-element-text-html mpp-desktop-element-0' title='' data-index='0' data-type='text-html' data-device='desktop' data-position='{"top":"7px","left":"237px"}' data-size='{"width":"auto","height":"auto","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeInLeft","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"default","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' data-font='{"font-family":"Roboto","color":"rgba(68, 68, 68, 1)","font-size":"22px","font-weight":"300","font-style":"normal","text-align":"center","line-height":"1.5em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"0px","right":"0px","bottom":"0px","left":"0px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"0px"}'>Cookie Policy</div></div><div class='mpp-element mpp-element-text-html mpp-desktop-element-1' title='' data-index='1' data-type='text-html' data-device='desktop' data-position='{"top":"47px","left":"22px"}' data-size='{"width":"554px","height":"60px","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeInLeft","duration":"1000","delay":"300"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"default","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' data-font='{"font-family":"Roboto","color":"rgba(68, 68, 68, 1)","font-size":"13px","font-weight":"300","font-style":"normal","text-align":"left","line-height":"1.5em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"0px","right":"0px","bottom":"0px","left":"0px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"0px"}'><div style="overflow-y: scroll; height:350px; width:560px"><em>This Bear Design Cookie Policy (“Policy”) outlines the general policy, practices, and types of cookies that Bear Design And Communications Ltd.. (“Bear Design”, “we”, “us” or “our”) may use to improve our services and your experience when visiting our websites.</em>Cookies are small pieces of text used to store information on web browsers. They’re used by many websites to store and receive identifiers and other information on devices, such as a handheld phone or computer. Our site and services use cookies and other similar technologies (collectively in this Policy, “cookies”), in order to provide a better service to you and to generally improve our sites and services. For example, we may use cookies to help direct you to the appropriate part of our websites, by indicating that you are a repeat visitor. We may also use information to present you with services that are matched to your preferences.Some portions of our websites are functional without cookies, and you may generally choose whether to accept cookies. Most web browsers are set to accept cookies by default, however, you may be able to delete cookies yourself through your browser’s cookie manager. To do so, please follow the instructions provided by your web browser. Please note that disabling cookies will reset your session, disable auto-login, and may adversely the availability and functionality of our websites and the services we can provide to you.As part of our services, we may also place cookies on the computers of visitors to websites protected by Bear Design. We do this in order to identify malicious visitors, reduce the chance of blocking legitimate users, and to provide customized services.<strong>Our websites use first party cookies (i.e., cookies set directly by Bear Design) as well as third party cookies, as detailed in the table below.</strong><div class="table-1"><table width="100%"><thead><tr><th style="text-align: left; vertical-align: middle;" align="left">Type of Cookie</th><th style="text-align: left; vertical-align: middle;" align="left">Why we use these cookies</th><th style="text-align: left; vertical-align: middle;" align="left">Who serves them and where can you find out more information?</th></tr></thead><tbody><tr><td style="text-align: left; vertical-align: top;" align="left"><strong>Analytics and research of users</strong></td><td style="text-align: left; vertical-align: top;" align="left">These are used to understand, improve, and research users visiting //beardesign.me and their needs for our product offerings. For example, we may use cookies to understand what pages a user browses before submitting a sales request form. We do not share information about this analysis with any third parties.</td><td style="text-align: left; vertical-align: top;" align="left">Selected third parties listed and defined as follows:<ul><li>Google Analytics – Web traffic tracking – //www.google.com/policies/privacy/</li><li>Bing – Conversion tracking from Bing ads – https://advertise.bingads.microsoft.com/en-us/resources/policies/microsoft-bing-adsprivacy-policy</li><li>Doubleclick – Google advertising platform that analyzes browsing activity across website to establish user profile – //www.google.com/policies/technologies/ads/</li><li>Twitter – Analyzes browsing activity across website to establish user profile – https://support.twitter.com/articles/20170514</li><li>Facebook – Analyzes browsing activity across website to establish user profile – https://www.facebook.com/policies/cookies/</li></ul> A user can delete these cookies through browser settings.</td></tr><tr><td style="text-align: left; vertical-align: top;" align="left"><strong>Improving Website experience</strong></td><td style="text-align: left; vertical-align: top;" align="left">These provide functionality to help us deliver a better user experience for our website. For example, cookies help facilitate chats with our sales representatives, allow you to search the website, and deliver the user quickly to their intended website location.</td><td style="text-align: left; vertical-align: top;" align="left">1st party and selected third parties as defined below:<ul><li>__cfduid 3rd party cookie – This cookie is strictly necessary for Cloudflare’s security features</li><li>__hssc Cookie for keeping track of sessions. This is used to determine if we should increment the session number and timestamps in the __hstc cookie. It contains: the domain, viewCount (increments each pageView in a session), session start timestamp. (Expires: 30 min)</li><li>__hssrc Whenever HubSpot changes the session cookie, this cookie is also set. We set it simply to the value “1”, and use it to determine if the user has restarted their browser. If this cookie does not exist when we manage cookies, we assume it is a new session. (Expires: None. Session cookie)</li><li>__hstc The main cookie for tracking visitors. It contains: the domain, utk (see below), initial timestamp (first visit), last timestamp (last visit), current timestamp (this visit), and session number (increments for each subsequent session) (Expires: 2 years)</li><li>hsfirstvisit This cookie used to keep track of a user’s first visit. (Expires: 10 years)</li><li>hubspotutk This cookie is used for to keep track of a visitor’s identity. This cookie is passed to HubSpot on form submission and used when deduplicating contacts. (Expires: 10 years)</li><li>wordpress_ WordPress cookie for a logged in user.</li><li>wordpress_logged_in_ WordPress cookie for a logged in user.</li><li>wp-settings- WordPress also sets a few wp-settings-[UID] cookies. The number on the end is your individual user ID from the users database table. This is used to customize your view of admin interface, and possibly also the main site interface.</li><li>wp-settings-time- WordPress also sets a few wp-settings-{time}-[UID] cookies. The number on the end is your individual user ID from the users database table. This is used to customize your view of admin interface, and possibly also the main site interface.</li><li>__cfduid 3rd party cookie – This cookie is strictly necessary for Cloudflare’s security features</li></ul> A user can delete these cookies through browser settings.</td></tr></tbody></table></div><div class="fusion-text"><h6 style="text-align: center;">LAST UPDATE: 24.01.2018, LONDON</h6></div></div></div></div><div class='mpp-element mpp-element-button mpp-desktop-element-2' title='' data-index='2' data-type='button' data-device='desktop' data-position='{"top":"438px","left":"96px"}' data-size='{"width":"auto","height":"auto","full-screen":"off","full-width":"off"}' data-animation='{"enable":"on","effect":"mpp-pulse","duration":"1000","delay":"300"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"close-popup","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":"bear__gdpr"}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' tabindex="483" data-font='{"font-family":"Roboto","color":"rgba(255,255,255,1)","font-size":"15px","font-weight":"400","font-style":"normal","text-align":"center","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"12px","right":"25px","bottom":"12px","left":"25px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"50px"}'><i class="mpp-icon-check"></i> Approve</div></div><div class='mpp-element mpp-element-button mpp-desktop-element-3' title='' data-index='3' data-type='button' data-device='desktop' data-position='{"top":"443px","left":"390px"}' data-size='{"width":"auto","height":"auto","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeInUp","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"open-popup","popup_id":16591,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' tabindex="484" data-font='{"font-family":"Roboto","color":"rgb(68,68,68)","font-size":"15px","font-weight":"400","font-style":"normal","text-align":"center","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"none"}' data-padding='{"top":"5px","right":"25px","bottom":"5px","left":"25px"}' data-border='{"color":"","style":"","top-width":"2px","right-width":"2px","bottom-width":"2px","left-width":"2px","radius":"0px"}'><i class="mpp-icon-minus-circle"></i> Refuse</div></div><div class='mpp-element mpp-element-object mpp-desktop-element-4' title='' data-index='4' data-type='object' data-device='desktop' data-position='{"top":"-34px","left":"-12px"}' data-size='{"width":"62px","height":"62px","full-screen":"off","full-width":"off"}' data-animation='{"enable":"on","effect":"mpp-rubberBand","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"default","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' data-font='{"font-family":"Roboto","color":"rgba(68, 68, 68, 1)","font-size":"40px","font-weight":"400","font-style":"normal","text-align":"left","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"0px","right":"0px","bottom":"0px","left":"0px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"0px"}'><img src='//beardesign.me/apps/master-popups/assets/svg/teddy-bear.svg'></div></div></div><div class='mpp-content-mobile' data-device='mobile' style='overflow: visible'><div class='mpp-element mpp-element-text-html mpp-mobile-element-0' title='' data-index='0' data-type='text-html' data-device='mobile' data-position='{"top":"8px","left":"218px"}' data-size='{"width":"auto","height":"auto","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeIn","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"default","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' data-font='{"font-family":"Roboto","color":"rgba(68, 68, 68, 1)","font-size":"24px","font-weight":"300","font-style":"normal","text-align":"left","line-height":"1.5em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"0px","right":"0px","bottom":"0px","left":"0px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"0px"}'>Cookie Policy</div></div><div class='mpp-element mpp-element-text-html mpp-mobile-element-1' title='' data-index='1' data-type='text-html' data-device='mobile' data-position='{"top":"50px","left":"18px"}' data-size='{"width":"524px","height":"202px","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeIn","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"default","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' data-font='{"font-family":"Roboto","color":"rgba(68, 68, 68, 1)","font-size":"12px","font-weight":"300","font-style":"normal","text-align":"left","line-height":"1.5em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"0px","right":"0px","bottom":"0px","left":"0px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"0px"}'><div style="overflow-y: scroll; height:100px; width:520px"><em>This Bear Design Cookie Policy (“Policy”) outlines the general policy, practices, and types of cookies that Bear Design And Communications Ltd.. (“Bear Design”, “we”, “us” or “our”) may use to improve our services and your experience when visiting our websites.</em>Cookies are small pieces of text used to store information on web browsers. They’re used by many websites to store and receive identifiers and other information on devices, such as a handheld phone or computer. Our site and services use cookies and other similar technologies (collectively in this Policy, “cookies”), in order to provide a better service to you and to generally improve our sites and services. For example, we may use cookies to help direct you to the appropriate part of our websites, by indicating that you are a repeat visitor. We may also use information to present you with services that are matched to your preferences.Some portions of our websites are functional without cookies, and you may generally choose whether to accept cookies. Most web browsers are set to accept cookies by default, however, you may be able to delete cookies yourself through your browser’s cookie manager. To do so, please follow the instructions provided by your web browser. Please note that disabling cookies will reset your session, disable auto-login, and may adversely the availability and functionality of our websites and the services we can provide to you.As part of our services, we may also place cookies on the computers of visitors to websites protected by Bear Design. We do this in order to identify malicious visitors, reduce the chance of blocking legitimate users, and to provide customized services.<strong>Our websites use first party cookies (i.e., cookies set directly by Bear Design) as well as third party cookies, as detailed in the table below.</strong><div class="table-1"><table width="100%"><thead><tr><th style="text-align: left; vertical-align: middle;" align="left">Type of Cookie</th><th style="text-align: left; vertical-align: middle;" align="left">Why we use these cookies</th><th style="text-align: left; vertical-align: middle;" align="left">Who serves them and where can you find out more information?</th></tr></thead><tbody><tr><td style="text-align: left; vertical-align: top;" align="left"><strong>Analytics and research of users</strong></td><td style="text-align: left; vertical-align: top;" align="left">These are used to understand, improve, and research users visiting //beardesign.me and their needs for our product offerings. For example, we may use cookies to understand what pages a user browses before submitting a sales request form. We do not share information about this analysis with any third parties.</td><td style="text-align: left; vertical-align: top;" align="left">Selected third parties listed and defined as follows:<ul><li>Google Analytics – Web traffic tracking – //www.google.com/policies/privacy/</li><li>Bing – Conversion tracking from Bing ads – https://advertise.bingads.microsoft.com/en-us/resources/policies/microsoft-bing-adsprivacy-policy</li><li>Doubleclick – Google advertising platform that analyzes browsing activity across website to establish user profile – //www.google.com/policies/technologies/ads/</li><li>Twitter – Analyzes browsing activity across website to establish user profile – https://support.twitter.com/articles/20170514</li><li>Facebook – Analyzes browsing activity across website to establish user profile – https://www.facebook.com/policies/cookies/</li></ul> A user can delete these cookies through browser settings.</td></tr><tr><td style="text-align: left; vertical-align: top;" align="left"><strong>Improving Website experience</strong></td><td style="text-align: left; vertical-align: top;" align="left">These provide functionality to help us deliver a better user experience for our website. For example, cookies help facilitate chats with our sales representatives, allow you to search the website, and deliver the user quickly to their intended website location.</td><td style="text-align: left; vertical-align: top;" align="left">1st party and selected third parties as defined below:<ul><li>__cfduid 3rd party cookie – This cookie is strictly necessary for Cloudflare’s security features</li><li>__hssc Cookie for keeping track of sessions. This is used to determine if we should increment the session number and timestamps in the __hstc cookie. It contains: the domain, viewCount (increments each pageView in a session), session start timestamp. (Expires: 30 min)</li><li>__hssrc Whenever HubSpot changes the session cookie, this cookie is also set. We set it simply to the value “1”, and use it to determine if the user has restarted their browser. If this cookie does not exist when we manage cookies, we assume it is a new session. (Expires: None. Session cookie)</li><li>__hstc The main cookie for tracking visitors. It contains: the domain, utk (see below), initial timestamp (first visit), last timestamp (last visit), current timestamp (this visit), and session number (increments for each subsequent session) (Expires: 2 years)</li><li>hsfirstvisit This cookie used to keep track of a user’s first visit. (Expires: 10 years)</li><li>hubspotutk This cookie is used for to keep track of a visitor’s identity. This cookie is passed to HubSpot on form submission and used when deduplicating contacts. (Expires: 10 years)</li><li>wordpress_ WordPress cookie for a logged in user.</li><li>wordpress_logged_in_ WordPress cookie for a logged in user.</li><li>wp-settings- WordPress also sets a few wp-settings-[UID] cookies. The number on the end is your individual user ID from the users database table. This is used to customize your view of admin interface, and possibly also the main site interface.</li><li>wp-settings-time- WordPress also sets a few wp-settings-{time}-[UID] cookies. The number on the end is your individual user ID from the users database table. This is used to customize your view of admin interface, and possibly also the main site interface.</li><li>__cfduid 3rd party cookie – This cookie is strictly necessary for Cloudflare’s security features</li></ul> A user can delete these cookies through browser settings.</td></tr></tbody></table></div><div class="fusion-text"><h6 style="text-align: center;">LAST UPDATE: 24.01.2018, LONDON</h6></div></div></div></div><div class='mpp-element mpp-element-button mpp-mobile-element-2' title='' data-index='2' data-type='button' data-device='mobile' data-position='{"top":"261px","left":"85px"}' data-size='{"width":"auto","height":"auto","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeIn","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"close-popup","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":"bear__gdpr"}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' tabindex="483" data-font='{"font-family":"Roboto","color":"rgba(255,255,255,1)","font-size":"15px","font-weight":"400","font-style":"normal","text-align":"center","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"12px","right":"25px","bottom":"12px","left":"25px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"50px"}'><i class="mpp-icon-check"></i> Approve</div></div><div class='mpp-element mpp-element-button mpp-mobile-element-3' title='' data-index='3' data-type='button' data-device='mobile' data-position='{"top":"269px","left":"347px"}' data-size='{"width":"auto","height":"auto","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeIn","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"open-popup","popup_id":16591,"url":"https:\/\/google.com","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' tabindex="484" data-font='{"font-family":"Roboto","color":"rgb(68,68,68)","font-size":"15px","font-weight":"400","font-style":"normal","text-align":"center","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"none"}' data-padding='{"top":"5px","right":"25px","bottom":"5px","left":"25px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"2px","right-width":"2px","bottom-width":"2px","left-width":"2px","radius":"0px"}'><i class="mpp-icon-minus-circle"></i> Refuse</div></div><div class='mpp-element mpp-element-object mpp-mobile-element-4' title='' data-index='4' data-type='object' data-device='mobile' data-position='{"top":"-34px","left":"-12px"}' data-size='{"width":"62px","height":"62px","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeIn","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"default","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' data-font='{"font-family":"Roboto","color":"rgba(68, 68, 68, 1)","font-size":"40px","font-weight":"400","font-style":"normal","text-align":"left","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"0px","right":"0px","bottom":"0px","left":"0px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"0px"}'><img src='//beardesign.me/apps/master-popups/assets/svg/teddy-bear.svg'></div></div></div></div></div></div><div id='mpp-overlay-16589' class='mpp-overlay'><div class='mpp-overlay-bg'></div></div></div><style>.mpp-popup-16589,.mpp-inline-16589{margin-top:0;margin-right:auto;margin-bottom:0;margin-left:auto}.mpp-wrap-16589{background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();box-shadow:0 0 0 0 rgba(0,0,0,0);border-radius:0}.mpp-wrap-16589 .mpp-content{background-color:rgba(255,255,255,1);border-radius:0}#mpp-overlay-16589 .mpp-overlay-bg{background-color:rgba(0,0,0,.4);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();opacity:1}#mpp-sticky-16589 .mpp-sticky-control{width:auto;height:40px;padding-left:15px;padding-right:15px;font-size:15px;color:rgba(255,255,255,1);font-family:Roboto;background-color:rgba(0,0,0,.8);background-size:cover;background-position:center center;background-image:url();line-height:40px}#mpp-sticky-16589 .mpp-sticky-icon{background-color:rgba(32,95,240,.8)}.mpp-wrap-16589 .mpp-preloader.mpp-preloader-animation .mpp-preloader-spinner1{background:rgba(0,221,210,1)}#mpp-overlay-16589 .mpp-preloader.mpp-preloader-animation .mpp-preloader-spinner1{background:rgba(0,221,210,1)}.mpp-wrap-16589 .mpp-preloader.mpp-preloader-animation .mpp-preloader-spinner2{background:rgba(62,153,255,1)}#mpp-overlay-16589 .mpp-preloader.mpp-preloader-animation .mpp-preloader-spinner2{background:rgba(62,153,255,1)}.mpp-wrap-16589 .mpp-processing-form,.mpp-wrap-16589 .mpp-conversion{font-size:14px;color:rgba(68,68,68,1);font-family:Roboto;border-width:1px;border-color:rgba(0,181,183,1);border-style:solid;background-color:rgba(245,245,245,1);background-image:url();border-radius:0}.mpp-wrap-16589 .mpp-processing-form .mpp-processing-form-footer .mpp-back-to-form{font-size:13px}.mpp-wrap-16589 .mpp-processing-form .mpp-processing-form-footer .mpp-close-popup{font-size:13px}.mpp-wrap-16589 .mpp-conversion .mpp-conversion-footer .mpp-back-to-form{font-size:13px}.mpp-wrap-16589 .mpp-conversion .mpp-conversion-footer .mpp-close-popup{font-size:13px}.mpp-container-16589 .mpp-form-sent-ok .mpp-processing-form .mpp-processing-form-content{color:rgba(68,68,68,1)}.mpp-wrap-16589 ::-webkit-input-placeholder{color:rgba(134,134,134,1)!important}.mpp-wrap-16589 ::-moz-placeholder{color:rgba(134,134,134,1)!important}.mpp-wrap-16589 :-ms-input-placeholder{color:rgba(134,134,134,1)!important}.mpp-wrap-16589 :-moz-placeholder{color:rgba(134,134,134,1)!important}.mpp-box .mpp-wrap-16589 .mpp-desktop-element-0{z-index:1;visibility:visible;width:auto;height:auto;top:7px;left:237px;cursor:default}.mpp-box .mpp-wrap-16589 .mpp-desktop-element-0 .mpp-element-content{line-height:1.5em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:22px;font-weight:300;font-style:normal;color:rgba(68,68,68,1);text-align:center;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}.mpp-box .mpp-wrap-16589 .mpp-desktop-element-1{z-index:2;visibility:visible;width:554px;height:60px;top:47px;left:22px;cursor:default}.mpp-box .mpp-wrap-16589 .mpp-desktop-element-1 .mpp-element-content{line-height:1.5em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:13px;font-weight:300;font-style:normal;color:rgba(68,68,68,1);text-align:left;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}.mpp-box .mpp-wrap-16589 .mpp-desktop-element-2{z-index:3;visibility:visible;width:auto;height:auto;top:438px;left:96px;cursor:default}.mpp-box .mpp-wrap-16589 .mpp-desktop-element-2 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:15px;font-weight:400;font-style:normal;color:rgba(255,255,255,1);text-align:center;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:12px;padding-right:25px;padding-bottom:12px;padding-left:25px;background-color:rgba(252,74,26,1);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:50px}.mpp-box .mpp-wrap-16589 .mpp-desktop-element-2 .mpp-element-content:hover{background:rgba(56,56,56,1)}.mpp-box .mpp-wrap-16589 .mpp-desktop-element-3{z-index:4;visibility:visible;width:auto;height:auto;top:443px;left:390px;cursor:default}.mpp-box .mpp-wrap-16589 .mpp-desktop-element-3 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:none;font-family:Roboto;font-size:15px;font-weight:400;font-style:normal;color:rgb(68,68,68);text-align:center;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:none;padding-top:5px;padding-right:25px;padding-bottom:5px;padding-left:25px;background-color:rgba(255,255,255,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:!important;border-style:!important;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-radius:0}.mpp-box .mpp-wrap-16589 .mpp-desktop-element-4{z-index:5;visibility:visible;width:62px;height:62px;top:-34px;left:-12px;cursor:default}.mpp-box .mpp-wrap-16589 .mpp-desktop-element-4 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:40px;font-weight:400;font-style:normal;color:rgba(68,68,68,1);text-align:left;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}.mpp-box .mpp-wrap-16589 .mpp-mobile-element-0{z-index:1;visibility:visible;width:auto;height:auto;top:8px;left:218px;cursor:default}.mpp-box .mpp-wrap-16589 .mpp-mobile-element-0 .mpp-element-content{line-height:1.5em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:24px;font-weight:300;font-style:normal;color:rgba(68,68,68,1);text-align:left;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}.mpp-box .mpp-wrap-16589 .mpp-mobile-element-1{z-index:2;visibility:visible;width:524px;height:202px;top:50px;left:18px;cursor:default}.mpp-box .mpp-wrap-16589 .mpp-mobile-element-1 .mpp-element-content{line-height:1.5em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:12px;font-weight:300;font-style:normal;color:rgba(68,68,68,1);text-align:left;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}.mpp-box .mpp-wrap-16589 .mpp-mobile-element-2{z-index:3;visibility:visible;width:auto;height:auto;top:261px;left:85px;cursor:default}.mpp-box .mpp-wrap-16589 .mpp-mobile-element-2 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:15px;font-weight:400;font-style:normal;color:rgba(255,255,255,1);text-align:center;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:12px;padding-right:25px;padding-bottom:12px;padding-left:25px;background-color:rgba(252,74,26,1);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:50px}.mpp-box .mpp-wrap-16589 .mpp-mobile-element-3{z-index:4;visibility:visible;width:auto;height:auto;top:269px;left:347px;cursor:default}.mpp-box .mpp-wrap-16589 .mpp-mobile-element-3 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:none;font-family:Roboto;font-size:15px;font-weight:400;font-style:normal;color:rgb(68,68,68);text-align:center;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:none;padding-top:5px;padding-right:25px;padding-bottom:5px;padding-left:25px;background-color:rgba(255,255,255,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-radius:0}.mpp-box .mpp-wrap-16589 .mpp-mobile-element-4{z-index:5;visibility:visible;width:62px;height:62px;top:-34px;left:-12px;cursor:default}.mpp-box .mpp-wrap-16589 .mpp-mobile-element-4 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:40px;font-weight:400;font-style:normal;color:rgba(68,68,68,1);text-align:left;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}</style><script>//Custom javascript (function($){ jQuery(document).ready(function($){ }); })(jQuery);</script> <div class='mpp-container mpp-container-16587 mpp-container-position-bottom-center'><div class='mpp-box mpp-position-bottom-center mpp-popup mpp-popup-16587' data-popup-id='16587' data-form-type='none'><div class='mpp-wrap mpp-wrap-16587'><div class='mpp-content'><div class='mpp-content-desktop' data-device='desktop' style='overflow: visible'><div class='mpp-element mpp-element-text-html mpp-desktop-element-0' title='' data-index='0' data-type='text-html' data-device='desktop' data-position='{"top":"7px","left":"237px"}' data-size='{"width":"auto","height":"auto","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeInLeft","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"default","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' data-font='{"font-family":"Roboto","color":"rgba(68, 68, 68, 1)","font-size":"22px","font-weight":"300","font-style":"normal","text-align":"center","line-height":"1.5em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"0px","right":"0px","bottom":"0px","left":"0px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"0px"}'>Welcome</div></div><div class='mpp-element mpp-element-text-html mpp-desktop-element-1' title='' data-index='1' data-type='text-html' data-device='desktop' data-position='{"top":"45px","left":"22px"}' data-size='{"width":"419px","height":"60px","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeInLeft","duration":"1000","delay":"300"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"default","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' data-font='{"font-family":"Roboto","color":"rgba(68, 68, 68, 1)","font-size":"13px","font-weight":"300","font-style":"normal","text-align":"left","line-height":"1.5em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"0px","right":"0px","bottom":"0px","left":"0px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"0px"}'>We use cookies to ensure that we give you the best experience on our website. Before you continue browsing you must approve or refuse our cookie policy.</div></div><div class='mpp-element mpp-element-button mpp-desktop-element-2' title='' data-index='2' data-type='button' data-device='desktop' data-position='{"top":"32px","left":"451px"}' data-size='{"width":"auto","height":"auto","full-screen":"off","full-width":"off"}' data-animation='{"enable":"on","effect":"mpp-pulse","duration":"1000","delay":"300"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"close-popup","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":"bear__gdpr"}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' tabindex="423" data-font='{"font-family":"Roboto","color":"rgba(255,255,255,1)","font-size":"15px","font-weight":"400","font-style":"normal","text-align":"center","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"12px","right":"25px","bottom":"12px","left":"25px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"50px"}'><i class="mpp-icon-check"></i> Approve</div></div><div class='mpp-element mpp-element-button mpp-desktop-element-3' title='' data-index='3' data-type='button' data-device='desktop' data-position='{"top":"83px","left":"452px"}' data-size='{"width":"auto","height":"auto","full-screen":"off","full-width":"off"}' data-animation='{"enable":"off","effect":"mpp-fadeInUp","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"open-popup","popup_id":16591,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' tabindex="424" data-font='{"font-family":"Roboto","color":"rgb(68,68,68)","font-size":"15px","font-weight":"400","font-style":"normal","text-align":"center","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"none"}' data-padding='{"top":"5px","right":"25px","bottom":"5px","left":"25px"}' data-border='{"color":"","style":"","top-width":"2px","right-width":"2px","bottom-width":"2px","left-width":"2px","radius":"0px"}'><i class="mpp-icon-minus-circle"></i> Refuse</div></div><div class='mpp-element mpp-element-button mpp-desktop-element-4' title='' data-index='4' data-type='button' data-device='desktop' data-position='{"top":"86px","left":"105px"}' data-size='{"width":"auto","height":"auto","full-screen":"off","full-width":"off"}' data-animation='{"enable":"on","effect":"mpp-swing","duration":"1000","delay":"1000"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"open-popup","popup_id":16589,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' tabindex="425" data-font='{"font-family":"Roboto","color":"","font-size":"13px","font-weight":"500","font-style":"normal","text-align":"center","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"underline","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"1px","right":"1px","bottom":"1px","left":"1px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"50px"}'>Cookie Policy <i class="mpp-icon-external-link"></i></div></div><div class='mpp-element mpp-element-object mpp-desktop-element-5' title='' data-index='5' data-type='object' data-device='desktop' data-position='{"top":"-34px","left":"-12px"}' data-size='{"width":"62px","height":"62px","full-screen":"off","full-width":"off"}' data-animation='{"enable":"on","effect":"mpp-rubberBand","duration":"1000","delay":"200"}' data-required='off' data-regex-validation='' data-actions='{"onclick":{"action":"default","popup_id":0,"url":"http:\/\/","target":"_self","url_close":"off","cookie_name":""}}' data-countdown-timer='{"width":"60px","height":"100px","label-font-color":"rgba(0, 0, 0, 1)","label-font-size":"16px"}'><div class='mpp-element-content' data-font='{"font-family":"Roboto","color":"rgba(68, 68, 68, 1)","font-size":"40px","font-weight":"400","font-style":"normal","text-align":"left","line-height":"1.0em","white-space":"normal","text-transform":"none","text-decoration":"none","letter-spacing":"normal","text-shadow":"0px 0px 0px rgba(0,0,0,0)"}' data-padding='{"top":"0px","right":"0px","bottom":"0px","left":"0px"}' data-border='{"color":"rgba(140, 140, 140, 1)","style":"none","top-width":"1px","right-width":"1px","bottom-width":"1px","left-width":"1px","radius":"0px"}'><img src='//beardesign.me/apps/master-popups/assets/svg/teddy-bear.svg'></div></div></div><div class='mpp-content-mobile' data-device='mobile' style='overflow: visible'></div></div></div></div><div id='mpp-overlay-16587' class='mpp-overlay'><div class='mpp-overlay-bg'></div></div></div><style>.mpp-popup-16587,.mpp-inline-16587{margin-top:0;margin-right:auto;margin-bottom:0;margin-left:auto}.mpp-wrap-16587{background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();box-shadow:0 0 0 0 rgba(0,0,0,0);border-radius:0}.mpp-wrap-16587 .mpp-content{background-color:rgba(255,255,255,1);border-radius:0}#mpp-overlay-16587 .mpp-overlay-bg{background-color:rgba(0,0,0,.4);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();opacity:1}#mpp-sticky-16587 .mpp-sticky-control{width:auto;height:40px;padding-left:15px;padding-right:15px;font-size:15px;color:rgba(255,255,255,1);font-family:Roboto;background-color:rgba(0,0,0,.8);background-size:cover;background-position:center center;background-image:url();line-height:40px}#mpp-sticky-16587 .mpp-sticky-icon{background-color:rgba(32,95,240,.8)}.mpp-wrap-16587 .mpp-preloader.mpp-preloader-animation .mpp-preloader-spinner1{background:rgba(0,221,210,1)}#mpp-overlay-16587 .mpp-preloader.mpp-preloader-animation .mpp-preloader-spinner1{background:rgba(0,221,210,1)}.mpp-wrap-16587 .mpp-preloader.mpp-preloader-animation .mpp-preloader-spinner2{background:rgba(62,153,255,1)}#mpp-overlay-16587 .mpp-preloader.mpp-preloader-animation .mpp-preloader-spinner2{background:rgba(62,153,255,1)}.mpp-wrap-16587 .mpp-processing-form,.mpp-wrap-16587 .mpp-conversion{font-size:14px;color:rgba(68,68,68,1);font-family:Roboto;border-width:1px;border-color:rgba(0,181,183,1);border-style:solid;background-color:rgba(245,245,245,1);background-image:url();border-radius:0}.mpp-wrap-16587 .mpp-processing-form .mpp-processing-form-footer .mpp-back-to-form{font-size:13px}.mpp-wrap-16587 .mpp-processing-form .mpp-processing-form-footer .mpp-close-popup{font-size:13px}.mpp-wrap-16587 .mpp-conversion .mpp-conversion-footer .mpp-back-to-form{font-size:13px}.mpp-wrap-16587 .mpp-conversion .mpp-conversion-footer .mpp-close-popup{font-size:13px}.mpp-container-16587 .mpp-form-sent-ok .mpp-processing-form .mpp-processing-form-content{color:rgba(68,68,68,1)}.mpp-wrap-16587 ::-webkit-input-placeholder{color:rgba(134,134,134,1)!important}.mpp-wrap-16587 ::-moz-placeholder{color:rgba(134,134,134,1)!important}.mpp-wrap-16587 :-ms-input-placeholder{color:rgba(134,134,134,1)!important}.mpp-wrap-16587 :-moz-placeholder{color:rgba(134,134,134,1)!important}.mpp-box .mpp-wrap-16587 .mpp-desktop-element-0{z-index:1;visibility:visible;width:auto;height:auto;top:7px;left:237px;cursor:default}.mpp-box .mpp-wrap-16587 .mpp-desktop-element-0 .mpp-element-content{line-height:1.5em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:22px;font-weight:300;font-style:normal;color:rgba(68,68,68,1);text-align:center;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}.mpp-box .mpp-wrap-16587 .mpp-desktop-element-1{z-index:2;visibility:visible;width:419px;height:60px;top:45px;left:22px;cursor:default}.mpp-box .mpp-wrap-16587 .mpp-desktop-element-1 .mpp-element-content{line-height:1.5em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:13px;font-weight:300;font-style:normal;color:rgba(68,68,68,1);text-align:left;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}.mpp-box .mpp-wrap-16587 .mpp-desktop-element-2{z-index:3;visibility:visible;width:auto;height:auto;top:32px;left:451px;cursor:default}.mpp-box .mpp-wrap-16587 .mpp-desktop-element-2 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:15px;font-weight:400;font-style:normal;color:rgba(255,255,255,1);text-align:center;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:12px;padding-right:25px;padding-bottom:12px;padding-left:25px;background-color:rgba(252,74,26,1);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:50px}.mpp-box .mpp-wrap-16587 .mpp-desktop-element-2 .mpp-element-content:hover{background:rgba(56,56,56,1)}.mpp-box .mpp-wrap-16587 .mpp-desktop-element-3{z-index:4;visibility:visible;width:auto;height:auto;top:83px;left:452px;cursor:default}.mpp-box .mpp-wrap-16587 .mpp-desktop-element-3 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:none;font-family:Roboto;font-size:15px;font-weight:400;font-style:normal;color:rgb(68,68,68);text-align:center;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:none;padding-top:5px;padding-right:25px;padding-bottom:5px;padding-left:25px;background-color:rgba(255,255,255,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:!important;border-style:!important;border-top-width:2px;border-right-width:2px;border-bottom-width:2px;border-left-width:2px;border-radius:0}.mpp-box .mpp-wrap-16587 .mpp-desktop-element-4{z-index:5;visibility:visible;width:auto;height:auto;top:86px;left:105px;cursor:default}.mpp-box .mpp-wrap-16587 .mpp-desktop-element-4 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:13px;font-weight:500;font-style:normal;text-align:center;white-space:normal;text-transform:none;text-decoration:underline;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:1px;padding-right:1px;padding-bottom:1px;padding-left:1px;background-color:rgba(255,255,255,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:50px}.mpp-box .mpp-wrap-16587 .mpp-desktop-element-5{z-index:6;visibility:visible;width:62px;height:62px;top:-34px;left:-12px;cursor:default}.mpp-box .mpp-wrap-16587 .mpp-desktop-element-5 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:40px;font-weight:400;font-style:normal;color:rgba(68,68,68,1);text-align:left;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}.mpp-box .mpp-wrap-16587 .mpp-mobile-element--1{visibility:visible;width:auto;height:auto;top:30px;left:30px;cursor:default}.mpp-box .mpp-wrap-16587 .mpp-mobile-element--1 .mpp-element-content{line-height:1em;opacity:1;overflow:visible;box-shadow:0 0 0 0 rgba(0,0,0,0);font-family:Roboto;font-size:16px;font-weight:400;font-style:normal;color:rgba(68,68,68,1);text-align:left;white-space:normal;text-transform:none;text-decoration:none;letter-spacing:normal;text-shadow:0 0 0 rgba(0,0,0,0);padding-top:0;padding-right:0;padding-bottom:0;padding-left:0;background-color:rgba(0,0,0,0);background-repeat:no-repeat;background-size:cover;background-position:center center;background-image:url();border-color:rgba(140,140,140,1)!important;border-style:none!important;border-top-width:1px;border-right-width:1px;border-bottom-width:1px;border-left-width:1px;border-radius:0}</style><script>//Custom javascript (function($){ jQuery(document).ready(function($){ }); })(jQuery);</script> <link rel='stylesheet' id='js_composer_front-css' href='//beardesign.me/data/cache/busting/1/wp-content/plugins/js_composer/assets/css/js_composer.min-6.10.0.css' type='text/css' media='all' /><link data-minify="1" rel='stylesheet' id='movedo-ext-vc-simple-line-icons-css' href='//beardesign.me/data/cache/min/1/wp-content/plugins/movedo-extension/assets/css/simple-line-icons-2e110daa3d87ff417b9d5e577e7e806b.css' type='text/css' media='all' /><link data-minify="1" rel='stylesheet' id='rs-plugin-settings-css' href='//beardesign.me/data/cache/min/1/wp-content/plugins/revslider/public/assets/css/rs6-a664a278bb5fe500f4108804d8907532.css' type='text/css' media='all' /><style id='rs-plugin-settings-inline-css' type='text/css'></style> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-content/plugins/contact-form-7/includes/swv/js/index-5.7.3.js' id='swv-js'></script> <script type='text/javascript' id='contact-form-7-js-extra'>/* <![CDATA[ */ var wpcf7 = {"api":{"root":"https:\/\/beardesign.me\/wp-json\/","namespace":"contact-form-7\/v1"},"cached":"1"}; /* ]]> */</script> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-content/plugins/contact-form-7/includes/js/index-5.7.3.js' id='contact-form-7-js'></script> <script type='text/javascript' id='master-popups-main-js-extra'>/* <![CDATA[ */ var MPP_PUBLIC_JS = {"version":"3.8.7","ajax_url":"https:\/\/beardesign.me\/backoffice\/admin-ajax.php","ajax_nonce":"a42173c04c","plugin_url":"https:\/\/beardesign.me\/apps\/master-popups\/","is_admin":"","debug_mode":"off","debug_ip":"","integrated_services":[],"popups_z_index":"99999999","sticky_z_index":"100000005","enable_enqueue_popups":"on","disable_preloader_effect":null,"target":{"is_homepage":false,"is_single":true,"is_singular_post":true,"is_page":false,"is_archive":false,"is_category":false,"is_tag":false},"google_recaptcha":{"site_key":"","version":"v2"},"strings":{"back_to_form":"Back to form","close_popup":"Close","validation":{"general":"This field is required","email":"Invalid email address","checkbox":"This field is required, please check","dropdown":"This field is required. Please select an option","min_length":"Min length:"}}}; /* ]]> */</script> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-content/plugins/master-popups/assets/public/js/master-popups.min-3.8.7.js' id='master-popups-main-js'></script> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-content/plugins/master-popups/assets/public/js/master-popups-libs.min-3.8.7.js' id='master-popups-libs-js'></script> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-content/plugins/analytify-contact-form-7-gooogle-analytics-tracking/assets/js/cf7-front-1.1.js' id='analytify-event-cf7-front-js'></script> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-includes/js/comment-reply.min-4e206f8692b930c836809f4e97199ab5.js' id='comment-reply-js'></script> <script type='text/javascript' id='movedo-grve-plugins-js-extra'>/* <![CDATA[ */ var movedo_grve_fullpage_data = {"fullpage":"0"}; var movedo_grve_piling_data = {"piling":"0"}; var movedo_grve_smoothscroll_data = {"smoothscrolling":""}; var movedo_grve_data = {"quantity_buttons":"1"}; /* ]]> */</script> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-content/themes/movedo/js/plugins-3.5.4.js' id='movedo-grve-plugins-js'></script> <script type='text/javascript' id='movedo-grve-main-script-js-extra'>/* <![CDATA[ */ var movedo_grve_main_data = {"siteurl":"https:\/\/beardesign.me\/paint","ajaxurl":"https:\/\/beardesign.me\/backoffice\/admin-ajax.php","wp_gallery_popup":"1","popup_spinner":"1","popup_open_speed":"slow","device_animations":"0","device_hover_single_tap":"0","responsive_thershold":"1024","back_to_top":"1","string_back_to_top":"Back to top","string_weeks":"Weeks","string_days":"Days","string_hours":"Hours","string_minutes":"Min","string_seconds":"Sec","nonce_likes":"a4476f74f7"}; /* ]]> */</script> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-content/themes/movedo/js/main-3.5.4.js' id='movedo-grve-main-script-js'></script> <script type='text/javascript' id='movedo-grve-main-script-js-after'>var screen_width = Math.max( screen.width, screen.height );var devicePixelRatio = window.devicePixelRatio ? window.devicePixelRatio : 1;document.cookie = 'resolution=' + screen_width + ',' + devicePixelRatio + ';SameSite=Lax; path=/'; function grveReadCookie(name) {var nameEQ = name + '=';var ca = document.cookie.split(';');for(var i=0;i < ca.length;i++) {var c = ca[i];while (c.charAt(0)==' ') c = c.substring(1,c.length);if (c.indexOf(nameEQ) === 0) return c.substring(nameEQ.length,c.length);}return null;}function grvePrivacyCookieConsent( cookie_name, cookie_days ) {var privacyAgreement = jQuery('.grve-privacy-agreement');privacyAgreement.on( 'click', function() {var theDate = new Date();var later = new Date( theDate.getTime() + cookie_days*24*60*60*1000 );document.cookie = cookie_name + '=true; SameSite=Lax; Path=/; Expires='+later.toGMTString()+';';jQuery('#grve-privacy-bar').fadeOut(900);});if( !document.cookie.match( cookie_name ) ) {jQuery('#grve-privacy-bar').fadeIn(900);}}function grvePrivacyPopupConsent() {var privacyPopupButton = jQuery('.grve-privacy-popup-btn'),privacyRefreshButton = jQuery('.grve-privacy-refresh-btn'),privacyPopup = jQuery('#grve-privacy-popup'),privacyOverlay = jQuery('#grve-privacy-overlay');privacyPopupButton.on( 'click', function(e) {e.preventDefault();privacyPopup.fadeIn(600,function(){jQuery(window).on( 'click.grve_close_privacy_popup', function( event ) {if( !jQuery(event.target).closest('.grve-privacy-popup-wrapper').length ) {privacyPopup.fadeOut(600,function(){jQuery(window).off( 'click.grve_close_privacy_popup' );});privacyOverlay.fadeOut(600);}});});privacyOverlay.fadeIn(600);});privacyRefreshButton.on( 'click', function() {window.location.reload(true);});} grvePrivacyCookieConsent('grve-privacy-consent', '30'); grvePrivacyPopupConsent();function grvePrivacyCookieSwitch( cookie_name, initial_state ) {var theDate = new Date();var oneYearLater = new Date( theDate.getTime() + 31536000000 );var privacySwitch = jQuery('.' + cookie_name);privacySwitch.each( function() {if( document.cookie.match( cookie_name ) ) {if ( 'false' == grveReadCookie(cookie_name) ) {this.checked = false;} else {this.checked = true;}} else {if( !initial_state ) {this.checked = false;}}});privacySwitch.on( 'click', function() {if( this.checked ) {document.cookie = cookie_name + '=true; SameSite=Lax; Path=/; Expires='+oneYearLater.toGMTString()+';';privacySwitch.each( function() {this.checked = true;});} else {document.cookie = cookie_name + '=false; SameSite=Lax; Path=/; Expires='+oneYearLater.toGMTString()+';';privacySwitch.each( function() {this.checked = false;});}});} grvePrivacyCookieSwitch('grve-privacy-content-gtracking', '1' ); grvePrivacyCookieSwitch('grve-privacy-content-gfonts', '1' ); grvePrivacyCookieSwitch('grve-privacy-content-gmaps', '1' ); grvePrivacyCookieSwitch('grve-privacy-content-video-embeds', '1' );</script> <script type='text/javascript' src='//www.google.com/recaptcha/api.js?render=6Lfrdo0UAAAAAL_BNGK5qbNSjsy_njW7ITjaHXAu&ver=3.0' id='google-recaptcha-js'></script> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-includes/js/dist/vendor/regenerator-runtime.min-0.13.9.js' id='regenerator-runtime-js'></script> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-includes/js/dist/vendor/wp-polyfill.min-3.15.0.js' id='wp-polyfill-js'></script> <script type='text/javascript' id='wpcf7-recaptcha-js-extra'>/* <![CDATA[ */ var wpcf7_recaptcha = {"sitekey":"6Lfrdo0UAAAAAL_BNGK5qbNSjsy_njW7ITjaHXAu","actions":{"homepage":"homepage","contactform":"contactform"}}; /* ]]> */</script> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-content/plugins/contact-form-7/modules/recaptcha/index-5.7.3.js' id='wpcf7-recaptcha-js'></script> <script defer type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-content/plugins/akismet/_inc/akismet-frontend-1675842506.js' id='akismet-frontend-js'></script> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-content/plugins/js_composer/assets/js/dist/js_composer_front.min-6.10.0.js' id='wpb_composer_front_js-js'></script> <script type='text/javascript' src='//unpkg.com/leaflet@1.3.1/dist/leaflet.js?ver=1.3.1' id='leaflet-maps-api-js'></script> <script type='text/javascript' id='movedo-grve-maps-script-js-extra'>/* <![CDATA[ */ var movedo_grve_maps_data = {"map_tile_url":"https:\/\/{s}.tile.openstreetmap.org\/{z}\/{x}\/{y}.png","map_tile_url_subdomains":"abc","map_tile_attribution":"\u00a9 <a href=\"http:\/\/www.openstreetmap.org\/copyright\">OpenStreetMap<\/a>"}; /* ]]> */</script> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-content/themes/movedo/js/leaflet-maps-3.5.4.js' id='movedo-grve-maps-script-js'></script> <script type='text/javascript' id='movedo-grve-login-js-extra'>/* <![CDATA[ */ var grve_form = {"ajaxurl":"https:\/\/beardesign.me\/backoffice\/admin-ajax.php","redirect_url":""}; /* ]]> */</script> <script type='text/javascript' src='//beardesign.me/data/cache/busting/1/wp-content/themes/movedo/js/ajax-login-3.5.4.js' id='movedo-grve-login-js'></script> <script type="text/javascript">(function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async=true;; po.src = 'https://beardesign.me/apps/easy-social-share-buttons3/assets/modules/pinterest-pro.min.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })();(function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async=true;; po.src = 'https://beardesign.me/apps/easy-social-share-buttons3/assets/modules/subscribe-forms.min.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })();(function() { var po = document.createElement('script'); po.type = 'text/javascript'; po.async=true;; po.src = 'https://beardesign.me/apps/easy-social-share-buttons3/assets/js/essb-core.min.js'; var s = document.getElementsByTagName('script')[0]; s.parentNode.insertBefore(po, s); })();</script><script type="text/javascript"></script><script>(function(w, d){ var b = d.getElementsByTagName("body")[0]; var s = d.createElement("script"); s.async = true; s.src = !("IntersectionObserver" in w) ? "https://beardesign.me/apps/wp-rocket/inc/front/js/lazyload-8.15.2.min.js" : "https://beardesign.me/apps/wp-rocket/inc/front/js/lazyload-10.17.min.js"; w.lazyLoadOptions = { elements_selector: "img,iframe", data_src: "lazy-src", data_srcset: "lazy-srcset", data_sizes: "lazy-sizes", skip_invisible: false, class_loading: "lazyloading", class_loaded: "lazyloaded", threshold: 300, callback_load: function(element) { if ( element.tagName === "IFRAME" && element.dataset.rocketLazyload == "fitvidscompatible" ) { if (element.classList.contains("lazyloaded") ) { if (typeof window.jQuery != "undefined") { if (jQuery.fn.fitVids) { jQuery(element).parent().fitVids(); } } } } } }; // Your options here. See "recipes" for more information about async. b.appendChild(s); }(window, document)); // Listen to the Initialized event window.addEventListener('LazyLoad::Initialized', function (e) { // Get the instance and puts it in the lazyLoadInstance variable var lazyLoadInstance = e.detail.instance; var observer = new MutationObserver(function(mutations) { mutations.forEach(function(mutation) { lazyLoadInstance.update(); } ); } ); var b = document.getElementsByTagName("body")[0]; var config = { childList: true, subtree: true }; observer.observe(b, config); }, false);</script> </div></body></html> <!-- This website is like a Rocket, isn't it? Performance optimized by WP Rocket. Learn more: https://wp-rocket.me - Debug: cached@1713883896 -->