/*! Made with Bones: http://themble.com/bones :) */
/******************************************************************
Site Name:
Author:

Stylesheet: Main Stylesheet

Here's where the magic happens. Here, you'll see we are calling in
the separate media queries. The base mobile goes outside any query
and is called at the beginning, after that we call the rest
of the styles inside media queries.

Helpful articles on Sass file organization:
http://thesassway.com/advanced/modular-css-naming-conventions

******************************************************************/
/*********************
IMPORTING PARTIALS
These files are needed at the beginning so that we establish all
our mixins, functions, and variables that we'll be using across
the whole project.
*********************/
/* normalize.css 2012-07-07T09:50 UTC - http://github.com/necolas/normalize.css */
/* ==========================================================================
   HTML5 display definitions
   ========================================================================== */
/**
 * Correct `block` display not defined in IE 8/9.
 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block; }

/**
 * Correct `inline-block` display not defined in IE 8/9.
 */
audio,
canvas,
video {
  display: inline-block; }

/**
 * Prevent modern browsers from displaying `audio` without controls.
 * Remove excess height in iOS 5 devices.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Address `[hidden]` styling not present in IE 8/9.
 * Hide the `template` element in IE, Safari, and Firefox < 22.
 */
[hidden],
template {
  display: none; }

/* ==========================================================================
   Base
   ========================================================================== */
/**
 * 1. Set default font family to sans-serif.
 * 2. Prevent iOS text size adjust after orientation change, without disabling
 *    user zoom.
 */
html {
  scroll-behavior: smooth;

  font-family: sans-serif;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/**
 * Remove default margin.
 */
body {
  margin: 0; }

/* ==========================================================================
   Links
   ========================================================================== */
/**
 * Remove the gray background color from active links in IE 10.
 */
a {
  background: transparent; }

/**
 * Address `outline` inconsistency between Chrome and other browsers.
 */
a:focus {
  outline: 0; }

/**
 * Improve readability when focused and also mouse hovered in all browsers.
 */
a:active,
a:hover {
  outline: 0; }

/* ==========================================================================
   Typography
   ========================================================================== */
/**
 * Address variable `h1` font-size and margin within `section` and `article`
 * contexts in Firefox 4+, Safari 5, and Chrome.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/**
 * Address styling not present in IE 8/9, Safari 5, and Chrome.
 */
abbr[title] {
  border-bottom: 1px dotted; }

/**
 * Address style set to `bolder` in Firefox 4+, Safari 5, and Chrome.
 */
b,
strong,
.strong {
  font-weight: bold; }

/**
 * Address styling not present in Safari 5 and Chrome.
 */
dfn,
em,
.em {
  font-style: italic; }

/**
 * Address differences between Firefox and other browsers.
 */
hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

/*
 * Addresses margins set differently in IE6/7.
 */
pre {
  margin: 0; }

/**
 * Correct font family set oddly in Safari 5 and Chrome.
 */
code,
kbd,
pre,
samp {
  font-family: monospace, serif;
  font-size: 1em; }

/**
 * Improve readability of pre-formatted text in all browsers.
 */
pre {
  white-space: pre-wrap; }

/**
 * Set consistent quote types.
 */
q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

/**
 * Address inconsistent and variable font size in all browsers.
 */
q:before,
q:after {
  content: '';
  content: none; }

small, .small {
  font-size: 75%; }

/**
 * Prevent `sub` and `sup` affecting `line-height` in all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

/* ==========================================================================
  Lists
========================================================================== */
/*
 * Addresses margins set differently in IE6/7.
 */
dl,
menu,
ol,
ul {
  margin: 1em 0; }

dd {
  margin: 0; }

/*
 * Addresses paddings set differently in IE6/7.
 */
menu {
  padding: 0 0 0 40px; }

ol,
ul {
  padding: 0;
  list-style-type: none; }

/*
 * Corrects list images handled incorrectly in IE7.
 */
nav ul,
nav ol {
  list-style: none;
  list-style-image: none; }

/* ==========================================================================
  Embedded content
========================================================================== */
/**
 * Remove border when inside `a` element in IE 8/9.
 */
img {
  border: 0; }

/**
 * Correct overflow displayed oddly in IE 9.
 */
svg:not(:root) {
  overflow: hidden; }

/* ==========================================================================
   Figures
   ========================================================================== */
/**
 * Address margin not present in IE 8/9 and Safari 5.
 */
figure {
  margin: 0; }

/* ==========================================================================
   Forms
   ========================================================================== */
/**
 * Define consistent border, margin, and padding.
 */
fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em; }

/**
 * 1. Correct `color` not being inherited in IE 8/9.
 * 2. Remove padding so people aren't caught out if they zero out fieldsets.
 */
legend {
  border: 0;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Correct font family not being inherited in all browsers.
 * 2. Correct font size not being inherited in all browsers.
 * 3. Address margins set differently in Firefox 4+, Safari 5, and Chrome.
 */
button,
input,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 2 */
  margin: 0;
  /* 3 */ }

/**
 * Address Firefox 4+ setting `line-height` on `input` using `!important` in
 * the UA stylesheet.
 */
button,
input {
  line-height: normal; }

/**
 * Address inconsistent `text-transform` inheritance for `button` and `select`.
 * All other form control elements do not inherit `text-transform` values.
 * Correct `button` style inheritance in Chrome, Safari 5+, and IE 8+.
 * Correct `select` style inheritance in Firefox 4+ and Opera.
 */
button,
select {
  text-transform: none; }

/**
 * 1. Avoid the WebKit bug in Android 4.0.* where (2) destroys native `audio`
 *    and `video` controls.
 * 2. Correct inability to style clickable `input` types in iOS.
 * 3. Improve usability and consistency of cursor style between image-type
 *    `input` and others.
 */
button,
html input[type="button"],
input[type="reset"],
input[type="submit"] {
  -webkit-appearance: button;
  /* 2 */
  cursor: pointer;
  /* 3 */ }

/**
 * Re-set default cursor for disabled elements.
 */
button[disabled],
html input[disabled] {
  cursor: default; }

/**
 * 1. Address box sizing set to `content-box` in IE 8/9/10.
 * 2. Remove excess padding in IE 8/9/10.
 */
input[type="checkbox"],
input[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * 1. Address `appearance` set to `searchfield` in Safari 5 and Chrome.
 * 2. Address `box-sizing` set to `border-box` in Safari 5 and Chrome
 *    (include `-moz` to future-proof).
 */
input[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  /* 2 */
  box-sizing: content-box; }

/**
 * Remove inner padding and search cancel button in Safari 5 and Chrome
 * on OS X.
 */
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * Remove inner padding and border in Firefox 4+.
 */
button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0; }

/**
 * 1. Remove default vertical scrollbar in IE 8/9.
 * 2. Improve readability and alignment in all browsers.
 */
textarea {
  overflow: auto;
  /* 1 */
  vertical-align: top;
  /* 2 */ }

/* ==========================================================================
   Tables
   ========================================================================== */
/**
 * Remove most spacing between table cells.
 */
table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

.image-replacement,
.ir {
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden; }

.clearfix, .cf {
  zoom: 1; }
  .clearfix:before, .clearfix:after, .cf:before, .cf:after {
    content: "";
    display: table; }
  .clearfix:after, .cf:after {
    clear: both; }

/*
use the best ampersand
http://simplebits.com/notebook/2008/08/14/ampersands-2/
*/
span.amp {
  font-family: Baskerville,'Goudy Old Style',Palatino,'Book Antiqua',serif !important;
  font-style: italic; }

/******************************************************************
Site Name:
Author:

Stylesheet: Variables

Here is where we declare all our variables like colors, fonts,
base values, and defaults. We want to make sure this file ONLY
contains variables that way our files don't get all messy.
No one likes a mess.

******************************************************************/
/*********************
General
*********************/
/*********************
COLORS
Need help w/ choosing your colors? Try this site out:
http://0to255.com/
*********************/
/*Changed from fbe3e4*/
/*Changed from e6efc2*/
/*Changed from*/
/*Dark grey*/
/*Darker grey*/
/*
Here's a great tutorial on how to
use color variables properly:
http://sachagreif.com/sass-color-variables/
*/
/******************************************************************
Site Name:
Author:

Stylesheet: Typography

Need to import a font or set of icons for your site? Drop them in
here or just use this to establish your typographical grid. Or not.
Do whatever you want to...GOSH!

Helpful Articles:
http://trentwalton.com/2012/06/19/fluid-type/
http://ia.net/blog/responsive-typography-the-basics/
http://alistapart.com/column/responsive-typography-is-a-physical-discipline

******************************************************************/
/*********************
FONT
*********************/
/*
some nice typographical defaults
more here: http://www.newnet-soft.com/blog/csstypography
*/
p {
  -ms-word-wrap: break-word;
  word-break: break-word;
  word-wrap: break-word;
  -webkit-hyphenate-before: 2;
  -webkit-hyphenate-after: 3;
  hyphenate-lines: 3;
  -webkit-font-feature-settings: "liga", "dlig";
  -moz-font-feature-settings: "liga=1, dlig=1";
  -ms-font-feature-settings: "liga", "dlig";
  -o-font-feature-settings: "liga", "dlig";
  font-feature-settings: "liga", "dlig"; }

/******************************************************************
Site Name:
Author:

Stylesheet: Sass Functions

You can do a lot of really cool things in Sass. Functions help you
make repeated actions a lot easier. They are really similar to mixins,
but can be used for so much more.

Anyway, keep them all in here so it's easier to find when you're
looking for one.

For more info on functions, go here:
http://sass-lang.com/documentation/Sass/Script/Functions.html

******************************************************************/
/*********************
COLOR FUNCTIONS
These are helpful when you're working
with shadows and such things. It's essentially
a quicker way to write RGBA.

Example:
box-shadow: 0 0 4px black(0.3);
compiles to:
box-shadow: 0 0 4px rgba(0,0,0,0.3);
*********************/
/*********************
RESPONSIVE HELPER FUNCTION
If you're creating a responsive site, then
you've probably already read
Responsive Web Design: http://www.abookapart.com/products/responsive-web-design

Here's a nice little helper function for calculating
target / context
as mentioned in that book.

Example:
width: cp(650px, 1000px);
or
width: calc-percent(650px, 1000px);
both compile to:
width: 65%;
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Mixins Stylesheet

This is where you can take advantage of Sass' great features: Mixins.
I won't go in-depth on how they work exactly,
there are a few articles below that will help do that. What I will
tell you is that this will help speed up simple changes like
changing a color or adding CSS3 techniques gradients.

A WORD OF WARNING: It's very easy to overdo it here. Be careful and
remember less is more.

Helpful:
http://sachagreif.com/useful-sass-mixins/
http://thesassway.com/intermediate/leveraging-sass-mixins-for-cleaner-code
http://web-design-weekly.com/blog/2013/05/12/handy-sass-mixins/

******************************************************************/
/*********************
TRANSITION
*********************/
/*
I totally rewrote this to be cleaner and easier to use.
You'll need to be using Sass 3.2+ for these to work.
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/*********************
CSS3 GRADIENTS
Be careful with these since they can
really slow down your CSS. Don't overdo it.
*********************/
/* @include css-gradient(#dfdfdf,#f8f8f8); */
/*********************
BOX SIZING
*********************/
/* @include box-sizing(border-box); */
/* NOTE: value of "padding-box" is only supported in Gecko. So
probably best not to use it. I mean, were you going to anyway? */
/******************************************************************
Site Name: beech
Author: Max Beech

Stylesheet: Grid Stylesheet

http://www.responsivegridsystem.com/

******************************************************************/
/*  SECTIONS  ============================================================================= */
.section {
  clear: both;
  padding: 0px;
  margin: 0px; }

/*  GROUPING  ============================================================================= */
.group:before,
.group:after {
  content: "";
  display: table; }

.group:after {
  clear: both; }

.group {
  zoom: 1;
  /* For IE 6/7 (trigger hasLayout) */ }

/*  GRID COLUMN SETUP   ==================================================================== */
.col {
  display: block;
  float: left;
  margin: 1% 0 1% 1.2%; }

.col:first-child {
  margin-left: 0; }

/* all browsers except IE6 and lower */
/*  REMOVE MARGINS AS ALL GO FULL WIDTH AT 600 PIXELS */
@media only screen and (max-width: 600px) {
  .col {
    margin: 1% 0 1% 0%; } }
/*  GRID OF TWO   ============================================================================= */
.span_2_of_2 {
  width: 100%; }

.span_1_of_2 {
  width: 49.2%; }

/*  GO FULL WIDTH AT LESS THAN 600 PIXELS */
@media only screen and (max-width: 600px) {
  .span_2_of_2 {
    width: 100%; }

  .span_1_of_2 {
    width: 100%; } }
/*  GRID OF THREE   ============================================================================= */
.span_3_of_3 {
  width: 100%; }

.span_2_of_3 {
  width: 66.13%; }

.span_1_of_3 {
  width: 32.26%; }

/*  GO FULL WIDTH AT LESS THAN 600 PIXELS */
@media only screen and (max-width: 600px) {
  .span_3_of_3 {
    width: 100%; }

  .span_2_of_3 {
    width: 100%; }

  .span_1_of_3 {
    width: 100%; } }
/*  GRID OF FIVE   ============================================================================= */
.span_5_of_5 {
  width: 100%; }

.span_4_of_5 {
  width: 79.68%; }

.span_3_of_5 {
  width: 59.36%; }

.span_2_of_5 {
  width: 39.04%; }

.span_1_of_5 {
  width: 18.72%; }

/*  GO FULL WIDTH AT LESS THAN 600 PIXELS */
@media only screen and (max-width: 600px) {
  .span_5_of_5 {
    width: 100%; }

  .span_4_of_5 {
    width: 100%; }

  .span_3_of_5 {
    width: 100%; }

  .span_2_of_5 {
    width: 100%; }

  .span_1_of_5 {
    width: 100%; } }
/*  GRID OF SIX   ============================================================================= */
.span_6_of_6 {
  width: 100%; }

.span_5_of_6 {
  width: 83.06%; }

.span_4_of_6 {
  width: 66.13%; }

.span_3_of_6 {
  width: 49.2%; }

.span_2_of_6 {
  width: 32.26%; }

.span_1_of_6 {
  width: 15.33%; }

/*  GO FULL WIDTH AT LESS THAN 600 PIXELS */
@media only screen and (max-width: 600px) {
  .span_6_of_6 {
    width: 100%; }

  .span_5_of_6 {
    width: 100%; }

  .span_4_of_6 {
    width: 100%; }

  .span_3_of_6 {
    width: 100%; }

  .span_2_of_6 {
    width: 100%; }

  .span_1_of_6 {
    width: 100%; } }
/*********************
IMPORTING MODULES
Modules are reusable blocks or elements we use throughout the project.
We can break them up as much as we want or just keep them all in one.
I mean, you can do whatever you want. The world is your oyster. Unless
you hate oysters, then the world is your peanut butter & jelly sandwich.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Alert Styles

If you want to use these alerts in your design, you can. If not,
you can just remove this stylesheet.

******************************************************************/
.alert-help, .alert-info, .alert-error, .alert-success {
  margin: 10px;
  padding: 5px 18px;
  border: 1px solid; }

.alert-help {
  border-color: #e8dc59;
  background: #ebe16f; }

.alert-info {
  border-color: #bfe4f4;
  background: #d5edf8; }

.alert-error {
  border-color: #eb4144;
  background: #ed585b; }

.alert-success {
  border-color: #2a8000;
  background: #339900; }

/******************************************************************
Site Name:
Author:

Stylesheet: Button Styles

Buttons are a pretty important part of your site's style, so it's
important to have a consistent baseline for them. Use this stylesheet
to create all kinds of buttons.

Helpful Links:
http://galp.in/blog/2011/08/02/the-ui-guide-part-1-buttons/

******************************************************************/
/*********************
BUTTON DEFAULTS
We're gonna use a placeholder selector here
so we can use common styles. We then use this
to load up the defaults in all our buttons.

Here's a quick video to show how it works:
http://www.youtube.com/watch?v=hwdVpKiJzac

*********************/
.btn-green, input[type="submit"], .btn-white, .btn-info_box, .btn-para, .wp-block-button__link {
  display: inline-block;
  position: relative;
  text-transform: uppercase;
  font-family: "Open Sans", sans-serif;
  text-decoration: none;
  color: #97c089 !important;
  font-size: 14px;
  line-height: 28px;
  font-weight: 600;
  padding: 3px 30px;
  border-radius: 10px;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  transition: background-color 0.14s ease-in-out;
  outline: none; }
  .btn-green:hover, input[type="submit"]:hover, .btn-white:hover, .btn-info_box:hover, .btn-para:hover, .wp-block-button__link:hover {
    color: #fff !important;
    text-decoration: none;
    outline: none;
    border: solid 2px; }
  .btn-green:active, input[type="submit"]:active, .btn-white:active, .btn-info_box:active, .btn-para:active, .wp-block-button__link:active {
    top: 0px; }

.btn-green, input[type="submit"], .wp-block-button__link {
  background-color: #fff;
  border: solid #97c089 2px; }
  .btn-green:hover, input[type="submit"]:hover, .wp-block-button__link:hover {
    background-color: #97c089;
    border: solid #97c089 2px; }
  .btn-green:active, input[type="submit"]:active, .wp-block-button__link:active {
    border: solid #82b472 2px;
    background-color: #82b472;
    color: #fff !important; }

.btn-white {
  background-color: transparent;
  border: solid #fff 2px;
  color: #fff !important; }
  .btn-white:hover {
    background-color: #97c089;
    /*fallback for rgba*/
    background-color: rgba(255, 255, 255, 0.4);
    border: solid #fff 2px;
    color: #fff !important; }
  .btn-white:active {
    background-color: #88b778;
    /*fallback for rgba*/
    background-color: rgba(255, 255, 255, 0.7); }
    
.home-section-1-content .btn-white {
    margin: 0 7px;
}

.btn-info_box {
  background-color: transparent;
  border: solid #fff 2.5px;
  color: #fff;
  font-size: 13px;
  line-height: 22px;
  border: solid 1px; }
  .btn-info_box:hover {
    background-color: #97c089;
    /*fallback for rgba*/
    background-color: rgba(255, 255, 255, 0.4);
    border: solid #fff 1px;
    color: #fff; }
  .btn-info_box:active {
    background-color: #88b778;
    /*fallback for rgba*/
    background-color: rgba(255, 255, 255, 0.7); }

.btn-para {
  background-color: transparent;
  border: solid #fff 2.5px;
  color: #fff;
  font-size: 13px;
  line-height: 22px;
  border: solid 1px; }
  .btn-para:hover {
    background-color: #97c089;
    /*fallback for rgba*/
    background-color: rgba(255, 255, 255, 0.4);
    border: solid #fff 1px;
    color: #fff; }
  .btn-para:active {
    background-color: #88b778;
    /*fallback for rgba*/
    background-color: rgba(255, 255, 255, 0.7); }

/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent; }

.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0; }

.slick-list:focus {
  outline: none; }

.slick-list.dragging {
  cursor: pointer;
  cursor: hand; }

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block; }

.slick-track:before,
.slick-track:after {
  display: table;
  content: ''; }

.slick-track:after {
  clear: both; }

.slick-loading .slick-track {
  visibility: hidden; }

.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px; }

[dir='rtl'] .slick-slide {
  float: right; }

.slick-slide img {
  display: block; }

.slick-slide.slick-loading img {
  display: none; }

.slick-slide.dragging img {
  pointer-events: none; }

.slick-initialized .slick-slide {
  display: block; }

.slick-loading .slick-slide {
  visibility: hidden; }

.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent; }

.slick-arrow.slick-hidden {
  display: none; }

/******************************************************************
Site Name:
Author:

Stylesheet: Form Styles

We put all the form and button styles in here to setup a consistent
look. If we need to customize them, we can do this in the main
stylesheets and just override them. Easy Peasy.

You're gonna see a few data-uri thingies down there. If you're not
sure what they are, check this link out:
http://css-tricks.com/data-uris/
If you want to create your own, use this helpful link:
http://websemantics.co.uk/online_tools/image_to_data_uri_convertor/

******************************************************************/
/*********************
INPUTS
*********************/
input[type="text"],
input[type="password"],
input[type="datetime"],
input[type="datetime-local"],
input[type="date"],
input[type="month"],
input[type="time"],
input[type="week"],
input[type="number"],
input[type="email"],
input[type="url"],
input[type="search"],
input[type="tel"],
input[type="color"],
select,
textarea,
.field {
  display: block;
  height: 40px;
  line-height: 1em;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 1em;
  color: #2a2a2a;
  border-radius: 1px;
  vertical-align: middle;
  box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "Open Sans", sans-serif;
  background-color: #fff;
  -webkit-transition: background-color 0.24s ease-in-out;
  transition: background-color 0.24s ease-in-out; }
  input[type="text"]:focus, input[type="text"]:active,
  input[type="password"]:focus,
  input[type="password"]:active,
  input[type="datetime"]:focus,
  input[type="datetime"]:active,
  input[type="datetime-local"]:focus,
  input[type="datetime-local"]:active,
  input[type="date"]:focus,
  input[type="date"]:active,
  input[type="month"]:focus,
  input[type="month"]:active,
  input[type="time"]:focus,
  input[type="time"]:active,
  input[type="week"]:focus,
  input[type="week"]:active,
  input[type="number"]:focus,
  input[type="number"]:active,
  input[type="email"]:focus,
  input[type="email"]:active,
  input[type="url"]:focus,
  input[type="url"]:active,
  input[type="search"]:focus,
  input[type="search"]:active,
  input[type="tel"]:focus,
  input[type="tel"]:active,
  input[type="color"]:focus,
  input[type="color"]:active,
  select:focus,
  select:active,
  textarea:focus,
  textarea:active,
  .field:focus,
  .field:active {
    background-color: whitesmoke;
    outline: none; }
  input[type="text"].error, input[type="text"].is-invalid,
  input[type="password"].error,
  input[type="password"].is-invalid,
  input[type="datetime"].error,
  input[type="datetime"].is-invalid,
  input[type="datetime-local"].error,
  input[type="datetime-local"].is-invalid,
  input[type="date"].error,
  input[type="date"].is-invalid,
  input[type="month"].error,
  input[type="month"].is-invalid,
  input[type="time"].error,
  input[type="time"].is-invalid,
  input[type="week"].error,
  input[type="week"].is-invalid,
  input[type="number"].error,
  input[type="number"].is-invalid,
  input[type="email"].error,
  input[type="email"].is-invalid,
  input[type="url"].error,
  input[type="url"].is-invalid,
  input[type="search"].error,
  input[type="search"].is-invalid,
  input[type="tel"].error,
  input[type="tel"].is-invalid,
  input[type="color"].error,
  input[type="color"].is-invalid,
  select.error,
  select.is-invalid,
  textarea.error,
  textarea.is-invalid,
  .field.error,
  .field.is-invalid {
    color: #ed585b;
    border-color: #ed585b;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDREQkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDREQ0YwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ3ODRGRkE2RjA0QTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERBRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+U8iT5wAAAedJREFUeNqk1U9I02Ecx/HtV3aIFAc1hcRDUoGXRAq0oNLA2CrsEFmHbikZu0iQYIFGYAiegkCpLipBxPpDEBMUzB0EhSG2LhG7hMR2GviPgUTvB57Bw8P3+U23B16HPX8+e/b8nt93wezZSMCnhXETF3AcB5BDCnH8Dq98ExcGHcFn8Ah3cdDni+fxnPDv9oAnTB7CKu6VCFXtChZy56LxUjt+jfuB8toSOth9wd7xWAWhqrUjYR/FRTwWJm+iIPT/w7bQf5ljiZnBg45dtKFX6H+LU8gIY8OEV6vgTkStwXWE8BPTGDHGPqNPz2mCfSOOYkA99TvCt1bhGPL68zMcwmncMuape10jrI+q4BbHi/FLn31S9z2x5tRhTc+1W506ipM+T3oRD4X+8+qtc4SqFvL0z/Fr14S+Szjis8bz9Lvvaq8cwS/wwGfdlqfPSWqTiFlX77o13u9Ym1PBs8JAytpRoy44X9Ft9E/gvbA+rYKn8NcaaMVc8UHgBw4b9/iqUQZ6hOAJFbyDcUflmsEX4a6+wTtHGfhAIUqa1U29Zc2BytouThD8x6xuN5CtMPi2CrXLZkZf/HyZoRFCP7n+QVR4PV7uI/AjGghN7OU/r1ilnqILtfpNC+o6vIFljBKYlhb/F2AAgaBsWR5wRiIAAAAASUVORK5CYII=);
    outline-color: #ed585b; }
  input[type="text"].success, input[type="text"].is-valid,
  input[type="password"].success,
  input[type="password"].is-valid,
  input[type="datetime"].success,
  input[type="datetime"].is-valid,
  input[type="datetime-local"].success,
  input[type="datetime-local"].is-valid,
  input[type="date"].success,
  input[type="date"].is-valid,
  input[type="month"].success,
  input[type="month"].is-valid,
  input[type="time"].success,
  input[type="time"].is-valid,
  input[type="week"].success,
  input[type="week"].is-valid,
  input[type="number"].success,
  input[type="number"].is-valid,
  input[type="email"].success,
  input[type="email"].is-valid,
  input[type="url"].success,
  input[type="url"].is-valid,
  input[type="search"].success,
  input[type="search"].is-valid,
  input[type="tel"].success,
  input[type="tel"].is-valid,
  input[type="color"].success,
  input[type="color"].is-valid,
  select.success,
  select.is-valid,
  textarea.success,
  textarea.is-valid,
  .field.success,
  .field.is-valid {
    color: #339900;
    border-color: #339900;
    background-color: #fff;
    background-position: 99% center;
    background-repeat: no-repeat;
    background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABYAAAAWCAYAAADEtGw7AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo2NDM0NDRERkYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo2NDM0NDRFMEYwNEIxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY0MzQ0NERERjA0QjExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjY0MzQ0NERFRjA0QjExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+7olkTQAAAfhJREFUeNqklU9oE0EUhzdroWjw0tBeWlDxkEaIp55TsCU9VKIgCrHBelA8CQ1Kr1WPbZrQ3gqtQqvGqxpQc2jBk6BIIaAGD4qNCKURpDSKiPi98gLDsJt//uBjsztvfnk7895sIPAw6/joGMThFJyAXn2+A+9gA57/TaY/eU0OeBgfhGm4DiGnsb7DAszxBz/NAdcKjMJLuNWCqagHbsscN5+L+hmH4QkMOe1L5jzFfNA2PgT34ajTuY7AGuZB0/hmh5m+gS0r8xv1zRvg+gGCHZiOwnF4DP3iB3sQkYxPd2C6CWfhB9Xwlus5+K1j4jXuaq3a+gM1H9OPcAa+7q9lPidZJqHbiIm7Wg22rsEI7FrPSzAMX/T+ADyAKSsu7Fr1KplehLvwCs5DvfBf65p+MypqRbO1FXK9utH4/QKuaqYTsG3E3INJv00Q46px3+XxanJ/Ute2/vqP4FKDza2KcdljIKdnhS0xXYULTaqmLMZFn8FFSFtvt6x70ExFCS5oUXspq2ssa7oEl1swFa+CGFdgtkHgPDyDKy02zyxNU6lXRUZb1EuHYayNNs+Yh5B0WQo+/8fpJnNTZFuzz2OpjoQ2QruSOQlMy35fEGmEGMxY9e1brxobw7TkWA1h6xfckUPb+JhGoE/Hpfvew7qUld/H9J8AAwDpw3WYrxcZ3QAAAABJRU5ErkJggg==);
    outline-color: #339900; }
  input[type="text"][disabled], input[type="text"].is-disabled,
  input[type="password"][disabled],
  input[type="password"].is-disabled,
  input[type="datetime"][disabled],
  input[type="datetime"].is-disabled,
  input[type="datetime-local"][disabled],
  input[type="datetime-local"].is-disabled,
  input[type="date"][disabled],
  input[type="date"].is-disabled,
  input[type="month"][disabled],
  input[type="month"].is-disabled,
  input[type="time"][disabled],
  input[type="time"].is-disabled,
  input[type="week"][disabled],
  input[type="week"].is-disabled,
  input[type="number"][disabled],
  input[type="number"].is-disabled,
  input[type="email"][disabled],
  input[type="email"].is-disabled,
  input[type="url"][disabled],
  input[type="url"].is-disabled,
  input[type="search"][disabled],
  input[type="search"].is-disabled,
  input[type="tel"][disabled],
  input[type="tel"].is-disabled,
  input[type="color"][disabled],
  input[type="color"].is-disabled,
  select[disabled],
  select.is-disabled,
  textarea[disabled],
  textarea.is-disabled,
  .field[disabled],
  .field.is-disabled {
    cursor: not-allowed;
    border-color: #cfcfcf;
    opacity: 0.6; }
    input[type="text"][disabled]:focus, input[type="text"][disabled]:active, input[type="text"].is-disabled:focus, input[type="text"].is-disabled:active,
    input[type="password"][disabled]:focus,
    input[type="password"][disabled]:active,
    input[type="password"].is-disabled:focus,
    input[type="password"].is-disabled:active,
    input[type="datetime"][disabled]:focus,
    input[type="datetime"][disabled]:active,
    input[type="datetime"].is-disabled:focus,
    input[type="datetime"].is-disabled:active,
    input[type="datetime-local"][disabled]:focus,
    input[type="datetime-local"][disabled]:active,
    input[type="datetime-local"].is-disabled:focus,
    input[type="datetime-local"].is-disabled:active,
    input[type="date"][disabled]:focus,
    input[type="date"][disabled]:active,
    input[type="date"].is-disabled:focus,
    input[type="date"].is-disabled:active,
    input[type="month"][disabled]:focus,
    input[type="month"][disabled]:active,
    input[type="month"].is-disabled:focus,
    input[type="month"].is-disabled:active,
    input[type="time"][disabled]:focus,
    input[type="time"][disabled]:active,
    input[type="time"].is-disabled:focus,
    input[type="time"].is-disabled:active,
    input[type="week"][disabled]:focus,
    input[type="week"][disabled]:active,
    input[type="week"].is-disabled:focus,
    input[type="week"].is-disabled:active,
    input[type="number"][disabled]:focus,
    input[type="number"][disabled]:active,
    input[type="number"].is-disabled:focus,
    input[type="number"].is-disabled:active,
    input[type="email"][disabled]:focus,
    input[type="email"][disabled]:active,
    input[type="email"].is-disabled:focus,
    input[type="email"].is-disabled:active,
    input[type="url"][disabled]:focus,
    input[type="url"][disabled]:active,
    input[type="url"].is-disabled:focus,
    input[type="url"].is-disabled:active,
    input[type="search"][disabled]:focus,
    input[type="search"][disabled]:active,
    input[type="search"].is-disabled:focus,
    input[type="search"].is-disabled:active,
    input[type="tel"][disabled]:focus,
    input[type="tel"][disabled]:active,
    input[type="tel"].is-disabled:focus,
    input[type="tel"].is-disabled:active,
    input[type="color"][disabled]:focus,
    input[type="color"][disabled]:active,
    input[type="color"].is-disabled:focus,
    input[type="color"].is-disabled:active,
    select[disabled]:focus,
    select[disabled]:active,
    select.is-disabled:focus,
    select.is-disabled:active,
    textarea[disabled]:focus,
    textarea[disabled]:active,
    textarea.is-disabled:focus,
    textarea.is-disabled:active,
    .field[disabled]:focus,
    .field[disabled]:active,
    .field.is-disabled:focus,
    .field.is-disabled:active {
      background-color: #d5edf8; }

input[type="password"] {
  letter-spacing: 0.3em; }

textarea {
  max-width: 100%;
  min-height: 120px;
  line-height: 1.5em; }

select {
  -webkit-appearance: none;
  /* 1 */
  -moz-appearance: none;
  appearance: none;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA8AAAAHCAYAAADXhRcnAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyRpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNiAoTWFjaW50b3NoKSIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDpEOEZCMjYxMEYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDpEOEZCMjYxMUYwNUUxMUUyOTI4REZGQTEzMzA2MDcyNiI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOkQ4RkIyNjBFRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2IiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOkQ4RkIyNjBGRjA1RTExRTI5MjhERkZBMTMzMDYwNzI2Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+Vxkp9gAAAI9JREFUeNpidHFxucHAwKAOxE+AmJmBMPgLxDJAfJMFSKwD4kqoAClgA+P///8ZXF1dPaCGcBKh6QcQB+3evXs7WDMIAA2QB1I7gFgDj0aQFz2BGh+AOEwwUaDAQyBlCMR7cGjcC5KHaQQBuM3IAOiKTiBVhiTUDdRUhq4Oq2aoAelAahIQ5wM1zsCmBiDAADhYMJXVZ9u9AAAAAElFTkSuQmCC);
  background-repeat: no-repeat;
  background-position: 97.5% center; }

/*********************
BASE (MOBILE) SIZE
This are the mobile styles. It's what people see on their phones. If
you set a great foundation, you won't need to add too many styles in
the other stylesheets. Remember, keep it light: Speed is Important.
*********************/
/******************************************************************
Site Name:
Author:

Stylesheet: Base Mobile Stylesheet

Be light and don't over style since everything here will be
loaded by mobile devices. You want to keep it as minimal as
possible. This is called at the top of the main stylsheet
and will be used across all viewports.

******************************************************************/
/*********************
GENERAL STYLES
*********************/
#container {
  height: 100%;
  /*May break stuff*/ }

html {
  height: 100%;
  /*May break stuff*/ }

body {
  font-family: "Open Sans", sans-serif;
  font-size: 100%;
  line-height: 1.5;
  color: #2a2a2a;
  background-color: #fff;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  height: 100%;
  /*May break stuff*/ }

.fade-in {
  opacity: 0; }
  
/* --Hide HTML5 Play icons--s */
*::-webkit-media-controls-panel {
  display: none!important;
  -webkit-appearance: none;
}
*::--webkit-media-controls-play-button {
  display: none!important;
  -webkit-appearance: none;
}
*::-webkit-media-controls-start-playback-button {
  display: none!important;
  -webkit-appearance: none;
}

/******************************************************************
Page specific
******************************************************************/
body.page-id-29 .beechnavigation-desktop .beechnav-home {
  opacity: 1 !important; }

body.page-id-68 .beechnavigation-desktop .beechnav-join {
  opacity: 1 !important; }

body.page-id-33 .beechnavigation-desktop .beechnav-contact {
  opacity: 1 !important; }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5 {
  text-rendering: optimizelegibility;
  font-weight: 500;
  /*
  if you're going to use webfonts, be sure to check your weights
  http://css-tricks.com/watch-your-font-weight/
  */
  /* removing text decoration from all headline links */ }
  h1 a, .h1 a, h2 a, .h2 a, h3 a, .h3 a, h4 a, .h4 a, h5 a, .h5 a {
    text-decoration: none; }

h1, .h1 {
  /*Site title*/
  color: #fff;
  font-weight: 700;
  font-size: 2.5em;
  text-transform: capitalize; }

h2, .h2 {
  /*Section header*/
  color: #2a2a2a;
  font-weight: 700;
  font-size: 1.1em;
  line-height: 1em;
  margin-bottom: 0.1em;
  text-transform: capitalize; 
  padding-top: 20px;
  margin-top: 30px;
}

h3, .h3 {
color: #2a2a2a;
font-weight: 700;
text-transform: capitalize; 
margin-top: 40px;
margin-bottom: 10px;
}
.home-section-news h3, .home-section-gallery h3, .home-section-news .h3, .home-section-gallery h3 {
  /*Slider*/
  color: #fff;
  font-weight: 400;
  font-size: 1.4em;
  line-height: 0em;
  text-transform: capitalize; }
.home-section-gallery h3, .home-section-gallery h3 {
  margin-top: 15px;
}

h4, .h4 {
  text-transform: uppercase;
  font-weight: 400;
  font-size: 14px;
  margin-bottom: 20px; }

h5, .h5 {
  font-weight: 400;
  font-size: 0.95em;
  line-height: auto;
  margin-top: 5px;
}
.page-hero-container h5, .page-hero-container .h5 {
  /*Hero subheading*/
  color: #fff;
  font-weight: 400;
  font-size: 0.95em;
  line-height: auto;
  margin-top: -20px; }

p1, .p1 {
  /*Section description text*/
  color: #242424;
  font-size: 16px;
  font-weight: 300; }

p2, .p2 {
  /*Section description text*/
  color: #fff;
  font-size: 0.75em;
  font-weight: 400;
  display: block;
  margin-bottom: 10px;
  line-height: 1.5em; }

p3, .p3 {
  /*Apply form*/
  color: #242424;
  font-size: 0.9em;
  font-weight: 400; }
  
p {
  margin-top: 10px;
}

/******************************************************************
Manual
******************************************************************/
.manual-image img {
  width: 100%;
  height: 100%;
  cursor: pointer; }

.manual-website-section {
  overflow: auto; }

/*********************
Section 1
*********************/
.manual-section-1 {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }

.manual-section-1-bg {
  width: 100%;
  height: inherit;
  background: url("../images/beech/manual-hero-bg-phone.jpg") no-repeat bottom left;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/manual-hero-bg-phone.jpg', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/manual-hero-bg-phone.jpg', sizingMethod='scale')";
  /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

.manual-section-1 {
  height: 400px;
  position: relative;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }

.manual-section-1-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  width: 99%; }

/*********************
Section 2
*********************/
.manual-section-2 {
  height: 300px;
  position: relative;
  margin-bottom: 30px; }

.manual-section-2-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 99%; }

/******************************************************************
Social
******************************************************************/
/*********************
Section 1
*********************/
.social-section-1-bg {
  width: 100%;
  height: 100%;
  background: white;
  /*Fallback*/
  background: rgba(0, 0, 0, 0.55); }

.social-section-1 {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }

.social-section-1-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  width: 99%; }

.social-section-1 h1 {
  line-height: 0.7em; }

.social-section-1-content-para {
  width: 100%;
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  text-align: center;
  font-size: 1.15em;
  position: fixed;
  z-index: 1;
  cursor: default;
  text-transform: capitalize; }
  .social-section-1-content-para a, .social-section-1-content-para a:visited, .social-section-1-content-para p1 {
    color: #fff;
    cursor: pointer; }

.social-section-1-video-container {
  overflow: hidden;
  height: inherit;
  position: relative; }

.social-section-1 video {
  position: fixed;
  /*From absolute*/
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important; }

.social-section-1 video {
  display: block; }

.social-bg-private-video {
  /*   background: url("/wp-content/themes/eddiemachado-bones-9db85e4/library/images/social-bg-tennis-first_frame.jpg") no-repeat center right; 
     /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  /*  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/social-bg-tennis-first_frame.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/social-bg-tennis-first_frame.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

/*********************
Section 2
*********************/
.social-section-2 {
  position: relative;
  text-align: center;
  /*
  height: 900px;
  margin-top: 75%;
  */
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }
  .social-section-2 h2 {
    margin-bottom: 0.5em;
    color: #fff; }
  .social-section-2 h5 {
    margin: 0; }

.social-section-2-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 99%; }
  .social-section-2-content a {
    color: white !important;
    text-decoration: underline !important;
    outline: none; }
  .social-section-2-content a:hover {
    text-decoration: none !important; }

/*********************
Section 3
*********************/
.social-section-3 {
  text-align: center;
  margin-top: 0%;
  z-index: -11;
  position: relative;
  height: 80%;
  overflow: hidden;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }
  .social-section-3 h2 {
    margin-bottom: 0.5em;
    color: #fff; }
  .social-section-3 h5 {
    margin: 0; }

.social-section-3-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 99%; }
  .social-section-3-content a {
    color: white !important;
    text-decoration: underline !important;
    outline: none; }
  .social-section-3-content a:hover {
    text-decoration: none !important; }

.social-section-3 video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -300;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important; }

.social-section-3 video {
  display: block; }

.social-bg-events-video {
  /*   background: url("/wp-content/themes/eddiemachado-bones-9db85e4/library/images/social-bg-events-first_frame.jpg") no-repeat center right; 
     /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  /*   filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/social-bg-events-first_frame.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/social-bg-events-first_frame.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }
    
/*********************
Section 4
*********************/
.social-section-4 {
  text-align: center;
  margin-top: 0%;
  z-index: -11;
  position: relative;
  height: 80%;
  overflow: hidden;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }
  .social-section-4 h2 {
    margin-bottom: 0.5em;
    color: #fff; }
  .social-section-4 h5 {
    margin: 0; }

.social-section-4-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 99%; }
  .social-section-4-content a {
    color: white !important;
    text-decoration: underline !important;
    outline: none; }
  .social-section-4-content a:hover {
    text-decoration: none !important; }

.social-section-4 video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -300;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important; }

.social-section-4 video {
  display: block; }

.social-bg-bridge-video {
  /*   background: url("/wp-content/themes/eddiemachado-bones-9db85e4/library/images/social-bg-events-first_frame.jpg") no-repeat center right; 
     /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  /*   filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/social-bg-events-first_frame.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/social-bg-events-first_frame.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

/******************************************************************
Coaching
******************************************************************/
/*********************
Section 1
*********************/
.coaching-section-1-bg {
  width: 100%;
  height: 100%;
  background: white;
  /*Fallback*/
  background: rgba(0, 0, 0, 0.55); }

.coaching-section-1 {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }

.coaching-section-1-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  width: 99%; }

.coaching-section-1 h1 {
  line-height: 0.7em; }

.coaching-section-1-content-para {
  width: 100%;
  cursor: pointer;
  position: absolute;
  bottom: 10px;
  text-align: center;
  font-size: 1.15em;
  position: fixed;
  z-index: 1;
  cursor: default;
  text-transform: capitalize; }
  .coaching-section-1-content-para a, .coaching-section-1-content-para a:visited, .coaching-section-1-content-para p1 {
    color: #fff;
    cursor: pointer; }

.coaching-section-1-video-container {
  overflow: hidden;
  height: inherit;
  position: relative; }

.coaching-section-1 video {
  position: fixed;
  /*From absolute*/
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover; }

.coaching-section-1 video {
  display: block; }

.coaching-bg-private-video {
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important;
  /* background: url("/wp-content/themes/eddiemachado-bones-9db85e4/library/images/beech/coaching-bg-private-first_frame.jpg") no-repeat center right; 
   /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  /* filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/beech/coaching-bg-private-first_frame.jpg', sizingMethod='scale');
   -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/beech/coaching-bg-private-first_frame.jpg', sizingMethod='scale')";
   /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

/*********************
Section 2
*********************/
.coaching-section-2 {
  position: relative;
  text-align: center;
  /*
  height: 900px;
  margin-top: 75%;
  */
  width: 100%;
  height: 100%;
  overflow: hidden;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }
  .coaching-section-2 h2 {
    margin-bottom: 0.5em;
    color: #fff; }
  .coaching-section-2 h5 {
    margin: 0; }

.coaching-section-2-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 99%; }

/*********************
Section 3
*********************/
.coaching-section-3 {
  text-align: center;
  margin-top: 0%;
  z-index: -11;
  position: relative;
  height: 80%;
  overflow: hidden;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }
  .coaching-section-3 h2 {
    margin-bottom: 0.5em;
    color: #fff; }
  .coaching-section-3 h5 {
    margin: 0; }

.coaching-section-3-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 99%; }

.coaching-section-3 video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  z-index: -300;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important; }

.coaching-section-3 video {
  display: block; }

.coaching-bg-junior-video {
  /*   background: url("/wp-content/themes/eddiemachado-bones-9db85e4/library/images/coaching-bg-junior-first_frame.jpg") no-repeat center right; 
     /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  /*   filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/coaching-bg-junior-first_frame.jpg', sizingMethod='scale');
     -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/coaching-bg-junior-first_frame.jpg', sizingMethod='scale')";
     /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

/*********************
Section 4
*********************/
.coaching-section-4 {
  text-align: center;
  height: 900px;
  /*Also change in .coaching-bg-x-video*/
  margin-top: 0%;
  position: relative;
  z-index: -11;
  height: 80%;
  overflow: hidden;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }
  .coaching-section-4 h2 {
    margin-bottom: 0.5em;
    color: #fff; }
  .coaching-section-4 h5 {
    margin: 0; }

.coaching-section-4-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 99%; }

.coaching-section-4 video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important; }

.coaching-section-4 video {
  display: block; }

.coaching-bg-mini-video {
  /*  background: url("/wp-content/themes/eddiemachado-bones-9db85e4/library/images/coaching-bg-mini-first_frame.jpg") no-repeat center right; 
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  /*    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/coaching-bg-mini-first_frame.jpg', sizingMethod='scale');
      -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/coaching-bg-mini-first_frame.jpg', sizingMethod='scale')";
      /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }
      

/******************************************************************
Join
******************************************************************/
/*********************
Section 1
*********************/
.join-section-1-bg {
  width: 100%;
  height: inherit;
  background: url("../images/beech/join-hero-bg-phone.jpg") no-repeat center right;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/join-hero-bg-phone.jpg', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/join-hero-bg-phone.jpg', sizingMethod='scale')";
  /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

.join-section-1 {
  height: 400px;
  position: relative;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }

.join-section-1-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  width: 99%; }

/*********************
Section 2
*********************/
#content .join-section-2-intro-outer {
  margin-bottom: 0;
}
.join-section-2-intro {
  text-align: left;
  margin: 0px 0 30px 0; 
}
.join-section-2-intro h2 {
  margin-bottom: 0.5em; }

.join-section-2-info {
  height: 350px; }

.join-section-2-info .info_box {
  position: relative;
  margin: 0 auto;
  list-style: none;
  text-align: center;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }
  
.join-section-2-info .info_box h2 {
  padding: 0;
}

/* Common style */
.join-section-2-info .info_box .info_box-effect {
  position: relative;
  overflow: hidden;
  height: 170px;
  background: #99c286;
  border-radius: 10px;
  text-align: center;
  cursor: default; }

.join-section-2-info .info_box .info_box-effect img {
  position: relative;
  display: block;
  opacity: 0.8; }

.join-section-2-info .info_box .info_box-effect .info_box-caption {
  padding: 0.7em;
  color: #fff;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  backface-visibility: hidden; }

.join-section-2-info .info_box h2 {
  margin-top: 0 !important;
  font-size: 1.15em; }

.join-section-2-info .info_box .info_box-effect .info_box-caption::before,
.join-section-2-info .info_box .info_box-effect .info_box-caption::after {
  pointer-events: none; }

.join-section-2-info .info_box .info_box-effect .info_box-caption,
.join-section-2-info .info_box .info_box-effect .info_box-caption > a {
  width: 98%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.join-section-2-info .info_box .info_box-effect .info_box-caption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0; }

.join-section-2-info .info_box .info_box-effect h2 {
  font-weight: 700;
  color: #fff;
  text-transform: capitalize; }

.join-section-2-info .info_box .info_box-effect h2,
.join-section-2-info .info_box .info_box-effect p {
  margin: 0; }

.join-section-2-info .info_box .info_box-effect p {
  letter-spacing: 1px;
  font-size: 0.6em; }
  
.join-section-2-info .info_box .info_box-effect p a {
  color: #fff !important;
  text-decoration: underline !important;
}

/*.info_box-effect.info_box-effect {
	background-color: #ff0000;
}*/
.join-section-2-info .info_box-effect.info_box-effect img {
  opacity: 0.7;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  -moz-transition: opacity 0.35s, -moz-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15); }

.join-section-2-info .info_box-effect.info_box-effect:hover img {
  opacity: 0.5;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }

.join-section-2-info .info_box-effect.info_box-effect h2 {
  margin-top: 7%;
  /*Position of h2 on hover*/
  -webkit-transition: -webkit-transform 0.35s;
  -moz-transition: -webkit-transform 0.35s;
  -o-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 60px, 0);
  /*Amount h2 is moved up*/
  -moz-transform: translate3d(0, 60px, 0);
  /*Amount h2 is moved up*/
  -o-transform: translate3d(0, 60px, 0);
  /*Amount h2 is moved up*/
  transform: translate3d(0, 60px, 0);
  /*Amount h2 is moved up*/ }

.join-section-2-info .info_box-effect.info_box-effect p {
  margin: 1em 0 0;
  padding: 0em;
  border: 0px solid #fff;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  -moz-transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0) scale(1.1);
  -moz-transform: translate3d(0, 20px, 0) scale(1.1);
  -o-transform: translate3d(0, 20px, 0) scale(1.1);
  transform: translate3d(0, 20px, 0) scale(1.1); }

.join-section-2-info .info_box-effect.info_box-effect .btn-info_box {
  margin-top: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  -moz-transition: opacity 0.35s, -webkit-transform 0.35s;
  -o-transition: opacity 0.35s, -webkit-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0) scale(1.1);
  -moz-transform: translate3d(0, 20px, 0) scale(1.1);
  -o-transform: translate3d(0, 20px, 0) scale(1.1);
  transform: translate3d(0, 20px, 0) scale(1.1); }

.join-section-2-info .info_box-effect.info_box-effect h2 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.join-section-2-info .info_box-effect.info_box-effect p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1); }

.join-section-2-info .info_box-effect.info_box-effect .btn-info_box {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1); }
  
@media screen and (min-width: 601px) and (max-width: 1029px) {
  .join-section-2-info .info_box .info_box-effect {
    height: 260px;
  }
}

/*********************
Section 3
*********************/
#categories {
  margin-bottom: 0;
}
.join-section-3 {
  height: 100%;
  border-top: none;
  margin-top: 50px;
  padding-bottom: 10px; }
  .join-section-3 h2 {
    margin-top: 40px;
    margin-bottom: 10px; }
  .join-section-3 p3 {
    display: block;
    margin-top: 45px;
    margin-bottom: 0px; }
  .join-section-3 p {
    line-height: normal; }
  .join-section-3 button {
    margin-right: 5px;
    margin-left: 5px;
    margin-bottom: 10px; }
  .join-section-3 label {
    text-align: left !important;
    font-weight: 300 !important; }
  .join-section-3 .checkbox-wrap {
    text-align: left; }
  .join-section-3 input {
    border: 1px solid #97c089;
    width: 100%;
    max-width: none;
    line-height: 1.7em;
    height: 40px !important; }
  .join-section-3 input[type="checkbox"] {
    float: left; }
  .join-section-3 .ninja-forms-req-symbol {
    color: #242424;
    font-size: 0.9em; }

join-section-3-form {
  margin-top: 70px; }

.join-section-3 .active {
  border: solid #83b473 2px;
  background-color: #83b473;
  color: #fff !important; }

.join-text-title {
  font-weight: 400; }

.join-text-body {
  line-height: 0.8em; }
.join-text-body p {
	margin-bottom: 20px;
}
.join-text-form {
  margin-top: 30px !important;
  border-top: 1px grey solid;
  color: #242424;
  font-size: 0.75em;
  font-weight: 300;
  margin: 0 auto;
  width: 70%; }
  .join-text-form p3 {
    font-size: 1.5em;
    margin-top: 25px; }

.join-text-body-junior {
  white-space: pre-line; }
.btn-join-enquire {
	display: block;
	line-height: 0;
}

.has-media-on-the-right .wp-block-media-text__content {
  padding-left: 0;
}

/******************************************************************
Contact
******************************************************************/
/*********************
Section 1
*********************/
.contact-section-1-bg {
  width: 100%;
  height: inherit;
  background: url("../images/beech/contact-hero-bg-phone.jpg") no-repeat center right;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/contact-hero-bg-phone.jpg', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/contact-hero-bg-phone.jpg', sizingMethod='scale')";
  /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

.contact-section-1 {
  height: 400px;
  position: relative;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }

.contact-section-1-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  width: 99%; }

/*********************
Section 2
*********************/
.contact-section-2 {
  height: 640px;
  height: auto !important; /* override all of the breakpoint height styles */
  position: relative; }

.contact-section-2-content {
  /* position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); */
  text-align: center;
  /* width: 99%; */ 
}

.contact-section-2 h2 {
  margin-bottom: 7px; }

.contact-section-2 h3 {
  color: #2a2a2a;
  font-weight: 600;
  font-size: 0.95em;
  line-height: normal; }

.contact-section-2 h4 {
  color: #242424;
  margin-top: -10px; }

.contact-section-2 p2 {
  color: #242424;
  margin-top: -18px;
  margin-bottom: 17px; }

.contact-section-2 a {
  color: #242424;
  text-decoration: none;
  cursor: pointer; }

.key_contacts-2_columns {
  display: inline; }
  .key_contacts-2_columns .span_2_of_2 {
    width: 100%; }
  .key_contacts-2_columns .span_1_of_2 {
    width: 49.2%; }

.key_contacts-3_columns {
  display: none; }

.key_contacts-5_columns {
  display: none; }

/*********************
Section 3
*********************/
.contact-section-3 {
  height: 430px; }

#map {
  height: 100%;
  width: 100%; }

/*********************
Section 4
*********************/
.contact-section-4 {
  height: 430px !important;
  position: relative; }

.contact-section-4-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 99%; }

.contact-section-4 h2 {
  margin-bottom: 7px; }

.contact-section-4 p1 {
  line-height: 1.2em;
  display: block;
  white-space: pre-line; }

/******************************************************************
404
******************************************************************/
/*********************
Section 1
*********************/
.fourzerofour-section-1-bg {
  width: 100%;
  height: inherit;
  background: url("../images/beech/404-hero-bg-phone.jpg") no-repeat center right;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/404-hero-bg-phone.jpg', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/404-hero-bg-phone.jpg', sizingMethod='scale')";
  /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

.fourzerofour-section-1 {
  height: 400px;
  position: relative;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }

.fourzerofour-section-1-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  width: 99%; }

/*********************
Section 2
*********************/
.fourzerofour-section-2 {
  height: 430px !important;
  position: relative; }

.fourzerofour-section-2-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 99%; }

.fourzerofour-section-2 h2 {
  margin-bottom: 7px; }

.fourzerofour-section-2 p1 {
  line-height: 1.2em;
  display: block; }

/******************************************************************
Home
******************************************************************/
/*********************
Section 1
*********************/
@font-face {
  font-family: 'weather';
  src: url("../fonts/artill_clean_icons-webfont.eot");
  src: url("../fonts/artill_clean_icons-webfont.eot?#iefix") format("embedded-opentype"), url("../fonts/artill_clean_icons-webfont.woff") format("woff"), url("../fonts/artill_clean_icons-webfont.ttf") format("truetype"), url("../fonts/artill_clean_icons-webfont.svg#artill_clean_weather_iconsRg") format("svg");
  font-weight: normal;
  font-style: normal; }
.home-section-1-video-container {
  text-transform: uppercase; }

.weather {
	position: absolute;
	top: 50px;
	right: 23px;
}
.weather#enable_banner {
	top: 85px;
}
.weather h6 {
  color: #fff;
  font-size: 2em;
  font-weight: 800;
  display: inline-block;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55);
  margin: 0;
}
i {
  color: #fff;
  font-family: weather;
  font-size: 60px;
  font-weight: normal;
  font-style: normal;
  position: relative;
  display: inline-block;
  top: 5px;
}
.home-weather-text {
  position: relative;
  font-size: 35px;
  display: inline-block;
}

.icon-sun:before {
  content: "1"; }

.icon-suncloud:before {
  content: "A"; }

.icon-cloud:before {
  content: "3"; }

.icon-lightrain:before {
  content: "M"; }

.icon-heavyrain:before {
  content: "O"; }
  
.icon-sunrise:before {
  content: "0"; }
  
.icon-sunset:before {
  content: "9"; }
  
.icon-night:before {
  content: "6"; }

.home-section-1-video-container {
  overflow: hidden;
  height: inherit;
  position: relative; }

.home-section-1 video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  z-index: -100;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important; }

.home-section-1 video {
  display: block; }

.home-section-1-video-container {
  z-index: -101; /* Done so that hidden if video bg loads */
  background: #000;
/*
  background: url("/wp-content/themes/eddiemachado-bones-9db85e4/library/images/beech/home-bg-sun-first_frame.jpg") no-repeat center right;
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/beech/home-bg-sun-first_frame.jpg', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/beech/home-bg-sun-first_frame.jpg', sizingMethod='scale')";
*/
  /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

.home-section-1 {
  height: 600px;
  position: relative;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }

@media screen and (max-width: 665px) {
  .home-section-1 h1 {
    font-size: 2.6em;
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 481px) {
  .home-section-1 h1 {
    font-size: 2.3em;
    margin-bottom: 30px;
  }
}

.home-section-1-content-outer {
  background: linear-gradient(to top,rgba(0,0,0,.5),rgba(0,0,0,0));
  position: absolute;
  width: 100%;
  bottom: 0;
  left: 0;
}
.home-section-1-content {
  max-width: 1250px;
  margin: 0 auto 50px auto !important;
  text-align: left;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  width: 96%; }

.home-section-1-content-buttons {
  margin-top: -20px; }

/*********************
Section 2
*********************/
.home-section-2 {
  height: auto;
  position: relative;
  margin-bottom: 0; }

.home-section-2-content {
  text-align: left;
}

.home-section-2-content-h2 {
  line-height: 1em; }

.text_slider-wrap1 {
  padding: 0px 0;
  margin: 0px 0;
  line-height: 0px; }

.sentence1 {
  overflow: hidden;
  padding: 20px 20px 20px 0;
  margin: 0; }

.sentence1 > li, .sentence1 > ul {
  display: inline; 
  line-height: normal;
  margin-top: 0;
}

.text_slider1 {
  overflow: visible !important;
  text-align: left;
  display: inline;
  position: relative;
  height: 0px;
  /*Reduce to hide waiting text*/ }

.adj1 {
  white-space: nowrap;
  list-style: none;
  position: absolute;
  line-height: 1.315em;
  /*Change vertical positioning of sliding text - changed in other screen sizes too*/
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -o-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px); }

.slide-in1 {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.slide-out1 {
  -webkit-transform: translateY(-60px);
  -moz-transform: translateY(-60px);
  -o-transform: translateY(-60px);
  -ms-transform: translateY(-60px);
  transform: translateY(-60px);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

/*********************
Section News
*********************/
.home-section-news-container {
  background-color: #f4f4f4; }

.home-section-news-title {
  background-color: #ed585b;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  padding: 6px 0 6px 0; }

.home-section-news {
  /*Height being changed in html via Advanced Custom Fields Plugin*/
  position: relative; }


.home-section-news-content {
  text-align: center;
  width: 99%; }

.home-section-news-content-h2 {
  line-height: 1em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none; }

/*********************
Section 3
*********************/
.upcoming_events-title {
  background-color: #97c089;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  padding: 6px 0 6px 0; }

.slickslider-events-date {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto; }
  .slickslider-events-date h4 {
    font-size: 1.05em;
    line-height: 0.25em; }
  .slickslider-events-date .slickslider-events-date-bold {
    font-weight: 400; }
  .slickslider-events-date p {
    display: inline; }

.slickslider-events-container {
  position: absolute;
  width: 100%;
}

.slickslider-events-left {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  cursor: pointer;
  opacity: 1; }

.slickslider-events-right {
  position: absolute;
  z-index: 1;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 1; }

/*See slickslider partial scss file and slickslider-theme css file for styles*/
.slickslider-events-crop_container {
  width: 100%;
  overflow: hidden; }

.slickslider-events {
  width: 100%;
  text-align: center;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }

.slickslider-events-1 {
  position: relative;
  outline: none !important;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  /*filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-upcoming_events-clubhouse-inside.jpg', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-upcoming_events-clubhouse-inside.jpg', sizingMethod='scale')";
  /* --- IE filter above could potentially cause dead links or scroll bar issues --- */
  overflow: hidden;
  position: relative;
  outline: none !important; }

.slickslider-events-1-content {
  width: 85%;
  margin: 70px auto 60px auto;
  max-width: 1040px;
  z-index: 100; }

.slickslider-events-1-content h3 {
  line-height: initial;
}

.slickslider-events-2 {
  position: relative;
  outline: none !important;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-upcoming_events-summer_party.jpg', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-upcoming_events-summer_party.jpg', sizingMethod='scale')";
  /* --- IE filter above could potentially cause dead links or scroll bar issues --- */
  overflow: hidden;
  position: relative;
  outline: none !important; }

.slickslider-events-2-content {
  width: 85%;
  margin: 70px auto 60px auto;
  max-width: 1040px;
  z-index: 100; }

.slickslider-events-2-content h3 {
  line-height: initial;
}

.slickslider-events-last {
  /*Leave blank*/
  height: 350px; }
  
/*********************
Section Home News
*********************/
.home-section-news-title {
  background-color: #97c089;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  padding: 6px 0 6px 0; }

.slickslider-news-date {
  position: absolute;
  top: 0px;
  left: 0px;
  right: 0px;
  margin-left: auto;
  margin-right: auto; }
  .slickslider-news-date h4 {
    font-size: 1.05em;
    line-height: 0.25em; }
  .slickslider-news-date .slickslider-news-date-bold {
    font-weight: 400; }
  .slickslider-news-date p {
    display: inline; }

.slickslider-news-container {
  position: absolute;
  width: 100%;
}

.slickslider-news-left {
  position: absolute;
  z-index: 1;
  top: 50%;
  transform: translateY(-50%);
  left: 15px;
  cursor: pointer;
  opacity: 1; }

.slickslider-news-right {
  position: absolute;
  z-index: 1;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  opacity: 1; }

/*See slickslider partial scss file and slickslider-theme css file for styles*/
.slickslider-news-crop_container {
  width: 100%;
  overflow: hidden; }

.slickslider-news {
  width: 90%;
  text-align: center;
  margin: 0 0 0 10px;
}

.slickslider-news_article {
  border-radius: 10px;
	opacity: 0.7;
  position: relative;
  padding: 120px 20px 15px 20px;
  margin: 10px 10px 10px 0px;
  text-align: left;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
  background-position: center center;
  /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  /*filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-upcoming_events-clubhouse-inside.jpg', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-upcoming_events-clubhouse-inside.jpg', sizingMethod='scale')";
  /* --- IE filter above could potentially cause dead links or scroll bar issues --- */
  overflow: hidden;
  position: relative;
  outline: none !important;
  
  -webkit-transition: all 0.3s ease;                  
    -moz-transition: all 0.3s ease;                 
    -o-transition: all 0.3s ease;   
    -ms-transition: all 0.3s ease;          
    transition: all 0.3s ease;
}
.slickslider-news_article.slick-active {  
  opacity: 0.9;
}
.slickslider-news_article-inner {
	height: 100%;
  width: 100%;
  position: absolute;
  background: rgba(0, 0, 0, 0.3);
  top: 0;
  left: 0;
  z-index: -1;
}
.slickslider-news .slick-list {
	overflow: visible;
}

.slickslider-news_article h3 {
  line-height: initial;
  margin-bottom: 5px;
  font-size: 19px !important;
}

.slickslider-news-last {
  /*Leave blank*/
  height: 350px; }
  
   .slickslider-news_article-date {
     color: white;
    position: absolute;
    top: -5px;
    left: 15px;
    right: inherit; }
    .slickslider-news_article-date h4 {
      font-size: 1.05em;
      line-height: 0.25em; }
    .slickslider-news_article-date .slickslider-news_article-date-bold {
      font-weight: 400; }
    .slickslider-news_article-date p {
      display: block; }

/*********************
Section 4
*********************/
.home-section-4-intro {
  text-align: center;
  margin-top: 10px; }
  .home-section-4-intro h2 {
    margin-bottom: 0.5em; }

.home-section-4-intro-button {
  padding-top: 15px;
  display: block;
  margin: 0 auto; }

.home-section-4-info {
	margin-top: 10px;
  margin-bottom: 10px; }

.home-section-4-info .info_box {
  position: relative;
  margin: 0 auto;
  padding: 0.5em;
  list-style: none;
  text-align: center;
  height: 850px;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }

/* Common style */
.home-section-4-info .info_box .info_box-effect {
  position: relative;
  overflow: hidden;
  margin: 0px 1%;
  height: 260px;
  background: #99c286;
  text-align: center;
  cursor: pointer; }

.home-section-4-info .info_box .info_box-effect img {
  position: relative;
  display: block;
  opacity: 0.8; }

.home-section-4-info .info_box .info_box-effect .info_box-caption {
  padding: 0.7em;
  color: #fff;
  font-size: 1.25em;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -o-backface-visibility: hidden;
  backface-visibility: hidden; }

.home-section-4-info .info_box h2 {
  font-size: 1.15em; }

.home-section-4-info .info_box .info_box-effect .info_box-caption::before,
.home-section-4-info .info_box .info_box-effect .info_box-caption::after {
  pointer-events: none; }

.home-section-4-info .info_box .info_box-effect .info_box-caption,
.home-section-4-info .info_box .info_box-effect .info_box-caption > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

/* Anchor will cover the whole item by default */
/* For some effects it will show as a button */
.home-section-4-info .info_box .info_box-effect .info_box-caption > a {
  z-index: 1000;
  text-indent: 200%;
  white-space: nowrap;
  font-size: 0;
  opacity: 0; }

.home-section-4-info .info_box .info_box-effect h2 {
  word-spacing: -0.15em;
  font-weight: 300;
  color: #fff;
  text-transform: capitalize; }

.home-section-4-info .info_box .info_box-effect h2,
.home-section-4-info .info_box .info_box-effect p {
  margin: 0; }

.home-section-4-info .info_box .info_box-effect p {
  letter-spacing: 1px;
  font-size: 0.6em; }

/*.info_box-effect.info_box-effect {
	background-color: #ff0000;
}*/
.home-section-4-info .info_box-effect.info_box-effect img {
  opacity: 0.7;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  -moz-transition: opacity 0.35s, -moz-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15); }
  
@media only screen and (max-width: 1029px) {

.home-section-4-info .info_box-effect.info_box-effect img {
  opacity: 0.5;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  filter: url(blur.svg#blur);
  -webkit-filter: blur(5px);
  filter: blur(5px);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='5'); }
  
}

.home-section-4-info .info_box-effect.info_box-effect h2 {
  margin-top: 15%;
  /*Position of h2 on hover*/
  -webkit-transition: -webkit-transform 0.35s;
  -moz-transition: -webkit-transform 0.35s;
  -o-transition: -webkit-transform 0.35s;
  transition: transform 0.35s;
  -webkit-transform: translate3d(0, 60px, 0);
  /*Amount h2 is moved up*/
  -moz-transform: translate3d(0, 60px, 0);
  /*Amount h2 is moved up*/
  -o-transform: translate3d(0, 60px, 0);
  /*Amount h2 is moved up*/
  transform: translate3d(0, 40px, 0);
  /*Amount h2 is moved up*/ }

.home-section-4-info .info_box-effect.info_box-effect p {
  margin: 1em 0 0;
  padding: 0em;
  border: 0px solid #fff;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  -moz-transition: opacity 0.35s, -moz-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0) scale(1.1);
  -moz-transform: translate3d(0, 20px, 0) scale(1.1);
  -o-transform: translate3d(0, 20px, 0) scale(1.1);
  transform: translate3d(0, 20px, 0) scale(1.1); }

.home-section-4-info .info_box-effect.info_box-effect .btn-info_box {
  margin-top: 10px;
  opacity: 0;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  -moz-transition: opacity 0.35s, -moz-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: translate3d(0, 20px, 0) scale(1.1);
  -moz-transform: translate3d(0, 20px, 0) scale(1.1);
  -o-transform: translate3d(0, 20px, 0) scale(1.1);
  transform: translate3d(0, 20px, 0) scale(1.1); }


@media only screen and (max-width: 1029px) {

.home-section-4-info .info_box-effect.info_box-effect h2 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.home-section-4-info .info_box-effect.info_box-effect p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1); }

.home-section-4-info .info_box-effect.info_box-effect .btn-info_box {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1); }
  
 }

/*********************
Section 5
*********************/
.home-section-5-bg {
  width: 100%;
  height: inherit; }

.home-section-5 {
  height: 81%;
  /*background: url("../images/beech/home-hero-bg.jpg") right center;*/
  position: relative;
  overflow: hidden;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }

.home-section-5-content-h2 {
  line-height: 1em;
  color: #fff; }

.home-section-5-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  width: 99%; }

.home-section-5 video {
  position: absolute;
  top: 50%;
  left: 50%;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  -o-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  -webkit-background-size: cover !important;
  -moz-background-size: cover !important;
  -o-background-size: cover !important;
  background-size: cover !important; }

.home-section-5 video {
  display: block; }

.home-bg-social-video {
  background: url("/wp-content/themes/eddiemachado-bones-9db85e4/library/images/beech/home-bg-social-first_frame.jpg") no-repeat center right;
  /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
  filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/beech/home-bg-social-first_frame.jpg', sizingMethod='scale');
  -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='/wp-content/themes/eddiemachado-bones-9db85e4/library/images/beech/home-bg-social-first_frame.jpg', sizingMethod='scale')";
  /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

.text_slider-wrap2 {
  padding: 0px 0;
  margin: 0px 0;
  line-height: 0px; }

.sentence2 {
  overflow: hidden;
  padding: 6px; }

.sentence2 > li, .sentence2 > ul {
  display: inline; }

.text_slider2 {
  overflow: visible !important;
  text-align: left;
  display: inline;
  position: relative;
  height: 0px;
  /*Reduce to hide waiting text*/ }

.adj2 {
  white-space: nowrap;
  list-style: none;
  position: absolute;
  line-height: 1.19em;
  /*Change vertical positioning of sliding text*/
  -webkit-transform: translateY(60px);
  -moz-transform: translateY(60px);
  -o-transform: translateY(60px);
  -ms-transform: translateY(60px);
  transform: translateY(60px); }

.slide-in2 {
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -o-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.slide-out2 {
  -webkit-transform: translateY(-60px);
  -moz-transform: translateY(-60px);
  -o-transform: translateY(-60px);
  -ms-transform: translateY(-60px);
  transform: translateY(-60px);
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s; }

.home-section-5-content p1 {
  color: #fff; }

.home-section-5-content-para {
  width: 100%; }
  .home-section-5-content-para a, .home-section-5-content-para a:visited {
    color: #fff; }

.home-section-5-content-para-1 {
  border-right: solid 1px white; }

.home-section-5-content-para-2 {
  border-right: solid 1px white; }
  
/*********************
Section Gallery
*********************/
home-section-gallery {
  height: 100%; }

.gallery-title {
  background-color: #97c089;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  padding: 6px 0 6px 0; }
  
.home-section-gallery #gallery {
  margin-top: 0;
  padding-top: 0;
}

.gallery {
  max-width: 1400px;
  margin: 0 auto;
  padding: 30px 0px 20px 0px; }

.home-section-gallery-button {
  display: table;
  margin: 20px auto;
  margin-bottom: 40px; }
  
.home-section-gallery .gallery ul {
	text-align: center;
}
.home-section-gallery .gallery .box {
	display: inline;
}
.gallery-photo-container-parent {
	font-size: 0px; /* To prevent extra a link spacing */
	line-height: 0; /* To prevent extra a link spacing */
	display: inline;
}
.gallery-photo, .gallery-album_cover {
	width: 100%;
	height: inherit;
	display: inline-block;
	background-size:cover;
	background-position: center center; 
	background-color: rgba(239, 239, 239, 1);
}
.gallery-photo-container, .gallery-album_cover-container {
	width: 25%;
  border-radius: 10px;
	height: 200px;
	display: inline-block;
	border-right: solid 3px white;
    border-left: solid 3px white;
    overflow: hidden;
    cursor:-webkit-pointer;
    cursor:-moz-pointer;
    cursor:pointer;
}
.gallery a {
	font-size: 0px; /* To prevent extra a link spacing */
	line-height: 0; /* To prevent extra a link spacing */
}
.gallery-album_cover-container {
	height: 100px;
	margin-bottom: 6px;
	font-size: 16px;
	line-height: 24px;
}
@media only screen and (max-width: 1029px) {
	.gallery-photo-container, .gallery-album_cover-container {
		width: 33.33%;
	}
}
@media only screen and (max-width: 665px) {
	.gallery-photo-container, .gallery-album_cover-container {
		width: 50% !important;
	}
}
@media only screen and (max-width: 400px) {
	.gallery-photo-container, .gallery-album_cover-container {
		width: 100% !important;
	}
}
.gallery-album_cover {
	position: relative;
}
.gallery-album_cover-text {
	position: absolute;
	top: 50%;
    left: 50%;
 	transform: translate(-50%, -50%);
}
.gallery-album_cover-container h3 {
	text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55);
	line-height: 1em;
	text-align: center;
}
.gallery-album_cover-overlay {
	background-color:#000;
    opacity:0.5;
    display: inline-block;
    width: 100%;
    height: inherit;
}

.gallery .gallery-album_cover, .gallery-photo {
  opacity: 1;
  -webkit-transition: opacity 0.35s, -webkit-transform 0.35s;
  -moz-transition: opacity 0.35s, -moz-transform 0.35s;
  -o-transition: opacity 0.35s, -o-transform 0.35s;
  transition: opacity 0.35s, transform 0.35s;
  -webkit-transform: scale(1.15);
  -moz-transform: scale(1.15);
  -o-transform: scale(1.15);
  transform: scale(1.15); }

.gallery .gallery-album_cover:hover, .gallery-photo:hover, .gallery .active {
  opacity: 0.9;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1); }
  
.gallery-album-contents {
	padding-bottom: 20px;
}
.gallery-album-contents .gallery-photo-container {
  border-radius: 0;
}

/*********************
Section 6
*********************/
home-section-6 {
  height: 800px; }

.facebook_feed-title {
  background-color: #97c089;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  font-size: 1.2em;
  font-weight: 700;
  padding: 6px 0 6px 0; }

.facebook_feed {
  width: 90%;
  margin: 0 auto; }

.home-section-6-button {
  display: table;
  margin: 20px auto;
  margin-bottom: 40px; }
  
  
/******************************************************************
News article
******************************************************************/
/*********************
Section 1
*********************/
.news_article-section-1-bg {
  width: 100%;
  height: inherit;
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  -moz-background-size: cover;
  -o-background-size: cover;
  background-size: cover;
}

.news_article-section-1 {
  height: 400px;
  position: relative;
  text-shadow: 0px 1px 3px rgba(0, 0, 0, 0.55); }

.news_article-section-1-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  width: 99%; }
  
.news_article-section-1 .news_article-section-1-content h5 {
  color: white;
}

/*********************
Section 2
*********************/
.news_article-section-2 {
    position: relative;
    padding: 40px 0 30px 0;
}

.news_article-section-2 h2 {
  margin-bottom: 7px; }

.news_article-section-2 h3 {
  color: #2a2a2a;
  font-weight: 600;
  font-size: 0.95em;
  line-height: normal; }

.news_article-section-2 h4 {
  color: #242424;
  margin-top: -18px; }

.news_article-section-2 p2 {
  color: #242424;
  margin-top: -18px;
  margin-bottom: 17px; }

.news_article-section-2 a {
  color: #242424;
  text-decoration: none;
  cursor: pointer; }
  
  
/******************************************************************
New page design
******************************************************************/

.wp-block-media-text {
  margin-top: 60px;
}
.wp-block-media-text figure {
  border-radius: 15px;
}
.wp-block-media-text h2 {
  margin-top: 0;
}

body .page-hero-container {
	position: relative;
	overflow: hidden;
	height: 500px;
  margin: 140px auto 20px auto;
  border-radius: 15px;
}
.page-hero-bg {
  width: 100%;
  max-height: 600px;
  overflow: hidden;
  position: fixed;
  top: 0;
  right: 0;
  z-index: -100;
  position: relative;
  background-position: center center;
  background-size: cover;
}
.page-hero-bg-video {
	filter: brightness(1);
	display: block;
  position: relative;
  width: auto;
  min-width: 100%;
  height: auto;
  background-size: cover;
}
.page-hero-bg-inner {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 30px 30px 5px 30px;
  background: linear-gradient(to top,rgba(0,0,0,.8),rgba(0,0,0,0));
  width: 100%;
}
.page-hero-bg-inner button {
  margin-bottom: 25px;
}
@media screen and (min-width: 1251px) {
  .page-hero-bg-inner h5 {
    width: 800px;
  }
}
@media screen and (max-width: 665px) {
  body .page-hero-container {
    margin-top: 80px;
    height: 350px;
  }
}
@media screen and (max-width: 600px) {
  .wp-block-media-text__content {
    padding: 0 !important;
  }
}

/********************
WORDPRESS BODY CLASSES
style a page via class
********************/
/* for sites that are read right to left (i.e. hebrew) */
/* home page */
/* blog template page */
/* archive page */
/* date archive page */
/* replace the number to the corresponding page number */
/* search page */
/* search result page */
/* no results search page */
/* individual paged search (i.e. body.search-paged-3) */
/* 404 page */
/* single post page */
/* individual post page by id (i.e. body.postid-73) */
/* individual paged single (i.e. body.single-paged-3) */
/* attatchment page */
/* individual attatchment page (i.e. body.attachmentid-763) */
/* style mime type pages */
/* author page */
/* user nicename (i.e. body.author-samueladams) */
/* paged author archives (i.e. body.author-paged-4) for page 4 */
/* category page */
/* individual category page (i.e. body.category-6) */
/* replace the number to the corresponding page number */
/* tag page */
/* individual tag page (i.e. body.tag-news) */
/* replace the number to the corresponding page number */
/* custom page template page */
/* individual page template (i.e. body.page-template-contact-php */
/* replace the number to the corresponding page number */
/* parent page template */
/* child page template */
/* replace the number to the corresponding page number */
/* if user is logged in */
/* paged items like search results or archives */
/* individual paged (i.e. body.paged-3) */
/*********************
LAYOUT & GRID STYLES
*********************/
.wrap {
  width: 96%;
  margin: 0 auto; }

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #242424;
  text-decoration: none;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:hover, a:visited:hover {
    color: #97c089;
    text-decoration: none;
    -moz-transition: all .3s;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s; }
  a:link, a:visited:link {
    /*
    this highlights links on iPhones/iPads.
    so it basically works like the :hover selector
    for mobile devices.
    */
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0.3); }

/*********************
HEADER STYLES
*********************/

.coachingcancelled-banner {
    z-index: 10000;
    width: 100%;
    position: relative;
    height: 35px;
    background: #ed585b;
    text-align: center;
    padding-top: 6px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    overflow: hidden;
}
.coachingcancelled-banner p {
	margin: 0;
	display: inline-block;
}
.coachingcancelled-banner a {
	color: #fff !important;
	text-decoration: underline;
}

.header {
  background-color: #000; }

#logo {
  margin: 0.75em 0; }
  #logo a {
    color: #97c089; }
    

/*********************
POSTS & CONTENT STYLES
*********************/
#content {
  height: 100%;
  /*May break stuff*/ }
.inner-content {
  margin-bottom: 50px;
}

.hentry {
  background-color: #fff;
  border-radius: 3px;
  margin-bottom: 1.5em;
  border: 1px solid #ccc; }
  .hentry footer {
    padding: 1.5em;
    border-top: 1px solid #97c089; }
    .hentry footer p {
      margin: 0; }

/* end .hentry */
.single-title,
.page-title,
.entry-title {
  margin: 0; }

/* want to style individual post classes? Booya! */
/* post by id (i.e. post-3) */
/* general post style */
/* general article on a page style */
/* general style on an attatchment */
/* sticky post style */
/* hentry class */
/* style by category (i.e. category-videos) */
/* style by tag (i.e. tag-news) */
/* post meta */
.byline {
  color: #666;
  font-style: italic;
  margin: 0; }

/* entry content */
.entry-content {
  padding: 1.5em 1.5em 0;
  /*
  image alignment on a screen this size may be
  a bit difficult. It's set to start aligning
  and floating images at the next breakpoint,
  but it's up to you. Feel free to change it up.
  */ }
  .entry-content p {
    margin: 0 0 1.5em; }
  .entry-content table {
    width: 100%;
    border: 1px solid #666;
    margin-bottom: 1.5em; }
    .entry-content table caption {
      margin: 0 0 7px;
      font-size: 0.75em;
      color: #666;
      text-transform: uppercase;
      letter-spacing: 1px; }
  .entry-content tr {
    border-bottom: 1px solid #666; }
    .entry-content tr:nth-child(even) {
      background-color: #e5e5e5; }
  .entry-content td {
    padding: 7px;
    border-right: 1px solid #666; }
    .entry-content td:last-child {
      border-right: 0; }
  .entry-content th {
    background-color: #e5e5e5;
    border-bottom: 1px solid #666;
    border-right: 1px solid #666; }
    .entry-content th:last-child {
      border-right: 0; }
  .entry-content blockquote {
    margin: 0 0 1.5em 0.75em;
    padding: 0 0 0 0.75em;
    border-left: 3px solid #97c089;
    font-style: italic;
    color: #666; }
  .entry-content dd {
    margin-left: 0;
    font-size: 0.9em;
    color: #787878;
    margin-bottom: 1.5em; }
  .entry-content img {
    margin: 0 0 1.5em 0;
    max-width: 100%;
    height: auto; }
  .entry-content .size-auto,
  .entry-content .size-full,
  .entry-content .size-large,
  .entry-content .size-medium,
  .entry-content .size-thumbnail {
    max-width: 100%;
    height: auto; }
  .entry-content pre {
    background: #000;
    color: #e5e5e5;
    font-size: 0.9em;
    padding: 1.5em;
    margin: 0 0 1.5em;
    border-radius: 3px; }

/* end .entry-content */
.wp-caption {
  max-width: 100%;
  background: #eee;
  padding: 5px;
  /* images inside wp-caption */ }
  .wp-caption img {
    max-width: 100%;
    margin-bottom: 0;
    width: 100%; }
  .wp-caption p.wp-caption-text {
    font-size: 0.85em;
    margin: 4px 0 7px;
    text-align: center; }

/* end .wp-caption */
/* image gallery styles */
/* end .gallery */
/* gallery caption styles */
.tags {
  margin: 0; }

/******************************************************************
PAGE NAVI STYLES
******************************************************************/
.pagination,
.wp-prev-next {
  margin: 1.5em 0; }

.pagination {
  text-align: center; }
  .pagination ul {
    display: inline-block;
    background-color: #fff;
    white-space: nowrap;
    padding: 0;
    clear: both;
    border-radius: 3px; }
  .pagination li {
    padding: 0;
    margin: 0;
    float: left;
    display: inline;
    overflow: hidden;
    border-right: 1px solid #666; }
  .pagination a, .pagination span {
    margin: 0;
    text-decoration: none;
    padding: 0;
    line-height: 1em;
    font-size: 1em;
    font-weight: normal;
    padding: 0.75em;
    min-width: 1em;
    display: block;
    color: #97c089; }
    .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
      background-color: #97c089;
      color: #fff; }
  .pagination .current {
    cursor: default;
    color: #2a2a2a; }
    .pagination .current:hover {
      background-color: #fff;
      color: #2a2a2a; }

/* end .bones_page_navi */
/* fallback previous & next links */
.wp-prev-next .prev-link {
  float: left; }
.wp-prev-next .next-link {
  float: right; }

/* end .wp-prev-next */
/*********************
FOOTER STYLES
*********************/
.footer {
  clear: both;
  background-color: #97c089;
  color: #fff;
  text-align: center;
  line-height: 0.8em;
  font-size: 0.9em; }

.footer-container {
  height: 350px;
  position: relative; }

.footer-content {
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 99%;
  color: #fff; }
  .footer-content a {
    color: white !important;
    text-decoration: underline;
    -moz-transition: all 0s;
    -webkit-transition: all 0s;
    -o-transition: all 0s;
    transition: all 0s; }
  .footer-content a:hover {
    color: white !important;
    text-decoration: none; }

.footer-logo {
  height: 45px; }

.footer-title {
  font-weight: 700; }

.footer-content-1 {
  display: none; }
  
.hide_on_mobile {
	display: none;
}
.show_on_mobile {
  display: block;
}

.footer-content-4 {
  line-height: 0.6em; }
  
.footer-container li {
  display: block;
  margin-top: 10px;
  margin-bottom: 15px;
}

/*
if you checked out the link above:
http://www.alistapart.com/articles/organizing-mobile/
you'll want to style the footer nav
a bit more in-depth. Remember to keep
it simple because you'll have to
override these styles for the desktop
view.
*/
/* end .footer-links */
/* ------------ BEECH - NAVIGATION ------------ */
/* embedded font that has hamburger and x beechicon */
@font-face {
  font-family: 'sicanstudios-demo';
  src: url("fonts/sicanstudios-demo.eot"); }
@font-face {
  font-family: 'sicanstudios-demo';
  src: url(data:application/font-woff;charset=utf-8;base64,d09GRk9UVE8AAAWoAAsAAAAACQwAAQAAAAAAAAAAAAAAAAAAAAAAAAAAAABDRkYgAAABCAAAAmUAAAPJ8avxu0ZGVE0AAANwAAAAGgAAABxmU0KwR0RFRgAAA4wAAAAdAAAAIAAxAARPUy8yAAADrAAAAE0AAABgUErdwGNtYXAAAAP8AAAASgAAAVrgexZjaGVhZAAABEgAAAAuAAAANv3pFDtoaGVhAAAEeAAAAB4AAAAkBBD/5GhtdHgAAASYAAAADgAAAA4EAAAgbWF4cAAABKgAAAAGAAAABgAEUABuYW1lAAAEsAAAAOwAAAH16Df8JXBvc3QAAAWcAAAADAAAACAAAwAAeJxlkk1oE1EQx2eT3SSNy1ZDIhbWqtcWIeAHxEPBUMR6sNLsIT2JGsWoSQ9JPWiSoq3xsJ5CvBgQD6KFVCgIpQcJohDwozc923N7qaWHlybNOPNeGoRe/szuezP/37wZDXQdNE0L5dK3bmRz+dlUeiZ3OnU7MwOaBzQYE7ZHHPeKY7prel1THw7CUCKErtsPTL97T7wUecOG6qANcNiG2hEbjtrejyHwco0ADMHIbDZ9KRqNHrA56AugPYerMA06J3vAhBGvabkir3eqouq36iIcGRXOpr/jtA9EFmpt5xPCeP1ZBEFbCiB2E6sUnXtK0aEmAjQXEfc2ywieEyXE3ck/dPCtg9hK/kZsZywplLfyZoElbvCPSu+olfxF17+PceJrLlHoFZNlu2aArZ6waZ7tB6gOdh/SseZDTH2wEGqJMyrC1NIa1UYssBRZSiyNvhS5zgqJE2P4MjvPsR+BYSypGHBvnT5b00l2/kKYD9YQ9Mq27CCOMHG9KDsYlH9Vr+B7P8rwDQRj+RTDb9Bn+LGCB20nRlJvcgdX6BTiLPN9udiXhQA3dJYlzw39pGhqi3te5Z4vGwx/YX8QBE+1Gwqe/B4x/DwznGTnr8T1boMx//Y6IPgGy2dDwZMs86VFun5e58S3XCLOxfgVY68UPFmV2HRC2gckSg+qNrX9H6jklsNRtJTzYr/1nYJaGwlKT3SH/W6qmUsGuQfqUduZa5K2xI9elrRbamMkqFobOajdyXUFSmMcV6ByL2nSQo67tzGSlvak0qfNysiwRDXsRu7/EI7rGw5qzt05c8A1g/8AVu305QAAAHicY2BgYGQAgpOd+YYg+lzKy/0wGgBJ3QeoAAB4nGNgZGBg4ANiCQYQYGJgBEJmIGYB8xgABGsANgAAAHicY2BmYmCcwMDKwMHow5jGwMDgDqW/MkgytDAwMDGwMjPAAKMAAwIEpLmmMDgw5H5gYHzw/wGDHuMDBoUGoBqwQiCDQQEIGQEGMgwuAAAAeJxjYGBgZoBgGQZGBhAIAfIYwXwWBgsgzcXAwcAEhAwMuQwVHxj+/wergrP/T/3fLcAI1QsFjGwMqAK0BkwIJjM97cUDAF10C80AAHicY2BkYGAA4qwPfHnx/DZfGbiZGEDgXMrL/Qj6/wMmBsYHQC4HA1gaAEfUDAUAAHicY2BkYGB88P8Bgx4TAwPDPwYgCRRBAcwAbecD9gAAAgAAAAAAAAACAAAgAAAAAAAAUAAABAAAeJydj7FOwzAQhj+3SQWCpQsbklWxMDhKjITUTix0Y+3AVjVRlaGOlKSvws4T8TC8AL9bi4UBqbZO993df/YdcMsHhngMcx4ST8h4STzF8Zk4k+Y7cc6NuU88Y27epDTZtTKLU1fkCVc8J57yzmviTJqvxDl3Jk88Y2EeGWjZsSWIRo7UijuxEzUcxAztbhuG8Vi33eDq5qDUb+0croVB7dH37FW0eApK+ZXs/0/OOq/rWMq8eiue9HQXxnXX7xvri9Ku7J9hlPPeLZ0vK8kvW2ejWn/qjXtY/RxnZ9P0Q9sFWxXlhS//AEv5VgZ4nGNgZsALAAB9AAQ=) format("woff"), url(data:application/x-font-ttf;charset=utf-8;base64,AAEAAAANAIAAAwBQRkZUTWZTQrAAAAZwAAAAHEdERUYAMwAGAAAGUAAAACBPUy8yUCjcHwAAAVgAAABWY21hcOB9GW4AAAHIAAABWmdhc3D//wADAAAGSAAAAAhnbHlmpsu8yAAAAzQAAADkaGVhZP3pFDsAAADcAAAANmhoZWEEEP/mAAABFAAAACRobXR4BKsAIAAAAbAAAAAWbG9jYQCAACgAAAMkAAAADm1heHAASwAvAAABOAAAACBuYW1l6Df8JQAABBgAAAH1cG9zdJ//TfcAAAYQAAAANgABAAAAAQAAFWzHU18PPPUACwIAAAAAAM5k6b8AAAAAzmTpvwAA/+ACAAHgAAAACAACAAAAAAAAAAEAAAHg/+AALgIAAAD+AAIAAAEAAAAAAAAAAAAAAAAAAAAFAAEAAAAGACwAAwAAAAAAAgAAAAEAAQAAAEAAAAAAAAAAAQIAAZAABQAIAUwBZgAAAEcBTAFmAAAA9QAZAIQAAAIABQMAAAAAAAAAAAABEAAAAAAAAAAAAAAAUGZFZABAAG3wAAHg/+AALgHgACCAAAABAAAAAAAAAgAAAAAAAAAAqgAAAAAAAAIAACAAAQAAAAAAAwAAAAMAAAAcAAEAAAAAAFQAAwABAAAAHAAEADgAAAAKAAgAAgACAAAAbQB48AD//wAAAAAAbQB48AD//wAA/5f/jRADAAEAAAAAAAAAAAAAAAABBgAAAQAAAAAAAAABAgAAAAIAAAAAAAAAAAAAAAAAAAABAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAQAAAAAAAAAAAAABQAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAADgAoAHIAAAABAAD/4AIAAeAAAgAAEQEhAgD+AAHg/gAAAAAAAwAgACAB4AGAAAMABwALAAATIRUhFSEVIRUhFSEgAcD+QAHA/kABwP5AAYBgIGAgYAAAAAEAAf/hAf8B3wArAAAlJzc2NzYvASYHBg8BJyYnJg8BBhcWHwEHBgcGHwEWNzY/ARcWFxY/ATYnJgH7m5sDAQQISQcKAwObmwMDCgdJCAQBA5ubAwEECEkHCgMDm5sDAwoHSQgEAUWbmwMDCgdJCAQBA5ubAwEECEkHCgMDm5sDAwoHSQgEAQObmwMBBAhJBwoDAAAAAAwAlgABAAAAAAABABEAJAABAAAAAAACAAQAQAABAAAAAAADAC0AoQABAAAAAAAEABEA8wABAAAAAAAFAAsBHQABAAAAAAAGABEBTQADAAEECQABACIAAAADAAEECQACAAgANgADAAEECQADAFoARQADAAEECQAEACIAzwADAAEECQAFABYBBQADAAEECQAGACIBKQBzAGkAYwBhAG4AcwB0AHUAZABpAG8AcwAtAGQAZQBtAG8AAHNpY2Fuc3R1ZGlvcy1kZW1vAABkAGUAbQBvAABkZW1vAABGAG8AbgB0AEYAbwByAGcAZQAgADIALgAwACAAOgAgAHMAaQBjAGEAbgBzAHQAdQBkAGkAbwBzAC0AZABlAG0AbwAgADoAIAAyADIALQA5AC0AMgAwADEAMwAARm9udEZvcmdlIDIuMCA6IHNpY2Fuc3R1ZGlvcy1kZW1vIDogMjItOS0yMDEzAABzAGkAYwBhAG4AcwB0AHUAZABpAG8AcwAtAGQAZQBtAG8AAHNpY2Fuc3R1ZGlvcy1kZW1vAABWAGUAcgBzAGkAbwBuACAAMQAuADAAAFZlcnNpb24gMS4wAABzAGkAYwBhAG4AcwB0AHUAZABpAG8AcwAtAGQAZQBtAG8AAHNpY2Fuc3R1ZGlvcy1kZW1vAAAAAAACAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAYAAAABAAIBAgBQAFsHdW5pRjAwMAAAAAAAAf//AAIAAQAAAA4AAAAYAAAAAAACAAEAAwAFAAEABAAAAAIAAAAAAAEAAAAAyYlvMQAAAADOZOm/AAAAAM5k6b8=) format("truetype");
  font-weight: normal;
  font-style: normal; }
[data-beechicon]:before {
  font-family: 'sicanstudios-demo';
  content: attr(data-beechicon);
  speak: none;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 1.8em;
  -webkit-transition: color .4s;
  -moz-transition: color .4s;
  -o-transition: color .4s;
  transition: color .4s; }

/* when beechnavigation-mobile is shown, don't allow scrolling of content */
body.no_scroll {
  overflow: hidden;
  height: 100%; }

/* Firefox fix for overflow: hidden. Scroll bar is hidden and moves everything to the right */
@-moz-document url-prefix() {
  body.no_scroll {
    /*margin-right: 23px;*/ }

  body.no_scroll .beechexpanded {
    /*padding-right: 7px;*/
    background: rgba(255, 255, 255, 0.98);
    /* because FF no blur, reduce bg transparency */ } }
/* === TOP MENU LAYOUT === */
/* ======================= */
beechnav {
  color: #fff;
  position: absolute;
  top: 0;
  width: 100%;
  height: 46px;
  /* smaller height because font is smaller */
  padding-top: 0px;
  right: 0;
  z-index: 1000;
  /* overflow: hidden; */
  outline: none;
  -webkit-transform: translate(0, 0);
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: -webkit-transform .4s, height .3s, background .4s;
  -moz-transition: -moz-transform .4s, height .3s, background .4s;
  -o-transition: -o-transform .4s, height .3s, background .4s;
  transition: transform .4s, height .3s, background .4s;
  -webkit-animation: firstFadeInAndDrop .5s;
  -moz-animation: firstFadeInAndDrop .5s;
  -o-animation: firstFadeInAndDrop .5s;
  animation: firstFadeInAndDrop .5s;
  background: rgba(153, 194, 134, 0.85); }
beechnav#enable_banner {
	height: 81px; /* 46px + 35px */
}
@media screen and (max-width: 750px) {
	.coachingcancelled-banner, .coachingcancelled-banner #banner-content {
		height: 56px;
	}
	beechnav#enable_banner {
    height: 102px;
	}
}  
@media screen and (max-width: 767px) {
  beechnav {
    overflow: scroll;
  }
}

/* on intial load fade in the menu */
@-webkit-keyframes firstFadeInAndDrop {
  0% {
    -webkit-transform: translate(0, -54px); }
  100% {
    -webkit-transform: translate(0, 0); } }
@-moz-keyframes firstFadeInAndDrop {
  0% {
    -moz-transform: translate(0, -54px); }
  100% {
    -moz-transform: translate(0, 0); } }
@keyframes firstFadeInAndDrop {
  0% {
    transform: translate(0, -54px); }
  100% {
    transform: translate(0, 0); } }
/* limits width of menu to site width */
.beechsite-width {
  padding-left: 20px;
  margin: 0 auto;
  padding: 0 1.6%; }

/* name of site in main menu (not user selectable) */
.beechnav-title-text {
  font-weight: bold;
  color: #fff !important;
  line-height: 1.9em;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none;
  text-decoration: none; }
  .beechnav-title-text:hover {
    font-weight: 700; }

/* when hidden it goes up */
beechnav.beechinvisible {
  -webkit-transform: translate(0, -64px);
  -moz-transform: translate(0, -64px);
  -o-transform: translate(0, -64px);
  transform: translate(0, -64px);
  -webkit-transition: -webkit-transform .2s;
  -moz-transition: -moz-transform .2s;
  -o-transition: -o-transform .2s;
  transition: transform .2s;
  opacity: 0; }

/* when shown & beechdetached position is fixed */
beechnav.beechdetached {
  position: fixed;
  background: rgba(153, 194, 134, 0.85);
  -webkit-transition: -webkit-transform .3s, height .3s, background .4s, opacity .3s;
  -moz-transition: -moz-transform .3s, height .3s, background .4s, opacity .3s;
  -o-transition: -o-transform .3s, height .3s, background .4s, opacity .3s;
  transition: transform .3s, height .3s, background .4s, opacity .3s; }

.beechnav-title {
  margin: 0;
  position: relative;
  height: 46px;
  width: 80%;
  outline: 0 !important; }

.beechnav-title a {
  line-height: normal;
  outline: none !important; }

.beechnav-title-text {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0px;
  padding-left: 45px;
  opacity: 0.92;
  outline: none; }

.beechnav-title-text:hover {
  opacity: 1; }

.beechnav-title-logo-container-outer {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 38px;
  width: 30px;
  z-index: 1; }

.beechnav-title-logo img {
  height: 38px;
  width: 30px;
  opacity: 0.92;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none; }

.beechnav-title-logo-container-inner {
  width: 38px;
  height: 30px;
  position: relative;
  perspective: 400px;
  outline: none; }

.beechnav-title-logo {
  width: 100%;
  height: 100%;
  position: absolute;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -o-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition: transform 1s;
  -moz-transition: transform 1s;
  -o-transition: transform 1s;
  transition: transform 1s; }

.beechnav-title-logo figure {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  backface-visibility: hidden; }

.beechnav-title-logo img:hover {
  transform: rotateY(360deg);
  -webkit-transform: rotateY(360deg);
  -moz-transform: rotateY(360deg);
  -o-transform: rotateY(360deg);
  transition-duration: 1s;
  -webkit-transition-duration: 1s;
  -moz-transition-duration: 1s;
  -o-transition-duration: 1s;
  opacity: 1; }

/* === MENU beechnavigation-mobile === */
/* ======================= */
/* increases menu width & height */
beechnav.beechexpanded, beechnav.beechexpanded#enable_banner {
  width: 100%;
  height: 100%;
  position: fixed;
  cursor: default;
  background: rgba(255, 255, 255, 0.85); }

/* positions beechnavigation-mobile content */
#beechnavigation-mobile {
  -webkit-transform: translate(0, -700px);
  -moz-transform: translate(0, -700px);
  -o-transform: translate(0, -700px);
  transform: translate(0, -700px);
  opacity: 0;
  padding-top: 0;
  margin: 0 30px;
  text-align: left;
  -webkit-transition: -webkit-transform .15s, opacity .7s;
  -moz-transition: -moz-transform .15s, opacity .7s;
  -o-transition: -o-transform .15s, opacity .7s;
  transition: transform .15s, opacity .7s; }
  
#beechnavigation-mobile .sub-menu li { 
  padding-top: 0;
}
#beechnavigation-mobile .sub-menu li a { 
  font-weight: 600;
  margin-left: 10px;
  font-size: 16px;
}

/* shows beechnavigation-mobile */
beechnav.beechexpanded #beechnavigation-mobile {
  -webkit-transform: translate(0, 0);
  /* hardware acceleration */
  -moz-transform: translate(0, 0);
  -o-transform: translate(0, 0);
  transform: translate(0, 0);
  opacity: 1; }

/* === MENU beechnavigation-desktop CONTENT === */
/* =============================== */
.beechnavigation-desktop-container {
  display: none; }

.beechnavigation-desktop {
  font-weight: 600;
  /*Keep this to force browser to preload this font weight for when header link is clicked*/ }

.beechnavigation-desktop {
  outline: none;
  display: none; }
  .beechnavigation-desktop a, .beechnavigation-desktop a:visited, .beechnavigation-desktop:focus {
    color: #fff;
    opacity: 0.6;
    outline: none;
    text-decoration: none;
    font-weight: 700;
    /* on hover */ }
    .beechnavigation-desktop .current-menu-item a, .beechnavigation-desktop a:hover, .beechnavigation-desktop a:visited:hover, .beechnavigation-desktop:focus:hover {
      color: #fff;
      opacity: 1;
      outline: none;
      -moz-transition: all .3s;
      -webkit-transition: all .3s;
      -o-transition: all .3s;
      transition: all .3s; }

.beechnavigation-desktop a:hover:active {
  font-weight: 600; }

.beechnavigation-desktop ul {
  margin: 0;
  padding: 0;
  outline: none; }

.beechnavigation-desktop a {
  outline: none !important; }

.beechnavigation-desktop ul li {
  list-style: none;
  float: left;
  text-align: center;
  width: 16.6%;
  /* (fallback for non-calc() browsers) */
  width: calc(100% / 6);
  box-sizing: border-box;
  outline: none; }

.beechnavigation-desktop #menu-item-52599 > a {
  display: none; /* As don't want to show HOME */
}
.beechnavigation-desktop ul li:first-child {
  border-left: none;
  outline: none; 
}

.beechnavigation-desktop ul li a {
  display: block;
  text-decoration: none;
  padding: 8px 0;
  font-size: 0.7em;
  text-transform: uppercase;
  outline: none; }

.beechnav-spacer {
  display: none; }
  
.beechnavigation-desktop .sub-menu-wrap {
  height: 30px;
  width: 100%;
  position: absolute;
  top: 80px;
  left: 0;
  background: #aece9e;
  display: none;
}
beechnav#enable_banner .beechnavigation-desktop .sub-menu-wrap {
  top: 45px;
}
.beechnavigation-desktop .current-menu-item .sub-menu-wrap {
  display: block;
}
.beechnavigation-desktop .sub-menu {
  max-width: 1250px;
  margin: 0 auto;
}
.beechnavigation-desktop .sub-menu li a {
  padding: 4px 0;
}

/* === MENU beechnavigation-mobile CONTENT === */
/* =============================== */
/* adds vertical spacing between menu links */
#beechnavigation-mobile ul li {
  padding: 1em 0; }

/* makes link font bigger */
#beechnavigation-mobile ul a {
  font-size: 1.3em;
  font-weight: bold;
  padding: 0 0%;
  text-decoration: none;
  text-transform: uppercase; }

/* subheading span styling 
#beechnavigation-mobile ul span {
  font-size: .75em;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: #666;
  display: block;
}
*/
/* === MENU beechiconS === */
/* ================== */
/* adds padding to beechicons */
.beechicon {
  padding-top: 7px;
  cursor: pointer;
  float: right;
  -webkit-user-select: none;
  -moz-user-select: none;
  -o-user-select: none;
  user-select: none; }

/* hides extra text of beechicon (accessibility) */
.beechicon span {
  display: none; }

/* on focus, don't show outline */
.beechicon:focus {
  outline: none; }

/* beechicon colour */
.beechicon:before, .beechicon:active:before {
  color: #fff; }

/* changes colour on keyboard focus */
.beechicon:focus:before {
  color: #555; }

/* changes beechicon to an "X" */
.beechexpanded .beechicon:before {
  content: 'x';
  font-size: 1.4em;
  line-height: 1.4em;
  padding-right: .15em; }

/* === CONTENT BLURRING === */
/* ======================== */
/* adds transition to the content */
#blur_all {
  height: 100%;
  /*May break stuff*/
  -webkit-transition: -webkit-transform .2s, filter .2s;
  -moz-transition: -moz-transform .2s, filter .2s;
  -o-transition: -o-transform .2s, filter .2s;
  transition: transform .2s, filter .2s; }

/* blurring content */
.beechblurred {
  -webkit-transform: scale(0.99);
  -moz-transform: scale(0.99);
  -o-transform: scale(0.99);
  transform: scale(0.99);
  -webkit-filter: blur(5px);
  -moz-filter: blur(5px);
  -o-filter: blur(5px);
  filter: blur(5px);
  -webkit-transition: -webkit-transform .5s, -webkit-filter .5s;
  -moz-transition: -moz-transform .5s, -moz-filter .5s;
  -o-transition: -o-transform .5s, -o-filter .5s;
  transition: transform .5s, filter .5s; }

/* ------------ BEECH - NAVIGATION ------------ */
/*********************
BEECH
For the smallest.
*********************/
@media only screen and (min-width: 350px) {
  /******************************************************************
  H1, H2, H3, H4, H5 STYLES
  ******************************************************************/
  h2, .h2 {
    /*Section header*/
    font-size: 1.3em;
    line-height: 1.4em;
    margin-bottom: 0.375em; }

  /*********************
  Section 2
  *********************/

  .adj1 {
    line-height: 1.26em;
    /*Change vertical positioning of sliding text - changed in other screen sizes too*/ } }
/*********************
LARGER MOBILE DEVICES
This is for devices like the Galaxy Note or something that's
larger than an iPhone but smaller than a tablet. Let's call them
tweeners.
*********************/
@media only screen and (min-width: 481px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: 481px and Up Stylesheet
  
  This stylesheet is loaded for larger devices. It's set to
  481px because at 480px it would load on a landscaped iPhone.
  This isn't ideal because then you would be loading all those
  extra styles on that same mobile connection.
  
  A word of warning. This size COULD be a larger mobile device,
  so you still want to keep it pretty light and simply expand
  upon your base.scss styles.
  
  ******************************************************************/
  /*
  IMPORTANT NOTE ABOUT SASS 3.3 & UP
  You can't use @extend within media queries
  anymore, so just be aware that if you drop
  them in here, they won't work.
  */
  /******************************************************************
  H1, H2, H3, H4, H5 STYLES
  ******************************************************************/
  h1, .h1 {
    font-size: 3.4em; }

  h2, .h2 {
    /*Section header*/
    font-size: 1.55em;
    line-height: 1.4em;
    margin-bottom: 0.175em; }

  .page-hero-container h5, .page-hero-container .h5 {
    /*Hero subheading*/
    font-size: 1em;
    margin-top: -30px; }

  p1, .p1 {
    /*Section description text*/
    font-size: 16px; }

  p3, .p3 {
    /*Apply form*/
    font-size: 1.02em; }

  /******************************************************************
  Home
  ******************************************************************/
  /*********************
  Section 1
  *********************/
  .home-section-1-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/home-hero-bg.jpg") no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-hero-bg.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-hero-bg.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /*********************
  Section 4
  *********************/
  .home-section-4-info .info_box {
    height: 330px;
    max-width: 1400px; }

  /*********************
  Section 5
  *********************/
  .home-section-5-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/home-social-bg-first_frame.jpg") no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-social-bg-first_frame.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-social-bg-first_frame.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /******************************************************************
  Coaching
  ******************************************************************/
  /*********************
  Section 1
  *********************/
  .coaching-section-1-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/join-hero-bg-first_frame.jpg") no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/join-hero-bg-first_frame.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/join-hero-bg-first_frame.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /******************************************************************
  Join
  ******************************************************************/
  /*********************
  Section 1
  *********************/
  .join-section-1-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/join-hero-bg-first_frame.jpg") no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/join-hero-bg-first_frame.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/join-hero-bg-first_frame.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /*********************
  Section 2
  *********************/
  .join-section-2-info .info_box {
    max-width: 1400px; }

  /*********************
  Section 3
  *********************/
  .join-section-3 {
    height: 100%;
    border-top: solid 1px #2a2a2a; }

  /******************************************************************
  Manual
  ******************************************************************/
  /*********************
  Section 1
  *********************/
  .manual-section-1-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/manual-hero-bg-first_frame.jpg") no-repeat center left;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/manual-hero-bg-first_frame.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/manual-hero-bg-first_frame.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /******************************************************************
  404
  ******************************************************************/
  /*********************
  Section 1
  *********************/
  .fourzerofour-section-1-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/404-hero-bg-first_frame.jpg") no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/404-hero-bg-first_frame.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/404-hero-bg-first_frame.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /******************************************************************
  Contact
  ******************************************************************/
  /*********************
  Section 1
  *********************/
  .contact-section-1-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/contact-hero-bg-first_frame.jpg") no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/contact-hero-bg-first_frame.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/contact-hero-bg-first_frame.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /*********************
  Section 2
  *********************/
  .contact-section-2 h3 {
    font-size: 1.09em; }

  /*********************
  POSTS & CONTENT STYLES
  *********************/
  /* entry content */
  .entry-content {
    /* at this larger size, we can start to align images */ }
    .entry-content .alignleft, .entry-content img.alignleft {
      margin-right: 1.5em;
      display: inline;
      float: left; }
    .entry-content .alignright, .entry-content img.alignright {
      margin-left: 1.5em;
      display: inline;
      float: right; }
    .entry-content .aligncenter, .entry-content img.aligncenter {
      margin-right: auto;
      margin-left: auto;
      display: block;
      clear: both; }

  /* end .entry-content */
 }
/*********************
BEECH
For nav.
*********************/
@media only screen and (min-width: 601px) {
  /*********************
  FOOTER STYLES
  *********************/
  .footer {
    font-size: 0.8em; }
  
  .footer-logo {
    height: 45px; }
  
  .footer-title {
    font-weight: 700;
    line-height: 1.1em; }
  
  .footer-content-1 {
    line-height: 0.9em;
    margin-top: -26px;
    display: inline; }
  
  .footer-content-2 {
    line-height: 0.9em;
    border-left: solid 1px white;
    margin-top: -26px;
    display: inline; }
  
  .footer-content-3 {
    border-left: solid 2px white;
    border-right: solid 2px white; }
  
  .footer-content-4 {
    line-height: 0.6em; }
    
  .hide_on_mobile {
    display: block;
  }
  .show_on_mobile {
    display: none;
  }
  
  .footer-content-increased_line_height {
    line-height: 1.3em; }
  
  .footer-content-email_link {
    font-size: 0.86em; }
}
  
@media only screen and (min-width: 666px) {
    
  /******************************************************************
  H1, H2, H3, H4, H5 STYLES
  ******************************************************************/
  h2, .h2 {
    /*Section header*/
    font-size: 1.52em; }

  /******************************************************************
  Home
  ******************************************************************/

  /*********************
  Section 3
  *********************/
  .slickslider-events {
    width: 100%;
    /*To renable crop container effect, change this to 140%, change no. slides to display to 2 and enable blank slide*/ }

  /*.slickslider-events-last {
      display: inline;
  }*/
  .slickslider-events-left {
    display: none; }

  .slickslider-events-right {
    display: none; }

  /******************************************************************
  Contact
  ******************************************************************/
  /*********************
  Section 2
  *********************/
  .contact-section-2 {
    height: 550px; }

  .key_contacts-2_columns {
    display: none; }

  .key_contacts-3_columns {
    display: inline; }

  .key_contacts-5_columns {
    display: none; } }
/*********************
TABLET & SMALLER LAPTOPS
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 768px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Tablet & Small Desktop Stylesheet
  
  Here's where you can start getting into the good stuff.
  This size will work on iPads, other tablets, and desktops.
  So you can start working with more styles, background images,
  and other resources. You'll also notice the grid starts to
  come into play. Have fun!
  
  ******************************************************************/
  .beechnavigation-desktop {
    display: inline; }
  
  .beechnavigation-desktop-container {
    display: inline;
    margin-top: 8px; }
  
  .beechnav-title {
    width: 32.46%; }
  
  .beechnavigation-desktop ul li a {
    font-size: 0.70em; }
  /*********************
  GENERAL STYLES
  *********************/
  /******************************************************************
  H1, H2, H3, H4, H5 STYLES
  ******************************************************************/
  h2, .h2 {
    /*Section header*/
    font-size: 1.85em; }

  /*********************
  LAYOUT & GRID STYLES
  *********************/
  .wrap {
    max-width: 760px; }

  /*********************
  HEADER STYLES
  *********************/
  /*********************
  NAVIGATION STYLES
  *********************/
  #beechnavigation-mobile {
    display: none; }

  .beechicon {
    display: none; }

  .beechsite-width {
    max-width: 760px;
  }

  beechnav {
    padding: 0px;
    /*change vertical pos of nav content for desktop*/ }

  .beechnav-spacer {
    width: 5.33%; }

  .beechnavigation-desktop-container {
    padding-top: 3px; }

  /* bigger beechnav height because font is bigger */
  beechnav {
    height: 53px; }
    
  beechnav#enable_banner {
	height: 88px; /* 53px + 35px */
  }

  .beechnav-title {
    height: 53px; }

  .beechnav-title-logo-container-outer {
    height: 45px;
    width: 36px; }

  .beechnav-title-logo img {
    height: 45px;
    width: 36px; }

  .beechnavigation-desktop ul li a {
    font-size: 0.78em; }
    
  .beechnavigation-desktop .sub-menu-wrap {
    top: 53px;
  }
  beechnav#enable_banner .beechnavigation-desktop .sub-menu-wrap {
    top: 88px;
  }
    
  .beechnavigation-desktop .sub-menu li a {
    padding: 6px 0;
  }

  /*********************
  FOOTER STYLES
  *********************/
  .footer {
    font-size: 0.9em; }

  .footer-content-1 {
    margin-top: -8px; }

  /******************************************************************
  Home
  ******************************************************************/
  /*********************
  Section 1
  *********************/
  .home-section-1-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/home-hero-bg.jpg") no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-hero-bg.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-hero-bg.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /*********************
  Section 2
  *********************/
  .adj1 {
    line-height: 1.315em;
    /*Change vertical positioning of sliding text - changed in other screen sizes too*/ }

  /*********************
  Section 5
  *********************/
  .home-section-5-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/home-social-bg-desktop.jpg") no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-social-bg-desktop.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/home-social-bg-desktop.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /******************************************************************
  Coaching
  ******************************************************************/
  /*********************
  Section 1
  *********************/
  .coaching-section-1-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/join-hero-bg-desktop.jpg") no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/join-hero-bg-desktop.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/join-hero-bg-desktop.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /******************************************************************
  Join
  ******************************************************************/
  /*********************
  Section 1
  *********************/
  .join-section-1-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/join-hero-bg-desktop.jpg") no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/join-hero-bg-desktop.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/join-hero-bg-desktop.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /******************************************************************
  Manual
  ******************************************************************/
  /*********************
  Section 1
  *********************/
  .manual-section-1-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/manual-hero-bg-desktop.jpg") no-repeat bottom left;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/manual-hero-bg-desktop.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/manual-hero-bg-desktop.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /******************************************************************
  404
  ******************************************************************/
  /*********************
  Section 1
  *********************/
  .fourzerofour-section-1-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/404-hero-bg-desktop.jpg") no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/404-hero-bg-desktop.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/404-hero-bg-desktop.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /******************************************************************
  Contact
  ******************************************************************/
  /*********************
  Section 1
  *********************/
  .contact-section-1-bg {
    width: 100%;
    height: inherit;
    background: url("../images/beech/contact-hero-bg-desktop.jpg") no-repeat center right;
    -webkit-background-size: cover;
    -moz-background-size: cover;
    -o-background-size: cover;
    background-size: cover;
    /* --- IE filter below could potentially cause dead links or scroll bar issues --- */
    filter: progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/contact-hero-bg-desktop.jpg', sizingMethod='scale');
    -ms-filter: "progid:DXImageTransform.Microsoft.AlphaImageLoader(src='../images/beech/contact-hero-bg-desktop.jpg', sizingMethod='scale')";
    /* --- IE filter above could potentially cause dead links or scroll bar issues --- */ }

  /*********************
  Section 2
  *********************/ }
/*********************
DESKTOP
This is the average viewing window. So Desktops, Laptops, and
in general anyone not viewing on a mobile device. Here's where
you can add resource intensive styles.
*********************/
@media only screen and (min-width: 1030px) {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Desktop Stylsheet
  
  This is the desktop size. It's larger than an iPad so it will only
  be seen on the Desktop.
  
  ******************************************************************/
  .wrap {
    max-width: 1250px; }

  .beechsite-width {
    max-width: 1250px; }

  .beechnav-spacer {
    width: 15.33%; }

  .beechnavigation-desktop-container {
    margin-top: 6px; }

  .beechnavigation-desktop ul li a {
    font-size: 0.9em; }
    
  .beechnavigation-desktop .sub-menu li a {
    padding: 4px 0;
  }

  .info_box .info_box-effect img {
    min-height: 100%;
    max-width: 100%; }

  /******************************************************************
  Home
  ******************************************************************/
  /*********************
  Section 3
  *********************/
  .slickslider-events-date {
    position: absolute;
    top: 0px;
    left: 15px;
    right: inherit; }
    .slickslider-events-date h4 {
      font-size: 1.05em;
      line-height: 0.25em; }
    .slickslider-events-date .slickslider-events-date-bold {
      font-weight: 400; }
    .slickslider-events-date p {
      display: block; }
  
    /*********************
  Section 4
  *********************/
.home-section-4-info .info_box-effect.info_box-effect:hover img {
  opacity: 0.5;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  -o-transform: scale(1);
  transform: scale(1);
  filter: url(blur.svg#blur);
  -webkit-filter: blur(5px);
  filter: blur(5px);
  filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='5'); }
  
 .home-section-4-info .info_box-effect.info_box-effect:hover h2 {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.home-section-4-info .info_box-effect.info_box-effect:hover p {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1); }

.home-section-4-info .info_box-effect.info_box-effect:hover .btn-info_box {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale(1);
  -moz-transform: translate3d(0, 0, 0) scale(1);
  -o-transform: translate3d(0, 0, 0) scale(1);
  transform: translate3d(0, 0, 0) scale(1); }
  
  
  /******************************************************************
  Contact
  ******************************************************************/
  /*********************
  Section 2
  *********************/
  .contact-section-2 {
    height: 430px; }

  .key_contacts-2_columns {
    display: none; }

  .key_contacts-3_columns {
    display: none; }

  .key_contacts-5_columns {
    display: inline; }

  .footer-logo {
    height: 45px; }

  .footer-title {
    font-weight: 700; }

  .footer-content-1 {
    margin-top: -16px; }

  .footer-content-2 {
    border-left: solid 1px white;
    line-height: 0.6em;
    margin-top: 0; }

  .footer-content-3 {
    border-left: solid 2px white;
    border-right: solid 2px white; }

  .footer-content-4 {
    line-height: 0.6em; }

  .footer-content-increased_line_height {
    line-height: 0em; } }
/*********************
LARGE VIEWING SIZE
This is for the larger monitors and possibly full screen viewers.
*********************/
@media only screen and (min-width: 1250px) {
  .beechsite-width {
    padding-left: 0px;
  }
}
/*********************
RETINA (2x RESOLUTION DEVICES)
This applies to the retina iPhone (4s) and iPad (2,3) along with
other displays with a 2x resolution. You can also create a media
query for retina AND a certain size if you want. Go Nuts.
*********************/
@media only screen and (-webkit-min-device-pixel-ratio: 1.5), only screen and (min--moz-device-pixel-ratio: 1.5), only screen and (min-device-pixel-ratio: 1.5) {
  /******************************************************************
  Site Name: 
  Author: 
  
  Stylesheet: Retina Screens & Devices Stylesheet
  
  When handling retina screens you need to make adjustments, especially
  if you're not using font icons. Here you can add them in one neat
  place.
  
  ******************************************************************/
  /* 
  
  EXAMPLE 
  Let's say you have an image and you need to make sure it looks ok
  on retina screens. Let's say we have an icon which dimension are
  24px x 24px. In your regular stylesheets, it would look something
  like this:
  
  .icon {
  	width: 24px;
  	height: 24px;
  	background: url(img/test.png) no-repeat;
  }
  
  For retina screens, we have to make some adjustments, so that image
  doesn't look blurry. So, taking into account the image above and the
  dimensions, this is what we would put in our retina stylesheet:
  
  .icon {
  	background: url(img/test@2x.png) no-repeat;
  	background-size: 24px 24px;
  }
  
  So, you would create the same icon, but at double the resolution, meaning 
  it would be 48px x 48px. You'd name it the same, but with a @2x at the end
  (this is pretty standard practice). Set the background image so it matches
  the original dimensions and you are good to go. 
  
  */ }
/*********************
PRINT STYLESHEET
Feel free to customize this. Remember to add things that won't make
sense to print at the bottom. Things like nav, ads, and forms should
be set to display none.
*********************/
@media print {
  /******************************************************************
  Site Name:
  Author:
  
  Stylesheet: Print Stylesheet
  
  This is the print stylesheet. There's probably not a lot
  of reasons to edit this stylesheet. If you want to
  though, go for it.
  
  ******************************************************************/
  * {
    background: transparent !important;
    color: black !important;
    text-shadow: none !important;
    filter: none !important;
    -ms-filter: none !important; }

  a, a:visited {
    color: #444 !important;
    text-decoration: underline; }
    a:after, a:visited:after {
      content: " (" attr(href) ")"; }
    a abbr[title]:after, a:visited abbr[title]:after {
      content: " (" attr(title) ")"; }

  .ir a:after,
  a[href^="javascript:"]:after,
  a[href^="#"]:after {
    content: ""; }

  pre, blockquote {
    border: 1px solid #999;
    page-break-inside: avoid; }

  thead {
    display: table-header-group; }

  tr, img {
    page-break-inside: avoid; }

  img {
    max-width: 100% !important; }

  @page {
    margin: 0.5cm; }
  p, h2, h3 {
    orphans: 3;
    widows: 3; }

  h2,
  h3 {
    page-break-after: avoid; }

  .sidebar,
  .page-navigation,
  .wp-prev-next,
  .respond-form,
  nav {
    display: none; } }

@media only screen and (max-width: 600px) {
  .footer-container .footer-content-2 li {
      display: inline-block;
    }
    
    .footer-container {
      height: 450px;
    }}