/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	PALETTE */
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	TYPOGRAPHY (small) */
body, caption, th, td, input, textarea, select, option, legend, fieldset, h1, h2, h3, h4, h5, h6 {
  font-size-adjust: 0.5;
}

/*	HEADINGS */
h1, .h1 {
  font-family: 'Lato', sans-serif;
  font-size: 1.7rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  color: #4b0049;
}

h2, .h2 {
  font-family: 'Lato', sans-serif;
  font-size: 1.3rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  color: #4b0049;
}

h3, .h3 {
  font-family: 'Lato', sans-serif;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  color: #4b0049;
}

h4, .h4 {
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.15;
  margin: 0;
  padding: 0;
  color: #4b0049;
}

/*	PARAGRAPHS */
p {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 1rem 0;
  padding: 0;
  color: #514c49;
}

/*	LISTS */
ul {
  list-style-type: disc;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 1rem 1.15rem;
  padding: 0;
  color: #514c49;
}
ul ul {
  list-style-type: circle;
}
ul.divided {
  list-style-type: none;
  margin: 0;
}
ul.divided li {
  padding: 0 0 .25rem 0;
  margin: .25rem 0 0 0;
  border-bottom: 1px solid #c1c8cc;
}

ol {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0 0 1rem 1.15rem;
  padding: 0;
  color: #514c49;
}

/*	HORIZONTAL RULE */
hr {
  max-width: none;
  margin: 0 0 3.75rem 0;
  border-bottom: 1px solid #c1c8cc;
}

/*	LINK COLOR */
h1 > a, h2 > a, h3 > a, p > a,
p > strong > a,
ul li > a, ol li > a {
  font-weight: 700;
  color: #00714a;
}
h1 > a:hover, h2 > a:hover, h3 > a:hover, p > a:hover,
p > strong > a:hover,
ul li > a:hover, ol li > a:hover {
  color: #514c49;
}

/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	TYPOGRAPHY (medium) */
@media screen and (min-width: 640px) {
  /*	HEADINGS */
  h1, .h1 {
    font-size: 2.15rem;
  }

  h2, .h2 {
    font-size: 1.4rem;
  }

  h3, .h3 {
    font-size: 1.15rem;
  }

  h4, .h4 {
    font-size: .9rem;
  }

  /*	PARAGRAPHS */
  p {
    font-size: 1rem;
  }

  /*	LISTS */
  ul, ol {
    font-size: 1rem;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	TYPOGRAPHY (large) */
@media screen and (min-width: 1024px) {
  /*	HEADINGS */
  h1, .h1 {
    font-size: 2.5rem;
  }

  h2, .h2 {
    font-size: 1.4rem;
  }

  h3, .h3 {
    font-size: 1.15rem;
  }

  h4, .h4 {
    font-size: .95rem;
  }

  /*	PARAGRAPHS */
  p {
    line-height: 1.5;
  }

  /*	LISTS */
  ul, ol {
    line-height: 1.5;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	TYPOGRAPHY (xlarge) */
@media screen and (min-width: 1200px) {
  /*	HEADINGS */
  h1, .h1 {
    font-size: 3rem;
  }

  h2, .h2 {
    font-size: 1.5rem;
  }

  h3, .h3 {
    font-size: 1.15rem;
  }

  /*	PARAGRAPHS */
  p {
    line-height: 1.5;
  }

  /*	LISTS */
  ul, ol {
    line-height: 1.5;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	TYPOGRAPHY (xxlarge) */
@media screen and (min-width: 1440px) {
  /*	HEADINGS */
  h1, .h1 {
    font-size: 3rem;
  }

  h2, .h2 {
    font-size: 1.75rem;
  }

  h3, .h3 {
    font-size: 1.25rem;
  }

  /*	PARAGRAPHS & LISTS */
  p, ul, ol {
    font-size: 1.15rem;
    line-height: 1.5;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	BUTTONS (small) */
.button {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 900;
  padding: .5rem 1.5rem;
  margin: 0;
  border-radius: 30px;
}

.button.green {
  color: white;
  background-color: #00714a;
}

.button.blue {
  color: white;
  background-color: #0b9095;
}

.button.white-green {
  color: #00714a;
  background-color: white;
}

.button.green-white {
  color: white;
  background-color: #00714a;
}

.button.purple-orange {
  color: #4b0049;
  background-color: #ee5d17;
}

.button.purple-gold {
  color: #4b0049;
  background-color: #e6b711;
}

/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	FORMS (small) */
input, input[type='search'] {
  border: none;
  border-radius: 3px;
}

.form-contact {
  margin: 4rem 0 3rem 0;
}

.form-default {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
.form-default label {
  font-weight: 900;
  color: white;
}
.form-default .radio label,
.form-default .checkbox label {
  font-weight: 400;
}
.form-default input,
.form-default select,
.form-default textarea {
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #514c49;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  border: none;
}
.form-default .inline,
.form-default input[type="radio"],
.form-default input[type="checkbox"] {
  display: inline;
  width: auto;
}
.form-default input.submit, .form-default [type="submit"] {
  width: auto;
  padding: .75rem 1.25rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1rem;
  color: #00714a;
  text-align: center;
  border: none;
  border-radius: 3px;
  background-color: white;
  cursor: pointer;
}
.form-default input.submit:hover, .form-default [type="submit"]:hover {
  background-color: #83c7b0;
}
.form-default .indicates-required {
  color: white;
}
.form-default .mc-field-group > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.form-default .mc-field-group > strong {
  display: block;
  font-weight: 900;
  color: white;
}
.form-default .help-text, .form-default .help-block {
  margin: .05rem 0 .3rem 0;
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  color: white;
}

.form-reverse {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 400;
}
.form-reverse h4 {
  color: #4b0049;
}
.form-reverse label {
  font-weight: 900;
  color: #514c49;
}
.form-reverse .radio label, .form-reverse .checkbox label {
  font-weight: 400;
}
.form-reverse input,
.form-reverse select,
.form-reverse textarea {
  width: 100%;
  font-family: 'Lato', sans-serif;
  font-weight: 400;
  color: #514c49;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  border: 2px solid #d7cdca;
  background-color: #f6f3f2;
}
.form-reverse .inline,
.form-reverse input[type="radio"],
.form-reverse input[type="checkbox"] {
  display: inline;
  width: auto;
}
.form-reverse input.submit, .form-reverse [type="submit"] {
  width: auto;
  padding: .5rem 1.5rem;
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1rem;
  color: white;
  text-align: center;
  border: none;
  border-radius: 3px;
  border-radius: 30px;
  background-color: #00714a;
  cursor: pointer;
}
.form-reverse input.submit:hover, .form-reverse [type="submit"]:hover {
  background-color: #4b0049;
}
.form-reverse .indicates-required {
  color: red;
}
.form-reverse .mc-field-group > ul {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.form-reverse .mc-field-group > strong {
  display: block;
  font-weight: 900;
  color: #514c49;
}
.form-reverse .help-text {
  margin: .05rem 0 .3rem 0;
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  color: #514c49;
}

.callout.success {
  border: 2px solid #83c7b0;
  border-radius: 5px;
  background-color: #e6f4ee;
  padding-top: 1.5rem;
}
.callout.success p {
  font-size: 1rem;
}
.callout.success p:last-child {
  margin-bottom: 0;
}

/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	MEDIA (small) */
/*	VIDEO */
.video-frame {
  position: relative;
  width: 100%;
  height: 0;
  padding-bottom: 56.3%;
  margin-bottom: 20px;
  overflow: hidden;
}
.video-frame iframe {
  position: absolute;
  width: 100%;
  height: 56.3%;
}

/*	GALLERY */
.orbit-figure {
  background-color: #000000;
}
.orbit-figure img {
  opacity: 0.75;
  filter: alpha(opacity=75);
}

.orbit-caption {
  display: none;
}

/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	MEDIA (medium) */
@media screen and (min-width: 640px) {
  .orbit-caption {
    display: block;
    padding: 2rem;
    text-align: center;
    background-color: transparent;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	MEDIA (large) */
@media screen and (min-width: 1024px) {
  .orbit-caption {
    padding: 3.75rem;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	MEDIA (xlarge) */
@media screen and (min-width: 1200px) {
  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	MEDIA (xxlarge) */
@media screen and (min-width: 1440px) {
  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	FRAME (small) */
/*  MIXINS */
.wrapper-body {
  position: relative;
  z-index: 1;
  top: 87px;
}

.grid-container.padding-for-large {
  padding-right: 0;
  padding-left: 0;
}

.fill {
  /* Used to remove padding on the lead photo in the page template at small sizes */
  padding-right: 0;
  padding-left: 0;
}

/*  FOOTER */
.section-footer {
  position: relative;
  z-index: 1;
  top: 87px;
  padding: 0 0 2rem 0;
  width: 100%;
  border-bottom: 30px solid #00714a;
  background-color: #f6f3f2;
}
.section-footer .footer {
  position: relative;
  z-index: 3;
}
.section-footer .footer h3 {
  margin: 2rem 0 .25rem 0;
  color: #00714a;
}
.section-footer ul {
  list-style-type: none;
  margin: 0 0 1.5rem 0;
}
.section-footer ul li {
  font-size: .9rem;
  line-height: 1.6;
}
.section-footer ul a {
  color: #514c49;
}
.section-footer ul a:hover {
  color: #00714a;
}
.section-footer .feature-large {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border-radius: 6px;
  border: 2px solid #e3e1dc;
  background-color: #f6f3f2;
}
.section-footer .feature-large .feature-image {
  width: 100%;
}
.section-footer .feature-large .feature-image > figure {
  width: 100%;
  padding-bottom: 56.25%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-size: cover;
  background-position: center center;
}
.section-footer .feature-large .feature-text {
  width: 100%;
  padding: 2rem;
}
.section-footer .feature-large .feature-text .text-block {
  margin: 0 0 1.3rem 0;
}
.section-footer .feature-large .feature-text h2 {
  font-size: 1.2rem;
  color: #0b9095;
  margin: 0 0 .25rem 0;
}
.section-footer .feature-large .feature-text p {
  font-size: .9rem;
}
.section-footer .feature-large .feature-text p:last-child {
  margin: 0;
}
.section-footer .feature-large .feature-text .button-block a {
  display: block;
  margin: 0 0 .5rem 0;
}
.section-footer .feature-large .feature-text .button-block a:last-child {
  margin-bottom: 0;
}
.section-footer .footer-contactlist {
  margin: 0;
}
.section-footer .footer-contactlist li a {
  color: #00714a;
}
.section-footer .footer-contactlist li a:hover {
  color: #514c49;
}
.section-footer .footer-social {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flext-start;
  align-items: center;
}
.section-footer .footer-social li {
  margin: 0 1rem 0 0;
}
.section-footer .background {
  position: absolute;
  z-index: 2;
  right: 0;
  bottom: 0;
}

.cfm-footer {
  background-color: #f1f0ee;
}

/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	FRAME (medium) */
@media screen and (min-width: 640px) {
  /*  FOOTER */
  .section-footer {
    padding: 0 0 2rem 0;
  }
  .section-footer .footer h3 {
    margin: 2rem 0 .25rem 0;
  }
  .section-footer ul li {
    font-size: 1rem;
  }
  .section-footer .feature-large {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  .section-footer .feature-large .feature-image {
    order: 2;
    width: 50%;
  }
  .section-footer .feature-large .feature-image > figure {
    height: 100%;
    padding-bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  .section-footer .feature-large .feature-text {
    order: 1;
    width: 50%;
  }
  .section-footer .feature-large .feature-text h2 {
    font-size: 1.4rem;
  }
  .section-footer .feature-large .feature-text p {
    font-size: 1rem;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	FRAME (large) */
@media screen and (min-width: 1024px) {
  .wrapper-body, .footer-wrapper {
    top: 173px;
  }

  .grid-container.padding-for-large {
    padding-right: .9375rem;
    padding-left: .9375rem;
  }

  /*  FOOTER */
  .section-footer {
    top: 173px;
    padding: 3rem 0 2rem 0;
  }
  .section-footer .feature-large {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .section-footer .feature-large .feature-image {
    order: 1;
    width: 100%;
  }
  .section-footer .feature-large .feature-image > figure {
    height: auto;
    padding-bottom: 56.25%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 0;
  }
  .section-footer .feature-large .feature-text {
    order: 2;
    width: 100%;
  }
  .section-footer .feature-large .feature-text h2 {
    font-size: 1.4rem;
  }
  .section-footer .feature-large .feature-text p {
    font-size: 1rem;
  }
  .section-footer .footer-contactlist {
    margin: 0 0 1.3rem 0;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	FRAME (xlarge) */
@media screen and (min-width: 1200px) {
  /*  FOOTER */
  .section-footer {
    padding: 3rem 0;
  }
  .section-footer .feature-large {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  .section-footer .feature-large .feature-image {
    order: 2;
    width: 40%;
  }
  .section-footer .feature-large .feature-image > figure {
    height: 100%;
    padding-bottom: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 6px;
    border-bottom-right-radius: 6px;
  }
  .section-footer .feature-large .feature-text {
    order: 1;
    width: 60%;
  }
  .section-footer .feature-large .feature-text h2 {
    font-size: 1.5rem;
  }
  .section-footer .feature-large .feature-text p {
    font-size: 1rem;
  }
  .section-footer .footer-contactlist {
    margin: 0 0 1.3rem 0;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	FRAME (xxlarge) */
@media screen and (min-width: 1440px) {
  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	NAVIGATION (small) */
/*  SCROLLHIDE NAV */
.scrollhide-nav {
  position: fixed;
  right: 0;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: transform 1s cubic-bezier(0.86, 0, 0.07, 1);
  background-color: transparent;
}
.scrollhide-nav.hidden {
  transform: translateY(-100%);
}

.wrapper-nav {
  z-index: 100;
}

/*	TITLE BAR */
.title-bar {
  padding: 1rem 1rem;
  background-color: white;
}
.title-bar .title-bar-right {
  padding: 0 .5rem 0 0;
  width: 100%;
  text-align: right;
}

.menu-icon {
  width: 28px;
  height: 20px;
}
.menu-icon::after {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  background: #00714a;
  box-shadow: 0 7px 0 #00714a, 0 14px 0 #00714a;
  content: '';
}
.menu-icon:hover::after {
  background: #00714a;
  box-shadow: 0 7px 0 #00714a, 0 14px 0 #00714a;
}

/*	OFF-CANVAS */
.off-canvas {
  width: 287px;
  padding: 1.25rem;
  text-align: center;
  background-color: white;
}
.off-canvas > .menu {
  list-style-type: none;
  margin: 2rem 0;
  padding: 0;
}
.off-canvas > .menu li {
  display: block;
  width: 100%;
  border-bottom: none;
}
.off-canvas > .menu .button-item {
  padding: .5rem 0;
}
.off-canvas .submenu {
  padding: .25rem 0 .75rem 0;
}
.off-canvas .lvl1 {
  font-family: 'Baloo', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .075rem;
}
.off-canvas .lvl1 a {
  padding: .5rem 0;
  color: #7d726d;
}
.off-canvas .lvl1.lvl1-cfm {
  font-family: 'Lato', sans-serif;
  font-weight: 900;
  font-size: 1.15rem;
}
.off-canvas .lvl2 {
  margin: 0 0 1.25rem 0 !important;
  font-size: 1.05rem;
  font-weight: 400;
  text-transform: none;
  letter-spacing: normal;
}
.off-canvas .lvl2 a {
  padding: .6rem 0;
  color: #00714a;
}
.off-canvas .lvl2 a:hover {
  color: #7d726d;
}
.off-canvas .lvl2 > .last {
  border-bottom: 0;
}
.off-canvas .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
  display: none;
  border-color: black transparent transparent;
  right: 0;
}

.logo-mobile {
  width: 100%;
  padding-bottom: 1rem;
  margin-top: 1rem;
  text-align: center;
}
.logo-mobile img {
  margin: 0 auto;
}

.social-menu img {
  margin: 0 .25rem;
}

/*  SIDEBAR */
.nav-sidebar .sidebar-heading {
  margin: 0 0 2rem 0;
}
.nav-sidebar .sidebar-heading h5 {
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin: 0;
  padding: 0;
  color: #7d726d;
}
.nav-sidebar .sidebar-heading .divider {
  margin: .5rem 0 0 0;
  width: 45px;
  height: 4px;
  background-color: #00714a;
}
.nav-sidebar ul {
  list-style-type: none;
  margin: 0 0 2rem 0;
  padding: 0;
}
.nav-sidebar ul li {
  font-size: 1rem;
  line-height: 1.4;
  color: #514c49;
}
.nav-sidebar ul li h3 {
  margin: 0 0 .5rem 0;
}
.nav-sidebar ul li span {
  font-size: 1.2rem;
  font-weight: 900;
}
.nav-sidebar ul li a {
  color: #514c49;
}
.nav-sidebar ul li a:hover {
  color: #00714a;
}
.nav-sidebar ul li a.active {
  font-weight: 900;
  color: #00714a;
}

/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	NAVIGATION (medium) */
@media screen and (min-width: 640px) {
  /*	TITLE BAR */
  .title-bar {
    padding: 1rem 1rem;
  }

  /*	TOP BAR */
  .top-bar-wrapper {
    width: 100%;
  }

  .top-bar {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    margin: 0;
    width: 100%;
    background-color: white;
    /* SECONDARY MENU */
    /* PRIMARY MENU */
  }
  .top-bar ul {
    background-color: transparent;
  }
  .top-bar .top-bar-secondary {
    width: 100%;
    padding: 1rem 0;
    background-color: #00714a;
  }
  .top-bar .top-bar-secondary .nav-secondary {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    list-style-type: none;
    margin: 0;
  }
  .top-bar .top-bar-secondary .nav-secondary li {
    margin: 0 0 0 1rem;
  }
  .top-bar .top-bar-secondary .nav-secondary li a {
    font-size: 1rem;
    font-weight: 900;
    color: white;
  }
  .top-bar .top-bar-secondary .nav-secondary li a.button {
    color: #00714a;
    background-color: white;
  }
  .top-bar .top-bar-primary {
    width: 100%;
  }
  .top-bar .top-bar-primary-wrapper {
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
    width: 100%;
    /* LOGO */
    /* MENU */
    /* CFM MENU BUTTON */
  }
  .top-bar .top-bar-primary-wrapper .top-bar-left {
    width: 250px;
    flex-grow: 1;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center {
    flex-grow: 2;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary {
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary > ul {
    font-family: 'Lato', sans-serif;
    font-size: 1.25rem;
    font-weight: 900;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary > ul > li a {
    padding: 0 .85rem;
    height: auto;
    color: #7d726d;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary > ul > li a:hover, .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary > ul > li a:active, .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary > ul > li a:focus {
    color: #00714a;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary > ul > li a.active {
    color: #00714a;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary > ul > li a.last {
    padding: 0;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary > ul > li a.last.active {
    color: #00714a;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary.cfm-menu > ul {
    font-family: 'Lato', sans-serif;
    font-weight: 900;
    font-size: 1.15rem;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .dropdown.menu > li.is-dropdown-submenu-parent > a::after {
    display: none;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .dropdown.menu > li.opens-left > .is-dropdown-submenu {
    top: 100%;
    right: auto;
    left: 0;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .dropdown.menu .is-active > a {
    color: #00714a;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary .submenu {
    margin-top: 5px;
    padding: 1rem 0;
    border: none;
    border-radius: 6px;
    background: #00714a;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary .submenu li {
    padding: .2rem 0;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary .submenu a {
    padding: .3rem .85rem;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    color: white;
    border-left: 6px solid #00714a;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-center .menu-primary .submenu a:hover {
    color: #83c7b0;
    border-left: 6px solid #83c7b0;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right {
    flex-grow: 1;
    width: 250px;
    text-align: right;
  }

  .top-bar-return {
    padding: .6rem 0 .4rem 0;
    width: 100%;
    text-align: right;
    font-size: .9rem;
    border-bottom: 1px solid #e3e1dc;
  }
  .top-bar-return a {
    color: #7d726d;
  }

  .logo-large-cfm {
    width: 260px;
    transition: width .35s ease;
  }

  .is-stuck .logo-large-cfm {
    width: 160px;
    transition: width .35s ease;
  }

  .mini-symbol {
    margin-left: .25rem;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	NAVIGATION (large) */
@media screen and (min-width: 1024px) {
  /*	TOP BAR */
  .top-bar .top-bar-primary-wrapper .top-bar-left {
    width: 160px;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button {
    display: inline-block;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button button {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-end;
    align-items: center;
    width: auto;
    cursor: pointer;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button button .cfm-menu-icon {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
    padding: 6px 10px 6px 18px;
    height: 62px;
    width: auto;
    border: 2px solid #d7cdca;
    border-top-left-radius: 40px;
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 40px;
    background-color: white;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button button .cfm-menu-heading {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: flex-start;
    padding-right: 20px;
    padding-left: 15px;
    width: auto;
    height: 62px;
    font-family: 'Lato', sans-serif;
    font-size: 1rem;
    font-weight: 900;
    line-height: 1.1;
    color: #4b0049;
    text-align: left;
    border-top: 2px solid #d7cdca;
    border-right: 2px solid #d7cdca;
    border-bottom: 2px solid #d7cdca;
    border-top-left-radius: 0;
    border-top-right-radius: 40px;
    border-bottom-right-radius: 40px;
    border-bottom-left-radius: 0;
    background-color: #f6f3f2;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .dropdown-pane {
    padding: .5rem 0 0 0;
    width: 800px;
    border: none;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer {
    width: 800px;
    padding: 0;
    text-align: left;
    border-radius: 6px;
    border: 2px solid #d7cdca;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-menus {
    padding: 2rem;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
    background-color: #f6f3f2;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-menus h3 {
    color: #4b0049;
    margin-bottom: .5rem;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-menus ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: 1rem;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-menus ul a {
    color: #514c49;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-menus ul a:hover {
    color: #0b9095;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-menus .menu-2 {
    padding-left: 1rem;
    border-left: 2px solid #d7cdca;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-menus .directory-callout {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    padding: 1rem;
    margin-top: 1.5rem;
    width: 100%;
    border-radius: 6px;
    background-color: #0b9095;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-menus .directory-callout p {
    margin: 0;
    font-size: 1rem;
    font-weight: 900;
    color: white;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-menus .directory-callout .directory-callout-button {
    width: 40%;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-menus .directory-callout .directory-callout-text {
    width: 60%;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-featured-cfm {
    padding: 2rem;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-featured-cfm h3 {
    color: #4b0049;
    margin-bottom: .75rem;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-featured-cfm img {
    margin-bottom: .5rem;
    border-radius: 6px;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-featured-cfm h4 a {
    color: #0b9095;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-featured-cfm h4 a:hover {
    color: #514c49;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right .cfm-menu-button .cfm-menu-drawer .drawer-featured-cfm p {
    font-size: 1rem;
  }

  .logo-large-cfm {
    width: 260px;
    transition: width .35s ease;
  }

  .is-stuck .logo-large-cfm {
    width: 206px;
    transition: width .35s ease;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	NAVIGATION (xlarge) */
@media screen and (min-width: 1200px) {
  /*	TOP BAR */
  .top-bar .top-bar-primary-wrapper .top-bar-left {
    width: 250px;
  }
  .top-bar .top-bar-primary-wrapper .top-bar-right {
    width: 250px;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	NAVIGATION (xxlarge) */
@media screen and (min-width: 1440px) {
  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	PAGE (small) */
/*	BANNER */
.banner-page {
  position: relative;
  width: 100%;
  height: auto;
}
.banner-page .overlay-wrapper {
  position: relative;
  z-index: 25;
  display: table;
  width: 100%;
  height: 396px;
  text-align: center;
}
.banner-page .overlay {
  display: table-cell;
  vertical-align: middle;
}
.banner-page .overlay h1 {
  color: white;
}
.banner-page .overlay .button {
  margin: 1.5rem 0 0 0;
}
.banner-page .background {
  position: absolute;
  top: 0;
  z-index: 20;
  width: 100%;
  height: 396px;
  overflow: hidden;
}
.banner-page .background > img {
  position: absolute;
  left: 50%;
  margin-left: -750px;
  width: 1500px;
  min-width: none;
  max-width: none;
  height: auto;
}

/*	BODY */
.page-element {
  padding: 0 0 1.5rem 0;
}
.page-element.alt {
  padding: 0 0 .5rem 0;
}
.page-element:first-child {
  padding-top: 0;
}
.page-element:last-child {
  padding-bottom: 0;
}

.page-wrapper {
  position: relative;
  z-index: 10;
  padding: 2rem 0;
  /* RESPONSIVE EMBED */
  /* LEAD PHOTO */
  /* TEXT */
  /* CALL TO ACTION */
  /* PARTNER */
  /* PHOTO AND GALLERY */
  /* RELATED RESOURCES */
  /* STAFF */
  /* PANELS */
  /* GROUPS */
}
.page-wrapper h1, .page-wrapper .h1 {
  margin: 2.5rem 0 2rem 0;
  color: #4b0049;
}
.page-wrapper h1:first-child, .page-wrapper .h1:first-child {
  margin-top: 0;
}
.page-wrapper .page-heading h1 {
  margin-bottom: 0;
}
.page-wrapper .responsive-embed.code {
  height: 100%;
  padding-bottom: 0;
}
.page-wrapper .lead-photo {
  margin: 0 auto;
}
.page-wrapper .text h2 {
  margin: 2.5rem 0 1rem 0;
}
.page-wrapper .text h3 {
  margin: 2.5rem 0 .5rem 0;
}
.page-wrapper .text h4 {
  margin: 2.5rem 0 .25rem 0;
}
.page-wrapper .text h2:first-child, .page-wrapper .text h3:first-child, .page-wrapper .text h4:first-child {
  margin-top: 0;
}
.page-wrapper .text p:last-child, .page-wrapper .text ul:last-child, .page-wrapper .text ol:last-child {
  margin-bottom: 0;
}
.page-wrapper .text.contact-info {
  padding: 3rem 0;
  border-top: 2px solid #f6f3f2;
  border-bottom: 2px solid #f6f3f2;
}
.page-wrapper .text a.button {
  color: white;
  background-color: #00714a;
}
.page-wrapper .text a.button:hover {
  color: #4b0049;
}
.page-wrapper .cta {
  padding: 2rem 0;
  width: 100%;
  text-align: center;
  border-top: 2px solid #d7cdca;
  border-bottom: 2px solid #d7cdca;
}
.page-wrapper .partner {
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
  padding: 0;
  margin: 0 0 3rem 0;
  min-height: 80%;
  border-bottom: none;
}
.page-wrapper .partner .partner-logo {
  margin: 0;
}
.page-wrapper .partner .partner-info p:last-child {
  margin: 0;
}
.page-wrapper .photo img, .page-wrapper .gallery img {
  border-radius: 6px;
}
.page-wrapper .related-resources h3 {
  margin-bottom: .5rem;
}
.page-wrapper .related-resources .doc-wrapper {
  padding: 1rem 0;
  margin-bottom: 0;
  border-radius: 0;
  border-top: 2px solid #d7cdca;
  border-right: none;
  border-bottom: none;
  border-left: none;
  background: transparent;
}
.page-wrapper .staff .thumb {
  float: left;
  display: inline-block;
  margin-right: 1rem;
}
.page-wrapper .staff .name {
  margin: .5rem 0 0 0;
}
.page-wrapper .staff .accordion-content {
  padding: 3rem 3rem 2rem 3rem;
}
.page-wrapper .staff .accordion-title {
  height: 120px;
}
.page-wrapper .staff .accordion-title:hover, .page-wrapper .staff .accordion-title:focus {
  background-color: #f6f3f2;
}
.page-wrapper .staff a.accordion-title::before {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #0b9095;
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -1rem;
  content: '+';
}
.page-wrapper .staff div.accordion-title::before {
  content: '';
}
.page-wrapper .panels .heading {
  margin: .5rem 0 0 0;
}
.page-wrapper .panels .accordion-content {
  padding: 3rem 3rem 4rem 3rem;
}
.page-wrapper .panels .accordion-title {
  height: auto;
}
.page-wrapper .panels .accordion-title:hover, .page-wrapper .panels .accordion-title:focus {
  background-color: #f6f3f2;
}
.page-wrapper .panels a.accordion-title::before {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #0b9095;
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -1rem;
  content: '+';
}
.page-wrapper .panels div.accordion-title::before {
  content: '';
}
.page-wrapper .panels .accordion-content h3 {
  font-size: 1.15rem;
}
.page-wrapper .panels .accordion-content h3 + h3 {
  margin: 1rem 0 .25rem 0;
}
.page-wrapper .panels .accordion-content h4 {
  margin: 2rem 0 1.5rem 0;
  color: #4b0049;
}
.page-wrapper .panels .accordion-content p, .page-wrapper .panels .accordion-content ul, .page-wrapper .panels .accordion-content ol {
  font-size: 1rem;
  line-height: 1.35rem;
}
.page-wrapper .panels .accordion-content ul, .page-wrapper .panels .accordion-content ol {
  list-style-type: disc;
}
.page-wrapper .panels .accordion-content ul li, .page-wrapper .panels .accordion-content ol li {
  margin: 0 0 .5rem 0;
  padding: 0 0 .5rem 0;
  border-bottom: 1px solid #d7cdca;
}
.page-wrapper .panels .accordion-content ul li p, .page-wrapper .panels .accordion-content ol li p {
  margin: 0;
}
.page-wrapper .panels .accordion-content ul ul, .page-wrapper .panels .accordion-content ul ol, .page-wrapper .panels .accordion-content ol ul, .page-wrapper .panels .accordion-content ol ol {
  list-style-type: circle;
  margin-top: .5rem;
  margin-bottom: .5rem;
}
.page-wrapper .panels .accordion-content ul ul li, .page-wrapper .panels .accordion-content ul ol li, .page-wrapper .panels .accordion-content ol ul li, .page-wrapper .panels .accordion-content ol ol li {
  padding: 0;
  border-bottom: 0;
}
.page-wrapper .panels .accordion-content ul ul li p, .page-wrapper .panels .accordion-content ul ol li p, .page-wrapper .panels .accordion-content ol ul li p, .page-wrapper .panels .accordion-content ol ol li p {
  margin: 0;
}
.page-wrapper .groups .logo {
  margin: 0 0 1rem 0;
}
.page-wrapper .groups .name {
  margin: 0;
}
.page-wrapper .groups .accordion-content {
  padding: 3rem 3rem 2rem 3rem;
}
.page-wrapper .groups .accordion-title:hover, .page-wrapper .groups .accordion-title:focus {
  background-color: #f6f3f2;
}
.page-wrapper .groups a.accordion-title::before {
  font-family: 'Lato', sans-serif;
  font-size: 2rem;
  font-weight: 900;
  color: #0b9095;
  position: absolute;
  top: 50%;
  right: 1rem;
  margin-top: -1rem;
  content: '+';
}
.page-wrapper .groups div.accordion-title::before {
  content: '';
}
.page-wrapper .background-head {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 20;
  width: 100%;
  height: 260px;
  background-color: white;
}
.page-wrapper .background {
  padding: 0;
  width: 100%;
}
.page-wrapper .background img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
}

.newsletter-archive {
  margin: 2rem 0 4rem 0;
}
.newsletter-archive h2 {
  color: white;
}
.newsletter-archive .display_archive .campaign {
  margin: 0 0 1rem 0;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: white;
}
.newsletter-archive .display_archive .campaign a {
  color: #83c7b0;
  display: block;
}
.newsletter-archive .display_archive .campaign a:hover {
  color: white;
}

/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	PAGE (medium) */
@media screen and (min-width: 640px) {
  .banner-page .overlay-wrapper {
    height: 360px;
  }
  .banner-page .background {
    height: 360px;
  }
  .banner-page .background > img {
    margin-left: -750px;
    width: 1500px;
  }

  .page-wrapper .background-head {
    height: 160px;
  }

  .newsletter-archive {
    padding: 0 30px;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	PAGE (large) */
@media screen and (min-width: 1024px) {
  .page-wrapper {
    padding: 4rem 0;
  }
  .page-wrapper .background-head {
    height: 260px;
  }

  .newsletter-archive {
    padding: 0 60px;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	PAGE (xlarge) */
@media screen and (min-width: 1200px) {
  .page-element {
    padding: 0 0 2rem 0;
  }

  .banner-page .overlay-wrapper {
    height: 420px;
  }
  .banner-page .background {
    height: 420px;
  }
  .banner-page .background > img {
    margin-left: -825px;
    width: 1650px;
  }

  .page-wrapper {
    padding: 5rem 0;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	PAGE (xxlarge) */
@media screen and (min-width: 1440px) {
  .page-element {
    padding: 0 0 2.5rem 0;
  }

  .banner-page .overlay-wrapper {
    height: 490px;
  }
  .banner-page .background {
    height: 490px;
  }
  .banner-page .background > img {
    margin-left: -960px;
    width: 1920px;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	DIRECTORY (small) */
.searchbar {
  width: 100%;
}
.searchbar > input {
  position: relative;
  width: 100%;
  padding: .6rem;
}
.searchbar ::placeholder {
  color: #514c49;
}

.search-filters label {
  font-size: .9rem;
  color: #514c49;
  text-align: left;
}

/*	DIRECTORY WRAPPER */
.directory-wrapper {
  position: relative;
  z-index: 40;
  padding: 0 0 3rem 0;
}
.directory-wrapper .directory {
  position: relative;
  z-index: 25;
}
.directory-wrapper .directory p, .directory-wrapper .directory ul, .directory-wrapper .directory ol {
  color: #514c49;
}
.directory-wrapper .directory .callout {
  padding: 1rem 2.5rem 1rem 1rem;
}
.directory-wrapper .directory .callout p {
  color: #514c49;
}
.directory-wrapper .directory .submission-text h1, .directory-wrapper .directory .submission-text p {
  color: white;
}
.directory-wrapper .directory .submission-text h1 {
  margin: 0 0 2rem 0;
}
.directory-wrapper .nav-pagination {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  margin: 0;
  padding: 0;
  color: #514c49;
}
.directory-wrapper .nav-pagination strong {
  color: #4b0049;
  margin: 0 .25rem;
}
.directory-wrapper .nav-pagination a {
  color: #00714a;
  margin: 0 .25rem;
}
.directory-wrapper .nav-sidebar-categories .sidebar-heading {
  margin: 0 0 2rem 0;
}
.directory-wrapper .nav-sidebar-categories .sidebar-heading h5 {
  font-family: 'Lato', sans-serif;
  font-size: .95rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  margin: 0;
  padding: 0;
  color: #7d726d;
}
.directory-wrapper .nav-sidebar-categories .sidebar-heading .divider {
  margin: .5rem 0 0 0;
  width: 45px;
  height: 4px;
  background-color: #00714a;
}
.directory-wrapper .nav-sidebar-categories ul {
  list-style-type: none;
  margin: 0 0 2rem 0;
  padding: 0;
}
.directory-wrapper .nav-sidebar-categories ul li {
  font-size: 1rem;
  line-height: 1.4;
  color: #514c49;
}
.directory-wrapper .nav-sidebar-categories ul li h3 {
  margin: 0 0 .5rem 0;
}
.directory-wrapper .nav-sidebar-categories ul li a {
  display: inline-block;
  padding: .75rem 0;
  width: 100%;
  color: #514c49;
  border-bottom: 1px solid #c1c8cc;
}
.directory-wrapper .nav-sidebar-categories ul li a:hover {
  color: #00714a;
}
.directory-wrapper .nav-sidebar-categories ul li a.active {
  font-weight: 900;
  color: #00714a;
}
.directory-wrapper .nav-sidebar-categories ul li a span {
  font-size: 1.2rem;
  font-weight: 900;
}
.directory-wrapper .nav-sidebar-categories .accordion-menu .is-accordion-submenu-parent:not(.has-submenu-toggle) > a::after {
  border-color: #00714a transparent transparent;
}
.directory-wrapper .background {
  padding: 0;
  width: 100%;
}
.directory-wrapper .background img {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 20;
}

/*	DOC WRAPPER */
.doc-wrapper {
  padding: 30px;
  margin-bottom: 15px;
  border-radius: 6px;
  border: 2px solid #83c7b0;
  background: #e6f4ee;
}
.doc-wrapper .video-thumb {
  margin: 1rem 0 0 0;
}
.doc-wrapper h3 {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  letter-spacing: normal;
  text-transform: none;
  margin: 0;
  color: #00714a;
}
.doc-wrapper .docinfo {
  list-style-type: none;
  margin: 0;
  padding: 0;
  font-size: .9rem;
}
.doc-wrapper .docinfo li {
  color: #514c49;
}
.doc-wrapper .description {
  margin: 1rem 0 0 0;
}
.doc-wrapper .thumb {
  text-align: left;
}

.resource-icon {
  width: 46px;
  height: 46px;
  margin: 0 0 .5rem 0;
}

.wrapper-resource {
  margin-left: 0;
}

/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	DIRECTORY (medium) */
@media screen and (min-width: 640px) {
  /*	DOC WRAPPER */
  .doc-wrapper img {
    margin: 0;
  }
  .doc-wrapper h3 {
    font-family: 'Lato', sans-serif;
    font-weight: 700;
    letter-spacing: normal;
    text-transform: none;
    margin: 0;
  }
  .doc-wrapper .docinfo {
    list-style-type: none;
    margin: 0;
    padding: 0;
    font-size: .9rem;
  }
  .doc-wrapper p {
    margin: 1rem 0 0 0;
  }
  .doc-wrapper .thumb {
    text-align: right;
  }

  .resource-icon {
    width: 46px;
    height: 46px;
    float: left;
  }

  .wrapper-resource {
    margin-left: 60px;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	DIRECTORY (large) */
@media screen and (min-width: 1024px) {
  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	DIRECTORY (xlarge) */
@media screen and (min-width: 1200px) {
  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	DIRECTORY (xxlarge) */
@media screen and (min-width: 1440px) {
  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	EVENTS (small) */
.event-divider {
  margin-top: 2rem;
}

.event-wrapper {
  border-top: 1px solid #c1c8cc;
  margin-top: 2rem;
  padding-top: 3rem;
}
.event-wrapper.first {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
}
.event-wrapper .page-wrapper h1, .event-wrapper .page-wrapper .h1 {
  margin: 0;
}

.event-info {
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 2px solid #d7cdca;
  border-bottom: 1px solid #d7cdca;
}
.event-info thead, .event-info tbody, .event-info tfoot {
  border-left: 0;
  border-right: 0;
}
.event-info th, .event-info td {
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.35;
  padding: .75rem .5rem;
  color: #514c49;
  text-align: left;
}
.event-info th p, .event-info td p {
  margin: 0;
  font-size: 1rem;
  color: #514c49;
}
.event-info th {
  font-weight: 900;
}
.event-info.unstriped tbody tr {
  border-bottom: 1px solid #d7cdca;
}

.event-intro {
  width: 100%;
  text-align: center;
}

h1.webinar {
  margin-top: 4rem;
}

.archive-wrapper {
  position: relative;
  z-index: 10;
  padding: 6rem 0;
  text-align: center;
  background-color: #e3e1dc;
}
.archive-wrapper h2 {
  margin: 0 0 2rem 0;
}

.event-item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}
.event-item .event-thumb {
  width: 100%;
}
.event-item .event-thumb .event-image {
  width: 100%;
  aspect-ratio: 6/4;
}
.event-item .event-thumb .event-image > figure {
  height: 100%;
  border-radius: 6px;
  background-size: cover;
  background-position: top center;
}
.event-item .event-details {
  padding: 1rem 0 1rem 0;
  width: 100%;
  border-bottom: 2px solid #d7cdca;
}
.event-item .event-details h3 {
  margin-bottom: .25rem;
}
.event-item .event-details p {
  font-size: 1rem;
  margin: 0;
}
.event-item .event-details p span {
  font-size: 1.2rem;
  font-weight: 900;
}

.event-photo {
  border-radius: 6px;
  padding-bottom: 1.5rem;
}

/*	NEWS */
.news-item h3 {
  margin: 1rem 0 .25rem 0;
}
.news-item .readmore {
  margin: -1rem 0 1rem 0;
}

.pagination {
  margin: 2rem 0;
}
.pagination li {
  font-family: 'Lato', sans-serif;
  font-size: .9rem;
  padding: 0;
  margin-right: .35rem;
  border-bottom: none;
}
.pagination li a {
  color: #7d726d;
  border-radius: 4px;
  background-color: none;
}
.pagination li a:hover {
  color: #4b0049;
  background-color: #f6f3f2;
}
.pagination li a.active {
  color: #4b0049;
  font-weight: 900;
  background-color: none;
}

/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	EVENTS (medium) */
@media screen and (min-width: 640px) {
  .event-item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    margin: 0 0 2rem 0;
  }
  .event-item .event-thumb {
    width: 33.3%;
  }
  .event-item .event-details {
    margin-left: 30px;
    padding: 1rem 0 1rem 0;
    width: 66.7%;
  }

  .event-info-detail {
    margin: 2rem 30px;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	EVENTS (large) */
@media screen and (min-width: 1024px) {
  .event-info-detail {
    margin: 2rem 60px;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	EVENTS (xlarge) */
@media screen and (min-width: 1200px) {
  .event-photo {
    padding-bottom: 2rem;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	EVENTS (xxlarge) */
@media screen and (min-width: 1440px) {
  .event-photo {
    padding-bottom: 2.5rem;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	STORIES (small) */
.stories-item {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 0;
  margin: 0 0 2rem 0;
  text-align: left;
}
.stories-item .stories-thumb {
  width: 100%;
}
.stories-item .stories-thumb .stories-image {
  width: 100%;
  aspect-ratio: 6/4;
}
.stories-item .stories-thumb .stories-image > figure {
  height: 100%;
  border-radius: 6px;
  background-size: cover;
  background-position: top center;
}
.stories-item .stories-details {
  padding: 1rem 0 1rem 0;
  width: 100%;
  border-bottom: 2px solid #d7cdca;
}
.stories-item .stories-details h3 {
  margin-bottom: .25rem;
}
.stories-item .stories-details p {
  font-size: 1rem;
  margin: 0;
}
.stories-item .stories-details p a {
  font-weight: 400;
  color: #514c49;
}
.stories-item .stories-details p a:hover {
  color: #00714a;
}

/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	STORIES (medium) */
@media screen and (min-width: 640px) {
  .stories-item {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
    padding: 0;
    margin: 0 0 2rem 0;
  }
  .stories-item .stories-thumb {
    width: 33.3%;
  }
  .stories-item .stories-details {
    margin-left: 30px;
    padding: 1rem 0 1rem 0;
    width: 66.7%;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	EVENTS (large) */
@media screen and (min-width: 1024px) {
  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	EVENTS (xlarge) */
@media screen and (min-width: 1200px) {
  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	EVENTS (xxlarge) */
@media screen and (min-width: 1440px) {
  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	FOCUS (small) */
/*	BANNER */
.banner-focus {
  position: relative;
  width: 100%;
  height: auto;
}
.banner-focus .overlay-wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 20;
  padding: 0 3.5rem;
  height: 250px;
  width: 100%;
  text-align: center;
}
.banner-focus .overlay h1, .banner-focus .overlay h2 {
  margin-bottom: 1rem;
  color: white;
}
.banner-focus .overlay h1:last-child, .banner-focus .overlay h2:last-child, .banner-focus .overlay p:last-child {
  margin-bottom: 0;
}
.banner-focus .background {
  position: absolute;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 250px;
}
.banner-focus .background > figure {
  height: 100%;
  border-radius: 0;
  background-size: cover;
  background-position: center center;
}

/*  FOCUS FLUID CONTENT */
.focus-section {
  padding: 2rem 0;
}
.focus-section.heading {
  padding: 2rem 0 0 0;
}
.focus-section:first-child {
  padding: 4rem 0 2rem 0;
}
.focus-section:last-child {
  padding: 2rem 0 4rem 0;
}

.focus-intro {
  padding: 0 1.875rem;
  margin: 0 auto;
  max-width: 390px;
  text-align: center;
}
.focus-intro p:last-child {
  margin: 0;
}

.focus-heading {
  padding: 0 1.875rem;
  text-align: center;
}
.focus-heading h2 {
  font-family: 'Baloo', sans-serif;
  color: #00714a;
  margin: 0;
}

.focus-text {
  padding: 0 1.875rem;
  text-align: center;
}
.focus-text p:last-child {
  margin: 0;
}

.focus-partners {
  width: 100%;
  text-align: center;
  background-color: white;
}
.focus-partners .logos img {
  height: 70px;
  margin: 0 1rem 2rem 0;
}

.focus-photo img {
  width: 100%;
}

/*	QUICK LINKS */
.quicklinks {
  position: relative;
  z-index: 30;
}

.quicklinks.cfm {
  margin: 0 0 3rem 0;
}

.fiddlebox {
  position: relative;
  width: 100%;
  max-width: 390px;
  text-align: center;
  border-radius: 6px;
  overflow: hidden;
  margin: 0 auto 1rem auto;
}
.fiddlebox .overlay-wrapper {
  position: absolute;
  z-index: 40;
  width: 100%;
  height: auto;
  padding: 15% 0;
}
.fiddlebox .overlay .icon {
  height: 50px;
  margin-bottom: 1rem;
}
.fiddlebox .overlay p {
  margin: 0;
}
.fiddlebox .background {
  position: relative;
  z-index: 35;
  width: 100%;
  height: auto;
}
.fiddlebox p {
  font-family: 'Baloo', cursive;
  font-size: 1.5rem;
  font-weight: normal;
  letter-spacing: 0.05rem;
  color: white;
  margin: 0;
  line-height: 1.15;
}

/*	INTRODUCTION */
.gardeninginfo {
  position: relative;
  text-align: center;
}
.gardeninginfo .overlay-wrapper {
  position: relative;
  z-index: 30;
  margin: 0 auto;
  padding: 1.875rem;
  max-width: 390px;
  text-align: center;
}
.gardeninginfo .overlay-wrapper h2 {
  margin-top: 0;
  font-family: 'Baloo', cursive;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.15;
  text-transform: none;
  letter-spacing: normal;
  color: #00714a;
}
.gardeninginfo .overlay-wrapper .button {
  margin: 0;
}
.gardeninginfo .background {
  position: absolute;
  top: 0;
  z-index: 15;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.gardeninginfo .background > img {
  display: none;
}

/*	LEADERS */
.garden-leaders {
  width: 100%;
  padding: 3rem 0;
  text-align: center;
  background-color: white;
}
.garden-leaders h2 {
  font-family: 'Baloo', sans-serif;
  color: #00714a;
  margin: 0 0 .75rem 0;
}
.garden-leaders .logos {
  padding: 2rem 0 0 0;
}
.garden-leaders .logos img {
  height: 70px;
  margin: 0 1rem;
}

/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	FOCUS (medium) */
@media screen and (min-width: 640px) {
  /*	BANNER */
  .banner-focus .overlay-wrapper {
    padding: 0 16%;
    height: 350px;
  }
  .banner-focus .background {
    height: 350px;
  }

  /*  FOCUS FLUID CONTENT */
  .focus-section {
    padding: 2.5rem 0;
  }
  .focus-section.heading {
    padding: 2.5rem 0 0 0;
  }
  .focus-section:first-child {
    padding: 5rem 0 2.5rem 0;
  }
  .focus-section:last-child {
    padding: 2.5rem 0 5rem 0;
  }

  .focus-intro {
    padding: 0 3rem;
    max-width: none;
  }
  .focus-intro p {
    font-size: 1.2rem;
  }

  .focus-partners .logos img {
    height: 100px;
  }

  /*	QUICK LINKS */
  .fiddlebox {
    max-width: none;
    text-align: center;
    margin: 0 auto 2rem auto;
  }
  .fiddlebox .overlay-wrapper {
    position: absolute;
    z-index: 40;
    width: 100%;
    height: auto;
    padding: 15% 0;
  }
  .fiddlebox h2 {
    font-size: 1.5rem;
  }

  /*	INTRODUCTION */
  .gardeninginfo .overlay-wrapper {
    padding: 3rem 3rem 2rem 3rem;
    max-width: none;
  }
  .gardeninginfo .overlay p {
    font-size: 1.2rem;
  }
  .gardeninginfo .background {
    margin-top: -260px;
    height: 750px;
  }
  .gardeninginfo .background > img {
    display: block;
    position: absolute;
    left: 0;
    margin-left: 0;
    width: 1700px;
    min-width: none;
    max-width: none;
    height: auto;
  }

  /*	LEADERS */
  .garden-leaders {
    padding: 5rem 0;
  }
  .garden-leaders h2 {
    font-size: 1.75rem;
  }
  .garden-leaders .logos img {
    height: 100px;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	FOCUS (large) */
@media screen and (min-width: 1024px) {
  /*	BANNER */
  .banner-focus .overlay-wrapper {
    padding: 0 13%;
    height: 400px;
  }
  .banner-focus .background {
    height: 400px;
  }
  .banner-focus .background > figure {
    border-radius: 6px;
  }

  /*  FOCUS FLUID CONTENT */
  .focus-intro {
    padding: 0 3.75rem;
  }
  .focus-intro p {
    font-size: 1.5rem;
  }

  /*	INTRODUCTION */
  .gardeninginfo .overlay-wrapper {
    padding: 3.75em 3.75em 2.75em 3.75em;
    max-width: none;
  }
  .gardeninginfo .overlay p {
    font-size: 1.5rem;
  }
  .gardeninginfo .background {
    margin-top: -200px;
    height: 750px;
  }
  .gardeninginfo .background > img {
    width: 1600px;
  }

  /*	LEADERS */
  .garden-leaders h2 {
    font-size: 2rem;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	FOCUS (xlarge) */
@media screen and (min-width: 1200px) {
  /*	BANNER */
  .banner-focus .overlay-wrapper {
    padding: 0 19%;
    height: 463px;
  }
  .banner-focus .background {
    height: 463px;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	FOCUS (xxlarge) */
@media screen and (min-width: 1440px) {
  /*  FOCUS FLUID CONTENT */
  .focus-intro {
    padding: 0 4.75rem;
  }

  /*	INTRODUCTION */
  .gardeninginfo .overlay-wrapper {
    padding: 4.75em 4.75em 3.75em 4.75em;
    max-width: none;
  }
  .gardeninginfo .background {
    margin-top: -200px;
    height: 750px;
  }
  .gardeninginfo .background > img {
    width: 1920px;
  }

  /*	LEADERS */
  .garden-leaders h2 {
    font-size: 2.15rem;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/* 	HOME (small) */
/*	BANNER */
.banner-home {
  position: relative;
  width: 100%;
  height: auto;
  margin: 0 0 2rem 0;
}
.banner-home .overlay-wrapper {
  display: flex;
  flex-flow: row nowrap;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 3.5rem;
  width: 100%;
  height: 300px;
}
.banner-home .overlay-wrapper .overlay {
  text-align: center;
}
.banner-home .overlay-wrapper .overlay h1 {
  margin: 0 0 1.5rem 0;
  color: white;
}
.banner-home .overlay-wrapper .overlay .button {
  font-size: 1.2rem;
  font-weight: 900;
  padding: .7rem 1.75rem .6rem 1.75rem;
}
.banner-home .background {
  position: absolute;
  top: 0;
  z-index: 1;
  width: 100%;
  height: 300px;
}
.banner-home .background > figure {
  height: 100%;
  border-radius: 0;
  background-size: cover;
  background-position: center center;
}

/* FEATURED */
.section-featured {
  position: relative;
  margin: 0;
}
.section-featured .feature {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  margin: 0 0 1rem 0;
  border-radius: 6px;
  border: 2px solid #e3e1dc;
  background-color: white;
}
.section-featured .feature .feature-image {
  width: 35%;
}
.section-featured .feature .feature-image a {
  width: 100%;
  height: auto;
}
.section-featured .feature .feature-image figure {
  width: 100%;
  height: 100%;
  border-top-left-radius: 6px;
  border-bottom-left-radius: 6px;
  background-size: cover;
  background-position: center center;
}
.section-featured .feature .feature-text {
  width: 65%;
  padding: 1rem;
}
.section-featured .feature .feature-text h2 {
  font-size: 1.2rem;
  color: #00714a;
  margin: 0 0 .25rem 0;
}
.section-featured .feature .feature-text p {
  font-size: .9rem;
}
.section-featured .feature .feature-text p:last-child {
  margin: 0;
}
.section-featured .feature-large {
  position: relative;
  z-index: 2;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  border-radius: 6px;
  border: 2px solid #e3e1dc;
  background-color: white;
}
.section-featured .feature-large .feature-image {
  width: 100%;
}
.section-featured .feature-large .feature-image figure {
  width: 100%;
  padding-bottom: 56.25%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-size: cover;
  background-position: center center;
}
.section-featured .feature-large .feature-text {
  width: 100%;
  padding: 2rem;
}
.section-featured .feature-large .feature-text .text-block {
  margin: 0 0 1.3rem 0;
}
.section-featured .feature-large .feature-text h2 {
  font-size: 1.2rem;
  color: #00714a;
  margin: 0 0 .25rem 0;
}
.section-featured .feature-large .feature-text p {
  font-size: .9rem;
}
.section-featured .feature-large .feature-text p:last-child {
  margin: 0;
}
.section-featured .feature-large .feature-text .button-block a {
  display: block;
  margin: 0 0 .5rem 0;
}
.section-featured .feature-large .feature-text .button-block a:last-child {
  margin-bottom: 0;
}
.section-featured .section-featured-bg {
  position: absolute;
  bottom: 0;
  z-index: 1;
  width: 100%;
  height: 100px;
  background-color: #f6f3f2;
}

/* FEATURED EVENTS AND NEWS */
.section-events-news {
  margin: 0;
  padding: 3rem 0;
  background-color: #f6f3f2;
}
.section-events-news .featured-events {
  margin: 0 0 2rem 0;
}
.section-events-news .featured-events .featured-events-heading {
  margin: 0 0 1rem 0;
}
.section-events-news .featured-events .featured-events-heading h2 {
  color: #4b0049;
}
.section-events-news .featured-events .featured-events-heading h2 span a {
  font-size: 1.1rem;
  color: #0b9095;
}
.section-events-news .featured-events .featured-events-list {
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.section-events-news .featured-events .featured-events-list li {
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
  border-bottom: 2px solid #e3e1dc;
}
.section-events-news .featured-events .featured-events-list li .event-date {
  flex-grow: 1;
  flex-basis: 22%;
  padding: 1rem 1rem 1rem 1rem;
  width: 75px;
  height: 75px;
  text-align: center;
  border-radius: 6px;
  background-color: #0b9095;
}
.section-events-news .featured-events .featured-events-list li .event-date .day, .section-events-news .featured-events .featured-events-list li .event-date .month {
  font-weight: 900;
  color: white;
  margin: 0;
}
.section-events-news .featured-events .featured-events-list li .event-date .day {
  font-size: 2rem;
  line-height: .9;
}
.section-events-news .featured-events .featured-events-list li .event-date .month {
  font-size: 1rem;
  letter-spacing: .08rem;
}
.section-events-news .featured-events .featured-events-list li .event-name {
  flex-grow: 2;
  flex-basis: 78%;
  padding: 0 0 0 1rem;
}
.section-events-news .featured-events .featured-events-list li .event-name h2 {
  font-size: 1.2rem;
}
.section-events-news .featured-events .featured-events-list li .event-name h2 a {
  color: #0b9095;
}
.section-events-news .featured-events .featured-events-list li .event-name .event-category {
  margin: 0;
}
.section-events-news .featured-news .featured-news-heading {
  margin: 0 0 1rem 0;
}
.section-events-news .featured-news .featured-news-heading h2 {
  color: #4b0049;
}
.section-events-news .featured-news .featured-news-heading h2 span a {
  font-size: 1.1rem;
  color: #0b9095;
}
.section-events-news .featured-news .featured-news-card {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: flex-start;
  width: 100%;
  margin: 0;
  border-radius: 6px;
  border: 2px solid #e3e1dc;
  background-color: white;
}
.section-events-news .featured-news .featured-news-card .feature-image {
  width: 100%;
}
.section-events-news .featured-news .featured-news-card .feature-image figure {
  width: 100%;
  padding-bottom: 56.25%;
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  background-size: cover;
  background-position: center center;
}
.section-events-news .featured-news .featured-news-card .feature-text {
  width: 100%;
  padding: 2rem;
}
.section-events-news .featured-news .featured-news-card .feature-text h2 {
  font-size: 1.2rem;
  color: #0b9095;
  margin: 0 0 .25rem 0;
}
.section-events-news .featured-news .featured-news-card .feature-text p {
  font-size: .9rem;
}
.section-events-news .featured-news .featured-news-card .feature-text p:last-child {
  margin: 0;
}

/*	MEMBER INFO */
.memberinfo {
  position: relative;
  text-align: center;
}
.memberinfo .overlay-wrapper {
  position: relative;
  z-index: 30;
  margin: 0 auto;
  padding: 1.875rem;
  max-width: 390px;
  text-align: center;
  background-color: white;
  border-radius: 6px;
  border: 1px solid #e3e1dc;
}
.memberinfo .overlay-wrapper h2 {
  margin-top: 0;
  font-family: 'Baloo', cursive;
  font-size: 1.85rem;
  font-weight: 400;
  line-height: 1.15;
  text-transform: none;
  letter-spacing: normal;
  color: #00714a;
}
.memberinfo .overlay-wrapper .button {
  margin: 0;
}
.memberinfo .background {
  position: absolute;
  top: 0;
  z-index: 15;
  width: 100%;
  height: auto;
  overflow: hidden;
}
.memberinfo .background > img {
  display: none;
}

/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	HOME (medium) */
@media screen and (min-width: 640px) {
  /*	BANNER */
  .banner-home {
    margin: 0 0 3rem 0;
  }
  .banner-home .overlay-wrapper {
    padding: 0 16%;
    height: 400px;
  }
  .banner-home .background {
    height: 400px;
  }

  /* FEATURED */
  .section-featured .feature {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .section-featured .feature .feature-image {
    width: 100%;
  }
  .section-featured .feature .feature-image figure {
    height: auto;
    padding-bottom: 56.25%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 0;
  }
  .section-featured .feature .feature-text {
    width: 100%;
    height: 135px;
    padding: 1rem;
  }
  .section-featured .feature .feature-text h2 {
    font-size: 1.4rem;
  }
  .section-featured .feature .feature-text h2 a {
    font-weight: 900;
  }
  .section-featured .feature .feature-text p {
    font-size: 1rem;
  }
  .section-featured .feature-large {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: stretch;
  }
  .section-featured .feature-large .feature-image {
    width: 50%;
  }
  .section-featured .feature-large .feature-image figure {
    height: 100%;
    padding-bottom: 56.25%;
    border-top-left-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 6px;
  }
  .section-featured .feature-large .feature-text {
    width: 50%;
    padding: 2rem;
  }
  .section-featured .feature-large .feature-text h2 {
    font-size: 1.4rem;
  }
  .section-featured .feature-large .feature-text p {
    font-size: 1rem;
  }

  /* FEATURED EVENTS AND NEWS */
  .section-events-news {
    padding: 3rem 0;
  }
  .section-events-news .featured-events {
    margin: 0 0 3rem 0;
  }
  .section-events-news .featured-events .featured-events-heading {
    margin: 0 0 1rem 0;
  }
  .section-events-news .featured-events .featured-events-list li .event-date {
    flex-basis: 13%;
  }
  .section-events-news .featured-events .featured-events-list li .event-name {
    flex-basis: 87%;
  }
  .section-events-news .featured-events .featured-events-list li .event-name h2 {
    font-size: 1.4rem;
  }
  .section-events-news .featured-news .featured-news-card {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    border-radius: 6px;
    border: 2px solid #e3e1dc;
  }
  .section-events-news .featured-news .featured-news-card .feature-image {
    width: 50%;
  }
  .section-events-news .featured-news .featured-news-card .feature-image figure {
    width: 100%;
    padding-bottom: 63.25%;
    border-top-left-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 6px;
  }
  .section-events-news .featured-news .featured-news-card .feature-text {
    width: 50%;
  }
  .section-events-news .featured-news .featured-news-card .feature-text h2 {
    font-size: 1.4rem;
  }
  .section-events-news .featured-news .featured-news-card .feature-text p {
    font-size: 1rem;
  }

  /*	MEMBER INFO */
  .memberinfo .overlay-wrapper {
    margin-top: 3.75rem;
    padding: 3rem 3rem 2rem 3rem;
    max-width: none;
  }
  .memberinfo .background {
    margin-top: -260px;
    height: 750px;
  }
  .memberinfo .background > img {
    display: block;
    position: absolute;
    left: 0;
    margin-left: 0;
    width: 1700px;
    min-width: none;
    max-width: none;
    height: auto;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	HOME (large) */
@media screen and (min-width: 1024px) {
  /*	BANNER */
  .banner-home .overlay-wrapper {
    padding: 0 13%;
    height: 440px;
  }
  .banner-home .background {
    height: 440px;
  }
  .banner-home .background > figure {
    border-radius: 6px;
  }

  /* FEATURED */
  .section-featured .section-featured-bg {
    height: 75px;
  }

  /* FEATURED EVENTS AND NEWS */
  .section-events-news {
    padding: 5rem 0;
  }
  .section-events-news .featured-events {
    margin: 0;
  }
  .section-events-news .featured-events .featured-events-heading {
    margin: 0 0 1.5rem 0;
  }
  .section-events-news .featured-events .featured-events-list li {
    padding-bottom: 1.5rem;
    margin-bottom: 1.5rem;
  }
  .section-events-news .featured-events .featured-events-list li .event-date {
    flex-basis: 13%;
  }
  .section-events-news .featured-events .featured-events-list li .event-name {
    flex-basis: 87%;
  }
  .section-events-news .featured-news {
    margin: 0;
  }
  .section-events-news .featured-news .featured-news-heading {
    margin: 0 0 1.5rem 0;
  }
  .section-events-news .featured-news .featured-news-card {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
    width: 100%;
    margin: 0;
    border-radius: 6px;
    border: 2px solid #e3e1dc;
  }
  .section-events-news .featured-news .featured-news-card .feature-image {
    width: 100%;
  }
  .section-events-news .featured-news .featured-news-card .feature-image figure {
    width: 100%;
    padding-bottom: 56.25%;
    border-top-left-radius: 6px;
    border-top-right-radius: 6px;
    border-bottom-left-radius: 0;
  }
  .section-events-news .featured-news .featured-news-card .feature-text {
    width: 100%;
  }
  .section-events-news .featured-news .featured-news-card .feature-text h2 {
    font-size: 1.3rem;
  }
  .section-events-news .featured-news .featured-news-card .feature-text p {
    font-size: 1rem;
  }

  /*	MEMBER INFO */
  .memberinfo .overlay-wrapper {
    margin-top: 5.625rem;
    padding: 3.75em 3.75em 2.75em 3.75em;
    max-width: none;
  }
  .memberinfo .background {
    margin-top: -200px;
    height: 750px;
  }
  .memberinfo .background > img {
    width: 1600px;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	HOME (xlarge) */
@media screen and (min-width: 1200px) {
  /*	BANNER */
  .banner-home {
    margin: 0 0 2rem 0;
  }
  .banner-home .overlay-wrapper, .banner-home .background {
    height: 575px;
  }
  .banner-home .overlay-wrapper {
    padding: 0 19%;
  }

  /* FEATURED */
  .section-featured .feature {
    display: flex;
    flex-flow: column nowrap;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .section-featured .feature .feature-text {
    height: 171px;
    padding: 1.5rem;
  }
  .section-featured .feature .feature-text h2 {
    font-size: 1.5rem;
  }
  .section-featured .feature-large {
    height: 325px;
  }
  .section-featured .feature-large .feature-image {
    width: 50%;
  }
  .section-featured .feature-large .feature-image figure {
    height: 100%;
    padding-bottom: 56.25%;
    border-top-left-radius: 6px;
    border-top-right-radius: 0;
    border-bottom-left-radius: 6px;
  }
  .section-featured .feature-large .feature-text {
    display: flex;
    flex-flow: column nowrap;
    justify-content: space-between;
    align-items: flex-start;
    width: 50%;
    padding: 2rem;
  }
  .section-featured .feature-large .feature-text h2 {
    font-size: 1.5rem;
  }
  .section-featured .feature-large .feature-text .button-block {
    width: 100%;
  }
  .section-featured .section-featured-bg {
    height: 100px;
  }

  /* FEATURED EVENTS AND NEWS */
  .section-events-news {
    padding: 6rem 0;
  }
  .section-events-news .featured-events .featured-events-heading {
    margin: 0 0 2rem 0;
  }
  .section-events-news .featured-events .featured-events-list li {
    padding-bottom: 1.25rem;
    margin-bottom: 1.25rem;
  }
  .section-events-news .featured-events .featured-events-list li .event-name h2 {
    font-size: 1.5rem;
  }
  .section-events-news .featured-news .featured-news-heading {
    margin: 0 0 2rem 0;
  }
  .section-events-news .featured-news .featured-news-card .feature-text {
    padding: 1.5rem;
  }
  .section-events-news .featured-news .featured-news-card .feature-text h2 {
    font-size: 1.3rem;
  }

  /*	*/
}
/*	------------------------------------------------------------------------------------ */
/*	------------------------------------------------------------------------------------ */
/*	HOME (xxlarge) */
@media screen and (min-width: 1440px) {
  /*	MEMBER INFO */
  .memberinfo .overlay-wrapper {
    margin-top: 90px;
    padding: 4.75em 4.75em 3.75em 4.75em;
    max-width: none;
  }
  .memberinfo .background {
    margin-top: -200px;
    height: 750px;
  }
  .memberinfo .background > img {
    width: 1920px;
  }

  /*	*/
}
