@charset "UTF-8";
/* Reset
----------------------------------------------- */
@import "animate.css";
@import "fancybox.css";
@import "font-awesome.css";
@import url(https://fonts.googleapis.com/css?family=Amatic+SC:400,700);
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab:400,300,700,100);
html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  background: transparent;
  border: 0;
  font-size: 100%;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
}

audio,
canvas,
progress,
video {
  display: inline-block;
  vertical-align: baseline;
}

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

[hidden],
template {
  display: none;
}

a {
  background: transparent;
}

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

b,
strong {
  font-weight: 500;
}

dfn {
  font-style: italic;
}

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;
}

:focus {
  outline: 0;
}

figure {
  margin: 1em 40px;
}

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

pre {
  overflow: auto;
}

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

button,
input,
optgroup,
select,
textarea {
  color: inherit;
  font: inherit;
  margin: 0;
}

button {
  overflow: visible;
}

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;
}

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

input {
  line-height: normal;
}

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

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  height: auto;
}

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;
}

legend {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
}

optgroup {
  font-weight: 500;
}

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

td,
th {
  padding: 0;
}

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

*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

input,
button,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

a {
  outline: none;
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: none;
}

figure {
  margin: 0;
}

img {
  vertical-align: middle;
}

.clear, body > small, section form.signup, header {
  zoom: 1;
}
.clear:before, body > small:before, section form.signup:before, header:before, .clear:after, body > small:after, section form.signup:after, header:after {
  content: " ";
  display: block;
  height: 0;
  overflow: hidden;
}
.clear:after, body > small:after, section form.signup:after, header:after {
  clear: both;
}

/* ==========================================================================
   Grid
   ========================================================================== */
/*
 * Example uses:
 *
 * <div class="grid">
 *     <div class="grid-cell unit-1-2"></div>
 *     <div class="grid-cell unit-1-2"></div>
 *     <div class="grid-cell unit-1-3"></div>
 *     <div class="grid-cell unit-1-3"></div>
 * </div>
 *
 * <div class="grid grid-center">
 *     <div class="grid-cell unit-1-3"></div>
 *     <div class="grid-cell unit-1-3"></div>
 * </div>
 */
/* Grid core
   ========================================================================== */
/**
 * Grid container
 * Must only contain `.grid` or `.grid-cell` components as children.
 *
 * 1. Adjustment for child element margins.
 * 2. Ensure consistent default alignment/
 * 3. Remove inter-unit whitespace that appears between `inline-block` child
 *    elements. Work for all non-monospace font-families.  If you're using a
 *    monospace base font, you will need to set the `grid` font-family to
 *   `sans-serif` and then redeclare the monospace font on the `grid-cell`
 *    objects.
 * 4. Protect against WebKit bug with optimizelegibility.
 */
.grid {
  display: block;
  padding: 0;
  margin: 0 -15px;
  /* 1 */
  text-align: left;
  /* 2 */
  letter-spacing: -0.31em;
  /* 3 */
  text-rendering: optimizespeed;
  /* 4 */
}

/**
 * Opera hack
 */
.opera:-o-prefocus,
.grid {
  word-spacing: -0.43em;
  /* 3 */
}

/**
 * Child `grid` object adjustments
 * Used for more complex fixed-fluid hybrid grids.
 */
.grid > .grid {
  overflow: hidden;
  margin-right: 0;
  margin-left: 0;
}

/**
 * Grid units
 * No explicit width by default. Apply `.unit-x-y` classes.
 *
 * 1. Fundamentals of the non-float grid layout mechanism.
 * 2. Apply grid gutter.
 * 3. Controls vertical positioning of units.
 * 4. Keeps content correctly aligned with the grid direction.
 * 5. Reset text defaults.
 */
.grid-cell,
[class*=unit-] {
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  display: inline-block;
  /* 1 */
  margin: 0;
  padding: 0 15px;
  /* 2 */
  vertical-align: top;
  /* 3 */
  text-align: left;
  /* 4 */
  letter-spacing: normal;
  /* 5 */
  word-spacing: normal;
  /* 5 */
  text-rendering: auto;
  /* 5 */
}

/* Grid modifiers
   ========================================================================== */
/**
 * Modifier: horizontally center all grid units
 * Allows for automatic unit centering irrespective of the number of
 * units in the grid.
 */
.grid-center {
  text-align: center;
}

/**
 * Modifier: align horizontally all grid units to the left
 */
.grid-left {
  text-align: left;
}

/**
 * Modifier: align horizontally all grid units to the right
 */
.grid-right {
  text-align: right;
}

/* Grid cell modifiers
   ========================================================================== */
/**
 * Modifier: horizontally center one unit
 * Set a specific unit to be horizontally centered. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
.grid-cell-center {
  display: block;
  margin: 0 auto;
}

/**
 * Modifier: align horizontally one unit to the left
 * Set a specific unit to be horizontally on the left. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
.grid-cell-left {
  display: block;
  margin-right: auto;
}

/**
 * Modifier: align horizontally one unit to the right
 * Set a specific unit to be horizontally on the right. Doesn't affect
 * any other units. Can still contain a child `grid` object.
 */
.grid-cell-right {
  display: block;
  margin-left: auto;
}

/* Proportional units
   ========================================================================== */
/*
 * Specify the proportional width of an object.
 * Primarily for, but not limited to, use with `.grid__cell` components.
 * Intentional redundancy build into each set of unit classes.
 */
.unit-1-2,
.unit-2-4,
.unit-3-6,
.unit-6-12 {
  width: 50%;
}

.unit-1-3,
.unit-2-6,
.unit-4-12 {
  width: 33.33333%;
}

.unit-2-3,
.unit-4-6,
.unit-8-12 {
  width: 66.66667%;
}

.unit-1-4,
.unit-3-12 {
  width: 25%;
}

.unit-3-4,
.unit-9-12 {
  width: 75%;
}

.unit-1-5 {
  width: 20%;
}

.unit-2-5 {
  width: 40%;
}

.unit-3-5 {
  width: 60%;
}

.unit-4-5 {
  width: 80%;
}

.unit-1-6,
.unit-2-12 {
  width: 16.66667%;
}

.unit-5-6,
.unit-10-12 {
  width: 83.33333%;
}

.unit-1-12 {
  width: 8.33333%;
}

.unit-5-12 {
  width: 41.66667%;
}

.unit-7-12 {
  width: 58.33333%;
}

.unit-11-12 {
  width: 91.66667%;
}

@media all and (max-width: 1199px) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-1-lg {
    width: 100%;
  }
  .unit-0-1-lg {
    width: 0%;
  }
  .unit-1-2-lg,
  .unit-2-4-lg,
  .unit-3-6-lg,
  .unit-6-12-lg {
    width: 50%;
  }
  .unit-1-3-lg,
  .unit-2-6-lg,
  .unit-4-12-lg {
    width: 33.33333%;
  }
  .unit-2-3-lg,
  .unit-4-6-lg,
  .unit-8-12-lg {
    width: 66.66667%;
  }
  .unit-1-4-lg,
  .unit-3-12-lg {
    width: 25%;
  }
  .unit-3-4-lg,
  .unit-9-12-lg {
    width: 75%;
  }
  .unit-1-5-lg {
    width: 20%;
  }
  .unit-2-5-lg {
    width: 40%;
  }
  .unit-3-5-lg {
    width: 60%;
  }
  .unit-4-5-lg {
    width: 80%;
  }
  .unit-1-6-lg,
  .unit-2-12-lg {
    width: 16.66667%;
  }
  .unit-5-6-lg,
  .unit-10-12-lg {
    width: 83.33333%;
  }
  .unit-1-12-lg {
    width: 8.33333%;
  }
  .unit-5-12-lg {
    width: 41.66667%;
  }
  .unit-7-12-lg {
    width: 58.33333%;
  }
  .unit-11-12-lg {
    width: 91.66667%;
  }
}
@media all and (max-width: 1023px) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-1-md {
    width: 100%;
  }
  .unit-0-1-md {
    width: 0%;
  }
  .unit-1-2-md,
  .unit-2-4-md,
  .unit-3-6-md,
  .unit-6-12-md {
    width: 50%;
  }
  .unit-1-3-md,
  .unit-2-6-md,
  .unit-4-12-md {
    width: 33.33333%;
  }
  .unit-2-3-md,
  .unit-4-6-md,
  .unit-8-12-md {
    width: 66.66667%;
  }
  .unit-1-4-md,
  .unit-3-12-md {
    width: 25%;
  }
  .unit-3-4-md,
  .unit-9-12-md {
    width: 75%;
  }
  .unit-1-5-md {
    width: 20%;
  }
  .unit-2-5-md {
    width: 40%;
  }
  .unit-3-5-md {
    width: 60%;
  }
  .unit-4-5-md {
    width: 80%;
  }
  .unit-1-6-md,
  .unit-2-12-md {
    width: 16.66667%;
  }
  .unit-5-6-md,
  .unit-10-12-md {
    width: 83.33333%;
  }
  .unit-1-12-md {
    width: 8.33333%;
  }
  .unit-5-12-md {
    width: 41.66667%;
  }
  .unit-7-12-md {
    width: 58.33333%;
  }
  .unit-11-12-md {
    width: 91.66667%;
  }
}
@media all and (max-width: 767px) {
  /* Proportional units
     ========================================================================== */
  /*
   * Specify the proportional width of an object.
   * Primarily for, but not limited to, use with `.grid__cell` components.
   * Intentional redundancy build into each set of unit classes.
   */
  .unit-1-1-sm {
    width: 100%;
  }
  .unit-0-1-sm {
    width: 0%;
  }
  .unit-1-2-sm,
  .unit-2-4-sm,
  .unit-3-6-sm,
  .unit-6-12-sm {
    width: 50%;
  }
  .unit-1-3-sm,
  .unit-2-6-sm,
  .unit-4-12-sm {
    width: 33.33333%;
  }
  .unit-2-3-sm,
  .unit-4-6-sm,
  .unit-8-12-sm {
    width: 66.66667%;
  }
  .unit-1-4-sm,
  .unit-3-12-sm {
    width: 25%;
  }
  .unit-3-4-sm,
  .unit-9-12-sm {
    width: 75%;
  }
  .unit-1-5-sm {
    width: 20%;
  }
  .unit-2-5-sm {
    width: 40%;
  }
  .unit-3-5-sm {
    width: 60%;
  }
  .unit-4-5-sm {
    width: 80%;
  }
  .unit-1-6-sm,
  .unit-2-12-sm {
    width: 16.66667%;
  }
  .unit-5-6-sm,
  .unit-10-12-sm {
    width: 83.33333%;
  }
  .unit-1-12-sm {
    width: 8.33333%;
  }
  .unit-5-12-sm {
    width: 41.66667%;
  }
  .unit-7-12-sm {
    width: 58.33333%;
  }
  .unit-11-12-sm {
    width: 91.66667%;
  }
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
  /*.slick-loading & {
      background: #fff slick-image-url("ajax-loader.gif") center center no-repeat;
  }*/
}

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

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

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

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

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

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

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

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

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

.slick-slide img {
  display: block;
}

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

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

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

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

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

/* Icons */
@font-face {
  font-family: "slick";
  src: url("/workspace/media/fonts/slick.eot");
  src: url("/workspace/media/fonts/slick.eot?#iefix") format("embedded-opentype"), url("/workspace/media/fonts/slick.woff") format("woff"), url("/workspace/media/fonts/slick.ttf") format("truetype"), url("/workspace/media/fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
/*.slick-prev,
.slick-next {
    position: absolute;
    display: block;
    height: 30px;
    width: 30px;
    line-height: 0;
    font-size: 0;
    cursor: pointer;
    background-color: #444444;
    background-repeat: no-repeat;
    color: #fff;
    top: 95px;
    padding: 0;
    border: none;
    outline: none;
    &:hover, &:focus {
      background-color: #6fb6d9;
    }
    &.slick-disabled:before {
      opacity: $opacity-not-active;
    }
}
.slick-prev {
  @include background-image-retina('../images/prev', 'png', 9px, 16px);
  background-position: 10px center;
  left: -30px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  @media all and (max-width: 767px) {
    left: -20px;
  }
}
.slick-next {
  @include background-image-retina('../images/next', 'png', 9px, 16px);
  background-position: 12px center;
  right: -30px;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  @media all and (max-width: 767px) {
    right: -20px;
  }
}*/
/* Dots */
/*.slick-dots {
    position: absolute;
    bottom: -60px;
    list-style: none;
    display: block;
    text-align: center;
    padding: 0;
    width: 100%;
    @media all and (max-width: 767px) {
      display: none !important;
    }
    li {
        position: relative;
        display: inline-block;
        height: 8px;
        width: 8px;
        margin: 0 5px;
        padding: 0;
        cursor: pointer;
        button {
          border: 0;
          background: #cadcdb;
          border-radius: 100%;
          -moz-border-radius: 100%;
          -webkit-border-radius: 100%;
          color: #353535;
          display: block;
          height: 8px;
          width: 8px;
          outline: none;
          line-height: 0;
          font-size: 0;
          color: transparent;
          padding: 0;
          cursor: pointer;
          &:hover, &:focus {
            background: $slick-dot-color-active;
          }
        }
        &.slick-active button {
          background: $slick-dot-color-active;
        }
    }
}*/
/*
-----------------------------------------------
Ozark Greenways Screen Styles
Author: Chad Spencer
----------------------------------------------- */
/* Grid and Special Classes
----------------------------------------------- */
.hidden {
  display: none;
}

@media all and (max-width: 1199px) {
  .hidden-lg {
    display: none;
  }
}

@media all and (max-width: 1023px) {
  .hidden-md {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .hidden-sm {
    display: none;
  }
}

.left {
  float: left;
}

@media all and (min-width: 1024px) {
  .left-md {
    float: left;
  }
}

.right {
  float: right;
}

@media all and (min-width: 1024px) {
  .right-md {
    float: right;
  }
}

.text-center {
  text-align: center;
}

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

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

.margin {
  margin-bottom: 40px;
}
@media all and (max-width: 767px) {
  .margin {
    margin-bottom: 20px;
  }
}

.margin-half {
  margin-bottom: 20px;
}
@media all and (max-width: 767px) {
  .margin-half {
    margin-bottom: 10px;
  }
}

.margin-double {
  margin-bottom: 60px;
}
@media all and (max-width: 767px) {
  .margin-double {
    margin-bottom: 30px;
  }
}

.invisible {
  visibility: hidden;
}

.animated {
  visibility: visible !important;
}

.unit-center {
  vertical-align: middle;
}

.reverse {
  direction: rtl;
}
.reverse div {
  direction: ltr;
}

/* Global
----------------------------------------------- */
body {
  background: #283a00;
  color: #444444;
  font-family: proxima-nova-condensed, Arial, Helvetica, Verdana, sans-serif;
  font-weight: normal;
}
@media all and (max-width: 1024px) {
  body {
    -webkit-text-size-adjust: none;
  }
}
@media all and (max-width: 1023px) {
  body {
    padding: 65px 0 0 0;
  }
}
@media all and (max-width: 767px) {
  body {
    overflow-x: hidden;
  }
}

a {
  color: #72be44;
}
a:hover {
  color: #3a5300;
  text-decoration: none;
}

img {
  height: auto !important;
  max-width: 100%;
}
img.full {
  width: 100%;
}

b,
strong {
  font-weight: bold;
}

/* Header
----------------------------------------------- */
header {
  background: #fff;
}
@media all and (max-width: 1023px) {
  header {
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
  }
}
header.open span {
  background-color: transparent;
}
header.open span:before {
  top: 0;
  transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -webkit-transform: rotate(-45deg);
}
header.open span:after {
  bottom: 0;
  transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
}
header.open > ul {
  display: block;
  visibility: visible;
}
header span {
  display: none;
}
@media all and (max-width: 1023px) {
  header span {
    cursor: pointer;
    display: block;
    height: 30px;
    position: absolute;
    right: 20px;
    top: 18px;
    width: 24px;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  }
  header span span {
    background: #72be44;
    display: block;
    height: 3px;
    left: 0;
    position: absolute;
    top: 13px;
    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    width: 24px;
  }
  header span span:before {
    background: #72be44;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    top: -7px;
    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    width: 24px;
  }
  header span span:after {
    background: #72be44;
    bottom: -7px;
    content: "";
    display: block;
    height: 3px;
    position: absolute;
    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    width: 24px;
  }
}
header h2 a {
  background-image: url("../images/logo.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  header h2 a {
    background-image: url("../images/logo@2x.png");
    background-size: 158px 66px;
  }
}
header h2 a {
  display: block;
  float: left;
  font-size: 0;
  height: 66px;
  margin: 10px 0 15px 5%;
  width: 158px;
}
@media all and (max-width: 1023px) {
  header h2 a {
    background-size: 96px 40px;
    float: left;
    height: 40px;
    left: 0;
    position: relative;
    width: 96px;
  }
}
header > ul {
  float: right;
  font-size: 0;
  position: relative;
}
@media all and (max-width: 1023px) {
  header > ul {
    background: #3a5300;
    box-sizing: border-box;
    display: none;
    float: none;
    left: 0;
    max-height: calc(100vh - 65px);
    overflow: scroll;
    padding: 0;
    position: absolute;
    text-align: left;
    transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -webkit-transition: all 0.2s linear;
    top: 65px;
    visibility: hidden;
    width: 100%;
  }
}
header > ul > li {
  display: inline-block;
  margin: 0 0 0 1px;
  position: relative;
}
@media all and (max-width: 1023px) {
  header > ul > li {
    display: block;
    margin: 0;
  }
}
header > ul > li:hover a {
  background: #72be44;
  color: #fff;
}
@media all and (max-width: 1023px) {
  header > ul > li:hover a {
    background: none;
  }
}
header > ul > li:hover ul {
  display: block;
}
@media all and (max-width: 1023px) {
  header > ul > li:hover ul {
    display: none;
  }
}
header > ul > li > a {
  color: #444444;
  display: inline-block;
  font: 400 20px/90px proxima-nova, Arial, Helvetica, Verdana, sans-serif;
  padding: 0 25px;
  text-transform: uppercase;
}
@media all and (max-width: 1199px) {
  header > ul > li > a {
    padding: 0 15px;
  }
}
@media all and (max-width: 1023px) {
  header > ul > li > a {
    border-bottom: 1px solid #283a00;
    color: #fff;
    display: block;
    height: calc((100vh - 65px) / 8);
    line-height: calc((100vh - 65px) / 8);
    margin: 0;
    padding: 0 5%;
  }
}
header > ul > li > a.current {
  background: #72be44;
  color: #fff;
}
@media all and (max-width: 1023px) {
  header > ul > li > a.current {
    background: #283a00;
  }
}
header > ul > li ul {
  background: #72be44;
  display: none;
  left: 0;
  min-width: 100%;
  overflow: hidden;
  position: absolute;
  top: 100%;
  z-index: 10;
}
header > ul > li ul li {
  display: block;
}
header > ul > li ul li a {
  color: #fff;
  display: block;
  font: normal 16px/24px Arial, Helvetica, Verdana, sans-serif;
  margin: 20px 25px;
  white-space: nowrap;
}
header > ul > li ul li a:hover {
  color: #3a5300;
}

/* Content
----------------------------------------------- */
body > h1 {
  background: #f2f3e9 url(../images/texture.png) center center;
  font: 300 40px/40px proxima-nova-condensed, Arial, Helvetica, Verdana, sans-serif;
  padding: 30px 5%;
}

section {
  background: #fff;
  padding: 0 5%;
  position: relative;
}
section:last-of-type {
  padding-bottom: 220px;
}
section.hero {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  height: calc(100vh - 120px);
  min-height: 400px;
}
@media all and (max-width: 1199px) {
  section.hero {
    height: 400px;
    min-height: 0;
  }
}
@media all and (max-width: 767px) {
  section.hero {
    height: 300px;
  }
}
section.slideshow {
  padding: 0;
}
section.slideshow div.slide {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  display: table;
  height: 80vh;
  min-height: 500px;
  text-align: center;
}
@media all and (max-width: 1023px) {
  section.slideshow div.slide {
    height: 500px;
    min-height: 0;
  }
}
@media all and (max-width: 767px) {
  section.slideshow div.slide {
    height: 300px;
  }
}
section.slideshow div.slide div {
  display: table-cell;
  vertical-align: middle;
}
section.slideshow div.slide div h2 {
  background: none;
  color: #fff;
  font: 700 70px/110px proxima-nova, Arial, Helvetica, Verdana, sans-serif;
  margin-bottom: 30px;
  padding: 0;
  text-transform: uppercase;
}
@media all and (max-width: 1199px) {
  section.slideshow div.slide div h2 {
    font-size: 90px;
    line-height: 100px;
  }
}
@media all and (max-width: 767px) {
  section.slideshow div.slide div h2 {
    font-size: 35px;
    line-height: 45px;
    margin-bottom: 10px;
  }
}
section.slideshow ul.slick-dots {
  bottom: 30px;
  display: block;
  font-size: 0;
  left: 10%;
  position: absolute;
  text-align: center;
  z-index: 100;
  width: 80%;
}
@media all and (max-width: 1199px) {
  section.slideshow ul.slick-dots {
    bottom: 10px;
  }
}
@media all and (max-width: 767px) {
  section.slideshow ul.slick-dots {
    bottom: 0;
  }
}
section.slideshow ul.slick-dots li {
  display: inline-block;
  margin: 0 5px;
  padding: 0;
}
section.slideshow ul.slick-dots li.slick-active button {
  background: #72be44;
}
section.slideshow ul.slick-dots li.slick-active button:hover {
  background: #72be44;
}
section.slideshow ul.slick-dots li:before {
  display: none;
}
section.slideshow ul.slick-dots li button {
  background: #fff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border: none;
  display: block;
  height: 16px;
  padding: 0;
  text-indent: -9999px;
  width: 16px;
}
@media all and (max-width: 767px) {
  section.slideshow ul.slick-dots li button {
    height: 10px;
    width: 10px;
  }
}
section.slideshow ul.slick-dots li button:hover {
  background: #f2f3e9;
}
section.cream {
  background: #f2f3e9 url(../images/texture.png) center center;
}
section.clean {
  padding: 0;
}
section.background-left:before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  left: 0;
  position: absolute;
  top: 0;
  width: 46%;
}
@media all and (max-width: 767px) {
  section.background-left:before {
    display: none;
  }
}
section.background-right:before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  height: 100%;
  position: absolute;
  right: 0;
  top: 0;
  width: 46%;
}
@media all and (max-width: 767px) {
  section.background-right:before {
    display: none;
  }
}
section.home-trails:before {
  background-image: url(../images/frontpage-bigchair.jpg);
}
section.home-about:before {
  background-image: url(../images/home-about.jpg);
}
section ul.tiles {
  font-size: 0;
  margin: 0;
}
section ul.tiles li {
  box-sizing: border-box;
  display: inline-block;
  position: relative;
  width: 25%;
}
@media all and (max-width: 767px) {
  section ul.tiles li {
    width: 50%;
  }
}
section ul.tiles li:first-of-type a {
  border: none;
}
@media all and (max-width: 767px) {
  section ul.tiles li:nth-of-type(2) a {
    border-top: none;
  }
}
@media all and (max-width: 767px) {
  section ul.tiles li:nth-of-type(3) a {
    border-left: none;
  }
}
section ul.tiles li:before {
  background: none;
  content: "";
  display: block;
  height: auto;
  left: auto;
  position: static;
  padding-top: 100%;
  top: auto;
  width: auto;
}
section ul.tiles li a {
  border-left: 1px solid #fff;
  box-sizing: border-box;
  color: #444444;
  display: block;
  left: 0;
  height: 100%;
  position: absolute;
  text-align: center;
  top: 0;
  width: 100%;
}
@media all and (max-width: 767px) {
  section ul.tiles li a {
    border-top: 1px solid #fff;
  }
}
section ul.tiles li a:hover div h3:before {
  top: -10px;
}
@media all and (max-width: 1199px) {
  section ul.tiles li a:hover div h3:before {
    top: 0;
  }
}
section ul.tiles li a:hover div p {
  bottom: 0;
}
section ul.tiles li a div {
  display: table;
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
}
section ul.tiles li a div h3 {
  border: none;
  display: table-cell;
  font: normal 28px/50px proxima-nova, Arial, Helvetica, Verdana, sans-serif;
  margin: 0;
  vertical-align: middle;
}
@media all and (max-width: 767px) {
  section ul.tiles li a div h3 {
    font-size: 30px;
    line-height: 40px;
  }
}
section ul.tiles li a div h3:before {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: auto 100%;
  content: "";
  display: block;
  height: 100px;
  margin: 0 0 10px 0;
  position: relative;
  top: 0;
  transition: all 0.3s linear;
  -moz-transition: all 0.3s linear;
  -webkit-transition: all 0.3s linear;
  width: 100%;
}
@media all and (max-width: 1023px) {
  section ul.tiles li a div h3:before {
    height: 40px;
    margin-bottom: 5px;
  }
}
section ul.tiles li a div h3.compass:before {
  background-image: url(../images/compass.png);
}
section ul.tiles li a div h3.heart:before {
  background-image: url(../images/heart.png);
}
section ul.tiles li a div h3.map:before {
  background-image: url(../images/Location.png);
}
section ul.tiles li a div h3.calendar:before {
  background-image: url(../images/calendar.png);
}
section ul.tiles li a div p {
  background: #72be44;
  background: rgba(114, 190, 68, 0.9);
  bottom: -100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  box-sizing: border-box;
  color: #fff;
  display: block;
  left: 0;
  margin: 0;
  padding: 20px;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -moz-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  -webkit-transition: all 0.3s cubic-bezier(0.075, 0.82, 0.165, 1);
  width: 100%;
}
@media all and (max-width: 1199px) {
  section ul.tiles li a div p {
    display: none;
  }
}
section article {
  box-sizing: border-box;
  margin: 0 auto;
  padding: 80px 0;
  width: 1180px;
}
@media all and (max-width: 1399px) {
  section article {
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  section article {
    padding: 50px 0;
  }
}
section article.clean {
  padding-bottom: 30px;
}
section article.lift {
  background: #fff;
  margin-bottom: -140px;
  padding: 80px 80px 0 80px;
  position: relative;
  top: -140px;
  z-index: 10;
}
@media all and (max-width: 1023px) {
  section article.lift {
    padding: 80px 30px;
  }
}
section article.alt h1,
section article.alt h2 {
  background: none;
  padding: 0;
}
section h1,
section h2 {
  background: url(../images/rule.png) center bottom repeat-x;
  font: 300 40px/40px proxima-nova-condensed, Arial, Helvetica, Verdana, sans-serif;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
}
@media all and (max-width: 767px) {
  section h1,
  section h2 {
    font-size: 25px;
    line-height: 30px;
  }
}
section h1.clean,
section h2.clean {
  background: none;
  margin: 0;
  padding: 0;
}
section h1.clean.margin,
section h2.clean.margin {
  margin: 0 0 10px 0;
}
section h1.event,
section h2.event {
  margin: 0 0 0 105px;
}
section h3 {
  border-bottom: 1px dashed #444444;
  font: 400 22px/25px proxima-nova-condensed, Arial, Helvetica, Verdana, sans-serif;
  margin: 0 0 10px 0;
  padding: 0 0 10px 0;
}
section h3.trail-listing-title {
  border: none;
  font: 300 40px/40px proxima-nova-condensed, Arial, Helvetica, Verdana, sans-serif;
  margin: 0 0 20px 0;
  padding: 0 0 20px 0;
}
@media all and (max-width: 767px) {
  section h3.trail-listing-title {
    font-size: 25px;
    line-height: 30px;
  }
}
section h3.clean {
  border: none;
  padding: 0;
}
section h4 {
  font: normal 40px/45px proxima-nova, Arial, Helvetica, Verdana, sans-serif;
  margin: 0 0 30px 0;
}
section h5 {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 10px 0;
  text-transform: uppercase;
}
section hr {
  background: url(../images/rule.png) center bottom repeat-x;
  border: none;
  display: block;
  height: 2px;
  margin: 40px 0;
}
section hr.alt {
  background: none;
  border-bottom: 1px dashed #444444;
  height: 0px;
  margin: 20px 0 30px 0;
}
section p {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 25px 0;
}
section p.event {
  margin: 0 0 0 90px;
}
section p.map {
  background-image: url("../images/icon-map.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  section p.map {
    background-image: url("../images/icon-map@2x.png");
    background-size: 54px 49px;
  }
}
section p.map {
  background-repeat: no-repeat;
  padding: 0 0 0 70px;
}
section p.itinerary {
  background-image: url("../images/icon-itinerary.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  section p.itinerary {
    background-image: url("../images/icon-itinerary@2x.png");
    background-size: 50px 50px;
  }
}
section p.itinerary {
  background-repeat: no-repeat;
  padding: 0 0 5px 70px;
}
section p.gallery {
  background-image: url("../images/icon-gallery.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  section p.gallery {
    background-image: url("../images/icon-gallery@2x.png");
    background-size: 55px 51px;
  }
}
section p.gallery {
  background-repeat: no-repeat;
  padding: 0 0 0 70px;
  min-height: 51px;
}
section p > i,
section p > em {
  color: #999999;
}
section .gallery-thumbnails {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 10px;
}
section .gallery-thumbnails a {
  display: block;
  width: 60px;
  height: 60px;
  overflow: hidden;
}
section .gallery-thumbnails a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
section ol {
  margin: 0 0 25px 0;
}
section ol li {
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 0 22px;
}
section ul {
  margin: 0 0 25px 0;
}
section ul.social {
  font-size: 0;
  margin: 0;
}
section ul.social p {
  display: inline-block;
  margin: 0 15px 0 0;
}
section ul.social li {
  display: inline-block;
  padding: 0;
}
section ul.social li:before {
  display: none;
}
section ul.social li a {
  background: #444444;
  color: #fff;
  display: inline-block;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
}
section ul.social li a.facebook {
  background: #617bba;
}
section ul.social li a.twitter {
  background: #95ccee;
}
section ul.social li a.instagram {
  background: #617bba;
}
section ul.pagination {
  display: block;
  text-align: center;
}
section ul.pagination li {
  display: inline-block;
  padding: 0;
}
section ul.pagination li:before {
  display: none;
}
section ul.pagination li.disabled {
  display: none;
}
section ul.pagination li.selected a {
  background: #f2f3e9;
  color: #3a5300;
}
section ul.pagination li a {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  margin: 0 3px;
  padding: 5px 10px;
}
section ul li {
  display: block;
  font-size: 16px;
  line-height: 24px;
  padding: 0 0 0 30px;
  position: relative;
}
section ul li:before {
  background: #444444;
  content: "";
  display: block;
  height: 2px;
  left: 0;
  position: absolute;
  top: 11px;
  width: 10px;
}
section table {
  display: table;
  margin: 0 0 50px 0;
  width: 100%;
}
section table tr {
  border-bottom: 1px dashed #444444;
}
section table tr td {
  padding: 20px;
  text-aling: left;
}
section table tr td h3 {
  border: none;
  margin: 0;
  padding: 0;
}
section table tr td p {
  margin: 0;
}
section form {
  display: block;
}
section form label {
  display: block;
  font-size: 16px;
  line-height: 24px;
  margin: 0 0 20px 0;
  text-transform: uppercase;
}
section form label input,
section form label textarea {
  background: #fafafa;
  border: none;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  box-sizing: border-box;
  display: block;
  margin: 5px 0 0 0;
  padding: 20px;
  width: 100%;
}
section time {
  background: #fafafa;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  color: #444444;
  display: block;
  float: left;
  font-size: 38px;
  height: 75px;
  line-height: 90px;
  margin: 5px 0 0 0;
  overflow: hidden;
  position: relative;
  text-align: center;
  text-transform: uppercase;
  width: 75px;
}
section time span {
  background: #c03030;
  color: #fff;
  display: block;
  font-size: 13px;
  left: 0;
  line-height: 15px;
  padding: 3px 0;
  position: absolute;
  text-transform: none;
  top: 0;
  width: 100%;
}
section a.button {
  background: #72be44;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  color: #fff;
  display: inline-block;
  font: normal 20px/40px proxima-nova, Arial, Helvetica, Verdana, sans-serif;
  padding: 15px 40px;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
section a.button.small {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  font: bold 14px/20px Arial, Helvetica, Verdana, sans-serif;
  padding: 15px 30px;
}
section a.button:hover {
  background: #3a5300;
}
section a.button i {
  color: inherit;
  display: inline-block;
  margin: 0 10px;
}
section a.event {
  background: #f2f3e9;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  display: block;
  margin: 0 0 40px 0;
}
section a.event time {
  margin: 15px 0 0 15px;
}
section a.event p {
  background: #fff;
  box-sizing: border-box;
  color: #444444;
  margin: 0 0 0 105px;
  min-height: 105px;
  padding: 10px 15px;
}
section form {
  margin: 0 0 30px 0;
}
section form.signup {
  width: 100%;
}
section form.signup input {
  background: #fafafa;
  border: none;
  border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  box-sizing: border-box;
  color: #444444;
  display: block;
  float: left;
  font: normal 16px/20px Arial, Helvetica, Verdana, sans-serif;
  padding: 15px;
  width: 65%;
}
section form.signup button {
  background: #72be44;
  border: none;
  border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: block;
  float: left;
  font: bold 13px/20px Arial, Helvetica, Verdana, sans-serif;
  margin: 0;
  padding: 15px 0;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  width: 35%;
}
section form.signup button:hover {
  background: #283a00;
}
section form button {
  background: #72be44;
  border: none;
  border-radius: 10px;
  -moz-border-radius: 10px;
  -webkit-border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: inline-block;
  font: normal 20px/40px proxima-nova, Arial, Helvetica, Verdana, sans-serif;
  padding: 15px 40px;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
}
section form button:hover {
  background: #3a5300;
}
section form button i {
  color: inherit;
  display: inline-block;
  margin: 0 10px 0 0;
}
section aside {
  margin: 0 0 0 30px;
}
@media all and (max-width: 1023px) {
  section aside {
    margin: 0;
  }
}
section aside ul li {
  padding: 0;
}
section aside ul li:before {
  display: none;
}
section aside div.description ul {
  column-count: 2;
  -moz-column-count: 2;
  -webkit-column-count: 2;
}
section div#map-canvas {
  background: #444444;
  height: 80vh;
  min-height: 500px;
}
section div#map-controls {
  padding: 20px 5% 10px 5%;
  text-align: center;
}
section div#map-controls form {
  margin: 0 0 10px 0;
}
section div#map-controls form input {
  border: 0;
  clip: rect(0 0 0 0);
  height: 1px;
  overflow: hidden;
  margin: -1px;
  padding: 0;
  position: absolute;
  width: 1px;
}
section div#map-controls form input + label {
  cursor: pointer;
  display: inline-block;
  font-size: 16px;
  height: 20px;
  line-height: 20px;
  margin: 0 30px 10px 0;
  padding: 0 0 0 30px;
  position: relative;
  vertical-align: middle;
}
section div#map-controls form input + label:before {
  background: #fff;
  border: 1px solid #444444;
  border-radius: 3px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  content: "";
  display: block;
  height: 20px;
  left: 0;
  position: absolute;
  top: 0;
  width: 20px;
}
section div#map-controls form input:checked + label:before {
  background: #444444;
}
section div#map-controls ul {
  display: inline-block;
  margin: 0;
}
section div#map-controls ul.hidden {
  display: none;
}
section div#map-controls ul li {
  display: inline-block;
  font-size: 14px;
  line-heigh: 18px;
  margin: 0 10px 10px 0;
  padding-left: 17px;
}
section div#map-controls ul li:before {
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  border: 1px solid #fff;
  height: 12px;
  left: 0;
  position: absolute;
  top: 6px;
  width: 12px;
}
section div#map-controls ul li.bike-lanes:before {
  background: #a0e;
}
section div#map-controls ul li.shared-lane:before {
  background: #f00;
}
section div#map-controls ul li.bike-route:before {
  background: #fa0;
}
section div#map-controls ul li.share-road:before {
  background: #ff0;
}
section div#map-controls ul li.trails:before {
  background: #fff;
}
section div#map-controls ul li.link:before {
  background: #00f;
}
section div#map-controls ul li.gravel:before {
  background: #00e9a9;
}
section div#map-controls ul li.asphault:before {
  background: #4eeb01;
}
section div#map-controls ul li span.mulch:before {
  background: #ae7400;
}
section div#map-controls ul li span.water:before {
  background: #0071ff;
}
section div.event-detail {
  padding: 0 0 0 105px;
  position: relative;
}
section div.event-detail ul.social {
  left: 0;
  position: absolute;
  top: 0;
}
section div.event-detail ul.social p {
  display: block;
  margin: 0 0 10px 0;
}
section div.event-detail ul.social li {
  display: block;
}

/* Single Post — content images full-width with vertical spacing */
.single-post section article img {
  display: block;
  height: auto;
  margin: 30px 0;
  max-width: 100%;
  width: 100%;
}

/* WordPress pagination styling */
nav.navigation.pagination {
  margin: 40px 0 0 0;
  text-align: center;
}
nav.navigation.pagination .nav-links .page-numbers {
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  margin: 0 3px;
  padding: 5px 10px;
}
nav.navigation.pagination .nav-links .page-numbers.current {
  background: #f2f3e9;
  color: #3a5300;
}

/* Footer
----------------------------------------------- */
footer {
  background: #3a5300;
  padding: 40px 5% 50px 5%;
  position: relative;
}
@media all and (max-width: 767px) {
  footer {
    padding-bottom: 0;
    padding-top: 0;
  }
}
footer:before {
  background-image: url("../images/footer-ground.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  footer:before {
    background-image: url("../images/footer-ground@2x.png");
    background-size: 1135px 52px;
  }
}
footer:before {
  background-position: center center;
  background-repeat: repeat-x;
  content: "";
  display: block;
  height: 52px;
  left: 0;
  position: absolute;
  top: -52px;
  width: 100%;
  z-index: 10;
}
footer:after {
  background-image: url("../images/footer-people.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  footer:after {
    background-image: url("../images/footer-people@2x.png");
    background-size: 1196px 196px;
  }
}
footer:after {
  background-repeat: no-repeat;
  background-position: center center;
  content: "";
  display: block;
  height: 196px;
  left: 0;
  position: absolute;
  top: -220px;
  width: 100%;
  z-index: 20;
}
@media all and (max-width: 1023px) {
  footer:after {
    background-position: 5% center;
  }
}
footer > div {
  margin: 0 auto;
  width: 1180px;
}
@media all and (max-width: 1399px) {
  footer > div {
    width: 100%;
  }
}
@media all and (max-width: 767px) {
  footer > div {
    padding: 50px 0;
  }
}
footer > div:before {
  background-image: url("../images/footer-background-left.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  footer > div:before {
    background-image: url("../images/footer-background-left@2x.png");
    background-size: 472px 190px;
  }
}
footer > div:before {
  background-position: left center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 190px;
  left: 0;
  position: absolute;
  top: -230px;
  width: 100%;
}
footer > div:after {
  background-image: url("../images/footer-background-right.png");
}
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  footer > div:after {
    background-image: url("../images/footer-background-right@2x.png");
    background-size: 367px 186px;
  }
}
footer > div:after {
  background-position: right center;
  background-repeat: no-repeat;
  content: "";
  display: block;
  height: 186px;
  position: absolute;
  right: 0;
  top: -220px;
  width: 100%;
}
@media all and (max-width: 1023px) {
  footer > div:after {
    display: none;
  }
}
footer > div h6 {
  font-size: 15px;
  font-weight: normal;
  line-height: 20px;
  margin: 0 0 5px 0;
  text-transform: uppercase;
}
footer > div h6 a {
  color: #fff;
}
footer > div h6 a:hover {
  color: #f2f3e9;
}
footer > div ul {
  margin: 0 0 20px 0;
}
footer > div ul.social {
  font-size: 0;
  margin: 20px 0 0 0;
}
footer > div ul.social li {
  display: inline-block;
  margin: 0 10px 0 0;
}
footer > div ul.social li:first-of-type a {
  background: #617bba;
}
footer > div ul.social li:nth-of-type(2) a {
  background: #cd654e;
}
footer > div ul.social li:nth-of-type(3) a {
  background: #617bba;
}
footer > div ul.social li a {
  color: #fff;
  display: block;
  font-size: 20px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  width: 40px;
}
footer > div ul li {
  font-size: 13px;
  line-height: 15px;
  list-style-type: none;
  margin: 0 0 5px 0;
}
footer > div ul li a:hover {
  color: #f2f3e9;
}
footer > div p {
  color: #fff;
  font-size: 13px;
  line-height: 20px;
  margin: 0 0 20px 0;
}
footer > div hr {
  background: #f2f3e9;
  border: none;
  display: block;
  height: 1px;
  margin: 30px 0;
}
footer > div form {
  width: 100%;
}
footer > div form input {
  background: #fff;
  border: none;
  border-radius: 10px 0 0 10px;
  -moz-border-radius: 10px 0 0 10px;
  -webkit-border-radius: 10px 0 0 10px;
  box-sizing: border-box;
  color: #444444;
  display: block;
  float: left;
  font: normal 16px/20px Arial, Helvetica, Verdana, sans-serif;
  padding: 20px;
  width: 65%;
}
footer > div form button {
  background: #72be44;
  border: none;
  border-radius: 0 10px 10px 0;
  -moz-border-radius: 0 10px 10px 0;
  -webkit-border-radius: 0 10px 10px 0;
  box-sizing: border-box;
  color: #fff;
  cursor: pointer;
  display: block;
  float: left;
  font: bold 13px/20px Arial, Helvetica, Verdana, sans-serif;
  margin: 0;
  padding: 20px 0;
  text-align: center;
  text-transform: uppercase;
  transition: all 0.2s linear;
  -moz-transition: all 0.2s linear;
  -webkit-transition: all 0.2s linear;
  width: 35%;
}
footer > div form button:hover {
  background: #283a00;
}

body > small {
  color: #fff;
  display: block;
  font-size: 13px;
  line-height: 20px;
  padding: 20px 5%;
}
body > small span:first-of-type {
  float: left;
}
body > small span:last-of-type {
  float: right;
}

/*# sourceMappingURL=screen.css.map */
