/* Table of Contents
	
	- Special SCSS
		- Compass
		- Bits
		- Mixins
	
*/
/*
@mixin debug-support-matrix($experimental: true, $ie: true) {
  @debug  $moz-$experimental-support-for-mozilla
          $webkit-$experimental-support-for-webkit
          $opera-$experimental-support-for-opera
          $microsoft-$experimental-support-for-microsoft
          $khtml-$experimental-support-for-khtml;
  @debug  $ie6-$legacy-support-for-ie6
          $ie7-$legacy-support-for-ie7
          $ie8-$legacy-support-for-ie8;
}
*/
/*
@mixin debug-support-matrix($experimental: true, $ie: true) {
  @debug  $moz-$experimental-support-for-mozilla
          $webkit-$experimental-support-for-webkit
          $opera-$experimental-support-for-opera
          $microsoft-$experimental-support-for-microsoft
          $khtml-$experimental-support-for-khtml;
  @debug  $ie6-$legacy-support-for-ie6
          $ie7-$legacy-support-for-ie7
          $ie8-$legacy-support-for-ie8;
}
*/
/* Font Stack
------------------------------------------------------------ */
/*
 * Responsive Breakpoints
 * Courtesy of Chris Coyier
 */
/*
 * Mixin for micro clearfix
 * @include microclearfix;
*/
/*
 * Mixin for placeholder styling
 * @include placeHolder(#333);
*/
/*
 * Mixin for basic CSS triangles
 * @include triangle(up, #000, 50px)
*/
/*
 * Mixin for selection markup
 * @include selection(hotpink, white);
*/
/*
 * Apply a CSS3 linear gradient
 *
 * $from - The original colour stop of the gradient, eg #FF0000 or #FF0000 20%
 * $to - The final colour stop of the gradient
 * $fallback - A fallback background-color; if none is provided, the $from colour is used
 * $start - The starting point of the gradient
 *
 * @include linearGradient(red, green);
 * @include linearGradient(red, green, transparent);
 * @include linearGradient(red 50%, green 100%);
 */
/*
 * Apply a CSS3 box-rotate
 * @include boxRotate(10deg);
 */
/*
 * @font-face mixin
 * Bulletproof font-face via Font Squirrel
 * @include fontface('family', '../fonts/', 'myfontname');
 */
/* 
 * Border Arrow Box
 * @include border-box-arrow(left, 2, 40px, 1px, #f4f4f4, #cccccc);
 */
/*
 * Animations
 * Use it
 
@include keyframes(move) {
  0%   { left: 0; }
  100% { left: 100px; }
}

.box {
  @include animation(move 0.5s ease infinite alternate);
} 
 */
/* CSS3 Image Filter Tools
---------------------------------------- */
/*
	- HTML5 Reset
		- Baseline Normalize
		- Box Sizing
		- Float Clearing
*/
/*
HTML5 Reset
---------------------------------------------------------------------------------------------------- */
/* Baseline Normalize
	normalize.css v2.1.2 | MIT License | git.io/normalize
--------------------------------------------- */
article, aside, details, figcaption, figure, footer, header, hgroup, main, nav, section, summary {
  display: block; }

audio, canvas, video {
  display: inline-block; }

audio:not([controls]) {
  display: none;
  height: 0; }

[hidden] {
  display: none; }

html {
  font-family: sans-serif;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%; }

body {
  margin: 0; }

a:focus {
  outline: thin dotted; }

a:active, a:hover {
  outline: 0; }

h1 {
  font-size: 2em;
  margin: .67em 0; }

abbr[title] {
  border-bottom: 1px dotted; }

b, strong {
  font-weight: bold; }

dfn {
  font-style: italic; }

hr {
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  height: 0; }

mark {
  background: #ff0;
  color: #000; }

code, kbd, pre, samp {
  font-family: monospace,serif;
  font-size: 1em; }

pre {
  white-space: pre-wrap; }

q {
  quotes: "\201C" "\201D" "\2018" "\2019"; }

small {
  font-size: 80%; }

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sup {
  top: -0.5em; }

sub {
  bottom: -0.25em; }

img {
  border: 0; }

svg:not(:root) {
  overflow: hidden; }

figure {
  margin: 0; }

fieldset {
  border: 1px solid silver;
  margin: 0 2px;
  padding: .35em .625em .75em; }

legend {
  border: 0;
  padding: 0; }

button, input, select, textarea {
  font-family: inherit;
  font-size: 100%;
  margin: 0; }

button, input {
  line-height: normal; }

button, select {
  text-transform: none; }

button, html input[type="button"], input[type="reset"], input[type="submit"] {
  -webkit-appearance: button;
  cursor: pointer; }

button[disabled], html input[disabled] {
  cursor: default; }

input[type="checkbox"], input[type="radio"] {
  box-sizing: border-box;
  padding: 0; }

input[type="search"] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box; }

input[type="search"]::-webkit-search-cancel-button, input[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

button::-moz-focus-inner, input::-moz-focus-inner {
  border: 0;
  padding: 0; }

textarea {
  overflow: auto;
  vertical-align: top; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

/* Box Sizing
--------------------------------------------- */
*,
input[type="search"] {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box; }

/* Float Clearing
--------------------------------------------- */
.archive-pagination:before,
.clearfix:before,
.entry:before,
.entry-pagination:before,
.footer-widgets:before,
.nav-primary:before,
.nav-secondary:before,
.site-container:before,
.site-footer:before,
.site-header:before,
.site-inner:before,
.wrap:before,
.swiper-wrap-posts .swiper-wrapper:before {
  content: " ";
  display: table; }

.archive-pagination:after,
.clearfix:after,
.entry:after,
.entry-pagination:after,
.footer-widgets:after,
.nav-primary:after,
.nav-secondary:after,
.site-container:after,
.site-footer:after,
.site-header:after,
.site-inner:after,
.wrap:after,
.swiper-wrap-posts .swiper-wrapper:after {
  clear: both;
  content: " ";
  display: table; }

/*
	- Defaults
		- Typographical Elements
		- Headings
		- Objects
		- Forms
		- Tables
*/
/*
Defaults
---------------------------------------------------------------------------------------------------- */
/* Typographical Elements
--------------------------------------------- */
html {
  font-size: 62.5%;
  /* 10px browser default */
  background: #F1FAFE url(../images/symphony.jpg); }

body {
  color: #666;
  font-family: "Museo Sans", "museo-sans", sans-serif;
  font-size: 16px;
  font-size: 1.6em;
  font-weight: 300;
  line-height: 1.625;
  overflow-x: hidden;
  opacity: 1;
  -moz-transition: opacity 0.5s linear;
  -o-transition: opacity 0.5s linear;
  -webkit-transition: opacity 0.5s linear;
  transition: opacity 0.5s linear; }
  body.body-locked {
    overflow: hidden; }

a,
button,
input:focus,
input[type="button"],
input[type="reset"],
input[type="submit"],
textarea:focus,
.button {
  -webkit-transition: all 0.1s ease-in-out;
  -moz-transition: all 0.1s ease-in-out;
  -ms-transition: all 0.1s ease-in-out;
  -o-transition: all 0.1s ease-in-out;
  transition: all 0.1s ease-in-out; }

::-moz-selection {
  background-color: #00A6C3;
  color: #fff; }

::selection {
  background-color: #00A6C3;
  color: #fff; }

a {
  color: #00A6C3;
  text-decoration: none; }

a img {
  margin-bottom: -10px;
  margin-bottom: -1rem; }

a:hover {
  color: #333; }

p {
  margin: 0 0 24px;
  margin: 0 0 2.4rem;
  padding: 0; }

strong {
  font-weight: 500; }

ol,
ul {
  margin: 0;
  padding: 0; }

blockquote,
blockquote::before {
  color: #999; }

blockquote {
  margin: 40px 40px 24px;
  margin: 4rem 4rem 2.4rem; }

blockquote::before {
  content: "\201C";
  display: block;
  font-size: 30px;
  font-size: 3rem;
  height: 0;
  left: -20px;
  position: relative;
  top: -10px; }

.entry-content code {
  background-color: #333;
  color: #ddd; }

cite {
  font-style: normal; }

/* Headings
--------------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #333;
  font-family: "Museo Slab", "museo-slab", serif;
  font-weight: 500;
  line-height: 1.2;
  margin: 0 0 16px;
  margin: 0 0 1.6rem; }

h1 {
  font-size: 36px;
  font-size: 3.6rem; }
  @media (max-width: 860px) {
    h1 {
      font-size: 26px;
      font-size: 2.6rem; } }

h2 {
  font-size: 30px;
  font-size: 3rem; }
  @media (max-width: 860px) {
    h2 {
      font-size: 26px;
      font-size: 2.6rem; } }

h3 {
  font-size: 24px;
  font-size: 2.4rem; }
  @media (max-width: 860px) {
    h3 {
      font-size: 20px;
      font-size: 2rem; } }

h4 {
  font-size: 20px;
  font-size: 2rem; }
  @media (max-width: 860px) {
    h4 {
      font-size: 18px;
      font-size: 1.8rem; } }

h5 {
  font-size: 18px;
  font-size: 1.8rem; }

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

/* Objects
--------------------------------------------- */
embed,
iframe,
img,
object,
video,
.wp-caption {
  max-width: 100%; }

img {
  height: auto;
  max-width: 100%; }

/* Forms
--------------------------------------------- */
input,
select,
textarea {
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-shadow: 1px 1px 3px #eee inset;
  color: #999;
  font-size: 16px;
  font-size: 1.6rem;
  padding: 16px;
  padding: 1.6rem;
  width: 100%; }

select {
  height: 50px; }

input:focus,
textarea:focus {
  border: 1px solid #999;
  outline: none; }

::-moz-placeholder {
  color: #999;
  opacity: 1; }

::-webkit-input-placeholder {
  color: #999; }

button,
input[type="button"],
input[type="reset"],
input[type="submit"],
.button,
.entry-content .button,
.tribe-events-button,
.gform_button,
div.gform_wrapper .gform_footer input[type="submit"] {
  background-color: #00B0C3;
  border: none;
  box-shadow: none;
  color: #fff !important;
  cursor: pointer;
  padding: 5px 20px !important;
  padding: .5rem 2rem !important;
  text-transform: lowercase;
  width: auto;
  border-radius: 5px;
  text-shadow: none;
  text-transform: uppercase;
  font-size: 16px !important;
  line-height: 1.625;
  font-weight: 300; }
  button:hover,
  input[type="button"]:hover,
  input[type="reset"]:hover,
  input[type="submit"]:hover,
  .button:hover,
  .entry-content .button:hover,
  .tribe-events-button:hover,
  .gform_button:hover,
  div.gform_wrapper .gform_footer input[type="submit"]:hover {
    background: #00A6C3;
    color: white; }
  button.blue,
  input[type="button"].blue,
  input[type="reset"].blue,
  input[type="submit"].blue,
  .button.blue,
  .entry-content .button.blue,
  .tribe-events-button.blue,
  .gform_button.blue,
  div.gform_wrapper .gform_footer input[type="submit"].blue {
    background: #00A6C3 !important; }
  button.grey,
  input[type="button"].grey,
  input[type="reset"].grey,
  input[type="submit"].grey,
  .button.grey,
  .entry-content .button.grey,
  .tribe-events-button.grey,
  .gform_button.grey,
  div.gform_wrapper .gform_footer input[type="submit"].grey {
    background: #444444; }
  button.inverted,
  input[type="button"].inverted,
  input[type="reset"].inverted,
  input[type="submit"].inverted,
  .button.inverted,
  .entry-content .button.inverted,
  .tribe-events-button.inverted,
  .gform_button.inverted,
  div.gform_wrapper .gform_footer input[type="submit"].inverted {
    color: #00A6C3 !important;
    background-color: transparent;
    border: 2px solid #00A6C3; }
    button.inverted:hover,
    input[type="button"].inverted:hover,
    input[type="reset"].inverted:hover,
    input[type="submit"].inverted:hover,
    .button.inverted:hover,
    .entry-content .button.inverted:hover,
    .tribe-events-button.inverted:hover,
    .gform_button.inverted:hover,
    div.gform_wrapper .gform_footer input[type="submit"].inverted:hover {
      background: #00A6C3;
      color: white !important; }
  button.continue-link,
  input[type="button"].continue-link,
  input[type="reset"].continue-link,
  input[type="submit"].continue-link,
  .button.continue-link,
  .entry-content .button.continue-link,
  .tribe-events-button.continue-link,
  .gform_button.continue-link,
  div.gform_wrapper .gform_footer input[type="submit"].continue-link {
    width: 100%;
    display: block;
    text-align: center;
    padding: 30px 10px !important;
    font-size: 25px;
    border-radius: 0; }

.tribe-events-button {
  background: #00A6C3 !important;
  padding: 5px 20px !important;
  padding: .5rem 2rem !important;
  font-size: 16px !important;
  line-height: 1.625 !important;
  font-weight: 300 !important; }

.button {
  display: inline-block; }

input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button {
  display: none; }

/* Tables
--------------------------------------------- */
table {
  border-collapse: collapse;
  border-spacing: 0;
  line-height: 2;
  margin-bottom: 40px;
  margin-bottom: 4rem;
  width: 100%; }

tbody {
  border-bottom: 1px solid #ddd; }

th,
td {
  text-align: left; }

th {
  font-weight: bold;
  text-transform: uppercase; }

td {
  border-top: 1px solid #ddd;
  padding: 6px 0;
  padding: 0.6rem 0; }

/* 	- Icon Fonts
		- Font Awesome
		- Entypo
	Select which one you'd like to use by uncommenting. 
*/
@font-face {
  font-family: 'FontAwesome';
  src: url("../fonts/fontawesome-webfont.eot?v=4.3.0");
  src: url("../fonts/fontawesome-webfont.eot?#iefix&v=4.3.0") format("embedded-opentype"), url("../fonts/fontawesome-webfont.woff2?v=4.3.0") format("woff2"), url("../fonts/fontawesome-webfont.woff?v=4.3.0") format("woff"), url("../fonts/fontawesome-webfont.ttf?v=4.3.0") format("truetype"), url("../fonts/fontawesome-webfont.svg?v=4.3.0#fontawesomeregular") format("svg");
  font-weight: normal;
  font-style: normal; }
.fa {
  display: inline-block;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0); }

/* makes the font 33% larger relative to the icon container */
.fa-lg {
  font-size: 1.33333333em;
  line-height: 0.75em;
  vertical-align: -15%; }

.fa-2x {
  font-size: 2em; }

.fa-3x {
  font-size: 3em; }

.fa-4x {
  font-size: 4em; }

.fa-5x {
  font-size: 5em; }

.fa-fw {
  width: 1.28571429em;
  text-align: center; }

.fa-ul {
  padding-left: 0;
  margin-left: 2.14285714em;
  list-style-type: none; }

.fa-ul > li {
  position: relative; }

.fa-li {
  position: absolute;
  left: -2.14285714em;
  width: 2.14285714em;
  top: 0.14285714em;
  text-align: center; }

.fa-li.fa-lg {
  left: -1.85714286em; }

.fa-border {
  padding: .2em .25em .15em;
  border: solid 0.08em #eeeeee;
  border-radius: .1em; }

.pull-right {
  float: right; }

.pull-left {
  float: left; }

.fa.pull-left {
  margin-right: .3em; }

.fa.pull-right {
  margin-left: .3em; }

.fa-spin {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear; }

.fa-pulse {
  -webkit-animation: fa-spin 1s infinite steps(8);
  animation: fa-spin 1s infinite steps(8); }

@-webkit-keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
@keyframes fa-spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg); }
  100% {
    -webkit-transform: rotate(359deg);
    transform: rotate(359deg); } }
.fa-rotate-90 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=1);
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg); }

.fa-rotate-180 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2);
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.fa-rotate-270 {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=3);
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg); }

.fa-flip-horizontal {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=0, mirror=1);
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1); }

.fa-flip-vertical {
  filter: progid:DXImageTransform.Microsoft.BasicImage(rotation=2, mirror=1);
  -webkit-transform: scale(1, -1);
  -ms-transform: scale(1, -1);
  transform: scale(1, -1); }

:root .fa-rotate-90,
:root .fa-rotate-180,
:root .fa-rotate-270,
:root .fa-flip-horizontal,
:root .fa-flip-vertical {
  filter: none; }

.fa-stack {
  position: relative;
  display: inline-block;
  width: 2em;
  height: 2em;
  line-height: 2em;
  vertical-align: middle; }

.fa-stack-1x,
.fa-stack-2x {
  position: absolute;
  left: 0;
  width: 100%;
  text-align: center; }

.fa-stack-1x {
  line-height: inherit; }

.fa-stack-2x {
  font-size: 2em; }

.fa-inverse {
  color: #ffffff; }

/* Font Awesome uses the Unicode Private Use Area (PUA) to ensure screen
   readers do not read off random characters that represent icons */
.fa-glass:before {
  content: "\f000"; }

.fa-music:before {
  content: "\f001"; }

.fa-search:before {
  content: "\f002"; }

.fa-envelope-o:before {
  content: "\f003"; }

.fa-heart:before {
  content: "\f004"; }

.fa-star:before {
  content: "\f005"; }

.fa-star-o:before {
  content: "\f006"; }

.fa-user:before {
  content: "\f007"; }

.fa-film:before {
  content: "\f008"; }

.fa-th-large:before {
  content: "\f009"; }

.fa-th:before {
  content: "\f00a"; }

.fa-th-list:before {
  content: "\f00b"; }

.fa-check:before {
  content: "\f00c"; }

.fa-remove:before,
.fa-close:before,
.fa-times:before {
  content: "\f00d"; }

.fa-search-plus:before {
  content: "\f00e"; }

.fa-search-minus:before {
  content: "\f010"; }

.fa-power-off:before {
  content: "\f011"; }

.fa-signal:before {
  content: "\f012"; }

.fa-gear:before,
.fa-cog:before {
  content: "\f013"; }

.fa-trash-o:before {
  content: "\f014"; }

.fa-home:before {
  content: "\f015"; }

.fa-file-o:before {
  content: "\f016"; }

.fa-clock-o:before {
  content: "\f017"; }

.fa-road:before {
  content: "\f018"; }

.fa-download:before {
  content: "\f019"; }

.fa-arrow-circle-o-down:before {
  content: "\f01a"; }

.fa-arrow-circle-o-up:before {
  content: "\f01b"; }

.fa-inbox:before {
  content: "\f01c"; }

.fa-play-circle-o:before {
  content: "\f01d"; }

.fa-rotate-right:before,
.fa-repeat:before {
  content: "\f01e"; }

.fa-refresh:before {
  content: "\f021"; }

.fa-list-alt:before {
  content: "\f022"; }

.fa-lock:before {
  content: "\f023"; }

.fa-flag:before {
  content: "\f024"; }

.fa-headphones:before {
  content: "\f025"; }

.fa-volume-off:before {
  content: "\f026"; }

.fa-volume-down:before {
  content: "\f027"; }

.fa-volume-up:before {
  content: "\f028"; }

.fa-qrcode:before {
  content: "\f029"; }

.fa-barcode:before {
  content: "\f02a"; }

.fa-tag:before {
  content: "\f02b"; }

.fa-tags:before {
  content: "\f02c"; }

.fa-book:before {
  content: "\f02d"; }

.fa-bookmark:before {
  content: "\f02e"; }

.fa-print:before {
  content: "\f02f"; }

.fa-camera:before {
  content: "\f030"; }

.fa-font:before {
  content: "\f031"; }

.fa-bold:before {
  content: "\f032"; }

.fa-italic:before {
  content: "\f033"; }

.fa-text-height:before {
  content: "\f034"; }

.fa-text-width:before {
  content: "\f035"; }

.fa-align-left:before {
  content: "\f036"; }

.fa-align-center:before {
  content: "\f037"; }

.fa-align-right:before {
  content: "\f038"; }

.fa-align-justify:before {
  content: "\f039"; }

.fa-list:before {
  content: "\f03a"; }

.fa-dedent:before,
.fa-outdent:before {
  content: "\f03b"; }

.fa-indent:before {
  content: "\f03c"; }

.fa-video-camera:before {
  content: "\f03d"; }

.fa-photo:before,
.fa-image:before,
.fa-picture-o:before {
  content: "\f03e"; }

.fa-pencil:before {
  content: "\f040"; }

.fa-map-marker:before {
  content: "\f041"; }

.fa-adjust:before {
  content: "\f042"; }

.fa-tint:before {
  content: "\f043"; }

.fa-edit:before,
.fa-pencil-square-o:before {
  content: "\f044"; }

.fa-share-square-o:before {
  content: "\f045"; }

.fa-check-square-o:before {
  content: "\f046"; }

.fa-arrows:before {
  content: "\f047"; }

.fa-step-backward:before {
  content: "\f048"; }

.fa-fast-backward:before {
  content: "\f049"; }

.fa-backward:before {
  content: "\f04a"; }

.fa-play:before {
  content: "\f04b"; }

.fa-pause:before {
  content: "\f04c"; }

.fa-stop:before {
  content: "\f04d"; }

.fa-forward:before {
  content: "\f04e"; }

.fa-fast-forward:before {
  content: "\f050"; }

.fa-step-forward:before {
  content: "\f051"; }

.fa-eject:before {
  content: "\f052"; }

.fa-chevron-left:before {
  content: "\f053"; }

.fa-chevron-right:before {
  content: "\f054"; }

.fa-plus-circle:before {
  content: "\f055"; }

.fa-minus-circle:before {
  content: "\f056"; }

.fa-times-circle:before {
  content: "\f057"; }

.fa-check-circle:before {
  content: "\f058"; }

.fa-question-circle:before {
  content: "\f059"; }

.fa-info-circle:before {
  content: "\f05a"; }

.fa-crosshairs:before {
  content: "\f05b"; }

.fa-times-circle-o:before {
  content: "\f05c"; }

.fa-check-circle-o:before {
  content: "\f05d"; }

.fa-ban:before {
  content: "\f05e"; }

.fa-arrow-left:before {
  content: "\f060"; }

.fa-arrow-right:before {
  content: "\f061"; }

.fa-arrow-up:before {
  content: "\f062"; }

.fa-arrow-down:before {
  content: "\f063"; }

.fa-mail-forward:before,
.fa-share:before {
  content: "\f064"; }

.fa-expand:before {
  content: "\f065"; }

.fa-compress:before {
  content: "\f066"; }

.fa-plus:before {
  content: "\f067"; }

.fa-minus:before {
  content: "\f068"; }

.fa-asterisk:before {
  content: "\f069"; }

.fa-exclamation-circle:before {
  content: "\f06a"; }

.fa-gift:before {
  content: "\f06b"; }

.fa-leaf:before {
  content: "\f06c"; }

.fa-fire:before {
  content: "\f06d"; }

.fa-eye:before {
  content: "\f06e"; }

.fa-eye-slash:before {
  content: "\f070"; }

.fa-warning:before,
.fa-exclamation-triangle:before {
  content: "\f071"; }

.fa-plane:before {
  content: "\f072"; }

.fa-calendar:before {
  content: "\f073"; }

.fa-random:before {
  content: "\f074"; }

.fa-comment:before {
  content: "\f075"; }

.fa-magnet:before {
  content: "\f076"; }

.fa-chevron-up:before {
  content: "\f077"; }

.fa-chevron-down:before {
  content: "\f078"; }

.fa-retweet:before {
  content: "\f079"; }

.fa-shopping-cart:before {
  content: "\f07a"; }

.fa-folder:before {
  content: "\f07b"; }

.fa-folder-open:before {
  content: "\f07c"; }

.fa-arrows-v:before {
  content: "\f07d"; }

.fa-arrows-h:before {
  content: "\f07e"; }

.fa-bar-chart-o:before,
.fa-bar-chart:before {
  content: "\f080"; }

.fa-twitter-square:before {
  content: "\f081"; }

.fa-facebook-square:before {
  content: "\f082"; }

.fa-camera-retro:before {
  content: "\f083"; }

.fa-key:before {
  content: "\f084"; }

.fa-gears:before,
.fa-cogs:before {
  content: "\f085"; }

.fa-comments:before {
  content: "\f086"; }

.fa-thumbs-o-up:before {
  content: "\f087"; }

.fa-thumbs-o-down:before {
  content: "\f088"; }

.fa-star-half:before {
  content: "\f089"; }

.fa-heart-o:before {
  content: "\f08a"; }

.fa-sign-out:before {
  content: "\f08b"; }

.fa-linkedin-square:before {
  content: "\f08c"; }

.fa-thumb-tack:before {
  content: "\f08d"; }

.fa-external-link:before {
  content: "\f08e"; }

.fa-sign-in:before {
  content: "\f090"; }

.fa-trophy:before {
  content: "\f091"; }

.fa-github-square:before {
  content: "\f092"; }

.fa-upload:before {
  content: "\f093"; }

.fa-lemon-o:before {
  content: "\f094"; }

.fa-phone:before {
  content: "\f095"; }

.fa-square-o:before {
  content: "\f096"; }

.fa-bookmark-o:before {
  content: "\f097"; }

.fa-phone-square:before {
  content: "\f098"; }

.fa-twitter:before {
  content: "\f099"; }

.fa-facebook-f:before,
.fa-facebook:before {
  content: "\f09a"; }

.fa-github:before {
  content: "\f09b"; }

.fa-unlock:before {
  content: "\f09c"; }

.fa-credit-card:before {
  content: "\f09d"; }

.fa-rss:before {
  content: "\f09e"; }

.fa-hdd-o:before {
  content: "\f0a0"; }

.fa-bullhorn:before {
  content: "\f0a1"; }

.fa-bell:before {
  content: "\f0f3"; }

.fa-certificate:before {
  content: "\f0a3"; }

.fa-hand-o-right:before {
  content: "\f0a4"; }

.fa-hand-o-left:before {
  content: "\f0a5"; }

.fa-hand-o-up:before {
  content: "\f0a6"; }

.fa-hand-o-down:before {
  content: "\f0a7"; }

.fa-arrow-circle-left:before {
  content: "\f0a8"; }

.fa-arrow-circle-right:before {
  content: "\f0a9"; }

.fa-arrow-circle-up:before {
  content: "\f0aa"; }

.fa-arrow-circle-down:before {
  content: "\f0ab"; }

.fa-globe:before {
  content: "\f0ac"; }

.fa-wrench:before {
  content: "\f0ad"; }

.fa-tasks:before {
  content: "\f0ae"; }

.fa-filter:before {
  content: "\f0b0"; }

.fa-briefcase:before {
  content: "\f0b1"; }

.fa-arrows-alt:before {
  content: "\f0b2"; }

.fa-group:before,
.fa-users:before {
  content: "\f0c0"; }

.fa-chain:before,
.fa-link:before {
  content: "\f0c1"; }

.fa-cloud:before {
  content: "\f0c2"; }

.fa-flask:before {
  content: "\f0c3"; }

.fa-cut:before,
.fa-scissors:before {
  content: "\f0c4"; }

.fa-copy:before,
.fa-files-o:before {
  content: "\f0c5"; }

.fa-paperclip:before {
  content: "\f0c6"; }

.fa-save:before,
.fa-floppy-o:before {
  content: "\f0c7"; }

.fa-square:before {
  content: "\f0c8"; }

.fa-navicon:before,
.fa-reorder:before,
.fa-bars:before {
  content: "\f0c9"; }

.fa-list-ul:before {
  content: "\f0ca"; }

.fa-list-ol:before {
  content: "\f0cb"; }

.fa-strikethrough:before {
  content: "\f0cc"; }

.fa-underline:before {
  content: "\f0cd"; }

.fa-table:before {
  content: "\f0ce"; }

.fa-magic:before {
  content: "\f0d0"; }

.fa-truck:before {
  content: "\f0d1"; }

.fa-pinterest:before {
  content: "\f0d2"; }

.fa-pinterest-square:before {
  content: "\f0d3"; }

.fa-google-plus-square:before {
  content: "\f0d4"; }

.fa-google-plus:before {
  content: "\f0d5"; }

.fa-money:before {
  content: "\f0d6"; }

.fa-caret-down:before {
  content: "\f0d7"; }

.fa-caret-up:before {
  content: "\f0d8"; }

.fa-caret-left:before {
  content: "\f0d9"; }

.fa-caret-right:before {
  content: "\f0da"; }

.fa-columns:before {
  content: "\f0db"; }

.fa-unsorted:before,
.fa-sort:before {
  content: "\f0dc"; }

.fa-sort-down:before,
.fa-sort-desc:before {
  content: "\f0dd"; }

.fa-sort-up:before,
.fa-sort-asc:before {
  content: "\f0de"; }

.fa-envelope:before {
  content: "\f0e0"; }

.fa-linkedin:before {
  content: "\f0e1"; }

.fa-rotate-left:before,
.fa-undo:before {
  content: "\f0e2"; }

.fa-legal:before,
.fa-gavel:before {
  content: "\f0e3"; }

.fa-dashboard:before,
.fa-tachometer:before {
  content: "\f0e4"; }

.fa-comment-o:before {
  content: "\f0e5"; }

.fa-comments-o:before {
  content: "\f0e6"; }

.fa-flash:before,
.fa-bolt:before {
  content: "\f0e7"; }

.fa-sitemap:before {
  content: "\f0e8"; }

.fa-umbrella:before {
  content: "\f0e9"; }

.fa-paste:before,
.fa-clipboard:before {
  content: "\f0ea"; }

.fa-lightbulb-o:before {
  content: "\f0eb"; }

.fa-exchange:before {
  content: "\f0ec"; }

.fa-cloud-download:before {
  content: "\f0ed"; }

.fa-cloud-upload:before {
  content: "\f0ee"; }

.fa-user-md:before {
  content: "\f0f0"; }

.fa-stethoscope:before {
  content: "\f0f1"; }

.fa-suitcase:before {
  content: "\f0f2"; }

.fa-bell-o:before {
  content: "\f0a2"; }

.fa-coffee:before {
  content: "\f0f4"; }

.fa-cutlery:before {
  content: "\f0f5"; }

.fa-file-text-o:before {
  content: "\f0f6"; }

.fa-building-o:before {
  content: "\f0f7"; }

.fa-hospital-o:before {
  content: "\f0f8"; }

.fa-ambulance:before {
  content: "\f0f9"; }

.fa-medkit:before {
  content: "\f0fa"; }

.fa-fighter-jet:before {
  content: "\f0fb"; }

.fa-beer:before {
  content: "\f0fc"; }

.fa-h-square:before {
  content: "\f0fd"; }

.fa-plus-square:before {
  content: "\f0fe"; }

.fa-angle-double-left:before {
  content: "\f100"; }

.fa-angle-double-right:before {
  content: "\f101"; }

.fa-angle-double-up:before {
  content: "\f102"; }

.fa-angle-double-down:before {
  content: "\f103"; }

.fa-angle-left:before {
  content: "\f104"; }

.fa-angle-right:before {
  content: "\f105"; }

.fa-angle-up:before {
  content: "\f106"; }

.fa-angle-down:before {
  content: "\f107"; }

.fa-desktop:before {
  content: "\f108"; }

.fa-laptop:before {
  content: "\f109"; }

.fa-tablet:before {
  content: "\f10a"; }

.fa-mobile-phone:before,
.fa-mobile:before {
  content: "\f10b"; }

.fa-circle-o:before {
  content: "\f10c"; }

.fa-quote-left:before {
  content: "\f10d"; }

.fa-quote-right:before {
  content: "\f10e"; }

.fa-spinner:before {
  content: "\f110"; }

.fa-circle:before {
  content: "\f111"; }

.fa-mail-reply:before,
.fa-reply:before {
  content: "\f112"; }

.fa-github-alt:before {
  content: "\f113"; }

.fa-folder-o:before {
  content: "\f114"; }

.fa-folder-open-o:before {
  content: "\f115"; }

.fa-smile-o:before {
  content: "\f118"; }

.fa-frown-o:before {
  content: "\f119"; }

.fa-meh-o:before {
  content: "\f11a"; }

.fa-gamepad:before {
  content: "\f11b"; }

.fa-keyboard-o:before {
  content: "\f11c"; }

.fa-flag-o:before {
  content: "\f11d"; }

.fa-flag-checkered:before {
  content: "\f11e"; }

.fa-terminal:before {
  content: "\f120"; }

.fa-code:before {
  content: "\f121"; }

.fa-mail-reply-all:before,
.fa-reply-all:before {
  content: "\f122"; }

.fa-star-half-empty:before,
.fa-star-half-full:before,
.fa-star-half-o:before {
  content: "\f123"; }

.fa-location-arrow:before {
  content: "\f124"; }

.fa-crop:before {
  content: "\f125"; }

.fa-code-fork:before {
  content: "\f126"; }

.fa-unlink:before,
.fa-chain-broken:before {
  content: "\f127"; }

.fa-question:before {
  content: "\f128"; }

.fa-info:before {
  content: "\f129"; }

.fa-exclamation:before {
  content: "\f12a"; }

.fa-superscript:before {
  content: "\f12b"; }

.fa-subscript:before {
  content: "\f12c"; }

.fa-eraser:before {
  content: "\f12d"; }

.fa-puzzle-piece:before {
  content: "\f12e"; }

.fa-microphone:before {
  content: "\f130"; }

.fa-microphone-slash:before {
  content: "\f131"; }

.fa-shield:before {
  content: "\f132"; }

.fa-calendar-o:before {
  content: "\f133"; }

.fa-fire-extinguisher:before {
  content: "\f134"; }

.fa-rocket:before {
  content: "\f135"; }

.fa-maxcdn:before {
  content: "\f136"; }

.fa-chevron-circle-left:before {
  content: "\f137"; }

.fa-chevron-circle-right:before {
  content: "\f138"; }

.fa-chevron-circle-up:before {
  content: "\f139"; }

.fa-chevron-circle-down:before {
  content: "\f13a"; }

.fa-html5:before {
  content: "\f13b"; }

.fa-css3:before {
  content: "\f13c"; }

.fa-anchor:before {
  content: "\f13d"; }

.fa-unlock-alt:before {
  content: "\f13e"; }

.fa-bullseye:before {
  content: "\f140"; }

.fa-ellipsis-h:before {
  content: "\f141"; }

.fa-ellipsis-v:before {
  content: "\f142"; }

.fa-rss-square:before {
  content: "\f143"; }

.fa-play-circle:before {
  content: "\f144"; }

.fa-ticket:before {
  content: "\f145"; }

.fa-minus-square:before {
  content: "\f146"; }

.fa-minus-square-o:before {
  content: "\f147"; }

.fa-level-up:before {
  content: "\f148"; }

.fa-level-down:before {
  content: "\f149"; }

.fa-check-square:before {
  content: "\f14a"; }

.fa-pencil-square:before {
  content: "\f14b"; }

.fa-external-link-square:before {
  content: "\f14c"; }

.fa-share-square:before {
  content: "\f14d"; }

.fa-compass:before {
  content: "\f14e"; }

.fa-toggle-down:before,
.fa-caret-square-o-down:before {
  content: "\f150"; }

.fa-toggle-up:before,
.fa-caret-square-o-up:before {
  content: "\f151"; }

.fa-toggle-right:before,
.fa-caret-square-o-right:before {
  content: "\f152"; }

.fa-euro:before,
.fa-eur:before {
  content: "\f153"; }

.fa-gbp:before {
  content: "\f154"; }

.fa-dollar:before,
.fa-usd:before {
  content: "\f155"; }

.fa-rupee:before,
.fa-inr:before {
  content: "\f156"; }

.fa-cny:before,
.fa-rmb:before,
.fa-yen:before,
.fa-jpy:before {
  content: "\f157"; }

.fa-ruble:before,
.fa-rouble:before,
.fa-rub:before {
  content: "\f158"; }

.fa-won:before,
.fa-krw:before {
  content: "\f159"; }

.fa-bitcoin:before,
.fa-btc:before {
  content: "\f15a"; }

.fa-file:before {
  content: "\f15b"; }

.fa-file-text:before {
  content: "\f15c"; }

.fa-sort-alpha-asc:before {
  content: "\f15d"; }

.fa-sort-alpha-desc:before {
  content: "\f15e"; }

.fa-sort-amount-asc:before {
  content: "\f160"; }

.fa-sort-amount-desc:before {
  content: "\f161"; }

.fa-sort-numeric-asc:before {
  content: "\f162"; }

.fa-sort-numeric-desc:before {
  content: "\f163"; }

.fa-thumbs-up:before {
  content: "\f164"; }

.fa-thumbs-down:before {
  content: "\f165"; }

.fa-youtube-square:before {
  content: "\f166"; }

.fa-youtube:before {
  content: "\f167"; }

.fa-xing:before {
  content: "\f168"; }

.fa-xing-square:before {
  content: "\f169"; }

.fa-youtube-play:before {
  content: "\f16a"; }

.fa-dropbox:before {
  content: "\f16b"; }

.fa-stack-overflow:before {
  content: "\f16c"; }

.fa-instagram:before {
  content: "\f16d"; }

.fa-flickr:before {
  content: "\f16e"; }

.fa-adn:before {
  content: "\f170"; }

.fa-bitbucket:before {
  content: "\f171"; }

.fa-bitbucket-square:before {
  content: "\f172"; }

.fa-tumblr:before {
  content: "\f173"; }

.fa-tumblr-square:before {
  content: "\f174"; }

.fa-long-arrow-down:before {
  content: "\f175"; }

.fa-long-arrow-up:before {
  content: "\f176"; }

.fa-long-arrow-left:before {
  content: "\f177"; }

.fa-long-arrow-right:before {
  content: "\f178"; }

.fa-apple:before {
  content: "\f179"; }

.fa-windows:before {
  content: "\f17a"; }

.fa-android:before {
  content: "\f17b"; }

.fa-linux:before {
  content: "\f17c"; }

.fa-dribbble:before {
  content: "\f17d"; }

.fa-skype:before {
  content: "\f17e"; }

.fa-foursquare:before {
  content: "\f180"; }

.fa-trello:before {
  content: "\f181"; }

.fa-female:before {
  content: "\f182"; }

.fa-male:before {
  content: "\f183"; }

.fa-gittip:before,
.fa-gratipay:before {
  content: "\f184"; }

.fa-sun-o:before {
  content: "\f185"; }

.fa-moon-o:before {
  content: "\f186"; }

.fa-archive:before {
  content: "\f187"; }

.fa-bug:before {
  content: "\f188"; }

.fa-vk:before {
  content: "\f189"; }

.fa-weibo:before {
  content: "\f18a"; }

.fa-renren:before {
  content: "\f18b"; }

.fa-pagelines:before {
  content: "\f18c"; }

.fa-stack-exchange:before {
  content: "\f18d"; }

.fa-arrow-circle-o-right:before {
  content: "\f18e"; }

.fa-arrow-circle-o-left:before {
  content: "\f190"; }

.fa-toggle-left:before,
.fa-caret-square-o-left:before {
  content: "\f191"; }

.fa-dot-circle-o:before {
  content: "\f192"; }

.fa-wheelchair:before {
  content: "\f193"; }

.fa-vimeo-square:before {
  content: "\f194"; }

.fa-turkish-lira:before,
.fa-try:before {
  content: "\f195"; }

.fa-plus-square-o:before {
  content: "\f196"; }

.fa-space-shuttle:before {
  content: "\f197"; }

.fa-slack:before {
  content: "\f198"; }

.fa-envelope-square:before {
  content: "\f199"; }

.fa-wordpress:before {
  content: "\f19a"; }

.fa-openid:before {
  content: "\f19b"; }

.fa-institution:before,
.fa-bank:before,
.fa-university:before {
  content: "\f19c"; }

.fa-mortar-board:before,
.fa-graduation-cap:before {
  content: "\f19d"; }

.fa-yahoo:before {
  content: "\f19e"; }

.fa-google:before {
  content: "\f1a0"; }

.fa-reddit:before {
  content: "\f1a1"; }

.fa-reddit-square:before {
  content: "\f1a2"; }

.fa-stumbleupon-circle:before {
  content: "\f1a3"; }

.fa-stumbleupon:before {
  content: "\f1a4"; }

.fa-delicious:before {
  content: "\f1a5"; }

.fa-digg:before {
  content: "\f1a6"; }

.fa-pied-piper:before {
  content: "\f1a7"; }

.fa-pied-piper-alt:before {
  content: "\f1a8"; }

.fa-drupal:before {
  content: "\f1a9"; }

.fa-joomla:before {
  content: "\f1aa"; }

.fa-language:before {
  content: "\f1ab"; }

.fa-fax:before {
  content: "\f1ac"; }

.fa-building:before {
  content: "\f1ad"; }

.fa-child:before {
  content: "\f1ae"; }

.fa-paw:before {
  content: "\f1b0"; }

.fa-spoon:before {
  content: "\f1b1"; }

.fa-cube:before {
  content: "\f1b2"; }

.fa-cubes:before {
  content: "\f1b3"; }

.fa-behance:before {
  content: "\f1b4"; }

.fa-behance-square:before {
  content: "\f1b5"; }

.fa-steam:before {
  content: "\f1b6"; }

.fa-steam-square:before {
  content: "\f1b7"; }

.fa-recycle:before {
  content: "\f1b8"; }

.fa-automobile:before,
.fa-car:before {
  content: "\f1b9"; }

.fa-cab:before,
.fa-taxi:before {
  content: "\f1ba"; }

.fa-tree:before {
  content: "\f1bb"; }

.fa-spotify:before {
  content: "\f1bc"; }

.fa-deviantart:before {
  content: "\f1bd"; }

.fa-soundcloud:before {
  content: "\f1be"; }

.fa-database:before {
  content: "\f1c0"; }

.fa-file-pdf-o:before {
  content: "\f1c1"; }

.fa-file-word-o:before {
  content: "\f1c2"; }

.fa-file-excel-o:before {
  content: "\f1c3"; }

.fa-file-powerpoint-o:before {
  content: "\f1c4"; }

.fa-file-photo-o:before,
.fa-file-picture-o:before,
.fa-file-image-o:before {
  content: "\f1c5"; }

.fa-file-zip-o:before,
.fa-file-archive-o:before {
  content: "\f1c6"; }

.fa-file-sound-o:before,
.fa-file-audio-o:before {
  content: "\f1c7"; }

.fa-file-movie-o:before,
.fa-file-video-o:before {
  content: "\f1c8"; }

.fa-file-code-o:before {
  content: "\f1c9"; }

.fa-vine:before {
  content: "\f1ca"; }

.fa-codepen:before {
  content: "\f1cb"; }

.fa-jsfiddle:before {
  content: "\f1cc"; }

.fa-life-bouy:before,
.fa-life-buoy:before,
.fa-life-saver:before,
.fa-support:before,
.fa-life-ring:before {
  content: "\f1cd"; }

.fa-circle-o-notch:before {
  content: "\f1ce"; }

.fa-ra:before,
.fa-rebel:before {
  content: "\f1d0"; }

.fa-ge:before,
.fa-empire:before {
  content: "\f1d1"; }

.fa-git-square:before {
  content: "\f1d2"; }

.fa-git:before {
  content: "\f1d3"; }

.fa-hacker-news:before {
  content: "\f1d4"; }

.fa-tencent-weibo:before {
  content: "\f1d5"; }

.fa-qq:before {
  content: "\f1d6"; }

.fa-wechat:before,
.fa-weixin:before {
  content: "\f1d7"; }

.fa-send:before,
.fa-paper-plane:before {
  content: "\f1d8"; }

.fa-send-o:before,
.fa-paper-plane-o:before {
  content: "\f1d9"; }

.fa-history:before {
  content: "\f1da"; }

.fa-genderless:before,
.fa-circle-thin:before {
  content: "\f1db"; }

.fa-header:before {
  content: "\f1dc"; }

.fa-paragraph:before {
  content: "\f1dd"; }

.fa-sliders:before {
  content: "\f1de"; }

.fa-share-alt:before {
  content: "\f1e0"; }

.fa-share-alt-square:before {
  content: "\f1e1"; }

.fa-bomb:before {
  content: "\f1e2"; }

.fa-soccer-ball-o:before,
.fa-futbol-o:before {
  content: "\f1e3"; }

.fa-tty:before {
  content: "\f1e4"; }

.fa-binoculars:before {
  content: "\f1e5"; }

.fa-plug:before {
  content: "\f1e6"; }

.fa-slideshare:before {
  content: "\f1e7"; }

.fa-twitch:before {
  content: "\f1e8"; }

.fa-yelp:before {
  content: "\f1e9"; }

.fa-newspaper-o:before {
  content: "\f1ea"; }

.fa-wifi:before {
  content: "\f1eb"; }

.fa-calculator:before {
  content: "\f1ec"; }

.fa-paypal:before {
  content: "\f1ed"; }

.fa-google-wallet:before {
  content: "\f1ee"; }

.fa-cc-visa:before {
  content: "\f1f0"; }

.fa-cc-mastercard:before {
  content: "\f1f1"; }

.fa-cc-discover:before {
  content: "\f1f2"; }

.fa-cc-amex:before {
  content: "\f1f3"; }

.fa-cc-paypal:before {
  content: "\f1f4"; }

.fa-cc-stripe:before {
  content: "\f1f5"; }

.fa-bell-slash:before {
  content: "\f1f6"; }

.fa-bell-slash-o:before {
  content: "\f1f7"; }

.fa-trash:before {
  content: "\f1f8"; }

.fa-copyright:before {
  content: "\f1f9"; }

.fa-at:before {
  content: "\f1fa"; }

.fa-eyedropper:before {
  content: "\f1fb"; }

.fa-paint-brush:before {
  content: "\f1fc"; }

.fa-birthday-cake:before {
  content: "\f1fd"; }

.fa-area-chart:before {
  content: "\f1fe"; }

.fa-pie-chart:before {
  content: "\f200"; }

.fa-line-chart:before {
  content: "\f201"; }

.fa-lastfm:before {
  content: "\f202"; }

.fa-lastfm-square:before {
  content: "\f203"; }

.fa-toggle-off:before {
  content: "\f204"; }

.fa-toggle-on:before {
  content: "\f205"; }

.fa-bicycle:before {
  content: "\f206"; }

.fa-bus:before {
  content: "\f207"; }

.fa-ioxhost:before {
  content: "\f208"; }

.fa-angellist:before {
  content: "\f209"; }

.fa-cc:before {
  content: "\f20a"; }

.fa-shekel:before,
.fa-sheqel:before,
.fa-ils:before {
  content: "\f20b"; }

.fa-meanpath:before {
  content: "\f20c"; }

.fa-buysellads:before {
  content: "\f20d"; }

.fa-connectdevelop:before {
  content: "\f20e"; }

.fa-dashcube:before {
  content: "\f210"; }

.fa-forumbee:before {
  content: "\f211"; }

.fa-leanpub:before {
  content: "\f212"; }

.fa-sellsy:before {
  content: "\f213"; }

.fa-shirtsinbulk:before {
  content: "\f214"; }

.fa-simplybuilt:before {
  content: "\f215"; }

.fa-skyatlas:before {
  content: "\f216"; }

.fa-cart-plus:before {
  content: "\f217"; }

.fa-cart-arrow-down:before {
  content: "\f218"; }

.fa-diamond:before {
  content: "\f219"; }

.fa-ship:before {
  content: "\f21a"; }

.fa-user-secret:before {
  content: "\f21b"; }

.fa-motorcycle:before {
  content: "\f21c"; }

.fa-street-view:before {
  content: "\f21d"; }

.fa-heartbeat:before {
  content: "\f21e"; }

.fa-venus:before {
  content: "\f221"; }

.fa-mars:before {
  content: "\f222"; }

.fa-mercury:before {
  content: "\f223"; }

.fa-transgender:before {
  content: "\f224"; }

.fa-transgender-alt:before {
  content: "\f225"; }

.fa-venus-double:before {
  content: "\f226"; }

.fa-mars-double:before {
  content: "\f227"; }

.fa-venus-mars:before {
  content: "\f228"; }

.fa-mars-stroke:before {
  content: "\f229"; }

.fa-mars-stroke-v:before {
  content: "\f22a"; }

.fa-mars-stroke-h:before {
  content: "\f22b"; }

.fa-neuter:before {
  content: "\f22c"; }

.fa-facebook-official:before {
  content: "\f230"; }

.fa-pinterest-p:before {
  content: "\f231"; }

.fa-whatsapp:before {
  content: "\f232"; }

.fa-server:before {
  content: "\f233"; }

.fa-user-plus:before {
  content: "\f234"; }

.fa-user-times:before {
  content: "\f235"; }

.fa-hotel:before,
.fa-bed:before {
  content: "\f236"; }

.fa-viacoin:before {
  content: "\f237"; }

.fa-train:before {
  content: "\f238"; }

.fa-subway:before {
  content: "\f239"; }

.fa-medium:before {
  content: "\f23a"; }

/*
	- Structure and Layout
		- Site Containers
		- Column Widths and Positions
		- Column Classes
*/
/*
Structure and Layout
---------------------------------------------------------------------------------------------------- */
/* Site Containers
--------------------------------------------- */
.wrap, .swiper-wrap-posts .swiper-wrapper {
  margin: 0 auto;
  width: 90%;
  max-width: 1200px; }
  @media (max-width: 860px) {
    .wrap, .swiper-wrap-posts .swiper-wrapper {
      width: 95%; } }

.site-inner {
  clear: both;
  padding: 0;
  width: 90%;
  max-width: 1200px;
  margin: 117px auto 60px; }
  @media (max-width: 860px) {
    .site-inner {
      width: 100%;
      margin-top: 105px;
      margin-bottom: 0; } }
  .admin-bar .site-inner {
    margin-top: 109px; }
  .home .site-inner {
    margin-top: 30px; }
    @media (max-width: 860px) {
      .home .site-inner {
        margin-top: 0x; } }

/* Column Widths and Positions
--------------------------------------------- */
/* Wrapping div for .content and .sidebar-primary */
.content-sidebar-sidebar .content-sidebar-wrap,
.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
  width: 100%; }

.content-sidebar-sidebar .content-sidebar-wrap {
  float: left; }

.sidebar-content-sidebar .content-sidebar-wrap,
.sidebar-sidebar-content .content-sidebar-wrap {
  float: right; }

/* Content */
.content {
  float: right;
  width: 65%;
  padding: 0;
  overflow: hidden;
  background: white;
  position: relative; }
  @media (max-width: 860px) {
    .content {
      width: 100%;
      border: none;
      box-shadow: none;
      padding-bottom: 0; } }
  .home .content {
    border: none; }

.content-sidebar .content,
.content-sidebar-sidebar .content,
.sidebar-content-sidebar .content {
  float: left; }

.full-width-content .content {
  width: 100%; }

/* Primary Sidebar */
.sidebar-primary {
  float: right;
  width: 30%; }

.sidebar-content .sidebar-primary,
.sidebar-sidebar-content .sidebar-primary {
  float: left; }

/*
	- Common Classes
		- WordPress
		- Genesis
		- Titles
*/
/* Column Classes
	Link: http://twitter.github.io/bootstrap/assets/css/bootstrap-responsive.css
--------------------------------------------- */
.five-sixths,
.four-sixths,
.one-fourth,
.footer-widgets-1,
.footer-widgets-2,
.one-half,
.footer-widgets-3,
.one-sixth,
.one-third,
.three-fourths,
.three-sixths,
.two-fourths,
.two-sixths,
.two-thirds {
  float: left;
  margin-left: 2.564102564102564%; }

.one-half, .footer-widgets-3,
.three-sixths,
.two-fourths {
  width: 48.717948717948715%; }

.one-third,
.two-sixths {
  width: 31.623931623931625%; }

.four-sixths,
.two-thirds {
  width: 65.81196581196582%; }

.one-fourth, .footer-widgets-1,
.footer-widgets-2 {
  width: 23.076923076923077%; }

.three-fourths {
  width: 74.35897435897436%; }

.one-sixth {
  width: 14.52991452991453%; }

.five-sixths {
  width: 82.90598290598291%; }

.first, .footer-widgets-1 {
  clear: both;
  margin-left: 0; }

@media (max-width: 900px) {
  .five-sixths,
  .four-sixths,
  .one-fourth,
  .footer-widgets-1,
  .footer-widgets-2,
  .one-half,
  .footer-widgets-3,
  .one-sixth,
  .one-third,
  .three-fourths,
  .three-sixths,
  .two-fourths,
  .two-sixths,
  .two-thirds {
    width: 48.717948717948715%; }
    .five-sixths.first, .five-sixths.footer-widgets-1,
    .four-sixths.first,
    .four-sixths.footer-widgets-1,
    .one-fourth.first,
    .footer-widgets-1,
    .first.footer-widgets-2,
    .one-half.first,
    .first.footer-widgets-3,
    .footer-widgets-3.footer-widgets-1,
    .one-half.footer-widgets-1,
    .one-sixth.first,
    .one-sixth.footer-widgets-1,
    .one-third.first,
    .one-third.footer-widgets-1,
    .three-fourths.first,
    .three-fourths.footer-widgets-1,
    .three-sixths.first,
    .three-sixths.footer-widgets-1,
    .two-fourths.first,
    .two-fourths.footer-widgets-1,
    .two-sixths.first,
    .two-sixths.footer-widgets-1,
    .two-thirds.first,
    .two-thirds.footer-widgets-1 {
      clear: none;
      margin-left: 2.564102564102564%; }
    .five-sixths:nth-of-type(2n + 1),
    .four-sixths:nth-of-type(2n + 1),
    .one-fourth:nth-of-type(2n + 1),
    .footer-widgets-1:nth-of-type(2n + 1),
    .footer-widgets-2:nth-of-type(2n + 1),
    .one-half:nth-of-type(2n + 1),
    .footer-widgets-3:nth-of-type(2n + 1),
    .one-sixth:nth-of-type(2n + 1),
    .one-third:nth-of-type(2n + 1),
    .three-fourths:nth-of-type(2n + 1),
    .three-sixths:nth-of-type(2n + 1),
    .two-fourths:nth-of-type(2n + 1),
    .two-sixths:nth-of-type(2n + 1),
    .two-thirds:nth-of-type(2n + 1) {
      clear: both;
      margin-left: 0; } }
@media (max-width: 600px) {
  .five-sixths,
  .four-sixths,
  .one-fourth,
  .footer-widgets-1,
  .footer-widgets-2,
  .one-half,
  .footer-widgets-3,
  .one-sixth,
  .one-third,
  .three-fourths,
  .three-sixths,
  .two-fourths,
  .two-sixths,
  .two-thirds {
    width: 100%;
    clear: both;
    margin: 0;
    padding: 0; } }

/*
Common Classes
---------------------------------------------------------------------------------------------------- */
/* WordPress
--------------------------------------------- */
.avatar {
  float: left; }

.contributor-avatar {
  position: relative; }
  .contributor-avatar .service-icon {
    position: absolute;
    width: 40px;
    left: 0;
    bottom: 0;
    z-index: 1; }
    .contributor-avatar .service-icon img {
      border: none !important; }
    .contributor-avatar .service-icon.service-icon-1 {
      left: auto;
      right: 0;
      z-index: 0; }
    .contributor-avatar .service-icon.service-icon-2 {
      top: 0;
      bottom: auto;
      z-index: 2; }
    .contributor-avatar .service-icon.service-icon-3 {
      left: auto;
      bottom: auto;
      right: 0;
      top: 0;
      z-index: 0; }
    .contributor-avatar .service-icon .title {
      position: absolute;
      width: 200px;
      line-height: 40px;
      background: #00A6C3;
      height: 40px;
      color: white;
      margin-left: -20px;
      z-index: -1;
      padding-left: 25px;
      border-radius: 0px 40px 40px 0px;
      display: none; }
      .contributor-avatar .service-icon .title a {
        color: white; }
        .contributor-avatar .service-icon .title a:hover {
          color: rgba(255, 255, 255, 0.8); }
    .contributor-avatar .service-icon:hover .title {
      display: inline-block; }
  .contributor-avatar .wp-post-image {
    border: 5px solid #00A6C3; }

.alignleft .avatar {
  margin-right: 24px;
  margin-right: 2.4rem; }

.alignright .avatar {
  margin-left: 24px;
  margin-left: 2.4rem; }

.search-form input[type="submit"] {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 1px;
  margin: -1px;
  padding: 0;
  position: absolute;
  width: 1px; }

img.centered,
.aligncenter {
  display: block;
  margin: 0 auto 24px;
  margin: 0 auto 2.4rem; }

img.alignnone {
  margin-bottom: 12px;
  margin-bottom: 1.2rem; }

.alignleft {
  float: left;
  text-align: left; }

.alignright {
  float: right;
  text-align: right; }

img.alignleft,
.wp-caption.alignleft {
  margin: 0 24px 24px 0;
  margin: 0 2.4rem 2.4rem 0; }

img.alignright,
.wp-caption.alignright {
  margin: 0 0 24px 24px;
  margin: 0 0 2.4rem 2.4rem; }

.wp-caption {
  background: #f8f8f8;
  padding: 10px;
  border: 1px solid #c0c0c0; }
  @media (max-width: 600px) {
    .wp-caption {
      width: 100% !important;
      clear: both;
      text-align: center; } }

p.wp-caption-text {
  font-size: 15px;
  font-size: 1.5rem;
  font-weight: 100;
  text-align: center;
  line-height: 1.2;
  padding: 0;
  margin: 10px 0 0 !important; }

.widget_calendar table {
  width: 100%; }

.widget_calendar td,
.widget_calendar th {
  text-align: center; }

/* Genesis
--------------------------------------------- */
.crumbs {
  position: relative;
  background: #c0c0c0;
  margin-bottom: 0px;
  overflow: hidden;
  /*
    &:after{
      position:absolute;
      width:15%;
      height:45px;
      right:0;
      top:0;
      content:'';
      @include background-image(linear-gradient(right, #c0c0c0, #c0c0c0 30%, rgba(#c0c0c0, 0)));
    }
  */ }

.crumbs-list {
  position: relative;
  width: 100%;
  width: calc(101% + 250px);
  white-space: nowrap;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  padding-right: 15%; }
  @media (max-width: 860px) {
    .crumbs-list {
      overflow-x: scroll;
      /* has to be scroll, not auto */ } }
  .crumbs-list li {
    display: inline-block;
    padding: 1rem .5rem 1rem 3rem;
    background: #2d2d2d;
    color: white;
    position: relative !important; }
    .crumbs-list li a {
      color: white; }
      .crumbs-list li a:hover {
        color: #00A6C3; }
    .crumbs-list li:before, .crumbs-list li:after {
      content: '';
      display: block;
      width: 0;
      height: 0;
      position: absolute;
      top: 50%;
      margin-top: -44px;
      border-top: 40px solid transparent;
      border-bottom: 40px solid transparent;
      border-left-width: 20px;
      border-left-style: solid; }
    .crumbs-list li:before {
      right: -20px;
      border-left-color: #c0c0c0; }
    .crumbs-list li:after {
      right: -18px;
      border-left-color: #2d2d2d; }
    .crumbs-list li:first-child {
      padding-left: 1rem; }
      @media (max-width: 860px) {
        .crumbs-list li:first-child {
          padding-left: 2rem; } }
    .crumbs-list li:last-child {
      background: #c0c0c0;
      color: #444444; }
      .crumbs-list li:last-child:before, .crumbs-list li:last-child:after {
        display: none; }
    .crumbs-list li:before, .crumbs-list li:after {
      margin-top: -40px;
      z-index: 10000; }

.archive-description {
  background-color: #fff;
  margin-bottom: 40px;
  margin-bottom: 4rem; }

.archive-description {
  padding: 30px; }
  @media (max-width: 860px) {
    .archive-description {
      padding: 20px 30px; } }

.author-box {
  padding: 30px;
  padding: 3rem;
  border-top: 5px solid #00A6C3;
  overflow: hidden; }
  .author-box h2 {
    font-size: 18px;
    margin-bottom: 5px;
    text-transform: uppercase;
    font-weight: 100;
    color: #999999; }
    @media (max-width: 860px) {
      .author-box h2 {
        text-align: center; } }
  .author-box h3 {
    margin-bottom: 5px; }
    @media (max-width: 860px) {
      .author-box h3 {
        text-align: center; } }
  @media (max-width: 860px) {
    .author-box .avatar {
      margin-bottom: 15px; }
    .author-box h2, .author-box h3 {
      clear: both; } }
  .author-box a.view-profile {
    line-height: 40px;
    height: 40px;
    display: block;
    float: left;
    vertical-align: middle;
    color: #00A6C3; }

.contributor-avatar {
  margin: 0 30px 30px 0; }
  @media (max-width: 860px) {
    .contributor-avatar {
      width: 200px;
      margin: 0 auto 20px;
      float: none; }
      .contributor-avatar img {
        width: 200px !important; } }

.contributor-social-profiles {
  font-size: 22px;
  float: left;
  height: 40px;
  display: block; }
  .contributor-social-profiles a {
    margin-right: 15px;
    display: block;
    height: 40px;
    width: 40px;
    line-height: 40px;
    text-align: center;
    border-radius: 50%;
    background: #00A6C3;
    color: white;
    float: left; }
    @media (max-width: 860px) {
      .contributor-social-profiles a {
        margin-right: 10px; } }

.author-box-title {
  color: #333;
  font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 4px;
  margin-bottom: 0.4rem; }

.author-box .avatar {
  margin-right: 24px;
  margin-right: 2.4rem; }

/* Titles
--------------------------------------------- */
.entry-title {
  line-height: 1; }

.entry-title a,
.sidebar .widget-title a {
  color: #333; }

.entry-title a:hover {
  color: #666; }

.widget-title {
  font-size: 16px;
  font-size: 1.6rem;
  margin-bottom: 24px;
  margin-bottom: 2.4rem;
  text-transform: uppercase; }

.sidebar .widget-title a {
  border: none; }

.taxonomy-description {
  background: #eaeaea; }
  .taxonomy-description h1, .taxonomy-description h2, .taxonomy-description h3, .taxonomy-description h4, .taxonomy-description p, .taxonomy-description a {
    color: #444444; }
  .taxonomy-description a:hover {
    color: #444444; }

.archive-title {
  font-size: 20px;
  font-size: 2rem;
  margin-bottom: 24px;
  margin-bottom: 2.4rem; }

.circle img {
  overflow: hidden;
  border-radius: 50%; }

/*
	- Widgets
		- Featured Content
*/
/*
Widgets
---------------------------------------------------------------------------------------------------- */
/* Featured Content
--------------------------------------------- */
.featured-content .entry {
  border-bottom: 2px solid #f5f5f5;
  margin-bottom: 20px;
  margin-bottom: 2rem;
  padding: 0 0 24px;
  padding: 0 0 2.4rem; }

.featured-content .entry-title {
  border: none;
  font-size: 24px;
  font-size: 2.4rem;
  line-height: 1.2; }

.featured-content .entry-title a {
  border: none; }

/*
	- Plugins
		- Genesis eNews Extended
		- Genesis Latest Tweets
		- Gravity Forms
		- Jetpack
*/
/*
Plugins
---------------------------------------------------------------------------------------------------- */
/* Gravity Forms
--------------------------------------------- */
div.gform_wrapper input[type="email"],
div.gform_wrapper input[type="text"],
div.gform_wrapper textarea,
div.gform_wrapper .ginput_complex label {
  font-size: 16px;
  font-size: 1.6rem;
  padding: 16px;
  padding: 1.6rem; }

div.gform_wrapper .ginput_complex label {
  padding: 0; }

div.gform_wrapper li,
div.gform_wrapper form li {
  margin: 16px 0 0;
  margin: 1.6rem 0 0; }

div.gform_wrapper .gform_footer input[type="submit"] {
  font-size: 14px;
  font-size: 1.4rem; }

/* Jetpack
--------------------------------------------- */
img#wpstats {
  display: none; }

/*
	- Site Header
		- Title Area
		- Widget Area
*/
/*
Site Header
---------------------------------------------------------------------------------------------------- */
#wpadminbar {
  z-index: 10000002 !important; }

.site-header {
  background-color: rgba(211, 218, 222, 0.9);
  border-top: 5px solid #00B0C3;
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 10000000;
  padding: 5px 0 12px;
  -moz-transition: background-color 0.3s ease-in-out;
  -o-transition: background-color 0.3s ease-in-out;
  -webkit-transition: background-color 0.3s ease-in-out;
  transition: background-color 0.3s ease-in-out; }
  @media (max-width: 860px) {
    .site-header {
      padding: 3px;
      background-color: #d3dade; } }
  .header-opaque .site-header {
    background-color: #d3dade; }
  .admin-bar .site-header {
    top: 32px; }
    @media (max-width: 860px) {
      .admin-bar .site-header {
        top: 46px; } }

.site-header .wrap, .site-header .swiper-wrap-posts .swiper-wrapper, .swiper-wrap-posts .site-header .swiper-wrapper {
  padding: 0; }

/* Title Area
--------------------------------------------- */
.title-area {
  float: left;
  max-width: 365px;
  padding: 0;
  margin: 0;
  top: 0;
  padding: 0px;
  text-align: center;
  text-transform: uppercase; }
  @media (max-width: 860px) {
    .title-area {
      padding: 8px 10px; } }

.header-image .title-area {
  padding: 0;
  margin: 0; }

.site-title {
  margin: 0;
  padding: 0;
  line-height: 1; }
  .site-title img {
    max-height: 50px; }
    @media (max-width: 860px) {
      .site-title img {
        max-width: 175px; } }
  .site-title span {
    display: block;
    font-weight: 300;
    font-size: 28px;
    font-family: "Museo Slab", "museo-slab", serif !important; }
    @media (max-width: 860px) {
      .site-title span {
        font-size: 18px; } }
  .site-title .small {
    font-size: 18px;
    font-weight: 100;
    font-family: "Museo Sans", "museo-sans", sans-serif !important; }
    @media (max-width: 860px) {
      .site-title .small {
        font-size: 13px; } }
  .site-title a {
    color: white; }

.site-description {
  display: none; }

/* Nav Controls
--------------------------------------------- */
.nav-controls {
  float: right;
  text-shadow: 1px 1px 0px rgba(255, 255, 255, 0.5);
  font-size: 18px;
  margin-top: -1px;
  position: relative; }
  @media (max-width: 860px) {
    .nav-controls {
      font-size: 20px; } }
  .nav-controls a {
    color: #555555;
    margin-right: 10px;
    position: relative;
    top: 0px; }
  .nav-controls .social-profiles a:last-child {
    margin-right: 0px; }
  .nav-controls span {
    color: #555555; }
  .nav-controls .open-nav, .nav-controls .close-nav, .nav-controls .open-search, .nav-controls .close-search {
    cursor: pointer; }
  .nav-controls .open-nav, .nav-controls .close-nav {
    margin-right: 15px; }
  .nav-controls span.title {
    font-size: 14px;
    position: relative;
    top: -2px; }

.nav-open .close-nav {
  display: inline-block !important;
  color: #00B0C3;
  font-size: 22px; }
.nav-open .open-nav {
  display: none; }

.search-open .open-search {
  color: #00B0C3; }

.sep {
  content: "";
  width: 1px;
  height: 35px;
  display: inline-block;
  position: relative;
  background: #999999;
  margin: 0 20px;
  top: 10px; }
  @media (max-width: 860px) {
    .sep {
      margin: 0 12px; } }

.header-search {
  display: inline-block;
  position: absolute;
  background: rgba(211, 218, 222, 0.9);
  width: 100%;
  right: 0px;
  top: -100px;
  min-width: 185px;
  z-index: 10000000;
  -moz-transition: top 0.5s ease-in-out;
  -o-transition: top 0.5s ease-in-out;
  -webkit-transition: top 0.5s ease-in-out;
  transition: top 0.5s ease-in-out; }
  .search-open .header-search {
    top: 10px; }
  .header-search input[type="search"] {
    font-size: 16px;
    padding: 9px;
    width: 100%; }
  .header-search .close-search {
    position: absolute;
    right: 10px;
    top: 8px;
    font-size: 15px;
    color: #c0c0c0 !important; }
    @media (max-width: 860px) {
      .header-search .close-search {
        top: 20px;
        right: 25px;
        font-size: 20px; } }

.open-donate {
  margin-right: 5px; }

@media (max-width: 860px) {
  .donate-subscribe {
    z-index: 1000001;
    display: block;
    position: fixed;
    top: 55px;
    background: #CCD5D9;
    padding: 12px 0;
    width: 100%; }
    .admin-bar .donate-subscribe {
      top: 93px; }
    .donate-subscribe .open-subscribe, .donate-subscribe .open-donate {
      width: 49%;
      margin: 0;
      text-align: center; }
    .donate-subscribe .open-donate {
      margin-right: 2%; }
    .donate-subscribe .paypaldonate {
      width: 95%;
      text-align: center; } }

@media (max-width: 860px) {
  .social-profiles, .header-search {
    z-index: 1000002;
    display: block;
    position: fixed;
    top: 55px;
    background: #00B0C3;
    padding: 12px 0;
    width: 100%;
    text-align: center;
    right: -100%;
    -moz-transition: right 0.5s ease-in-out;
    -o-transition: right 0.5s ease-in-out;
    -webkit-transition: right 0.5s ease-in-out;
    transition: right 0.5s ease-in-out; }
    .admin-bar .social-profiles, .admin-bar .header-search {
      top: 93px; }
    .social-profiles a, .header-search a {
      color: white;
      font-size: 23px;
      margin-right: 15px; } }

@media (max-width: 860px) {
  .social-open .social-profiles, .search-open .header-search {
    right: 0;
    top: 55px; } }

.social-open .close-social {
  display: inline-block !important;
  color: #00B0C3;
  font-size: 22px; }
.social-open .open-social {
  display: none; }

.search-open .close-search {
  display: inline-block !important;
  color: #00B0C3;
  font-size: 22px; }
.search-open .open-search {
  display: none; }

.social-open .open-social {
  color: #00B0C3; }

/*
	- Site Navigation
		- Header Navigation
		- Primary Navigation
		- Secondary Navigation
*/
/*
Site Navigation
---------------------------------------------------------------------------------------------------- */
.nav-primary {
  position: fixed;
  left: 0;
  width: 100%;
  z-index: 1000001; }
  @media (max-width: 860px) {
    .nav-primary .wrap, .nav-primary .swiper-wrap-posts .swiper-wrapper, .swiper-wrap-posts .nav-primary .swiper-wrapper {
      width: 100%; } }
  .nav-primary .wrap, .nav-primary .swiper-wrap-posts .swiper-wrapper, .swiper-wrap-posts .nav-primary .swiper-wrapper {
    width: 300px;
    position: absolute;
    top: 69px;
    height: 100%;
    height: calc(100% - 69px);
    height: calc(100vh - 69px);
    z-index: 10000000000;
    right: -100%;
    background: #444444;
    border-left: 1px solid #3D3E3F;
    padding: 0 0 20px;
    -moz-transition: right 0.5s ease-in-out;
    -o-transition: right 0.5s ease-in-out;
    -webkit-transition: right 0.5s ease-in-out;
    transition: right 0.5s ease-in-out;
    overflow-y: scroll; }
    @media (max-width: 860px) {
      .nav-primary .wrap, .nav-primary .swiper-wrap-posts .swiper-wrapper, .swiper-wrap-posts .nav-primary .swiper-wrapper {
        border-left: none;
        width: 100%;
        right: -100%;
        top: 115px;
        overflow-y: scroll;
        height: 100%;
        height: calc(100% - 115px);
        height: calc(100vh - 115px); } }
    .nav-open .nav-primary .wrap, .nav-open .nav-primary .swiper-wrap-posts .swiper-wrapper, .swiper-wrap-posts .nav-open .nav-primary .swiper-wrapper {
      right: -15px; }
      @media (max-width: 860px) {
        .nav-open .nav-primary .wrap, .nav-open .nav-primary .swiper-wrap-posts .swiper-wrapper, .swiper-wrap-posts .nav-open .nav-primary .swiper-wrapper {
          right: 0px; } }
    .nav-primary .wrap li, .nav-primary .swiper-wrap-posts .swiper-wrapper li, .swiper-wrap-posts .nav-primary .swiper-wrapper li {
      list-style: none; }
    .nav-primary .wrap .sub-menu, .nav-primary .swiper-wrap-posts .swiper-wrapper .sub-menu, .swiper-wrap-posts .nav-primary .swiper-wrapper .sub-menu {
      display: none; }
    .nav-primary .wrap a, .nav-primary .swiper-wrap-posts .swiper-wrapper a, .swiper-wrap-posts .nav-primary .swiper-wrapper a {
      display: block;
      padding: 0px;
      height: 51px;
      line-height: 51px;
      color: #EAEAEA;
      font-size: 18px;
      text-align: right;
      padding-right: 70px;
      position: relative;
      border-bottom: 1px solid #3D3E3F; }
      .nav-primary .wrap a:hover, .nav-primary .swiper-wrap-posts .swiper-wrapper a:hover, .swiper-wrap-posts .nav-primary .swiper-wrapper a:hover {
        background-color: #00A6C3; }
    .nav-primary .wrap .menu-item-has-children > a:after, .nav-primary .swiper-wrap-posts .swiper-wrapper .menu-item-has-children > a:after, .swiper-wrap-posts .nav-primary .swiper-wrapper .menu-item-has-children > a:after {
      content: "";
      height: 50px;
      width: 50px;
      display: block;
      background: #5E5E5E url(../images/plus.png) center center no-repeat;
      position: absolute;
      top: 0;
      right: 0;
      border-left: 1px solid #3D3E3F; }
    .nav-primary .wrap .menu-item-has-children.active, .nav-primary .swiper-wrap-posts .swiper-wrapper .menu-item-has-children.active, .swiper-wrap-posts .nav-primary .swiper-wrapper .menu-item-has-children.active {
      background: #00A6C3; }
      .nav-primary .wrap .menu-item-has-children.active > a:after, .nav-primary .swiper-wrap-posts .swiper-wrapper .menu-item-has-children.active > a:after, .swiper-wrap-posts .nav-primary .swiper-wrapper .menu-item-has-children.active > a:after {
        background: #00A6C3 url(../images/minus.png) center center no-repeat; }
    .nav-primary .wrap .active .sub-menu, .nav-primary .swiper-wrap-posts .swiper-wrapper .active .sub-menu, .swiper-wrap-posts .nav-primary .swiper-wrapper .active .sub-menu {
      display: block; }
      .nav-primary .wrap .active .sub-menu a, .nav-primary .swiper-wrap-posts .swiper-wrapper .active .sub-menu a, .swiper-wrap-posts .nav-primary .swiper-wrapper .active .sub-menu a {
        background-color: #5E5E5E;
        padding-right: 20px;
        font-size: 16px; }
        .nav-primary .wrap .active .sub-menu a:hover, .nav-primary .swiper-wrap-posts .swiper-wrapper .active .sub-menu a:hover, .swiper-wrap-posts .nav-primary .swiper-wrapper .active .sub-menu a:hover {
          background-color: #00A6C3; }
    .nav-primary .wrap .highlighted a, .nav-primary .swiper-wrap-posts .swiper-wrapper .highlighted a, .swiper-wrap-posts .nav-primary .swiper-wrapper .highlighted a {
      color: #00A6C3; }
    .nav-primary .wrap .space, .nav-primary .swiper-wrap-posts .swiper-wrapper .space, .swiper-wrap-posts .nav-primary .swiper-wrapper .space {
      padding-bottom: 20px;
      margin-bottom: 20px;
      border-bottom: 1px solid #505050; }

.more-scroll {
  position: fixed;
  bottom: 0px;
  width: 300px;
  display: block;
  color: white !important;
  font-size: 14px;
  padding: 10px 0 0;
  text-transform: uppercase;
  text-align: center;
  z-index: 100000;
  background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjAuNSIgeTE9IjEuMCIgeDI9IjAuNSIgeTI9IjAuMCI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzJkMmQyZCIvPjxzdG9wIG9mZnNldD0iNTAlIiBzdG9wLWNvbG9yPSIjMmQyZDJkIi8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjMmQyZDJkIiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
  background-size: 100%;
  background-image: -webkit-gradient(linear, 50% 100%, 50% 0%, color-stop(0%, #2d2d2d), color-stop(50%, #2d2d2d), color-stop(100%, rgba(45, 45, 45, 0)));
  background-image: -moz-linear-gradient(bottom, #2d2d2d, #2d2d2d 50%, rgba(45, 45, 45, 0));
  background-image: -webkit-linear-gradient(bottom, #2d2d2d, #2d2d2d 50%, rgba(45, 45, 45, 0));
  background-image: linear-gradient(to top, #2d2d2d, #2d2d2d 50%, rgba(45, 45, 45, 0)); }
  @media (max-width: 860px) {
    .more-scroll {
      width: 100%; } }
  .bottomed-out .more-scroll {
    display: none; }

/*
	- Content Area
		- Entries
		- Pagination
		- Comments
*/
/*
Content Area
---------------------------------------------------------------------------------------------------- */
/* Entries
--------------------------------------------- */
.entry {
  margin-bottom: 30px;
  margin-bottom: 3rem;
  padding: 30px;
  padding: 3rem; }
  .entry.type-tribe_events {
    padding: 0; }

.entry:last-of-type, .post:last-of-type {
  margin-bottom: 0; }

.entry-content a {
  color: #00A6C3; }

.entry-content a:hover {
  color: #333; }

.entry-content .attachment a,
.entry-content .gallery a {
  border: none; }

.entry-content ol,
.entry-content p,
.entry-content ul,
.quote-caption {
  margin-bottom: 26px;
  margin-bottom: 2.6rem; }

.entry-content ol,
.entry-content ul {
  margin-left: 40px;
  margin-left: 4rem; }

.entry-content ol li {
  list-style-type: decimal; }

.entry-content ul li {
  list-style-type: disc; }

.entry-content ol ol,
.entry-content ul ul {
  margin-bottom: 0; }

.entry-content .search-form {
  width: 50%; }

.entry-meta {
  color: #999;
  font-size: 13px;
  font-size: 1.3rem;
  text-transform: uppercase; }

.entry-meta a {
  color: #00A6C3; }
  .entry-meta a:hover {
    color: #00B0C3; }

.entry-header .entry-meta {
  margin-bottom: 24px;
  margin-bottom: 2.4rem; }

.entry-header img {
  border-radius: 50%;
  overflow: hidden;
  border: 5px solid #00A6C3; }
  @media (max-width: 860px) {
    .entry-header img {
      width: 80px; } }
.entry-header h2 {
  line-height: 18px;
  margin-bottom: 0; }
  .entry-header h2 a {
    color: #00B0C3;
    font-size: 18px;
    line-height: 20px; }
    .entry-header h2 a:hover {
      color: #00B0C3; }

.entry-footer .entry-meta {
  border-top: 2px solid #f5f5f5;
  margin: 0 -40px;
  margin: 0 -4rem;
  padding: 32px 40px 8px;
  padding: 3.2rem 4rem 0.8rem; }

.entry-comments-link::before {
  content: "\2014";
  margin: 0 6px 0 2px;
  margin: 0 0.6rem 0 0.2rem; }

.entry-categories,
.entry-tags {
  float: left;
  display: block; }
  .entry-categories a,
  .entry-tags a {
    color: #00A6C3;
    font-size: 13px;
    margin-right: 5px; }
    .entry-categories a:hover,
    .entry-tags a:hover {
      color: #00B0C3; }
  .entry-categories:before,
  .entry-tags:before {
    display: inline-block;
    font: normal normal normal 14px/1 FontAwesome;
    font-size: inherit;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    transform: translate(0, 0);
    content: "\f02b";
    margin-right: 5px;
    font-size: 17px; }

.archive .entry, .category .entry, .tag .entry, .search .entry, .swiper-slide .entry, .post-type-archive .entry, .page-template-page-articles .entry, .related-posts .entry, .page-template-page-articles-php .entry {
  padding: 0 30px;
  position: relative;
  border-bottom: 1px solid #eaeaea; }
.archive .entry-content p, .category .entry-content p, .tag .entry-content p, .search .entry-content p, .swiper-slide .entry-content p, .post-type-archive .entry-content p, .page-template-page-articles .entry-content p, .related-posts .entry-content p, .page-template-page-articles-php .entry-content p {
  margin-bottom: 50px; }
  @media (max-width: 860px) {
    .archive .entry-content p, .category .entry-content p, .tag .entry-content p, .search .entry-content p, .swiper-slide .entry-content p, .post-type-archive .entry-content p, .page-template-page-articles .entry-content p, .related-posts .entry-content p, .page-template-page-articles-php .entry-content p {
      padding: 0;
      margin-bottom: 0px;
      clear: both; } }
.archive .entry-title, .category .entry-title, .tag .entry-title, .search .entry-title, .swiper-slide .entry-title, .post-type-archive .entry-title, .page-template-page-articles .entry-title, .related-posts .entry-title, .page-template-page-articles-php .entry-title {
  line-height: 25px;
  margin-bottom: 5px; }
  .archive .entry-title a, .category .entry-title a, .tag .entry-title a, .search .entry-title a, .swiper-slide .entry-title a, .post-type-archive .entry-title a, .page-template-page-articles .entry-title a, .related-posts .entry-title a, .page-template-page-articles-php .entry-title a {
    color: #00A6C3;
    font-size: 25px;
    line-height: 22px; }
    .archive .entry-title a:hover, .category .entry-title a:hover, .tag .entry-title a:hover, .search .entry-title a:hover, .swiper-slide .entry-title a:hover, .post-type-archive .entry-title a:hover, .page-template-page-articles .entry-title a:hover, .related-posts .entry-title a:hover, .page-template-page-articles-php .entry-title a:hover {
      color: #00A6C3; }
.archive .entry-footer, .category .entry-footer, .tag .entry-footer, .search .entry-footer, .swiper-slide .entry-footer, .post-type-archive .entry-footer, .page-template-page-articles .entry-footer, .related-posts .entry-footer, .page-template-page-articles-php .entry-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  right: 0;
  padding-left: 300px; }
  @media (max-width: 860px) {
    .archive .entry-footer, .category .entry-footer, .tag .entry-footer, .search .entry-footer, .swiper-slide .entry-footer, .post-type-archive .entry-footer, .page-template-page-articles .entry-footer, .related-posts .entry-footer, .page-template-page-articles-php .entry-footer {
      clear: both;
      padding: 0;
      position: relative; } }
  .archive .entry-footer .read-more, .category .entry-footer .read-more, .tag .entry-footer .read-more, .search .entry-footer .read-more, .swiper-slide .entry-footer .read-more, .post-type-archive .entry-footer .read-more, .page-template-page-articles .entry-footer .read-more, .related-posts .entry-footer .read-more, .page-template-page-articles-php .entry-footer .read-more {
    float: right;
    width: 35% !important;
    margin-right: 0px;
    background: #00A6C3;
    border-radius: 0; }
    @media (max-width: 860px) {
      .archive .entry-footer .read-more, .category .entry-footer .read-more, .tag .entry-footer .read-more, .search .entry-footer .read-more, .swiper-slide .entry-footer .read-more, .post-type-archive .entry-footer .read-more, .page-template-page-articles .entry-footer .read-more, .related-posts .entry-footer .read-more, .page-template-page-articles-php .entry-footer .read-more {
        width: calc(100% + 60px) !important;
        margin-left: -30px;
        text-align: center;
        float: none;
        padding: 15px;
        font-size: 18px; } }
    .archive .entry-footer .read-more:hover, .category .entry-footer .read-more:hover, .tag .entry-footer .read-more:hover, .search .entry-footer .read-more:hover, .swiper-slide .entry-footer .read-more:hover, .post-type-archive .entry-footer .read-more:hover, .page-template-page-articles .entry-footer .read-more:hover, .related-posts .entry-footer .read-more:hover, .page-template-page-articles-php .entry-footer .read-more:hover {
      background: #00B0C3; }
  .archive .entry-footer .entry-categories, .category .entry-footer .entry-categories, .tag .entry-footer .entry-categories, .search .entry-footer .entry-categories, .swiper-slide .entry-footer .entry-categories, .post-type-archive .entry-footer .entry-categories, .page-template-page-articles .entry-footer .entry-categories, .related-posts .entry-footer .entry-categories, .page-template-page-articles-php .entry-footer .entry-categories {
    width: 65%;
    line-height: 1;
    color: #c0c0c0; }
    @media (max-width: 860px) {
      .archive .entry-footer .entry-categories, .category .entry-footer .entry-categories, .tag .entry-footer .entry-categories, .search .entry-footer .entry-categories, .swiper-slide .entry-footer .entry-categories, .post-type-archive .entry-footer .entry-categories, .page-template-page-articles .entry-footer .entry-categories, .related-posts .entry-footer .entry-categories, .page-template-page-articles-php .entry-footer .entry-categories {
        width: 100%;
        padding: 10px 0; } }
.archive.tax-services .entry-footer .read-more, .archive.post-type-archive-contributors .entry-footer .read-more,
.archive .type-contributors .entry-footer .read-more, .archive.post-type-archive-share-your-story .entry-footer .read-more, .category.tax-services .entry-footer .read-more, .category.post-type-archive-contributors .entry-footer .read-more,
.category .type-contributors .entry-footer .read-more, .category.post-type-archive-share-your-story .entry-footer .read-more, .tag.tax-services .entry-footer .read-more, .tag.post-type-archive-contributors .entry-footer .read-more,
.tag .type-contributors .entry-footer .read-more, .tag.post-type-archive-share-your-story .entry-footer .read-more, .search.tax-services .entry-footer .read-more, .search.post-type-archive-contributors .entry-footer .read-more,
.search .type-contributors .entry-footer .read-more, .search.post-type-archive-share-your-story .entry-footer .read-more, .swiper-slide.tax-services .entry-footer .read-more, .swiper-slide.post-type-archive-contributors .entry-footer .read-more,
.swiper-slide .type-contributors .entry-footer .read-more, .swiper-slide.post-type-archive-share-your-story .entry-footer .read-more, .post-type-archive.tax-services .entry-footer .read-more, .post-type-archive.post-type-archive-contributors .entry-footer .read-more,
.post-type-archive .type-contributors .entry-footer .read-more, .post-type-archive.post-type-archive-share-your-story .entry-footer .read-more, .page-template-page-articles.tax-services .entry-footer .read-more, .page-template-page-articles.post-type-archive-contributors .entry-footer .read-more,
.page-template-page-articles .type-contributors .entry-footer .read-more, .page-template-page-articles.post-type-archive-share-your-story .entry-footer .read-more, .related-posts.tax-services .entry-footer .read-more, .related-posts.post-type-archive-contributors .entry-footer .read-more,
.related-posts .type-contributors .entry-footer .read-more, .related-posts.post-type-archive-share-your-story .entry-footer .read-more, .page-template-page-articles-php.tax-services .entry-footer .read-more, .page-template-page-articles-php.post-type-archive-contributors .entry-footer .read-more,
.page-template-page-articles-php .type-contributors .entry-footer .read-more, .page-template-page-articles-php.post-type-archive-share-your-story .entry-footer .read-more {
  width: auto !important;
  text-align: center; }
  @media (max-width: 860px) {
    .archive.tax-services .entry-footer .read-more, .archive.post-type-archive-contributors .entry-footer .read-more,
    .archive .type-contributors .entry-footer .read-more, .archive.post-type-archive-share-your-story .entry-footer .read-more, .category.tax-services .entry-footer .read-more, .category.post-type-archive-contributors .entry-footer .read-more,
    .category .type-contributors .entry-footer .read-more, .category.post-type-archive-share-your-story .entry-footer .read-more, .tag.tax-services .entry-footer .read-more, .tag.post-type-archive-contributors .entry-footer .read-more,
    .tag .type-contributors .entry-footer .read-more, .tag.post-type-archive-share-your-story .entry-footer .read-more, .search.tax-services .entry-footer .read-more, .search.post-type-archive-contributors .entry-footer .read-more,
    .search .type-contributors .entry-footer .read-more, .search.post-type-archive-share-your-story .entry-footer .read-more, .swiper-slide.tax-services .entry-footer .read-more, .swiper-slide.post-type-archive-contributors .entry-footer .read-more,
    .swiper-slide .type-contributors .entry-footer .read-more, .swiper-slide.post-type-archive-share-your-story .entry-footer .read-more, .post-type-archive.tax-services .entry-footer .read-more, .post-type-archive.post-type-archive-contributors .entry-footer .read-more,
    .post-type-archive .type-contributors .entry-footer .read-more, .post-type-archive.post-type-archive-share-your-story .entry-footer .read-more, .page-template-page-articles.tax-services .entry-footer .read-more, .page-template-page-articles.post-type-archive-contributors .entry-footer .read-more,
    .page-template-page-articles .type-contributors .entry-footer .read-more, .page-template-page-articles.post-type-archive-share-your-story .entry-footer .read-more, .related-posts.tax-services .entry-footer .read-more, .related-posts.post-type-archive-contributors .entry-footer .read-more,
    .related-posts .type-contributors .entry-footer .read-more, .related-posts.post-type-archive-share-your-story .entry-footer .read-more, .page-template-page-articles-php.tax-services .entry-footer .read-more, .page-template-page-articles-php.post-type-archive-contributors .entry-footer .read-more,
    .page-template-page-articles-php .type-contributors .entry-footer .read-more, .page-template-page-articles-php.post-type-archive-share-your-story .entry-footer .read-more {
      width: calc(100% + 60px) !important; } }

.single-contributors .type-contributors .entry-header {
  margin-bottom: 30px; }
  .single-contributors .type-contributors .entry-header h1 {
    font-size: 18px;
    margin-bottom: 10px;
    text-transform: uppercase;
    font-weight: 100;
    color: #999999; }
    @media (max-width: 860px) {
      .single-contributors .type-contributors .entry-header h1 {
        text-align: center; } }
  .single-contributors .type-contributors .entry-header h2 {
    margin-bottom: 15px;
    font-size: 26px; }
    @media (max-width: 860px) {
      .single-contributors .type-contributors .entry-header h2 {
        text-align: center; } }
  @media (max-width: 860px) {
    .single-contributors .type-contributors .entry-header .contributor-avatar {
      width: 200px;
      margin: 0 auto 20px;
      float: none; } }
  .single-contributors .type-contributors .entry-header .contributor-avatar img {
    width: 200px !important; }
  .single-contributors .type-contributors .entry-header .phone, .single-contributors .type-contributors .entry-header .address {
    font-size: 17px; }
    .single-contributors .type-contributors .entry-header .phone .fa, .single-contributors .type-contributors .entry-header .address .fa {
      margin-right: 10px; }
    .single-contributors .type-contributors .entry-header .phone a, .single-contributors .type-contributors .entry-header .address a {
      color: #999999; }
      .single-contributors .type-contributors .entry-header .phone a:hover, .single-contributors .type-contributors .entry-header .address a:hover {
        color: #00B0C3; }
  .single-contributors .type-contributors .entry-header .phone {
    margin-bottom: 15px; }
.single-contributors .type-contributors .contributor-social-profiles {
  float: none; }
.single-contributors .type-contributors .entry-content {
  border-top: 5px solid #00A6C3;
  padding: 30px 0 0;
  clear: both; }

.related-posts {
  border-top: 5px solid #00A6C3;
  padding: 30px 0 0; }
  .related-posts h4 {
    padding-left: 30px; }

.before-post {
  margin-bottom: 30px; }

/* Pagination
--------------------------------------------- */
.archive-pagination,
.entry-pagination, .dataTables_paginate {
  font-size: 14px;
  font-size: 1.4rem;
  margin: 20px 0 0;
  margin: 2rem 0 0;
  padding: 0;
  padding: 0;
  background: #444444;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  width: 100%; }
  .archive-pagination:after,
  .entry-pagination:after, .dataTables_paginate:after {
    position: absolute;
    width: 15%;
    height: 45px;
    right: 0;
    top: 0;
    content: '';
    background-image: url('data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiBlbmNvZGluZz0idXRmLTgiPz4gPHN2ZyB2ZXJzaW9uPSIxLjEiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PGxpbmVhckdyYWRpZW50IGlkPSJncmFkIiBncmFkaWVudFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCIgeDE9IjEuMCIgeTE9IjAuNSIgeDI9IjAuMCIgeTI9IjAuNSI+PHN0b3Agb2Zmc2V0PSIwJSIgc3RvcC1jb2xvcj0iIzQ0NDQ0NCIvPjxzdG9wIG9mZnNldD0iMzAlIiBzdG9wLWNvbG9yPSIjNDQ0NDQ0Ii8+PHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDQ0NDQ0IiBzdG9wLW9wYWNpdHk9IjAuMCIvPjwvbGluZWFyR3JhZGllbnQ+PC9kZWZzPjxyZWN0IHg9IjAiIHk9IjAiIHdpZHRoPSIxMDAlIiBoZWlnaHQ9IjEwMCUiIGZpbGw9InVybCgjZ3JhZCkiIC8+PC9zdmc+IA==');
    background-size: 100%;
    background-image: -webkit-gradient(linear, 100% 50%, 0% 50%, color-stop(0%, #444444), color-stop(30%, #444444), color-stop(100%, rgba(68, 68, 68, 0)));
    background-image: -moz-linear-gradient(right, #444444, #444444 30%, rgba(68, 68, 68, 0));
    background-image: -webkit-linear-gradient(right, #444444, #444444 30%, rgba(68, 68, 68, 0));
    background-image: linear-gradient(to left, #444444, #444444 30%, rgba(68, 68, 68, 0)); }
  .archive-pagination ul,
  .entry-pagination ul, .dataTables_paginate ul {
    position: relative;
    width: 100%;
    width: calc(101% + 1px);
    white-space: nowrap;
    overflow: hidden;
    -webkit-overflow-scrolling: touch;
    padding-right: 15%; }
    @media (max-width: 860px) {
      .archive-pagination ul,
      .entry-pagination ul, .dataTables_paginate ul {
        overflow-x: scroll; } }

.archive-pagination li, .dataTables_paginate .paginate_button {
  display: inline-block;
  margin-right: -4px;
  color: white; }

.pagination-omission {
  padding: 0 24px 0 24px; }
  .pagination-omission:before, .pagination-omission:after {
    z-index: 10000;
    margin-top: -24px; }

.archive-pagination li a, .dataTables_paginate .paginate_button {
  background: #5F5B56;
  color: #fff;
  cursor: pointer;
  display: block;
  padding: 8px 24px 8px 24px;
  padding: 0.8rem 2.4rem .8rem 2.4rem; }
  .archive-pagination li a:before, .archive-pagination li a:after, .dataTables_paginate .paginate_button:before, .dataTables_paginate .paginate_button:after {
    z-index: 10000;
    margin-top: -24px; }
  .archive-pagination li a:hover, .dataTables_paginate .paginate_button:hover {
    color: #00B0C3; }

.archive-pagination .pagination-next a:before, .archive-pagination .pagination-next a:after,
.entry-pagination .pagination-next a:before,
.entry-pagination .pagination-next a:after {
  display: none; }

.archive-pagination li.active a, .dataTables_wrapper .dataTables_paginate .paginate_button.current {
  background: #373532 !important;
  color: #00B0C3 !important;
  border: none !important;
  font-weight: 500; }
  .archive-pagination li.active a:before, .archive-pagination li.active a:after, .dataTables_wrapper .dataTables_paginate .paginate_button.current:before, .dataTables_wrapper .dataTables_paginate .paginate_button.current:after {
    z-index: 10000;
    margin-top: -24px; }

.entry-pagination a {
  border-bottom: 1px solid #ddd; }

/* Comments
--------------------------------------------- */
/* Comments
--------------------------------------------- */
.comment-respond,
.entry-comments,
.entry-pings {
  background-color: #fff;
  margin-bottom: 40px;
  margin-bottom: 4rem;
  padding: 30px;
  overflow: hidden;
  clear: both;
  border-top: 5px solid #00A6C3; }
  .comment-respond h3,
  .entry-comments h3,
  .entry-pings h3 {
    font-size: 25px;
    font-weight: 300;
    color: #696969; }
  .comment-respond article,
  .entry-comments article,
  .entry-pings article {
    overflow: hidden;
    padding: 30px 0 20px;
    background: white; }
    @media (max-width: 860px) {
      .comment-respond article,
      .entry-comments article,
      .entry-pings article {
        padding: 15px 0 10px; } }
  .comment-respond .children article,
  .entry-comments .children article,
  .entry-pings .children article {
    border-top: 1px dashed #D5D5D5; }
  .comment-respond .comment-list > li,
  .entry-comments .comment-list > li,
  .entry-pings .comment-list > li {
    border-bottom: 5px solid #D5D5D5; }

.comment {
  clear: both; }

.comment-header {
  display: block;
  width: 100%; }

.entry-comments .comment-author {
  margin-bottom: 0; }

.comment-respond input[type="email"],
.comment-respond input[type="text"],
.comment-respond input[type="url"] {
  width: 50%; }

.comment-respond label {
  display: block;
  margin-right: 12px;
  margin-right: 1.2rem; }

.comment-meta {
  font-size: 14px; }

.comment-list li,
.ping-list li {
  list-style-type: none; }

.comment-list li li article {
  padding-left: 40px; }
  @media (max-width: 860px) {
    .comment-list li li article {
      padding-left: 20px; } }

.bypostauthor {
  background: #F0F0F0; }

.comment-meta, .comment-author {
  font-size: 18px; }
  .comment-meta img, .comment-author img {
    border-radius: 50%;
    overflow: hidden; }

.comment-meta {
  font-size: 14px;
  text-transform: uppercase; }
  .comment-meta a {
    color: #00A6C3; }

.comment .avatar {
  margin: 0 20px 2px 0; }

.entry-pings .reply {
  display: none; }

.comment-reply-link {
  float: right;
  text-transform: uppercase;
  font-weight: 500;
  font-size: 18px; }

.welcome {
  background: #2d2d2d;
  color: white;
  padding: 40px 0; }
  @media (max-width: 860px) {
    .welcome {
      padding: 40px 20px; } }
  .welcome h1, .welcome h2, .welcome h3, .welcome h4, .welcome h5, .welcome p {
    color: white; }

/**
 * Swiper 3.0.6
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * 
 * http://www.idangero.us/swiper/
 * 
 * Copyright 2015, Vladimir Kharlampidi
 * The iDangero.us
 * http://www.idangero.us/
 * 
 * Licensed under MIT
 * 
 * Released on: March 27, 2015
 */
.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  /* Fix of Webkit flickering */
  z-index: 1; }

.swiper-container-no-flexbox .swiper-slide {
  float: left; }

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -moz-box-orient: vertical;
  -ms-flex-direction: column;
  -webkit-flex-direction: column;
  flex-direction: column; }

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  -o-transition-property: -o-transform;
  -ms-transition-property: -ms-transform;
  transition-property: transform;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box; }

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  -moz-transform: translate3d(0px, 0, 0);
  -o-transform: translate(0px, 0px);
  -ms-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0); }

.swiper-container-multirow > .swiper-wrapper {
  -webkit-box-lines: multiple;
  -moz-box-lines: multiple;
  -ms-fles-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap; }

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto; }

.swiper-slide {
  -webkit-transform-style: preserve-3d;
  -moz-transform-style: preserve-3d;
  -ms-transform-style: preserve-3d;
  transform-style: preserve-3d;
  -webkit-flex-shrink: 0;
  -ms-flex: 0 0 auto;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative; }

/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000; }

/* IE10 Windows Phone 8 Fixes */
.swiper-wp8-horizontal {
  -ms-touch-action: pan-y;
  touch-action: pan-y; }

.swiper-wp8-vertical {
  -ms-touch-action: pan-x;
  touch-action: pan-x; }

/* Arrows */
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  -moz-background-size: 27px 44px;
  -webkit-background-size: 27px 44px;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: .4; }
  .swiper-button-prev:hover,
  .swiper-button-next:hover {
    opacity: 1; }

.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none; }

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto; }

.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto; }

.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E"); }

.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E"); }

/* Pagination Styles */
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms;
  -moz-transition: 300ms;
  -o-transition: 300ms;
  transition: 300ms;
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  -o-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10; }

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0; }

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: white;
  opacity: 0.5; }

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer; }

.swiper-pagination-white .swiper-pagination-bullet {
  background: #fff; }

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #00A6C3; }

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff; }

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000; }

.swiper-container-vertical > .swiper-pagination {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  -moz-transform: translate3d(0px, -50%, 0);
  -o-transform: translate(0px, -50%);
  -ms-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0); }

.swiper-container-vertical > .swiper-pagination .swiper-pagination-bullet {
  margin: 5px 0;
  display: block; }

.swiper-container-horizontal > .swiper-pagination {
  bottom: 28px;
  left: 0;
  width: 100%; }
  @media (max-width: 860px) {
    .swiper-container-horizontal > .swiper-pagination {
      bottom: 10px; } }

.swiper-container-horizontal > .swiper-pagination .swiper-pagination-bullet {
  margin: 0 5px; }

/* Fade */
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  -ms-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none; }

.swiper-container-fade .swiper-slide-active {
  pointer-events: auto; }

/* Cube */
.swiper-container-cube {
  overflow: visible; }

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -moz-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
  backface-visibility: hidden;
  width: 100%;
  height: 100%; }

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -moz-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible; }

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px); }

.swiper-container-cube.swiper-container-vertical .swiper-cube-shadow {
  z-index: 0; }

/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1); }

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%; }

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%; }

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0; }

.swiper-scrollbar-cursor-drag {
  cursor: move; }

.swiper-container {
  width: 100%;
  height: 100%;
  margin: 0 auto; }

@media (max-width: 860px) {
  .swiper-featured-posts {
    margin-top: 105px; } }
.swiper-featured-posts .swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  background: white;
  opacity: 0 !important;
  width: 100%;
  -moz-transition: opacity 1s linear;
  -o-transition: opacity 1s linear;
  -webkit-transition: opacity 1s linear;
  transition: opacity 1s linear; }
  .swiper-featured-posts .swiper-slide img {
    width: 100%; }
  .swiper-featured-posts .swiper-slide.swiper-slide-active {
    opacity: 1 !important; }
  .swiper-featured-posts .swiper-slide .caption {
    position: absolute;
    background: rgba(68, 68, 68, 0.8);
    bottom: 0px;
    left: 0;
    text-align: left;
    padding: 20px 5%;
    width: 50%; }
    @media (max-width: 860px) {
      .swiper-featured-posts .swiper-slide .caption {
        width: 100%;
        max-width: none;
        padding: 15px 25px 30px 25px; } }
    .swiper-featured-posts .swiper-slide .caption h1, .swiper-featured-posts .swiper-slide .caption h2, .swiper-featured-posts .swiper-slide .caption h3 {
      color: #00A6C3;
      font-size: 45px;
      text-transform: uppercase;
      margin: 0; }
    .swiper-featured-posts .swiper-slide .caption p {
      color: white;
      margin: 0;
      line-height: 1.123;
      text-transform: uppercase; }
    .swiper-featured-posts .swiper-slide .caption h2 {
      font-size: 45px;
      font-weight: 100;
      font-family: "Museo Slab", "museo-slab", serif; }
      @media (max-width: 860px) {
        .swiper-featured-posts .swiper-slide .caption h2 {
          font-size: 20px; } }
    .swiper-featured-posts .swiper-slide .caption p {
      font-size: 16px; }
      @media (max-width: 860px) {
        .swiper-featured-posts .swiper-slide .caption p {
          font-size: 15px; } }
.swiper-featured-posts .swiper-pagination {
  bottom: 5px !important; }

.swiper-content-tabs-wrap {
  position: relative;
  height: 50px; }

.swiper-content-tabs {
  background: #00A6C3;
  position: absolute; }
  .swiper-content-tabs[data-end="swiper-end"]:after {
    content: "swipe right >";
    position: absolute;
    display: block;
    top: 10px;
    right: 0;
    color: white;
    margin-right: 10px; }
  .swiper-content-tabs .swiper-wrapper {
    margin-left: -38%; }
    @media (max-width: 860px) {
      .swiper-content-tabs .swiper-wrapper {
        margin-left: -25%; } }
  .single-conferences .swiper-content-tabs, .post-type-archive-products .swiper-content-tabs {
    border-left: none;
    border-right: none; }
  .swiper-tabs-fixed .swiper-content-tabs {
    position: fixed;
    top: 69px;
    z-index: 10000;
    height: 50px;
    box-shadow: 0px 6px 0px white;
    border: none; }
    @media (max-width: 860px) {
      .swiper-tabs-fixed .swiper-content-tabs {
        top: 105px;
        left: 6px; } }
    .admin-bar .swiper-tabs-fixed .swiper-content-tabs {
      top: 96px; }
  .swiper-tabs-fixed.admin-bar .swiper-content-tabs {
    top: 114px; }
  .swiper-content-tabs .swiper-slide {
    width: auto;
    padding: 10px 25px;
    background: #00A6C3;
    color: white;
    border-right: 1px solid white;
    cursor: pointer;
    font-size: 16px;
    text-align: center; }
    .swiper-content-tabs .swiper-slide.swiper-slide-active {
      background: white;
      color: #444444; }
    .swiper-content-tabs .swiper-slide:last-child {
      border-right: none; }

.swiper-content-blocks {
  background: white; }
  .single-conferences .swiper-content-blocks, .post-type-archive-products .swiper-content-blocks {
    border-left: none;
    border-right: none; }
  @media (max-width: 860px) {
    .swiper-content-blocks {
      border-color: white; } }
  .swiper-content-blocks .swiper-slide {
    padding: 30px 0 0 0;
    background: white;
    text-align: left !important; }
    .single-conferences .swiper-content-blocks .swiper-slide {
      padding-bottom: 30px; }
      .single-conferences .swiper-content-blocks .swiper-slide .post {
        border-bottom: none; }
    .swiper-content-blocks .swiper-slide > h2 {
      padding-left: 30px; }
    .swiper-content-blocks .swiper-slide .resources {
      background: #444444;
      padding: 30px; }
      .swiper-content-blocks .swiper-slide .resources ul, .swiper-content-blocks .swiper-slide .resources li {
        list-style: none; }
      .swiper-content-blocks .swiper-slide .resources li {
        margin-bottom: 15px; }
      .swiper-content-blocks .swiper-slide .resources h3, .swiper-content-blocks .swiper-slide .resources a {
        color: white; }
      .swiper-content-blocks .swiper-slide .resources a:hover {
        color: #00A6C3; }
      .swiper-content-blocks .swiper-slide .resources img {
        width: 15px;
        margin-right: 15px; }
    .swiper-content-blocks .swiper-slide .post {
      z-index: -1;
      border-bottom: 1px solid #eaeaea;
      margin-bottom: 30px;
      padding: 0 30px 0 30px;
      overflow: hidden;
      position: relative;
      /*
            h2 {
              line-height: 18px;
              margin-bottom: 0;
              a {
                color: $blue;
                font-size: 18px;
                line-height: 20px;
                &:hover {
                  color: $blue;
                }
              }
            }
            .read-more {
              float: right;
              width: 30% !important;
              margin-right: 0px;
              background: $blue;
              border-radius: 0;
              @include break(toddler-shark) {
                width: calc(100% + 60px) !important;
                margin-left: -30px;
                text-align: center;
                float: none;
                padding: 15px;
                font-size: 22px;
              }
              &:hover {
                background: $blue;
              }
            }
            .entry-footer {
              position: absolute;
              bottom: 0;
              width: 100%;
              right: 0;
              padding-left: 300px;
              @include break(toddler-shark) {
                clear: both;
                padding: 0;
                position: relative;
              }
              .entry-categories {
                width: 70%;
                line-height: 1;
                color: #c0c0c0;
                @include break(toddler-shark) {
                  width: 100%;
                  padding: 10px 0;
                }
              }
            }
      */ }
      .swiper-content-blocks .swiper-slide .post:last-of-type {
        margin-bottom: 0; }
      .swiper-content-blocks .swiper-slide .post .thumbnail {
        width: 250px;
        margin: 0 20px 15px 0; }
        .swiper-content-blocks .swiper-slide .post .thumbnail img {
          border-radius: 50%;
          overflow: hidden;
          border: 5px solid #00A6C3; }
        @media (max-width: 860px) {
          .swiper-content-blocks .swiper-slide .post .thumbnail {
            width: 80px; } }
      .swiper-content-blocks .swiper-slide .post .excerpt {
        margin-bottom: 50px; }
        @media (max-width: 860px) {
          .swiper-content-blocks .swiper-slide .post .excerpt {
            padding: 0;
            margin-bottom: 0px;
            clear: both; } }

.swiper-notification {
  background: white;
  text-align: center;
  width: 100%;
  border-bottom: none;
  padding: 5px 0;
  font-weight: 100;
  text-transform: lowercase;
  font-size: 14px; }
  .swiper-notification .fa {
    padding: 0 15px;
    font-size: 14px; }
    @media (max-width: 860px) {
      .swiper-notification .fa {
        padding: 0 10px; } }
  .swiper-notification[data-active="inactive"] {
    display: none; }

.swiper-wrap-posts {
  position: relative;
  padding: 0;
  margin-top: 30px; }
  @media (max-width: 860px) {
    .swiper-wrap-posts {
      width: 95%;
      margin: 30px 0 0 5%; } }
  .swiper-wrap-posts h1 {
    color: #444444; }
  .swiper-wrap-posts .slide-content {
    padding: 20px; }
  .swiper-wrap-posts img {
    width: 100%;
    margin-bottom: -8px; }
  .swiper-wrap-posts .swiper-posts {
    width: 100%;
    margin: 0 auto;
    text-align: center; }
    .swiper-wrap-posts .swiper-posts h1 {
      font-size: 16px;
      color: #999999;
      text-transform: uppercase;
      font-weight: 100;
      margin-bottom: 5px; }
    .swiper-wrap-posts .swiper-posts h2 {
      font-size: 24px;
      color: #444444;
      margin-bottom: 10px;
      line-height: 25px; }
    .swiper-wrap-posts .swiper-posts hr {
      width: 30%;
      margin: 10px auto; }
    .swiper-wrap-posts .swiper-posts p {
      margin-bottom: 15px;
      line-height: 1.2;
      color: #777777;
      font-size: 15px; }
    .swiper-wrap-posts .swiper-posts a.directions {
      font-size: 18px;
      clear: both;
      display: block;
      margin-top: 5px; }
  .swiper-wrap-posts .swiper-slide {
    background-color: white;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
    width: 30%;
    margin-bottom: 30px; }

.swiper-testimonials-wrap {
  clear: both;
  background: #00A6C3;
  padding: 40px 0; }
  .swiper-testimonials-wrap h1 {
    color: white; }
    @media (max-width: 860px) {
      .swiper-testimonials-wrap h1 {
        padding: 0 30px; } }
  @media (max-width: 860px) {
    .swiper-testimonials-wrap .swiper-slide {
      padding: 0 30px; } }
  .swiper-testimonials-wrap .testimonial {
    text-align: right;
    font-size: 20px;
    color: white; }
    @media (max-width: 860px) {
      .swiper-testimonials-wrap .testimonial {
        text-align: left; } }
  @media (max-width: 860px) {
    .swiper-testimonials-wrap .author {
      text-align: center;
      margin-top: 20px; } }
  .swiper-testimonials-wrap .author img {
    border: 5px solid white;
    float: left;
    width: 150px; }
    @media (max-width: 860px) {
      .swiper-testimonials-wrap .author img {
        float: none;
        margin-bottom: 0px; } }
  .swiper-testimonials-wrap .author .credentials {
    background: white;
    float: left;
    height: 100px;
    padding: 15px 30px;
    margin-top: 25px;
    text-transform: uppercase; }
    @media (max-width: 860px) {
      .swiper-testimonials-wrap .author .credentials {
        margin: 0;
        width: 100%;
        float: none;
        clear: both; } }
    .swiper-testimonials-wrap .author .credentials h2 {
      margin: 0;
      color: #00A6C3; }
    .swiper-testimonials-wrap .author .credentials a {
      color: #666666;
      letter-spacing: 4px; }

.swiper-slide.blank {
  opacity: 0 !important; }

.open-filter {
  position: absolute;
  right: 0;
  top: 0;
  border-radius: 0;
  width: 200px;
  text-align: center;
  background: #5F5B56 !important;
  padding: 10px;
  z-index: 10001;
  -moz-transition: all 0.4s ease-in-out;
  -o-transition: all 0.4s ease-in-out;
  -webkit-transition: all 0.4s ease-in-out;
  transition: all 0.4s ease-in-out; }
  @media (max-width: 860px) {
    .open-filter {
      position: relative;
      width: 100%; } }
  .open-filter .fa-close {
    font-size: 18px;
    display: none; }
  .filter-open .open-filter {
    width: 100%; }
    .filter-open .open-filter .fa-close {
      display: inline-block; }
    .filter-open .open-filter .fa-tag {
      display: none; }

.archive-filter {
  background: #444444;
  padding: 1px 0;
  color: white; }
  @media (max-width: 860px) {
    .archive-filter {
      padding: 18px 0; } }
  .archive-filter .gform_body, .archive-filter .gform_wrapper {
    width: 100% !important;
    max-width: 100% !important;
    margin-bottom: 0 !important; }
  .archive-filter .gfield_label {
    display: none !important; }
  .archive-filter .gfield_checkbox li {
    width: 33% !important;
    float: left !important;
    clear: none !important;
    padding: 0 !important;
    margin: 0 !important;
    position: relative !important;
    border-right: 1px solid #444444 !important;
    border-bottom: 1px solid #444444 !important; }
    @media (max-width: 860px) {
      .archive-filter .gfield_checkbox li {
        width: 50% !important; } }
    .archive-filter .gfield_checkbox li input {
      opacity: 0;
      width: 0;
      position: absolute; }
    .archive-filter .gfield_checkbox li label {
      padding: 10px !important;
      margin: 0 !important;
      display: block !important;
      cursor: pointer !important;
      -moz-transition: all 0.3s ease-in-out;
      -o-transition: all 0.3s ease-in-out;
      -webkit-transition: all 0.3s ease-in-out;
      transition: all 0.3s ease-in-out;
      font-size: 18px !important;
      line-height: 1 !important; }
      @media (max-width: 860px) {
        .archive-filter .gfield_checkbox li label {
          padding-left: 5px 10px !important;
          font-size: 16px !important; } }
    .archive-filter .gfield_checkbox li input:checked + label {
      background: white !important;
      font-weight: 500 !important;
      color: #00A6C3 !important; }
    @media (max-width: 860px) {
      .archive-filter .gfield_checkbox li:nth-child(odd) {
        clear: both !important; }
        .archive-filter .gfield_checkbox li:nth-child(odd) label {
          padding-left: 30px !important; } }
  .archive-filter .gform_footer {
    text-align: center; }
  .archive-filter .gform_button {
    width: 50% !important;
    font-size: 22px !important;
    margin: 0 auto !important;
    background: #444444 !important;
    padding: 15px !important; }
    .archive-filter .gform_button:hover {
      background: #00B0C3 !important; }
    @media (max-width: 860px) {
      .archive-filter .gform_button {
        width: 100% !important;
        border-radius: 0 !important; } }

#tribe-events-pg-template {
  width: 100% !important;
  max-width: none !important;
  background: white !important;
  padding: 30px !important; }

#tribe-geo-results h2.tribe-events-page-title,
h2.tribe-events-page-title,
.tribe-events-calendar thead th,
.tribe-events-calendar div[id*=tribe-events-daynum-],
.tribe-events-calendar div[id*=tribe-events-daynum-] a,
#tribe-events .tribe-events-button, .tribe-events-button {
  font-weight: 300 !important; }

.tribe-events-meta-group .tribe-events-single-section-title,
.single-tribe_events #tribe-events-content .tribe-events-event-meta dt,
.tribe-events-adv-list-widget .tribe-events-widget-link a, .tribe-events-back a, .tribe-events-list-widget .tribe-events-widget-link a, ul.tribe-events-sub-nav a, .tribe-events-list-separator-month {
  font-weight: 500 !important; }

.single-tribe_events .tribe-events-event-meta {
  font-size: 18px !important; }

#tribe-events .tribe-events-button, #tribe-events .tribe-events-button:hover, #tribe_events_filters_wrapper input[type=submit], .tribe-events-button, .tribe-events-button.tribe-active:hover, .tribe-events-button.tribe-inactive, .tribe-events-button:hover, .tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-], .tribe-events-calendar td.tribe-events-present div[id*=tribe-events-daynum-] > a {
  background-color: #00A6C3 !important; }

#tribe-events-content .tribe-events-tooltip h4, #tribe_events_filters_wrapper .tribe_events_slider_val {
  color: #00A6C3 !important; }

/*
	- Sidebars
*/
/*
Sidebars
---------------------------------------------------------------------------------------------------- */
.tap {
  display: none;
  width: 6px;
  background: #00B0C3;
  color: white !important;
  position: fixed;
  height: 100%;
  height: 100vh;
  top: 0px;
  left: 0px;
  font-size: 12px;
  font-weight: bold;
  z-index: 100000;
  -moz-transition: left 0.5s ease-in-out;
  -o-transition: left 0.5s ease-in-out;
  -webkit-transition: left 0.5s ease-in-out;
  transition: left 0.5s ease-in-out;
  -webkit-transform: translateZ(0); }
  .sidebar-open .tap {
    left: 99%; }
  .sticky-header-off .tap {
    top: 0; }
  @media (max-width: 860px) {
    .tap {
      display: block; }
      .app-list .tap {
        display: none; } }
  .tap span {
    -moz-transform: rotate(270deg);
    -ms-transform: rotate(270deg);
    -webkit-transform: rotate(270deg);
    transform: rotate(270deg);
    cursor: pointer;
    padding: 1px 20px;
    position: absolute;
    background: #00B0C3;
    top: 50%;
    left: -22px;
    margin-top: 0;
    border-radius: 3px; }
    .sidebar-open .tap span {
      left: -40px; }
    .sticky-header-off .tap span {
      top: 63%;
      top: calc(50% + 69px); }
  .sidebar .tap {
    left: auto;
    right: 0;
    top: 0;
    position: fixed; }
    .sidebar .tap span {
      left: -30px; }

.sidebar {
  background: white;
  color: #343434 !important;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.2;
  border-bottom-width: 2px; }
  @media (max-width: 860px) {
    .sidebar {
      cursor: pointer;
      position: fixed;
      left: -100%;
      top: 0;
      border-right: 6px solid #00B0C3;
      height: 100%;
      height: 100vh;
      width: 100%;
      padding: 104px 0px 300px;
      z-index: 10000;
      overflow-y: auto;
      -moz-transition: left 0.5s ease-in-out;
      -o-transition: left 0.5s ease-in-out;
      -webkit-transition: left 0.5s ease-in-out;
      transition: left 0.5s ease-in-out;
      -webkit-transform: translateZ(0); }
      .sidebar-open .sidebar {
        left: 0px; } }
  .sidebar .flare {
    display: none !important; }
  .sidebar .widgettitle {
    font-size: 20px;
    font-size: 2rem;
    font-weight: 500;
    padding: 10px 0 9px;
    text-align: center;
    text-transform: uppercase;
    font-weight: 100;
    background: #00A6C3;
    color: white !important; }
  .sidebar p:last-child {
    margin-bottom: 0; }
  .sidebar h2.entry-title a {
    color: #444444;
    font-size: 16px; }
  .sidebar .entry-header {
    margin: 0; }
  .sidebar .entry-content {
    border: none !important;
    padding: 0; }
  .sidebar .entry-meta {
    margin-bottom: 10px !important; }
  .sidebar li {
    list-style-type: none;
    margin-bottom: 6px;
    margin-bottom: 0.6rem;
    word-wrap: break-word; }
  .sidebar ul > li:last-child {
    margin-bottom: 0; }
  .sidebar .more-from-category {
    float: right;
    margin: 10px 15px 0 0 !important;
    text-transform: lowercase; }
  .sidebar .widget {
    padding: 0 0 24px;
    margin-bottom: 0px;
    overflow: hidden; }
  .sidebar .enews-widget {
    background-color: #333; }
  .sidebar .button {
    display: block !important;
    width: 100% !important;
    text-align: center !important;
    padding: 15px 0;
    font-size: 20px !important;
    text-transform: uppercase !important; }
  .sidebar .gform_widget {
    background: #444444;
    width: 100% !important;
    padding: 0px;
    border: none !important; }
    .sidebar .gform_widget h4.widget-title, .sidebar .gform_widget h4.widgettitle {
      color: white;
      padding: 30px 30px 0;
      border: none !important;
      text-align: center;
      font-weight: 300 !important;
      text-transform: none;
      background: #444444; }
    .sidebar .gform_widget .gform_wrapper .top_label input.large, .sidebar .gform_widget .gform_wrapper .top_label select.large, .sidebar .gform_widget .gform_wrapper .hidden_label input.large, .sidebar .gform_widget .gform_wrapper .hidden_label select.large {
      width: 100%;
      text-align: center; }
    .sidebar .gform_widget .gform_wrapper {
      width: 100% !important;
      margin: 0 !important;
      padding: 0 30px 30px !important; }
    .sidebar .gform_widget .gfield_label {
      display: none !important; }
    .sidebar .gform_widget .gform_heading, .sidebar .gform_widget .gform_description {
      font-size: 15px !important;
      text-align: center !important; }
    .sidebar .gform_widget .gform_button {
      display: block !important;
      width: 100% !important;
      text-align: center !important;
      padding: 15px 0;
      font-size: 20px !important;
      text-transform: uppercase !important; }
    .sidebar .gform_widget .gform_footer {
      margin: 0; }
    .sidebar .gform_widget .tell-me-more {
      color: white;
      text-align: center;
      display: block;
      font-size: 13px;
      margin: 8px 0;
      cursor: pointer; }
    .sidebar .gform_widget .tell-them-more {
      color: white;
      padding: 15px 0;
      display: none; }
      .sidebar .gform_widget .tell-them-more h2 {
        color: white;
        font-size: 18px; }
    .sidebar .gform_widget .fa-close {
      float: right;
      font-size: 18px;
      cursor: pointer; }
  .sidebar .textwidget, .sidebar .tagcloud, .sidebar .search-form, .sidebar .screen-reader-text, .sidebar .featured-content .entry {
    padding: 0 20px 20px; }
  .sidebar .postform {
    width: calc(100% - 40px);
    margin: 10px 0 0 20px; }
  .sidebar #text-5 {
    background: #CCD5D9;
    font-size: 20px;
    text-align: center; }
    .sidebar #text-5 .button {
      font-family: "Museo Slab", "museo-slab", serif;
      font-weight: 500; }

.widget.grey {
  background: #eaeaea; }
.widget.dkgrey {
  background: #444444; }
.widget.blue {
  background: #00A6C3; }
.widget.ltblue {
  background: #00B0C3; }
.widget.blue h1, .widget.blue h2, .widget.blue h3, .widget.blue h4, .widget.blue p, .widget.blue a, .widget.ltblue h1, .widget.ltblue h2, .widget.ltblue h3, .widget.ltblue h4, .widget.ltblue p, .widget.ltblue a, .widget.dkgrey h1, .widget.dkgrey h2, .widget.dkgrey h3, .widget.dkgrey h4, .widget.dkgrey p, .widget.dkgrey a {
  color: white !important; }
.widget.blue a.button, .widget.blue a.button.inverted, .widget.ltblue a.button, .widget.ltblue a.button.inverted {
  border-color: white !important;
  color: white !important; }
  .widget.blue a.button:hover, .widget.blue a.button.inverted:hover, .widget.ltblue a.button:hover, .widget.ltblue a.button.inverted:hover {
    color: #00A6C3 !important;
    background: white !important; }

/*
	- Footer Widgets
	- Site Footer
*/
/*
Footer Widgets
---------------------------------------------------------------------------------------------------- */
.footer-widgets {
  background-color: #444444;
  color: white;
  clear: both;
  padding: 40px 0 16px;
  padding: 4rem 0 1.6rem; }
  @media (max-width: 860px) {
    .footer-widgets .wrap, .footer-widgets .swiper-wrap-posts .swiper-wrapper, .swiper-wrap-posts .footer-widgets .swiper-wrapper {
      width: 80%; } }

.footer-widgets a {
  color: white; }
  .footer-widgets a .fa {
    font-size: 30px;
    margin-right: 8px; }

.footer-widgets a:hover {
  color: #ddd; }

.footer-widgets .widget {
  margin-bottom: 24px;
  margin-bottom: 2.4rem; }

h4.widget-title {
  font-family: "Museo Sans", "museo-sans", sans-serif;
  color: white !important;
  font-weight: 100;
  font-size: 26px;
  text-transform: uppercase; }

.footer-widgets .widget-title {
  color: #fff; }

.footer-widgets li {
  list-style-type: none;
  margin-bottom: 6px;
  margin-bottom: 0.6rem;
  word-wrap: break-word; }

.footer-widgets .search-form input:focus {
  border: 1px solid #ddd; }

/*
Site Footer
---------------------------------------------------------------------------------------------------- */
.site-footer {
  background-color: #2d2d2d;
  color: #c0c0c0;
  font-size: 14px;
  font-size: 1.4rem;
  padding: 40px 0;
  padding: 4rem 0;
  text-align: center; }
  .site-footer .disclaimer, .site-footer .copyright, .site-footer .powered {
    clear: both;
    display: block;
    width: 80%;
    margin: 0 auto 30px; }
    @media (max-width: 860px) {
      .site-footer .disclaimer, .site-footer .copyright, .site-footer .powered {
        width: 88%; } }
    .site-footer .disclaimer span, .site-footer .copyright span, .site-footer .powered span {
      margin-right: 20px; }
      @media (max-width: 860px) {
        .site-footer .disclaimer span, .site-footer .copyright span, .site-footer .powered span {
          display: block;
          margin: 0 0 10px; } }
  .site-footer .disclaimer {
    text-transform: uppercase; }
  .site-footer a {
    color: white; }

.site-footer p {
  margin-bottom: 0; }

/*
	- Media Queries
		- max-width: 1139px
		- max-width: 1023px
		- max-width: 767px
	Off by default, enable by uncommenting
*/
