/* =============================================================
"Fancy" button is Ujarak from
http://tympanus.net/Development/ButtonStylesInspiration
============================================================= */
.btn--fancy,
.btn--fancy::before {
  -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); }

.btn--fancy {
  position: relative;
  z-index: 5;
  -webkit-transition: border-color 0.4s, color 0.4s;
  transition: border-color 0.4s, color 0.4s; }
  .btn--fancy::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100%;
    border-radius: 0;
    background: #3eb049;
    opacity: 0;
    -webkit-transform: scale3d(0.7, 1, 1);
    transform: scale3d(0.7, 1, 1);
    -webkit-transition: -webkit-transform 0.4s, opacity 0.4s;
    transition: transform 0.4s, opacity 0.4s;
    -webkit-transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1);
    transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); }

.btn--fancy--inverse {
  background: #3eb049;
  color: #fff; }
  .btn--fancy--inverse::before {
    background: #fff; }

.btn--fancy:hover {
  border-color: #3eb049;
  color: #fff; }
  .btn--fancy:hover::before {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0); }

.btn--fancy--inverse:hover {
  border-color: #3eb049;
  color: #3eb049; }

.main-search {
  max-width: 300px; }

.main-search__group {
  position: relative;
  border: 1px solid #d7d7d7; }

input.main-search__field {
  display: block;
  border: none;
  padding-right: 3em; }

.main-search__btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding-right: 0.75em;
  padding-left: 0.75em;
  border: none;
  border-left: 1px solid #d7d7d7;
  border-radius: 0;
  background: transparent;
  color: #ccc; }

.social__list {
  margin: 0; }

.social-share--top {
  margin-top: 2rem;
  margin-bottom: 2rem; }

.social-share--bottom {
  margin-top: 3rem; }
  @media (min-width: 768px) {
    .social-share--bottom {
      margin-top: 4rem; } }

.social-share__label {
  color: rgba(152, 152, 152, 0.6);
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase; }

.social-share a {
  margin-left: 0.3em; }

.nav-main--active .site-header {
  transform: translateY(0) !important; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: block;
  width: 100%;
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  background-image: linear-gradient(rgba(37, 41, 39, 0), rgba(37, 41, 39, 0));
  transform: translateY(0);
  transition: background 0.4s, transform 0.4s; }
  .site-header .container {
    position: static; }

.header-flex {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  height: 80px;
  transition: height 0.4s; }
  @media (min-width: 768px) {
    .header-flex {
      height: 96px; } }

.site-header--sm {
  background-image: linear-gradient(#252927, rgba(37, 41, 39, 0.8)); }
  .site-header--sm .header-flex {
    height: 60px; }

.header--hide .site-header {
  transform: translateY(-101%); }

.header-logo {
  position: relative;
  z-index: 999; }
  .header-logo img {
    position: relative;
    top: 2px;
    width: 190px;
    height: auto;
    transition: all 0.4s; }
    @media (min-width: 768px) {
      .header-logo img {
        width: 215px;
        height: auto; } }

.site-header--sm .header-logo img {
  width: 170px;
  height: auto; }

.header-utility {
  position: relative;
  top: 40px; }

.header-search {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px; }
  @media (min-width: 991px) {
    .header-search {
      position: absolute;
      top: 20px;
      right: 18px;
      width: 225px;
      padding-right: 0;
      padding-left: 0; } }

.header-search__group {
  position: relative;
  border: 1px solid #d7d7d7; }

input.header-search__field {
  border: none;
  padding-right: 3em;
  background: #fff; }

.header-search__btn {
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  padding-right: 0.75em;
  padding-left: 0.75em;
  border: none;
  border-left: 1px solid #d7d7d7;
  border-radius: 0;
  background: #fff;
  color: #ccc; }

.social--header {
  position: static;
  padding-right: 15px;
  padding-left: 15px; }
  @media (min-width: 991px) {
    .social--header {
      position: absolute;
      top: 4rem;
      right: 18px;
      display: inline-block;
      padding-right: 0;
      padding-left: 0; } }

body.nav-main--active {
  overflow: hidden; }

.nav-main--active .nav-main {
  z-index: 101;
  height: 100vh;
  opacity: 1;
  transition-delay: 0s; }

.nav-main {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -9999;
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  width: 100%;
  height: 0;
  margin: 0;
  background: #3eb049;
  opacity: 0;
  overflow: hidden;
  transition: opacity 0.5s, height 0s;
  transition-delay: 0s, 0.5s; }
  @media (min-width: 991px) {
    .nav-main {
      position: static;
      z-index: 1;
      right: 0;
      display: inline-block;
      width: auto;
      height: auto;
      padding-top: 0;
      margin: 1rem 0;
      background: transparent;
      opacity: 1;
      overflow: visible; } }

.nav-main__list {
  list-style: none;
  margin: 0;
  padding: 0 15px;
  font-size: 0; }
  @media (min-width: 991px) {
    .nav-main__list {
      display: inline-block; } }

.nav-main__item {
  position: relative;
  display: block;
  text-align: center;
  font-size: 7vmin; }
  @media (min-height: 400px) {
    .nav-main__item {
      font-size: 6vmin; } }
  @media (min-height: 500px) {
    .nav-main__item {
      font-size: 5.5vmin; } }
  @media (min-width: 991px) {
    .nav-main__item {
      display: inline-block;
      margin-left: 2.5em;
      text-align: left;
      font-size: 1rem; } }
  @media (min-width: 1199px) {
    .nav-main__item {
      margin-left: 3em; } }

.nav-main__item a {
  color: #fff; }
  @media (min-width: 991px) {
    .nav-main__item a {
      color: #3eb049; } }

.nav-main__item > a {
  display: inline-block;
  margin-bottom: 0.5em;
  border-bottom: 2px solid transparent;
  padding: 0.2em 0;
  color: #fff;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase; }
  @media (min-width: 991px) {
    .nav-main__item > a {
      position: relative;
      margin-bottom: 0;
      border-bottom: none;
      padding: 0.5rem 0;
      font-size: 0.94rem;
      transition: background-color 0.5s; }
      .nav-main__item > a::after {
        content: '';
        position: absolute;
        bottom: -1px;
        left: 50%;
        display: block;
        width: 5%;
        height: 3px;
        background: rgba(62, 176, 73, 0);
        transform: translateX(-50%);
        transition: width 0.3s, background 0.2s; }
      .nav-main__item > a:hover::after {
        width: 100%;
        background: #3eb049; } }

@media (min-width: 991px) {
  .nav-main__item--alt > a {
    border: 3px solid #3eb049;
    padding-right: 1.2em;
    padding-left: 1.2em;
    transition: border-color 0.25s; }
    .nav-main__item--alt > a::after {
      display: none; }
    .nav-main__item--alt > a:hover {
      border-color: #fff; } }

.nav-main__item--current-item > a,
.blog .nav-main__item--blog > a,
.single-post .nav-main__item--blog > a {
  border-color: #fff; }
  @media (min-width: 991px) {
    .nav-main__item--current-item > a::after,
    .blog .nav-main__item--blog > a::after,
    .single-post .nav-main__item--blog > a::after {
      width: 100%;
      background: #3eb049; } }

@media (min-width: 991px) {
  .nav-main__item--active > a {
    background: #c4c4c4; } }

.nav-main__item--parent > a::after {
  content: "\f0d7";
  margin-left: 0.5em;
  font-family: 'FontAwesome';
  opacity: 0.2; }

.nav-main__item--parent > a:hover::after,
.nav-main__item--parent.nav-main__item--active > a::after {
  opacity: 1; }

.nav-main__submenu {
  display: none;
  width: auto;
  height: auto;
  background: none;
  box-shadow: 0 0 0 0 transparent;
  opacity: 1; }
  @media (min-width: 991px) {
    .nav-main__submenu {
      position: absolute;
      left: 0;
      display: block;
      min-width: 10rem;
      height: 0;
      background: #ccc;
      overflow: hidden;
      opacity: 0;
      transition: opacity 0.5s; } }

.nav-main__item--active .nav-main__submenu {
  height: auto;
  opacity: 1; }

.nav-main__submenu--right {
  left: auto;
  right: 0; }

.nav-main__submenu--mega {
  width: 18rem; }

.nav-main__submenu ul {
  list-style: none;
  margin: 0;
  padding: 0; }

@media (min-width: 991px) {
  .nav-main__submenu--mega ul {
    display: inline-block;
    width: 49%; } }

.nav-main__submenu li {
  display: inline; }

.nav-main__submenu a {
  display: block;
  padding: 0.75rem 0.75rem 0.75rem 2em;
  font-size: 0.85em;
  text-decoration: none; }
  @media (min-width: 991px) {
    .nav-main__submenu a {
      padding: 0.75rem; }
      .nav-main__submenu a:hover {
        background: #aaa; } }

.toggle-nav-main {
  position: absolute;
  top: 22px;
  right: 10px;
  z-index: 9999;
  padding: 8px;
  cursor: pointer;
  transition: top 0.4s; }
  .site-header--sm .toggle-nav-main {
    top: 13px; }
  @media (min-width: 480px) {
    .toggle-nav-main {
      right: 18px; } }
  @media (min-width: 768px) {
    .toggle-nav-main {
      top: 32px; } }
  @media (min-width: 991px) {
    .toggle-nav-main {
      display: none; } }

.toggle-nav-main__wrap {
  position: relative;
  width: 30px;
  height: 20px;
  transition: -webkit-transform 0.5s ease-out;
  transition: -ms-transform 0.5s ease-out;
  transition: transform 0.5s ease-out; }

.toggle-nav-main__bar {
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 3px;
  border-radius: 1000px;
  background: #fff;
  transition: all 0.3s ease-out; }
  .toggle-nav-main__bar:nth-child(1) {
    top: 0; }
  .toggle-nav-main__bar:nth-child(2) {
    top: 50%;
    margin-top: -2px;
    opacity: 1; }
  .toggle-nav-main__bar:nth-child(3) {
    bottom: 1px; }

.nav-main--active .toggle-nav-main__bar:nth-child(1) {
  top: 50%;
  margin-top: -2px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }
.nav-main--active .toggle-nav-main__bar:nth-child(2) {
  opacity: 0; }
.nav-main--active .toggle-nav-main__bar:nth-child(3) {
  bottom: 50%;
  margin-bottom: -1px;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.sticky-site-footer {
  min-height: 100vh;
  padding-bottom: calc(390px + 4.5rem);
  /* slightly larger than .site-footer height */ }
  .home .sticky-site-footer {
    padding-bottom: 390px; }
  .page-id-15 .sticky-site-footer {
    padding-bottom: calc(80px + 4.5rem); }
  @media (min-width: 768px) {
    .sticky-site-footer {
      padding-bottom: calc(390px + 6rem); } }

.sticky-site-footer .site-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
  height: 390px; }
  .page-id-15 .sticky-site-footer .site-footer {
    height: 80px; }

.site-footer {
  background: linear-gradient(to right, #28a868, #64b92f); }

.footer-primary .container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  height: 310px;
  padding-bottom: 1rem;
  background-image: url(/assets/images/footer-bg.png);
  background-repeat: no-repeat;
  background-position: top right; }

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

.footer-primary__heading {
  max-width: 600px;
  margin: 0 auto 1.2em;
  color: #fff;
  font-size: 1.3rem;
  font-weight: 300;
  line-height: 1.6; }
  @media (min-width: 480px) {
    .footer-primary__heading {
      font-size: 1.4rem; } }
  @media (min-width: 768px) {
    .footer-primary__heading {
      font-size: 1.6rem; } }

.footer-secondary {
  background: rgba(41, 47, 44, 0.85); }

.footer-secondary .container {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  -ms-align-items: center;
  align-items: center;
  height: 80px; }
  @media (min-width: 480px) {
    .footer-secondary .container {
      -webkit-flex-direction: row;
      -ms-flex-direction: row;
      flex-direction: row;
      -webkit-justify-content: space-between;
      -ms-justify-content: space-between;
      justify-content: space-between; } }

.footer-secondary__utility {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 300; }
  .footer-secondary__utility:first-child {
    margin-bottom: 1em; }
  .footer-secondary__utility a {
    color: rgba(255, 255, 255, 0.8); }
    .footer-secondary__utility a:hover {
      color: white; }
  @media (min-width: 480px) {
    .footer-secondary__utility:first-child {
      margin-bottom: 0; } }
  @media (min-width: 768px) {
    .footer-secondary__utility {
      font-size: 1rem; } }

.site-headline {
  margin-bottom: 3rem;
  padding-top: calc(80px + 2.5rem);
  padding-bottom: 3rem;
  background: #3f4743;
  background-image: linear-gradient(#252927, rgba(37, 41, 39, 0) 70%, rgba(37, 41, 39, 0)); }
  @media (min-width: 768px) {
    .site-headline {
      margin-bottom: 4.5rem;
      padding-top: calc(96px + 5rem);
      padding-bottom: 6.5rem; } }

.headline-title {
  margin: 0;
  color: #fff;
  text-align: center;
  font-size: 1.8rem;
  font-family: "Nixie One", serif;
  line-height: 1.4; }
  @media (min-width: 480px) {
    .headline-title {
      font-size: 2rem; } }
  @media (min-width: 768px) {
    .headline-title {
      font-size: 2.8rem; } }
  @media (min-width: 991px) {
    .headline-title {
      font-size: 3.3rem; } }

.nav-article-meta__list {
  margin: 0;
  padding: 0;
  color: #3f4743;
  list-style: none;
  font-size: 0.875rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif;
  text-transform: uppercase;
  letter-spacing: 0.05em; }

.nav-article-meta li {
  display: inline; }
  .nav-article-meta li::before {
    content: '\00a0\00a0\0007c\00a0\00a0';
    color: rgba(132, 132, 132, 0.3);
    font-weight: 400; }
  .nav-article-meta li:first-child::before {
    content: ''; }
  .nav-article-meta li a {
    color: #3f4743; }
    .nav-article-meta li a:hover {
      text-decoration: underline; }

.list-article:nth-of-type(n+2), .catalog__item:nth-of-type(n+2) {
  margin-top: 2.5em; }

.article-header {
  margin-bottom: 1rem; }

.article-header__title, .catalog__heading {
  margin-bottom: 0.5em;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: "Montserrat", sans-serif; }
  .single .article-header__title, .single .catalog__heading {
    margin-top: 0; }
  @media (min-width: 768px) {
    .article-header__title, .catalog__heading {
      font-size: 1.375rem; } }

.single .article-header__title, .single .catalog__heading {
  margin-bottom: 0.5em;
  font-size: 1.35rem;
  font-weight: 300; }
  @media (min-width: 480px) {
    .single .article-header__title, .single .catalog__heading {
      font-size: 1.5rem; } }
  @media (min-width: 768px) {
    .single .article-header__title, .single .catalog__heading {
      font-size: 2.18rem; } }

.list-article__thumb, .catalog__img {
  width: 200px;
  height: 200px;
  margin: 0 auto 0.2em;
  border: 10px solid #f2f2f2;
  background-color: #f2f2f2;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover; }
  @media (min-width: 480px) {
    .list-article__thumb, .catalog__img {
      float: left;
      display: inline-block;
      width: 130px;
      height: 130px;
      margin-top: 0.5em;
      margin-right: 1em; } }
  @media (min-width: 768px) {
    .list-article__thumb, .catalog__img {
      width: 240px;
      height: 240px;
      margin-right: 1.5em;
      margin-bottom: 0.5em;
      border-width: 15px; } }
  @media (min-width: 991px) {
    .list-article__thumb, .catalog__img {
      width: 290px;
      height: 290px;
      margin-bottom: 1em;
      border-width: 20px; } }

@media (min-width: 991px) {
  .list-article--has-thumb .list-article__content {
    padding-left: calc(290px + 1.5em); } }

.list-article__excerpt p {
  line-height: 1.9; }

.nav-pagination {
  margin: 2rem 0;
  overflow: hidden; }

.nav-pagination ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.nav-pagination li {
  display: inline;
  margin: 0;
  padding: 0; }

.nav-pagination li a,
.nav-pagination li span {
  float: left;
  border: 1px solid #ddd;
  border-left-width: 0;
  padding: 6px 10px;
  font-size: 14px; }

.nav-pagination li:first-child a,
.nav-pagination li:first-child span {
  border-left-width: 1px; }

.nav-prevnext {
  margin: .5em 0;
  overflow: hidden; }

.nav-prevnext ul {
  padding: 0;
  list-style: none; }

.nav-prevnext li {
  float: left;
  width: 40%; }

.nav-prevnext li.nav-item-next {
  float: right;
  text-align: right; }

.nav-prevnext li.nav-item-prev a:before {
  content: '\00ab\00a0'; }

.nav-prevnext li.nav-item-next a:after {
  content: '\00a0\00bb'; }

.nav-breadcrumbs__list {
  padding: 0;
  list-style: none; }

.breadcrumbs__item {
  display: inline-block; }
  .breadcrumbs__item::before {
    content: '\00a0\003E\00a0';
    /* &gt; */ }
  .breadcrumbs__item:first-child::before {
    content: ''; }

.sidebar {
  margin-bottom: 1.250em;
  padding-left: 3em; }
  .sidebar ul {
    margin-top: 0;
    margin-bottom: 0;
    padding-top: 0;
    padding-bottom: 0; }

.sidebar-item__heading {
  margin: 0; }

body .gform_wrapper .gform_body img {
  margin: 0; }

body .gform_wrapper .gform_body label.gfield_label + div.ginput_container {
  margin-top: 0; }

.gform_wrapper .gform_body form li,
.gform_wrapper .gform_body li {
  margin-bottom: 0.7rem; }

.gform_wrapper .gform_body .gform_page_footer .button.gform_button,
.gform_wrapper .gform_body .gform_page_footer .button.gform_next_button,
.gform_wrapper .gform_body .gform_page_footer .button.gform_previous_button {
  cursor: pointer; }

.gform_wrapper .gform_body input[type=email],
.gform_wrapper .gform_body input[type=number],
.gform_wrapper .gform_body input[type=password],
.gform_wrapper .gform_body input[type=tel],
.gform_wrapper .gform_body input[type=text],
.gform_wrapper .gform_body input[type=url],
.gform_wrapper .gform_body textarea,
.gform_wrapper .gform_body input:not([type=radio]):not([type=checkbox]):not([type=submit]):not([type=button]):not([type=image]):not([type=file]) {
  padding: 0.32em 0.5em; }

.gform_wrapper li.hidden_label input,
.gform_wrapper li.hidden_label textarea {
  margin-top: 0.75em; }

.gform_wrapper .gform_body .top_label .gfield_label {
  margin: 0.65em 0 0.2em;
  font-size: 0.85rem;
  font-weight: 700; }

.gform_wrapper .gform_body .gfield_required {
  color: inherit; }

.gform_wrapper .gform_body .top_label .gfield_description {
  padding-top: 0.2em; }

.gform_wrapper .gform_body li.field_description_above .gfield_description {
  margin-bottom: 0.2em; }

.gform_wrapper .gform_body .description,
.gform_wrapper .gform_body .gfield_description,
.gform_wrapper .gform_body .gsection_description,
.gform_wrapper .gform_body .instruction {
  font-size: 0.8rem; }

.gform_wrapper form div.validation_error {
  color: #790000;
  font-size: 1.2em;
  font-weight: 700;
  margin-bottom: 1.6em;
  border-top: 2px solid #790000;
  border-bottom: 2px solid #790000;
  padding: 0.8em 0; }

.gform_wrapper .gform_body li.gfield.gfield_error.gfield_contains_required div.ginput_container {
  margin-top: 0; }

.gform_wrapper .gform_body .gfield_description + .gform_wrapper .gfield_description.validation_message,
.gform_wrapper .gform_body .ginput_container + .gfield_description.validation_message {
  margin-top: 0; }

.gform_wrapper .gform_body .gfield_description.validation_message,
.gform_wrapper .gform_body .top_label .gfield_description.validation_message {
  padding: 0.25em 0 0.65em !important; }

.gform_wrapper .gform_body li.gfield.gfield_error,
.gform_wrapper .gform_body li.gfield.gfield_error.gfield_contains_required.gfield_creditcard_warning {
  background-color: #FFDFE0;
  border-top: 1px solid #C89797;
  border-bottom: 1px solid #C89797; }

.wd-select-wrap select {
  display: inline-block;
  width: 250px;
  height: 30px;
  outline: none;
  border: none;
  border-radius: 0;
  padding: 0 40px 0 0.5em;
  background-color: #fff;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none; }

.wd-select-wrap select::-ms-expand {
  display: none; }

.wd-select-wrap select:hover,
.wd-select-wrap select:focus {
  outline: none; }

.gform_wrapper .gform_body .top_label .wd-select-wrap select {
  width: 250px; }

.gform_wrapper .gform_body ul.gform_fields li.gfield .wd-select-wrap select {
  margin-left: 0; }

.gform_wrapper .gform_body .wd-select-wrap select {
  padding: 0 40px 0 0.5em;
  line-height: 30px; }

.wd-select-wrap {
  position: relative;
  display: inline-block;
  border: 1px solid #d7d7d7;
  background: #fff; }

.wd-select-wrap::after {
  content: "\025be";
  position: absolute;
  top: 0;
  right: 0;
  display: inline-block;
  width: 30px;
  height: 100%;
  background: #eee;
  text-align: center;
  font-size: 1em;
  font-weight: 400;
  font-family: serif;
  line-height: 30px; }

.wd-select-wrap:hover::after {
  background: #ddd; }

select.wd-select--wrapped {
  position: relative;
  z-index: 5;
  background-color: transparent; }
