/* 
 * COLOR CODES
 * #872B00; // burnt
 * #FFEAB0; // burnt-border
 * #292621; // dark-brown
 * #403F32; // dark-olive
 * #006938; // green
 * #FEFCF0; // light beige
 * #FBF3DE; // dark-beige
 *
 * 
 * BROWSER PREFIXES (for certian selectors)
 * Android: -webkit-
 * Chrome: -webkit-
 * Firefox: -moz-
 * Internet Explorer: -ms-
 * iOS: -webkit-
 * Opera: -o-
 * Safari: -webkit-
 */



@import url("//fonts.googleapis.com/css?family=Cabin+Sketch:700|Fira+Sans:400,400i,500,700");
html {
  box-sizing: border-box;
}

*, *::after, *::before {
  box-sizing: inherit;
}
/*
  base.scss
*/
body#wlrv {
  font-family: 'Fira Sans';
  box-sizing: border-box;
  font-size: 1rem;
  -webkit-font-smoothing: auto;
  -moz-osx-font-smoothing: auto;
  min-width: 320px;
  width: 100%;
  height: 100%;
  background-color: #006938;
  margin: 0;
}

#wlrv header,
#wlrv nav,
#wlrv h1, #wlrv h2, #wlrv h3, #wlrv h4, #wlrv h5, #wlrv h6,
#wlrv div,
#wlrv fieldset,
#wlrv p,
#wlrv section,
#wlrv ul,
#wlrv .wrapper {
  margin: 0;
  padding: 0;
}

#wlrv fieldset {
  border: 0;
}

#wlrv input:focus, #wlrv input:active {
  outline: none;
}

#wlrv input[type='search'] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  color: #403F32;
  padding: 6px 8px;
  font-size: 14px;
  border: 1px solid #E6DDC3;
  outline: none;
  width: 230px;
  border-radius: 2px;
}

#wlrv input[type='search']:hover {
  border-color: #FFEAB0;
}

#wlrv input[type='search']:focus {
  border-color: #E6DDC3;
}

#wlrv input[type='submit'] {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  -o-appearance: none;
  -ms-appearance: none;
  cursor: pointer;
  color: #FFFEEC;
  background-color: #ADAC91;
}

#wlrv img {
  box-sizing: content-box;
  max-width: 100%;
  height: inherit;
}

#wlrv figure,
#wlrv .wp-caption {
  max-width: 100%;
}

#wlrv .alignnone {
  clear: both;
  margin-left: 0;
  margin-right: 0;
}

#wlrv .aligncenter {
  clear: both;
  margin-left: auto;
  margin-right: auto;
}

#wlrv .alignleft {
  float: left;
  margin: 0 10px 10px 0;
}

#wlrv .alignright {
  float: right;
  margin: 0 0 10px 10px;
}

#wlrv .arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -6px;
  width: 0;
  height: 0;
}

#wlrv .wlrvslider-prev .arrow {
  margin-left: -4px;
  border-top: 6px solid transparent;
  border-right: 6px solid #333;
  border-bottom: 6px solid transparent;
}

#wlrv .wlrvslider-next .arrow {
  margin-left: -2px;
  border-top: 6px solid transparent;
  border-left: 6px solid #333;
  border-bottom: 6px solid transparent;
}

#wlrv .wlrvslider-prev,
#wlrv .wlrvslider-next {
  position: absolute;
  top: 50%;
  z-index: 501;
  display: block;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  border-radius: 40px;
  background: #fefefe;
  opacity: 0;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
  transition: all 0.5s;
  -webkit-box-shadow: 1px 1px 2px 0px #333333;
  box-shadow: 1px 1px 2px 0px #333333;
}

#wlrv .wlrvslider-prev {
  left: 20px;
}

#wlrv .wlrvslider-next {
  right: 20px;
}

#wlrv .wlrvslider-prev:hover,
#wlrv .wlrvslider-next:hover {
  opacity: 1;
}

#wlrv img.cms-float-left, #wlrv img.left {
  float: left;
  margin: 1em 1em 1em 0;
}

#wlrv img.cms-float-left.top, #wlrv img.left.top {
  margin-top: 0;
}

#wlrv img.cms-float-left.bottom, #wlrv img.left.bottom {
  margin-bottom: 0;
}

#wlrv img.cms-float-right, #wlrv img.right {
  float: right;
  margin: 1em 0 1em 1em;
}

#wlrv img.cms-float-right.top, #wlrv img.right.top {
  margin-top: 0;
}

#wlrv img.cms-float-right.bottom, #wlrv img.right.bottom {
  margin-bottom: 0;
}

#wlrv img.hide-image-border {
  border: none;
  box-shadow: none;
}

#wlrv .hide {
  display: none;
}

#wlrv .show {
  display: block;
}

#wlrv table {
  margin-bottom: 0.55em;
}

#wlrv .button {
  display: inline-block;
}

#wlrv button,
#wlrv .button,
#wlrv input[type='submit'] {
  -webkit-transition-property: -webkit-transform, background-color;
  -moz-transition-property: -moz-transform, background-color;
  transition-property: transform, background-color;
  -webkit-transition-duration: 200ms, 500ms;
  -moz-transition-duration: 200ms, 500ms;
  transition-duration: 200ms, 500ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  border: 1px solid transparent;
  text-transform: uppercase;
  outline: none;
}
#wlrv button:hover,
#wlrv .button:hover,
#wlrv input[type='submit'] {
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  text-decoration: none;
}
#wlrv button.no-animate,
#wlrv .button.no-animate,
#wlrv input[type='submit'] {
  -webkit-transition-property: none;
  -moz-transition-property: none;
  transition-property: none;
}
#wlrv button.no-animate:hover,
#wlrv .button.no-animate:hover,
#wlrv input[type='submit'] {
  -webkit-transform: none;
  -moz-transform: none;
  -ms-transform: none;
  -o-transform: none;
  transform: none;
}
#wlrv button.medium,
#wlrv .button.medium,
#wlrv input[type='submit'] {
  border-radius: 0.1em;
  padding: 0.7em 1em 0.5em 1em;
  line-height: 0.8rem;
  font-size: 0.8rem;
}
#wlrv button.orange,
#wlrv .button.orange {
  background-color: #F7840F; /* #ED8E2D;*/
  color: #FEFCF0;
}
#wlrv button.orange:hover,
#wlrv .button.orange:hover {
  background-color: #FF8000; /* #EB8116;*/
}
#wlrv button.orange:focus,
#wlrv .button.orange:focus {
  background-color: #FF8000;
}

#wlrv hr {
  clear: both;
  border: none;
  height: 1px;
  margin: 20px 0;
  padding: 0;
  background-color: #fbf2c0;
}

#wlrv hr.dark {
  background-color: #737259;
  margin: 0;
}

#wlrv hr.horizontal-rule {
  background: url("../images/horizontal-rule.svg") transparent 0 0 no-repeat;
  height: 20px;
  width: 100%;
  margin: 1.5rem 0;
}

#wlrv hr.grunge-rule {
  background: url("../images/grunge-border.svg") transparent 0 0 no-repeat;
  height: 15px;
  width: 100%;
}

#wlrv hr.grunge-rule.dark {
  background-color: #161616;
}
#wlrv hr.footer-border {
  background: url("../images/footer-top-border.svg") #161616 0 0 no-repeat;
  height: 28px;
  width: 100%;
  margin: 0;
}

/*
  fonts.scss
*/
#wlrv a {
  color: #1A8A53; /* #006938;*/
  text-decoration: none;
}
#wlrv a:hover {
  text-decoration: underline;
}
#wlrv a .fa-chevron-right {
  position: relative;
  top: 1px;
  left: 5px;
}
#wlrv a > strong {
  font-weight: 500;
}
#wlrv .bold {
  font-weight: 600;
}
#wlrv .bold > a {
  font-weight: 500;
}
#wlrv .caps {
  text-transform: uppercase;
}
#wlrv .center {
  text-align: center;
}
#wlrv p {
  line-height: 1.6rem;
  padding: 0.55em 0;
}
#wlrv p:first-of-type {
  padding-top: 0;
}
#wlrv strong {
  font-weight: 600;
}
#wlrv strong > a {
  font-weight: 500;
}
#wlrv .italic {
  font-style: italic;
}
#wlrv .regular {
  font-weight: 400;
}
#wlrv .bold {
  font-weight: 700;
}
#wlrv .semibold {
  font-weight: 500;
}
#wlrv .underline {
  text-decoration: underline;
}
#wlrv .Fira_Sans-xsmall {
  font-family: 'Fira-Sans';
  font-size: 0.7rem;
}
#wlrv .Fira_Sans-small {
  font-family: 'Fira-Sans';
  font-size: 0.8rem;
}
#wlrv .Fira_Sans-regular {
  font-family: 'Fira-Sans';
  font-size: 1.0rem;
}
#wlrv .Fira_Sans-large {
  font-family: 'Fira-Sans';
  font-size: 1.2rem;
}
#wlrv .Fira_Sans-xlarge {
  font-family: 'Fira-Sans';
  font-size: 1.4rem;
}
#wlrv .Fira_Sans-xxlarge {
  font-family: 'Fira-Sans';
  font-size: 1.6rem;
}
#wlrv .Cabin-regular {
  font-family: 'Cabin Sketch';
  font-size: 2.4rem;
}
#wlrv .Cabin-large {
  font-family: 'Cabin Sketch';
  font-size: 3rem;
}
#wlrv .Cabin-xlarge {
  font-family: 'Cabin Sketch';
  font-size: 3.4rem;
}
#wlrv .font-sketch, #wlrv.homepage .stats-content .stats-section .stat-number, #wlrv.homepage .member-stories .stories-title,
#wlrv .font-cabin, #wlrv .cabin {
  font-family: 'Cabin Sketch';
}
#wlrv h1,
#wlrv .header-1 {
  font-size: 2rem;
}
#wlrv h2,
#wlrv .header-2 {
  font-size: 1.5rem;
}
#wlrv h3,
#wlrv .header-3 {
  font-size: 1.2rem;
}
#wlrv h4,
#wlrv .header-4 {
  font-size: 1rem;
}
#wlrv h5,
#wlrv .header-5 {
  font-size: 0.875rem;
  font-weight: 500;
}
#wlrv h6,
#wlrv .header-6 {
  font-size: 0.6rem;
  font-weight: 500;
}
#wlrv .header-3-olive-caps {
  color: #737259;
  font-size: 1.4rem;
  font-weight: 700;
  text-transform: uppercase;
}
#wlrv .header-3-green {
  color: #006938;
  font-size: 1.2rem;
  font-weight: 700;
}
#wlrv .header-3-cabin-white-caps {
  font-family: 'Cabin Sketch';
  color: white;
  font-size: 2rem;
  text-transform: uppercase;
}
#wlrv .header-3-cabin-olive-caps {
  font-family: 'Cabin Sketch';
  color: #737259;
  font-size: 1.8rem;
  text-transform: uppercase;
}
#wlrv .header-3-wheat-caps {
  color: #ADAC91;
  font-size: 1.5rem;
  font-weight: 700;
  text-transform: uppercase;
}
#wlrv .primary-link .fa-chevron-right {
  -webkit-transition-property: -webkit-transform;
  -moz-transition-property: -moz-transform;
  transition-property: transform;
  -webkit-transition-duration: 200ms;
  -moz-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
#wlrv .primary-link:hover .fa-chevron-right {
  -webkit-transform: translateX(5px);
  -moz-transform: translateX(5px);
  -ms-transform: translateX(5px);
  -o-transform: translateX(5px);
  transform: translateX(5px);
}
#wlrv .sketch-link {
  font-family: 'Cabin Sketch';
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 500ms;
  -moz-transition-duration: 500ms;
  transition-duration: 500ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  display: block;
  font-size: 1.5rem;
  text-transform: uppercase;
  color: #FEFCF0;
}
#wlrv .sketch-link:hover {
  text-decoration: none;
}
#wlrv .sketch-link:after {
  background-color: #eb8116;
}
#wlrv .sketch-link:focus:after {
  background-color: #e37c13;
}
#wlrv .sketch-link:after {
  content: '\f054';
  position: relative;
  top: -6px;
  margin-left: 10px;
  font-family: 'FontAwesome';
  font-size: 12px;
  padding: 6px 6px 6px 8px;
  background-color: #ED8E2D;
  border-radius: 0.1em;
  color: #FEFCF0;
}

/*
  footer.scss
*/
#wlrv .clearfix:after {
  content: ' ';
  display: block;
  height: 0;
  clear: both;
}
#wlrv .hide {
  display: none;
}
#wlrv .nobr {
  white-space: nowrap;
}
#wlrv.no-scroll,
#wlrv .no-scroll {
  overflow: hidden;
}
#wlrv.no-scroll-x,
#wlrv .no-scroll-x {
  overflow-x: hidden;
}
#wlrv.no-scroll-y
.no-scroll-y {
  overflow-y: hidden;
}
#wlrv .show {
  display: block;
}
#wlrv .style-ruled {
  padding: 5px 10px;
  color: #737259;
  border-radius: 0;
  border: 1px solid #bcbca9;
  background-color: rgba(255, 255, 255, 0.6);
  box-shadow: none;
}
#wlrv .style-ruled:hover, #wlrv .style-ruled:focus, #wlrv .style-ruled:active {
  background-color: #FFFFFF;
  border-color: #005A30;
}
#wlrv .style-ruled-step {
  color: #737259;
  border-radius: 0;
  border: 1px solid #bcbca9;
  border-bottom: 2px solid #737259;
  background-color: rgba(255, 255, 255, 0.5);
}

/*
  icons.scss
*/
#wlrv .icon-lead {
  background: url("../images/icon-lead.svg");
  background-size: 15px;
  background-position: left bottom;
  background-repeat: no-repeat;
}
#wlrv .icon-mountain,
#wlrv .icon-grassland-restoration {
  background: url("../images/icon-mountain.svg");
  background-size: 15px;
  background-position: left bottom;
  background-repeat: no-repeat;
}
#wlrv .icon-seed {
  background: url("../images/icon-seed.svg");
  background-size: 15px;
  background-position: left bottom;
  background-repeat: no-repeat;
}
#wlrv .icon-stream {
  background: url("../images/icon-stream.svg");
  background-size: 15px;
  background-position: left bottom;
  background-repeat: no-repeat;
}

#wlrv .caret {
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 2px;
  vertical-align: middle;
  border-top: 4px solid;
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}
#wlrv .fa {
  font-family: 'Fira Sans';
}
#wlrv .fa:before {
  font-family: 'FontAwesome';
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
}
#wlrv .fa-paint-brush:before {
  content: "\f1fc";
}

/*
  colors.scss
  class names for each color
*/
#wlrv .beige {
  color: #FEFCF0;
}
#wlrv .bg-beige {
  background-color: #FEFCF0;
}
#wlrv .burnt {
  color: #872B00;
}
#wlrv .bg-burnt {
  background-color: #872B00;
}
#wlrv .burnt-border {
  color: #FFEAB0;
}
#wlrv .bg-burnt-border {
  background-color: #FFEAB0;
}
#wlrv .dark-beige {
  color: #FBF3DE;
}
#wlrv .bg-dark-beige {
  background-color: #FBF3DE;
}
#wlrv .dark-brown {
  color: #292621;
}
#wlrv .bg-dark-brown {
  background-color: #292621;
}
#wlrv .dark-olive {
  color: #6E6C58;
}
#wlrv .bg-dark-olive {
  background-color: #6E6C58;
}
#wlrv .darker-olive {
  color: #403F32;
}
#wlrv .bg-darker-olive {
  background-color: #403F32;
}
#wlrv .green {
  color: #1F794F; /*#006938;*/
}
#wlrv .bg-green {
  background-color: #006938;
}
#wlrv .green-dark {
  color: #005A30;
}
#wlrv .bg-green-dark {
  background-color: #005A30;
}
#wlrv .light-olive {
  color: #969691;
}
#wlrv .bg-light-olive {
  background-color: #969691;
}
#wlrv .light-beige {
  color: #FEF9E3;
}
#wlrv .bg-light-beige {
  background-color: #FEF9E3;
}
#wlrv .olive {
  color: #737259;
}
#wlrv .orange {
  color: #ED8E2D;
}
#wlrv .subtle-gray {
  color: #FAFAFA;
}
#wlrv .wheat {
  color: #ADAC91;
}
#wlrv .white {
  color: #FFFFFF;
}
#wlrv .yellow {
  color: #BFAC59;
}

/*
  header.scss
*/
#wlrv .header {
  width: 100%;
  height: 50px;
  position: relative;
}
@media (min-width: 320px) and (max-width: 767px) {
  #wlrv .header {
    background-color: #006938;
    z-index: 100;
  }
  #wlrv .header .logo {
    display: none;
  }
  #wlrv .header .svg-images {
    background: none;
  }
  #wlrv .header .svg-images .svg__border_grunge-top {
    top: 50px;
    height: 7px;
  }
}
@media (min-width: 768px) {
  #wlrv .header {
    padding: 20px;
    background-color: #FFFFFF;
    height: 70px;
    box-shadow: 0 1px 5px 0 rgba(0, 0, 0, 0.1);
  }
}
#wlrv .header .title {
  -webkit-font-feature-settings: "smcp" on;
  -moz-font-feature-settings: "smcp" on;
  margin: auto;
  text-align: center;
  color: #FEFCF0;
  display: inline-block;
  position: absolute;
}
@media (min-width: 320px) and (max-width: 767px) {
  #wlrv .header .title {
    top: 0;
    bottom: 0;
    height: 18px;
    font-size: 1rem;
    width: 100%;
  }
}
@media (min-width: 600px) {
  #wlrv .header .title {
    height: 20px;
    font-size: 1.1rem;
  }
}
@media (min-width: 768px) {
  #wlrv .header .title {
    text-align: left;
    color: #006938;
  }
}
#wlrv .header .title a {
  color: #FEFCF0;
  text-decoration: none;
}
#wlrv .header .tagline {
  display: none;
}
#wlrv .header .utility {
  display: none;
}
@media (min-width: 768px) {
  #wlrv .header .utility {
    display: block;
    float: right;
  }
  #wlrv .header .utility * {
    margin-left: 0.5em;
  }
}
#wlrv .header .utility a {
  font-size: 0.8rem;
}
#wlrv .header .svg__border_grunge-top {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 7px;
}
#wlrv .header .svg__border_grunge-top #gradient_1 stop {
  stop-color: #292621;
}
#wlrv .header .svg__border_grunge-top #gradient_1 stop:first-of-type {
  stop-opacity: 1;
}
#wlrv .header .svg__border_grunge-top #gradient_1 stop:last-of-type {
  stop-opacity: 0.5;
}
#wlrv .header .svg__border_grunge-top .path-1 {
  transform: translate(0, 3px);
}
#wlrv .header .svg__border_grunge-top .path-2 {
  transform: translate(0, -3px);
}
#wlrv .header .svg__border_grunge-top .path-2 .path {
  fill: #006938;
}
@media (min-width: 768px) {
  #wlrv .header .svg__border_grunge-top {
    display: none;
  }
}
#wlrv .logo {
  display: block;
  position: absolute;
  top: 0.8rem;
  z-index: 400;
  left: 20px;
  width: 150px;
  height: 90px;
}

#wlrv .main-menu-toggle {
  width: 45px;
  height: inherit;
  position: absolute;
  color: #FEFCF0;
  cursor: pointer;
  z-index: 900;
}
@media (max-width: 480px) {
  #wlrv .main-menu-toggle {
    width: 100%;
    height: 100%;
  }
}

#wlrv .main-menu-toggle:before {
    position: relative;
    top: 1.2rem;
    left: 0.8rem;
}

@media (min-width: 768px) {
  #wlrv .main-menu-toggle {
    display: none;
  }
}

/*
  footer.scss
*/
#wlrv #svg-footer-border {
  width: 100%;
  left: 0;
  right: 0;
  position: absolute;
  background-color: transparent;
  top: -8px;
  height: 10px;
}
#wlrv #svg-footer-border .path-1 {
  fill: #292621;
}
#wlrv .footer {
  padding: 60px 40px;
  width: 100%;
  background-color: #292621;
  position: relative;
  z-index: 900;
}
#wlrv .footer .social-links {
  margin-top: 2rem;
}
#wlrv .footer .social-links .title {
  display: block;
}
#wlrv .footer .social-links a {
  -webkit-transition-property: -webkit-transform, color;
  -moz-transition-property: -moz-transform, color;
  transition-property: transform, color;
  -webkit-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  display: inline-block;
  padding-right: 10px;
  color: #969691;
}
#wlrv .footer .social-links a:hover {
  color: #afafab;
  -webkit-transform: scale(1.1);
  -moz-transform: scale(1.1);
  -ms-transform: scale(1.1);
  -o-transform: scale(1.1);
  transform: scale(1.1);
  -webkit-transform-origin: center center;
  -moz-transform-origin: center center;
  -ms-transform-origin: center center;
  -o-transform-origin: center center;
  transform-origin: center center;
}
#wlrv .footer .link-list {
  list-style-type: none;
  padding-bottom: 1.5rem;
}
#wlrv .footer .link-list a {
  color: #ED8E2D;
  text-transform: none;
  font-size: 0.8rem;
}
#wlrv .footer .copyright {
  width: 100%;
  font-size: 0.75rem;
  color: #63635e;
  margin-top: 60px;
  text-align: center;
}
#wlrv .footer .title {
  color: #969691;
  text-transform: uppercase;
  white-space: nowrap;
}
#wlrv .footer p {
  text-transform: none;
  font-size: 0.8rem;
  color: #afafab;
  padding: 5px 0 10px 0;
}
#wlrv .footer button {
  display: block;
}
#wlrv .footer .footer-content {
  margin: 0 auto;
  color: #969691;
}
#wlrv .footer .footer-content::after {
  clear: both;
  content: "";
  display: table;
}
@media (min-width: 768px) {
  #wlrv .footer .footer-content {
    max-width: 960px;
  }
}
#wlrv .footer .footer-content .col {
  position: relative;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
#wlrv .footer .footer-content .col:last-child {
  margin-right: 0;
}
#wlrv .footer .footer-content .col:nth-child(2) {
  margin-right: 0;
}
#wlrv .footer .footer-content .col:last-child {
  margin-top: 20px;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 82.94039%;
}
#wlrv .footer .footer-content .col:last-child:last-child {
  margin-right: 0;
}
@media (min-width: 768px) {
  #wlrv .footer .footer-content .col {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  #wlrv .footer .footer-content .col:last-child {
    margin-right: 0;
  }
  #wlrv .footer .footer-content .col:last-child {
    margin-top: 0;
    margin-left: 8.5298%;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 40.29137%;
  }
  #wlrv .footer .footer-content .col:last-child:last-child {
    margin-right: 0;
  }
}

/*
  content.scss
*/
#wlrv .editable-content-container.one-column,
#wlrv .content-container.one-column {
  margin-left: 0;
}
@media (min-width: 768px) {
  #wlrv .editable-content-container.one-column,
  #wlrv .content-container.one-column {
    margin-left: 150px;
  }
}
#wlrv .editable-content-container.two-column,
#wlrv .content-container.two-column {
  margin-left: 0;
}
@media (min-width: 768px) {
  #wlrv .editable-content-container.two-column,
  #wlrv .content-container.two-column {
    margin-left: 150px;
  }
}
#wlrv .editable-content-container.two-column .col:nth-of-type(1),
#wlrv .content-container.two-column .col:nth-of-type(1) {
  padding: 10px 40px 20px 40px;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
#wlrv .editable-content-container.two-column .col:nth-of-type(1):last-child,
#wlrv .content-container.two-column .col:nth-of-type(1):last-child {
  margin-right: 0;
}
@media (min-width: 600px) {
  #wlrv .editable-content-container.two-column .col:nth-of-type(1),
  #wlrv .content-container.two-column .col:nth-of-type(1) {
    padding: 0 10px 20px 40px;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 57.35098%;
  }
  #wlrv .editable-content-container.two-column .col:nth-of-type(1):last-child,
  #wlrv .content-container.two-column .col:nth-of-type(1):last-child {
    margin-right: 0;
  }
}
#wlrv .editable-content-container.two-column .col:nth-of-type(2),
#wlrv .content-container.two-column .col:nth-of-type(2) {
  padding: 40px;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
#wlrv .editable-content-container.two-column .col:nth-of-type(2):last-child,
#wlrv .content-container.two-column .col:nth-of-type(2):last-child {
  margin-right: 0;
}
@media (min-width: 600px) {
  #wlrv .editable-content-container.two-column .col:nth-of-type(2),
  #wlrv .content-container.two-column .col:nth-of-type(2) {
    border-top: 0;
    padding: 0 40px 20px 10px;
    background-color: transparent;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 40.29137%;
  }
  #wlrv .editable-content-container.two-column .col:nth-of-type(2):last-child,
  #wlrv .content-container.two-column .col:nth-of-type(2):last-child {
    margin-right: 0;
  }
}
#wlrv .editable-content-container.three-column + .main-menu,
#wlrv .content-container.three-column + .main-menu {
  display: block;
}
@media (min-width: 600px) {
  #wlrv .editable-content-container.three-column .col:nth-of-type(1),
  #wlrv .content-container.three-column .col:nth-of-type(1) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  #wlrv .editable-content-container.three-column .col:nth-of-type(1):last-child,
  #wlrv .content-container.three-column .col:nth-of-type(1):last-child {
    margin-right: 0;
  }
  #wlrv .editable-content-container.three-column .col:nth-of-type(2),
  #wlrv .content-container.three-column .col:nth-of-type(2) {
    padding: 20px 40px 40px 20px;
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 65.88078%;
    margin-right: 0;
  }
  #wlrv .editable-content-container.three-column .col:nth-of-type(2):last-child,
  #wlrv .content-container.three-column .col:nth-of-type(2):last-child {
    margin-right: 0;
  }
  #wlrv .editable-content-container.three-column .col:nth-of-type(3),
  #wlrv .content-container.three-column .col:nth-of-type(3) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 100%;
  }
  #wlrv .editable-content-container.three-column .col:nth-of-type(3):last-child,
  #wlrv .content-container.three-column .col:nth-of-type(3):last-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) {
  #wlrv .editable-content-container.three-column .col:nth-of-type(1),
  #wlrv .content-container.three-column .col:nth-of-type(1) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  #wlrv .editable-content-container.three-column .col:nth-of-type(1):last-child,
  #wlrv .content-container.three-column .col:nth-of-type(1):last-child {
    margin-right: 0;
  }
  #wlrv .editable-content-container.three-column .col:nth-of-type(2),
  #wlrv .content-container.three-column .col:nth-of-type(2) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 48.82117%;
  }
  #wlrv .editable-content-container.three-column .col:nth-of-type(2):last-child,
  #wlrv .content-container.three-column .col:nth-of-type(2):last-child {
    margin-right: 0;
  }
  #wlrv .editable-content-container.three-column .col:nth-of-type(3),
  #wlrv .content-container.three-column .col:nth-of-type(3) {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 23.23176%;
  }
  #wlrv .editable-content-container.three-column .col:nth-of-type(3):last-child,
  #wlrv .content-container.three-column .col:nth-of-type(3):last-child {
    margin-right: 0;
  }
  #wlrv .editable-content-container.three-column + .main-menu,
  #wlrv .content-container.three-column + .main-menu {
    display: none;
  }
}
#wlrv .editable-content-container [class*='col-'] h1, #wlrv .editable-content-container [class*='col-'] h2, #wlrv .editable-content-container [class*='col-'] h3, #wlrv .editable-content-container [class*='col-'] h4, #wlrv .editable-content-container [class*='col-'] h5, #wlrv .editable-content-container [class*='col-'] h6,
#wlrv .content-container [class*='col-'] h1,
#wlrv .content-container [class*='col-'] h2,
#wlrv .content-container [class*='col-'] h3,
#wlrv .content-container [class*='col-'] h4,
#wlrv .content-container [class*='col-'] h5,
#wlrv .content-container [class*='col-'] h6 {
  color: #403f32;
  text-transform: uppercase;
}
#wlrv .editable-content-container [class*='col-'] h1:not(:first-child), #wlrv .editable-content-container [class*='col-'] h2:not(:first-child), #wlrv .editable-content-container [class*='col-'] h3:not(:first-child), #wlrv .editable-content-container [class*='col-'] h4:not(:first-child), #wlrv .editable-content-container [class*='col-'] h5:not(:first-child), #wlrv .editable-content-container [class*='col-'] h6:not(:first-child),
#wlrv .content-container [class*='col-'] h1:not(:first-child),
#wlrv .content-container [class*='col-'] h2:not(:first-child),
#wlrv .content-container [class*='col-'] h3:not(:first-child),
#wlrv .content-container [class*='col-'] h4:not(:first-child),
#wlrv .content-container [class*='col-'] h5:not(:first-child),
#wlrv .content-container [class*='col-'] h6:not(:first-child) {
  padding-top: 10px;
}
#wlrv .editable-content-container [class*='col-'] h1 + p, #wlrv .editable-content-container [class*='col-'] h2 + p, #wlrv .editable-content-container [class*='col-'] h3 + p, #wlrv .editable-content-container [class*='col-'] h4 + p, #wlrv .editable-content-container [class*='col-'] h5 + p, #wlrv .editable-content-container [class*='col-'] h6 + p,
#wlrv .content-container [class*='col-'] h1 + p,
#wlrv .content-container [class*='col-'] h2 + p,
#wlrv .content-container [class*='col-'] h3 + p,
#wlrv .content-container [class*='col-'] h4 + p,
#wlrv .content-container [class*='col-'] h5 + p,
#wlrv .content-container [class*='col-'] h6 + p {
  padding-top: 0;
}
#wlrv .editable-content-container img,
#wlrv .content-container img {
  padding: 5px;
  background-color: transparent;
  border: 1px solid #FBF3DE;
  box-shadow: 0 0 1px 0 rgba(41, 38, 33, 0.2);
}
#wlrv .editable-content-container img.no-border,
#wlrv .content-container img.no-border {
  border: none;
  box-shadow: none;
}
#wlrv .editable-content-container .section-title,
#wlrv .content-container .section-title {
  padding: 20px 40px 10px 40px;
}
@media (min-width: 600px) {
  #wlrv .editable-content-container .section-title,
  #wlrv .content-container .section-title {
    padding: 20px 20px 10px 40px;
  }
}
@media (min-width: 768px) {
  #wlrv .editable-content-container .section-title,
  #wlrv .content-container .section-title {
    padding: 20px 20px 10px 40px;
  }
}
#wlrv .editable-content-container .breadcrumb,
#wlrv .content-container .breadcrumb {
  margin-left: 20px;
}
#wlrv .editable-content-container ul,
#wlrv .content-container ul {
  margin-left: 50px;
}
#wlrv table {
  width: 100%;
  font-size: 1rem;
}
#wlrv table th {
  font-weight: 500;
  text-align: left;
  color: #484738;
}
#wlrv .breadcrumb {
  list-style-type: none;
}
#wlrv .breadcrumb .tier {
  display: inline-block;
  font-size: 0.75rem;
}
#wlrv .breadcrumb .tier:last-of-type {
  color: #BFAC59;
}
#wlrv .breadcrumb .tier a {
  color: #BFAC59;
}
#wlrv .breadcrumb .tier .fa-angle-right {
  font-size: 12px;
  margin: 0 5px;
  color: #BFAC59;
}
#wlrv .ui-datepicker {
  background-color: white;
  z-index: 1000 !important;
}
#wlrv .select {
  position: relative;
}
#wlrv .select.select-checkbox {
  cursor: pointer;
}
#wlrv .select.select-checkbox:focus, #wlrv .select.select-checkbox:active, #wlrv .select.select-checkbox:hover {
  outline: none;
  background-color: #FFFFFF;
}
#wlrv .select.select-checkbox.focused .dropdown {
  display: block;
}
#wlrv .select.select-checkbox.focused .style-ruled-step {
  border-bottom: 2px solid #bcbca9;
}
#wlrv .select.select-checkbox label {
  pointer-events: none;
  padding: 6px 10px;
  display: block;
}
#wlrv .select.select-checkbox .dropdown {
  display: none;
  max-height: 300px;
  width: 100%;
  position: absolute;
  z-index: 1000;
  list-style-type: none;
  margin: 0;
  padding: 0;
  background-color: #FEFCF0;
  border: 1px solid #bcbca9;
  border-top: none;
}
#wlrv .select.select-checkbox .dropdown .select-list {
  list-style-type: none;
  max-height: -webkit-calc(300px - 33px);
  max-height: calc(300px - 33px);
  overflow: auto;
}
#wlrv .select.select-checkbox .dropdown .select-list-item {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid rgba(37, 68, 54, 0.1);
}
#wlrv .select.select-checkbox .dropdown .select-list-item:hover {
  background-color: white;
}
#wlrv .select.select-checkbox .dropdown .select-list-item label {
  pointer-events: none;
  cursor: pointer;
  width: 100%;
  display: block;
  line-height: 33px;
  position: relative;
  padding-left: 30px;
}
#wlrv .select.select-checkbox .dropdown .select-list-item input[type='checkbox'] {
  pointer-events: none;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  margin: auto;
}
#wlrv .select.select-checkbox .dropdown .close {
  position: relative;
  z-index: 1000;
  bottom: 0;
  left: 0;
  height: 33px;
  width: 100%;
  border-top: 1px solid #006938;
}
#wlrv .select.select-checkbox .dropdown .close button {
  width: 100%;
  height: 100%;
  border-radius: 0;
  background-color: #006938;
  color: #FEFCF0;
  font-weight: bold;
  font-size: 0.9rem;
}
#wlrv .select i {
  pointer-events: none;
  position: absolute;
  right: 10px;
  top: 0;
  line-height: 34px;
  color: #737259;
}
#wlrv .select .trigger {
  position: relative;
}
#wlrv select.style-ruled-step {
  padding: 6px 10px;
  width: 100%;
  border: 0;
  background: none;
  background-image: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  cursor: pointer;
  color: #737259;
  border-radius: 0;
  border: 1px solid #bcbca9;
  border-bottom: 2px solid #737259;
  background-color: rgba(255, 255, 255, 0.5);
}
#wlrv select.style-ruled-step:hover, #wlrv select.style-ruled-step:focus, #wlrv select.style-ruled-step:active {
  background-color: #FFFFFF;
}
#wlrv select.style-ruled-step:active {
  border-bottom: 2px solid #bcbca9;
}
#wlrv select:focus, #wlrv select:active {
  outline: none;
}
#wlrv .editable-content-container,
#wlrv .content-container {
  background-color: #Ffffff;
  color: #403F32; /* dark-olive;*/
}
#wlrv .editable-content-container::after,
#wlrv .content-container::after {
  clear: both;
  content: "";
  display: table;
}
#wlrv .one-column .col:nth-of-type(1) {
  padding: 0 40px 40px 40px;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
#wlrv .one-column .col:nth-of-type(1):last-child {
  margin-right: 0;
}
#wlrv .two-column .col:nth-of-type(2) {
  padding: 40px 20px 40px 40px;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
#wlrv .two-column .col:nth-of-type(2):last-child {
  margin-right: 0;
}
#wlrv .two-column .col:nth-of-type(2) {
  padding: 40px 40px 40px 20px;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 48.82117%;
}
#wlrv .two-column .col:nth-of-type(2):last-child {
  margin-right: 0;
}
#wlrv .three-column .col {
  padding: 20px 40px;
  float: left;
  display: block;
  margin-right: 2.35765%;
  width: 100%;
}
#wlrv .three-column .col:last-child {
  margin-right: 0;
}
@media (min-width: 600px) {
  #wlrv .three-column .col {
    float: left;
    display: block;
    margin-right: 2.35765%;
    width: 31.76157%;
  }
  #wlrv .three-column .col:last-child {
    margin-right: 0;
  }
}
@media (min-width: 600px) {
  #wlrv .three-column .col:nth-of-type(1) {
    padding: 20px 20px 40px 40px;
  }
  #wlrv .three-column .col:nth-of-type(2) {
    padding: 20px 20px 40px 20px;
  }
  #wlrv .three-column .col:nth-of-type(3) {
    padding: 20px 40px 40px 20px;
  }
}
#wlrv .callout-column {
  background-color: #FEFCF0;
  border-top: 1px solid #FFEAB0;
  text-align: center;
  max-width: 100%;
}
@media (min-width: 600px) {
  #wlrv .callout-column {
    border-top: 0;
    background-color: transparent;
  }
}
@media (min-width: 768px) {
  #wlrv .callout-column {
    max-width: 400px;
  }
}
#wlrv .callout-column:first-child, #wlrv .callout-column:not(:only-child) {
  border-bottom: 1px solid #FFEAB0;
}
@media (min-width: 600px) {
  #wlrv .callout-column:first-child, #wlrv .callout-column:not(:only-child) {
    border-bottom: 0;
  }
}
#wlrv .callout-column hr {
  background: url("../images/grunge-border.svg") transparent 0 0 no-repeat;
  height: 15px;
  width: 100%;
  margin: 25px 0;
}
#wlrv .callout img {
  max-width: 100px;
  max-height: 100px;
}
#wlrv .callout:last-child {
  margin-bottom: 20px;
}
#wlrv .video-container {
	position:relative;
	padding-bottom:	56.25%;
	padding-top:0px;
	height:0;
	overflow:hidden;
}
#wlrv .video-container iframe, .video-container object, .video-container embed {
	position:absolute;
	top:0;
	left:0;
	width:100%;
	height:100%;
}

/*
  menu.scss
*/
#wlrv .main-menu {
  color: #FEFCF0;
  background-color: #006938;
  -webkit-transition-property: left;
  -moz-transition-property: left;
  transition-property: left;
  -webkit-transition-duration: 250ms;
  -moz-transition-duration: 250ms;
  transition-duration: 250ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  width: 150px;
  font-size: 0.75rem;
}
@media (min-width: 320px) and (max-width: 767px) {
  #wlrv .main-menu {
    box-shadow: 8px 0 8px 0 rgba(0, 0, 0, 0.2);
    left: -160px;
    position: fixed;
    top: 0;
    bottom: 0;
    z-index: 100;
  }
}
#wlrv .main-menu.open {
  display: block;
  left: 0;
}
#wlrv .main-menu .main-menu-list {
  list-style-type: none;
}
#wlrv .main-menu .main-menu-list .main-menu-item {
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 200ms;
  -moz-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  background-color: #006938;
  border-bottom: 1px solid #005A30;
}
#wlrv .main-menu .main-menu-list .main-menu-item:last-of-type {
  border-bottom: none;
  height: 50px;
}
#wlrv .main-menu .main-menu-list .main-menu-item a {
  padding: 20px 10px 15px 10px;
  color: #FEFCF0;
  display: block;
  text-decoration: none;
  text-transform: uppercase;
  background-color: #006938;
}
@media (min-width: 768px) {
  #wlrv .main-menu .main-menu-list .main-menu-item a {
    padding: 15px 10px;
  }
}
#wlrv .main-menu .main-menu-list .main-menu-item a:hover {
  background-color: #006435;
}
#wlrv .main-menu .main-menu-list .main-menu-item.selected {
  border-bottom: none;
}
#wlrv .main-menu .main-menu-list .main-menu-item.selected a {
  background-color: #077f47;
}
#wlrv .main-menu .main-menu-list .sub-menu {
  display: none;
}
#wlrv .main-menu .main-menu-list .sub-menu.close {
  display: none;
}
#wlrv .main-menu .main-menu-list .sub-menu.open {
  display: list-item;
}
#wlrv .main-menu .main-menu-list .sub-menu .sub-menu-list {
  list-style-type: none;
  background-color: #097744;
  border-top: 1px solid #196341;
  border-bottom: 1px solid #095633;
}
#wlrv .main-menu .main-menu-list .sub-menu .sub-menu-list .sub-menu-item {
  background-color: transparent;
  border-bottom: none;
}
#wlrv .main-menu .main-menu-list .sub-menu .sub-menu-list .sub-menu-item:hover {
  background-color: transparent;
}
#wlrv .main-menu .main-menu-list .sub-menu .sub-menu-list a {
  display: inline-block;
  width: 100%;
  text-transform: none;
  padding: 10px;
  color: #FEFCF0;
}
#wlrv .main-menu .main-menu-list .sub-menu .sub-menu-list a:hover {
  text-decoration: underline;
}
#wlrv .main-menu .social-menu {
  display: none;
}
#wlrv .main-menu .social-menu a {
  background-color: #006938;
  color: #FEFCF0;
  padding: 2px 6px 1px 0;
}
@media (min-width: 768px) {
  #wlrv:not(.homepage) .main-menu {
    position: absolute;
    top: 75px;
    z-index: 0;
  }
}

/*
  layout.scss
*/
#wlrv .wrapper {
  -webkit-transition-property: margin-left;
  -moz-transition-property: margin-left;
  transition-property: margin-left;
  -webkit-transition-duration: 300ms;
  -moz-transition-duration: 300ms;
  transition-duration: 300ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  min-width: 320px;
  width: 100%;
  margin-left: 0;
  position: relative;
}
#wlrv .wrapper::after {
  clear: both;
  content: "";
  display: table;
}
#wlrv .wrapper.slide {
  margin-left: 150px;
  overflow-x: hidden;
}
#wlrv .breadcrumb {
  display: block;
  padding: 20px 20px 0 20px;
}
@media (min-width: 768px) {
  #wlrv .breadcrumb {
    display: none;
  }
}
@media (min-width: 600px) {
  #wlrv .filters {
    margin-bottom: 20px;
  }
}
#wlrv .filters .filter {
  margin-bottom: 20px;
}

/*
  homepage.scss
*/
/*
  slides.scss
*/

#wlrv .slide-overlay {
  background: -moz-linear-gradient(top, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.5) 100%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, transparent), color-stop(45%, transparent), color-stop(100%, rgba(0, 0, 0, 0.5)));
  background: -webkit-linear-gradient(top, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.5) 100%);
  background: -o-linear-gradient(top, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.5) 100%);
  background: -ms-linear-gradient(top, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.5) 100%);
  background: linear-gradient(to bottom, transparent 0%, transparent 45%, rgba(0, 0, 0, 0.5) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#00000000', endColorstr='#80000000',GradientType=0 );
  background-repeat: no-repeat;
  background-size: 100% 195px;
  background-position: left 0;
  border-bottom: 1px solid #f7e6ba;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 1500;
}
@media (min-width: 768px) {
  #wlrv .slide-overlay {
    background-size: 100%;
    background-position: top left;
    border-bottom: none;
  }
}

#wlrv .slide-gallery {
  position: relative;
  margin-top: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

@media (min-width: 768px) {
  #wlrv .slide-gallery {
    margin-top: 15px;
  }
}

#wlrv .slide-gallery .svg-images {
  position: absolute;
  z-index: 500;
  width: inherit;
}

#wlrv .slide-gallery .svg-images.slider-bottom-border {
  bottom: -10px;
}

@media (min-width: 768px) {
  #wlrv .slide-gallery .svg-images.slider-bottom-border {
    bottom: -15px;
  }
}

#wlrv .slide-gallery .svg-images svg#hero_top-border .path {
  fill: #006938; /* green*/
}

#wlrv .slide-gallery .svg-images svg#hero_bottom-border .path {
  fill: #FFFFFF; /* light beige*/
}

@media (min-width: 768px) {
  #wlrv .slide-gallery .svg-images svg#hero_bottom-border .path {
    fill: #FFFFFF; /* darker beige*/
  }
}

#wlrv .wlrvslider-slides {
  min-height: 250px;
}

@media (min-width: 768px) {
  #wlrv .wlrvslider-slides {
    min-height: 100%;
  }
}

#wlrv .slide-gallery .slide-container {
  display: inline-block;
  margin: 0 auto;
  background-size: 0;
  background-position: center 15px;
  background-repeat: no-repeat;
  width: 100%;
  height: 100%;
  background-color: #FBF3DE;
}

@media (min-width: 600px) {
  #wlrv .slide-gallery .slide-container {
    background-position: center 0;
    background-color: transparent;
    background-size: cover;
  }
}

#wlrv .slide-gallery img {
  display: none;
  padding: 0;
  border: 0;
}

#wlrv .slide-promo {
  width: 100%;
  padding: 5px 10px 10px 10px;
  background-color: transparent;
  text-align: center;
  position: absolute;
  bottom: 25%;
}


@media (min-width: 600px) {

  #wlrv .slide-promo {
    padding: 0 0 10px 0;
    bottom: 17%;
  }

}

#wlrv .slide-tagline {
  font-size: 1.6rem;
  line-height: 1.2;
  color: #6E6C58; /* #FEFCF0;*/
}

@media (min-width: 600px) {
  #wlrv .slide-tagline {
    font-size: 2.5rem;
    color: #FEFCF0;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    position: relative;
    width: 100%;
  }
}

#wlrv .slide-description {
  /*color: #737259;*/
  margin: 0 auto 10px auto;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.2;
  color: #6E6C58; /* #FEFCF0;*/
}

@media (min-width: 600px) {
  #wlrv .slide-description {
    color: #FEFCF0;
    margin: 0 auto 10px auto;
    font-size: 1.5rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
  }
}

#wlrv .slide-action {
  display: block;
  margin: auto;
  margin-bottom: 20px;
}

#wlrv .slide-pager {
  position: absolute;
  z-index: 1350;
  white-space: nowrap;
  width: inherit;
  height: 30px;
  margin: 0 auto;
  bottom: 7%;
  left: 0;
  right: 0;
  text-align: center;
}



#wlrv .slide-pager a {
  cursor: pointer;
  display: inline-block;
  margin: 0 7px;
  color: #B9B698; /* rgba(185, 182, 152, 1);*/
  border: 2px solid transparent;
  border-radius: 1.6em;
  width: 1.6em;
  height: 1.55em;
  opacity: 0.5;
  transform: scale(1.2);
  -webkit-transition: border-color 200ms, opacity 200ms;
  -moz-transition: border-color 200ms, opacity 200ms;
  transition: border-color 200ms, opacity 200ms;
}

#wlrv .slide-pager a:hover {
  text-decoration: none;
  border-color: rgba(185, 182, 152 .5); /* #B9B698 (0.5 opcacity)*/
  opacity: 1;
}

#wlrv .slide-pager a.cycle-pager-active {
  border-color: #B9B698; /* rgba(185, 182, 152, 1);*/
  opacity: 1;
}

#wlrv .slide-pager a .fa {
  display: block;
  margin-top: 0.1345em;
}

@media (min-width: 600px) {

  #wlrv .slide-pager {
    bottom: 5%;
    width: 20%;
  }

  #wlrv .slide-pager a {
    color: #FEFCF0; /* rgba(254, 252, 240, 1);*/
  }

  #wlrv .slide-pager a:hover {
    border-color: rgba(254, 252, 240, .5); /* #FEFCF0 (0.5 opcacity)*/
  }

  #wlrv .slide-pager a.cycle-pager-active {
    border-color: #FEFCF0; /* rgba(254, 252, 240, 1);*/
  }

}

@media (min-width: 768px) {
  #wlrv.homepage .header {
    position: relative;
    background-color: #FFFFFF;
    height: 140px;
    z-index: 1000;
  }

  #wlrv.homepage .header .logo {
    display: inline;
  }

  #wlrv.homepage .header .title {
    text-align: left;
    position: absolute;
    top: 18px;
    left: 140px;
    color: #006938;
  }

  #wlrv.homepage .header .tagline {
    display: block;
    position: absolute;
    z-index: 400;
    height: 30px;
    font-style: italic;
    font-size: 0.8rem;
    font-weight: 400;
    color: #737259;
    top: 2.8rem;
    left: 11rem;
  }

  #wlrv.homepage .header .svg-images {
    display: block;
    bottom: -15px;
    left: 0;
    right: 0;
    width: 100%;
    height: 93px;
    position: absolute;
    background: url("../images/path-left.svg"), url("../images/path-center.svg"), url("../images/path-right.svg");
    background-position: -8px 11px, center 35px, right 2px;
    background-size: 220px 125px, 100% 64px, 180px 85px;
    background-repeat: no-repeat;
  }

  #wlrv.homepage .header .svg-images .svg__border_grunge-top {
    position: absolute;
    display: block;
    top: 88px;
    height: 13px;
    width: 100%;
  }

  #wlrv.homepage .header .svg-images .svg__border_grunge-top #gradient_1 stop {
    stop-color: #11251c;
  }

  #wlrv.homepage .header .svg-images .svg__border_grunge-top #gradient_1 stop:first-of-type {
    stop-opacity: 1;
  }

  #wlrv.homepage .header .svg-images .svg__border_grunge-top #gradient_1 stop:last-of-type {
    stop-opacity: 0;
  }

  #wlrv.homepage .header .svg-images .svg__border_grunge-top .path-1 {
    transform: scaleY(1.2) translateY(1px);
  }

  #wlrv.homepage .header .svg-images .svg__border_grunge-top .path-2 {
    transform: translateY(-3px) scaleY(1.2);
  }

  #wlrv.homepage .header .svg-images .svg__border_grunge-top .path-2 .path {
    fill: #006938;
  }
}

@media (min-width: 768px) {
  #wlrv.homepage .main-menu {
    background-color: transparent;
    position: absolute;
    width: 100%;
    top: 106px;
    left: 0;
    right: 0;
    z-index: 1020;
    font-size: 0.75rem;
    font-weight: normal;
  }

  #wlrv.homepage .main-menu::after {
    clear: both;
    content: "";
    display: table;
  }

  #wlrv.homepage .main-menu .main-menu-list {
    padding: 5px 0;
    margin: 0 auto;
    text-align: center;
    width: 100%;
  }

  #wlrv.homepage .main-menu .main-menu-list a {
    padding: 8px 7px;
    font-weight: normal;
    letter-spacing: 0.009rem;
    font-size: 1rem;
  }

  #wlrv.homepage .main-menu .main-menu-list a:hover {
    text-decoration: underline;
  }

  #wlrv.homepage .main-menu .main-menu-item {
    background-color: transparent;
    display: inline-block;
    border-bottom: none;
  }

  #wlrv.homepage .main-menu .main-menu-item:last-of-type {
    display: none;
  }

  #wlrv.homepage .main-menu .main-menu-item a,
  #wlrv.homepage .main-menu .main-menu-item a:hover {
    background-color: transparent;
  }

  #wlrv.homepage .main-menu .sub-menu {
    display: none;
  }

  #wlrv.homepage .main-menu .social-menu {
    display: inline-block;
    position: absolute;
    right: 20px;
    top: 13px;
  }

  #wlrv.homepage .main-menu .social-menu a {
    display: inline-block;
  }

  #wlrv.homepage .main-menu .social-menu a .fa.fa-lg {
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    transition-property: transform;
    -webkit-transition-duration: 200ms;
    -moz-transition-duration: 200ms;
    transition-duration: 200ms;
    -webkit-transition-timing-function: ease-in-out;
    -moz-transition-timing-function: ease-in-out;
    transition-timing-function: ease-in-out;
  }

  #wlrv.homepage .main-menu .social-menu a:hover .fa.fa-lg {
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    -ms-transform: scale(1.2);
    -o-transform: scale(1.2);
    transform: scale(1.2);
  }

  #wlrv.homepage .main-menu .social-menu .fa.fa-lg {
    font-size: 1.2rem;
    vertical-align: -25%;
  }
}

#wlrv.homepage .content-container {
  padding: 0;
  margin-top: -10px;
}

@media (min-width: 768px) {
  #wlrv.homepage .content-container {
    margin-left: 0;
    /* margin-top: 15px;*/
  }
}

#wlrv.homepage .content-container ul {
  margin-left: 0;
}

#wlrv.homepage .mission-content {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  padding: 3% 5%;
  padding-bottom: 30px;
  color: #6E6C58;
  background-color: #FFFFFF;
  border-top: 1px solid #FFFFFF;
}

#wlrv.homepage .mission-content::after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 768px) {
  #wlrv.homepage .mission-content {
    border-top: #FFFFFF;
    background-color: #FFFFFF;
  }

  #wlrv.homepage .mission-content .horizontal-rule {
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  #wlrv.homepage .mission-content .horizontal-rule {
    margin-bottom: 10px;
  }
}

#wlrv.homepage .mission-content #missionStatement {
  padding: 1rem 0.5rem;
  padding-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.5rem;
}

#wlrv.homepage .mission-content #missionStatement .mission-callout {
  font-size: 0.8rem;
}

@media (min-width: 600px) {
  #wlrv.homepage .mission-content #missionStatement {
    padding-top: 10px;
    font-size: 1rem;
    line-height: 1.5em;
  }
}

#wlrv.homepage .mission-content #missionGraphic {
  display: block;
  list-style-type: none;
  width: 100%;
}

#wlrv.homepage .mission-content #missionGraphic .col {
  float: left;
}

#wlrv.homepage .mission-content #missionGraphic .col a {
  -webkit-transition-property: background-color;
  -moz-transition-property: background-color;
  transition-property: background-color;
  -webkit-transition-duration: 200ms;
  -moz-transition-duration: 200ms;
  transition-duration: 200ms;
  -webkit-transition-timing-function: ease-out;
  -moz-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  display: block;
  color: #6E6C58;
  text-decoration: none;
  padding: 10px 5px;
}

#wlrv.homepage .mission-content #missionGraphic .col a:hover {
  cursor: pointer;
  border-radius: 6px;
  background-color: #f8ebc7;
  text-decoration: none;
}

@media (min-width: 600px) {
  #wlrv.homepage .mission-content #missionGraphic {
    text-align: center;
  }

  #wlrv.homepage .mission-content #missionGraphic .col {
    width: 33%;
  }
}

#wlrv.homepage .mission-content #missionGraphic .mission-icon {
  float: left;
  margin-right: 10px;
  width: 70px;
  border: none;
  box-shadow: none;
}

@media (min-width: 600px) {
  #wlrv.homepage .mission-content #missionGraphic .mission-icon {
    float: none;
    margin-right: 0;
    margin-bottom: 0;
    max-height: 90px;
    width: inherit;
  }
}

#wlrv.homepage .mission-content #missionGraphic .font-sketch, #wlrv.homepage .mission-content #missionGraphic .stats-content .stats-section .stat-number, #wlrv.homepage .stats-content .stats-section .mission-content #missionGraphic .stat-number, #wlrv.homepage .mission-content #missionGraphic .member-stories .stories-title, #wlrv.homepage .member-stories .mission-content #missionGraphic .stories-title {
  font-size: 1.5rem;
  text-align: left;
  color: #737259;
  text-transform: uppercase;
}

@media (min-width: 600px) {
  #wlrv.homepage .mission-content #missionGraphic .font-sketch, #wlrv.homepage .mission-content #missionGraphic .stats-content .stats-section .stat-number, #wlrv.homepage .stats-content .stats-section .mission-content #missionGraphic .stat-number, #wlrv.homepage .mission-content #missionGraphic .member-stories .stories-title, #wlrv.homepage .member-stories .mission-content #missionGraphic .stories-title {
    font-size: 1.3rem;
    text-align: center;
  }
}

@media (min-width: 768px) {
  #wlrv.homepage .mission-content #missionGraphic .font-sketch, #wlrv.homepage .mission-content #missionGraphic .stats-content .stats-section .stat-number, #wlrv.homepage .stats-content .stats-section .mission-content #missionGraphic .stat-number, #wlrv.homepage .mission-content #missionGraphic .member-stories .stories-title, #wlrv.homepage .member-stories .mission-content #missionGraphic .stories-title {
    font-size: 1.8rem;
  }
}

#wlrv.homepage .mission-content #missionGraphic .mission-icon-description {
  margin-top: 0;
  padding: 0;
  text-align: left;
  padding-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.5em;
}

@media (min-width: 600px) {
  #wlrv.homepage .mission-content #missionGraphic .mission-icon-description {
    margin-top: -10px;
    padding: 0 1rem;
    text-align: center;
  }
}

@media (min-width: 768px) {
  #wlrv.homepage .mission-content #missionGraphic .mission-icon-description {
    padding: 0 1.2rem;
    padding-bottom: 0.6rem;
  }
}

#wlrv.homepage .main-content {
  background-color: #FFFFFF;
  padding: 1.8rem;
  border-top: 1px solid #FFEAB0;
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  width: 100%;
  font-size: 1rem;
}

#wlrv.homepage .main-content::after {
  clear: both;
  content: "";
  display: table;
}

@media (min-width: 600px) {
  #wlrv.homepage .main-content {
    background-color: #FFFFFF;
  }
}

#wlrv.homepage .main-content img {
  padding: 5px;
  background-color: transparent;
  border: 1px solid #FBF3DE;
  box-shadow: 0 0 1px 0 rgba(41, 38, 33, 0.2);
}

#wlrv.homepage .main-content img.no-border {
  border: none;
  box-shadow: none;
}

#wlrv.homepage .main-content .heading-2 {
  display: block;
  width: 100%;
  font-size: 1.4rem;
}

#wlrv.homepage .main-content .event-schedule {
  padding-bottom: 20px;
  float: left;
  width: 100%;
}

@media (min-width: 768px) {
  #wlrv.homepage .main-content .event-schedule {
    width: 60%;
  }
}

#wlrv.homepage .main-content .event-schedule .event-list {
  width: 100%;
  padding-top: 0.5rem;
  padding-bottom: 0.8rem;
  list-style-type: none;
  line-height: 1.3rem;
  margin-bottom: 10px;
}

#wlrv.homepage .main-content .event-schedule .event-list .event-item {
  padding: 20px 10px;
}

#wlrv.homepage .main-content .event-schedule .event-list .event-item:nth-of-type(even) {
  background-color: #f5ecd3;
}

@media (min-width: 600px) {
  #wlrv.homepage .main-content .event-schedule .event-list .event-item:nth-of-type(even) {
    background-color: #fbf7e0;
  }
}

#wlrv.homepage .main-content .event-schedule .event-list .event-item .event-item-icon {
  width: 17px;
  height: 17px;
  float: left;
  margin-right:10px;
  background-size: 100%;
}

#wlrv.homepage .main-content .event-schedule .event-list .event-item .event-item-details {
  /* margin-left: 20px;*/
}

#wlrv.homepage .main-content .event-schedule .event-list .event-item .event-item-details a {
  color: #006938;
}

#wlrv.homepage .main-content .event-schedule .event-list .event-item .event-item-details .fa-circle {
  display: none;
}

@media (min-width: 600px) {
  #wlrv.homepage .main-content .event-schedule .event-list .event-item .event-item-details .fa-circle {
    display: inline-block;
  }
}

#wlrv.homepage .main-content .event-schedule .event-list .event-item .event-item-details .fa-circle:before {
  font-size: 4px;
  padding: 0 0.4rem;
  vertical-align: middle;
  color: #6E6C58;
}

#wlrv.homepage .main-content .event-schedule .event-list .event-item .event-item-details .event-datetime {
  display: block;
  font-weight: 500;
  padding-top: 3px;
  color: #6E6C58;
}

@media (min-width: 600px) {
  #wlrv.homepage .main-content .event-schedule .event-list .event-item .event-item-details .event-datetime {
    display: inline-block;
    padding-top: 0;
  }
}

#wlrv.homepage .main-content .event-schedule .event-list .featured-event {
  width: 100%;
  margin-bottom: 20px;
}

#wlrv.homepage .main-content .event-schedule .event-list .featured-event .event-item {
  background: none;
  padding-bottom: 10px;
}

#wlrv.homepage .main-content .event-schedule .event-list .featured-event .featured-event-description {
  line-height: 1.5rem;
  min-height: 100px;
}

#wlrv.homepage .main-content .event-schedule #allEvents {
  text-align: center;
  font-size: 0.9rem;
  float: right;
}

#wlrv.homepage .main-content .event-schedule #allEvents:after {
  font-size: 0.4rem;
  padding-left: 5px;
}

#wlrv.homepage .main-content .right-column {
  background: url("../images/grunge-border.svg") transparent center top no-repeat;
  background-size: 100% 20px;
  text-align: center;
  float: right;
  width: 100%;
  padding-top: 40px;
}

@media (min-width: 768px) {
  #wlrv.homepage .main-content .right-column {
    width: 30%;
  }
}

#wlrv.homepage .main-content .right-column .sponsor-statement {
  padding: 10px 0;
}

#wlrv.homepage .main-content .right-column .sponsor-logo {
  margin: 0;
  height: inherit;
  width: 180px;
}

@media (min-width: 600px) {
  #wlrv.homepage .main-content .right-column .sponsor-logo {
    text-align: center;
    margin: 10px auto;
  }
}

#wlrv.homepage .main-content .right-column .grunge-rule {
  height: 20px;
}

@media (min-width: 600px) {
  #wlrv.homepage .main-content .right-column .grunge-rule {
    width: 100%;
  }
}

#wlrv.homepage .main-content .right-column .donate {
  width: 50%;
  margin-top: 20px;
  font-size: inherit;
}

@media (min-width: 768px) {
  #wlrv.homepage .main-content .right-column .donate {
    width: initial;
  }
}

#wlrv.homepage #svg-content-border {
  position: relative;
  top: -8px;
  width: 100%;
}

#wlrv.homepage #svg-content-border .fill {
  fill: #FBF3DE;
}

@media (min-width: 600px) {
  #wlrv.homepage #svg-content-border {
    top: -1px;
  }

  #wlrv.homepage #svg-content-border .fill {
    fill: #FEFCF0;
  }
}

#wlrv.homepage .stats-content {
  list-style-type: none;
  width: 100%;
  padding-top: 60px;
  margin-top: -25px;
  text-align: center;
  background: -moz-linear-gradient(top, rgba(22, 22, 22, 0) 0%, #161616 100%), url("../images/stats-bg.jpg");
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, rgba(22, 22, 22, 0)), color-stop(100%, #161616)), url("../images/stats-bg.jpg");
  background: -webkit-linear-gradient(top, rgba(22, 22, 22, 0) 0%, #161616 100%), url("../images/stats-bg.jpg");
  background: -o-linear-gradient(top, rgba(22, 22, 22, 0) 0%, #161616 100%), url("../images/stats-bg.jpg");
  background: -ms-linear-gradient(top, rgba(22, 22, 22, 0) 0%, #161616 100%), url("../images/stats-bg.jpg");
  background: linear-gradient(to bottom, rgba(22, 22, 22, 0) 0%, #161616 100%), url("../images/stats-bg.jpg");
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#161616', endColorstr='#161616',GradientType=0 );
  background-repeat: no-repeat;
  background-position: left top, left top;
  background-size: 100% 100%, 100% 100%;
}
#wlrv.homepage .stats-content .stats-section {
  display: block;
  width: 100%;
  text-align: center;
  color: #FEFCF0;
  padding-bottom: 20px;
}
@media (min-width: 768px) {
  #wlrv.homepage .stats-content .stats-section .stats-title {
	  width: 100%;
  }
  #wlrv.homepage .stats-content .stats-section {
    display: inline-block;
    width: 31%;
    padding-top: 0px;
    padding-bottom: 60px;
  }
 
}
#wlrv.homepage .stats-content .stats-section .stat-title {
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 400;
  white-space: nowrap;
}
#wlrv.homepage .stats-content .stats-section .stat-number {
  font-size: 3rem;
}
@media (min-width: 600px) {
  #wlrv.homepage .stats-content .stats-section .stat-number {
    font-size: 3.5rem;
  }
}
#wlrv.homepage .member-stories {
  padding: 0;
  padding-bottom: 40px;
  width: 100%;
  color: #FEFCF0;
  background: -moz-linear-gradient(top, #161616 0%, rgba(22, 22, 22, 0) 50%, #161616 100%), url("../images/dark-wood-bg.jpg");
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #161616), color-stop(50%, rgba(22, 22, 22, 0)), color-stop(100%, #161616)), url("../images/dark-wood-bg.jpg");
  background: -webkit-linear-gradient(top, #161616 0%, rgba(22, 22, 22, 0) 50%, #161616 100%), url("../images/dark-wood-bg.jpg");
  background: -o-linear-gradient(top, #161616 0%, rgba(22, 22, 22, 0) 50%, #161616 100%), url("../images/dark-wood-bg.jpg");
  background: -ms-linear-gradient(top, #161616 0%, rgba(22, 22, 22, 0) 50%, #161616 100%), url("../images/dark-wood-bg.jpg");
  background: linear-gradient(to bottom, #161616 0%, rgba(22, 22, 22, 0) 50%, #161616 100%), url("../images/dark-wood-bg.jpg");
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#161616', endColorstr='#161616',GradientType=0 );
  background-repeat: no-repeat, repeat-y;
  background-position: 0 0, 0 0;
  background-size: 100%, 100%;
  padding: 2rem 1rem;
}
@media (min-width: 640px) {
  #wlrv.homepage .member-stories {
    padding: 1rem;
    padding-bottom: 50px;
    background: -moz-linear-gradient(top, #161616 0%, rgba(22, 22, 22, 0) 50%, #161616 100%), url("../images/dark-wood-bg@2x.jpg");
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #161616), color-stop(50%, rgba(22, 22, 22, 0)), color-stop(100%, #161616)), url("../images/dark-wood-bg@2x.jpg");
    background: -webkit-linear-gradient(top, #161616 0%, rgba(22, 22, 22, 0) 50%, #161616 100%), url("../images/dark-wood-bg@2x.jpg");
    background: -o-linear-gradient(top, #161616 0%, rgba(22, 22, 22, 0) 50%, #161616 100%), url("../images/dark-wood-bg@2x.jpg");
    background: -ms-linear-gradient(top, #161616 0%, rgba(22, 22, 22, 0) 50%, #161616 100%), url("../images/dark-wood-bg@2x.jpg");
    background: linear-gradient(to bottom, #161616 0%, rgba(22, 22, 22, 0) 50%, #161616 100%), url("../images/dark-wood-bg@2x.jpg");
  }
}
#wlrv.homepage .member-stories .stories-title {
  padding: 0 0 2rem 0;
  text-align: center;
  text-transform: uppercase;
  font-size: 2rem;
}
@media (min-width: 768px) {
  #wlrv.homepage .member-stories .stories-title {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }
}
#wlrv.homepage .member-stories .story-list {
  width: 100%;
  list-style-type: none;
  text-align: center;
  padding-bottom: 1rem;
}
@media (min-width: 320px) and (max-width: 767px) {
  #wlrv.homepage .member-stories .story-list {
    max-width: 300px;
    margin: 0 auto;
  }
}
#wlrv.homepage .member-stories .story-list .story-item {
  display: inline-block;
  background: url("../images/stories-frame-top.svg") center top no-repeat;
  background-size: 100% 10px;
  margin-bottom: 20px;
  vertical-align: top;
}
@media (min-width: 768px) {
  #wlrv.homepage .member-stories .story-list .story-item {
    background-size: 222px 15px;
    margin: 0;
  }
  #wlrv.homepage .member-stories .story-list .story-item:first-of-type {
    margin-right: 15px;
  }
  #wlrv.homepage .member-stories .story-list .story-item:nth-of-type(2) {
    margin: 0 15px;
  }
  #wlrv.homepage .member-stories .story-list .story-item:last-of-type {
    margin-left: 15px;
  }
}
#wlrv.homepage .member-stories .story-list .story-item img {
  padding: 5px;
  background-color: transparent;
  border: 1px solid #FBF3DE;
  box-shadow: 0 0 1px 0 rgba(41, 38, 33, 0.2);
}
#wlrv.homepage .member-stories .story-list .story-item img.no-border {
  border: none;
  box-shadow: none;
}
#wlrv.homepage .member-stories .story-list .story-item .story-content {
  text-align: left;
  background: url("../images/stories-frame-body.svg") center -2px no-repeat;
  width: 100%;
  background-size: 100% 100%;
  padding: 20px 30px;
  position: relative;
}
#wlrv.homepage .member-stories .story-list .story-item .story-content::after {
  clear: both;
  content: "";
  display: table;
}
@media (min-width: 768px) {
  #wlrv.homepage .member-stories .story-list .story-item .story-content {
    width: 270px;
    min-height: 480px;
  }
}
@media (min-width: 600px) and (max-width: 767px) {
  #wlrv.homepage .member-stories .story-list .story-item .story-content img {
    margin: 0 10px 10px 0;
  }
}
#wlrv.homepage .member-stories .story-list .story-item .story-content img {
  display: block;
  margin: auto;
}
#wlrv.homepage .member-stories .story-list .story-item .story-content p {
  line-height: 1.3rem;
}
#wlrv.homepage .member-stories .story-list .story-item .story-content .story-title {
  display: block;
  width: 100%;
  box-sizing: border-box;
  color: #006938;
  font-size: 1.2rem;
  font-weight: 500;
  margin-bottom: -5px;
}
@media (min-width: 600px) {
  #wlrv.homepage .member-stories .story-list .story-item .story-content .story-title {
    font-size: 1.6rem;
  }
}
#wlrv.homepage .member-stories .story-list .story-item .story-content .story-subtitle {
  display: block;
  float: none;
  box-sizing: border-box;
  color: #872B00;
  font-size: 1rem;
  margin-top: -5px;
}
@media (min-width: 600px) {
  #wlrv.homepage .member-stories .story-list .story-item .story-content .story-subtitle {
    font-size: 1.1rem;
    margin-top: -5px;
  }
}
#wlrv.homepage .member-stories .story-list .story-item .story-content .story-excerpt {
  margin: 0;
  margin-right: 10px;
  margin-bottom: 30px;
  padding: 0;
  text-indent: 0;
  color: #737259;
  font-size: 1rem;
  font-style: italic;
  position: relative;
}
#wlrv.homepage .member-stories .story-list .story-item .story-content .story-excerpt p:first-of-type {
  text-indent: 0;
}
#wlrv.homepage .member-stories .story-list .story-item .story-content .story-excerpt p:first-of-type:before {
  content: "\201C";
  position: relative;
  top: 40px;
  left: -5px;
  font-size: 5rem;
  opacity: 0.15;
}
#wlrv.homepage .member-stories .story-list .story-item .story-content a {
  position: absolute;
  bottom: 20px;
  right: 40px;
}
#wlrv.homepage .member-stories .sketch-link {
  margin-right: 30px;
  text-align: right;
}
.map-responsive{
    overflow:hidden;
    padding-bottom:56.25%;
    position:relative;
    height:0;
}
.map-responsive iframe{
    left:0;
    top:0;
    height:100%;
    width:100%;
    position:absolute;
}
.collapsible {
  border: 1px solid #ccc;
  margin: 10px;
}

.collapsible-btn {
  background-color: #f9f9f9;
  border: none;
  padding: 10px;
  cursor: pointer;
  width: 100%;
  text-align: left;
}

.collapsible-content {
  display: none;
  padding: 10px;
}

.collapsible-content p {
  margin: 0;
}