/** 
 * Automatically Generated - DO NOT EDIT 
 * Codasign / v2.0.0 / 2015-06-15 
 */ 


@charset "UTF-8";
/*! 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 {
  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: thin dotted; }

/**
 * 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 {
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  height: 0; }

/*
 * proper formatting (http://blog.fontdeck.com/post/9037028497/hyphens)
*/
p {
  -webkit-hyphens: auto;
  -epub-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
      hyphens: auto; }

/*
 * 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"] {
  -webkit-box-sizing: border-box;
          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 */
  -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;
  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; }

/*
=============
CHELSEA
=============
*/
/*Codasign Custom Tones*/
/*Codasign Custom Colours*/
/*Social button colors*/
/*Padding*/
/*Page width*/
.page-template-default #content .content-block--team .bio {
  overflow: hidden;
  _overflow: visible;
  zoom: 1; }

/* Opacity  ========================================================================== */
/* Text overflow  ========================================================================== */
/* Cross browser inline block  ========================================================================== */
/* Text replacement (instead of text-indent)  ========================================================================== */
.waypoint-logo span, .menu-toggle span, .social_shares li a span, .social-channels li span {
  border: 0;
  color: transparent;
  font: 0/0 a;
  text-shadow: none; }

/* Line Height  ========================================================================== */
/* Border Radius  ========================================================================== */
/* Border Shadow ========================================================================== */
/* Text Shadow ========================================================================== */
/* Input Border  ========================================================================== */
/* Webkit-style focus  ========================================================================== */
/* Break word  ========================================================================== */
/* Button  ========================================================================== */
.wrap-inner, #content, #content.has-banner #inner-content .content-wrapper, #content.has-banner .content-wrapper, #banner .banner-item .banner-item--wrapper, .content-block--clients .recent-clients--inner, #testimonials, .page-template-default #content .content-inner, .logo {
  margin: 0 auto;
  padding: 0 15px;
  overflow: hidden; }
  @media (min-width: 992px) {
    .wrap-inner, #content, #content.has-banner #inner-content .content-wrapper, #content.has-banner .content-wrapper, #banner .banner-item .banner-item--wrapper, .content-block--clients .recent-clients--inner, #testimonials, .page-template-default #content .content-inner, .logo {
      max-width: 1000px; } }

input[type="submit"], .btn, p.read_more, .posts-grid--introduction .grid-item a, .tags a, #banner .banner-item .banner-item--wrapper .button, .searchandfilter [class^="sf-item-"], #btn-reset-form, .menu-toggle {
  display: inline-block;
  background-color: #fff;
  border: 2px solid #03A8F5;
  color: #03A8F5;
  font-family: "proxima-nova", Helvetica, Arial, "Lucida Grande", sans-serif;
  font-weight: bold;
  font-style: normal;
  font-size: 14px;
  text-decoration: none;
  padding: 8px 15px;
  margin: 0;
  line-height: 1em;
  text-transform: uppercase;
  position: relative; }
  input[type="submit"]:hover, .btn:hover, p.read_more:hover, .posts-grid--introduction .grid-item a:hover, .tags a:hover, #banner .banner-item .banner-item--wrapper .button:hover, .searchandfilter [class^="sf-item-"]:hover, #btn-reset-form:hover, .menu-toggle:hover, input[type="submit"]:focus, .btn:focus, p.read_more:focus, .posts-grid--introduction .grid-item a:focus, .tags a:focus, #banner .banner-item .banner-item--wrapper .button:focus, .searchandfilter [class^="sf-item-"]:focus, #btn-reset-form:focus, .menu-toggle:focus {
    background-color: #03A8F5;
    color: #fff; }

.sf-field-taxonomy-skill [class^="sf-item-"] {
  border-color: #E81F63;
  color: #E81F63; }
  .sf-field-taxonomy-skill [class^="sf-item-"]:hover, .sf-field-taxonomy-skill [class^="sf-item-"]:focus {
    background-color: #E81F63;
    color: #fff; }

.sf-field-taxonomy-age-group [class^="sf-item-"] {
  border-color: #7D57C2;
  color: #7D57C2; }
  .sf-field-taxonomy-age-group [class^="sf-item-"]:hover, .sf-field-taxonomy-age-group [class^="sf-item-"]:focus {
    background-color: #E81F63;
    color: #fff; }

input.gform_button[type="submit"], .upcoming-workshops .view-more,
.featured-tutorials .view-more, #banner .banner-item .banner-item--wrapper .button, .single .view-more, .single-event p.book-now .btn {
  background-color: #03A8F5;
  color: #fff; }
  input.gform_button[type="submit"]:hover, .upcoming-workshops .view-more:hover,
  .featured-tutorials .view-more:hover, #banner .banner-item .banner-item--wrapper .button:hover, .single .view-more:hover, .single-event p.book-now .btn:hover, input.gform_button[type="submit"]:focus, .upcoming-workshops .view-more:focus,
  .featured-tutorials .view-more:focus, #banner .banner-item .banner-item--wrapper .button:focus, .single .view-more:focus, .single-event p.book-now .btn:focus {
    background-color: #fff;
    border: 2px solid #03A8F5;
    color: #03A8F5; }

.posts-grid .grid-item .btn-read-more, .grid-item.theme--blue .grid-item--inner .btn-read-more, .grid-item.theme--red .grid-item--inner .btn-read-more, .grid-item.theme--magenta .grid-item--inner .btn-read-more, .grid-item.theme--purple .grid-item--inner .btn-read-more, .grid-item.theme--teal .grid-item--inner .btn-read-more, .grid-item.theme--green .grid-item--inner .btn-read-more, .grid-item.theme--lime .grid-item--inner .btn-read-more, .grid-item.theme--gold .grid-item--inner .btn-read-more, .grid-item.theme--yellow .grid-item--inner .btn-read-more, .grid-item.theme--orange .grid-item--inner .btn-read-more, .grid-item.theme--grey .grid-item--inner .btn-read-more, .grid-item.theme--brown .grid-item--inner .btn-read-more, .tags a, .footer input[type="submit"] {
  background-color: transparent;
  color: #fff;
  border: 1px solid #fff;
  display: block;
  text-align: center; }
  .posts-grid .grid-item .btn-read-more:visited, .grid-item.theme--blue .grid-item--inner .btn-read-more:visited, .grid-item.theme--red .grid-item--inner .btn-read-more:visited, .grid-item.theme--magenta .grid-item--inner .btn-read-more:visited, .grid-item.theme--purple .grid-item--inner .btn-read-more:visited, .grid-item.theme--teal .grid-item--inner .btn-read-more:visited, .grid-item.theme--green .grid-item--inner .btn-read-more:visited, .grid-item.theme--lime .grid-item--inner .btn-read-more:visited, .grid-item.theme--gold .grid-item--inner .btn-read-more:visited, .grid-item.theme--yellow .grid-item--inner .btn-read-more:visited, .grid-item.theme--orange .grid-item--inner .btn-read-more:visited, .grid-item.theme--grey .grid-item--inner .btn-read-more:visited, .grid-item.theme--brown .grid-item--inner .btn-read-more:visited, .tags a:visited, .footer input[type="submit"]:visited {
    color: #fff; }
  .posts-grid .grid-item .btn-read-more:hover, .grid-item.theme--blue .grid-item--inner .btn-read-more:hover, .grid-item.theme--red .grid-item--inner .btn-read-more:hover, .grid-item.theme--magenta .grid-item--inner .btn-read-more:hover, .grid-item.theme--purple .grid-item--inner .btn-read-more:hover, .grid-item.theme--teal .grid-item--inner .btn-read-more:hover, .grid-item.theme--green .grid-item--inner .btn-read-more:hover, .grid-item.theme--lime .grid-item--inner .btn-read-more:hover, .grid-item.theme--gold .grid-item--inner .btn-read-more:hover, .grid-item.theme--yellow .grid-item--inner .btn-read-more:hover, .grid-item.theme--orange .grid-item--inner .btn-read-more:hover, .grid-item.theme--grey .grid-item--inner .btn-read-more:hover, .grid-item.theme--brown .grid-item--inner .btn-read-more:hover, .tags a:hover, .footer input[type="submit"]:hover, .posts-grid .grid-item .btn-read-more:focus, .grid-item.theme--blue .grid-item--inner .btn-read-more:focus, .grid-item.theme--red .grid-item--inner .btn-read-more:focus, .grid-item.theme--magenta .grid-item--inner .btn-read-more:focus, .grid-item.theme--purple .grid-item--inner .btn-read-more:focus, .grid-item.theme--teal .grid-item--inner .btn-read-more:focus, .grid-item.theme--green .grid-item--inner .btn-read-more:focus, .grid-item.theme--lime .grid-item--inner .btn-read-more:focus, .grid-item.theme--gold .grid-item--inner .btn-read-more:focus, .grid-item.theme--yellow .grid-item--inner .btn-read-more:focus, .grid-item.theme--orange .grid-item--inner .btn-read-more:focus, .grid-item.theme--grey .grid-item--inner .btn-read-more:focus, .grid-item.theme--brown .grid-item--inner .btn-read-more:focus, .tags a:focus, .footer input[type="submit"]:focus {
    background-color: #fff;
    color: #03A8F5;
    border: 1px solid #fff; }

/* Titles
  ========================================================================== */
/* Gradients
  ========================================================================== */
/* @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? */
/* Transform Rotate
  ========================================================================== */
/* Transition
  ========================================================================== */
/*
Thanks to @anthonyshort for the inspiration on these.
USAGE: @include transition(all 0.2s ease-in-out);
*/
/* Unstyled list
  ========================================================================== */
ul, ol {
  line-height: 1;
  list-style: none;
  list-style-type: none;
  margin: 0;
  padding: 0; }

/*********************
VERTICAL ALIGN
*********************/
/* From http://zerosixthree.se/vertical-align-anything-with-just-3-lines-of-css/ */
/* @extend %vertical-align; */
/* NOTE Tthis method can cause elements to be blurry due to the element
being placed on a “half pixel”. A solution for this is to set its
parent element to preserve-3d. Like following:

.parent-element {
  -webkit-transform-style: preserve-3d;
}

*/
/*Inspire*/
/******************************************************************
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 FACE (IN YOUR FACE)
*********************/
/*  To embed your own fonts, use this syntax
  and place your fonts inside the
  library/fonts folder. For more information
  on embedding fonts, go to:
  http://www.fontsquirrel.com/
  Be sure to remove the comment brackets.
*/
/*  @font-face {
      font-family: 'Font Name';
      src: url('library/fonts/font-name.eot');
      src: url('library/fonts/font-name.eot?#iefix') format('embedded-opentype'),
             url('library/fonts/font-name.woff') format('woff'),
             url('library/fonts/font-name.ttf') format('truetype'),
             url('library/fonts/font-name.svg#font-name') format('svg');
      font-weight: normal;
      font-style: normal;
  }
*/
/*
The following is based of Typebase:
https://github.com/devinhunt/typebase.css
I've edited it a bit, but it's a nice starting point.
*/
/*********************
GENERAL STYLES
*********************/
html {
  font-size: 62.5%; }

body {
  font-family: "proxima-nova", Helvetica, Arial, "Lucida Grande", sans-serif;
  line-height: 1.5;
  color: #000000;
  -webkit-font-smoothing: antialiased; }

/*********************
LINK STYLES
*********************/
a, a:visited {
  color: #37aae1;
  text-decoration: none;
  font-weight: bold;
  /* on hover */
  /* on click */
  /* mobile tap color */ }
  a:hover, a:focus, a:visited:hover, a:visited:focus {
    color: #1e90c7; }
  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); }

/******************************************************************
H1, H2, H3, H4, H5 STYLES
******************************************************************/
h1, h2, h3, h4, h5 {
  text-rendering: optimizelegibility;
  font-weight: 700;
  /*
  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, h2 a, h3 a, h4 a, h5 a {
    text-decoration: none; }

h1 {
  font-size: 48px;
  font-size: 4.8rem;
  line-height: 1em;
  margin: 0 0 40px;
  text-transform: uppercase; }
  .entry-content h1 {
    text-transform: none; }
  h1 a {
    color: #000000; }
  h1 span {
    color: #03A8F5; }

h2 {
  font-size: 30px;
  font-size: 3rem;
  line-height: 1em;
  margin: 0 0 40px;
  text-transform: uppercase; }
  .entry-content h2 {
    text-transform: none; }
  h2 span {
    color: #03A8F5; }

h3 {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1.250;
  /*20px*/
  text-transform: uppercase; }

h4 {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1; }

h5 {
  font-size: 12px;
  font-size: 1.2rem;
  line-height: 1.5; }

/* Global typogpraphy */
p, td, label {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 21px;
  margin: 0 0 20px 0;
  font-weight: normal; }
  p time, td time, label time {
    font-size: 1em; }
  p .author, td .author, label .author {
    font-weight: bold;
    color: #03A8F5; }

ul, ol {
  margin-bottom: 20px; }
  ul li, ol li {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.5em; }

.sidebar h1, .sidebar h2, .sidebar h3, .sidebar h4, .sidebar h5, .sidebar h6 {
  font-size: 20px;
  font-size: 2rem;
  line-height: 22px;
  margin: 0 0 20px; }
.sidebar ul li, .sidebar ol li {
  line-height: 2em; }
.sidebar p, .sidebar time, .sidebar td, .sidebar th, .sidebar .author_bio {
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.5; }
.sidebar .byline {
  font-size: 12px;
  font-size: 1.2rem; }
  .sidebar .byline time {
    font-size: 1em; }

dt {
  font-size: 16px;
  font-size: 1.6rem; }

dd {
  margin-left: 0;
  font-size: 16px;
  font-size: 1.6rem;
  color: #787878;
  margin-bottom: 20px;
  line-height: 1.25em; }

hr {
  background-color: #f0f0f0;
  height: 2px;
  border: 0;
  margin-bottom: 20px;
  clear: both; }

/*!
 *
 *  Project:  GLYPHICONS HALFLINGS
 *  Author:   Jan Kovarik - www.glyphicons.com
 *  Twitter:  @jankovarik
 *
 */
@font-face {
  font-family: 'fontello';
  src: url("../fonts/fontello/fontello.eot");
  src: url("../fonts/fontello/fontello.eot?#iefix") format("embedded-opentype"), url("../fonts/fontello/fontello.woff") format("woff"), url("../fonts/fontello/fontello.ttf") format("truetype"), url("../fonts/fontello/fontello.svg#oneassets") format("svg");
  font-weight: normal;
  font-style: normal; }
.hicon-youtube, .hicon-twitter, .hicon-search, .hicon-profile, .hicon-email, .hicon-pinterest, .hicon-linkedin, .hicon-google, .hicon-globe, .hicon-facebook, .hicon-arrow_03, .hicon-arrow_02, .hicon-arrow_01, .hicon-menu, .hicon-close, .hicon-close {
  font-family: 'fontello';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  color: #fff; }

.hicon-search:before {
  content: "\e80A"; }

.hicon-linkedin:before {
  content: "\e803"; }

.hicon-google:before {
  content: "\e802"; }

.hicon-facebook:before {
  content: "\e800"; }

.hicon-twitter:before {
  content: "\e801"; }

.hicon-pinterest:before {
  content: "\e804"; }

.hicon-email:before {
  content: "\e805"; }

/******************************************************************
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:
Author:

Stylesheet: Grid Stylesheet

I've seperated the grid so you can swap it out easily. It's
called at the top the style.scss stylesheet.

There are a ton of grid solutions out there. You should definitely
experiment with your own. Here are some recommendations:

http://gridsetapp.com - Love this site. Responsive Grids made easy.
http://susy.oddbird.net/ - Grids using Compass. Very elegant.
http://gridpak.com/ - Create your own responsive grid.
https://github.com/dope/lemonade - Neat lightweight grid.


The grid below is a custom built thingy I modeled a bit after
Gridset. It's VERY basic and probably shouldn't be used on
your client projects. The idea is you learn how to roll your
own grids. It's better in the long run and allows you full control
over your project's layout.

******************************************************************/
.last-col {
  float: right;
  padding-right: 0 !important; }

/*
Mobile Grid Styles
These are the widths for the mobile grid.
There are four types, but you can add or customize
them however you see fit.
*/
@media (max-width: 767px) {
  .m-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .m-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .m-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .m-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .m-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .m-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; } }
/* Portrait tablet to landscape */
@media (min-width: 768px) and (max-width: 1029px) {
  .t-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .t-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .t-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .t-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .t-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .t-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .t-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .t-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .t-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .t-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; } }
/* Landscape to small desktop */
@media (min-width: 1030px) {
  .d-all {
    float: left;
    padding-right: 0.75em;
    width: 100%;
    padding-right: 0; }

  .d-1of2 {
    float: left;
    padding-right: 0.75em;
    width: 50%; }

  .d-1of3 {
    float: left;
    padding-right: 0.75em;
    width: 33.33%; }

  .d-2of3 {
    float: left;
    padding-right: 0.75em;
    width: 66.66%; }

  .d-1of4 {
    float: left;
    padding-right: 0.75em;
    width: 25%; }

  .d-3of4 {
    float: left;
    padding-right: 0.75em;
    width: 75%; }

  .d-1of5 {
    float: left;
    padding-right: 0.75em;
    width: 20%; }

  .d-2of5 {
    float: left;
    padding-right: 0.75em;
    width: 40%; }

  .d-3of5 {
    float: left;
    padding-right: 0.75em;
    width: 60%; }

  .d-4of5 {
    float: left;
    padding-right: 0.75em;
    width: 80%; }

  .d-1of6 {
    float: left;
    padding-right: 0.75em;
    width: 16.6666666667%; }

  .d-1of7 {
    float: left;
    padding-right: 0.75em;
    width: 14.2857142857%; }

  .d-2of7 {
    float: left;
    padding-right: 0.75em;
    width: 28.5714286%; }

  .d-3of7 {
    float: left;
    padding-right: 0.75em;
    width: 42.8571429%; }

  .d-4of7 {
    float: left;
    padding-right: 0.75em;
    width: 57.1428572%; }

  .d-5of7 {
    float: left;
    padding-right: 0.75em;
    width: 71.4285715%; }

  .d-6of7 {
    float: left;
    padding-right: 0.75em;
    width: 85.7142857%; }

  .d-1of8 {
    float: left;
    padding-right: 0.75em;
    width: 12.5%; }

  .d-1of9 {
    float: left;
    padding-right: 0.75em;
    width: 11.1111111111%; }

  .d-1of10 {
    float: left;
    padding-right: 0.75em;
    width: 10%; }

  .d-1of11 {
    float: left;
    padding-right: 0.75em;
    width: 9.09090909091%; }

  .d-1of12 {
    float: left;
    padding-right: 0.75em;
    width: 8.33%; } }
/*********************
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: #f8cdce;
  background: #fbe3e4; }

.alert-success {
  border-color: #deeaae;
  background: #e6efc2; }

/******************************************************************
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

*********************/
.blue-btn {
  display: inline-block;
  position: relative;
  font-family: "proxima-nova", Helvetica, Arial, "Lucida Grande", sans-serif;
  text-decoration: none;
  color: #fff;
  font-size: 0.9em;
  font-size: 34px;
  line-height: 34px;
  font-weight: normal;
  padding: 0 24px;
  border-radius: 4px;
  border: 0;
  cursor: pointer;
  -webkit-transition: background-color 0.14s ease-in-out;
  -o-transition: background-color 0.14s ease-in-out;
     transition: background-color 0.14s ease-in-out; }
  .blue-btn:hover, .blue-btn:focus {
    color: #fff;
    text-decoration: none; }
  .blue-btn:active {
    top: 1px; }

/*
An example button.
You can use this example if you want. Just replace all the variables
and it will create a button dependant on those variables.
*/
.blue-btn {
  background-color: #2980b9; }
  .blue-btn:hover, .blue-btn:focus {
    background-color: #2574a8; }
  .blue-btn:active {
    background-color: #2472a4; }

/******************************************************************
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/

******************************************************************/
/* Forms */
label,
input,
button,
select,
textarea {
  font-size: 14px;
  font-size: 1.4rem;
  font-family: "proxima-nova", Helvetica, Arial, "Lucida Grande", sans-serif;
  color: #342f2c; }

/*********************
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: 40px;
  padding: 0 12px;
  margin-bottom: 14px;
  font-size: 14px;
  font-size: 1.4rem;
  color: #000000;
  vertical-align: middle;
  -webkit-box-shadow: none;
          box-shadow: none;
  border: 0;
  width: 100%;
  max-width: 400px;
  font-family: "proxima-nova", Helvetica, Arial, "Lucida Grande", sans-serif;
  background-color: #eaedf2;
  -webkit-transition: background-color 0.24s ease-in-out;
  -o-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: #f7f8fa; }
  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: #fbe3e4;
    border-color: #fbe3e4;
    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: #fbe3e4; }
  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: #e6efc2;
    border-color: #e6efc2;
    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: #e6efc2; }
  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 */
  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; }

/*
Stop zoom issue with iOS on for fields
http://www.456bereastreet.com/archive/201212/ios_webkit_browsers_and_auto-zooming_form_controls/
*/
@media only screen and (max-device-width: 568px) {
  input[type="text"]:focus,
  textarea:focus,
  select:focus {
    font-size: 14px;
    font-size: 1.4rem; } }
.gform_validation_container {
  display: none; }

input.gform_button[type="submit"] {
  margin: 0 0 20px;
  padding: 10px 40px; }

/*********************
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: M&G Chelsea Flower Show
Author: Drew London

Stylesheet: Base Mobile Stylesheet

Dependencies
header.scss
navigation.scss
pagination.scss
sidebar.scss
social.scss

******************************************************************/
/*********************
LAYOUT & GRID STYLES
*********************/
#wpadminbar {
  top: 0;
  position: fixed; }

.wrap {
  width: 100%;
  margin: 0 auto; }

html, body {
  background-color: #fff; }

/*********************
POSTS & CONTENT STYLES
*********************/
#content {
  position: relative;
  clear: both;
  padding: 20px 0; }

#content.has-banner {
  padding-top: 0;
  max-width: 100%; }
  #content.has-banner #inner-content {
    padding: 0; }
    #content.has-banner #inner-content .content-wrapper {
      padding: 0 20px; }
      @media (min-width: 1000px) {
        #content.has-banner #inner-content .content-wrapper {
          padding: 0; } }

#inner-content {
  padding: 0 20px; }
  @media (min-width: 1000px) {
    #inner-content {
      padding: 0; } }

@media (min-width: 768px) {
  #content .t-2of3, #content .d-5of7 {
    padding-right: 4em; } }

.introduction {
  text-align: center; }

.upcoming-workshops,
.featured-tutorials {
  border-top: 2px solid #f0f0f0;
  padding-top: 40px; }
  .upcoming-workshops h2,
  .featured-tutorials h2 {
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .upcoming-workshops h2,
      .featured-tutorials h2 {
        float: left;
        margin-bottom: 40px; } }
  .upcoming-workshops .view-more,
  .featured-tutorials .view-more {
    margin: 0 0 10px; }
    @media (min-width: 768px) {
      .upcoming-workshops .view-more,
      .featured-tutorials .view-more {
        float: right;
        margin: 0; } }

.posts-grid {
  overflow: hidden;
  clear: both; }
  .posts-grid .grid-item {
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .posts-grid .grid-item {
        width: 32%;
        margin-bottom: 2%;
        margin-right: 2%; }
        .posts-grid .grid-item:nth-child(3n) {
          margin-right: 0; } }
    .posts-grid .grid-item .grid-item--outer {
      padding: 20px;
      border: 2px solid #f0f0f0; }
    .posts-grid .grid-item .grid-item--inner {
      background-color: #03A8F5; }
      @media (min-width: 768px) {
        .posts-grid .grid-item .grid-item--inner {
          padding-bottom: 52px;
          position: relative; } }
    .posts-grid .grid-item .excerpt-content {
      padding: 20px; }
    .posts-grid .grid-item h3 {
      margin: 0; }
    .posts-grid .grid-item h3, .posts-grid .grid-item h3 a, .posts-grid .grid-item p {
      color: #fff; }
    @media (min-width: 768px) {
      .posts-grid .grid-item .btn-read-more {
        position: absolute;
        bottom: 20px;
        width: calc(100% - 40px); } }
    .posts-grid .grid-item.last {
      margin: 0; }
  .posts-grid.posts-grid--introduction {
    display: block; }
  .posts-grid.posts-grid--workshops {
    margin-bottom: 40px; }

@media (min-width: 768px) {
  .introduction {
    padding: 40px 0;
    margin-bottom: 40px; } }
@media (min-width: 768px) {
  .introduction h2 {
    margin: 40px 0 80px; } }

.posts-grid--introduction .grid-item {
  position: relative;
  text-align: center;
  display: inline-block; }
  @media (min-width: 768px) {
    .posts-grid--introduction .grid-item {
      width: 48%;
      margin-right: 4%; }
      .posts-grid--introduction .grid-item.grid-item--host {
        margin-right: 0; } }
  .posts-grid--introduction .grid-item .grid-item--inner {
    padding: 20px;
    border: 2px solid #f0f0f0;
    background-color: transparent; }
  .posts-grid--introduction .grid-item img {
    display: block;
    width: 100%; }
  .posts-grid--introduction .grid-item a {
    position: absolute;
    top: calc(50% - 45px);
    z-index: 100;
    width: 80%;
    left: 10%;
    display: block;
    font-size: 26px;
    font-size: 2.6rem;
    border: 2px solid #fff;
    background-color: transparent;
    color: #fff; }
    @media (min-width: 768px) {
      .posts-grid--introduction .grid-item a {
        padding: 30px 15px; } }
    .posts-grid--introduction .grid-item a:hover {
      background-color: transparent;
      color: #fff; }
.posts-grid--introduction .grid-item--host {
  margin-right: 0; }

.grid-item.theme--blue .grid-item--inner {
  background-color: #03A8F5; }
  .grid-item.theme--blue .grid-item--inner .tags a:hover {
    color: #03A8F5; }
  .grid-item.theme--blue .grid-item--inner .btn-read-more:hover {
    color: #03A8F5; }

.grid-item.theme--red .grid-item--inner {
  background-color: #E51C24; }
  .grid-item.theme--red .grid-item--inner .tags a:hover {
    color: #E51C24; }
  .grid-item.theme--red .grid-item--inner .btn-read-more:hover {
    color: #E51C24; }

.grid-item.theme--magenta .grid-item--inner {
  background-color: #E81F63; }
  .grid-item.theme--magenta .grid-item--inner .tags a:hover {
    color: #E81F63; }
  .grid-item.theme--magenta .grid-item--inner .btn-read-more:hover {
    color: #E81F63; }

.grid-item.theme--purple .grid-item--inner {
  background-color: #7D57C2; }
  .grid-item.theme--purple .grid-item--inner .tags a:hover {
    color: #7D57C2; }
  .grid-item.theme--purple .grid-item--inner .btn-read-more:hover {
    color: #7D57C2; }

.grid-item.theme--teal .grid-item--inner {
  background-color: #009687; }
  .grid-item.theme--teal .grid-item--inner .tags a:hover {
    color: #009687; }
  .grid-item.theme--teal .grid-item--inner .btn-read-more:hover {
    color: #009687; }

.grid-item.theme--green .grid-item--inner {
  background-color: #269C24; }
  .grid-item.theme--green .grid-item--inner .tags a:hover {
    color: #269C24; }
  .grid-item.theme--green .grid-item--inner .btn-read-more:hover {
    color: #269C24; }

.grid-item.theme--lime .grid-item--inner {
  background-color: #8CC24A; }
  .grid-item.theme--lime .grid-item--inner .tags a:hover {
    color: #8CC24A; }
  .grid-item.theme--lime .grid-item--inner .btn-read-more:hover {
    color: #8CC24A; }

.grid-item.theme--gold .grid-item--inner {
  background-color: #FF9900; }
  .grid-item.theme--gold .grid-item--inner .tags a:hover {
    color: #FF9900; }
  .grid-item.theme--gold .grid-item--inner .btn-read-more:hover {
    color: #FF9900; }

.grid-item.theme--yellow .grid-item--inner {
  background-color: #FFC208; }
  .grid-item.theme--yellow .grid-item--inner .tags a:hover {
    color: #FFC208; }
  .grid-item.theme--yellow .grid-item--inner .btn-read-more:hover {
    color: #FFC208; }

.grid-item.theme--orange .grid-item--inner {
  background-color: #FF5721; }
  .grid-item.theme--orange .grid-item--inner .tags a:hover {
    color: #FF5721; }
  .grid-item.theme--orange .grid-item--inner .btn-read-more:hover {
    color: #FF5721; }

.grid-item.theme--grey .grid-item--inner {
  background-color: #9E9E9E; }
  .grid-item.theme--grey .grid-item--inner .tags a:hover {
    color: #9E9E9E; }
  .grid-item.theme--grey .grid-item--inner .btn-read-more:hover {
    color: #9E9E9E; }

.grid-item.theme--brown .grid-item--inner {
  background-color: #785447; }
  .grid-item.theme--brown .grid-item--inner .tags a:hover {
    color: #785447; }
  .grid-item.theme--brown .grid-item--inner .btn-read-more:hover {
    color: #785447; }

.tags li {
  display: inline;
  margin-right: 10px; }
.tags a {
  display: inline-block;
  font-size: 12px;
  font-size: 1.2rem;
  margin-bottom: 8px; }

.img-fw {
  width: 100%;
  height: auto; }

/*********************
BANNER
*********************/
#content.has-banner {
  padding-top: 0; }
  #content.has-banner .wrap-inner {
    max-width: 100%;
    padding: 0; }

#banner {
  margin-bottom: 20px;
  padding-bottom: 40px;
  position: relative; }
  @media (min-width: 768px) {
    #banner {
      padding-bottom: 0; } }
  #banner .banner-item {
    position: relative;
    text-align: center; }
    #banner .banner-item .banner-item--wrapper {
      padding: 40px 20px; }
      @media (min-width: 768px) {
        #banner .banner-item .banner-item--wrapper {
          padding: 160px 0; } }
      #banner .banner-item .banner-item--wrapper h1, #banner .banner-item .banner-item--wrapper .banner-item--content p {
        color: #fff;
        padding: 0 20px;
        display: inline-block; }
        @media (min-width: 768px) {
          #banner .banner-item .banner-item--wrapper h1, #banner .banner-item .banner-item--wrapper .banner-item--content p {
            padding: 0 40px 0 20px; } }
      #banner .banner-item .banner-item--wrapper h1 {
        line-height: 1em;
        color: #fff; }
        @media (max-width: 768px) {
          #banner .banner-item .banner-item--wrapper h1 {
            font-size: 22px;
            font-size: 2.2rem;
            margin: 0 0 20px; } }
      #banner .banner-item .banner-item--wrapper .banner-item--content {
        margin-bottom: 40px; }
        #banner .banner-item .banner-item--wrapper .banner-item--content p {
          font-size: 18px;
          font-size: 1.8rem;
          display: inline-block;
          color: #fff; }
      #banner .banner-item .banner-item--wrapper .button {
        padding: 10px 40px; }

/*********************
RECENT CLIENTS
*********************/
.content-block--clients {
  margin: 60px 0;
  padding: 60px 0;
  background-color: #03A8F5;
  text-align: center; }
  .content-block--clients h2 {
    color: #fff; }
  .content-block--clients img {
    margin: 0 10px;
    width: 42%;
    height: auto;
    display: inline-block; }
    @media (min-width: 768px) {
      .content-block--clients img {
        width: 22%; } }

/*********************
TESTIMONIALS
*********************/
#testimonials {
  overflow: hidden;
  clear: both;
  margin: 40px auto 20px;
  padding: 40px 0;
  border-top: 2px solid #f0f0f0;
  text-align: center;
  position: relative; }
  @media (min-width: 768px) {
    #testimonials {
      padding-bottom: 0; } }
  #testimonials .testimonial-item {
    position: relative;
    text-align: center; }
    #testimonials .testimonial-item .testimonial-item--wrapper {
      padding: 0 20px 20px; }
      @media (min-width: 768px) {
        #testimonials .testimonial-item .testimonial-item--wrapper {
          padding: 40px 20px; } }
      #testimonials .testimonial-item .testimonial-item--wrapper:before {
        background: url(../images/icons/quote.png) no-repeat 0 50%;
        content: "";
        display: inline-block;
        width: 50px;
        height: 50px;
        -webkit-background-size: 50px 50px;
                background-size: 50px 50px;
        margin-bottom: 20px; }
        @media (min-width: 768px) {
          #testimonials .testimonial-item .testimonial-item--wrapper:before {
            width: 139px;
            height: 139px;
            -webkit-background-size: 139px 139px;
                    background-size: 139px 139px;
            margin-bottom: 40px; } }
      @media (min-width: 768px) {
        #testimonials .testimonial-item .testimonial-item--wrapper {
          padding: 40px 0 160px 0; } }
      #testimonials .testimonial-item .testimonial-item--wrapper h4, #testimonials .testimonial-item .testimonial-item--wrapper h5, #testimonials .testimonial-item .testimonial-item--wrapper .testimonial-item--content p {
        color: #03A8F5; }
      #testimonials .testimonial-item .testimonial-item--wrapper h4, #testimonials .testimonial-item .testimonial-item--wrapper h5 {
        margin: 0;
        font-size: 16px;
        font-size: 1.6rem; }
      #testimonials .testimonial-item .testimonial-item--wrapper h4 {
        text-transform: uppercase; }
      #testimonials .testimonial-item .testimonial-item--wrapper h5 {
        font-weight: normal; }
      @media (min-width: 992px) {
        #testimonials .testimonial-item .testimonial-item--wrapper .testimonial-item--content {
          max-width: 60%;
          margin: 0 20% 40px; } }
      #testimonials .testimonial-item .testimonial-item--wrapper .testimonial-item--content p {
        font-size: 24px;
        font-size: 2.4rem;
        line-height: 32px; }
  #testimonials .flex-control-paging li a {
    border: 2px solid #03A8F5; }
  #testimonials .flex-control-paging li a:hover {
    background: #03A8F5; }
  #testimonials .flex-control-paging li a.flex-active {
    background: #03A8F5;
    background: rgba(3, 168, 245, 0.9); }

/*********************
TUTORIALS, BLOG POSTS & WORKSHOPS
*********************/
.page-template-template-tutorials h1,
.page-template-template-events h1 {
  text-align: center; }
.page-template-template-tutorials .entry-content,
.page-template-template-events .entry-content {
  text-align: center; }
  @media (min-width: 992px) {
    .page-template-template-tutorials .entry-content,
    .page-template-template-events .entry-content {
      max-width: 60%;
      margin: 0 20% 40px; } }

.page-template-template-contact h1 {
  text-align: center; }

.single h1, .single h2 {
  text-transform: none; }
.single h2 {
  font-size: 24px;
  font-size: 2.4rem;
  font-weight: normal; }
.single .article-footer {
  clear: both;
  overflow: hidden;
  margin: 40px 0 20px; }
.single .view-more {
  padding: 10px 40px;
  margin-top: 10px;
  float: right; }
  .single .view-more .glyphicon-chevron-right {
    margin-left: 5px;
    top: 0; }

.btn-prev {
  float: left; }

.btn-next {
  float: right; }

a.btn-prev .glyphicon, a.btn-next .glyphicon {
  top: 0; }
  a.btn-prev .glyphicon:before, a.btn-next .glyphicon:before {
    color: #03A8F5;
    font-size: 14px;
    font-size: 1.4rem; }
a.btn-prev:hover, a.btn-next:hover {
  color: #fff; }
  a.btn-prev:hover .glyphicon:before, a.btn-next:hover .glyphicon:before {
    color: #fff; }

.btn-prev .glyphicon:before {
  margin-right: 5px; }

.btn-next .glyphicon:before {
  margin-left: 5px; }

.widget-tags .tags {
  margin: 20px 0 0 0; }
  .widget-tags .tags a {
    border: 2px solid #03A8F5;
    color: #2980b9;
    font-weight: bold; }
    .widget-tags .tags a:hover {
      background-color: #03A8F5;
      color: #fff; }

.single .entry-content img {
  max-width: 100%;
  height: auto; }

.single-event .article-header h1, .single-event .article-header p {
  margin: 0 0 5px; }
.single-event .entry-content, .single-event .event-content {
  margin: 40px 0; }
.single-event p.meta {
  margin: 0 0 5px; }
.single-event p.book-now {
  margin: 10px 0; }
  .single-event p.book-now .btn {
    padding: 10px 40px;
    margin-top: 10px; }

.acf-map {
  height: 400px;
  border: #ccc solid 1px;
  margin: 40px 0;
  overflow: hidden;
  clear: both; }

.pagination {
  clear: both; }

.searchandfilter {
  overflow: hidden; }
  .searchandfilter [class^="sf-item-"] {
    display: inline-block;
    margin: 0 5px 5px 0; }
    .searchandfilter [class^="sf-item-"] label {
      color: #03A8F5;
      font-weight: bold; }
    .searchandfilter [class^="sf-item-"]:hover label {
      color: #fff; }
  @media (min-width: 768px) {
    .searchandfilter ul > li {
      width: 30%;
      margin-right: 3%;
      display: inline;
      float: left; }
      .searchandfilter ul > li li {
        width: auto; } }
  .searchandfilter li.sf-field-submit {
    width: 100%; }

.sf-field-taxonomy-skill [class^="sf-item-"] label {
  color: #E81F63; }

.sf-field-taxonomy-age-group [class^="sf-item-"] label {
  color: #7D57C2; }

#btn-reset-form {
  border-color: #9E9E9E;
  color: #9E9E9E; }

/*********************
TUTORS
*********************/
.widget-tutors .tutors {
  margin-left: 0; }
.widget-tutors .tutor {
  text-align: center;
  margin: 20px 0; }
  @media (min-width: 768px) {
    .widget-tutors .tutor {
      text-align: left;
      min-height: 500px; } }
  @media (min-width: 992px) {
    .widget-tutors .tutor {
      text-align: left;
      min-height: 300px; } }
  .widget-tutors .tutor img {
    border-radius: 50%;
    -webkit-background-clip: padding-box;
            background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    width: 100px;
    height: 100px;
    margin: 0 0 10px 0; }
    @media (min-width: 768px) {
      .widget-tutors .tutor img {
        margin: 0 0 20px;
        width: 200px;
        height: 200px; } }
  .widget-tutors .tutor h3, .widget-tutors .tutor h4 {
    color: #03A8F5; }
  .widget-tutors .tutor h3 {
    margin: 0; }
  .widget-tutors .tutor h4 {
    font-weight: normal; }
  .widget-tutors .tutor .social-channels {
    postition: relative;
    float: none;
    margin: 0; }
    .widget-tutors .tutor .social-channels li {
      margin: 0 10px 0 0;
      line-height: 1em; }

.single-tutor h1, .single-tutor h2 {
  margin: 0 0 20px; }
.single-tutor .social-channels {
  float: none; }
  .single-tutor .social-channels li {
    margin: 0; }

/*********************
RELATED POSTS
*********************/
.related-posts {
  overflow: hidden;
  clear: both;
  margin: 40px 0 20px;
  padding: 40px 0;
  border-top: 2px solid #f0f0f0; }

/*********************
GENRIC PAGE
*********************/
.page-template-default #content {
  padding-top: 0;
  max-width: 100%; }
  .page-template-default #content .wrap-inner {
    max-width: 100%;
    padding: 0; }
  .page-template-default #content .content-inner {
    padding: 20px; }
    @media (min-width: 992px) {
      .page-template-default #content .content-inner {
        padding: 40px 0; } }
  .page-template-default #content .article-header {
    text-align: center; }
    .page-template-default #content .article-header.has-thumbnail .content-inner {
      padding: 80px 0; }
      @media (min-width: 992px) {
        .page-template-default #content .article-header.has-thumbnail .content-inner {
          padding: 160px 0; } }
    .page-template-default #content .article-header h1 {
      margin: 0; }
    .page-template-default #content .article-header.has-thumbnail h1 {
      color: white; }
  .page-template-default #content .entry-content {
    text-align: center; }
    @media (min-width: 992px) {
      .page-template-default #content .entry-content {
        max-width: 60%;
        margin: 0 20% 40px; } }
    .page-template-default #content .entry-content h2 {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 32px;
      font-weight: bold; }
  .page-template-default #content .content-block--generic {
    overflow: hidden; }
    .page-template-default #content .content-block--generic .block-content--image {
      margin-top: 20px; }
      @media (min-width: 768px) {
        .page-template-default #content .content-block--generic .block-content--image {
          margin-top: 0; } }
      .page-template-default #content .content-block--generic .block-content--image img {
        width: 100%; }
    @media (min-width: 768px) {
      .page-template-default #content .content-block--generic .align-left .block-content--wrapper {
        float: left;
        padding-right: 4em; }
      .page-template-default #content .content-block--generic .align-left .block-content--image {
        float: right;
        margin: 0; }
      .page-template-default #content .content-block--generic .align-right .block-content--wrapper {
        float: right; }
      .page-template-default #content .content-block--generic .align-right .block-content--image {
        float: left;
        padding-right: 4em; } }
  .page-template-default #content .content-block--team {
    overflow: hidden;
    margin: 20px auto;
    padding: 20px;
    border-top: 2px solid #f0f0f0; }
    @media (min-width: 768px) {
      .page-template-default #content .content-block--team {
        padding: 40px 0; } }
    .page-template-default #content .content-block--team h3, .page-template-default #content .content-block--team h4 {
      margin: 0; }
    .page-template-default #content .content-block--team h3 a {
      font-weight: bold; }
    .page-template-default #content .content-block--team h4 {
      margin-bottom: 10px; }
    @media (min-width: 768px) {
      .page-template-default #content .content-block--team img {
        float: left;
        margin-right: 20px; } }
  .page-template-default #content .content-block--call-to-action {
    border-top: 2px solid #f0f0f0;
    padding-top: 40px;
    overflow: hidden;
    clear: both;
    text-align: center; }
    .page-template-default #content .content-block--call-to-action h2 {
      font-size: 24px;
      font-size: 2.4rem;
      line-height: 32px;
      font-weight: bold;
      text-transform: none; }
    .page-template-default #content .content-block--call-to-action .btn {
      margin-top: 20px;
      font-size: 18px;
      font-size: 1.8rem;
      padding: 10px 40px; }

/*********************
FOOTER
*********************/
.footer {
  background-color: #342f2c;
  position: relative;
  text-align: center;
  padding: 20px; }
  @media (min-width: 768px) {
    .footer {
      text-align: left;
      padding: 60px; } }
  .footer h4 {
    color: #fff;
    margin-top: 0; }
  .footer p, .footer li {
    font-size: 14px;
    font-size: 1.4rem;
    font-weight: bold;
    margin: 0;
    color: #b7b7b7; }
    .footer p a, .footer li a {
      color: #b7b7b7; }
      .footer p a:hover, .footer li a:hover {
        color: #fff; }
  .footer .social-channels {
    float: none; }
    .footer .social-channels li {
      margin-left: 0;
      margin-right: 10px; }
  .footer input[type="submit"] {
    margin: 0 auto;
    padding: 8px 40px; }
    @media (min-width: 768px) {
      .footer input[type="submit"] {
        margin: 0; } }
  .footer .m-all {
    padding-bottom: 20px; }
  .footer .nav {
    display: block; }
  .footer .footer-nav {
    text-align: center; }
    @media (min-width: 768px) {
      .footer .footer-nav {
        text-align: left; } }
  .footer .copyright {
    clear: both; }

/*********************
COOKIES
*********************/
#cookie-law-info-bar #cookie_action_close_header {
  border-radius: 0;
  text-shadow: none;
  -webkit-box-shadow: none;
          box-shadow: none; }

/*********************
HEADER STYLES
*********************/
.header {
  padding: 0 0 10px 0;
  position: relative;
  text-align: center; }
  @media (min-width: 768px) {
    .header {
      text-align: left;
      padding: 0; } }

.logo {
  padding: 20px 0 0;
  margin: 0 auto;
  text-align: left;
  background-color: #fff;
  position: relative; }
  @media (min-width: 992px) {
    .logo {
      height: 250px; } }
  @media (min-width: 1000px) {
    .logo {
      padding: 20px 0;
      display: inline-block; } }
  .logo img {
    max-width: 100px; }
    @media (min-width: 768px) {
      .logo img {
        max-width: 130px; } }
    @media (min-width: 992px) {
      .logo img {
        max-width: 209px;
        padding: 0;
        position: absolute;
        top: 40px;
        left: 20px; } }
  .logo span {
    display: inline-block;
    width: 150px;
    height: 112px; }
    @media (min-width: 768px) {
      .logo span {
        width: 250px;
        height: 188px; } }

.btn-signup {
  display: block;
  margin: 0 40px 20px; }
  @media (min-width: 768px) {
    .btn-signup {
      float: left;
      margin: 0; } }

@media (min-width: 768px) {
  .social-channels {
    float: right; } }

/*********************
NAVIGATION STYLES
*********************/
/*
all navs have a .nav class applied via
the wp_menu function; this is so we can
easily write one group of styles for
the navs on the site so our css is cleaner
and more scalable.
*/
#wpadminbar {
  z-index: 9999999; }

.nav-wrapper {
  padding: 20px 0;
  display: none; }
  @media (min-width: 768px) {
    .nav-wrapper {
      display: block; } }
  @media (min-width: 992px) {
    .nav-wrapper {
      padding: 50px 0 25px; } }

#site-navigation {
  clear: both;
  display: block; }
  #site-navigation .menu-navigation-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    color: #fff; }
    @media (min-width: 768px) {
      #site-navigation .menu-navigation-container {
        border-top: 2px solid #f0f0f0; } }
  .js--sticky-nav-enabled #site-navigation {
    position: fixed;
    top: -1px;
    left: 0;
    z-index: 100000;
    width: 100%;
    background-color: #fff;
    height: 115px;
    border-bottom: 2px solid #f0f0f0; }
    .js--sticky-nav-enabled #site-navigation .menu-navigation {
      padding: 0 15px; }
      .js--sticky-nav-enabled #site-navigation .menu-navigation li {
        line-height: 115px;
        padding: 0 10px; }
  .js--sticky-nav-enabled.admin-bar #site-navigation {
    top: 29px; }

.waypoint-logo {
  background: transparent url("../images/logo-mobile.png") right center no-repeat;
  -webkit-background-size: 180px 33px;
          background-size: 180px 33px;
  display: block;
  width: 180px;
  height: 33px;
  display: none;
  float: left;
  margin: 30px 50px 0 0;
  position: relative;
  top: 5px; }
  .js--sticky-nav-enabled .waypoint-logo {
    display: inline-block; }

.menu-toggle {
  display: inline-block;
  width: 100%;
  background-color: #fff;
  width: 80%; }
  @media (min-width: 768px) {
    .menu-toggle {
      display: none; } }

.menu-navigation {
  margin: 0 auto;
  text-align: center;
  display: none;
  /* end .menu li */
  /* highlight current page */
  /* end current highlighters */ }
  @media (min-width: 768px) {
    .menu-navigation {
      float: left;
      text-align: left;
      display: block; } }
  .menu-navigation li {
    text-align: center;
    display: block;
    font-size: 15px;
    font-size: 1.5rem;
    padding: 0 8px;
    margin: 10px 0;
    text-transform: uppercase;
    /*
    so you really have to rethink your dropdowns for mobile.
    you don't want to have it expand too much because the
    screen is so small. How you manage your menu should
    depend on the project. Here's some great info on it:
    http://www.alistapart.com/articles/organizing-mobile/
    */ }
    @media (min-width: 768px) {
      .menu-navigation li {
        line-height: 100px;
        display: inline-block;
        margin: 0;
        font-size: 12px;
        font-size: 1.2rem;
        padding: 0 5px; } }
    @media (min-width: 992px) {
      .menu-navigation li {
        font-size: 15px;
        font-size: 1.5rem;
        padding: 0 8px; } }
    .menu-navigation li a {
      display: block;
      text-decoration: none;
      padding: 0;
      color: #000; }
      .menu-navigation li a:hover, .menu-navigation li a:focus {
        color: #1e90c7; }
    .menu-navigation li:first-child {
      padding-left: 0; }
    .menu-navigation li:last-child {
      padding-left: 0; }
    .menu-navigation li ul.sub-menu li a,
    .menu-navigation li ul.children li a {
      padding-left: 30px; }
  .menu-navigation li.current-menu-item a,
  .menu-navigation li.current_page_item a,
  .menu-navigation li.current_page_ancestor a {
    color: #03A8F5; }

/* end .nav */
/*Responsive nav*/
@media (min-width: 768px) {
  #mobile-navigation {
    display: none; } }

.menu-toggle {
  border: 0;
  padding: 5px;
  background-color: transparent;
  margin: 40px 0 0 0;
  text-align: right;
  float: right;
  position: relative;
  width: 32px;
  height: 32px; }
  @media (min-width: 768px) {
    .menu-toggle {
      display: none; } }
  .menu-toggle .hicon-menu:before {
    content: "\E80A";
    color: #03A8F5;
    font-size: 40px;
    font-size: 4rem; }
  .menu-toggle:hover {
    background-color: transparent; }

.open .menu-navigation {
  margin-top: 10px;
  display: block;
  clear: both;
  width: 100%;
  border-left: 0; }

/*Selected nav items*/
.single-tutorial li.menu-item-tutorials a {
  color: #03A8F5; }

.single-workshop li.menu-item-workshops a {
  color: #03A8F5; }

.widget {
  margin-bottom: 40px; }
  .widget .widgettitle {
    font-weight: normal;
    color: #9E9E9E;
    margin: 0 0 10px;
    font-size: 16px;
    font-size: 1.6rem; }
  .widget h3, .widget h4 {
    font-size: 16px;
    font-size: 1.6rem; }
  .widget ul {
    margin-left: 2em; }
  .widget li {
    font-weight: bold; }
    .widget li a {
      font-weight: normal; }

/******************************************************************
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 #eaedf2; }
  .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: #03A8F5; }
    .pagination a:hover, .pagination a:focus, .pagination span:hover, .pagination span:focus {
      background-color: #03A8F5;
      color: #fff; }
  .pagination .current {
    cursor: default;
    color: #000000; }
    .pagination .current:hover, .pagination .current:focus {
      background-color: #fff;
      color: #000000; }

/* 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 */
/*********************
SOCIAL
*********************/
@font-face {
  font-family: 'fontello';
  src: url("../fonts/fontello/fontello.eot");
  src: url("../fonts/fontello/fontello.eot?#iefix") format("embedded-opentype"), url("../fonts/fontello/fontello.woff") format("woff"), url("../fonts/fontello/fontello.ttf") format("truetype"), url("../fonts/fontello/fontello.svg#oneassets") format("svg");
  font-weight: normal;
  font-style: normal; }
.glyphicon, .hicon {
  position: relative;
  top: 1px;
  display: inline-block;
  font-family: 'fontello';
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.glyphicon-chevron-left:before {
  content: "\e807"; }

.glyphicon-chevron-right:before {
  content: "\e806"; }

.social_shares li,
.social-channels li {
  margin-left: 20px; }
  .social_shares li a i:before,
  .social-channels li a i:before {
    border-radius: 50%;
    -webkit-background-clip: padding-box;
            background-clip: padding-box;
    /* stops bg color from leaking outside the border: */
    width: 30px;
    height: 30px;
    line-height: 30px;
    display: block;
    text-align: center; }

.social_shares {
  overflow: hidden;
  margin: 0; }
  .social_shares li.share-promt {
    line-height: 30px;
    font-weight: bold;
    margin-right: 10px; }
  .social_shares li {
    display: inline;
    float: left;
    margin: 0 10px 0 0; }
    .social_shares li a {
      display: block;
      text-decoration: none;
      color: #fff;
      padding: 0;
      text-align: center;
      border-right: 1px solid #fff; }

.social-channels li {
  padding: 0;
  display: inline-block; }
  .social-channels li a {
    font-size: 20px;
    font-size: 2rem; }

.hicon-facebook:before {
  content: "\E801";
  background-color: #355089; }

.hicon-facebook:hover:before {
  background-color: #4365ae; }

.hicon-twitter:before {
  content: "\E800";
  background-color: #2CAAE1; }

.hicon-twitter:hover:before {
  background-color: #59bce7; }

.hicon-instagram:before {
  content: "\E802";
  background-color: #342f2c; }

.hicon-instagram:hover:before {
  background-color: #504843; }

.hicon-pinterest:before {
  content: "\E809";
  background-color: #CB2027; }

.hicon-pinterest:hover:before {
  background-color: #e03e44; }

.hicon-google:before {
  content: "\E808";
  background-color: #b93425; }

.hicon-google:hover:before {
  background-color: #d74a3a; }

.hicon-linkedin:before {
  content: "\E804";
  background-color: #0470B4; }

.hicon-linkedin:hover:before {
  background-color: #058fe6; }

.hicon-youtube:before {
  content: "\E805";
  background-color: #C90003; }

.hicon-youtube:hover:before {
  background-color: #fc0004; }

/* Browser Resets
*********************************/
.flex-container a:active,
.flexslider a:active,
.flex-container a:focus,
.flexslider a:focus {
  outline: none; }

.slides,
.flex-control-nav,
.flex-direction-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

/* FlexSlider Necessary Styles
*********************************/
.flexslider {
  margin: 0;
  padding: 0; }

.flexslider .slides > li {
  display: none;
  -webkit-backface-visibility: hidden; }

/* Hide the slides before the JS is loaded. Avoids image jumping */
.flexslider .slides img {
  width: 100%;
  max-width: 100%;
  height: auto;
  display: block; }

.flex-pauseplay span {
  text-transform: capitalize; }

@media (max-width: 480px) {
  .flex-viewport,
  .flexslider .slides img {
    height: 240px !important; } }

/* Clearfix for the .slides element */
.slides:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0; }

html[xmlns] .slides {
  display: block; }

* html .slides {
  height: 1%; }

/* No JavaScript Fallback */
/* If you are not using another script, such as Modernizr, make sure you
 * include js that eliminates this class on page load */
.no-js .slides > li:first-child {
  display: block; }

/* Control Nav */
.flex-control-nav {
  width: 100%;
  position: absolute;
  bottom: 20px;
  text-align: center; }

.flex-control-nav li {
  margin: 0 5px;
  display: inline-block;
  zoom: 1;
  *display: inline; }

.flex-control-paging li a {
  width: 15px;
  height: 15px;
  display: block;
  background: transparent;
  border: 2px solid #ffffff;
  cursor: pointer;
  text-indent: -9999px;
  border-radius: 50%;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  /* stops bg color from leaking outside the border: */ }

.flex-control-paging li a:hover {
  background: #ffffff; }

.flex-control-paging li a.flex-active {
  background: #ffffff;
  background: rgba(255, 255, 255, 0.9);
  cursor: default; }

/*!
 * Lightbox for Bootstrap 3 by @ashleydw
 * https://github.com/ashleydw/lightbox
 *
 * License: https://github.com/ashleydw/lightbox/blob/master/LICENSE
 */
.close {
  float: right;
  font-size: 21px;
  font-weight: bold;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  filter: alpha(opacity=20);
  opacity: .2; }

.close:hover,
.close:focus {
  color: #000;
  text-decoration: none;
  cursor: pointer;
  filter: alpha(opacity=50);
  opacity: .5; }

button.close {
  -webkit-appearance: none;
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0; }

.modal-open {
  overflow: hidden; }

.modal {
  position: fixed;
  top: 10%;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0; }

.modal.fade .modal-dialog {
  -webkit-transform: translate3d(0, -25%, 0);
          transform: translate3d(0, -25%, 0); }

.modal.in .modal-dialog {
  -webkit-transform: translate3d(0, 0, 0);
          transform: translate3d(0, 0, 0);
  z-index: 1040; }

.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 10px; }

.modal-content {
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
          background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
          box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5); }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1039;
  background-color: #000; }

.modal-backdrop.fade {
  filter: alpha(opacity=0);
  opacity: 0; }

.modal-backdrop.in {
  filter: alpha(opacity=50);
  opacity: .5; }

.modal-header {
  min-height: 16.42857143px;
  padding: 15px;
  border-bottom: 1px solid #e5e5e5; }

.modal-header .close {
  margin-top: -2px; }

.modal-title {
  margin: 0;
  line-height: 1.42857143; }

.modal-body {
  position: relative;
  padding: 15px; }

@media (min-width: 768px) {
  .modal-dialog {
    width: 600px;
    margin: 50px auto; }

  .modal-content {
    -webkit-box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5);
            box-shadow: 0 5px 15px rgba(0, 0, 0, 0.5); }

  .modal-sm {
    width: 300px; } }
@media (min-width: 992px) {
  .modal-lg {
    width: 900px; } }
.ekko-lightbox-container {
  position: relative; }
.ekko-lightbox-nav-overlay {
  z-index: 100;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }
  .ekko-lightbox-nav-overlay a {
    opacity: 0;
    -webkit-transition: opacity 0.5s;
         -o-transition: opacity 0.5s;
            transition: opacity 0.5s;
    color: #fff;
    font-size: 30px;
    height: 100%;
    width: 49%;
    display: block;
    padding-top: 45%;
    text-shadow: 2px 2px 4px #000;
    -webkit-filter: dropshadow(color=#000, offx=2, offy=2);
            filter: dropshadow(color=#000, offx=2, offy=2);
    z-index: 100; }
    .ekko-lightbox-nav-overlay a:empty {
      width: 49%; }
.ekko-lightbox a:hover {
  opacity: 1;
  text-decoration: none; }
.ekko-lightbox .glyphicon-chevron-left {
  padding-left: 15px;
  float: left;
  left: 0;
  text-align: left; }
.ekko-lightbox .glyphicon-chevron-right {
  padding-right: 15px;
  float: right;
  right: 0;
  text-align: right; }
.ekko-lightbox .modal-footer {
  text-align: left; }

/*********************
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;
    -webkit-filter: 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; } }
