@import url(https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap);
@import url(https://fonts.googleapis.com/css2?family=Lekton:wght@400;700&display=swap);
/* ----------------------------------------------------------- */
/* == tingle v0.15.2 */
/* ----------------------------------------------------------- */

.tingle-modal * {
  box-sizing: border-box;
}

.tingle-modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  visibility: hidden;
  flex-direction: column;
  align-items: center;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  background: rgba(0, 0, 0, .85);
  opacity: 0;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: pointer;
}

/* confirm and alerts
-------------------------------------------------------------- */

.tingle-modal--confirm .tingle-modal-box {
  text-align: center;
}

/* modal
-------------------------------------------------------------- */

.tingle-modal--noOverlayClose {
  cursor: default;
}

.tingle-modal--noClose .tingle-modal__close {
  display: none;
}

.tingle-modal__close {
  position: fixed;
  top: 2.5rem;
  right: 2.5rem;
  z-index: 1000;
  padding: 0;
  width: 2rem;
  height: 2rem;
  border: none;
  background-color: transparent;
  color: #fff;
  cursor: pointer;
}

.tingle-modal__close svg * {
  fill: currentColor;
}

.tingle-modal__closeLabel {
  display: none;
}

.tingle-modal__close:hover {
  color: #fff;
}

.tingle-modal-box {
  position: relative;
  flex-shrink: 0;
  margin-top: auto;
  margin-bottom: auto;
  width: 60%;
  border-radius: 4px;
  background: #fff;
  opacity: 1;
  cursor: auto;
  will-change: transform, opacity;
}

.tingle-modal-box__content {
  padding: 3rem 3rem;
}

.tingle-modal-box__footer {
  padding: 1.5rem 2rem;
  width: auto;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  background-color: #f5f5f5;
  cursor: auto;
}

.tingle-modal-box__footer::after {
  display: table;
  clear: both;
  content: "";
}

.tingle-modal-box__footer--sticky {
  position: fixed;
  bottom: -200px; /* TODO : find a better way */
  z-index: 10001;
  opacity: 1;
  transition: bottom .3s ease-in-out .3s;
}

/* state
-------------------------------------------------------------- */

.tingle-enabled {
  position: fixed;
  right: 0;
  left: 0;
  overflow: hidden;
}

.tingle-modal--visible .tingle-modal-box__footer {
  bottom: 0;
}

.tingle-enabled .tingle-content-wrapper {
  filter: blur(8px);
}

.tingle-modal--visible {
  visibility: visible;
  opacity: 1;
}

.tingle-modal--visible .tingle-modal-box {
  animation: scale .2s cubic-bezier(.68, -.55, .265, 1.55) forwards;
}

.tingle-modal--overflow {
  overflow-y: scroll;
  padding-top: 8vh;
}

/* btn
-------------------------------------------------------------- */

.tingle-btn {
  display: inline-block;
  margin: 0 .5rem;
  padding: 1rem 2rem;
  border: none;
  background-color: grey;
  box-shadow: none;
  color: #fff;
  vertical-align: middle;
  text-decoration: none;
  font-size: inherit;
  font-family: inherit;
  line-height: normal;
  cursor: pointer;
  transition: background-color .4s ease;
}

.tingle-btn--primary {
  background-color: #3498db;
}

.tingle-btn--danger {
  background-color: #e74c3c;
}

.tingle-btn--default {
  background-color: #34495e;
}

.tingle-btn--pull-left {
  float: left;
}

.tingle-btn--pull-right {
  float: right;
}

/* responsive
-------------------------------------------------------------- */

@media (max-width : 540px) {
  .tingle-modal {
    top: 0px;
    display: block;
    padding-top: 60px;
    width: 100%;
  }

  .tingle-modal-box {
    width: auto;
    border-radius: 0;
  }

  .tingle-modal-box__content {
    overflow-y: scroll;
  }

  .tingle-modal--noClose {
    top: 0;
  }

  .tingle-modal--noOverlayClose {
    padding-top: 0;
  }

  .tingle-modal-box__footer .tingle-btn {
    display: block;
    float: none;
    margin-bottom: 1rem;
    width: 100%;
  }

  .tingle-modal__close {
    top: 0;
    right: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 60px;
    border: none;
    background-color: #2c3e50;
    box-shadow: none;
    color: #fff;
  }

  .tingle-modal__closeLabel {
    display: inline-block;
    vertical-align: middle;
    font-size: 1.6rem;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
  }

  .tingle-modal__closeIcon {
    display: inline-block;
    margin-right: .8rem;
    width: 1.6rem;
    vertical-align: middle;
    font-size: 0;
  }
}

@supports ((-webkit-backdrop-filter: blur(12px)) or (backdrop-filter: blur(12px))) {
  .tingle-modal:before {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    content: "";
    -webkit-backdrop-filter: blur(18px);
    backdrop-filter: blur(18px);
    pointer-events: none;
  }

  .tingle-enabled .tingle-content-wrapper {
    filter: none;
  }
}

/* animations
-------------------------------------------------------------- */

@keyframes scale {
  0% {
    opacity: 0;
    transform: scale(.9);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, div:not(.components-panel__header) > ul:not([class]):not([id]),
div:not(.components-panel__header) > ol:not([class]):not([id]), .gform_wrapper .gform_fields, .gform_wrapper .gfield_checkbox,
.gform_wrapper .gfield_radio {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, div:not(.components-panel__header) > ul:not([class]):not([id]),
div:not(.components-panel__header) > ol:not([class]):not([id]), .gform_wrapper .gform_fields, .gform_wrapper .gfield_checkbox,
.gform_wrapper .gfield_radio {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

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

/* Text meant only for screen readers. */
.screen-reader-text {
  position: absolute !important;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  -webkit-clip-path: inset(100%);
          clip-path: inset(100%);
  clip: rect(0, 0, 0, 0);
  overflow: hidden;
  word-wrap: normal !important;
  /* Many screen reader and browser combinations announce broken words as they would appear visually. */ }

.screen-reader-text:focus {
  background-color: #eee;
  clip: auto !important;
  -webkit-clip-path: none;
          clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
  /* Above WP toolbar. */ }

.object-fit-image img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  font-family: 'object-fit: cover; object-position: center;'; }

.IE .object-fit-image img {
  min-width: 100%;
  min-height: 100%;
  width: auto !important;
  height: auto !important; }

.bg-gray {
  background-color: #f5f6f3; }

.bg-green {
  background-color: #164f45; }

section[class*='bg-'] {
  position: relative; }
  section[class*='bg-']:after {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    z-index: -1; }
  section[class*='bg-'].bg-gray::after {
    background-color: #f5f6f3; }
  section[class*='bg-'].bg-gray-1::after {
    background-color: #143038; }

.pattern-top {
  display: none; }

.page-template-default .pattern-top {
  display: block;
  position: absolute;
  top: 650px;
  right: -14px;
  height: 510px;
  width: 230px;
  background-image: url(../images/pattern-gray-top.svg);
  background-repeat: no-repeat;
  background-size: 100%;
  z-index: 1;
  pointer-events: none; }
  @media (min-width: 768px) {
    .page-template-default .pattern-top {
      top: 590px;
      right: 0;
      height: 510px;
      width: 244px; } }
  @media (min-width: 993px) {
    .page-template-default .pattern-top {
      top: 537px;
      height: 690px;
      width: 335px; } }
  @media (min-width: 1501px) {
    .page-template-default .pattern-top {
      top: 669px;
      height: 886px;
      width: 430px; } }

.page-template-default.home .pattern-top {
  top: 458px;
  right: -66px; }
  @media (min-width: 768px) {
    .page-template-default.home .pattern-top {
      top: 420px; } }
  @media (min-width: 1501px) {
    .page-template-default.home .pattern-top {
      top: 658px; } }

.animations-enabled [data-a-type^='fadeIn'],
.animations-enabled [data-a-type^='childrenFade'] > * {
  opacity: 0; }

.animations-enabled [data-a-type='showRight'] {
  opacity: 0; }

.animations-enabled [data-a-type='iconCard'] .icons-card__icon circle {
  stroke-dasharray: 1000;
  stroke-dashoffset: 1000; }

.animations-enabled [data-a-type='iconCard'] .icons-card__icon img {
  opacity: 0;
  -webkit-transform: none;
      -ms-transform: none;
          transform: none; }

.animations-enabled .animations-onStart [data-a-type='showRight'] {
  opacity: 1; }

@font-face {
  font-family: 'icomoon';
  src: url(../fonts/icomoon.eot);
  src: url(../fonts/icomoon.eot#iefix) format("embedded-opentype"), url(../fonts/icomoon.ttf) format("truetype"), url(../fonts/icomoon.woff) format("woff"), url(../images/icomoon.svg#icomoon) format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block; }

[class^='icon-'],
[class*=' icon-'] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: never;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-facebook:before {
  content: '\E904'; }

.icon-mail:before {
  content: '\E90E'; }

.icon-twitter:before {
  content: '\E90F'; }

.icon-download:before {
  content: '\E900'; }

.icon-pdf-file:before {
  content: '\E902'; }

.icon-search:before {
  content: '\E90D'; }

.icon-nav-left:before {
  content: '\E901'; }

.icon-icon-close:before {
  content: '\E922'; }

.icon-arrow-left-long:before {
  content: '\E90C'; }

.icon-arrow-left-long1:before {
  content: '\E905'; }

.icon-arrow-right-long:before {
  content: '\E906'; }

.icon-arrow-down:before {
  content: '\E907'; }

.icon-arrow-up-right:before {
  content: '\E908'; }

.icon-dropdown:before {
  content: '\E909'; }

.icon-arrow:before {
  content: '\E90A'; }

.icon-arrow-nav:before {
  content: '\E903'; }

.icon-check:before {
  content: '\E90B'; }

/*! modern-normalize v0.7.0 | MIT License | https://github.com/sindresorhus/modern-normalize */
/*
Document
========
*/
/**
Use a better box model (opinionated).
*/
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

/**
Use a more readable tab size (opinionated).
*/
:root {
  -moz-tab-size: 4;
  -o-tab-size: 4;
     tab-size: 4; }

/**
1. Correct the line height in all browsers.
2. Prevent adjustments of font size after orientation changes in iOS.
*/
html {
  line-height: 1.15;
  /* 1 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/*
Sections
========
*/
/**
Remove the margin in all browsers.
*/
body {
  margin: 0; }

/**
Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
*/
body {
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, Helvetica, Arial, sans-serif, "Apple Color Emoji", "Segoe UI Emoji"; }

/*
Grouping content
================
*/
/**
Add the correct height in Firefox.
*/
hr {
  height: 0; }

/*
Text-level semantics
====================
*/
/**
Add the correct text decoration in Chrome, Edge, and Safari.
*/
abbr[title] {
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted; }

/**
Add the correct font weight in Edge and Safari.
*/
b,
strong {
  font-weight: bolder; }

/**
1. Improve consistency of default fonts in all browsers. (https://github.com/sindresorhus/modern-normalize/issues/3)
2. Correct the odd 'em' font sizing in all browsers.
*/
code,
kbd,
samp,
pre {
  font-family: ui-monospace, SFMono-Regular, Consolas, 'Liberation Mono', Menlo, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
Add the correct font size in all browsers.
*/
small {
  font-size: 80%; }

/**
Prevent 'sub' and 'sup' elements from affecting the line height in all browsers.
*/
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/*
Forms
=====
*/
/**
1. Change the font styles in all browsers.
2. Remove the margin in Firefox and Safari.
*/
button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
Remove the inheritance of text transform in Edge and Firefox.
1. Remove the inheritance of text transform in Firefox.
*/
button,
select {
  /* 1 */
  text-transform: none; }

/**
Correct the inability to style clickable types in iOS and Safari.
*/
button,
[type='button'],
[type='reset'],
[type='submit'] {
  -webkit-appearance: button; }

/**
Remove the inner border and padding in Firefox.
*/
button::-moz-focus-inner,
[type='button']::-moz-focus-inner,
[type='reset']::-moz-focus-inner,
[type='submit']::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
Restore the focus styles unset by the previous rule.
*/
button:-moz-focusring,
[type='button']:-moz-focusring,
[type='reset']:-moz-focusring,
[type='submit']:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
Remove the padding so developers are not caught out when they zero out 'fieldset' elements in all browsers.
*/
legend {
  padding: 0; }

/**
Add the correct vertical alignment in Chrome and Firefox.
*/
progress {
  vertical-align: baseline; }

/**
Correct the cursor style of increment and decrement buttons in Safari.
*/
[type='number']::-webkit-inner-spin-button,
[type='number']::-webkit-outer-spin-button {
  height: auto; }

/**
1. Correct the odd appearance in Chrome and Safari.
2. Correct the outline style in Safari.
*/
[type='search'] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
Remove the inner padding in Chrome and Safari on macOS.
*/
[type='search']::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
1. Correct the inability to style clickable types in iOS and Safari.
2. Change font properties to 'inherit' in Safari.
*/
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/*
Interactive
===========
*/
/*
Add the correct display in Chrome and Safari.
*/
summary {
  display: list-item; }

body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  color: #11181b;
  background: white;
  min-width: 320px;
  height: 100%;
  font-family: 'Manrope', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-weight: normal;
  font-size: 0.875rem;
  line-height: 1.71429;
  letter-spacing: 0; }

h1,
.title-1,
h2,
.title-2,
h3,
.title-3,
h4,
.title-4,
h5,
.title-5,
h6,
.title-6 {
  font-weight: 700;
  margin: 0 0 20px; }
  h1 a,
  .title-1 a,
  h2 a,
  .title-2 a,
  h3 a,
  .title-3 a,
  h4 a,
  .title-4 a,
  h5 a,
  .title-5 a,
  h6 a,
  .title-6 a {
    display: inline-block;
    color: inherit; }
    h1 a:hover,
    .title-1 a:hover,
    h2 a:hover,
    .title-2 a:hover,
    h3 a:hover,
    .title-3 a:hover,
    h4 a:hover,
    .title-4 a:hover,
    h5 a:hover,
    .title-5 a:hover,
    h6 a:hover,
    .title-6 a:hover {
      text-decoration: none;
      color: #2aa757; }

.title-hero {
  font-size: 2.25rem;
  line-height: 1.27778; }
  @media (min-width: 1200px) {
    .title-hero {
      font-size: 3.375rem;
      line-height: 1.11111; } }

h1,
.title-1 {
  font-size: 1.875rem;
  line-height: 1.4; }
  @media (min-width: 1200px) {
    h1,
    .title-1 {
      font-size: 2.875rem;
      line-height: 1.26087; } }

h2,
.title-2 {
  font-size: 1.75rem;
  line-height: 1.42857; }
  @media (min-width: 1200px) {
    h2,
    .title-2 {
      font-size: 2.5rem;
      line-height: 1.35; } }

h3,
.title-3 {
  font-size: 1.5rem;
  line-height: 1.5; }
  @media (min-width: 1200px) {
    h3,
    .title-3 {
      font-size: 1.75rem;
      line-height: 1.5; } }

h4,
.title-4 {
  font-size: 1.375rem;
  line-height: 1.54545; }
  @media (min-width: 1200px) {
    h4,
    .title-4 {
      font-size: 1.625rem;
      line-height: 1.46154; } }

h5,
.title-5 {
  font-size: 1.125rem;
  line-height: 1.66667; }
  @media (min-width: 1200px) {
    h5,
    .title-5 {
      font-size: 1.375rem;
      line-height: 1.54545; } }

h6,
.title-6 {
  font-size: 1rem;
  line-height: 1.75; }
  @media (min-width: 1200px) {
    h6,
    .title-6 {
      font-size: 1.125rem;
      line-height: 1.55556; } }

p {
  letter-spacing: 0.5px;
  margin: 0 0 16px; }

.font-small,
.font-small * {
  font-size: 0.75rem;
  line-height: 1.66667;
  letter-spacing: 0.5px;
  font-weight: 500; }

.font-big,
.font-big * {
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.5px; }

.font-custom-small,
.font-custom-small * {
  font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 0.75rem;
  line-height: 1.83333;
  font-weight: 700;
  letter-spacing: 0; }
  @media (min-width: 1200px) {
    .font-custom-small,
    .font-custom-small * {
      font-size: 0.75rem;
      line-height: 1.5; } }

.font-custom-medium,
.font-custom-medium * {
  font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
  font-size: 0.875rem;
  line-height: 1.42857;
  letter-spacing: 0;
  font-weight: 700;
  color: #009932; }
  @media (min-width: 1200px) {
    .font-custom-medium,
    .font-custom-medium * {
      font-size: 1rem;
      line-height: 1.25; } }

.font-custom-big,
.font-custom-big * {
  font-size: 1rem;
  line-height: 1.375;
  letter-spacing: 0;
  font-weight: 700; }
  @media (min-width: 1200px) {
    .font-custom-big,
    .font-custom-big * {
      font-size: 1.25rem;
      line-height: 1.6; } }

a {
  color: #11181b;
  text-decoration: none;
  -webkit-transition: color 0.3s cubic-bezier(0.694, 0, 0.335, 1), background-color 0.3s cubic-bezier(0.694, 0, 0.335, 1);
  -o-transition: color 0.3s cubic-bezier(0.694, 0, 0.335, 1), background-color 0.3s cubic-bezier(0.694, 0, 0.335, 1);
  transition: color 0.3s cubic-bezier(0.694, 0, 0.335, 1), background-color 0.3s cubic-bezier(0.694, 0, 0.335, 1); }
  a:hover, a:focus {
    text-decoration: underline; }
  a:focus {
    outline: 1px dotted #0c66ff;
    outline-offset: 2px; }
  a:focus:hover, a:focus:active {
    outline: none !important; }

p a {
  color: #009932;
  -webkit-transition: none;
  -o-transition: none;
  transition: none; }
  p a:hover {
    color: #6cc266; }

.text-white {
  color: white; }
  .text-white .copyright,
  .text-white h1,
  .text-white .title-1,
  .text-white h2,
  .text-white .title-2,
  .text-white h3,
  .text-white .title-3,
  .text-white h4,
  .text-white .title-4,
  .text-white h5,
  .text-white .title-5,
  .text-white h6,
  .text-white .title-6,
  .text-white .title-hero {
    color: inherit; }

div:not(.components-panel__header) > ul:not([class]):not([id]),
div:not(.components-panel__header) > ol:not([class]):not([id]) {
  letter-spacing: 0.4px;
  margin-bottom: 16px; }
  @media (min-width: 1200px) {
    div:not(.components-panel__header) > ul:not([class]):not([id]),
    div:not(.components-panel__header) > ol:not([class]):not([id]) {
      letter-spacing: 0.5px;
      margin-bottom: 20px; } }
  div:not(.components-panel__header) > ul:not([class]):not([id]) li,
  div:not(.components-panel__header) > ol:not([class]):not([id]) li {
    position: relative;
    padding-left: 35px;
    margin-bottom: 16px; }
    @media (min-width: 1200px) {
      div:not(.components-panel__header) > ul:not([class]):not([id]) li,
      div:not(.components-panel__header) > ol:not([class]):not([id]) li {
        margin-bottom: 10px; } }
    div:not(.components-panel__header) > ul:not([class]):not([id]) li:before,
    div:not(.components-panel__header) > ol:not([class]):not([id]) li:before {
      content: '';
      position: absolute;
      top: 14px;
      left: 14px; }

div:not(.components-panel__header) > ul:not([class]):not([id]) li:before {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #000; }

ol:not([class]):not([id]) {
  counter-reset: counter; }
  ol:not([class]):not([id]) li {
    counter-increment: counter; }
    ol:not([class]):not([id]) li:before {
      content: counter(counter) ".";
      top: 0; }

.bg-dark {
  background-color: #143038; }

button:focus {
  outline: 1px dotted #0c66ff;
  outline-offset: 2px; }

.wp-btn .wp-block-button__link {
  position: relative;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  -o-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  font-size: 0.875rem;
  line-height: 1.71429;
  border-radius: 4px;
  font-style: normal;
  background-color: #009932;
  color: white;
  letter-spacing: 1px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 13px 32px;
  white-space: nowrap;
  font-weight: 700;
  cursor: pointer;
  max-width: 100%;
  white-space: normal; }
  @media (min-width: 1200px) {
    .wp-btn .wp-block-button__link {
      padding: 15px 32px; } }
  .wp-btn .wp-block-button__link:hover {
    text-decoration: none;
    background-color: #6cc266; }

.wp-btn_small .wp-block-button__link {
  padding: 10px 18px; }
  @media (min-width: 1200px) {
    .wp-btn_small .wp-block-button__link {
      padding: 12px 24px; } }

.wp-btn_dark .wp-block-button__link {
  font-size: 0.75rem;
  line-height: 2;
  padding: 13px 24px;
  background-color: #164f45; }
  @media (min-width: 1200px) {
    .wp-btn_dark .wp-block-button__link {
      font-size: 0.875rem;
      line-height: 1.71429;
      padding: 15px 24px; } }

.wp-btn_border .wp-block-button__link {
  border: 1px solid #fff;
  font-size: 0.75rem;
  line-height: 2;
  padding: 13px 24px;
  background-color: transparent;
  vertical-align: middle; }
  @media (min-width: 1200px) {
    .wp-btn_border .wp-block-button__link {
      font-size: 0.875rem;
      line-height: 1.71429;
      padding: 15px 24px; } }
  .wp-btn_border .wp-block-button__link:hover {
    background-color: transparent;
    border-color: #6cc266;
    color: #6cc266; }
  .wp-btn_border .wp-block-button__link:after {
    font-family: 'icomoon' !important;
    content: '\E908';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 17px;
    vertical-align: text-bottom;
    display: inline-block;
    margin-left: 10px; }

.wp-block-buttons .wp-btn_full {
  display: block; }

.wp-btn_full .wp-block-button__link {
  display: block;
  text-align: center; }
  @media (min-width: 768px) {
    .wp-btn_full .wp-block-button__link {
      display: inline-block; } }

.wp-link .wp-block-button__link {
  position: relative;
  font-size: 0.875rem;
  line-height: 1.71429;
  padding: 0;
  background-color: transparent;
  color: #009932;
  font-weight: bold;
  letter-spacing: 1px;
  text-transform: uppercase;
  display: inline-block;
  -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
  transition: color 0.3s ease, -webkit-transform 0.3s ease;
  -o-transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease;
  transition: color 0.3s ease, transform 0.3s ease, -webkit-transform 0.3s ease;
  text-decoration: none;
  border: none; }
  .wp-link .wp-block-button__link:hover {
    color: #6cc266;
    text-decoration: none; }

.wp-link_arrow-right .wp-block-button__link:after {
  font-family: 'icomoon' !important;
  content: '\E90A';
  color: #009932;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 11px;
  vertical-align: baseline;
  display: inline-block;
  margin-left: 8px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease; }

.wp-link_arrow-right .wp-block-button__link:hover:after {
  -webkit-transform: translate3d(5px, 0, 1px);
          transform: translate3d(5px, 0, 1px);
  color: #6cc266; }

.wp-link_arrow-left .wp-block-button__link:before {
  font-family: 'icomoon' !important;
  content: '\E905';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 11px;
  vertical-align: baseline;
  display: inline-block;
  margin-right: 8px;
  -webkit-transition: all 0.3s ease;
  -o-transition: all 0.3s ease;
  transition: all 0.3s ease;
  color: #009932; }

.wp-link_arrow-left .wp-block-button__link:hover {
  -webkit-transform: translate3d(5px, 0, 1px);
          transform: translate3d(5px, 0, 1px); }

.wp-link_arrow-left .wp-block-button__link:hover:before {
  -webkit-transform: translate3d(-5px, 0, 1px);
          transform: translate3d(-5px, 0, 1px);
  color: #6cc266; }

.wp-link_arrow-down .wp-block-button__link:after {
  font-family: 'icomoon' !important;
  content: '\E907';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 14px;
  vertical-align: middle;
  display: inline-block;
  margin-left: 8px; }

.wp-link_arrow-top-right .wp-block-button__link:after {
  font-family: 'icomoon' !important;
  content: '\E908';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 18px;
  vertical-align: text-bottom;
  display: inline-block;
  margin-left: 8px; }

.wp-link_download .wp-block-button__link:after {
  font-family: 'icomoon' !important;
  content: '\E900';
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-size: 24px;
  vertical-align: middle;
  display: inline-block;
  margin-left: 8px; }

.wp-link_color-light .wp-block-button__link {
  color: #6cc266; }
  .wp-link_color-light .wp-block-button__link:after {
    color: #6cc266; }
  .wp-link_color-light .wp-block-button__link:before {
    background-color: #6cc266; }
  .wp-link_color-light .wp-block-button__link:hover {
    color: #9bcb7d; }
  .wp-link_color-light .wp-block-button__link:hover:after {
    color: #9bcb7d; }
  .wp-link_color-light .wp-block-button__link:hover:before {
    background-color: #9bcb7d; }

.pagination {
  text-align: center;
  font-size: 1rem;
  line-height: 1.9375; }
  .pagination .nav-links {
    display: inline-block;
    vertical-align: top; }
    .pagination .nav-links a,
    .pagination .nav-links span {
      display: inline-block;
      vertical-align: top;
      margin: 0 3px 0 2px;
      width: 31px;
      height: 31px;
      border-radius: 16px;
      text-align: center;
      -webkit-transition: background 0.3s cubic-bezier(0.694, 0, 0.335, 1), color 0.3s cubic-bezier(0.694, 0, 0.335, 1);
      -o-transition: background 0.3s cubic-bezier(0.694, 0, 0.335, 1), color 0.3s cubic-bezier(0.694, 0, 0.335, 1);
      transition: background 0.3s cubic-bezier(0.694, 0, 0.335, 1), color 0.3s cubic-bezier(0.694, 0, 0.335, 1);
      text-decoration: none !important;
      font-weight: normal; }
    .pagination .nav-links span {
      color: #fff;
      background: #b8c0c3; }
    .pagination .nav-links a {
      color: #fff;
      background-color: #143038; }
      .pagination .nav-links a:hover {
        color: #2aa757;
        text-decoration: none; }
    .pagination .nav-links .next,
    .pagination .nav-links .prev {
      font-size: 0;
      margin: 0 18px 0 0; }
      .pagination .nav-links .next:before,
      .pagination .nav-links .prev:before {
        font: 31px/1 'icomoon' !important;
        color: #fff;
        -webkit-transition: color 0.3s ease;
        -o-transition: color 0.3s ease;
        transition: color 0.3s ease; }
      .pagination .nav-links .next:hover,
      .pagination .nav-links .prev:hover {
        background: transparent;
        text-decoration: none; }
        .pagination .nav-links .next:hover:before,
        .pagination .nav-links .prev:hover:before {
          color: #2aa757; }
    .pagination .nav-links .prev:before {
      content: '\E901'; }
    .pagination .nav-links .next {
      margin: 0 0 0 18px; }
      .pagination .nav-links .next:before {
        content: '\E903'; }
    .pagination .nav-links .dots {
      background: transparent;
      color: #009932; }

.swiper-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start; }

.swiper-button {
  display: block;
  width: 40px;
  height: 40px;
  border-radius: 2px;
  border: none;
  background-color: #009932;
  position: relative;
  margin-right: 10px;
  padding: 0;
  -webkit-transition: background-color 0.3s ease, border-color 0.3s ease;
  -o-transition: background-color 0.3s ease, border-color 0.3s ease;
  transition: background-color 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
  text-align: center; }
  .swiper-button:last-child {
    margin-right: 0; }
  .swiper-button:after {
    font: 40px/40px 'icomoon' !important;
    color: #fff; }
  .swiper-button:hover {
    background-color: #6cc266; }

.swiper-button-prev:after {
  content: '\E901'; }

.swiper-button-next:after {
  content: '\E903'; }

.swiper-button-disabled {
  pointer-events: none;
  background-color: #88969a; }
  .swiper-button-disabled:after {
    color: #d4d9db; }

input[type='text'],
input[type='tel'],
input[type='email'],
input[type='search'],
input[type='number'],
input[type='password'],
textarea {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #11181b;
  font-size: 0.875rem;
  line-height: 1.71429;
  height: 50px;
  display: block;
  width: 100%;
  background-color: transparent;
  border: 1px solid #b8c0c3;
  margin: 0;
  padding: 13px 20px;
  border-radius: 4px;
  -webkit-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  transition: border 0.3s ease;
  font-weight: 600; }
  input[type='text']:focus,
  input[type='tel']:focus,
  input[type='email']:focus,
  input[type='search']:focus,
  input[type='number']:focus,
  input[type='password']:focus,
  textarea:focus {
    outline: none;
    border-color: #2aa757; }
  input[type='text']:disabled,
  input[type='tel']:disabled,
  input[type='email']:disabled,
  input[type='search']:disabled,
  input[type='number']:disabled,
  input[type='password']:disabled,
  textarea:disabled {
    border-color: #dadfde; }
    input[type='text']:disabled::-webkit-input-placeholder,
    input[type='tel']:disabled::-webkit-input-placeholder,
    input[type='email']:disabled::-webkit-input-placeholder,
    input[type='search']:disabled::-webkit-input-placeholder,
    input[type='number']:disabled::-webkit-input-placeholder,
    input[type='password']:disabled::-webkit-input-placeholder,
    textarea:disabled::-webkit-input-placeholder {
      background: #88969a; }
    input[type='text']:disabled::-moz-placeholder,
    input[type='tel']:disabled::-moz-placeholder,
    input[type='email']:disabled::-moz-placeholder,
    input[type='search']:disabled::-moz-placeholder,
    input[type='number']:disabled::-moz-placeholder,
    input[type='password']:disabled::-moz-placeholder,
    textarea:disabled::-moz-placeholder {
      opacity: 1;
      background: #88969a; }
    input[type='text']:disabled:-moz-placeholder,
    input[type='tel']:disabled:-moz-placeholder,
    input[type='email']:disabled:-moz-placeholder,
    input[type='search']:disabled:-moz-placeholder,
    input[type='number']:disabled:-moz-placeholder,
    input[type='password']:disabled:-moz-placeholder,
    textarea:disabled:-moz-placeholder {
      background: #88969a; }
    input[type='text']:disabled:-ms-input-placeholder,
    input[type='tel']:disabled:-ms-input-placeholder,
    input[type='email']:disabled:-ms-input-placeholder,
    input[type='search']:disabled:-ms-input-placeholder,
    input[type='number']:disabled:-ms-input-placeholder,
    input[type='password']:disabled:-ms-input-placeholder,
    textarea:disabled:-ms-input-placeholder {
      background: #88969a; }
    input[type='text']:disabled.placeholder,
    input[type='tel']:disabled.placeholder,
    input[type='email']:disabled.placeholder,
    input[type='search']:disabled.placeholder,
    input[type='number']:disabled.placeholder,
    input[type='password']:disabled.placeholder,
    textarea:disabled.placeholder {
      background: #88969a; }
  input[type='text']:-webkit-autofill, input[type='text']:-webkit-autofill:hover, input[type='text']:-webkit-autofill:focus,
  input[type='tel']:-webkit-autofill,
  input[type='tel']:-webkit-autofill:hover,
  input[type='tel']:-webkit-autofill:focus,
  input[type='email']:-webkit-autofill,
  input[type='email']:-webkit-autofill:hover,
  input[type='email']:-webkit-autofill:focus,
  input[type='search']:-webkit-autofill,
  input[type='search']:-webkit-autofill:hover,
  input[type='search']:-webkit-autofill:focus,
  input[type='number']:-webkit-autofill,
  input[type='number']:-webkit-autofill:hover,
  input[type='number']:-webkit-autofill:focus,
  input[type='password']:-webkit-autofill,
  input[type='password']:-webkit-autofill:hover,
  input[type='password']:-webkit-autofill:focus,
  textarea:-webkit-autofill,
  textarea:-webkit-autofill:hover,
  textarea:-webkit-autofill:focus {
    background-color: transparent;
    -webkit-transition: background-color 99999s ease-in-out 0s;
    -o-transition: background-color 99999s ease-in-out 0s;
    transition: background-color 99999s ease-in-out 0s; }
  input[type='text']::-webkit-input-placeholder,
  input[type='tel']::-webkit-input-placeholder,
  input[type='email']::-webkit-input-placeholder,
  input[type='search']::-webkit-input-placeholder,
  input[type='number']::-webkit-input-placeholder,
  input[type='password']::-webkit-input-placeholder,
  textarea::-webkit-input-placeholder {
    color: white;
    font-size: 0;
    line-height: 0; }
  input[type='text']::-moz-placeholder,
  input[type='tel']::-moz-placeholder,
  input[type='email']::-moz-placeholder,
  input[type='search']::-moz-placeholder,
  input[type='number']::-moz-placeholder,
  input[type='password']::-moz-placeholder,
  textarea::-moz-placeholder {
    opacity: 1;
    color: white;
    font-size: 0;
    line-height: 0; }
  input[type='text']:-moz-placeholder,
  input[type='tel']:-moz-placeholder,
  input[type='email']:-moz-placeholder,
  input[type='search']:-moz-placeholder,
  input[type='number']:-moz-placeholder,
  input[type='password']:-moz-placeholder,
  textarea:-moz-placeholder {
    color: white;
    font-size: 0;
    line-height: 0; }
  input[type='text']:-ms-input-placeholder,
  input[type='tel']:-ms-input-placeholder,
  input[type='email']:-ms-input-placeholder,
  input[type='search']:-ms-input-placeholder,
  input[type='number']:-ms-input-placeholder,
  input[type='password']:-ms-input-placeholder,
  textarea:-ms-input-placeholder {
    color: white;
    font-size: 0;
    line-height: 0; }
  input[type='text'].placeholder,
  input[type='tel'].placeholder,
  input[type='email'].placeholder,
  input[type='search'].placeholder,
  input[type='number'].placeholder,
  input[type='password'].placeholder,
  textarea.placeholder {
    color: white;
    font-size: 0;
    line-height: 0; }

input[type='submit'] {
  font-size: 0.875rem;
  line-height: 1.71429;
  border-radius: 4px;
  border: none;
  font-style: normal;
  background-color: #009932;
  color: white;
  letter-spacing: 1px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  padding: 13px 15px;
  font-weight: 700;
  cursor: pointer;
  -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  -o-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease; }
  input[type='submit']:hover {
    text-decoration: none;
    background-color: #6cc266; }

.gform_wrapper div.StripeElement {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #11181b;
  font-size: 14px !important;
  line-height: 24px !important;
  height: 50px;
  display: block;
  width: 100%;
  background-color: transparent;
  border: 1px solid #b8c0c3;
  margin: 0 0 20px;
  padding: 15px 20px !important;
  border-radius: 4px;
  -webkit-transition: border 0.3s ease;
  -o-transition: border 0.3s ease;
  transition: border 0.3s ease; }
  .gform_wrapper div.StripeElement + label,
  .gform_wrapper div.StripeElement + * + label {
    display: none; }
  .gform_wrapper div.StripeElement + .validation_message {
    margin: -15px 0 15px; }
  .gform_wrapper div.StripeElement--complete + .validation_message {
    margin: 0; }
  .gform_wrapper div.StripeElement--focus {
    outline: none;
    border-color: #2aa757; }
    .gform_wrapper div.StripeElement--focus + .validation_message {
      margin: 0; }
  .gform_wrapper div.StripeElement--focus.StripeElement--invalid + .validation_message {
    margin: -15px 0 15px; }
  .gform_wrapper div.StripeElement.StripeElement--invalid {
    border-color: #f16262; }

textarea {
  min-height: 91px;
  height: 91px;
  padding: 13px 20px;
  resize: none;
  font-size: 0.875rem;
  line-height: 1.71429; }
  @media (min-width: 993px) {
    textarea {
      min-height: 150px;
      height: 150px; } }
  textarea::-webkit-resizer {
    display: none; }

.gform_wrapper .gfield.jc-center .ginput_recaptcha {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center; }

.gform_wrapper .gform_fields > li {
  margin: 0 0 18px; }
  @media (min-width: 1200px) {
    .gform_wrapper .gform_fields > li {
      margin: 0 0 25px; } }

.gform_wrapper .gform_fields .hidden_label .gfield_label {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
          clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important; }

.gform_wrapper .custom-input-label {
  display: block;
  position: relative; }
  .gform_wrapper .custom-input-label .placeholder-label {
    position: absolute;
    top: 50%;
    left: 16px;
    color: #88969a;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    pointer-events: none;
    z-index: 1;
    -webkit-transition: all 0.2s ease;
    -o-transition: all 0.2s ease;
    transition: all 0.2s ease;
    padding: 0 4px;
    background-color: white;
    font-size: 0.875rem;
    line-height: 1.71429;
    letter-spacing: 0.4px;
    font-weight: 600; }
  .gform_wrapper .custom-input-label.active-label .placeholder-label {
    top: -7px;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0);
    font-size: 0.75rem;
    line-height: 1.33333; }

.gform_wrapper .ginput_container {
  position: relative; }
  .gform_wrapper .ginput_container_select {
    position: relative; }
    .gform_wrapper .ginput_container_select select {
      display: block;
      width: 100%;
      height: 52px; }
    .gform_wrapper .ginput_container_select .placeholder-label,
    .gform_wrapper .ginput_container_select label {
      position: absolute;
      left: 16px;
      top: -7px;
      z-index: 1;
      color: #88969a;
      font-size: 0.75rem;
      line-height: 1.33333;
      font-weight: 600;
      pointer-events: none;
      padding: 0 4px;
      background-color: white;
      letter-spacing: 0.4px; }
  .gform_wrapper .ginput_container_textarea .placeholder-label {
    top: 13px;
    -webkit-transform: translate(0, 0);
        -ms-transform: translate(0, 0);
            transform: translate(0, 0); }

.gform_wrapper.gform_validation_error .ginput_complex label {
  top: -7px;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  font-size: 0.75rem;
  line-height: 1.33333; }

.gform_wrapper.gform_validation_error .ginput_complex .select2 + label {
  -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
          transform: translateY(-50%); }

.gform_wrapper.gform_validation_error .ginput_complex .select2-container--default .select2-selection--single {
  border-color: #f16262; }

.gform_wrapper .ginput_complex > span {
  position: relative;
  margin-bottom: 20px;
  display: block; }

.gform_wrapper .ginput_complex .active-label label {
  top: -7px;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  font-size: 0.75rem;
  line-height: 1.33333; }

.gform_wrapper .ginput_complex label {
  position: absolute;
  top: 50%;
  left: 16px;
  color: #88969a;
  -webkit-transform: translate(0, -50%);
      -ms-transform: translate(0, -50%);
          transform: translate(0, -50%);
  pointer-events: none;
  z-index: 1;
  -webkit-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  padding: 0 4px;
  background-color: white;
  font-size: 0.875rem;
  line-height: 1.71429;
  letter-spacing: 0.4px;
  font-weight: 600; }

.gform_wrapper .ginput_complex .address_country {
  position: relative; }
  .gform_wrapper .ginput_complex .address_country label {
    position: absolute;
    left: 16px;
    top: 0;
    z-index: 1;
    color: #88969a;
    font-size: 0.75rem;
    line-height: 1.33333;
    font-weight: 600;
    pointer-events: none;
    padding: 0 4px;
    background-color: white;
    letter-spacing: 0.4px; }

.gform_wrapper .placeholder-label {
  font-size: 0.875rem;
  line-height: 1.71429;
  font-weight: 700;
  color: #11181b;
  margin: 0 20px 13px 0;
  letter-spacing: 0.5px; }

.gform_wrapper .gfield_label {
  display: block;
  color: #000;
  font-size: 1.125rem;
  line-height: 1.66667;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin: 0 0 20px; }

.gform_wrapper .gfield_checkbox,
.gform_wrapper .gfield_radio {
  font-size: 0.875rem;
  line-height: 1.71429;
  font-weight: 500;
  letter-spacing: 0.4px;
  color: #11181b;
  padding: 0; }
  .gform_wrapper .gfield_checkbox li,
  .gform_wrapper .gfield_radio li {
    margin: 0 0 21px;
    position: relative;
    overflow: hidden; }
    .gform_wrapper .gfield_checkbox li:last-child,
    .gform_wrapper .gfield_radio li:last-child {
      margin: 0; }
  .gform_wrapper .gfield_checkbox input[type='checkbox'],
  .gform_wrapper .gfield_checkbox input[type='radio'],
  .gform_wrapper .gfield_radio input[type='checkbox'],
  .gform_wrapper .gfield_radio input[type='radio'] {
    position: absolute;
    left: -9999px;
    z-index: 10; }

.gform_wrapper .gfield_checkbox > li,
.gform_wrapper .gfield_radio > li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: visible; }

.gform_wrapper .gfield_checkbox label,
.gform_wrapper .gfield_radio label {
  vertical-align: middle;
  cursor: pointer;
  padding-left: 42px;
  display: block; }
  .gform_wrapper .gfield_checkbox label::before,
  .gform_wrapper .gfield_radio label::before {
    content: '\E90B';
    display: block;
    width: 26px;
    height: 26px;
    margin: 0;
    border-radius: 2px;
    position: relative;
    -webkit-transition: border-color 0.3s ease, color 0.3s ease;
    -o-transition: border-color 0.3s ease, color 0.3s ease;
    transition: border-color 0.3s ease, color 0.3s ease;
    font: 10px/24px 'icomoon' !important;
    text-align: center;
    border: 1px solid #b8c0c3;
    color: transparent;
    position: absolute;
    top: 0;
    left: 0; }
  .gform_wrapper .gfield_checkbox label:hover::before,
  .gform_wrapper .gfield_radio label:hover::before {
    border-color: #6cc266; }

.gform_wrapper .gfield_checkbox input[type='checkbox']:checked + label::before,
.gform_wrapper .gfield_checkbox input[type='radio']:checked + label::before,
.gform_wrapper .gfield_radio input[type='checkbox']:checked + label::before,
.gform_wrapper .gfield_radio input[type='radio']:checked + label::before {
  color: #009932;
  border-color: #009932; }

.gform_wrapper .gform_footer {
  display: inline-block;
  vertical-align: top;
  position: relative;
  margin: 12px 0 0;
  padding: 0 40px; }
  @media (min-width: 1200px) {
    .gform_wrapper .gform_footer {
      margin: 5px 0 0; } }
  .gform_wrapper .gform_footer .gform_ajax_spinner {
    position: absolute;
    left: calc(100% - 34px);
    top: 50%;
    width: 34px;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%); }

.gform_wrapper .gfield_error input,
.gform_wrapper .gfield_error textarea {
  border-color: #f16262; }

.gform_wrapper .validation_message,
.gform_wrapper .validation_error,
.gform_wrapper .gform_submission_error {
  font-size: 12px;
  line-height: 16px;
  color: #f7a1a1;
  font-weight: 600;
  padding: 0 20px;
  position: relative; }

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

.gform_wrapper .validation_error {
  margin: 0 0 15px; }

.gform_wrapper .validation_message {
  margin: 5px 0 0; }

.gform_wrapper .select2-container {
  width: 100% !important;
  font-size: 0.875rem;
  line-height: 1.71429;
  border-color: #11181b;
  font-weight: 600;
  color: #11181b;
  letter-spacing: 0.4px; }
  .gform_wrapper .select2-container .select2-container--default .select2-selection--single {
    border-color: #43595f !important; }
  .gform_wrapper .select2-container .select2-selection--single {
    height: 50px;
    border-radius: 4px !important; }
  .gform_wrapper .select2-container .select2-selection__rendered {
    line-height: 48px !important;
    padding: 0 50px 0 20px !important;
    color: #88969a !important; }
    .gform_wrapper .select2-container .select2-selection__rendered span {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }
  .gform_wrapper .select2-container.select2-container--open .select2-selection__rendered {
    color: #11181b !important; }
  .gform_wrapper .select2-container.select2-container--open .select2-selection__arrow {
    -webkit-transform: translate(0, -50%) rotate(-180deg);
        -ms-transform: translate(0, -50%) rotate(-180deg);
            transform: translate(0, -50%) rotate(-180deg); }
  .gform_wrapper .select2-container .select2-selection__arrow {
    top: 50% !important;
    right: 13px !important;
    -webkit-transform: translate(0, -50%);
        -ms-transform: translate(0, -50%);
            transform: translate(0, -50%);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    .gform_wrapper .select2-container .select2-selection__arrow b {
      display: none; }
    .gform_wrapper .select2-container .select2-selection__arrow::before {
      content: '\E909';
      font: 7px/1 'icomoon'; }

.gform_wrapper.gform_validation_error .placeholder-label {
  top: -7px;
  -webkit-transform: translate(0, 0);
      -ms-transform: translate(0, 0);
          transform: translate(0, 0);
  font-size: 0.75rem;
  line-height: 1.33333; }

.gform_wrapper .gfield_required {
  position: relative;
  font-size: 0; }
  .gform_wrapper .gfield_required:before {
    position: absolute;
    content: ' *';
    font-size: initial; }

span.select2-dropdown {
  margin-top: 5px;
  font-size: 0.875rem;
  line-height: 1.71429;
  font-weight: 600;
  color: #11181b;
  letter-spacing: 0.4px;
  border-color: #b8c0c3 !important;
  border-top: 1px solid #b8c0c3 !important;
  border-radius: 4px !important; }
  span.select2-dropdown .select2-results__options {
    padding: 7px 20px;
    -webkit-transition: color 0.3s ease;
    -o-transition: color 0.3s ease;
    transition: color 0.3s ease; }
  span.select2-dropdown .select2-results__option[aria-selected='true'] {
    background-color: transparent;
    color: #88969a;
    pointer-events: none; }
  span.select2-dropdown .select2-results__option--highlighted[aria-selected] {
    background-color: transparent;
    color: #11181b; }
  span.select2-dropdown .select2-results__option {
    padding: 6px 0; }
    span.select2-dropdown .select2-results__option:hover {
      color: #009932; }
    span.select2-dropdown .select2-results__option span {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center; }

.thank-you {
  font-size: 0.875rem;
  line-height: 1.71429;
  border: 1px solid #ebf0f2;
  height: 342px;
  padding: 20px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }
  @media (min-width: 1200px) {
    .thank-you {
      height: 455px; } }
  .thank-you__holder {
    -webkit-box-flex: 100%;
        -ms-flex: 100% 0 0px;
            flex: 100% 0 0; }
    @media (min-width: 768px) {
      .thank-you__holder {
        -webkit-box-flex: 70%;
            -ms-flex: 70% 0 0px;
                flex: 70% 0 0; } }
    @media (min-width: 1200px) {
      .thank-you__holder {
        -webkit-box-flex: 340px;
            -ms-flex: 340px 0 0px;
                flex: 340px 0 0; } }
  .thank-you__icon {
    margin: 0 auto 33px;
    width: 64px; }
    .thank-you__icon img {
      display: block;
      width: 100%;
      height: auto; }
  .thank-you__title {
    margin: 0 0 20px; }
  .thank-you__text {
    margin: 0; }

.gform_wrapper .donation-form {
  padding: 20px 0 60px;
  position: relative;
  max-width: 770px;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .gform_wrapper .donation-form {
      padding: 30px 0 80px; } }
  .gform_wrapper .donation-form:before {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    left: calc(50% - 50vw);
    z-index: -1;
    background-color: #f5f6f3; }
  .gform_wrapper .donation-form .gform_heading {
    display: none; }
  .gform_wrapper .donation-form .processing-fees-checkbox {
    margin-bottom: 40px;
    max-width: 433px; }
    .gform_wrapper .donation-form .processing-fees-checkbox ul {
      margin: 0; }
    .gform_wrapper .donation-form .processing-fees-checkbox input[type='checkbox'] + label {
      color: #11181b; }
      .gform_wrapper .donation-form .processing-fees-checkbox input[type='checkbox'] + label:before {
        border-color: #b8c0c3; }
      .gform_wrapper .donation-form .processing-fees-checkbox input[type='checkbox'] + label:hover::before {
        border-color: #6cc266; }
    .gform_wrapper .donation-form .processing-fees-checkbox input[type='checkbox']:checked + label {
      color: #11181b; }
      .gform_wrapper .donation-form .processing-fees-checkbox input[type='checkbox']:checked + label:before {
        border-color: #6cc266; }
    .gform_wrapper .donation-form .processing-fees-checkbox.is-disable input[type='checkbox'] + label {
      color: #88969a;
      pointer-events: none; }
      .gform_wrapper .donation-form .processing-fees-checkbox.is-disable input[type='checkbox'] + label:before {
        border-color: #dadfde;
        content: ''; }
    .gform_wrapper .donation-form .processing-fees-checkbox.is-disable + li.processing-fees-price,
    .gform_wrapper .donation-form .processing-fees-checkbox.is-disable + li + li.processing-fees-price {
      display: none !important; }
  .gform_wrapper .donation-form .processing-fees-price {
    margin: -25px 0 40px;
    padding-left: 42px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .gform_wrapper .donation-form .processing-fees-price label {
      margin: 0 10px 0 0;
      font-size: 0.875rem;
      line-height: 1.71429;
      font-weight: bold;
      letter-spacing: 0.4px;
      color: #11181b; }
      .gform_wrapper .donation-form .processing-fees-price label + div {
        margin: 0;
        font-size: 0.875rem;
        line-height: 1.71429;
        font-weight: bold;
        letter-spacing: 0.4px;
        color: #009932; }
        .gform_wrapper .donation-form .processing-fees-price label + div span:first-of-type {
          display: none; }
  .gform_wrapper .donation-form .processing-fees-notice {
    font-size: 1.125rem;
    line-height: 1.66667;
    font-weight: 500;
    letter-spacing: 0.5px;
    margin-top: -18px; }
    @media (min-width: 1200px) {
      .gform_wrapper .donation-form .processing-fees-notice {
        margin-top: -25px; } }
  .gform_wrapper .donation-form .gf_page_steps {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      .gform_wrapper .donation-form .gf_page_steps {
        margin-bottom: 40px; } }
  .gform_wrapper .donation-form .gf_step {
    padding: 0 0 14px 0;
    -ms-flex-preferred-size: calc(100% / 3);
        flex-basis: calc(100% / 3);
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    -ms-flex-negative: 1;
        flex-shrink: 1;
    border-bottom: 1px solid #d4d9db;
    font-weight: bold;
    letter-spacing: 0; }
    @media (min-width: 768px) {
      .gform_wrapper .donation-form .gf_step {
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0; } }
    @media (min-width: 993px) {
      .gform_wrapper .donation-form .gf_step {
        margin-right: 64px;
        border-color: transparent; } }
    .gform_wrapper .donation-form .gf_step:nth-child(1) {
      padding: 0 7px 14px 0; }
      @media (min-width: 768px) {
        .gform_wrapper .donation-form .gf_step:nth-child(1) {
          padding: 0 45px 14px 0; } }
      @media (min-width: 993px) {
        .gform_wrapper .donation-form .gf_step:nth-child(1) {
          padding: 0 0 4px 0; } }
    .gform_wrapper .donation-form .gf_step:nth-child(2) {
      padding: 0 7px 14px; }
      @media (min-width: 768px) {
        .gform_wrapper .donation-form .gf_step:nth-child(2) {
          padding: 0 45px 14px 45px; } }
      @media (min-width: 993px) {
        .gform_wrapper .donation-form .gf_step:nth-child(2) {
          padding: 0 0 4px 0; } }
    .gform_wrapper .donation-form .gf_step:nth-child(3) {
      padding: 0 0 14px 7px; }
      @media (min-width: 768px) {
        .gform_wrapper .donation-form .gf_step:nth-child(3) {
          padding: 0 0 14px 45px; } }
      @media (min-width: 993px) {
        .gform_wrapper .donation-form .gf_step:nth-child(3) {
          margin-right: 0;
          padding: 0 0 4px 0; } }
    .gform_wrapper .donation-form .gf_step.gf_step_active {
      border-bottom: 2px solid #009932; }
      .gform_wrapper .donation-form .gf_step.gf_step_active .gf_step_number {
        color: #000; }
      .gform_wrapper .donation-form .gf_step.gf_step_active .gf_step_label {
        color: #009932; }
    .gform_wrapper .donation-form .gf_step.gf_step_completed {
      border-bottom: 2px solid #009932; }
      @media (min-width: 993px) {
        .gform_wrapper .donation-form .gf_step.gf_step_completed {
          border-color: transparent; } }
      .gform_wrapper .donation-form .gf_step.gf_step_completed .gf_step_number,
      .gform_wrapper .donation-form .gf_step.gf_step_completed .gf_step_label {
        color: #000; }
  .gform_wrapper .donation-form .gf_step_number {
    display: block;
    color: #88969a;
    font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.75rem;
    line-height: 1.83333;
    margin-bottom: 4px; }
    @media (min-width: 993px) {
      .gform_wrapper .donation-form .gf_step_number {
        font-size: 0.75rem;
        line-height: 1.5; } }
    .gform_wrapper .donation-form .gf_step_number:before {
      content: 'Step '; }
  .gform_wrapper .donation-form .gf_step_label {
    margin-left: -2px;
    color: #88969a;
    font-size: 0.875rem;
    line-height: 1.57143; }
    @media (min-width: 768px) {
      .gform_wrapper .donation-form .gf_step_label {
        font-size: 1rem;
        line-height: 1.375; } }
    @media (min-width: 993px) {
      .gform_wrapper .donation-form .gf_step_label {
        font-size: 1.25rem;
        line-height: 1.6; } }
  .gform_wrapper .donation-form .gform_body {
    position: relative;
    overflow: hidden;
    background-color: #fff;
    border-radius: 2px;
    padding: 30px 20px 20px; }
    @media (min-width: 768px) {
      .gform_wrapper .donation-form .gform_body {
        padding: 40px 80px 20px; } }
    @media (min-width: 993px) {
      .gform_wrapper .donation-form .gform_body {
        padding: 40px 100px 20px; } }
  .gform_wrapper .donation-form .ginput_container_radio + .validation_message {
    margin-top: -25px; }
    @media (min-width: 768px) {
      .gform_wrapper .donation-form .ginput_container_radio + .validation_message {
        margin-top: -35px; } }
  .gform_wrapper .donation-form .gfield_radio {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      .gform_wrapper .donation-form .gfield_radio {
        margin-bottom: 40px; } }
    .gform_wrapper .donation-form .gfield_radio > li {
      text-align: center;
      overflow: visible;
      margin: 0;
      display: -webkit-inline-box;
      display: -ms-inline-flexbox;
      display: inline-flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      position: relative; }
      .gform_wrapper .donation-form .gfield_radio > li:hover label {
        color: #009932; }
        .gform_wrapper .donation-form .gfield_radio > li:hover label:after {
          border-color: #009932; }
    .gform_wrapper .donation-form .gfield_radio label {
      font-size: 0.75rem;
      line-height: 1.66667;
      position: relative;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      height: 100%;
      color: #000;
      z-index: 1;
      padding: 7px;
      font-weight: 600;
      letter-spacing: 0.4px;
      text-align: center;
      -webkit-transition: color 0.3s ease;
      -o-transition: color 0.3s ease;
      transition: color 0.3s ease;
      max-width: 100%;
      width: 100%; }
      @media screen and (min-width: 350px) {
        .gform_wrapper .donation-form .gfield_radio label {
          font-size: 0.875rem;
          line-height: 1.71429; } }
      @media (min-width: 768px) {
        .gform_wrapper .donation-form .gfield_radio label {
          font-size: 0.875rem;
          line-height: 1.85714;
          padding: 9px; } }
      @media (min-width: 993px) {
        .gform_wrapper .donation-form .gfield_radio label {
          font-size: 1.125rem;
          line-height: 1.66667;
          padding: 9px; } }
      .gform_wrapper .donation-form .gfield_radio label:before {
        display: none; }
      .gform_wrapper .donation-form .gfield_radio label:after {
        content: '';
        position: absolute;
        z-index: -1;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        display: block;
        border-radius: 4px;
        -webkit-transition: all 0.3s ease;
        -o-transition: all 0.3s ease;
        transition: all 0.3s ease;
        border-radius: 4px;
        border: 1px solid #b8c0c3; }
    .gform_wrapper .donation-form .gfield_radio input[type='radio']:checked + label {
      color: #009932; }
      .gform_wrapper .donation-form .gfield_radio input[type='radio']:checked + label:after {
        background-color: #ebf7ef;
        border-color: transparent;
        height: 100%; }
  .gform_wrapper .donation-form .donate-field-amount {
    padding-bottom: 10px;
    margin: 0; }
    .gform_wrapper .donation-form .donate-field-amount .gfield_radio {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      .gform_wrapper .donation-form .donate-field-amount .gfield_radio > li {
        -ms-flex-preferred-size: calc(50% - 10px);
            flex-basis: calc(50% - 10px);
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-bottom: 20px; }
        @media (min-width: 768px) {
          .gform_wrapper .donation-form .donate-field-amount .gfield_radio > li {
            -ms-flex-preferred-size: calc((100% - 66px) / 4);
                flex-basis: calc((100% - 66px) / 4); } }
        .gform_wrapper .donation-form .donate-field-amount .gfield_radio > li.custom-input-label {
          -ms-flex-preferred-size: 100%;
              flex-basis: 100%;
          text-align: center;
          margin-bottom: 0; }
          .gform_wrapper .donation-form .donate-field-amount .gfield_radio > li.custom-input-label input {
            color: #000;
            font-size: 0.875rem;
            line-height: 1.85714;
            font-weight: bold;
            letter-spacing: 0px;
            text-align: center; }
            @media (min-width: 993px) {
              .gform_wrapper .donation-form .donate-field-amount .gfield_radio > li.custom-input-label input {
                font-size: 1.25rem;
                line-height: 1.5;
                padding: 20px !important;
                height: 70px; } }
      .gform_wrapper .donation-form .donate-field-amount .gfield_radio label {
        font-size: 0.875rem;
        line-height: 1.85714;
        padding: 11px;
        font-weight: 700;
        letter-spacing: 0; }
        @media (min-width: 993px) {
          .gform_wrapper .donation-form .donate-field-amount .gfield_radio label {
            font-size: 1.25rem;
            line-height: 1.5;
            padding: 20px; } }
  .gform_wrapper .donation-form .donate-field-recurring {
    padding-bottom: 10px;
    margin: 0;
    position: relative; }
    .gform_wrapper .donation-form .donate-field-recurring:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: -20px;
      width: calc(100% + 40px);
      height: 1px;
      background-color: #ebf0f2;
      z-index: 1; }
      @media (min-width: 768px) {
        .gform_wrapper .donation-form .donate-field-recurring:after {
          left: 0;
          width: 100%; } }
  .gform_wrapper .donation-form .donate-field-appointment {
    padding: 30px 0 0;
    margin: 0; }
    @media (min-width: 768px) {
      .gform_wrapper .donation-form .donate-field-appointment {
        padding: 40px 0 0; } }
  .gform_wrapper .donation-form .donate-field-card {
    margin: 0;
    padding: 0 0 40px;
    position: relative; }
    .gform_wrapper .donation-form .donate-field-card:after {
      content: '';
      position: absolute;
      bottom: 0;
      left: -20px;
      width: calc(100% + 40px);
      height: 1px;
      background-color: #ebf0f2;
      z-index: 1; }
      @media (min-width: 993px) {
        .gform_wrapper .donation-form .donate-field-card:after {
          left: 0;
          width: 100%; } }
  .gform_wrapper .donation-form .donate-field-billing {
    padding-top: 30px; }
  .gform_wrapper .donation-form .donate-field-two-items .gfield_radio,
  .gform_wrapper .donation-form .donate-field-three-items .gfield_radio {
    margin-left: -5px;
    margin-right: -5px; }
    @media (min-width: 768px) {
      .gform_wrapper .donation-form .donate-field-two-items .gfield_radio,
      .gform_wrapper .donation-form .donate-field-three-items .gfield_radio {
        width: 100%;
        margin-left: -10px;
        margin-right: -10px; } }
    .gform_wrapper .donation-form .donate-field-two-items .gfield_radio > li,
    .gform_wrapper .donation-form .donate-field-three-items .gfield_radio > li {
      -ms-flex-negative: 1;
          flex-shrink: 1;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      padding: 0 5px; }
      @media (min-width: 768px) {
        .gform_wrapper .donation-form .donate-field-two-items .gfield_radio > li,
        .gform_wrapper .donation-form .donate-field-three-items .gfield_radio > li {
          padding: 0 10px; } }
  .gform_wrapper .donation-form .donate-field-two-items .gfield_radio > li {
    width: 50%; }
  .gform_wrapper .donation-form .donate-field-three-items .gfield_radio > li {
    width: 33.333%; }
  .gform_wrapper .donation-form .gfield_checkbox {
    margin: 30px 0; }
  .gform_wrapper .donation-form .gfield_creditcard_warning_message {
    margin-bottom: 20px; }
  .gform_wrapper .donation-form .gform_page_footer {
    margin: 30px -10px 0 0;
    padding: 0;
    text-align: center; }
    .gform_wrapper .donation-form .gform_page_footer img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: block;
      z-index: 1;
      -o-object-fit: none;
         object-fit: none;
      background-color: rgba(255, 255, 255, 0.7); }
  .gform_wrapper .donation-form input[type='button'],
  .gform_wrapper .donation-form input[type='submit'],
  .gform_wrapper .donation-form .gform_page_footer button {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    position: relative;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    -o-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    font-size: 0.875rem;
    line-height: 1.71429;
    border-radius: 4px;
    font-style: normal;
    background-color: #009932;
    color: white;
    letter-spacing: 1px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    padding: 13px 30px;
    white-space: nowrap;
    font-weight: 700;
    cursor: pointer;
    border: none;
    margin: 0 10px 20px 0; }
    .gform_wrapper .donation-form input[type='button']:hover,
    .gform_wrapper .donation-form input[type='submit']:hover,
    .gform_wrapper .donation-form .gform_page_footer button:hover {
      text-decoration: none;
      background-color: #6cc266; }
  .gform_wrapper .donation-form .validation_error {
    display: none; }
  .gform_wrapper .donation-form .address_state {
    position: relative; }
    .gform_wrapper .donation-form .address_state label {
      position: absolute;
      left: 16px;
      top: 0;
      z-index: 1;
      color: #88969a;
      font-size: 0.75rem;
      line-height: 1.33333;
      font-weight: 600;
      pointer-events: none;
      padding: 0 4px;
      background-color: white;
      letter-spacing: 0.4px; }
  .gform_wrapper .donation-form .donation-amount-list {
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .gform_wrapper .donation-form .donation-amount-list {
        margin-bottom: 16px; } }
    .gform_wrapper .donation-form .donation-amount-list .gfield_radio {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 -10px; }
      @media (min-width: 993px) {
        .gform_wrapper .donation-form .donation-amount-list .gfield_radio {
          margin: 0 -11px; } }
      .gform_wrapper .donation-form .donation-amount-list .gfield_radio li {
        width: 50%;
        padding: 0 10px;
        margin-bottom: 20px; }
        @media (min-width: 768px) {
          .gform_wrapper .donation-form .donation-amount-list .gfield_radio li {
            width: 25%; } }
        @media (min-width: 993px) {
          .gform_wrapper .donation-form .donation-amount-list .gfield_radio li {
            padding: 0 11px;
            margin-bottom: 22px; } }
        .gform_wrapper .donation-form .donation-amount-list .gfield_radio li:last-child {
          width: 100%; }
          @media (min-width: 993px) {
            .gform_wrapper .donation-form .donation-amount-list .gfield_radio li:last-child label {
              height: 70px; } }
      .gform_wrapper .donation-form .donation-amount-list .gfield_radio label {
        position: relative;
        padding: 12px; }
        @media (min-width: 993px) {
          .gform_wrapper .donation-form .donation-amount-list .gfield_radio label {
            padding: 20px; } }
    .gform_wrapper .donation-form .donation-amount-list .validation_message {
      margin-top: -11px; }
      @media (min-width: 993px) {
        .gform_wrapper .donation-form .donation-amount-list .validation_message {
          margin-top: -16px; } }
  .gform_wrapper .donation-form .donation-amount-stripe {
    margin: -90px 0 30px;
    background-color: #fff;
    z-index: 1; }
    @media (min-width: 993px) {
      .gform_wrapper .donation-form .donation-amount-stripe {
        margin: -109px 0 29px; } }
    .gform_wrapper .donation-form .donation-amount-stripe input[type='text'] {
      padding: 12px;
      text-align: center;
      color: #009932;
      background-color: #ebf7ef;
      border-color: transparent;
      -webkit-transition: all 0.3s ease;
      -o-transition: all 0.3s ease;
      transition: all 0.3s ease;
      font-size: 0.875rem;
      line-height: 1.64286; }
      .gform_wrapper .donation-form .donation-amount-stripe input[type='text']::-webkit-input-placeholder {
        font-size: 0.875rem;
        line-height: 1.64286;
        color: #009932;
        letter-spacing: 0.4px; }
      .gform_wrapper .donation-form .donation-amount-stripe input[type='text']::-moz-placeholder {
        opacity: 1;
        font-size: 0.875rem;
        line-height: 1.64286;
        color: #009932;
        letter-spacing: 0.4px; }
      .gform_wrapper .donation-form .donation-amount-stripe input[type='text']:-moz-placeholder {
        font-size: 0.875rem;
        line-height: 1.64286;
        color: #009932;
        letter-spacing: 0.4px; }
      .gform_wrapper .donation-form .donation-amount-stripe input[type='text']:-ms-input-placeholder {
        font-size: 0.875rem;
        line-height: 1.64286;
        color: #009932;
        letter-spacing: 0.4px; }
      .gform_wrapper .donation-form .donation-amount-stripe input[type='text'].placeholder {
        font-size: 0.875rem;
        line-height: 1.64286;
        color: #009932;
        letter-spacing: 0.4px; }
      @media (min-width: 993px) {
        .gform_wrapper .donation-form .donation-amount-stripe input[type='text'] {
          font-size: 1.125rem;
          line-height: 1.66667;
          height: 70px;
          padding: 20px; }
          .gform_wrapper .donation-form .donation-amount-stripe input[type='text']::-webkit-input-placeholder {
            font-size: 1.125rem;
            line-height: 1.66667; }
          .gform_wrapper .donation-form .donation-amount-stripe input[type='text']::-moz-placeholder {
            opacity: 1;
            font-size: 1.125rem;
            line-height: 1.66667; }
          .gform_wrapper .donation-form .donation-amount-stripe input[type='text']:-moz-placeholder {
            font-size: 1.125rem;
            line-height: 1.66667; }
          .gform_wrapper .donation-form .donation-amount-stripe input[type='text']:-ms-input-placeholder {
            font-size: 1.125rem;
            line-height: 1.66667; }
          .gform_wrapper .donation-form .donation-amount-stripe input[type='text'].placeholder {
            font-size: 1.125rem;
            line-height: 1.66667; } }
      .gform_wrapper .donation-form .donation-amount-stripe input[type='text']:focus {
        color: #000;
        background-color: transparent;
        border-color: #b8c0c3; }
        .gform_wrapper .donation-form .donation-amount-stripe input[type='text']:focus::-webkit-input-placeholder {
          color: transparent; }
        .gform_wrapper .donation-form .donation-amount-stripe input[type='text']:focus::-moz-placeholder {
          opacity: 1;
          color: transparent; }
        .gform_wrapper .donation-form .donation-amount-stripe input[type='text']:focus:-moz-placeholder {
          color: transparent; }
        .gform_wrapper .donation-form .donation-amount-stripe input[type='text']:focus:-ms-input-placeholder {
          color: transparent; }
        .gform_wrapper .donation-form .donation-amount-stripe input[type='text']:focus.placeholder {
          color: transparent; }
  .gform_wrapper .donation-form .confirm-step-title-field .gfield_label {
    display: inline; }
  .gform_wrapper .donation-form .confirm-step-title-field .ginput_container_total {
    font-size: 1.125rem;
    line-height: 1.66667;
    display: inline;
    font-weight: 500;
    letter-spacing: 0.4px;
    color: #000; }

.IE .gform_wrapper .donation-form .gform_page_footer img {
  top: calc(50% - 50px);
  left: calc(50% - 50px);
  width: 100px;
  height: 100px;
  background-color: transparent; }

.gform_confirmation_wrapper.donation-form {
  position: relative; }
  .gform_confirmation_wrapper.donation-form:after {
    content: '';
    width: 100vw;
    height: 100%;
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    background-color: #f5f6f3;
    z-index: -1; }
  .gform_confirmation_wrapper.donation-form .gform_confirmation_message {
    padding: 40px 25px 60px; }
    @media (min-width: 768px) {
      .gform_confirmation_wrapper.donation-form .gform_confirmation_message {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        padding: 50px 0;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; } }
    @media (min-width: 1200px) {
      .gform_confirmation_wrapper.donation-form .gform_confirmation_message {
        padding: 60px 80px;
        -ms-flex-wrap: nowrap;
            flex-wrap: nowrap; } }
  .gform_confirmation_wrapper.donation-form .confirmation-message__col-first {
    margin-bottom: 24px;
    max-width: 270px; }
    @media (min-width: 768px) {
      .gform_confirmation_wrapper.donation-form .confirmation-message__col-first {
        -webkit-box-flex: 270px;
            -ms-flex: 270px 0 0px;
                flex: 270px 0 0;
        margin: 0 60px 0 0;
        max-width: none; } }
    .gform_confirmation_wrapper.donation-form .confirmation-message__col-first img {
      display: block;
      width: 100%;
      height: auto; }
  @media (min-width: 768px) {
    .gform_confirmation_wrapper.donation-form .confirmation-message__col-second {
      -ms-flex-preferred-size: calc(100% - 330px);
          flex-basis: calc(100% - 330px);
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      padding: 20px 0 0; } }
  .gform_confirmation_wrapper.donation-form .confirmation-message__col-second h3 {
    margin-bottom: 10px; }
    @media (min-width: 1200px) {
      .gform_confirmation_wrapper.donation-form .confirmation-message__col-second h3 {
        margin-bottom: 20px; } }
  .gform_confirmation_wrapper.donation-form .confirmation-message__col-second img {
    max-width: 220px;
    height: auto; }
    @media (min-width: 993px) {
      .gform_confirmation_wrapper.donation-form .confirmation-message__col-second img {
        max-width: 280px; } }
  .gform_confirmation_wrapper.donation-form .confirmation-message__description {
    margin-bottom: 40px; }
    .gform_confirmation_wrapper.donation-form .confirmation-message__description p:last-child {
      margin-bottom: 0; }
  .gform_confirmation_wrapper.donation-form .confirmation-message__name {
    font-size: 1.125rem;
    line-height: 1.66667;
    margin-bottom: 0; }
    @media (min-width: 1200px) {
      .gform_confirmation_wrapper.donation-form .confirmation-message__name {
        font-size: 1rem;
        line-height: 1.625;
        margin-bottom: 6px; } }
  @media (min-width: 1200px) {
    .gform_confirmation_wrapper.donation-form .font-custom-small {
      margin-bottom: 30px; } }

.dpf {
  padding: 60px 0;
  position: relative; }
  @media (min-width: 768px) {
    .dpf {
      padding: 80px 0; } }
  @media (min-width: 1200px) {
    .dpf {
      padding: 100px 0; } }
  @media (min-width: 1501px) {
    .dpf {
      padding: 120px 0; } }
  .dpf:after {
    content: '';
    position: absolute;
    width: 100vw;
    height: 100%;
    top: 0;
    left: calc(50% - 50vw);
    z-index: -1;
    background-color: #f5f6f3; }
  .dpf__inner {
    position: relative; }
    @media (min-width: 768px) {
      .dpf__inner {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .dpf__info {
    padding: 0 0 40px; }
    @media (min-width: 768px) {
      .dpf__info {
        -ms-flex-preferred-size: calc(50% - 45px);
            flex-basis: calc(50% - 45px);
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        padding: 0; } }
    @media (min-width: 1200px) {
      .dpf__info {
        -ms-flex-preferred-size: calc(50% - 155px);
            flex-basis: calc(50% - 155px); } }
    .dpf__info h2 {
      margin-bottom: 16px; }
      @media (min-width: 1200px) {
        .dpf__info h2 {
          margin-bottom: 20px; } }
    .dpf__info p {
      font-size: 1rem;
      line-height: 1.75;
      color: #000;
      letter-spacing: 0.4px; }
      .dpf__info p:last-child {
        margin-bottom: 0; }
  @media (min-width: 768px) {
    .dpf__form-wrapper {
      -ms-flex-preferred-size: calc(50% - 15px);
          flex-basis: calc(50% - 15px);
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0; } }
  @media (min-width: 1200px) {
    .dpf__form-wrapper {
      -ms-flex-preferred-size: calc(50% + 85px);
          flex-basis: calc(50% + 85px); } }
  .dpf__form-desc {
    color: #000;
    font-size: 0.75rem;
    line-height: 1.83333;
    font-weight: 500;
    letter-spacing: 0;
    text-align: center;
    margin: 0; }
  .dpf .donation-form {
    background-color: #fff;
    padding: 30px 20px 40px;
    border-radius: 2px;
    margin-bottom: 20px; }
    @media (min-width: 768px) {
      .dpf .donation-form {
        padding: 30px; } }
    @media (min-width: 1200px) {
      .dpf .donation-form {
        padding: 40px 50px; } }
    .dpf .donation-form:before {
      display: none; }
    .dpf .donation-form .gform_body {
      padding: 0; }
    .dpf .donation-form .donate-field-amount {
      padding: 0; }
      @media (min-width: 768px) {
        .dpf .donation-form .donate-field-amount .gfield_radio {
          margin-bottom: 30px; } }
      @media (min-width: 1200px) {
        .dpf .donation-form .donate-field-amount .gfield_radio {
          margin-bottom: 40px; } }
      @media (min-width: 768px) {
        .dpf .donation-form .donate-field-amount .gfield_radio > li {
          -ms-flex-preferred-size: calc(50% - 10px);
              flex-basis: calc(50% - 10px); } }
      @media (min-width: 1200px) {
        .dpf .donation-form .donate-field-amount .gfield_radio > li {
          -ms-flex-preferred-size: calc((100% - 66px) / 4);
              flex-basis: calc((100% - 66px) / 4);
          margin-bottom: 22px; } }
      .dpf .donation-form .donate-field-amount .gfield_radio label {
        padding: 12px 20px; }
        @media (min-width: 993px) {
          .dpf .donation-form .donate-field-amount .gfield_radio label {
            padding: 20px; } }
    .dpf .donation-form input[type='button'],
    .dpf .donation-form input[type='submit'],
    .dpf .donation-form .gform_page_footer button {
      margin: 0;
      padding: 13px 32px; }
      @media (min-width: 1200px) {
        .dpf .donation-form input[type='button'],
        .dpf .donation-form input[type='submit'],
        .dpf .donation-form .gform_page_footer button {
          padding: 15px 32px; } }
  .dpf .gform_footer {
    margin: 0;
    display: block;
    text-align: center;
    padding: 0; }

.form-how-did-you-hear {
  padding: 60px 0;
  max-width: 688px;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .form-how-did-you-hear {
      padding: 60px 0 80px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      max-width: 690px; } }
  @media (min-width: 1200px) {
    .form-how-did-you-hear {
      padding: 80px 0;
      max-width: 744px; } }
  @media (min-width: 1501px) {
    .form-how-did-you-hear {
      padding: 100px 0; } }
  .form-how-did-you-hear.is-hide {
    display: none; }
  .form-how-did-you-hear_wrapper {
    position: relative;
    margin: 0 calc(50% - 50vw);
    z-index: 1;
    padding: 0 20px;
    overflow: hidden; }
    .form-how-did-you-hear_wrapper:not(.is-hide_wrapper):before {
      content: '';
      position: absolute;
      bottom: -22px;
      left: -87px;
      width: 300px;
      height: 134px;
      background-image: url(../images/pattern_small_gray.svg);
      background-position: 50% 50%;
      background-repeat: no-repeat;
      background-size: 100%; }
      @media (min-width: 768px) {
        .form-how-did-you-hear_wrapper:not(.is-hide_wrapper):before {
          bottom: -64px;
          left: -78px; } }
      @media (min-width: 1200px) {
        .form-how-did-you-hear_wrapper:not(.is-hide_wrapper):before {
          bottom: -1px;
          left: 0; } }
  @media (min-width: 768px) {
    .form-how-did-you-hear .gform_body {
      -ms-flex-preferred-size: calc(100% - 100px);
          flex-basis: calc(100% - 100px);
      -ms-flex-negative: 1;
          flex-shrink: 1;
      -webkit-box-flex: 1;
          -ms-flex-positive: 1;
              flex-grow: 1;
      padding: 0 20px 0 0; } }
  @media (min-width: 1200px) {
    .form-how-did-you-hear .gform_body {
      padding: 0 30px 0 0; } }
  .form-how-did-you-hear .gfield_label {
    font-size: 1rem;
    line-height: 1.75;
    font-weight: bold;
    letter-spacing: 0; }
    @media (min-width: 1200px) {
      .form-how-did-you-hear .gfield_label {
        font-size: 1.125rem;
        line-height: 1.55556;
        margin: 0;
        padding-right: 30px; } }
  .form-how-did-you-hear .ginput_container {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
  .form-how-did-you-hear .placeholder-label {
    display: none; }
  .form-how-did-you-hear .gform_fields > li {
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      .form-how-did-you-hear .gform_fields > li {
        margin-bottom: 0; } }
    @media (min-width: 1200px) {
      .form-how-did-you-hear .gform_fields > li {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
  .form-how-did-you-hear .gform_footer {
    margin: 0;
    padding: 0; }
    @media (min-width: 768px) {
      .form-how-did-you-hear .gform_footer {
        -ms-flex-preferred-size: 100px;
            flex-basis: 100px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0; } }
  .form-how-did-you-hear input[type='submit'] {
    position: relative;
    -webkit-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    -o-transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
    border-radius: 4px;
    font-style: normal;
    color: white;
    letter-spacing: 1px;
    display: inline-block;
    vertical-align: top;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    white-space: nowrap;
    font-weight: 700;
    cursor: pointer;
    font-size: 0.75rem;
    line-height: 2;
    padding: 13px 24px;
    background-color: #164f45;
    border: none; }
    @media (min-width: 1200px) {
      .form-how-did-you-hear input[type='submit'] {
        font-size: 0.875rem;
        line-height: 1.71429;
        padding: 13px 24px; } }
    .form-how-did-you-hear input[type='submit']:hover {
      text-decoration: none;
      background-color: #6cc266; }

.search-form {
  text-align: center;
  margin-bottom: 40px;
  position: relative; }
  @media (min-width: 993px) {
    .search-form {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      margin-bottom: 60px; } }
  .search-form input[type='text'] {
    font-size: 1rem;
    line-height: 1.625;
    margin-bottom: 30px;
    border-width: 0 0 1px;
    border-radius: 0;
    height: 35px;
    line-height: 35px;
    padding: 0;
    letter-spacing: 0.4px; }
    @media (min-width: 993px) {
      .search-form input[type='text'] {
        font-size: 0.875rem;
        line-height: 1.71429;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        background-image: url(../images/search-icon.svg);
        background-size: 19px;
        background-repeat: no-repeat;
        background-position: 20px 50%;
        padding: 0 30px 0 60px;
        margin-bottom: 0;
        border-radius: 4px;
        border-width: 1px;
        height: 50px;
        line-height: 50px; } }
    .search-form input[type='text']::-webkit-input-placeholder {
      color: #88969a !important;
      font-size: 16px;
      line-height: normal; }
      @media (min-width: 993px) {
        .search-form input[type='text']::-webkit-input-placeholder {
          font-size: 14px; } }
    .search-form input[type='text']::-moz-placeholder {
      opacity: 1;
      color: #88969a !important;
      font-size: 16px;
      line-height: normal; }
      @media (min-width: 993px) {
        .search-form input[type='text']::-moz-placeholder {
          font-size: 14px; } }
    .search-form input[type='text']:-moz-placeholder {
      color: #88969a !important;
      font-size: 16px;
      line-height: normal; }
      @media (min-width: 993px) {
        .search-form input[type='text']:-moz-placeholder {
          font-size: 14px; } }
    .search-form input[type='text']:-ms-input-placeholder {
      color: #88969a !important;
      font-size: 16px;
      line-height: normal; }
      @media (min-width: 993px) {
        .search-form input[type='text']:-ms-input-placeholder {
          font-size: 14px; } }
    .search-form input[type='text'].placeholder {
      color: #88969a !important;
      font-size: 16px;
      line-height: normal; }
      @media (min-width: 993px) {
        .search-form input[type='text'].placeholder {
          font-size: 14px; } }
  .search-form input[type='submit'] {
    background-color: #164f45;
    min-width: 102px;
    white-space: normal; }
    @media (min-width: 993px) {
      .search-form input[type='submit'] {
        min-width: 111px;
        margin-left: 20px; } }
    .search-form input[type='submit']:hover {
      background-color: #6cc266; }
  .search-form .reset-wrapper {
    background-color: #88969a;
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
    display: none;
    font-size: 10px;
    height: 18px;
    position: absolute;
    right: 20px;
    text-align: center;
    top: 50%;
    -webkit-transform: translateY(-50%);
        -ms-transform: translateY(-50%);
            transform: translateY(-50%);
    width: 18px; }
    @media (min-width: 993px) {
      .search-form .reset-wrapper {
        display: none !important; } }
    .search-form .reset-wrapper i {
      font-size: 0.4375rem;
      line-height: 1; }

.container {
  width: 100%;
  margin: 0 auto;
  max-width: 540px;
  padding: 0 20px; }
  @media (min-width: 768px) {
    .container {
      max-width: 730px; } }
  @media (min-width: 993px) {
    .container {
      max-width: 1000px; } }
  @media (min-width: 1200px) {
    .container {
      max-width: 1210px; } }

html {
  height: 100%; }

body {
  height: 100%; }

#wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: auto;
  min-height: 100%;
  overflow: hidden;
  position: relative; }
  .IE #wrapper {
    height: 100%;
    overflow-y: auto; }

.footer {
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto; }

.site-main {
  background-color: #fff;
  -webkit-box-flex: 1;
      -ms-flex: 1 0 auto;
          flex: 1 0 auto;
  padding-top: 78px;
  position: relative;
  z-index: 2;
  overflow: hidden; }
  @media (min-width: 993px) {
    .site-main {
      padding-top: 88px; } }
  .home .site-main {
    padding-top: 0; }

section {
  position: relative;
  z-index: 1; }

[class*='has-decoration-line'] {
  position: relative; }
  @media (min-width: 1200px) {
    [class*='has-decoration-line']:before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 1px;
      height: 60px;
      background-color: #d4d9db;
      z-index: 1; } }
  @media (min-width: 1501px) {
    [class*='has-decoration-line']:before {
      height: 80px; } }
  [class*='has-decoration-line'].bg-gray-1::before {
    background-color: #43595f; }

@media (min-width: 1200px) {
  .has-decoration-line_center:before {
    left: 50%; } }

.has-top-border {
  position: relative; }
  .has-top-border:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    border-top: 1px solid #d4d9db;
    z-index: -1; }

.remove-pt {
  padding-top: 0 !important; }

.remove-pb {
  padding-bottom: 0 !important; }

.zoom-and-bg-animation {
  position: relative;
  overflow: hidden;
  -webkit-transition: background-color 0.3s ease;
  -o-transition: background-color 0.3s ease;
  transition: background-color 0.3s ease; }
  .zoom-and-bg-animation:before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    -webkit-transition: -webkit-box-shadow 0.3s ease;
    transition: -webkit-box-shadow 0.3s ease;
    -o-transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease;
    transition: box-shadow 0.3s ease, -webkit-box-shadow 0.3s ease;
    z-index: 1; }
  .zoom-and-bg-animation:hover {
    background-color: #2aa757; }
    .zoom-and-bg-animation:hover:before {
      -webkit-box-shadow: 0 0 0 6px #2aa757 inset;
              box-shadow: 0 0 0 6px #2aa757 inset; }
    .zoom-and-bg-animation:hover img {
      -webkit-transform: translate3d(-50%, -50%, 0) scale(0.98) !important;
              transform: translate3d(-50%, -50%, 0) scale(0.98) !important; }
  .zoom-and-bg-animation img {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 50% !important;
    left: 50% !important;
    -webkit-transform: translate(-50%, -50%) !important;
        -ms-transform: translate(-50%, -50%) !important;
            transform: translate(-50%, -50%) !important;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: -webkit-transform 0.3s ease;
    -o-transition: transform 0.3s ease;
    transition: transform 0.3s ease;
    transition: transform 0.3s ease, -webkit-transform 0.3s ease; }

.bottom-decoration-pattern {
  position: absolute;
  bottom: 0;
  left: calc(50% - 50vw - 78px);
  width: 259px;
  height: 115px;
  background-image: url(../images/pattern_big_gray.svg);
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: 100%; }
  @media (min-width: 768px) {
    .bottom-decoration-pattern {
      left: calc(50% - 50vw); } }
  @media (min-width: 1200px) {
    .bottom-decoration-pattern {
      width: 500px;
      height: 222px; } }
  @media (min-width: 1501px) {
    .bottom-decoration-pattern {
      width: 600px;
      height: 267px; } }

img.placeholder-image {
  -o-object-position: bottom left !important;
     object-position: bottom left !important; }

.select2-container {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      -o-text-overflow: ellipsis;
         text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    -moz-user-select: none;
     -ms-user-select: none;
         user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      -o-text-overflow: ellipsis;
         text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  -moz-user-select: none;
   -ms-user-select: none;
       user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    -webkit-box-sizing: border-box;
            box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, white), to(#eeeeee));
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(#cccccc));
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -webkit-gradient(linear, left top, left bottom, from(white), color-stop(50%, #eeeeee));
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -webkit-gradient(linear, left top, left bottom, color-stop(50%, #eeeeee), to(white));
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  -webkit-box-shadow: none;
          box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }

@font-face {
  font-family: 'swiper-icons';
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA") format("woff");
  font-weight: 400;
  font-style: normal; }

:root {
  --swiper-theme-color: #007aff; }

.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1; }

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

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

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

.swiper-container-multirow > .swiper-wrapper {
  -ms-flex-wrap: wrap;
      flex-wrap: wrap; }

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

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

.swiper-slide {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform; }

.swiper-slide-invisible-blank {
  visibility: hidden; }

/* Auto Height */
.swiper-container-autoheight, .swiper-container-autoheight .swiper-slide {
  height: auto; }

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform; }

/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
          perspective: 1200px; }
  .swiper-container-3d .swiper-wrapper, .swiper-container-3d .swiper-slide, .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom, .swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
            transform-style: preserve-3d; }
  .swiper-container-3d .swiper-slide-shadow-left, .swiper-container-3d .swiper-slide-shadow-right, .swiper-container-3d .swiper-slide-shadow-top, .swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10; }
  .swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
  .swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
  .swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }
  .swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0)); }

/* CSS Mode */
.swiper-container-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  /* For Firefox */
  -ms-overflow-style: none;
  /* For Internet Explorer and Edge */ }
  .swiper-container-css-mode > .swiper-wrapper::-webkit-scrollbar {
    display: none; }

.swiper-container-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start; }

.swiper-container-horizontal.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: x mandatory;
      scroll-snap-type: x mandatory; }

.swiper-container-vertical.swiper-container-css-mode > .swiper-wrapper {
  -ms-scroll-snap-type: y mandatory;
      scroll-snap-type: y mandatory; }

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
       -o-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity; }
  .swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none; }

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

/* =WordPress Core
-------------------------------------------------------------- */
.single-post.entry-content .alignnone,
.single-post .entry-content .alignnone,
.single-news.entry-content .alignnone,
.single-news .entry-content .alignnone {
  margin: 0 0 30px; }
  @media (min-width: 768px) {
    .single-post.entry-content .alignnone,
    .single-post .entry-content .alignnone,
    .single-news.entry-content .alignnone,
    .single-news .entry-content .alignnone {
      margin: 0 0 20px; } }
  @media (min-width: 1200px) {
    .single-post.entry-content .alignnone,
    .single-post .entry-content .alignnone,
    .single-news.entry-content .alignnone,
    .single-news .entry-content .alignnone {
      margin: 0 0 40px; } }

.single-post.entry-content .aligncenter,
.single-post.entry-content div.aligncenter,
.single-post .entry-content .aligncenter,
.single-post .entry-content div.aligncenter,
.single-news.entry-content .aligncenter,
.single-news.entry-content div.aligncenter,
.single-news .entry-content .aligncenter,
.single-news .entry-content div.aligncenter {
  display: block;
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .single-post.entry-content .aligncenter,
    .single-post.entry-content div.aligncenter,
    .single-post .entry-content .aligncenter,
    .single-post .entry-content div.aligncenter,
    .single-news.entry-content .aligncenter,
    .single-news.entry-content div.aligncenter,
    .single-news .entry-content .aligncenter,
    .single-news .entry-content div.aligncenter {
      margin-bottom: 20px; } }
  @media (min-width: 1200px) {
    .single-post.entry-content .aligncenter,
    .single-post.entry-content div.aligncenter,
    .single-post .entry-content .aligncenter,
    .single-post .entry-content div.aligncenter,
    .single-news.entry-content .aligncenter,
    .single-news.entry-content div.aligncenter,
    .single-news .entry-content .aligncenter,
    .single-news .entry-content div.aligncenter {
      margin: 0 auto 40px; } }

.single-post.entry-content img.alignright,
.single-post.entry-content .alignright,
.single-post .entry-content img.alignright,
.single-post .entry-content .alignright,
.single-news.entry-content img.alignright,
.single-news.entry-content .alignright,
.single-news .entry-content img.alignright,
.single-news .entry-content .alignright {
  margin: 0 0 30px; }
  @media (min-width: 768px) {
    .single-post.entry-content img.alignright,
    .single-post.entry-content .alignright,
    .single-post .entry-content img.alignright,
    .single-post .entry-content .alignright,
    .single-news.entry-content img.alignright,
    .single-news.entry-content .alignright,
    .single-news .entry-content img.alignright,
    .single-news .entry-content .alignright {
      margin: 0 0 20px 40px;
      float: right;
      width: 50%; } }
  @media (min-width: 1200px) {
    .single-post.entry-content img.alignright,
    .single-post.entry-content .alignright,
    .single-post .entry-content img.alignright,
    .single-post .entry-content .alignright,
    .single-news.entry-content img.alignright,
    .single-news.entry-content .alignright,
    .single-news .entry-content img.alignright,
    .single-news .entry-content .alignright {
      margin: 0 0 40px 60px; } }

.single-post.entry-content img.alignleft,
.single-post.entry-content .alignleft,
.single-post .entry-content img.alignleft,
.single-post .entry-content .alignleft,
.single-news.entry-content img.alignleft,
.single-news.entry-content .alignleft,
.single-news .entry-content img.alignleft,
.single-news .entry-content .alignleft {
  margin: 0 0 30px; }
  @media (min-width: 768px) {
    .single-post.entry-content img.alignleft,
    .single-post.entry-content .alignleft,
    .single-post .entry-content img.alignleft,
    .single-post .entry-content .alignleft,
    .single-news.entry-content img.alignleft,
    .single-news.entry-content .alignleft,
    .single-news .entry-content img.alignleft,
    .single-news .entry-content .alignleft {
      margin: 0 40px 20px 0;
      float: right;
      width: 50%; } }
  @media (min-width: 1200px) {
    .single-post.entry-content img.alignleft,
    .single-post.entry-content .alignleft,
    .single-post .entry-content img.alignleft,
    .single-post .entry-content .alignleft,
    .single-news.entry-content img.alignleft,
    .single-news.entry-content .alignleft,
    .single-news .entry-content img.alignleft,
    .single-news .entry-content .alignleft {
      margin: 0 60px 40px 0; } }

.single-post.entry-content .wp-caption,
.single-post .entry-content .wp-caption,
.single-news.entry-content .wp-caption,
.single-news .entry-content .wp-caption {
  text-align: center;
  font-size: 14px;
  line-height: 27px;
  font-style: italic;
  max-width: 100%; }
  .single-post.entry-content .wp-caption img,
  .single-post .entry-content .wp-caption img,
  .single-news.entry-content .wp-caption img,
  .single-news .entry-content .wp-caption img {
    display: block;
    margin: 0 0 30px; }
    @media (min-width: 768px) {
      .single-post.entry-content .wp-caption img,
      .single-post .entry-content .wp-caption img,
      .single-news.entry-content .wp-caption img,
      .single-news .entry-content .wp-caption img {
        margin: 0 0 14px; } }
  .single-post.entry-content .wp-caption .wp-caption-text,
  .single-post .entry-content .wp-caption .wp-caption-text,
  .single-news.entry-content .wp-caption .wp-caption-text,
  .single-news .entry-content .wp-caption .wp-caption-text {
    text-align: center;
    padding: 0 20px; }
    @media (min-width: 768px) {
      .single-post.entry-content .wp-caption .wp-caption-text,
      .single-post .entry-content .wp-caption .wp-caption-text,
      .single-news.entry-content .wp-caption .wp-caption-text,
      .single-news .entry-content .wp-caption .wp-caption-text {
        width: 80%;
        margin: 0 auto;
        padding: 0; } }
  .single-post.entry-content .wp-caption.alignnone,
  .single-post .entry-content .wp-caption.alignnone,
  .single-news.entry-content .wp-caption.alignnone,
  .single-news .entry-content .wp-caption.alignnone {
    margin: 0 0 30px; }
    @media (min-width: 768px) {
      .single-post.entry-content .wp-caption.alignnone,
      .single-post .entry-content .wp-caption.alignnone,
      .single-news.entry-content .wp-caption.alignnone,
      .single-news .entry-content .wp-caption.alignnone {
        margin: 0 0 20px; } }
    @media (min-width: 1200px) {
      .single-post.entry-content .wp-caption.alignnone,
      .single-post .entry-content .wp-caption.alignnone,
      .single-news.entry-content .wp-caption.alignnone,
      .single-news .entry-content .wp-caption.alignnone {
        margin: 0 0 40px; } }
  .single-post.entry-content .wp-caption.alignleft,
  .single-post .entry-content .wp-caption.alignleft,
  .single-news.entry-content .wp-caption.alignleft,
  .single-news .entry-content .wp-caption.alignleft {
    margin: 0 0 30px; }
    @media (min-width: 768px) {
      .single-post.entry-content .wp-caption.alignleft,
      .single-post .entry-content .wp-caption.alignleft,
      .single-news.entry-content .wp-caption.alignleft,
      .single-news .entry-content .wp-caption.alignleft {
        margin: 0 40px 20px 0;
        width: 50%; } }
    @media (min-width: 1200px) {
      .single-post.entry-content .wp-caption.alignleft,
      .single-post .entry-content .wp-caption.alignleft,
      .single-news.entry-content .wp-caption.alignleft,
      .single-news .entry-content .wp-caption.alignleft {
        margin: 0 60px 40px 0; } }
  .single-post.entry-content .wp-caption.alignright,
  .single-post .entry-content .wp-caption.alignright,
  .single-news.entry-content .wp-caption.alignright,
  .single-news .entry-content .wp-caption.alignright {
    margin: 0 0 30px; }
    @media (min-width: 768px) {
      .single-post.entry-content .wp-caption.alignright,
      .single-post .entry-content .wp-caption.alignright,
      .single-news.entry-content .wp-caption.alignright,
      .single-news .entry-content .wp-caption.alignright {
        margin: 0 0 20px 40px;
        width: 50%; } }
    @media (min-width: 1200px) {
      .single-post.entry-content .wp-caption.alignright,
      .single-post .entry-content .wp-caption.alignright,
      .single-news.entry-content .wp-caption.alignright,
      .single-news .entry-content .wp-caption.alignright {
        margin: 0 0 40px 60px; } }

.single-post.entry-content .wp-caption p.wp-caption-text,
.single-post .entry-content .wp-caption p.wp-caption-text,
.single-news.entry-content .wp-caption p.wp-caption-text,
.single-news .entry-content .wp-caption p.wp-caption-text {
  font-size: 11px;
  line-height: 17px;
  margin: 0;
  padding: 0 4px 5px; }

.single-post.entry-content ul,
.single-post .entry-content ul,
.single-news.entry-content ul,
.single-news .entry-content ul {
  padding: 0;
  list-style: none;
  margin: 20px 0 40px; }
  @media (min-width: 1200px) {
    .single-post.entry-content ul,
    .single-post .entry-content ul,
    .single-news.entry-content ul,
    .single-news .entry-content ul {
      margin-bottom: 60px; } }
  .single-post.entry-content ul li,
  .single-post .entry-content ul li,
  .single-news.entry-content ul li,
  .single-news .entry-content ul li {
    padding-left: 28px;
    position: relative; }
    @media (min-width: 1200px) {
      .single-post.entry-content ul li,
      .single-post .entry-content ul li,
      .single-news.entry-content ul li,
      .single-news .entry-content ul li {
        padding-left: 56px; } }
    .single-post.entry-content ul li::before,
    .single-post .entry-content ul li::before,
    .single-news.entry-content ul li::before,
    .single-news .entry-content ul li::before {
      content: '';
      position: absolute;
      top: 14px;
      left: 14px;
      width: 4px;
      height: 4px;
      border-radius: 50%;
      background-color: #009932; }
      @media (min-width: 1200px) {
        .single-post.entry-content ul li::before,
        .single-post .entry-content ul li::before,
        .single-news.entry-content ul li::before,
        .single-news .entry-content ul li::before {
          left: 29px; } }

.single-post.entry-content ol,
.single-post .entry-content ol,
.single-news.entry-content ol,
.single-news .entry-content ol {
  margin: 20px 0 40px;
  padding: 0;
  list-style: none;
  counter-reset: item; }
  @media (min-width: 1200px) {
    .single-post.entry-content ol,
    .single-post .entry-content ol,
    .single-news.entry-content ol,
    .single-news .entry-content ol {
      margin-bottom: 60px; } }
  .single-post.entry-content ol li,
  .single-post .entry-content ol li,
  .single-news.entry-content ol li,
  .single-news .entry-content ol li {
    padding-left: 35px;
    position: relative; }
    @media (min-width: 1200px) {
      .single-post.entry-content ol li,
      .single-post .entry-content ol li,
      .single-news.entry-content ol li,
      .single-news .entry-content ol li {
        padding-left: 56px; } }
    .single-post.entry-content ol li:before,
    .single-post .entry-content ol li:before,
    .single-news.entry-content ol li:before,
    .single-news .entry-content ol li:before {
      content: counters(item, ".") ". ";
      counter-increment: item;
      position: absolute;
      top: 0;
      left: 13px; }
      @media (min-width: 1200px) {
        .single-post.entry-content ol li:before,
        .single-post .entry-content ol li:before,
        .single-news.entry-content ol li:before,
        .single-news .entry-content ol li:before {
          left: 28px; } }

.single-post.entry-content .wp-block-table,
.single-post .entry-content .wp-block-table,
.single-news.entry-content .wp-block-table,
.single-news .entry-content .wp-block-table {
  margin: 0 0 40px; }
  @media (min-width: 1501px) {
    .single-post.entry-content .wp-block-table,
    .single-post .entry-content .wp-block-table,
    .single-news.entry-content .wp-block-table,
    .single-news .entry-content .wp-block-table {
      margin: 0 0 60px; } }

.single-post.entry-content table,
.single-post .entry-content table,
.single-news.entry-content table,
.single-news .entry-content table {
  font-family: arial, sans-serif;
  border-collapse: collapse;
  width: 100%; }

.single-post.entry-content td,
.single-post.entry-content th,
.single-post .entry-content td,
.single-post .entry-content th,
.single-news.entry-content td,
.single-news.entry-content th,
.single-news .entry-content td,
.single-news .entry-content th {
  border: 1px solid #88969a;
  text-align: left;
  padding: 8px; }

.single-post.entry-content tr:nth-child(even),
.single-post .entry-content tr:nth-child(even),
.single-news.entry-content tr:nth-child(even),
.single-news .entry-content tr:nth-child(even) {
  background-color: #dadfde; }

.single-post.entry-content .wp-block-image,
.single-post .entry-content .wp-block-image,
.single-news.entry-content .wp-block-image,
.single-news .entry-content .wp-block-image {
  display: block;
  max-width: none;
  margin: 40px 0; }
  @media (min-width: 1200px) {
    .single-post.entry-content .wp-block-image,
    .single-post .entry-content .wp-block-image,
    .single-news.entry-content .wp-block-image,
    .single-news .entry-content .wp-block-image {
      margin: 60px 0; } }
  .single-post.entry-content .wp-block-image figcaption,
  .single-post .entry-content .wp-block-image figcaption,
  .single-news.entry-content .wp-block-image figcaption,
  .single-news .entry-content .wp-block-image figcaption {
    font-size: 0.75rem;
    line-height: 1.33333;
    display: block;
    text-align: left;
    color: #43595f;
    font-weight: 500;
    font-style: italic;
    margin-top: 10px; }
    @media (min-width: 1200px) {
      .single-post.entry-content .wp-block-image figcaption,
      .single-post .entry-content .wp-block-image figcaption,
      .single-news.entry-content .wp-block-image figcaption,
      .single-news .entry-content .wp-block-image figcaption {
        margin-top: 18px; } }
  .single-post.entry-content .wp-block-image figure img,
  .single-post .entry-content .wp-block-image figure img,
  .single-news.entry-content .wp-block-image figure img,
  .single-news .entry-content .wp-block-image figure img {
    width: 100%; }
  .single-post.entry-content .wp-block-image img,
  .single-post .entry-content .wp-block-image img,
  .single-news.entry-content .wp-block-image img,
  .single-news .entry-content .wp-block-image img {
    vertical-align: top; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.brf-two-columns {
  padding: 60px 0; }
  @media (min-width: 768px) {
    .brf-two-columns {
      padding: 80px 0; } }
  @media (min-width: 1200px) {
    .brf-two-columns {
      padding: 100px 0; } }
  @media (min-width: 1501px) {
    .brf-two-columns {
      padding: 120px 0; } }
  .brf-two-columns:not(.brf-two-columns_dark) + .brf-two-columns:not(.brf-two-columns_dark) {
    padding-top: 0; }
  .brf-two-columns:not(.brf-two-columns_light) + .brf-two-columns_dark {
    margin-top: -60px; }
    @media (min-width: 768px) {
      .brf-two-columns:not(.brf-two-columns_light) + .brf-two-columns_dark {
        margin-top: -80px; } }
    @media (min-width: 1200px) {
      .brf-two-columns:not(.brf-two-columns_light) + .brf-two-columns_dark {
        margin-top: -100px; } }
  .brf-two-columns_dark {
    position: relative; }
    .brf-two-columns_dark:after {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      width: 100vw;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      background-color: #f5f6f3;
      z-index: -1; }
  @media (min-width: 768px) {
    .brf-two-columns__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 -30px; } }
  @media (min-width: 1200px) {
    .brf-two-columns__inner {
      padding: 0 100px 0 0;
      margin: 0 -65px; } }
  @media (min-width: 768px) {
    .brf-two-columns_img-right .brf-two-columns__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; } }
  @media (min-width: 1200px) {
    .brf-two-columns_img-right .brf-two-columns__inner {
      padding: 0 0 0 100px; } }
  @media (min-width: 768px) {
    .brf-two-columns__column {
      width: 50%;
      padding: 0 30px; } }
  @media (min-width: 1200px) {
    .brf-two-columns__column {
      padding: 0 65px; } }
  .brf-two-columns h2 {
    margin-bottom: 16px; }
    @media (min-width: 768px) {
      .brf-two-columns h2 {
        margin-bottom: 20px; } }
  .brf-two-columns .column-image__image-wrapper {
    position: relative;
    border-radius: 2px;
    overflow: hidden;
    padding-top: 100%;
    margin-bottom: 32px; }
    @media (min-width: 768px) {
      .brf-two-columns .column-image__image-wrapper {
        margin-bottom: 0; } }
    .brf-two-columns .column-image__image-wrapper img {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: auto; }
      @media (min-width: 993px) {
        .brf-two-columns .column-image__image-wrapper img {
          height: auto;
          top: 0;
          left: 0;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none; } }
  .brf-two-columns .column-info {
    font-size: 1rem;
    line-height: 1.75; }
    @media (min-width: 993px) {
      .brf-two-columns .column-info {
        -ms-flex-item-align: center;
            align-self: center; } }
    .brf-two-columns .column-info p {
      margin-bottom: 30px;
      letter-spacing: .4px; }
      @media (min-width: 1200px) {
        .brf-two-columns .column-info p {
          margin-bottom: 20px;
          letter-spacing: .5px; } }
      .brf-two-columns .column-info p:last-child {
        margin-bottom: 0; }
    .brf-two-columns .column-info .wp-block-button {
      padding-top: 30px; }
      @media (min-width: 1200px) {
        .brf-two-columns .column-info .wp-block-button {
          padding-top: 20px; } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.brf-hero-slider {
  margin: 0 calc(50% - 50vw); }
  @media (min-width: 768px) {
    .brf-hero-slider {
      margin: 0 calc((730px / 2) - $container-gap - 50vw); } }
  @media (min-width: 993px) {
    .brf-hero-slider {
      margin: 0 calc((1000px / 2) - $container-gap - 50vw); } }
  @media (min-width: 1200px) {
    .brf-hero-slider {
      margin: 0 calc((1210px / 2) - $container-gap - 50vw); } }

.brf-hero-slider {
  height: 100vh;
  height: 596px;
  position: relative;
  width: auto;
  /* Hero Slider buttons */ }
  @media (min-width: 993px) {
    .brf-hero-slider {
      height: 740px; } }
  @media (min-width: 1501px) {
    .brf-hero-slider {
      height: 860px; } }
  .brf-hero-slider.swiper-container {
    z-index: 0; }
  .brf-hero-slider__item {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 110px 7px 10px;
    position: relative;
    width: 100%; }
    .brf-hero-slider__item.swiper-slide {
      -webkit-transition-property: opacity, -webkit-transform;
      transition-property: opacity, -webkit-transform;
      -o-transition-property: opacity, transform;
      transition-property: opacity, transform;
      transition-property: opacity, transform, -webkit-transform; }
    @media (min-width: 768px) {
      .brf-hero-slider__item {
        padding: 155px 20px 10px; } }
    @media (min-width: 993px) {
      .brf-hero-slider__item {
        padding: 197px 0 10px; } }
    @media (min-width: 1501px) {
      .brf-hero-slider__item {
        padding-top: 256px; } }
    .brf-hero-slider__item:before {
      background-image: -webkit-gradient(linear, left top, left bottom, from(#164f45), color-stop(70%, #658b8442), to(transparent));
      background-image: -webkit-linear-gradient(top, #164f45 0%, #658b8442 70%, transparent 100%);
      background-image: -o-linear-gradient(top, #164f45 0%, #658b8442 70%, transparent 100%);
      background-image: linear-gradient(180deg, #164f45 0%, #658b8442 70%, transparent 100%);
      content: "";
      height: 100%;
      left: 0;
      opacity: .6;
      position: absolute;
      top: 0;
      width: 100%;
      z-index: 1; }
      @media (min-width: 768px) {
        .brf-hero-slider__item:before {
          background-image: -webkit-gradient(linear, left top, left bottom, from(#164f45), to(transparent));
          background-image: -webkit-linear-gradient(top, #164f45 0%, transparent 100%);
          background-image: -o-linear-gradient(top, #164f45 0%, transparent 100%);
          background-image: linear-gradient(180deg, #164f45 0%, transparent 100%);
          opacity: .5; } }
    @media (min-width: 1501px) {
      .brf-hero-slider__item:after {
        content: "";
        display: block;
        position: absolute;
        top: 285px;
        left: 0;
        height: 1px;
        width: 85px;
        background-color: rgba(255, 255, 255, 0.2);
        z-index: 1; } }
  .brf-hero-slider__image {
    -o-object-fit: cover;
    object-fit: cover;
    -o-object-position: center;
    object-position: center;
    font-family: "object-fit: cover; object-position: center";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    -webkit-transform: scale(1.05);
        -ms-transform: scale(1.05);
            transform: scale(1.05);
    -webkit-transition: -webkit-transform .8s ease;
    transition: -webkit-transform .8s ease;
    -o-transition: transform .8s ease;
    transition: transform .8s ease;
    transition: transform .8s ease, -webkit-transform .8s ease;
    width: 100%; }
    .swiper-slide-active .brf-hero-slider__image {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1); }
    .brf-hero-slider__image img {
      height: 100%;
      width: 100%; }
  .brf-hero-slider__text {
    color: #fff;
    opacity: 0;
    text-align: center;
    -webkit-transform: translate3d(10%, 0, 1px);
            transform: translate3d(10%, 0, 1px);
    -webkit-transition: opacity .8s ease, -webkit-transform .8s ease;
    transition: opacity .8s ease, -webkit-transform .8s ease;
    -o-transition: transform .8s ease, opacity .8s ease;
    transition: transform .8s ease, opacity .8s ease;
    transition: transform .8s ease, opacity .8s ease, -webkit-transform .8s ease;
    position: relative;
    z-index: 2; }
    .text-animate .brf-hero-slider__text {
      opacity: 1;
      -webkit-transform: translate3d(0, 0, 1px);
              transform: translate3d(0, 0, 1px); }
    @media (min-width: 768px) {
      .brf-hero-slider__text {
        text-align: left; }
        .brf-hero-slider__text > * {
          max-width: 420px; } }
    @media (min-width: 993px) {
      .brf-hero-slider__text > * {
        max-width: 490px; } }
    .brf-hero-slider__text h2 {
      font-size: 2.25rem;
      line-height: 1.27778;
      margin-bottom: 20px;
      max-height: 136px;
      overflow: hidden; }
      @media (min-width: 768px) {
        .brf-hero-slider__text h2 {
          max-height: 91px; } }
      @media (min-width: 993px) {
        .brf-hero-slider__text h2 {
          font-size: 3.375rem;
          line-height: 1.11111;
          margin-bottom: 30px;
          max-height: 177px; } }
    .brf-hero-slider__text p {
      font-size: 1rem;
      line-height: 1.75;
      letter-spacing: .4px;
      margin-bottom: 30px;
      max-height: 168px;
      overflow: hidden; }
      @media (min-width: 768px) {
        .brf-hero-slider__text p {
          max-height: 112px; } }
      @media (min-width: 993px) {
        .brf-hero-slider__text p {
          letter-spacing: .5px; } }
  .brf-hero-slider__buttons {
    bottom: 155px;
    display: none;
    position: absolute;
    width: 90px;
    z-index: 2; }
    @media (min-width: 993px) {
      .brf-hero-slider__buttons {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between;
        right: calc(50vw - 480px); } }
    @media (min-width: 1200px) {
      .brf-hero-slider__buttons {
        right: calc(50vw - 585px); } }
    @media (min-width: 1501px) {
      .brf-hero-slider__buttons {
        bottom: 216px; } }
    .brf-hero-slider__buttons .swiper-button-disabled {
      color: #d4d9db;
      background-color: transparent;
      border: none; }
  .brf-hero-slider__prev, .brf-hero-slider__next {
    color: #fff;
    cursor: pointer;
    height: 40px;
    width: 40px; }
    .brf-hero-slider__prev:hover, .brf-hero-slider__next:hover {
      color: #2aa757; }
    .brf-hero-slider__prev:before, .brf-hero-slider__next:before {
      font-size: 2.4375rem;
      line-height: 1.02564;
      content: '\E903';
      display: block;
      font-family: 'icomoon' !important; }
  .brf-hero-slider__prev {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
  .brf-hero-slider__pagination {
    bottom: 30px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    left: 0;
    position: absolute;
    width: 100%;
    z-index: 2; }
  .brf-hero-slider__bullet {
    background-color: #ebf0f2;
    border-radius: 50%;
    cursor: pointer;
    height: 10px;
    margin: 0 4px;
    opacity: .6;
    -webkit-transform: scale(0.6);
        -ms-transform: scale(0.6);
            transform: scale(0.6);
    width: 10px; }
    @media (min-width: 993px) {
      .brf-hero-slider__bullet {
        display: none; } }
    .brf-hero-slider__bullet-active {
      opacity: 1;
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1); }
  .brf-hero-slider__donate {
    position: absolute;
    left: 50%;
    top: 438px;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    z-index: 1; }
    @media (min-width: 768px) {
      .brf-hero-slider__donate {
        left: calc(50vw - 344px);
        -webkit-transform: translateX(0);
            -ms-transform: translateX(0);
                transform: translateX(0);
        top: 407px; } }
    @media (min-width: 993px) {
      .brf-hero-slider__donate {
        left: calc(50vw - 480px);
        top: 531px; } }
    @media (min-width: 1200px) {
      .brf-hero-slider__donate {
        left: calc(50vw - 585px);
        top: 531px; } }
    @media (min-width: 1501px) {
      .brf-hero-slider__donate {
        top: 590px; } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, .three-articles .article-item .mst-tag-list {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.three-articles {
  position: relative;
  padding: 60px 0 54px; }
  @media (min-width: 768px) {
    .three-articles {
      padding: 80px 0 82px; } }
  @media (min-width: 1200px) {
    .three-articles {
      padding: 100px 0 50px; } }
  @media (min-width: 1501px) {
    .three-articles {
      padding: 120px 0 60px; } }
  .three-articles__info {
    margin-bottom: 40px; }
    @media (min-width: 768px) {
      .three-articles__info {
        margin-bottom: 50px; } }
    @media (min-width: 993px) {
      .three-articles__info {
        margin-bottom: 44px; } }
  @media (min-width: 993px) {
    .three-articles__description-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  .three-articles__description-wrapper .wp-block-button {
    max-width: 200px;
    position: absolute;
    bottom: 60px;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%); }
    @media (min-width: 768px) {
      .three-articles__description-wrapper .wp-block-button {
        bottom: 76px; } }
    @media (min-width: 993px) {
      .three-articles__description-wrapper .wp-block-button {
        position: static;
        -webkit-transform: none;
            -ms-transform: none;
                transform: none;
        padding-right: 10px; } }
    .three-articles__description-wrapper .wp-block-button__link {
      min-width: 95px; }
  .three-articles__description {
    font-size: 16px; }
    @media (min-width: 768px) {
      .three-articles__description {
        max-width: 470px; } }
    @media (min-width: 993px) {
      .three-articles__description {
        max-width: 700px;
        padding-right: 30px;
        font-size: 16px; } }
  @media (min-width: 768px) {
    .three-articles__grid {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 -30px; } }
  @media (min-width: 993px) {
    .three-articles__grid {
      margin: 0 -15px; } }
  .three-articles .article-item {
    margin-bottom: 60px; }
    @media (min-width: 768px) {
      .three-articles .article-item {
        width: 50%;
        padding: 0 30px;
        margin-bottom: 34px; } }
    @media (min-width: 993px) {
      .three-articles .article-item {
        width: 25%;
        padding: 0 15px; } }
    .three-articles .article-item:first-child {
      width: 100%; }
      @media (min-width: 993px) {
        .three-articles .article-item:first-child {
          width: 50%; } }
      @media (min-width: 768px) {
        .three-articles .article-item:first-child .article-item__img-wrapper {
          padding-top: 56%; } }
    .three-articles .article-item h3 {
      font-size: 1.125rem;
      line-height: 1.66667;
      margin-bottom: 10px; }
      @media (min-width: 993px) {
        .three-articles .article-item h3 {
          font-size: 1.375rem;
          line-height: 1.54545;
          margin-bottom: 20px; } }
    .three-articles .article-item__top {
      position: relative;
      margin-bottom: 22px; }
      @media (min-width: 993px) {
        .three-articles .article-item__top {
          margin-bottom: 30px; } }
    .three-articles .article-item__img-wrapper {
      position: relative;
      display: block;
      padding-top: 70%;
      overflow: hidden;
      border-radius: 2px; }
      .three-articles .article-item__img-wrapper img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        min-width: 100%;
        min-height: 100%; }
    .three-articles .article-item__additional {
      font-weight: 700;
      margin-bottom: 10px;
      color: #009932;
      font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif; }
      @media (min-width: 993px) {
        .three-articles .article-item__additional {
          font-size: 1rem;
          line-height: 1.25; } }
    .three-articles .article-item .mst-tag-list {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      font-weight: 700;
      margin: 0 -5px;
      font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif; }
      .three-articles .article-item .mst-tag-list__item {
        font-size: 0.75rem;
        line-height: 1.5;
        padding: 0 5px;
        margin-bottom: 10px; }
        .three-articles .article-item .mst-tag-list__item span {
          display: block;
          padding: 3px 8px;
          background-color: #164f45;
          color: #fff; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, .cards-slider .article-slide .mst-tag-list {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.cards-slider {
  position: relative;
  padding: 60px 0 80px;
  color: #fff; }
  @media (min-width: 768px) {
    .cards-slider {
      padding: 80px 0 100px; } }
  @media (min-width: 993px) {
    .cards-slider {
      padding: 100px 0; } }
  @media (min-width: 1501px) {
    .cards-slider {
      padding: 120px 0; } }
  .cards-slider:before {
    background-color: #43595f; }
  .cards-slider:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    background-color: #143038;
    z-index: -1; }
  @media (min-width: 993px) {
    .cards-slider__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      position: relative; }
      .cards-slider__inner:before {
        background-color: #143038;
        content: "";
        display: block;
        height: 100%;
        position: absolute;
        right: calc(50% + 80px);
        top: 0;
        width: calc(50vw - 80px);
        z-index: 2; } }
  @media (min-width: 1200px) {
    .cards-slider__inner:before {
      right: calc(50% + 185px);
      width: calc(50vw - 185px); } }
  .cards-slider__info {
    font-size: 1rem;
    line-height: 1.75;
    max-width: 465px;
    margin-bottom: 40px; }
    @media (min-width: 768px) {
      .cards-slider__info {
        margin-bottom: 50px; } }
    @media (min-width: 993px) {
      .cards-slider__info {
        width: 400px;
        max-width: none;
        padding-right: 80px;
        margin-bottom: 0;
        position: relative;
        z-index: 3; } }
    .cards-slider__info p {
      letter-spacing: .4px; }
      @media (min-width: 993px) {
        .cards-slider__info p {
          letter-spacing: .5px; } }
    .cards-slider__info .wp-block-button {
      position: absolute;
      left: 0;
      bottom: 60px;
      max-width: 100%; }
      @media (min-width: 768px) {
        .cards-slider__info .wp-block-button {
          bottom: 80px; } }
      @media (min-width: 993px) {
        .cards-slider__info .wp-block-button {
          position: static; } }
  .cards-slider__list-wrapper {
    margin-bottom: 20px; }
    @media (min-width: 993px) {
      .cards-slider__list-wrapper {
        padding-top: 14px;
        width: calc(100% - 400px);
        margin-bottom: 0;
        position: relative;
        z-index: 1; } }
  .cards-slider__list {
    overflow: hidden;
    margin-right: calc(-50vw + 50%); }
    @media (min-width: 993px) {
      .cards-slider__list {
        margin-right: 0;
        overflow: visible; } }
  .cards-slider .article-slide {
    -webkit-box-flex: 270px;
        -ms-flex: 270px 0 0px;
            flex: 270px 0 0;
    margin-right: 20px; }
    @media (min-width: 993px) {
      .cards-slider .article-slide {
        -webkit-box-flex: 370px;
            -ms-flex: 370px 0 0px;
                flex: 370px 0 0;
        margin-right: 30px; } }
    .cards-slider .article-slide:last-child {
      margin-right: 0; }
    .cards-slider .article-slide__top {
      position: relative;
      height: 230px;
      border-radius: 2px;
      overflow: hidden;
      margin-bottom: 24px; }
      @media (min-width: 993px) {
        .cards-slider .article-slide__top {
          height: 260px; } }
    .cards-slider .article-slide__img-wrapper {
      display: block;
      height: 100%; }
    .cards-slider .article-slide__bottom {
      font-size: 1rem;
      line-height: 1.75;
      font-weight: 700; }
      @media (min-width: 993px) {
        .cards-slider .article-slide__bottom {
          font-size: 1.125rem;
          line-height: 1.66667; } }
      .cards-slider .article-slide__bottom a {
        color: #fff;
        display: block;
        text-decoration: none; }
        .cards-slider .article-slide__bottom a:before {
          content: '"'; }
        .cards-slider .article-slide__bottom a:after {
          content: '"'; }
        .cards-slider .article-slide__bottom a:hover {
          color: #2aa757; }
    .cards-slider .article-slide__excerpt {
      letter-spacing: 0; }
    .cards-slider .article-slide .mst-tag-list {
      position: absolute;
      bottom: 0;
      left: 0;
      right: 0;
      padding: 0 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      font-weight: 700;
      margin: 0 -5px;
      font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif; }
      .cards-slider .article-slide .mst-tag-list__item {
        font-size: 0.75rem;
        line-height: 1.5;
        padding: 0 5px;
        margin-bottom: 10px; }
        .cards-slider .article-slide .mst-tag-list__item span {
          display: block;
          padding: 3px 8px;
          background-color: #164f45;
          color: #fff; }
  .cards-slider .swiper-nav-list {
    display: none; }
    @media (min-width: 993px) {
      .cards-slider .swiper-nav-list {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        margin-bottom: 20px;
        height: 40px; } }
    .cards-slider .swiper-nav-list .swiper-button {
      background-color: transparent; }
      .cards-slider .swiper-nav-list .swiper-button:after {
        -webkit-transition: color .3s ease;
        -o-transition: color .3s ease;
        transition: color .3s ease; }
      .cards-slider .swiper-nav-list .swiper-button:hover:after {
        color: #2aa757; }
      .cards-slider .swiper-nav-list .swiper-button.swiper-button-lock {
        display: none; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, .icons-grid__row {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.icons-grid {
  text-align: center;
  padding: 60px 0 30px; }
  @media (min-width: 768px) {
    .icons-grid {
      padding: 80px 0; } }
  @media (min-width: 1200px) {
    .icons-grid {
      padding: 100px 0; } }
  @media (min-width: 1501px) {
    .icons-grid {
      padding: 120px 0; } }
  .icons-grid__title {
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      .icons-grid__title {
        margin-bottom: 60px; } }
  @media (min-width: 768px) {
    .icons-grid__row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  @media (min-width: 1200px) {
    .icons-grid__row {
      margin: 0 auto;
      max-width: 1070px; } }
  .icons-grid__cta {
    margin: 0 0 30px; }
    @media (min-width: 768px) {
      .icons-grid__cta {
        margin: 30px 0 0; } }
    @media (min-width: 1200px) {
      .icons-grid__cta {
        margin: 60px 0 0; } }
  .icons-grid__icons-card {
    max-width: 270px;
    margin: 0 auto; }
    @media (min-width: 768px) {
      .icons-grid__icons-card {
        -ms-flex-preferred-size: calc((100% - 72px) / 3);
            flex-basis: calc((100% - 72px) / 3);
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin: 0;
        max-width: none; } }
    @media (min-width: 1200px) {
      .icons-grid__icons-card {
        -ms-flex-preferred-size: calc((100% - 140px) / 3);
            flex-basis: calc((100% - 140px) / 3); } }
  .icons-grid .icons-card {
    display: block;
    padding: 30px 0; }
    @media (min-width: 768px) {
      .icons-grid .icons-card {
        padding: 0; } }
    .icons-grid .icons-card__icon {
      width: 160px;
      height: 160px;
      margin: 0 auto 20px;
      position: relative; }
      @media (min-width: 768px) {
        .icons-grid .icons-card__icon {
          width: 113px;
          height: 113px; } }
      @media (min-width: 1200px) {
        .icons-grid .icons-card__icon {
          width: 170px;
          height: 170px;
          margin: 0 auto 30px; } }
      .icons-grid .icons-card__icon img {
        position: absolute;
        top: 50%;
        left: 50%;
        -webkit-transform: translate(-50%, -50%);
            -ms-transform: translate(-50%, -50%);
                transform: translate(-50%, -50%);
        max-width: 84px;
        max-height: 81px; }
        @media (min-width: 768px) {
          .icons-grid .icons-card__icon img {
            max-width: 61px;
            max-height: 59px; } }
        @media (min-width: 1200px) {
          .icons-grid .icons-card__icon img {
            max-width: 94px;
            max-height: 74px; } }
    .icons-grid .icons-card .svg-circle-icon {
      width: 100%;
      height: 100%; }
    .icons-grid .icons-card__info {
      font-size: 1rem;
      line-height: 1.75;
      font-weight: 600;
      letter-spacing: 0.5px;
      color: #143038;
      margin: 0; }
      @media (min-width: 768px) {
        .icons-grid .icons-card__info {
          font-size: 0.875rem;
          line-height: 1.71429; } }
      @media (min-width: 1200px) {
        .icons-grid .icons-card__info {
          font-size: 1rem;
          line-height: 1.75; } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, .reports-other__list {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.reports-with-preview {
  padding: 68px 0 40px; }
  @media (min-width: 768px) {
    .reports-with-preview {
      padding: 80px 0 60px; } }
  @media (min-width: 1200px) {
    .reports-with-preview {
      padding: 80px 0 100px; } }
  @media (min-width: 1501px) {
    .reports-with-preview {
      padding: 100px 0 120px; } }
  .reports-with-preview__report-primary {
    margin-bottom: 60px; }
    @media (min-width: 768px) {
      .reports-with-preview__report-primary {
        margin-bottom: 80px; } }
    @media (min-width: 1501px) {
      .reports-with-preview__report-primary {
        margin-bottom: 120px; } }

@media (min-width: 768px) {
  .report-primary {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; } }

@media (min-width: 1200px) {
  .report-primary {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; } }

.report-primary__thumb {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px; }
  @media (min-width: 768px) {
    .report-primary__thumb {
      -webkit-box-flex: 320px;
          -ms-flex: 320px 0 0px;
              flex: 320px 0 0;
      -webkit-box-ordinal-group: 2;
          -ms-flex-order: 1;
              order: 1;
      margin: 0; } }
  @media (min-width: 1200px) {
    .report-primary__thumb {
      -webkit-box-flex: 440px;
          -ms-flex: 440px 0 0px;
              flex: 440px 0 0; } }
  .report-primary__thumb:hover img {
    -webkit-transform: scale(0.97);
        -ms-transform: scale(0.97);
            transform: scale(0.97); }
  .report-primary__thumb img {
    display: block;
    margin: 0;
    -webkit-transition: -webkit-transform .3s ease;
    transition: -webkit-transform .3s ease;
    -o-transition: transform .3s ease;
    transition: transform .3s ease;
    transition: transform .3s ease, -webkit-transform .3s ease; }
    @media (min-width: 768px) {
      .report-primary__thumb img {
        width: 100%; } }

@media (min-width: 768px) {
  .report-primary__info-wrapper {
    -webkit-box-ordinal-group: 1;
        -ms-flex-order: 0;
            order: 0;
    -ms-flex-preferred-size: calc(100% - 382px);
        flex-basis: calc(100% - 382px);
    -ms-flex-negative: 0;
        flex-shrink: 0;
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0; } }
  @media (min-width: 768px) and (min-width: 1200px) {
    .report-primary__info-wrapper {
      -ms-flex-preferred-size: calc(100% - 600px);
          flex-basis: calc(100% - 600px); } }

.report-primary__info-wrapper h2 {
  margin-bottom: 16px; }
  @media (min-width: 1200px) {
    .report-primary__info-wrapper h2 {
      margin-bottom: 20px; } }

.report-primary__info {
  color: #000;
  font-size: 1rem;
  line-height: 1.75;
  letter-spacing: 0.4px;
  margin-bottom: 30px; }
  @media (min-width: 1200px) {
    .report-primary__info {
      margin-bottom: 40px; } }
  .report-primary__info p:last-child {
    margin-bottom: 0; }

.report-primary__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between; }
  @media (min-width: 1200px) {
    .report-primary__buttons {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start; } }
  @media (min-width: 1200px) {
    .report-primary__buttons .wp-link {
      margin-right: 56px; } }
  @media (min-width: 1200px) {
    .report-primary__buttons .wp-link:last-child {
      margin-right: 0; } }

.reports-other h3 {
  margin-bottom: 40px; }
  @media (min-width: 768px) {
    .reports-other h3 {
      margin-bottom: 50px; } }
  @media (min-width: 1200px) {
    .reports-other h3 {
      margin-bottom: 40px; } }

.reports-other__list {
  white-space: nowrap;
  width: auto;
  max-width: 9999px;
  overflow-x: auto;
  font-size: 0;
  margin-right: calc(50% - 50vw);
  padding-bottom: 20px; }
  @media (min-width: 1200px) {
    .reports-other__list {
      white-space: normal;
      margin: 0 0 -47px;
      width: calc(100% + 30px);
      padding-bottom: 0; } }

.reports-other__report-secondary {
  display: inline-block;
  width: 180px;
  margin-right: 20px; }
  @media (min-width: 768px) {
    .reports-other__report-secondary {
      width: 210px;
      margin: 0 30px 47px 0; } }

.report-secondary {
  white-space: normal; }
  .report-secondary__thumb {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    width: 100%;
    height: 231px;
    margin-bottom: 15px; }
    .report-secondary__thumb:hover img {
      -webkit-transform: scale(0.97);
          -ms-transform: scale(0.97);
              transform: scale(0.97); }
    .report-secondary__thumb img {
      width: auto;
      height: auto;
      max-width: 100%;
      max-height: 100%;
      -webkit-transition: -webkit-transform 0.3s ease;
      transition: -webkit-transform 0.3s ease;
      -o-transition: transform 0.3s ease;
      transition: transform 0.3s ease;
      transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
    @media (min-width: 768px) {
      .report-secondary__thumb {
        height: 270px;
        margin-bottom: 20px; } }
  .report-secondary__heading {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; }
  .report-secondary__title {
    font-size: 1rem;
    line-height: 1.375;
    -ms-flex-preferred-size: calc(100% - 30px);
        flex-basis: calc(100% - 30px);
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0;
    padding-right: 25px; }
  .report-secondary .wp-link {
    -webkit-box-flex: 22px;
        -ms-flex: 22px 0 0px;
            flex: 22px 0 0; }
  .report-secondary .wp-block-button__link {
    font-size: 0; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, .reports-simple__list {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.reports-simple {
  padding: 60px 0 40px;
  position: relative; }
  @media (min-width: 768px) {
    .reports-simple {
      padding: 80px 0 60px; } }
  @media (min-width: 1200px) {
    .reports-simple {
      padding: 100px 0; } }
  @media (min-width: 1501px) {
    .reports-simple {
      padding: 120px 0; } }
  .reports-simple__info {
    margin-bottom: 40px;
    max-width: 464px; }
    @media (min-width: 768px) {
      .reports-simple__info {
        margin-bottom: 50px; } }
    @media (min-width: 1200px) {
      .reports-simple__info {
        max-width: 770px;
        margin-bottom: 60px; } }
    .reports-simple__info h2 {
      margin-bottom: 16px; }
      @media (min-width: 1200px) {
        .reports-simple__info h2 {
          margin-bottom: 20px; } }
    .reports-simple__info p {
      font-size: 1rem;
      line-height: 1.75; }
      .reports-simple__info p:last-child {
        margin-bottom: 0; }
  .reports-simple__list {
    white-space: nowrap;
    width: auto;
    max-width: 9999px;
    overflow-x: auto;
    font-size: 0;
    margin-right: calc(50% - 50vw);
    padding-bottom: 20px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
    @media (min-width: 1200px) {
      .reports-simple__list {
        white-space: normal;
        margin: 0 0 -47px;
        width: calc(100% + 30px);
        padding-bottom: 0;
        vertical-align: top;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap; } }
    .reports-simple__list:after {
      content: "";
      display: inline-block;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      min-width: 20px;
      width: calc(50vw - 270px); }
      @media (min-width: 768px) {
        .reports-simple__list:after {
          width: calc(50vw - 365px); } }
      @media (min-width: 993px) {
        .reports-simple__list:after {
          width: calc(50vw - 500px); } }
      @media (min-width: 1200px) {
        .reports-simple__list:after {
          display: none; } }
  .reports-simple__report-item {
    display: inline-block;
    width: 180px;
    min-width: 180px;
    margin: 0 20px 0 0; }
    @media (min-width: 1200px) {
      .reports-simple__report-item {
        width: 210px;
        margin: 0 30px 47px 0;
        min-width: none; } }
  .reports-simple_green .report-item {
    background-color: #e1f6e8; }
    .reports-simple_green .report-item__pattern {
      background-image: url(../images/report-pattern-green.svg); }
  .reports-simple_yellow .report-item {
    background-color: #fbf9e8; }
    .reports-simple_yellow .report-item__pattern {
      background-image: url(../images/report-pattern-yellow.svg); }
  .reports-simple + .reports-simple:after {
    content: '';
    position: absolute;
    top: 0;
    width: 100vw;
    height: 1px;
    background-color: #d4d9db;
    z-index: 1; }

.report-item {
  white-space: normal;
  position: relative; }
  .report-item__inner {
    position: relative;
    padding: 20px;
    z-index: 2;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%; }
    @media (min-width: 1200px) {
      .report-item__inner {
        padding: 23px 20px 22px; } }
  .report-item__icon {
    color: #009932;
    font-style: 0;
    letter-spacing: 0;
    margin: 0 0 20px; }
    .report-item__icon:after {
      font-family: 'icomoon' !important;
      content: '\E902';
      speak: none;
      font-style: normal;
      font-weight: normal;
      font-variant: normal;
      text-transform: none;
      line-height: 1;
      -webkit-font-smoothing: antialiased;
      -moz-osx-font-smoothing: grayscale;
      font-size: 46px;
      vertical-align: text-bottom;
      display: inline-block; }
  .report-item__title {
    margin-bottom: 10px;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1; }
    @media (min-width: 1200px) {
      .report-item__title {
        margin-bottom: 30px; } }
    .report-item__title a {
      display: inline-block;
      -webkit-transition: color .25s ease;
      -o-transition: color .25s ease;
      transition: color .25s ease; }
  .report-item__download {
    font-size: 0.75rem;
    line-height: 2.33333;
    letter-spacing: 0.4px;
    color: #009932;
    font-weight: 700; }
  .report-item__pattern {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 96px;
    width: 130px;
    background-position: center;
    background-size: 100%;
    z-index: 1; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.brf-cta {
  position: relative;
  text-align: center;
  margin: 0 calc(50% - 50vw);
  padding: 60px 0; }
  @media (min-width: 768px) {
    .brf-cta {
      margin: 0;
      padding: 80px 0; } }
  @media (min-width: 1200px) {
    .brf-cta {
      padding: 100px 0; } }
  @media (min-width: 1501px) {
    .brf-cta {
      padding: 120px 0; } }
  .brf-cta:last-child {
    padding: 30px 0 0; }
    @media (min-width: 768px) {
      .brf-cta:last-child {
        padding: 60px 0 80px; } }
    @media (min-width: 1200px) {
      .brf-cta:last-child {
        padding: 80px 0 100px; } }
    @media (min-width: 1501px) {
      .brf-cta:last-child {
        padding: 100px 0 120px; } }
  .brf-cta .brf-cta-wrapper {
    position: relative;
    padding: 60px 20px;
    overflow: hidden;
    background-color: #f5f6f3; }
  .brf-cta .decoration-pattern {
    position: absolute;
    bottom: -22px;
    left: -87px;
    width: 300px;
    height: 134px;
    background-image: url(../images/pattern_small_white.svg);
    background-position: 50% 50%;
    background-repeat: no-repeat;
    background-size: 100%; }
    @media (min-width: 768px) {
      .brf-cta .decoration-pattern {
        bottom: -22px;
        left: -3px; } }
    @media (min-width: 1200px) {
      .brf-cta .decoration-pattern {
        bottom: 0;
        left: 0; } }
  .brf-cta_dark .decoration-pattern {
    background-image: url(../images/pattern_small_gray.svg); }
  .brf-cta__inner {
    font-size: 1rem;
    line-height: 1.75;
    position: relative;
    max-width: 570px;
    margin: 0 auto;
    z-index: 1; }
    @media (min-width: 1200px) {
      .brf-cta__inner {
        max-width: 670px; } }
  .brf-cta p {
    margin-bottom: 0;
    letter-spacing: .4px; }
    @media (min-width: 1200px) {
      .brf-cta p {
        letter-spacing: .5px; } }
  .brf-cta .wp-block-button {
    padding-top: 30px; }
    @media (min-width: 1200px) {
      .brf-cta .wp-block-button {
        padding-top: 40px; } }
    .brf-cta .wp-block-button__link {
      min-width: 158px;
      white-space: normal; }
      @media (min-width: 1200px) {
        .brf-cta .wp-block-button__link {
          min-width: 208px; } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.two-columns-cards {
  padding: 60px 0; }
  @media (min-width: 768px) {
    .two-columns-cards {
      padding: 80px 0; } }
  @media (min-width: 1200px) {
    .two-columns-cards {
      padding: 100px 0; } }
  @media (min-width: 1501px) {
    .two-columns-cards {
      padding: 120px 0; } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, .how-it-works .steps-list {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.how-it-works {
  position: relative;
  padding: 60px 0; }
  .how-it-works:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100vw;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    background-color: #f5f6f3;
    z-index: -1; }
  @media (min-width: 768px) {
    .how-it-works {
      padding: 80px 0; } }
  @media (min-width: 993px) {
    .how-it-works {
      padding: 100px 0; } }
  @media (min-width: 1501px) {
    .how-it-works {
      padding: 120px 0; } }
  .how-it-works__header-title {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 40px; }
    @media (min-width: 768px) {
      .how-it-works__header-title {
        max-width: 470px;
        margin: 0 auto 50px;
        text-align: center; } }
    @media (min-width: 1200px) {
      .how-it-works__header-title {
        max-width: 570px;
        margin-bottom: 60px; } }
    .how-it-works__header-title p {
      letter-spacing: .4px; }
      @media (min-width: 1200px) {
        .how-it-works__header-title p {
          letter-spacing: .5px; } }
  .how-it-works .steps-list {
    counter-reset: step; }
    .how-it-works .steps-list .list-item {
      position: relative;
      margin-bottom: 78px; }
      @media (min-width: 768px) {
        .how-it-works .steps-list .list-item {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          margin: 0 -30px 88px; } }
      @media (min-width: 1200px) {
        .how-it-works .steps-list .list-item {
          padding: 0 100px 0 0;
          margin: 0 -65px 68px; } }
      .how-it-works .steps-list .list-item:after {
        content: '';
        position: absolute;
        display: block;
        width: 34px;
        height: 28px;
        top: calc(100% + 20px);
        left: 50%;
        -webkit-transform: translateX(-50%) scaleX(-1);
            -ms-transform: translateX(-50%) scaleX(-1);
                transform: translateX(-50%) scaleX(-1);
        background-image: url(../images/green-arrow-down.svg);
        background-position: 50% 50%;
        background-size: 100%;
        background-repeat: no-repeat; }
        @media (min-width: 768px) {
          .how-it-works .steps-list .list-item:after {
            top: calc(100% + 32px); } }
      .how-it-works .steps-list .list-item:nth-child(odd) {
        -webkit-box-orient: horizontal;
        -webkit-box-direction: reverse;
            -ms-flex-direction: row-reverse;
                flex-direction: row-reverse; }
        @media (min-width: 1200px) {
          .how-it-works .steps-list .list-item:nth-child(odd) {
            padding: 0 0 0 100px; } }
        .how-it-works .steps-list .list-item:nth-child(odd):after {
          -webkit-transform: translateX(-50%);
              -ms-transform: translateX(-50%);
                  transform: translateX(-50%); }
      .how-it-works .steps-list .list-item:last-child {
        margin-bottom: 0; }
        .how-it-works .steps-list .list-item:last-child:after {
          content: none; }
      @media (min-width: 768px) {
        .how-it-works .steps-list .list-item__column {
          width: 50%;
          padding: 0 30px; } }
      @media (min-width: 1200px) {
        .how-it-works .steps-list .list-item__column {
          padding: 0 65px; } }
      .how-it-works .steps-list .list-item__image-wrapper {
        position: relative;
        border-radius: 2px;
        overflow: hidden;
        padding-top: 100%;
        margin-bottom: 24px; }
        @media (min-width: 768px) {
          .how-it-works .steps-list .list-item__image-wrapper {
            margin-bottom: 0; } }
        .how-it-works .steps-list .list-item__image-wrapper img {
          position: absolute;
          top: 0;
          left: 0;
          width: 100%;
          height: auto; }
          @media (min-width: 993px) {
            .how-it-works .steps-list .list-item__image-wrapper img {
              top: 0;
              left: 0;
              -webkit-transform: none;
                  -ms-transform: none;
                      transform: none;
              height: auto; } }
      .how-it-works .steps-list .list-item__content {
        font-size: 1rem;
        line-height: 1.75; }
        .how-it-works .steps-list .list-item__content p {
          margin-bottom: 0;
          letter-spacing: .4px; }
          @media (min-width: 1200px) {
            .how-it-works .steps-list .list-item__content p {
              letter-spacing: .5px; } }
      .how-it-works .steps-list .list-item__step {
        font-size: 0.875rem;
        line-height: 1.42857;
        margin-bottom: 16px;
        display: block;
        color: #009932;
        font-weight: 700;
        font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
        letter-spacing: 0; }
        @media (min-width: 1200px) {
          .how-it-works .steps-list .list-item__step {
            font-size: 1rem;
            line-height: 1.25; } }
        .how-it-works .steps-list .list-item__step:before {
          content: attr(data-content-before) counter(step);
          counter-increment: step; }
      .how-it-works .steps-list .list-item h3 {
        margin-bottom: 10px; }
        @media (min-width: 1200px) {
          .how-it-works .steps-list .list-item h3 {
            margin-bottom: 20px; } }
    @media (min-width: 768px) {
      .how-it-works .steps-list .column-info {
        -ms-flex-item-align: center;
            align-self: center; } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.contact-information {
  padding: 80px 0 60px; }
  @media (min-width: 768px) {
    .contact-information {
      padding: 100px 0 80px; } }
  @media (min-width: 1200px) {
    .contact-information {
      padding-bottom: 100px; } }
  @media (min-width: 1501px) {
    .contact-information {
      padding: 120px 0; } }
  @media (min-width: 768px) {
    .contact-information__inner {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  .contact-information__map-wrapper {
    position: relative;
    height: 400px;
    overflow: hidden; }
    @media (min-width: 768px) {
      .contact-information__map-wrapper {
        width: calc(100% - 330px); } }
    @media (min-width: 1200px) {
      .contact-information__map-wrapper {
        width: calc(100% - 430px); } }
    .contact-information__map-wrapper img {
      position: absolute;
      top: 50%;
      right: -130px;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      height: 100%;
      max-width: none;
      width: auto; }
      @media (min-width: 768px) {
        .contact-information__map-wrapper img {
          right: -108px; } }
      @media (min-width: 993px) {
        .contact-information__map-wrapper img {
          right: 0; } }
  .contact-information h4 {
    margin-bottom: 15px; }
    @media (min-width: 768px) {
      .contact-information h4 {
        margin-bottom: 20px; } }
  .contact-information .contact-info {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 60px;
    -ms-flex-item-align: center;
        align-self: center; }
    @media (min-width: 768px) {
      .contact-information .contact-info {
        margin-bottom: 0;
        width: 330px;
        padding: 12px 60px 0 0; } }
    @media (min-width: 1200px) {
      .contact-information .contact-info {
        width: 430px;
        padding: 20px 70px 0 50px; } }
    .contact-information .contact-info__label {
      font-size: 0.875rem;
      line-height: 1.42857;
      color: #009932;
      padding-right: 23px;
      letter-spacing: 0;
      font-weight: 700;
      font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif; }
      @media (min-width: 1200px) {
        .contact-information .contact-info__label {
          font-size: 1rem;
          line-height: 1.25;
          padding-right: 16px; } }
    .contact-information .contact-info address {
      font-style: normal; }
    .contact-information .contact-info p {
      letter-spacing: .4px; }
      @media (min-width: 1200px) {
        .contact-information .contact-info p {
          letter-spacing: .5px;
          margin-bottom: 20px; } }
    .contact-information .contact-info a {
      font-size: 1rem;
      line-height: 1.75;
      letter-spacing: 0;
      font-weight: 700;
      color: #11181b;
      text-decoration: none; }
      @media (min-width: 1200px) {
        .contact-information .contact-info a {
          font-size: 1.125rem;
          line-height: 1.55556; } }
      .contact-information .contact-info a:hover {
        color: #009932; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.text-cards-grid {
  position: relative;
  padding: 60px 0 20px; }
  @media (min-width: 768px) {
    .text-cards-grid {
      padding: 80px 0 30px; } }
  @media (min-width: 1200px) {
    .text-cards-grid {
      padding: 100px 0 70px; } }
  @media (min-width: 1501px) {
    .text-cards-grid {
      padding: 120px 0 90px; } }
  .text-cards-grid__header {
    font-size: 1rem;
    line-height: 1.75;
    color: #fff;
    margin-bottom: 40px; }
    @media (min-width: 768px) {
      .text-cards-grid__header {
        margin-bottom: 50px;
        max-width: 465px; } }
    @media (min-width: 1200px) {
      .text-cards-grid__header {
        margin-bottom: 60px;
        max-width: 670px; } }
  @media (min-width: 768px) {
    .text-cards-grid__grid-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 -25px; } }
  @media (min-width: 1200px) {
    .text-cards-grid__grid-wrapper {
      margin: 0 -15px; } }
  .text-cards-grid__column {
    margin-bottom: 40px; }
    @media (min-width: 768px) {
      .text-cards-grid__column {
        padding: 0 25px;
        margin-bottom: 50px;
        width: 50%; } }
    @media (min-width: 1200px) {
      .text-cards-grid__column {
        padding: 0 15px;
        margin-bottom: 30px; } }
  .text-cards-grid h2 {
    color: #fff;
    margin-bottom: 16px; }
    @media (min-width: 1200px) {
      .text-cards-grid h2 {
        margin-bottom: 20px; } }
  .text-cards-grid .text-card-item {
    padding: 30px 20px 14px;
    background-color: #fff;
    border-radius: 2px;
    overflow: hidden;
    height: 100%; }
    @media (min-width: 768px) {
      .text-cards-grid .text-card-item {
        padding-bottom: 14px; } }
    @media (min-width: 1200px) {
      .text-cards-grid .text-card-item {
        position: relative;
        padding: 26px 40px 25px 30px; } }
    @media (min-width: 1200px) {
      .text-cards-grid .text-card-item__header {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex; } }
    .text-cards-grid .text-card-item__image-wrapper {
      width: 60px;
      height: 60px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-bottom: 20px; }
      @media (min-width: 1200px) {
        .text-cards-grid .text-card-item__image-wrapper {
          margin-bottom: 5px; } }
    @media (min-width: 1200px) {
      .text-cards-grid .text-card-item__info {
        padding-left: 90px; } }
    @media (min-width: 1200px) {
      .text-cards-grid .text-card-item.no-icon {
        padding-left: 40px; } }
    @media (min-width: 1200px) {
      .text-cards-grid .text-card-item.no-icon h4 {
        padding: 10px 0 0; } }
    .text-cards-grid .text-card-item.no-icon .text-card-item__info {
      padding-left: 0; }
    .text-cards-grid .text-card-item h4 {
      margin-bottom: 11px; }
      @media (min-width: 1200px) {
        .text-cards-grid .text-card-item h4 {
          margin-bottom: 15px;
          padding: 10px 15px 0 30px;
          max-width: calc(100% - 60px); } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.brf-contact-form {
  position: relative;
  padding: 60px 0; }
  @media (min-width: 768px) {
    .brf-contact-form {
      padding: 80px 0; } }
  @media (min-width: 1200px) {
    .brf-contact-form {
      padding: 100px 0; } }
  @media (min-width: 1501px) {
    .brf-contact-form {
      padding: 120px 0; } }
  .brf-contact-form:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: 50%;
    -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
            transform: translateX(-50%);
    width: 100vw;
    background-color: #f5f6f3;
    z-index: -1; }
  .brf-contact-form__heading {
    font-size: 1rem;
    line-height: 1.75;
    text-align: center;
    padding: 0 15px;
    max-width: 510px;
    margin: 0 auto 40px;
    letter-spacing: .4px; }
    @media (min-width: 768px) {
      .brf-contact-form__heading {
        margin-bottom: 48px; } }
    @media (min-width: 1200px) {
      .brf-contact-form__heading {
        max-width: 650px;
        margin-bottom: 60px;
        letter-spacing: .5px; } }
    .brf-contact-form__heading h3 {
      margin-bottom: 16px; }
      @media (min-width: 1200px) {
        .brf-contact-form__heading h3 {
          margin-bottom: 20px; } }
  .brf-contact-form .gform_wrapper {
    position: relative;
    padding: 30px 0 40px; }
    @media (min-width: 768px) {
      .brf-contact-form .gform_wrapper {
        max-width: 690px;
        margin: 0 auto;
        padding: 50px 80px 40px; } }
    @media (min-width: 1200px) {
      .brf-contact-form .gform_wrapper {
        max-width: 770px;
        padding: 40px 100px; } }
    .brf-contact-form .gform_wrapper:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      width: 100vw;
      background-color: #fff; }
      @media (min-width: 768px) {
        .brf-contact-form .gform_wrapper:before {
          left: 0;
          right: 0;
          width: 100%;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none; } }
    .brf-contact-form .gform_wrapper input[type="submit"] {
      padding: 15px;
      white-space: normal;
      min-width: 126px; }
    .brf-contact-form .gform_wrapper .gform_body {
      margin-bottom: 30px; }
      @media (min-width: 1200px) {
        .brf-contact-form .gform_wrapper .gform_body {
          margin-bottom: 10px; } }
    .brf-contact-form .gform_wrapper .gform_description {
      letter-spacing: .4px; }
      @media (min-width: 993px) {
        .brf-contact-form .gform_wrapper .gform_description {
          letter-spacing: .5px; } }
    .brf-contact-form .gform_wrapper .ginput_complex > span:last-of-type {
      margin-bottom: 0; }
    @media (min-width: 993px) {
      .brf-contact-form .gform_wrapper .gform_fields {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: 0 -15px; } }
    .brf-contact-form .gform_wrapper .gform_fields > li {
      position: relative;
      margin-bottom: 20px; }
      @media (min-width: 768px) {
        .brf-contact-form .gform_wrapper .gform_fields > li {
          margin-bottom: 24px; } }
      @media (min-width: 1200px) {
        .brf-contact-form .gform_wrapper .gform_fields > li {
          margin-bottom: 30px; } }
    @media (min-width: 993px) {
      .brf-contact-form .gform_wrapper .gfield {
        width: 100%;
        padding: 0 15px; } }
    @media (min-width: 993px) {
      .brf-contact-form .gform_wrapper .gf_field_half {
        width: 50%; } }
    @media (min-width: 993px) {
      .brf-contact-form .gform_wrapper .gf_field_third {
        width: 33.333%; } }
    .brf-contact-form .gform_wrapper .gform_footer {
      position: relative;
      width: 100%;
      text-align: center;
      margin-top: 0; }
      .brf-contact-form .gform_wrapper .gform_footer:before {
        content: '';
        position: absolute;
        top: 0;
        bottom: 0;
        left: 50%;
        -webkit-transform: translateX(-50%);
            -ms-transform: translateX(-50%);
                transform: translateX(-50%);
        width: 100vw;
        background-color: #fff; }
        @media (min-width: 768px) {
          .brf-contact-form .gform_wrapper .gform_footer:before {
            left: 0;
            right: 0;
            width: 100%;
            -webkit-transform: none;
                -ms-transform: none;
                    transform: none; } }
      .brf-contact-form .gform_wrapper .gform_footer input {
        position: relative; }
  .brf-contact-form .gform_confirmation_wrapper {
    position: relative;
    padding: 60px 0; }
    @media (min-width: 768px) {
      .brf-contact-form .gform_confirmation_wrapper {
        padding: 60px 110px; } }
    @media (min-width: 1200px) {
      .brf-contact-form .gform_confirmation_wrapper {
        max-width: 770px;
        margin: 0 auto;
        padding: 80px 100px 100px; } }
    .brf-contact-form .gform_confirmation_wrapper:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      width: 100vw;
      background-color: #fff; }
      @media (min-width: 768px) {
        .brf-contact-form .gform_confirmation_wrapper:before {
          left: 0;
          right: 0;
          -webkit-transform: none;
              -ms-transform: none;
                  transform: none;
          width: 100%; } }
  .brf-contact-form .gform_confirmation_message {
    position: relative;
    letter-spacing: .4px;
    text-align: center; }
    @media (min-width: 1200px) {
      .brf-contact-form .gform_confirmation_message {
        letter-spacing: .5px; } }
    .brf-contact-form .gform_confirmation_message h3 {
      margin-bottom: 10px; }
      @media (min-width: 768px) {
        .brf-contact-form .gform_confirmation_message h3 {
          margin-bottom: 16px; } }
      @media (min-width: 1200px) {
        .brf-contact-form .gform_confirmation_message h3 {
          margin-bottom: 20px; } }
    .brf-contact-form .gform_confirmation_message p:last-child {
      margin-bottom: 0; }
    .brf-contact-form .gform_confirmation_message br {
      display: none; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.brf-subscription {
  position: relative;
  padding: 80px 20px 60px;
  margin: 0 calc(50% - 50vw); }
  @media (min-width: 768px) {
    .brf-subscription {
      padding: 100px 0 80px; } }
  @media (min-width: 1200px) {
    .brf-subscription {
      padding: 100px 0; } }
  @media (min-width: 1501px) {
    .brf-subscription {
      padding: 120px 0; } }
  .brf-subscription .gform_wrapper {
    max-width: 530px;
    margin: 0 auto; }
    @media (min-width: 1200px) {
      .brf-subscription .gform_wrapper {
        max-width: 570px; } }
    .brf-subscription .gform_wrapper input[type='text'],
    .brf-subscription .gform_wrapper input[type='tel'],
    .brf-subscription .gform_wrapper input[type='email'],
    .brf-subscription .gform_wrapper input[type='search'],
    .brf-subscription .gform_wrapper input[type='number'],
    .brf-subscription .gform_wrapper input[type='password'],
    .brf-subscription .gform_wrapper textarea {
      background-color: #fff; }
    .brf-subscription .gform_wrapper input[type="submit"] {
      white-space: normal;
      min-width: 126px; }
    .brf-subscription .gform_wrapper .gform_heading {
      font-size: 1rem;
      line-height: 1.75;
      text-align: center;
      margin-bottom: 40px;
      padding: 0 15px; }
      @media (min-width: 768px) {
        .brf-subscription .gform_wrapper .gform_heading {
          padding: 0 25px;
          margin-bottom: 48px; } }
      @media (min-width: 1200px) {
        .brf-subscription .gform_wrapper .gform_heading {
          padding: 0;
          margin-bottom: 60px; } }
      .brf-subscription .gform_wrapper .gform_heading h3 {
        font-size: 1.75rem;
        line-height: 1.42857;
        margin-bottom: 16px; }
        @media (min-width: 1200px) {
          .brf-subscription .gform_wrapper .gform_heading h3 {
            font-size: 2.5rem;
            line-height: 1.35;
            margin-bottom: 20px; } }
    .brf-subscription .gform_wrapper .gform_description {
      letter-spacing: .4px; }
      @media (min-width: 993px) {
        .brf-subscription .gform_wrapper .gform_description {
          letter-spacing: .5px; } }
    .brf-subscription .gform_wrapper .ginput_complex > span:last-of-type {
      margin-bottom: 0; }
    @media (min-width: 993px) {
      .brf-subscription .gform_wrapper .gform_fields {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
        margin: 0 -15px; } }
    .brf-subscription .gform_wrapper .gfield {
      margin-bottom: 20px; }
      @media (min-width: 768px) {
        .brf-subscription .gform_wrapper .gfield {
          margin-bottom: 24px; } }
      @media (min-width: 993px) {
        .brf-subscription .gform_wrapper .gfield {
          width: 100%;
          padding: 0 15px;
          margin-bottom: 30px; } }
    @media (min-width: 993px) {
      .brf-subscription .gform_wrapper .gf_field_half {
        width: 50%; } }
    @media (min-width: 993px) {
      .brf-subscription .gform_wrapper .gf_field_third {
        width: 33.333%; } }
    .brf-subscription .gform_wrapper .gform_footer {
      width: 100%;
      text-align: center; }
      @media (min-width: 768px) {
        .brf-subscription .gform_wrapper .gform_footer {
          margin-top: 6px; } }
      @media (min-width: 1200px) {
        .brf-subscription .gform_wrapper .gform_footer {
          margin-top: 30px; } }
  .brf-subscription .gform_confirmation_wrapper {
    max-width: 480px;
    margin: 0 auto; }
    @media (min-width: 1200px) {
      .brf-subscription .gform_confirmation_wrapper {
        max-width: 640px; } }
  .brf-subscription .gform_confirmation_message {
    padding: 0 20px;
    letter-spacing: .4px;
    text-align: center; }
    @media (min-width: 1200px) {
      .brf-subscription .gform_confirmation_message {
        letter-spacing: .5px;
        padding: 80px 20px 100px; } }
    .brf-subscription .gform_confirmation_message h3 {
      margin-bottom: 10px; }
      @media (min-width: 768px) {
        .brf-subscription .gform_confirmation_message h3 {
          margin-bottom: 16px; } }
      @media (min-width: 1200px) {
        .brf-subscription .gform_confirmation_message h3 {
          margin-bottom: 20px; } }
    .brf-subscription .gform_confirmation_message p:last-child {
      margin-bottom: 0; }
    .brf-subscription .gform_confirmation_message br {
      display: none; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.members-grid {
  padding: 60px 0; }
  @media (min-width: 768px) {
    .members-grid {
      padding: 80px 0; } }
  @media (min-width: 1200px) {
    .members-grid {
      padding: 100px 0; } }
  @media (min-width: 1501px) {
    .members-grid {
      padding: 120px 0; } }
  .members-grid__title {
    margin-bottom: 16px; }
    @media (min-width: 1200px) {
      .members-grid__title {
        margin-bottom: 20px; } }
  .members-grid__heading {
    margin-bottom: 40px; }
    @media (min-width: 768px) {
      .members-grid__heading {
        margin-bottom: 50px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
    @media (min-width: 1200px) {
      .members-grid__heading {
        margin-bottom: 60px; } }
    .members-grid__heading .wp-link {
      display: none; }
      @media (min-width: 1200px) {
        .members-grid__heading .wp-link {
          display: block; } }
  @media (min-width: 768px) {
    .members-grid__description {
      -webkit-box-flex: 464px;
          -ms-flex: 464px 0 0px;
              flex: 464px 0 0; } }
  @media (min-width: 1200px) {
    .members-grid__description {
      -webkit-box-flex: 770px;
          -ms-flex: 770px 0 0px;
              flex: 770px 0 0; } }
  .members-grid__description p:last-child {
    margin: 0; }
  .members-grid__two-cards .wp-link {
    margin: 30px 0 0;
    text-align: center; }
    @media (min-width: 768px) {
      .members-grid__two-cards .wp-link {
        margin: 40px 0 0; } }
    @media (min-width: 1200px) {
      .members-grid__two-cards .wp-link {
        display: none; } }
  .members-grid__grid {
    margin: 40px 0 -20px; }
    @media (min-width: 768px) {
      .members-grid__grid {
        margin: 50px 0 -20px; } }
    @media (min-width: 1200px) {
      .members-grid__grid {
        margin: 80px 0 0; } }
    @media (min-width: 1200px) {
      .members-grid__grid .four-columns-grid {
        max-height: 988px; } }
    @media (min-width: 1200px) {
      .members-grid__grid .four-columns-grid.is-open {
        margin-bottom: -80px; } }
    .members-grid__grid .wp-link {
      display: none; }
      @media (min-width: 1200px) {
        .members-grid__grid .wp-link {
          display: block;
          margin: 60px 0 0;
          text-align: center; } }

.member-modal {
  padding: 15px 20px;
  background-color: rgba(20, 48, 56, 0.8); }
  .member-modal:before {
    backdrop-filter: none; }
  @media (min-width: 768px) {
    .member-modal {
      padding: 90px 70px; } }
  .member-modal__close {
    appearance: none;
    -moz-appearance: none;
    -webkit-appearance: none;
    position: absolute;
    top: 0;
    right: 0;
    padding: 20px;
    font-size: 0.75rem;
    line-height: 1;
    text-transform: uppercase;
    font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: bold;
    letter-spacing: 1px;
    background-color: transparent;
    border: none;
    cursor: pointer; }
    @media (min-width: 768px) {
      .member-modal__close {
        top: 10px;
        right: 10px; } }
  .member-modal .card-item__image-holder,
  .member-modal .member-card__image-holder {
    background-color: transparent; }
    .member-modal .card-item__image-holder:before,
    .member-modal .member-card__image-holder:before {
      content: none; }
    .member-modal .card-item__image-holder:hover img,
    .member-modal .member-card__image-holder:hover img {
      -webkit-transform: translate(-50%, -50%) !important;
          -ms-transform: translate(-50%, -50%) !important;
              transform: translate(-50%, -50%) !important; }
  .member-modal .tingle-modal-box {
    border-radius: 2px;
    max-width: 630px; }
    @media (min-width: 768px) {
      .member-modal .tingle-modal-box {
        width: 100%; } }
    @media (min-width: 1200px) {
      .member-modal .tingle-modal-box {
        max-width: 970px; } }
    .member-modal .tingle-modal-box__content {
      padding: 50px 20px 0 35px; }
      @media (min-width: 768px) {
        .member-modal .tingle-modal-box__content {
          padding: 60px 30px 0 60px; } }
      @media (min-width: 1200px) {
        .member-modal .tingle-modal-box__content {
          padding: 60px 40px; } }
    .member-modal .tingle-modal-box__footer {
      padding: 16px 35px 20px;
      background-color: #fff; }
      @media (min-width: 768px) {
        .member-modal .tingle-modal-box__footer {
          padding: 40px 60px 30px; } }
      @media (min-width: 1200px) {
        .member-modal .tingle-modal-box__footer {
          padding: 0; } }
  .member-modal .swiper-nav-list {
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center; }
  .member-modal .swiper-button {
    margin-right: 30px; }
    @media (min-width: 1200px) {
      .member-modal .swiper-button {
        position: absolute;
        top: 190px; } }
    @media (min-width: 1200px) {
      .member-modal .swiper-button.swiper-button-prev {
        left: -70px; } }
    @media (min-width: 1200px) {
      .member-modal .swiper-button.swiper-button-next {
        right: -70px; } }
    .member-modal .swiper-button.swiper-button-disabled {
      pointer-events: auto;
      background-color: #88969a; }
    .member-modal .swiper-button:last-child {
      margin: 0; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.archive-grid {
  padding: 60px 0; }
  @media (min-width: 768px) {
    .archive-grid {
      padding: 80px 0; } }
  @media (min-width: 993px) {
    .archive-grid {
      padding: 100px 0; } }
  @media (min-width: 1501px) {
    .archive-grid {
      padding: 120px 0; } }
  .archive-grid__heading {
    max-width: 470px;
    text-align: left; }
    @media (min-width: 993px) {
      .archive-grid__heading {
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 60px;
        max-width: 730px;
        text-align: center; } }
    .archive-grid__heading.with-filter {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin-bottom: 39px; }
      @media (min-width: 768px) {
        .archive-grid__heading.with-filter {
          margin-bottom: 50px; } }
      @media (min-width: 993px) {
        .archive-grid__heading.with-filter {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -ms-flex-wrap: wrap;
              flex-wrap: wrap;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          margin-left: 0;
          margin-bottom: 20px;
          max-width: 100%;
          text-align: left; }
          .archive-grid__heading.with-filter h2 {
            -webkit-box-flex: 1;
                -ms-flex-positive: 1;
                    flex-grow: 1;
            width: 100%; }
          .archive-grid__heading.with-filter .archive-grid__description {
            max-width: 670px; } }
    @media (min-width: 993px) and (min-width: 993px) {
      .archive-grid__heading.with-filter .archive-grid__description {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        width: 50%; } }
    .archive-grid__heading h2 {
      margin-bottom: 16px; }
      @media (min-width: 993px) {
        .archive-grid__heading h2 {
          margin-bottom: 20px; } }
  .archive-grid__description {
    font-size: 1rem;
    line-height: 1.75;
    color: #000;
    letter-spacing: .4px;
    margin-bottom: 40px; }
    @media (min-width: 993px) {
      .archive-grid__description {
        letter-spacing: .5px; } }
    .archive-grid__description p {
      letter-spacing: inherit;
      margin: 0; }
  .archive-grid__filters {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex; }
  .archive-grid__filter {
    position: relative;
    max-width: 320px;
    width: 100%; }
    .archive-grid__filter:not(:last-child) {
      margin-right: 15px; }
    @media (min-width: 993px) {
      .archive-grid__filter {
        margin-top: 6px;
        width: 170px; } }
    .archive-grid__filter .select-label {
      font-size: 0.75rem;
      line-height: 1.33333;
      background-color: #fff;
      color: #88969a;
      font-weight: 600;
      left: 13px;
      letter-spacing: .4px;
      padding: 0 3px;
      position: absolute;
      top: -10px;
      z-index: 1; }
      @media (min-width: 993px) {
        .archive-grid__filter .select-label {
          left: 16px;
          padding: 0 4px;
          top: -9px; } }
    .archive-grid__filter select {
      width: 100%; }
    .archive-grid__filter .select2.select2-container {
      border-color: #b8c0c3;
      border-radius: 4px;
      width: 100%; }
      .archive-grid__filter .select2.select2-container .select2-selection {
        height: 50px; }
        .archive-grid__filter .select2.select2-container .select2-selection__rendered {
          font-size: 0.875rem;
          line-height: 1.71429;
          color: #11181b;
          font-weight: 600;
          height: 50px;
          letter-spacing: .4px;
          padding: 11px 30px 11px 15px; }
          @media (min-width: 993px) {
            .archive-grid__filter .select2.select2-container .select2-selection__rendered {
              padding: 12px 30px 11px 18px; } }
        .archive-grid__filter .select2.select2-container .select2-selection__arrow {
          top: 50%;
          right: 13px;
          -webkit-transform: translate(0, -50%);
              -ms-transform: translate(0, -50%);
                  transform: translate(0, -50%);
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: center;
              -ms-flex-pack: center;
                  justify-content: center;
          -webkit-box-align: center;
              -ms-flex-align: center;
                  align-items: center;
          -webkit-transition: -webkit-transform 0.3s ease;
          transition: -webkit-transform 0.3s ease;
          -o-transition: transform 0.3s ease;
          transition: transform 0.3s ease;
          transition: transform 0.3s ease, -webkit-transform 0.3s ease; }
          @media (min-width: 993px) {
            .archive-grid__filter .select2.select2-container .select2-selection__arrow {
              right: 17px; } }
          .archive-grid__filter .select2.select2-container .select2-selection__arrow b {
            display: none; }
          .archive-grid__filter .select2.select2-container .select2-selection__arrow::before {
            content: '\E909';
            font: 7px/1 'icomoon'; }
  @media (min-width: 993px) {
    .archive-grid__list {
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 -15px;
      width: auto; } }
  @media (min-width: 993px) {
    .archive-grid__list.with-title-post .post-item:first-child {
      -ms-flex-preferred-size: 50%;
          flex-basis: 50%;
      max-width: 50%; } }
  @media (min-width: 993px) {
    .archive-grid__list.with-title-post .post-item:first-child .post-item__heading {
      height: 320px; } }
  .post-type-archive .archive-grid {
    padding: 0; }
    @media (min-width: 320px) and (max-width: 767px) {
      .post-type-archive .archive-grid .post-item {
        margin-bottom: 50px; } }
  .archive-grid .post-item {
    width: 270px; }
    @media (min-width: 993px) {
      .archive-grid .post-item {
        -webkit-box-flex: 0;
            -ms-flex: 0 1 25%;
                flex: 0 1 25%;
        margin-left: 0;
        margin-right: 0;
        margin-bottom: 82px;
        max-width: 25%;
        padding: 0 15px;
        width: 25%; } }
    .archive-grid .post-item__heading {
      display: block;
      font-size: 0;
      height: 225px;
      margin-bottom: 24px;
      position: relative; }
      @media (min-width: 993px) {
        .archive-grid .post-item__heading {
          height: 190px;
          margin-bottom: 30px; } }
      .archive-grid .post-item__heading img {
        border-radius: 2px;
        height: 100%;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
        width: 100%; }
      .archive-grid .post-item__heading .post-label {
        bottom: 0;
        left: 0;
        padding: 10px;
        position: absolute;
        width: 100%; }
        .archive-grid .post-item__heading .post-label span {
          font-size: 0.75rem;
          line-height: 1.5;
          background-color: #164f45;
          color: #fff;
          display: inline-block;
          font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
          font-weight: bold;
          margin-right: 10px;
          margin-top: 11px;
          padding: 3px 8px;
          text-decoration: none; }
    .archive-grid .post-item__author {
      font-size: 0.875rem;
      line-height: 1.42857;
      color: #009932;
      font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
      font-weight: bold;
      margin-bottom: 11px; }
      @media (min-width: 993px) {
        .archive-grid .post-item__author {
          font-size: 1rem;
          line-height: 1.25; } }
    .archive-grid .post-item__title {
      font-size: 1.125rem;
      line-height: 1.66667;
      display: block;
      font-weight: bold;
      margin-bottom: 10px;
      -webkit-transition: color .3s ease-in;
      -o-transition: color .3s ease-in;
      transition: color .3s ease-in; }
      .archive-grid .post-item__title:hover {
        color: #009932;
        text-decoration: none; }
      @media (min-width: 993px) {
        .archive-grid .post-item__title {
          font-size: 1.375rem;
          line-height: 1.54545;
          margin-bottom: 20px; } }
    .archive-grid .post-item__description {
      font-size: 0.875rem;
      line-height: 1.71429;
      color: #000;
      letter-spacing: .4px; }
  .archive-grid__loadmore {
    display: none;
    position: relative;
    text-align: center;
    z-index: 1; }
    @media (min-width: 993px) {
      .archive-grid__loadmore {
        display: block; } }
    .archive-grid__loadmore:hover {
      color: #6cc266; }
    .archive-grid__loadmore button {
      cursor: pointer; }
    .archive-grid__loadmore i {
      margin-left: 5px; }
  .archive-grid .js-post-list-wrapper {
    position: relative; }
    .archive-grid .js-post-list-wrapper.is-loading::after {
      content: '';
      position: absolute;
      left: 0;
      top: 0;
      right: 0;
      bottom: 0;
      background-color: rgba(255, 255, 255, 0.6);
      z-index: 1; }
  .archive-grid .nothing-found {
    margin: 0 auto; }

.animations-onComplete .archive-grid__list-wrapper {
  opacity: 1; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.upcoming-events {
  padding-top: 60px; }
  @media (min-width: 768px) {
    .upcoming-events {
      padding: 80px 0 30px; } }
  @media (min-width: 1200px) {
    .upcoming-events {
      padding: 100px 0 70px; } }
  @media (min-width: 1501px) {
    .upcoming-events {
      padding: 120px 0 90px; } }
  .upcoming-events__heading {
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 40px; }
    @media (min-width: 768px) {
      .upcoming-events__heading {
        margin-bottom: 50px;
        max-width: 470px; } }
    @media (min-width: 1200px) {
      .upcoming-events__heading {
        margin-bottom: 60px;
        max-width: 670px; } }
    .upcoming-events__heading p {
      letter-spacing: .4px; }
      @media (min-width: 993px) {
        .upcoming-events__heading p {
          letter-spacing: .5px; } }
  @media (min-width: 993px) {
    .upcoming-events__wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 -15px; } }
  @media (min-width: 768px) {
    .upcoming-events__column {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 -25px; } }
  @media (min-width: 993px) {
    .upcoming-events__column {
      display: block;
      width: 50%;
      padding: 0 15px;
      margin: 0; } }
  @media (min-width: 768px) {
    .upcoming-events__column:first-child {
      display: block;
      margin: 0; } }
  @media (min-width: 768px) {
    .upcoming-events__column:first-child .event-item {
      width: auto;
      padding: 0; } }
  @media (min-width: 993px) {
    .upcoming-events__column:first-child .event-item {
      -webkit-box-orient: horizontal;
      -webkit-box-direction: reverse;
          -ms-flex-direction: row-reverse;
              flex-direction: row-reverse; } }
  @media (min-width: 768px) {
    .upcoming-events__column:first-child .event-item__image-wrapper {
      padding-top: 56.3%; } }
  @media (min-width: 993px) {
    .upcoming-events__column:first-child .event-item__image-wrapper {
      padding-top: 143.5%; } }
  .upcoming-events__column:first-child .event-item__info {
    font-size: 1.125rem;
    line-height: 1.66667; }
    @media (min-width: 1200px) {
      .upcoming-events__column:first-child .event-item__info {
        font-size: 1.375rem;
        line-height: 1.54545; } }
    @media (min-width: 993px) {
      .upcoming-events__column:first-child .event-item__info p {
        max-height: 150px;
        overflow: hidden; } }
    @media (min-width: 1200px) {
      .upcoming-events__column:first-child .event-item__info p {
        max-height: 165px; } }
  .upcoming-events .event-item {
    margin-bottom: 58px; }
    @media (min-width: 768px) {
      .upcoming-events .event-item {
        width: 50%;
        padding: 0 25px;
        margin-bottom: 50px; } }
    @media (min-width: 993px) {
      .upcoming-events .event-item {
        width: auto;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin: 0 -15px 20px;
        padding: 0; } }
    @media (min-width: 1200px) {
      .upcoming-events .event-item {
        margin-bottom: 30px; } }
    @media (min-width: 993px) {
      .upcoming-events .event-item__column {
        width: 50%;
        padding: 0 15px; } }
    .upcoming-events .event-item__column:first-child {
      padding-top: 20px;
      border-top: 1px solid #d4d9db; }
      @media (min-width: 993px) {
        .upcoming-events .event-item__column:first-child {
          padding-top: 0;
          border-top: none; } }
    .upcoming-events .event-item__info {
      font-size: 1.125rem;
      line-height: 1.66667;
      padding-top: 16px;
      font-weight: 700; }
      @media (min-width: 993px) {
        .upcoming-events .event-item__info {
          font-size: 0.875rem;
          line-height: 1.57143;
          padding-top: 15px;
          border-top: 1px solid #d4d9db; } }
      @media (min-width: 1200px) {
        .upcoming-events .event-item__info {
          font-size: 1.125rem;
          line-height: 1.55556;
          padding-top: 20px; } }
      .upcoming-events .event-item__info p {
        margin-bottom: 30px;
        letter-spacing: 0; }
        @media (min-width: 993px) {
          .upcoming-events .event-item__info p {
            margin-bottom: 10px;
            max-height: 88px;
            overflow: hidden; } }
        @media (min-width: 1200px) {
          .upcoming-events .event-item__info p {
            max-height: 112px;
            margin-bottom: 20px; } }
        .upcoming-events .event-item__info p a:hover {
          text-decoration: none; }
    .upcoming-events .event-item__image-wrapper {
      position: relative;
      padding-top: 66.3%; }
      .upcoming-events .event-item__image-wrapper img {
        position: absolute;
        top: 0;
        left: 0;
        height: 100%;
        width: 100%; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, .brf-tabs__nav {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.brf-tabs {
  padding: 60px 0; }
  @media (min-width: 768px) {
    .brf-tabs {
      padding: 80px 0; } }
  @media (min-width: 1200px) {
    .brf-tabs {
      padding: 80px 0 100px; } }
  @media (min-width: 1501px) {
    .brf-tabs {
      padding: 100px 0 120px; } }
  .brf-tabs__title {
    margin-bottom: 16px; }
    @media (min-width: 1200px) {
      .brf-tabs__title {
        margin-bottom: 20px; } }
  .brf-tabs__heading {
    margin: 0 auto 40px;
    max-width: 464px;
    text-align: center; }
    @media (min-width: 768px) {
      .brf-tabs__heading {
        margin: 0 auto 50px; } }
    @media (min-width: 1200px) {
      .brf-tabs__heading {
        max-width: 570px;
        margin: 0 auto 77px; } }
  .brf-tabs__description {
    margin: 0; }
  @media (min-width: 1200px) {
    .brf-tabs__items-wrapper {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between; } }
  .brf-tabs__nav {
    display: none; }
    @media (min-width: 1200px) {
      .brf-tabs__nav {
        display: block;
        -webkit-box-flex: 390px;
            -ms-flex: 390px 0 0px;
                flex: 390px 0 0;
        padding-right: 60px;
        overflow: hidden; } }
  .brf-tabs__nav-item {
    margin: 0 0 42px; }
    .brf-tabs__nav-item button {
      appearance: none;
      -moz-appearance: none;
      -webkit-appearance: none;
      border: none;
      background-color: transparent;
      display: block;
      padding: 0;
      width: 100%;
      text-align: left;
      margin: 0;
      color: #88969a;
      position: relative;
      -webkit-transition: color 0.3s ease, -webkit-transform 0.3s ease;
      transition: color 0.3s ease, -webkit-transform 0.3s ease;
      -o-transition: transform 0.3s ease, color 0.3s ease;
      transition: transform 0.3s ease, color 0.3s ease;
      transition: transform 0.3s ease, color 0.3s ease, -webkit-transform 0.3s ease;
      cursor: pointer; }
      .brf-tabs__nav-item button:before {
        content: '';
        position: absolute;
        top: 14px;
        left: -60px;
        height: 1px;
        width: 40px;
        background-color: #009932; }
      .brf-tabs__nav-item button:hover {
        color: #11181b; }
      .brf-tabs__nav-item button.is-active {
        color: #11181b;
        -webkit-transform: translate3d(60px, 0, 1px);
                transform: translate3d(60px, 0, 1px); }
    .brf-tabs__nav-item:last-child {
      margin: 0; }
  @media (min-width: 1200px) {
    .brf-tabs__items {
      -ms-flex-preferred-size: calc(100% - 500px);
          flex-basis: calc(100% - 500px);
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0; } }

.brf-tab__btn {
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-color: #ebf0f2;
  border-width: 1px 0 0;
  border-style: solid;
  background-color: transparent;
  display: block;
  padding: 20px 40px 20px 0;
  min-height: 100px;
  width: 100%;
  text-align: left;
  margin: 0;
  position: relative;
  -webkit-transition: border-color 0.3s ease;
  -o-transition: border-color 0.3s ease;
  transition: border-color 0.3s ease; }
  @media (min-width: 768px) {
    .brf-tab__btn {
      min-height: auto;
      padding: 25px 40px 25px 0; } }
  @media (min-width: 1200px) {
    .brf-tab__btn {
      display: none; } }
  .brf-tab__btn:before {
    content: '';
    position: absolute;
    top: 0;
    left: calc(50% - 50vw);
    width: 100vw;
    height: 100%;
    background-color: transparent;
    z-index: -1;
    -webkit-transition: background-color 0.3s ease;
    -o-transition: background-color 0.3s ease;
    transition: background-color 0.3s ease; }
  .brf-tab__btn:after {
    display: block;
    font-family: 'icomoon' !important;
    content: '\E901';
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 24px;
    width: 24px;
    height: 24px;
    -webkit-transform-origin: 50%;
        -ms-transform-origin: 50%;
            transform-origin: 50%;
    -webkit-transform: rotate(-90deg) translate(50%, 0);
        -ms-transform: rotate(-90deg) translate(50%, 0);
            transform: rotate(-90deg) translate(50%, 0);
    -webkit-transition: -webkit-transform 0.3 ease;
    transition: -webkit-transform 0.3 ease;
    -o-transition: transform 0.3 ease;
    transition: transform 0.3 ease;
    transition: transform 0.3 ease, -webkit-transform 0.3 ease;
    color: #143038;
    position: absolute;
    top: 50%;
    right: -5px; }

.brf-tab__wrapper {
  padding: 30px 0;
  display: none; }
  @media (min-width: 1200px) {
    .brf-tab__wrapper {
      padding: 0; } }

.brf-tab__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 10px; }
  @media (min-width: 1200px) {
    .brf-tab__heading {
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      margin-bottom: 30px; } }
  .brf-tab__heading img {
    max-height: 60px;
    -webkit-box-flex: 60px;
        -ms-flex: 60px 0 0px;
            flex: 60px 0 0; }
    @media (min-width: 1200px) {
      .brf-tab__heading img {
        margin-right: 30px; } }

.brf-tab__title {
  -ms-flex-preferred-size: calc(100% - 80px);
      flex-basis: calc(100% - 80px);
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  margin: 0;
  color: #009932; }
  @media (min-width: 1200px) {
    .brf-tab__title {
      -ms-flex-preferred-size: 510px;
          flex-basis: 510px; } }

.brf-tab__content p:last-child {
  margin: 0; }

.brf-tab:last-child .brf-tab__btn {
  border-width: 1px 0 1px; }

.brf-tab:last-child .brf-tab__wrapper {
  border-bottom: 1px solid #ebf0f2; }
  @media (min-width: 1200px) {
    .brf-tab:last-child .brf-tab__wrapper {
      border: none; } }

.brf-tab.is-open .brf-tab__btn {
  border-color: transparent; }
  .brf-tab.is-open .brf-tab__btn:before {
    background-color: #e1f6e8; }
  .brf-tab.is-open .brf-tab__btn:after {
    -webkit-transform: rotate(90deg) translate(-50%, 0);
        -ms-transform: rotate(90deg) translate(-50%, 0);
            transform: rotate(90deg) translate(-50%, 0); }

.brf-tab.is-open .brf-tab__wrapper {
  display: block; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.article-intro {
  background-color: #f5f6f3;
  margin: 0 0 30px;
  padding: 30px 20px; }
  @media (min-width: 768px) {
    .article-intro {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin: 0 0 40px;
      padding: 50px 39px; } }
  @media (min-width: 993px) {
    .article-intro {
      margin: 0 0 60px;
      padding: 40px 50px; } }
  .article-intro__image {
    border-radius: 2px;
    font-size: 0;
    margin-bottom: 30px;
    overflow: hidden;
    text-align: center; }
    @media (min-width: 768px) {
      .article-intro__image {
        -ms-flex-preferred-size: 310px;
            flex-basis: 310px;
        margin-bottom: 0; } }
    @media (min-width: 993px) {
      .article-intro__image {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 400px;
                flex: 1 0 400px; } }
  .article-intro__text {
    font-size: 1rem;
    line-height: 1.75;
    color: #000;
    letter-spacing: .4px; }
    @media (min-width: 768px) {
      .article-intro__text {
        -ms-flex-preferred-size: 322px;
            flex-basis: 322px;
        margin-top: 2px;
        margin-left: 60px; } }
    @media (min-width: 993px) {
      .article-intro__text {
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
        letter-spacing: .5px;
        margin-left: 70px;
        width: 65%; } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.article-picture {
  padding: 15px 0 30px; }
  @media (min-width: 768px) {
    .article-picture {
      -webkit-box-align: end;
          -ms-flex-align: end;
              align-items: flex-end;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      padding: 14px 0 31px; } }
  @media (min-width: 993px) {
    .article-picture {
      padding: 20px 0 40px; } }
  .article-picture__image {
    border-radius: 2px;
    font-size: 0;
    margin-bottom: 24px;
    overflow: hidden;
    text-align: center; }
    @media (min-width: 768px) {
      .article-picture__image {
        -ms-flex-preferred-size: 310px;
            flex-basis: 310px;
        -ms-flex-negative: 0;
            flex-shrink: 0;
        margin-bottom: 0; } }
    @media (min-width: 993px) {
      .article-picture__image {
        -webkit-box-flex: 1;
            -ms-flex: 1 0 400px;
                flex: 1 0 400px; } }
  .article-picture__text {
    font-size: 1rem;
    line-height: 1.75;
    color: #000; }
    @media (min-width: 768px) {
      .article-picture__text {
        -ms-flex-preferred-size: 80%;
            flex-basis: 80%;
        margin-top: 2px;
        margin-left: 30px; } }
    .article-picture__text .heading {
      font-size: 0.75rem;
      line-height: 1.83333;
      font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
      font-weight: bold;
      margin-bottom: 11px; }
      @media (min-width: 993px) {
        .article-picture__text .heading {
          margin-bottom: 8px; } }
    .article-picture__text .description {
      font-size: 0.75rem;
      line-height: 1.83333; }
      @media (min-width: 993px) {
        .article-picture__text .description {
          font-size: 0.75rem;
          line-height: 1.66667; } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, .header__search-drop .search-drop__list, .header__search-drop .search-drop__wrap_suggested ul, .header__navigation ul {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.topbar {
  margin: 0 calc(50% - 50vw); }
  @media (min-width: 768px) {
    .topbar {
      margin: 0 calc((730px / 2) - $container-gap - 50vw); } }
  @media (min-width: 993px) {
    .topbar {
      margin: 0 calc((1000px / 2) - $container-gap - 50vw); } }
  @media (min-width: 1200px) {
    .topbar {
      margin: 0 calc((1210px / 2) - $container-gap - 50vw); } }

body.is-menu-open {
  height: 100vh;
  overflow: hidden; }

.topbar {
  background-color: #164f45;
  height: 0;
  overflow: hidden; }
  @media (min-width: 993px) {
    .topbar {
      -ms-flex-preferred-size: 40px;
          flex-basis: 40px;
      -ms-flex-negative: 0;
          flex-shrink: 0;
      height: auto; } }
  .topbar__inner {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
  .topbar__item {
    font-size: 0.75rem;
    line-height: 1.66667;
    border-top: 2px solid #6cc266;
    color: #6cc266;
    display: block;
    font-weight: 600;
    letter-spacing: 1px;
    margin-left: 30px;
    padding: 9px 0;
    text-transform: uppercase; }
    .topbar__item-link {
      border-top-color: transparent;
      color: #fff; }
      .topbar__item-link:hover {
        color: #6cc266;
        text-decoration: none; }
      .topbar__item-link:after {
        font-size: 1.125rem;
        line-height: 1.11111;
        content: "\E908";
        display: inline-block;
        font-family: 'icomoon' !important;
        font-weight: normal;
        margin-left: 8px;
        -webkit-transform: translateY(-1px);
            -ms-transform: translateY(-1px);
                transform: translateY(-1px);
        vertical-align: bottom; }

.header {
  background-color: #fff;
  color: #143038;
  height: 78px;
  overflow: hidden;
  position: absolute;
  top: 0;
  -webkit-transition: background-color .3s ease, -webkit-transform .2s ease;
  transition: background-color .3s ease, -webkit-transform .2s ease;
  -o-transition: transform .2s ease, background-color .3s ease;
  transition: transform .2s ease, background-color .3s ease;
  transition: transform .2s ease, background-color .3s ease, -webkit-transform .2s ease;
  width: 100%;
  z-index: 10;
  /**
  * Header Search
  */
  /**
  * Header Menu
  */ }
  @media (min-width: 993px) {
    .header {
      height: 88px;
      overflow: visible;
      top: 40px; }
      .header + .overlay {
        background-color: rgba(20, 48, 56, 0.2);
        display: block;
        height: 100vh;
        left: 0;
        opacity: 0;
        position: fixed;
        top: 50px;
        -webkit-transition: opacity .3s ease;
        -o-transition: opacity .3s ease;
        transition: opacity .3s ease;
        width: 100%;
        z-index: -1; }
        .header + .overlay.is-anim {
          z-index: 3; }
      .header.is-hover + .overlay {
        height: 100vh;
        opacity: 1; } }
  .home .header {
    background-color: transparent;
    color: #fff; }
    @media (min-width: 993px) {
      .home .header.is-hover {
        background-color: #fff;
        color: #143038; }
        .home .header.is-hover .header__logo-inner_hp {
          opacity: 0; }
          .home .header.is-hover .header__logo-inner_hp + .header__logo-inner {
            opacity: 1; }
        .home .header.is-hover .menu-item {
          color: #143038; }
          .home .header.is-hover .menu-item:hover {
            color: #009932; } }
    .home .header .header__menu-btn span, .home .header .header__menu-btn:before, .home .header .header__menu-btn:after {
      background-color: #fff; }
    @media (min-width: 993px) {
      .home .header .header__menu .menu-item.is-open > .sub-menu {
        padding-top: 15px; } }
  .header.is-fixed {
    background: #fff;
    border-bottom: 1px solid #d4d9db;
    color: #143038;
    left: 0;
    position: fixed;
    top: 0;
    -webkit-transform: translate3d(0, -100%, 1px);
            transform: translate3d(0, -100%, 1px); }
    .header.is-fixed .header__logo-inner {
      -webkit-transform: scale(1);
          -ms-transform: scale(1);
              transform: scale(1); }
      .header.is-fixed .header__logo-inner_hp {
        -webkit-transform: scale(1);
            -ms-transform: scale(1);
                transform: scale(1); }
    .header.is-fixed .header__menu-btn span, .header.is-fixed .header__menu-btn:before, .header.is-fixed .header__menu-btn:after {
      background-color: #000; }
    .header.is-fixed .header__toprow-donate {
      opacity: 1;
      z-index: 1; }
    @media (min-width: 993px) {
      .header.is-fixed .header__menu-donate {
        display: block; } }
  .header.is-visible {
    -webkit-transform: translate3d(0, 0, 1px);
            transform: translate3d(0, 0, 1px); }
  .header.is-expanded {
    background-color: #fff;
    color: #143038;
    height: 100%;
    position: fixed; }
    @media (min-width: 993px) {
      .header.is-expanded {
        height: initial; } }
    .header.is-expanded .header__logo-inner {
      -webkit-transform: scale(1.32);
          -ms-transform: scale(1.32);
              transform: scale(1.32); }
      @media (min-width: 768px) {
        .header.is-expanded .header__logo-inner {
          -webkit-transform: scale(1);
              -ms-transform: scale(1);
                  transform: scale(1); } }
      @media (min-width: 993px) {
        .header.is-expanded .header__logo-inner {
          -webkit-transform: scale(1.69);
              -ms-transform: scale(1.69);
                  transform: scale(1.69); } }
    .header.is-expanded .header__menu-btn {
      -webkit-transform: translate3d(5px, 0, 1px);
              transform: translate3d(5px, 0, 1px); }
      .header.is-expanded .header__menu-btn span, .header.is-expanded .header__menu-btn:before, .header.is-expanded .header__menu-btn:after {
        background-color: #000;
        border-radius: .8px;
        height: 2px;
        -webkit-transform: rotate(45deg);
            -ms-transform: rotate(45deg);
                transform: rotate(45deg); }
      .header.is-expanded .header__menu-btn:before {
        top: calc(50% - 1px); }
      .header.is-expanded .header__menu-btn:after {
        top: calc(50% - 1px);
        -webkit-transform: rotate(-45deg);
            -ms-transform: rotate(-45deg);
                transform: rotate(-45deg); }
    .header.is-expanded .header__toprow-donate {
      opacity: 0;
      z-index: -1; }
  .header.is-fixed .header__logo-inner_hp, .header.is-expanded .header__logo-inner_hp {
    opacity: 0; }
    .header.is-fixed .header__logo-inner_hp + .header__logo-inner, .header.is-expanded .header__logo-inner_hp + .header__logo-inner {
      opacity: 1; }
  .header.is-submenu .header__expand {
    opacity: 1; }
  .header.is-submenu .header__navigation__menu > .menu-item:not(:hover),
  .header.is-submenu .header__search__icon_lens {
    color: #88969a; }
  .header.is-search + .overlay {
    height: 100vh;
    opacity: 1;
    top: 50px;
    z-index: 3; }
  @media (min-width: 993px) {
    .header.is-search .header__expand {
      opacity: 1;
      -webkit-transition: none;
      -o-transition: none;
      transition: none; } }
  @media (min-width: 993px) {
    .header.is-search .header__menu,
    .header.is-search .header__menu-donate {
      display: none; } }
  .header__expand {
    background-color: inherit;
    display: none;
    height: 0;
    left: 0;
    position: absolute;
    top: 100%;
    width: 100%;
    z-index: 1; }
    @media (min-width: 993px) {
      .header__expand {
        display: block;
        -webkit-transition: opacity .1s ease-in, height .1s ease-in;
        -o-transition: opacity .1s ease-in, height .1s ease-in;
        transition: opacity .1s ease-in, height .1s ease-in;
        opacity: 0; } }
  .header .container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    height: 100%;
    position: relative; }
    @media (min-width: 993px) {
      .header .container {
        -webkit-box-align: start;
            -ms-flex-align: start;
                align-items: flex-start;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        height: auto;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
  .header__toprow {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 7px;
    min-height: 78px;
    padding: 10px 0 5px; }
    @media (min-width: 768px) {
      .header__toprow {
        padding-top: 12px; } }
    @media (min-width: 993px) {
      .header__toprow {
        padding-top: 20px;
        padding-left: 0; } }
    .header__toprow-donate {
      margin: 0 30px 5px auto; }
      @media (min-width: 768px) {
        .header__toprow-donate {
          margin-right: 40px; } }
      @media (min-width: 993px) {
        .header__toprow-donate {
          display: none; } }
      .header__toprow-donate .wp-block-button__link {
        font-weight: 500;
        letter-spacing: 1px;
        padding: 10px;
        position: relative;
        width: 98px; }
  .header__logo {
    -ms-flex-preferred-size: 130px;
        flex-basis: 130px;
    margin-right: 10px;
    position: relative; }
    @media (min-width: 768px) {
      .header__logo {
        -ms-flex-preferred-size: auto;
            flex-basis: auto;
        margin-right: 0; } }
    .header__logo-inner {
      display: block;
      -webkit-transform: transform .3s ease;
          -ms-transform: transform .3s ease;
              transform: transform .3s ease;
      -webkit-transform-origin: left center;
          -ms-transform-origin: left center;
              transform-origin: left center;
      width: 100%;
      -webkit-transition: -webkit-transform .3s ease-in;
      transition: -webkit-transform .3s ease-in;
      -o-transition: transform .3s ease-in;
      transition: transform .3s ease-in;
      transition: transform .3s ease-in, -webkit-transform .3s ease-in; }
      @media (min-width: 768px) {
        .header__logo-inner {
          width: 172px; } }
      @media (min-width: 993px) {
        .header__logo-inner {
          width: 160px;
          -webkit-transform: scale(1);
              -ms-transform: scale(1);
                  transform: scale(1); } }
      .header__logo-inner img {
        width: 100%; }
      .header__logo-inner_hp {
        height: 100%;
        left: 0;
        position: absolute;
        top: 0;
        -webkit-transform-origin: left center;
            -ms-transform-origin: left center;
                transform-origin: left center;
        width: 100%; }
        @media (min-width: 768px) {
          .header__logo-inner_hp {
            -webkit-transform: scale(1);
                -ms-transform: scale(1);
                    transform: scale(1); } }
        .header__logo-inner_hp + .header__logo-inner {
          opacity: 0; }
        .header__logo-inner_hp img {
          width: 100%; }
  .header__menu-btn {
    background-color: transparent;
    border: none;
    cursor: pointer;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    height: 20px;
    margin-bottom: 5px;
    padding: 0;
    position: relative;
    width: 28px; }
    @media (min-width: 993px) {
      .header__menu-btn {
        display: none; } }
    .header__menu-btn span, .header__menu-btn:before, .header__menu-btn:after {
      background-color: #000;
      border-radius: 2px;
      display: block;
      height: 3px;
      -webkit-transition: background-color .3s ease;
      -o-transition: background-color .3s ease;
      transition: background-color .3s ease;
      width: 100%; }
    .header__menu-btn:before, .header__menu-btn:after {
      content: "";
      left: 0;
      position: absolute; }
    .header__menu-btn:before {
      top: 0; }
    .header__menu-btn:after {
      bottom: 0; }
  .header__alignright {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    height: 100%;
    padding-top: 10px;
    position: relative; }
    @media (min-width: 993px) {
      .header__alignright {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-orient: horizontal;
        -webkit-box-direction: normal;
            -ms-flex-direction: row;
                flex-direction: row;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end;
        overflow: visible;
        padding-top: 20px; } }
  .header__search {
    margin-bottom: 40px;
    position: relative; }
    @media (min-width: 993px) {
      .header__search {
        position: static; } }
    .header__search.is-active:after {
      background-color: #11181b;
      content: "";
      display: block;
      height: 100vh;
      left: calc(50% - 50vw);
      opacity: .8;
      position: absolute;
      top: 100%;
      width: 100vw;
      z-index: 1; }
      @media (min-width: 993px) {
        .header__search.is-active:after {
          display: none; } }
    .header__search.is-active .header__search__icon_close {
      display: block; }
    .header__search.is-active .search-drop {
      display: block; }
    .header__search.is-result:after {
      display: none; }
    .header__search.is-result .search-drop {
      display: block;
      height: calc(100vh - 183px);
      overflow: auto; }
      @media (min-width: 993px) {
        .header__search.is-result .search-drop {
          height: auto;
          max-height: 70vh; } }
      .header__search.is-result .search-drop__wrap_quik {
        display: none; }
      .header__search.is-result .search-drop__wrap_suggested {
        display: block; }
    @media (min-width: 993px) {
      .header__search.is-shown .header__search__form {
        opacity: 1;
        z-index: 1; }
      .header__search.is-shown .header__search__icon_lens {
        display: none; }
      .header__search.is-shown .header__search__icon_close {
        display: block; } }
    @media (min-width: 993px) {
      .header__search {
        margin-bottom: 0;
        -webkit-box-ordinal-group: 3;
            -ms-flex-order: 2;
                order: 2; } }
    .header__search__icon_lens {
      background-color: transparent;
      border: none;
      color: inherit;
      cursor: pointer;
      display: none;
      padding: 0;
      font-size: 18px;
      line-height: 1;
      -webkit-transition: color .3s ease;
      -o-transition: color .3s ease;
      transition: color .3s ease; }
      @media (min-width: 993px) {
        .header__search__icon_lens {
          display: block; } }
      .header__search__icon_lens:hover {
        color: #009932; }
    .header__search__icon_close {
      background-color: #88969a;
      border-radius: 50%;
      color: #fff;
      cursor: pointer;
      display: none;
      font-size: 10px;
      height: 18px;
      position: absolute;
      right: 20px;
      text-align: center;
      top: 8px;
      width: 18px; }
      .header__search__icon_close i {
        font-size: 0.4375rem;
        line-height: 1;
        display: inline-block; }
      @media (min-width: 993px) {
        .header__search__icon_close {
          background-color: transparent;
          color: #11181b;
          height: 20px;
          position: absolute;
          right: 0;
          top: 34px;
          width: 20px;
          z-index: 2; }
          .header__search__icon_close i {
            font-size: 1.25rem;
            line-height: 1; } }
    .header__search__form {
      width: 100%; }
      @media (min-width: 993px) {
        .header__search__form {
          height: 100%;
          opacity: 0;
          padding: 0 40px 0 20px;
          position: absolute;
          right: 0;
          top: 19px;
          -webkit-transition: opacity .2s ease;
          -o-transition: opacity .2s ease;
          transition: opacity .2s ease;
          width: 640px;
          z-index: -1; } }
      @media (min-width: 1200px) {
        .header__search__form {
          width: 800px; } }
      .header__search__form .form-input-wrapper input {
        font-size: 1rem;
        line-height: 2.375;
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #d4d9db;
        border-radius: 0;
        font-weight: 600;
        height: 38px;
        letter-spacing: .4px;
        padding: 0 0 3px;
        width: 100%; }
        .header__search__form .form-input-wrapper input::-ms-clear {
          display: none; }
        .header__search__form .form-input-wrapper input::-webkit-input-placeholder {
          font-size: 1rem;
          line-height: 2.375;
          color: #88969a;
          font-weight: 500;
          opacity: 1; }
        .header__search__form .form-input-wrapper input::-moz-placeholder {
          opacity: 1;
          font-size: 1rem;
          line-height: 2.375;
          color: #88969a;
          font-weight: 500;
          opacity: 1; }
        .header__search__form .form-input-wrapper input:-moz-placeholder {
          font-size: 1rem;
          line-height: 2.375;
          color: #88969a;
          font-weight: 500;
          opacity: 1; }
        .header__search__form .form-input-wrapper input:-ms-input-placeholder {
          font-size: 1rem;
          line-height: 2.375;
          color: #88969a;
          font-weight: 500;
          opacity: 1; }
        .header__search__form .form-input-wrapper input.placeholder {
          font-size: 1rem;
          line-height: 2.375;
          color: #88969a;
          font-weight: 500;
          opacity: 1; }
        @media (min-width: 993px) {
          .header__search__form .form-input-wrapper input {
            font-size: 0.875rem;
            line-height: 1.71429;
            height: 50px; }
            .header__search__form .form-input-wrapper input::-webkit-input-placeholder {
              font-size: 0.875rem;
              line-height: 1.71429; }
            .header__search__form .form-input-wrapper input::-moz-placeholder {
              opacity: 1;
              font-size: 0.875rem;
              line-height: 1.71429; }
            .header__search__form .form-input-wrapper input:-moz-placeholder {
              font-size: 0.875rem;
              line-height: 1.71429; }
            .header__search__form .form-input-wrapper input:-ms-input-placeholder {
              font-size: 0.875rem;
              line-height: 1.71429; }
            .header__search__form .form-input-wrapper input.placeholder {
              font-size: 0.875rem;
              line-height: 1.71429; } }
      .header__search__form .search-submit {
        display: none; }
    .header__search-drop {
      background-color: #fff;
      display: none;
      left: 0;
      padding: 25px 0 17px;
      position: absolute;
      top: 100%;
      width: 100%;
      z-index: 2; }
      @media (min-width: 993px) {
        .header__search-drop {
          left: auto;
          padding: 25px 20px 8px;
          right: 0;
          top: 74px;
          width: 640px; } }
      @media (min-width: 1200px) {
        .header__search-drop {
          width: 800px; } }
      .header__search-drop .search-drop__title {
        font-size: 0.75rem;
        line-height: 1.66667;
        color: #009932;
        font-weight: bold;
        letter-spacing: .5px;
        margin-bottom: 15px;
        text-transform: uppercase; }
      .header__search-drop .search-drop__list {
        padding-left: 20px; }
        .header__search-drop .search-drop__list li {
          margin-bottom: 14px; }
        .header__search-drop .search-drop__list a {
          font-size: 0.875rem;
          line-height: 1.71429;
          color: #000; }
          .header__search-drop .search-drop__list a:hover {
            color: #009932;
            text-decoration: none; }
      .header__search-drop .search-drop__wrap_quik {
        position: relative; }
        .header__search-drop .search-drop__wrap_quik:before, .header__search-drop .search-drop__wrap_quik:after {
          background-color: #fff;
          content: "";
          display: block;
          height: calc(100% + 56px);
          position: absolute;
          top: -25px;
          width: calc(50vw - 50%); }
          @media (min-width: 993px) {
            .header__search-drop .search-drop__wrap_quik:before, .header__search-drop .search-drop__wrap_quik:after {
              display: none; } }
        .header__search-drop .search-drop__wrap_quik:before {
          right: 100%; }
        .header__search-drop .search-drop__wrap_quik:after {
          left: 100%; }
      .header__search-drop .search-drop__wrap_suggested {
        display: none; }
        .header__search-drop .search-drop__wrap_suggested ul {
          padding-right: 20px; }
          .header__search-drop .search-drop__wrap_suggested ul li {
            font-size: 1.125rem;
            line-height: 1.66667;
            color: #11181b;
            border-bottom: 1px solid #ebf0f2;
            margin-bottom: 24px;
            padding: 6px 0 30px; }
            @media (min-width: 993px) {
              .header__search-drop .search-drop__wrap_suggested ul li {
                font-size: 0.875rem;
                line-height: 1.71429;
                margin-bottom: 20px;
                padding: 0 0 20px; } }
            .header__search-drop .search-drop__wrap_suggested ul li a {
              color: #11181b;
              display: block;
              font-weight: bold; }
              .header__search-drop .search-drop__wrap_suggested ul li a:hover {
                color: #009932;
                text-decoration: none; }
  .header__menu {
    -webkit-box-flex: 1;
        -ms-flex-positive: 1;
            flex-grow: 1;
    overflow: hidden;
    padding-bottom: 75px; }
    @media (min-width: 768px) {
      .header__menu {
        -webkit-box-pack: end;
            -ms-flex-pack: end;
                justify-content: flex-end; } }
    @media (min-width: 993px) {
      .header__menu {
        -ms-flex-preferred-size: 630px;
            flex-basis: 630px;
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -webkit-box-pack: start;
            -ms-flex-pack: start;
                justify-content: flex-start;
        margin: 0 7px 0 0;
        overflow: visible;
        padding: 0; } }
    @media (min-width: 1200px) {
      .header__menu {
        -ms-flex-preferred-size: 740px;
            flex-basis: 740px; } }
  .header__navigation {
    max-height: 100%;
    overflow: auto;
    padding-bottom: 75px; }
    @media (min-width: 993px) {
      .header__navigation {
        overflow: visible;
        padding: 0; } }
    .header__navigation__menu {
      padding: 0; }
      @media (min-width: 993px) {
        .header__navigation__menu {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-pack: end;
              -ms-flex-pack: end;
                  justify-content: flex-end; } }
      @media (min-width: 1200px) {
        .header__navigation__menu {
          -webkit-box-pack: start;
              -ms-flex-pack: start;
                  justify-content: flex-start; } }
      .header__navigation__menu > .menu-item {
        margin-bottom: 24px; }
        @media (min-width: 993px) {
          .header__navigation__menu > .menu-item {
            margin-bottom: 0; } }
        .header__navigation__menu > .menu-item > a {
          font-size: 1.125rem;
          line-height: 1.55556; }
          @media (min-width: 993px) {
            .header__navigation__menu > .menu-item > a {
              display: inline-block;
              text-align: center;
              padding: 0 7px; } }
          @media (min-width: 1200px) {
            .header__navigation__menu > .menu-item > a {
              padding: 0 15px; } }
        .header__navigation__menu > .menu-item.menu-item-has-children.is-open {
          color: #009932;
          margin-bottom: 10px; }
          @media (min-width: 993px) {
            .header__navigation__menu > .menu-item.menu-item-has-children.is-open {
              margin-bottom: 0; } }
          .header__navigation__menu > .menu-item.menu-item-has-children.is-open > a:after {
            -webkit-transform: rotate(90deg);
                -ms-transform: rotate(90deg);
                    transform: rotate(90deg); }
          .header__navigation__menu > .menu-item.menu-item-has-children.is-open .sub-menu {
            height: auto;
            color: #143038; }
          .header__navigation__menu > .menu-item.menu-item-has-children.is-open > .sub-menu {
            padding-top: 24px;
            opacity: 1; }
            @media (min-width: 993px) {
              .header__navigation__menu > .menu-item.menu-item-has-children.is-open > .sub-menu {
                padding-top: 13px; } }
        .header__navigation__menu > .menu-item.menu-item-has-children > a:after {
          font-size: 1.3125rem;
          line-height: 1.04762;
          color: inherit;
          content: "\E901";
          display: inline-block;
          font-family: 'icomoon' !important;
          margin-left: 10px;
          -webkit-transform: rotate(-90deg);
              -ms-transform: rotate(-90deg);
                  transform: rotate(-90deg);
          vertical-align: bottom; }
          @media (min-width: 993px) {
            .header__navigation__menu > .menu-item.menu-item-has-children > a:after {
              display: none; } }
      .header__navigation__menu .menu-item {
        position: relative; }
        .header__navigation__menu .menu-item:hover, .header__navigation__menu .menu-item:focus, .header__navigation__menu .menu-item.current-menu-ancestor, .header__navigation__menu .menu-item.current-menu-item {
          color: #009932; }
        .header__navigation__menu .menu-item a {
          font-weight: 600;
          letter-spacing: .4px;
          -webkit-transition: color .3s ease;
          -o-transition: color .3s ease;
          transition: color .3s ease; }
          .header__navigation__menu .menu-item a:hover, .header__navigation__menu .menu-item a:focus {
            text-decoration: none; }
          @media (min-width: 993px) {
            .header__navigation__menu .menu-item a {
              font-size: 0.8125rem;
              line-height: 1.84615; } }
          @media (min-width: 1200px) {
            .header__navigation__menu .menu-item a {
              font-size: 0.875rem;
              line-height: 1.71429;
              letter-spacing: .3px; } }
        .header__navigation__menu .menu-item > a {
          color: inherit; }
        .header__navigation__menu .menu-item_external a:after {
          font-size: 1.0625rem;
          line-height: 1;
          content: "\E908";
          font-family: 'icomoon' !important;
          margin-left: 5px; }
        @media (min-width: 993px) {
          .header__navigation__menu .menu-item_external {
            display: none; } }
      .header__navigation__menu .sub-menu {
        color: #009932;
        height: 0;
        overflow: hidden;
        padding-left: 20px; }
        @media (min-width: 993px) {
          .header__navigation__menu .sub-menu {
            left: 0;
            opacity: 0;
            padding-left: 14px;
            position: absolute;
            top: 100%;
            -webkit-transition: opacity .1s ease-in .1s;
            -o-transition: opacity .1s ease-in .1s;
            transition: opacity .1s ease-in .1s;
            width: 230px;
            z-index: 2; } }
        .header__navigation__menu .sub-menu > .menu-item {
          margin-bottom: 15px; }
          .header__navigation__menu .sub-menu > .menu-item.menu-item-has-children {
            margin-bottom: 0; }
        .header__navigation__menu .sub-menu a {
          font-size: 0.875rem;
          line-height: 1.85714; }
          .header__navigation__menu .sub-menu a:after {
            display: none; }
        .header__navigation__menu .sub-menu .sub-menu {
          height: auto;
          padding: 16px 0 0 30px;
          opacity: 1; }
          @media (min-width: 993px) {
            .header__navigation__menu .sub-menu .sub-menu {
              margin-bottom: 7px;
              padding: 7px 0 0 20px;
              position: static; } }
          .header__navigation__menu .sub-menu .sub-menu > .menu-item {
            margin-bottom: 16px; }
            @media (min-width: 993px) {
              .header__navigation__menu .sub-menu .sub-menu > .menu-item {
                margin-bottom: 6px; } }
          .header__navigation__menu .sub-menu .sub-menu a {
            font-size: 0.875rem;
            line-height: 1.71429;
            font-weight: normal; }
            @media (min-width: 993px) {
              .header__navigation__menu .sub-menu .sub-menu a {
                font-size: 0.75rem;
                line-height: 1.66667; } }
  .header__menu-donate {
    bottom: 0;
    left: 0;
    -webkit-transform: translate3d(0, 101%, 1px);
            transform: translate3d(0, 101%, 1px);
    width: 100%; }
    .is-expanded .header__menu-donate {
      position: fixed;
      -webkit-transform: translate3d(0, 0, 1px);
              transform: translate3d(0, 0, 1px); }
    @media (min-width: 993px) {
      .header__menu-donate {
        margin-left: 30px;
        -webkit-box-ordinal-group: 4;
            -ms-flex-order: 3;
                order: 3;
        position: static;
        -webkit-transform: translate3d(0, 0, 1px);
                transform: translate3d(0, 0, 1px);
        width: 110px; } }
    .header__menu-donate .wp-block-button__link {
      border-radius: 0;
      color: #fff;
      display: block;
      width: 100%; }
      @media (min-width: 993px) {
        .header__menu-donate .wp-block-button__link {
          border-radius: 4px;
          padding: 12px; } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, .footer__menu-holder, .footer__logo-list, .footer .sub-menu, .footer .copyrights-list, .footer .social-networks-list {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.footer {
  position: relative;
  background-color: #08313a;
  padding-top: 50px;
  font-weight: 500;
  overflow: hidden;
  z-index: 1; }
  @media (min-width: 768px) {
    .footer {
      padding-top: 60px; } }
  .footer__logo {
    display: block;
    width: 180px;
    margin-bottom: 40px; }
    @media (min-width: 768px) {
      .footer__logo {
        width: 188px;
        margin-bottom: 0; } }
    .footer__logo img {
      display: block;
      width: 100%; }
  @media (min-width: 768px) {
    .footer__top-row {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -webkit-box-pack: justify;
          -ms-flex-pack: justify;
              justify-content: space-between;
      margin-bottom: 50px; } }
  .footer__btn-box {
    margin-bottom: 35px; }
    @media (min-width: 768px) {
      .footer__btn-box {
        padding-left: 30px;
        margin: 0 -10px;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center; } }
    .footer__btn-box .wp-block-button__link {
      margin-bottom: 10px;
      width: 100%; }
      @media (min-width: 768px) {
        .footer__btn-box .wp-block-button__link {
          width: auto;
          margin: 0 10px; } }
  .footer__navigation-holder {
    margin-bottom: 50px; }
    @media (min-width: 993px) {
      .footer__navigation-holder {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        margin-bottom: 20px; } }
    .footer__navigation-holder h5 {
      font-size: 12px;
      margin-bottom: 10px;
      font-weight: 500;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.5); }
      @media (min-width: 768px) {
        .footer__navigation-holder h5 {
          font-size: 12px;
          margin-bottom: 14px; } }
  @media (min-width: 993px) {
    .footer__menu-col {
      max-width: calc(100% - 370px);
      width: 100%;
      padding-right: 50px; } }
  .footer__newsletter-col {
    max-width: 370px;
    width: 100%; }
  @media (min-width: 768px) {
    .footer__menu-holder {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 -20px; } }
  @media (min-width: 1200px) {
    .footer__menu-holder {
      margin: 0 -35px; } }
  .footer__menu-holder > li {
    margin-bottom: 37px; }
    @media (min-width: 768px) {
      .footer__menu-holder > li {
        padding: 0 20px;
        margin-bottom: 25px; } }
    @media (min-width: 1200px) {
      .footer__menu-holder > li {
        padding: 0 35px; } }
    .footer__menu-holder > li > a {
      display: inline-block;
      text-decoration: none;
      font-size: 12px;
      margin-bottom: 14px;
      font-weight: 500;
      letter-spacing: 1px;
      color: rgba(255, 255, 255, 0.5); }
      @media (min-width: 768px) {
        .footer__menu-holder > li > a {
          margin-bottom: 10px; } }
  .footer__bottom-row {
    position: relative;
    padding: 58px 0; }
    @media (min-width: 993px) {
      .footer__bottom-row {
        padding: 45px 0;
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-pack: justify;
            -ms-flex-pack: justify;
                justify-content: space-between; } }
    .footer__bottom-row:before {
      content: '';
      position: absolute;
      top: 0;
      bottom: 0;
      left: 50%;
      -webkit-transform: translateX(-50%);
          -ms-transform: translateX(-50%);
              transform: translateX(-50%);
      width: 200vw;
      background-color: #062b34; }
    .footer__bottom-row > * {
      position: relative;
      z-index: 1; }
  .footer__logo-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    margin: 0 -15px; }
    .footer__logo-list li {
      padding: 0 15px; }
    .footer__logo-list img {
      max-width: 136px;
      max-height: 64px;
      width: auto; }
      @media (min-width: 993px) {
        .footer__logo-list img {
          max-width: 170px;
          max-height: 70px; } }
  @media (min-width: 1200px) {
    .footer .container {
      max-width: 1210px; } }
  .footer .sub-menu {
    font-size: 16px; }
    @media (min-width: 768px) {
      .footer .sub-menu {
        font-size: 14px; } }
    .footer .sub-menu li {
      margin-bottom: 13px; }
      @media (min-width: 768px) {
        .footer .sub-menu li {
          margin-bottom: 11px; } }
    .footer .sub-menu a {
      text-decoration: none;
      color: #fff;
      text-transform: capitalize; }
      .footer .sub-menu a:hover {
        color: #009932; }
  .footer .copyrights-holder {
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-bottom: 27px; }
    @media (min-width: 768px) {
      .footer .copyrights-holder {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        padding-right: 30px; } }
    @media (min-width: 993px) {
      .footer .copyrights-holder {
        padding-top: 15px;
        margin-bottom: 0; } }
    .footer .copyrights-holder p {
      margin-bottom: 15px;
      letter-spacing: 0; }
  .footer .copyrights-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 -20px 7px;
    -ms-flex-negative: 0;
        flex-shrink: 0; }
    @media (min-width: 768px) {
      .footer .copyrights-list {
        margin: 0 -16px;
        padding-right: 32px; } }
    .footer .copyrights-list li {
      padding: 0 20px;
      margin-bottom: 15px; }
      @media (min-width: 768px) {
        .footer .copyrights-list li {
          padding: 0 16px; } }
    .footer .copyrights-list a {
      text-decoration: none;
      color: #fff;
      text-transform: capitalize; }
      .footer .copyrights-list a:hover {
        color: #009932; }
  .footer .newsletter-wrapper .gform_wrapper {
    position: relative;
    margin: 0 0 27px; }
    @media (min-width: 768px) {
      .footer .newsletter-wrapper .gform_wrapper {
        margin-bottom: 30px; } }
    @media (min-width: 993px) {
      .footer .newsletter-wrapper .gform_wrapper {
        margin-bottom: 40px; } }
    .footer .newsletter-wrapper .gform_wrapper.gform_validation_error .gform_body .placeholder-label {
      display: none; }
    .footer .newsletter-wrapper .gform_wrapper__input-box {
      position: relative; }
    .footer .newsletter-wrapper .gform_wrapper input {
      margin-top: 0; }
    .footer .newsletter-wrapper .gform_wrapper ul li.gfield {
      padding: 0;
      margin: 0; }
    .footer .newsletter-wrapper .gform_wrapper .ginput_container {
      margin-top: 0; }
    .footer .newsletter-wrapper .gform_wrapper .gform_body input {
      height: 54px;
      line-height: normal;
      padding: 15px 45px 15px 20px !important;
      background-color: rgba(255, 255, 255, 0.15);
      border-radius: 4px;
      border: none;
      color: #fff; }
      .footer .newsletter-wrapper .gform_wrapper .gform_body input::-webkit-input-placeholder {
        font-size: 0.875rem;
        line-height: 1.71429;
        color: #88969a; }
      .footer .newsletter-wrapper .gform_wrapper .gform_body input::-moz-placeholder {
        opacity: 1;
        font-size: 0.875rem;
        line-height: 1.71429;
        color: #88969a; }
      .footer .newsletter-wrapper .gform_wrapper .gform_body input:-moz-placeholder {
        font-size: 0.875rem;
        line-height: 1.71429;
        color: #88969a; }
      .footer .newsletter-wrapper .gform_wrapper .gform_body input:-ms-input-placeholder {
        font-size: 0.875rem;
        line-height: 1.71429;
        color: #88969a; }
      .footer .newsletter-wrapper .gform_wrapper .gform_body input.placeholder {
        font-size: 0.875rem;
        line-height: 1.71429;
        color: #88969a; }
      .footer .newsletter-wrapper .gform_wrapper .gform_body input:-webkit-autofill, .footer .newsletter-wrapper .gform_wrapper .gform_body input:-webkit-autofill:hover, .footer .newsletter-wrapper .gform_wrapper .gform_body input:-webkit-autofill:focus, .footer .newsletter-wrapper .gform_wrapper .gform_body input:-webkit-autofill:active {
        -webkit-text-fill-color: #fff !important;
        -webkit-transition: color 9999s ease-out, background-color 9999s ease-out;
        -webkit-transition-delay: 9999s; }
    .footer .newsletter-wrapper .gform_wrapper .gform_body .placeholder-label {
      display: none !important; }
    .footer .newsletter-wrapper .gform_wrapper .gform_body .gfield + .gfield {
      -webkit-margin-before: 20px;
              margin-block-start: 20px; }
    .footer .newsletter-wrapper .gform_wrapper .gform_body .gfield .placeholder-label {
      display: none !important; }
    .footer .newsletter-wrapper .gform_wrapper .gform_body .ginput_complex {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      width: 100%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      gap: 20px; }
      @media (min-width: 993px) {
        .footer .newsletter-wrapper .gform_wrapper .gform_body .ginput_complex {
          -webkit-box-orient: horizontal;
          -webkit-box-direction: normal;
              -ms-flex-direction: row;
                  flex-direction: row; } }
      .footer .newsletter-wrapper .gform_wrapper .gform_body .ginput_complex .gform-grid-col {
        -webkit-margin-after: unset;
                margin-block-end: unset; }
      .footer .newsletter-wrapper .gform_wrapper .gform_body .ginput_complex .gform-field-label {
        display: none !important; }
      .footer .newsletter-wrapper .gform_wrapper .gform_body .ginput_complex input:focus + .gform-field-label,
      .footer .newsletter-wrapper .gform_wrapper .gform_body .ginput_complex input:not(:placeholder-shown) + .gform-field-label {
        display: none; }
    .footer .newsletter-wrapper .gform_wrapper .gform_body .active-label .placeholder-label {
      display: none; }
    .footer .newsletter-wrapper .gform_wrapper .gform_footer {
      margin: 0;
      margin-top: 20px;
      padding: 0;
      width: 100%; }
      .footer .newsletter-wrapper .gform_wrapper .gform_footer:hover input[type=submit] {
        color: #009932;
        background-color: #fff; }
      .footer .newsletter-wrapper .gform_wrapper .gform_footer input[type=submit] {
        position: relative;
        z-index: 1;
        display: block;
        margin: 0;
        width: 100%;
        height: 100%;
        border: none;
        cursor: pointer; }
    .footer .newsletter-wrapper .gform_wrapper .gform_ajax_spinner {
      position: absolute;
      top: 50%;
      left: 50%;
      -webkit-transform: translate(-50%, -50%);
          -ms-transform: translate(-50%, -50%);
              transform: translate(-50%, -50%); }
    .footer .newsletter-wrapper .gform_wrapper .validation_error {
      display: none; }
  .footer .newsletter-wrapper .gform_confirmation_message {
    background-color: rgba(255, 255, 255, 0.05);
    padding: 10px 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 12px;
    margin-bottom: 40px;
    border-radius: 4px; }
    .footer .newsletter-wrapper .gform_confirmation_message h6 {
      font-size: 0.875rem;
      line-height: 1.71429;
      color: #fff;
      font-weight: 600;
      margin-bottom: 0;
      letter-spacing: .4px; }
      .footer .newsletter-wrapper .gform_confirmation_message h6 + br {
        display: none; }
  .footer .social-networks-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin: 0 -12px;
    font-size: 13px; }
    .footer .social-networks-list li {
      padding: 0 12px;
      margin-bottom: 10px; }
    .footer .social-networks-list a {
      color: #fff;
      text-decoration: none; }
      .footer .social-networks-list a:hover {
        color: #009932; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.pdf-viewer-modal {
  padding: 0;
  z-index: 99999; }
  .pdf-viewer-modal .tingle-modal-box {
    border-radius: 0;
    width: 100%; }
    .pdf-viewer-modal .tingle-modal-box__content {
      position: relative;
      padding: 0 0 100vh 0; }
      .pdf-viewer-modal .tingle-modal-box__content iframe {
        width: 100%;
        height: 100%;
        position: absolute;
        left: 0px;
        top: 0px; }
  .pdf-viewer-modal .tingle-modal__close {
    position: fixed;
    width: 20px;
    height: 20px;
    top: 30px;
    right: 30px;
    left: auto;
    bottom: auto;
    background-color: transparent;
    z-index: 1; }
  .pdf-viewer-modal .tingle-modal__closeIcon {
    margin: 0;
    width: 100%;
    height: 100%; }
  .pdf-viewer-modal .tingle-modal__closeLabel {
    font-size: 0;
    line-height: 0; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

@media (min-width: 768px) {
  .two-columns-grid {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; } }

.two-columns-grid__item {
  margin: 0 0 40px; }
  @media (min-width: 768px) {
    .two-columns-grid__item {
      margin: 0;
      -ms-flex-preferred-size: calc(50% - 25px);
          flex-basis: calc(50% - 25px);
      -ms-flex-negative: 0;
          flex-shrink: 0;
      -webkit-box-flex: 0;
          -ms-flex-positive: 0;
              flex-grow: 0; } }
  @media (min-width: 1200px) {
    .two-columns-grid__item {
      -ms-flex-preferred-size: calc(50% - 35px);
          flex-basis: calc(50% - 35px); } }
  .two-columns-grid__item:last-child {
    margin: 0; }
  .two-columns-grid__item .wp-btn_border .wp-block-button__link {
    border-color: rgba(255, 255, 255, 0.3); }
    .two-columns-grid__item .wp-btn_border .wp-block-button__link:hover {
      border-color: #6cc266; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.card-item {
  color: #fff;
  cursor: pointer; }
  .card-item__inner {
    padding: 20px 20px 40px;
    height: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (min-width: 1200px) {
      .card-item__inner {
        padding: 30px 30px 40px; } }
  .card-item__image-holder {
    position: relative;
    padding-top: 61.4%;
    margin-bottom: 24px; }
    @media (min-width: 1200px) {
      .card-item__image-holder {
        margin-bottom: 40px; } }
  .card-item img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
  .card-item__image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%; }
    .card-item__image_vertical {
      display: none; }
    .card-item__image_landscape {
      display: block; }
  @media (min-width: 1200px) {
    .card-item__info {
      padding: 0 40px; } }
  .card-item__title {
    margin-bottom: 0; }
  .card-item__label {
    display: block;
    color: #9bcb7d;
    font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.75rem;
    line-height: 1.83333;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0; }
    @media (min-width: 1200px) {
      .card-item__label {
        margin-top: 6px;
        font-size: 0.75rem;
        line-height: 1.5; } }
  .card-item__content {
    margin: 10px 0 0; }
    @media (min-width: 1200px) {
      .card-item__content {
        margin: 30px 0 0; } }
    .card-item__content p:last-child {
      margin: 0; }
    .card-item__content_full {
      display: none; }
  .card-item__cta-wrapper {
    margin: 30px 0 0; }
    @media (min-width: 1200px) {
      .card-item__cta-wrapper {
        padding: 0 40px;
        margin: 30px 0 10px; } }

.member-card_for-modal .card-item__inner {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  padding: 0;
  width: 100%; }

@media (min-width: 1200px) {
  .member-card_for-modal .card-item__main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row; } }

.member-card_for-modal .card-item__image-holder {
  width: 140px;
  height: 156px;
  padding: 0;
  margin-bottom: 20px;
  padding: 0; }
  @media (min-width: 768px) {
    .member-card_for-modal .card-item__image-holder {
      width: 150px;
      height: 168px;
      margin-bottom: 16px; } }
  @media (min-width: 1200px) {
    .member-card_for-modal .card-item__image-holder {
      -webkit-box-flex: 270px;
          -ms-flex: 270px 0 0px;
              flex: 270px 0 0;
      width: auto;
      height: 300px;
      margin-bottom: 0; } }

.member-card_for-modal .card-item__image_vertical {
  display: block; }

.member-card_for-modal .card-item__image_landscape {
  display: none; }

@media (min-width: 1200px) {
  .member-card_for-modal .card-item__info {
    -ms-flex-preferred-size: calc(100% - 310px);
        flex-basis: calc(100% - 310px);
    -webkit-box-flex: 0;
        -ms-flex-positive: 0;
            flex-grow: 0;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    padding: 0; } }

.member-card_for-modal .card-item__title {
  font-size: 1.5rem;
  line-height: 1.5; }
  @media (min-width: 768px) {
    .member-card_for-modal .card-item__title {
      max-width: 360px; } }
  @media (min-width: 1200px) {
    .member-card_for-modal .card-item__title {
      font-size: 1.75rem;
      line-height: 1.5;
      max-width: none; } }

.member-card_for-modal .card-item__label {
  color: #000; }
  @media (min-width: 768px) {
    .member-card_for-modal .card-item__label {
      max-width: 360px; } }
  @media (min-width: 1200px) {
    .member-card_for-modal .card-item__label {
      max-width: none; } }

@media (min-width: 1200px) {
  .member-card_for-modal .card-item__content {
    margin-top: 20px; } }

.member-card_for-modal .card-item__content_short {
  display: none; }

.member-card_for-modal .card-item__content_full {
  display: block; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, .four-columns-grid {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.four-columns-grid {
  white-space: nowrap;
  width: auto;
  max-width: 9999px;
  overflow-x: auto;
  font-size: 0;
  margin-right: calc(50% - 50vw);
  padding-bottom: 20px;
  margin: 0 0 -20px; }
  @media (min-width: 1200px) {
    .four-columns-grid {
      white-space: normal;
      margin: 0 0 -80px;
      width: calc(100% + 30px);
      padding-bottom: 0;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-pack: start;
          -ms-flex-pack: start;
              justify-content: flex-start;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      overflow: hidden;
      -webkit-transition: max-height 0s ease;
      -o-transition: max-height 0s ease;
      transition: max-height 0s ease; } }
  .four-columns-grid__item {
    display: inline-block;
    width: 270px;
    margin: 0 20px 0 0;
    vertical-align: top; }
    @media (min-width: 1200px) {
      .four-columns-grid__item {
        margin: 0 30px 80px 0;
        -ms-flex-preferred-size: calc(25% - 30px);
            flex-basis: calc(25% - 30px);
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0; } }
    .four-columns-grid__item:last-child {
      margin-right: 0; }
  .four-columns-grid.is-open {
    max-height: 9999px !important; }
    .four-columns-grid.is-open + .wp-link {
      display: none; }
  .four-columns-grid.is-load {
    -webkit-transition: max-height 0.5s ease;
    -o-transition: max-height 0.5s ease;
    transition: max-height 0.5s ease; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.member-card {
  white-space: normal;
  cursor: pointer; }
  .member-card__image-holder {
    position: relative;
    padding-top: 111.11%;
    margin-bottom: 16px; }
    @media (min-width: 1200px) {
      .member-card__image-holder {
        margin-bottom: 20px; } }
    .member-card__image-holder img {
      display: block;
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%; }
  .member-card__name {
    margin: 0; }
    @media (min-width: 1200px) {
      .member-card__name {
        margin-bottom: 6px; } }
  .member-card__position {
    color: #000;
    font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-size: 0.75rem;
    line-height: 1.83333;
    font-weight: 700;
    letter-spacing: 0;
    margin: 0; }
  .member-card__content {
    display: none; }
    .member-card__content p:last-child {
      margin: 0; }
  .member-card_for-modal {
    cursor: auto; }
    .member-card_for-modal .member-card__wrapper {
      max-height: calc(100vh - 155px);
      overflow-y: auto;
      padding: 0 15px 0 0; }
      @media (min-width: 768px) {
        .member-card_for-modal .member-card__wrapper {
          max-height: calc(100vh - 350px);
          padding: 0 30px 0 0; } }
      @media (min-width: 1200px) {
        .member-card_for-modal .member-card__wrapper {
          display: -webkit-box;
          display: -ms-flexbox;
          display: flex;
          -webkit-box-align: start;
              -ms-flex-align: start;
                  align-items: flex-start;
          -webkit-box-pack: justify;
              -ms-flex-pack: justify;
                  justify-content: space-between;
          max-height: 430px; } }
      .single-member .member-card_for-modal .member-card__wrapper {
        max-height: none; }
    .member-card_for-modal .member-card__image-holder {
      width: 140px;
      height: 156px;
      padding: 0;
      margin-bottom: 20px; }
      @media (min-width: 768px) {
        .member-card_for-modal .member-card__image-holder {
          width: 150px;
          height: 168px;
          margin-bottom: 16px; } }
      @media (min-width: 1200px) {
        .member-card_for-modal .member-card__image-holder {
          -webkit-box-flex: 270px;
              -ms-flex: 270px 0 0px;
                  flex: 270px 0 0;
          width: auto;
          height: 300px;
          margin-bottom: 0; } }
    @media (min-width: 1200px) {
      .member-card_for-modal .member-card__info {
        -ms-flex-preferred-size: calc(100% - 310px);
            flex-basis: calc(100% - 310px);
        -webkit-box-flex: 0;
            -ms-flex-positive: 0;
                flex-grow: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0; } }
    .member-card_for-modal .member-card__name {
      font-size: 1.5rem;
      line-height: 1.5; }
      @media (min-width: 768px) {
        .member-card_for-modal .member-card__name {
          max-width: 360px; } }
      @media (min-width: 1200px) {
        .member-card_for-modal .member-card__name {
          font-size: 1.75rem;
          line-height: 1.5;
          max-width: none; } }
    .member-card_for-modal .member-card__position {
      margin-bottom: 10px; }
      @media (min-width: 768px) {
        .member-card_for-modal .member-card__position {
          max-width: 360px; } }
      @media (min-width: 1200px) {
        .member-card_for-modal .member-card__position {
          font-size: 0.75rem;
          line-height: 1.5;
          margin-bottom: 20px;
          max-width: none; } }
    .member-card_for-modal .member-card__content {
      display: block; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.page-heading.page-heading_has-image {
  margin: 0 calc(50% - 50vw); }
  @media (min-width: 768px) {
    .page-heading.page-heading_has-image {
      margin: 0 calc((730px / 2) - $container-gap - 50vw); } }
  @media (min-width: 993px) {
    .page-heading.page-heading_has-image {
      margin: 0 calc((1000px / 2) - $container-gap - 50vw); } }
  @media (min-width: 1200px) {
    .page-heading.page-heading_has-image {
      margin: 0 calc((1210px / 2) - $container-gap - 50vw); } }

.page-heading {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  position: relative; }
  @media (min-width: 768px) {
    .page-heading {
      padding: 0 10px; } }
  @media (min-width: 993px) {
    .page-heading {
      padding: 0 9px; } }
  @media (min-width: 768px) {
    .page-heading__breadcrumbs {
      margin-bottom: 30px;
      padding: 20px 0 0; } }
  @media (min-width: 993px) {
    .page-heading__breadcrumbs {
      margin-bottom: 48px;
      padding: 9px 0 0; } }
  @media (min-width: 1501px) {
    .page-heading__breadcrumbs {
      margin-bottom: 66px; } }
  .page-heading_has-image .page-heading__breadcrumbs {
    margin: 0 auto;
    width: 100%; }
    @media (min-width: 768px) {
      .page-heading_has-image .page-heading__breadcrumbs {
        margin-bottom: 30px;
        padding: 20px 0 0; } }
    @media (min-width: 993px) {
      .page-heading_has-image .page-heading__breadcrumbs {
        max-width: 1170px;
        padding: 0; } }
  .page-heading .brf-breadcrumbs {
    display: none; }
    @media (min-width: 768px) {
      .page-heading .brf-breadcrumbs {
        display: inline-block;
        padding: 0; } }
    .page-heading .brf-breadcrumbs a:hover {
      color: #009932;
      text-decoration: none; }
    .page-heading .brf-breadcrumbs a {
      margin-right: 4px; }
    .page-heading .brf-breadcrumbs .breadcrumb_last {
      margin-left: 3px; }
    .page-heading .brf-breadcrumbs a, .page-heading .brf-breadcrumbs span {
      font-size: 0.75rem;
      line-height: 1.83333; }
  .page-heading_has-image .page-heading__image {
    background-color: #164f45;
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: -1; }
  .page-heading__image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: center;
       object-position: center;
    width: 100%; }
  .page-heading__image:before {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(22, 79, 69, 0.2)), to(rgba(255, 255, 255, 0)));
    background-image: -webkit-linear-gradient(top, rgba(22, 79, 69, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: -o-linear-gradient(top, rgba(22, 79, 69, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    background-image: linear-gradient(to bottom, rgba(22, 79, 69, 0.2) 0%, rgba(255, 255, 255, 0) 100%);
    content: "";
    height: 100%;
    left: 0;
    position: absolute;
    top: 0;
    width: 100%;
    z-index: 1; }
  @media (min-width: 993px) {
    .page-heading__content-wrapper {
      max-width: 670px; } }
  .page-heading_has-image .page-heading__content-wrapper {
    margin-bottom: -20px; }
    @media (min-width: 993px) {
      .page-heading_has-image .page-heading__content-wrapper {
        margin: 0 auto -20px;
        max-width: 1170px;
        width: 100%; } }
  .page-heading__title {
    font-size: 1.875rem;
    line-height: 1.4; }
    @media (min-width: 768px) {
      .page-heading__title {
        margin-bottom: 16px; } }
    @media (min-width: 993px) {
      .page-heading__title {
        font-size: 2.875rem;
        line-height: 1.26087;
        margin-bottom: 20px; } }
    .page-heading_has-image .page-heading__title {
      background-color: #fff;
      border-radius: 2px;
      display: inline-block;
      margin-bottom: 10px; }
    .page-heading__title span {
      display: inline-block;
      padding: 10px 20px 14px; }
      @media (min-width: 768px) {
        .page-heading__title span {
          padding-bottom: 12px; } }
      @media (min-width: 993px) {
        .page-heading__title span {
          padding: 12px 30px 16px; } }
  .page-heading__desc {
    font-size: 1rem;
    line-height: 1.75; }
    .page-heading_has-image .page-heading__desc {
      background-color: #143038;
      border-radius: 2px;
      color: #fff;
      display: inline-block;
      letter-spacing: .4px;
      margin-bottom: 0;
      max-width: 100%;
      padding: 20px; }
      @media (min-width: 993px) {
        .page-heading_has-image .page-heading__desc {
          display: block;
          letter-spacing: .5px;
          max-width: 770px;
          padding: 16px 60px 16px 30px; } }
  .page-heading.page-heading_has-image {
    min-height: 478px;
    padding: 0 20px;
    position: relative; }
    @media (min-width: 768px) {
      .page-heading.page-heading_has-image {
        padding: 10px 39px 0; } }
    @media (min-width: 993px) {
      .page-heading.page-heading_has-image {
        min-height: 360px; } }
    @media (min-width: 1501px) {
      .page-heading.page-heading_has-image {
        min-height: 480px; } }
    .page-heading.page-heading_has-image .brf-breadcrumbs {
      background-color: rgba(255, 255, 255, 0.8);
      border-radius: 2px;
      padding: 0 5px 3px;
      visibility: hidden; }
      @media (min-width: 768px) {
        .page-heading.page-heading_has-image .brf-breadcrumbs {
          visibility: visible; } }
      @media (min-width: 993px) {
        .page-heading.page-heading_has-image .brf-breadcrumbs {
          padding: 0 6px; } }
      .page-heading.page-heading_has-image .brf-breadcrumbs a:hover {
        color: #009932; }
      .page-heading.page-heading_has-image .brf-breadcrumbs a, .page-heading.page-heading_has-image .brf-breadcrumbs .breadcrumb_last {
        margin: 0 4px; }
      .page-heading.page-heading_has-image .brf-breadcrumbs a, .page-heading.page-heading_has-image .brf-breadcrumbs span {
        color: rgba(17, 24, 27, 0.7);
        display: inline-block; }

.IE .page-heading_has-image {
  height: 478px; }
  @media (min-width: 993px) {
    .IE .page-heading_has-image {
      height: 360px; } }
  @media (min-width: 1501px) {
    .IE .page-heading_has-image {
      height: 480px; } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.page-template-text-page .site-main {
  font-size: 1rem;
  line-height: 1.75; }
  .page-template-text-page .site-main p {
    letter-spacing: .4px; }
    @media (min-width: 1200px) {
      .page-template-text-page .site-main p {
        letter-spacing: .5px;
        margin-bottom: 20px; } }
    .page-template-text-page .site-main p + h5 {
      margin-top: 30px; }
      @media (min-width: 993px) {
        .page-template-text-page .site-main p + h5 {
          margin-top: 40px; } }
  .page-template-text-page .site-main h5 {
    margin-bottom: 16px; }
    @media (min-width: 993px) {
      .page-template-text-page .site-main h5 {
        margin-bottom: 20px; } }
  .page-template-text-page .site-main .container {
    max-width: 730px; }
    @media (min-width: 993px) {
      .page-template-text-page .site-main .container {
        max-width: 1010px; } }
  .page-template-text-page .site-main .page-heading {
    padding: 0; }
    .page-template-text-page .site-main .page-heading span {
      padding-left: 0;
      padding-right: 0; }
  .page-template-text-page .site-main .page-heading__title {
    margin-bottom: 30px; }
    @media (min-width: 993px) {
      .page-template-text-page .site-main .page-heading__title {
        margin-bottom: 40px; } }

.page-template-text-page .entry-content {
  margin-bottom: 60px; }
  @media (min-width: 768px) {
    .page-template-text-page .entry-content {
      margin-bottom: 80px; } }
  @media (min-width: 1200px) {
    .page-template-text-page .entry-content {
      margin-bottom: 100px; } }
  @media (min-width: 1501px) {
    .page-template-text-page .entry-content {
      margin-bottom: 120px; } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.error-404 {
  font-size: 1rem;
  line-height: 1.75;
  text-align: center;
  padding: 12px 0 40px; }
  @media (min-width: 768px) {
    .error-404 {
      padding: 40px 0 60px;
      max-width: 530px;
      margin: 0 auto; } }
  @media (min-width: 1200px) {
    .error-404 {
      padding: 83px 0 180px;
      max-width: 770px; } }
  @media (min-width: 1501px) {
    .error-404 {
      padding-top: 100px; } }
  .error-404__title-wrapper {
    margin-bottom: 30px; }
    @media (min-width: 768px) {
      .error-404__title-wrapper {
        max-width: 320px;
        margin: 0 auto 30px; } }
    @media (min-width: 1200px) {
      .error-404__title-wrapper {
        margin-bottom: 60px;
        max-width: 500px; } }
    .error-404__title-wrapper h2 {
      font-size: 1.875rem;
      line-height: 1.4;
      margin-bottom: 16px; }
      @media (min-width: 1200px) {
        .error-404__title-wrapper h2 {
          font-size: 2.5rem;
          line-height: 1.35;
          margin-bottom: 20px; } }
  .error-404__action-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin-bottom: 20px; }
    .error-404__action-wrapper .wp-block-button {
      padding: 0 6px; }
    .error-404__action-wrapper p {
      margin-bottom: 0; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.single .site-main .container,
.single-story .site-main .container {
  max-width: 1010px; }

.single .page-heading,
.single-story .page-heading {
  display: none; }
  @media (min-width: 768px) {
    .single .page-heading,
    .single-story .page-heading {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex; } }
  @media (min-width: 1200px) {
    .single .page-heading,
    .single-story .page-heading {
      margin: 0 -110px;
      padding: 0; } }
  .single .page-heading__breadcrumbs,
  .single-story .page-heading__breadcrumbs {
    margin-bottom: 0;
    padding: 20px 19px 0; }
    @media (min-width: 1200px) {
      .single .page-heading__breadcrumbs,
      .single-story .page-heading__breadcrumbs {
        padding-top: 9px; } }

.single .entry-header,
.single-story .entry-header {
  padding: 30px 0; }
  @media (min-width: 768px) {
    .single .entry-header,
    .single-story .entry-header {
      padding: 22px 19px 35px; } }
  @media (min-width: 993px) {
    .single .entry-header,
    .single-story .entry-header {
      padding: 50px 0 25px; } }
  @media (min-width: 1501px) {
    .single .entry-header,
    .single-story .entry-header {
      padding: 68px 0 25px; } }
  .single .entry-header h1,
  .single-story .entry-header h1 {
    margin-bottom: 3px; }

.single .post-info,
.single-story .post-info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 -8px 30px; }
  @media (min-width: 768px) {
    .single .post-info,
    .single-story .post-info {
      -webkit-box-align: center;
          -ms-flex-align: center;
              align-items: center;
      -ms-flex-wrap: initial;
          flex-wrap: initial;
      margin: 0 -15px 56px;
      padding: 0 19px; } }
  @media (min-width: 993px) {
    .single .post-info,
    .single-story .post-info {
      margin-bottom: 36px;
      padding: 0; } }
  .single .post-info__item,
  .single-story .post-info__item {
    font-size: 0.75rem;
    line-height: 1.83333;
    color: #000;
    -ms-flex-negative: 0;
        flex-shrink: 0;
    font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    font-weight: bold;
    padding: 0 8px; }
    @media (min-width: 768px) {
      .single .post-info__item,
      .single-story .post-info__item {
        padding: 0 15px; } }
  .single .post-info .post-categories,
  .single-story .post-info .post-categories {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0; }
    .single .post-info .post-categories li,
    .single-story .post-info .post-categories li {
      margin-right: 10px; }
      @media (min-width: 993px) {
        .single .post-info .post-categories li,
        .single-story .post-info .post-categories li {
          margin-right: 0; }
          .single .post-info .post-categories li + li,
          .single-story .post-info .post-categories li + li {
            margin-left: 10px; } }
  .single .post-info__social,
  .single-story .post-info__social {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 15px 0 0;
    padding: 0 8px;
    width: 100%; }
    @media (min-width: 768px) {
      .single .post-info__social,
      .single-story .post-info__social {
        margin: 0;
        width: auto; } }
    @media (min-width: 993px) {
      .single .post-info__social,
      .single-story .post-info__social {
        padding: 0 15px; } }
    .single .post-info__social .social-sharing,
    .single-story .post-info__social .social-sharing {
      height: 30px; }
      .single .post-info__social .social-sharing:last-child a,
      .single-story .post-info__social .social-sharing:last-child a {
        margin-right: 0; }
      @media (min-width: 768px) {
        .single .post-info__social .social-sharing,
        .single-story .post-info__social .social-sharing {
          height: 24px; } }
      .single .post-info__social .social-sharing a,
      .single-story .post-info__social .social-sharing a {
        border: 1px solid #d4d9db;
        border-radius: 1.3px;
        color: #143038;
        display: inline-block;
        font-size: 0;
        height: 30px;
        margin-right: 20px;
        text-align: center;
        -webkit-transition: border-color .3s ease, color .3s ease;
        -o-transition: border-color .3s ease, color .3s ease;
        transition: border-color .3s ease, color .3s ease;
        vertical-align: top;
        width: 30px; }
        .single .post-info__social .social-sharing a:hover,
        .single-story .post-info__social .social-sharing a:hover {
          border-color: #6cc266;
          color: #6cc266;
          text-decoration: none; }
        @media (min-width: 768px) {
          .single .post-info__social .social-sharing a,
          .single-story .post-info__social .social-sharing a {
            height: 24px;
            width: 24px; } }
        @media (min-width: 993px) {
          .single .post-info__social .social-sharing a,
          .single-story .post-info__social .social-sharing a {
            margin-right: 8px; } }
        .single .post-info__social .social-sharing a:before,
        .single-story .post-info__social .social-sharing a:before {
          font-size: 1rem;
          line-height: 1.9375;
          display: inline-block;
          font-family: icomoon;
          width: 100%; }
          @media (min-width: 768px) {
            .single .post-info__social .social-sharing a:before,
            .single-story .post-info__social .social-sharing a:before {
              font-size: 0.75rem;
              line-height: 2; } }
        .single .post-info__social .social-sharing a.ss-button-facebook:before,
        .single-story .post-info__social .social-sharing a.ss-button-facebook:before {
          content: "\E904"; }
        .single .post-info__social .social-sharing a.ss-button-twitter:before,
        .single-story .post-info__social .social-sharing a.ss-button-twitter:before {
          content: '\E90F';
          font-size: 0.75rem;
          line-height: 2.66667; }
          @media (min-width: 768px) {
            .single .post-info__social .social-sharing a.ss-button-twitter:before,
            .single-story .post-info__social .social-sharing a.ss-button-twitter:before {
              font-size: 0.625rem;
              line-height: 2.4; } }
        .single .post-info__social .social-sharing a.ss-button-email:before,
        .single-story .post-info__social .social-sharing a.ss-button-email:before {
          content: '\E90E'; }
  .single .post-info__labels,
  .single-story .post-info__labels {
    margin: 14px 0 0;
    padding: 0 8px; }
    @media (min-width: 768px) {
      .single .post-info__labels,
      .single-story .post-info__labels {
        margin: 0 0 3px;
        padding: 0 15px; } }
    .single .post-info__labels .post-label,
    .single-story .post-info__labels .post-label {
      font-size: 0.75rem;
      line-height: 1.5;
      background-color: #164f45;
      border-radius: 1px;
      color: #fff;
      display: inline-block;
      font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
      font-weight: bold;
      margin-right: 7px;
      padding: 3px 8px 4px; }
      .single .post-info__labels .post-label:last-child,
      .single-story .post-info__labels .post-label:last-child {
        margin-right: 0; }
      @media (min-width: 993px) {
        .single .post-info__labels .post-label,
        .single-story .post-info__labels .post-label {
          margin-right: 5px;
          padding-bottom: 3.4px; } }

.single .article-intro,
.single-story .article-intro {
  margin: 0 -20px 30px; }
  @media (min-width: 768px) {
    .single .article-intro,
    .single-story .article-intro {
      margin: 0 -40px 40px; } }
  @media (min-width: 993px) {
    .single .article-intro,
    .single-story .article-intro {
      margin: 0 -200px 60px;
      padding: 40px 100px; } }

.single .entry-content,
.single-story .entry-content {
  margin: 0 auto;
  max-width: 770px;
  padding-bottom: 61px; }
  @media (min-width: 768px) {
    .single .entry-content,
    .single-story .entry-content {
      padding: 0 19px 80px; } }
  @media (min-width: 993px) {
    .single .entry-content,
    .single-story .entry-content {
      max-width: 810px;
      padding-bottom: 100px; } }
  @media (min-width: 1501px) {
    .single .entry-content,
    .single-story .entry-content {
      padding-bottom: 120px; } }
  .single .entry-content h5,
  .single-story .entry-content h5 {
    margin: 29px 0 16px; }
    @media (min-width: 768px) {
      .single .entry-content h5,
      .single-story .entry-content h5 {
        margin-top: 40px; } }
    @media (min-width: 993px) {
      .single .entry-content h5,
      .single-story .entry-content h5 {
        margin: 40px 0 20px; } }
  .single .entry-content p,
  .single-story .entry-content p {
    font-size: 1rem;
    line-height: 1.75;
    letter-spacing: .35px; }
    @media (min-width: 993px) {
      .single .entry-content p,
      .single-story .entry-content p {
        letter-spacing: .5px;
        margin-bottom: 20px; } }
  .single .entry-content blockquote,
  .single-story .entry-content blockquote {
    font-size: 1rem;
    line-height: 1.6875;
    border: none;
    color: #000;
    font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
    padding: 0; }
    @media (min-width: 768px) {
      .single .entry-content blockquote,
      .single-story .entry-content blockquote {
        margin-bottom: 40px; } }
    @media (min-width: 993px) {
      .single .entry-content blockquote,
      .single-story .entry-content blockquote {
        font-size: 1.125rem;
        line-height: 1.55556;
        margin-bottom: 60px; } }
    .single .entry-content blockquote p,
    .single-story .entry-content blockquote p {
      font-size: inherit;
      letter-spacing: 0;
      line-height: inherit; }
      .single .entry-content blockquote p:before,
      .single-story .entry-content blockquote p:before {
        content: "\201C";
        display: inline; }
      .single .entry-content blockquote p:after,
      .single-story .entry-content blockquote p:after {
        content: "\201D";
        display: inline; }
  .single .entry-content ul:not([class]),
  .single-story .entry-content ul:not([class]) {
    padding: 0;
    list-style: none;
    margin: 16px 0 29px; }
    @media (min-width: 768px) {
      .single .entry-content ul:not([class]),
      .single-story .entry-content ul:not([class]) {
        margin-bottom: 40px; } }
    .single .entry-content ul:not([class]) li,
    .single-story .entry-content ul:not([class]) li {
      font-size: 1rem;
      line-height: 1.75;
      color: #000;
      letter-spacing: .4px;
      margin-bottom: 17px;
      padding-left: 36px;
      position: relative; }
      @media (min-width: 768px) {
        .single .entry-content ul:not([class]) li,
        .single-story .entry-content ul:not([class]) li {
          margin-bottom: 16px; } }
      @media (min-width: 993px) {
        .single .entry-content ul:not([class]) li,
        .single-story .entry-content ul:not([class]) li {
          margin-bottom: 10px; } }
      .single .entry-content ul:not([class]) li::before,
      .single-story .entry-content ul:not([class]) li::before {
        content: '';
        position: absolute;
        top: 14px;
        left: 14px;
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background-image: -webkit-radial-gradient(center, circle, #000 0%, #000 50%, transparent 80%);
        background-image: -o-radial-gradient(center, circle, #000 0%, #000 50%, transparent 80%);
        background-image: radial-gradient(center, circle, #000 0%, #000 50%, transparent 80%);
        display: block; }
        @media (min-width: 993px) {
          .single .entry-content ul:not([class]) li::before,
          .single-story .entry-content ul:not([class]) li::before {
            left: 15px;
            top: 13px; } }
  .single .entry-content ol,
  .single-story .entry-content ol {
    margin: 16px 0 29px;
    padding: 0;
    list-style: none;
    counter-reset: item; }
    @media (min-width: 768px) {
      .single .entry-content ol,
      .single-story .entry-content ol {
        margin-bottom: 40px; } }
    @media (min-width: 1200px) {
      .single .entry-content ol,
      .single-story .entry-content ol {
        margin-bottom: 60px; } }
    .single .entry-content ol li,
    .single-story .entry-content ol li {
      margin-bottom: 17px;
      padding-left: 35px;
      position: relative; }
      @media (min-width: 768px) {
        .single .entry-content ol li,
        .single-story .entry-content ol li {
          margin-bottom: 16px; } }
      @media (min-width: 1200px) {
        .single .entry-content ol li,
        .single-story .entry-content ol li {
          padding-left: 56px; } }
      .single .entry-content ol li:before,
      .single-story .entry-content ol li:before {
        content: counters(item, ".") ". ";
        counter-increment: item;
        position: absolute;
        top: 0;
        left: 13px; }
        @media (min-width: 1200px) {
          .single .entry-content ol li:before,
          .single-story .entry-content ol li:before {
            left: 28px; } }
  .single .entry-content .post-tags,
  .single-story .entry-content .post-tags {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    margin: 20px 0 -2px; }
    .single .entry-content .post-tags a,
    .single-story .entry-content .post-tags a {
      font-size: 0.75rem;
      line-height: 1.5;
      border: 1px solid #d4d9db;
      font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
      font-weight: bold;
      margin-right: 9px;
      padding: 4px 7px 6px 6px;
      -webkit-transition: border-color .3s ease, color .3s ease;
      -o-transition: border-color .3s ease, color .3s ease;
      transition: border-color .3s ease, color .3s ease; }
      .single .entry-content .post-tags a:hover,
      .single-story .entry-content .post-tags a:hover {
        border-color: #6cc266;
        color: #6cc266;
        text-decoration: none; }
  .single .entry-content .wp-block-button,
  .single-story .entry-content .wp-block-button {
    margin-top: 31px; }
    @media (min-width: 993px) {
      .single .entry-content .wp-block-button,
      .single-story .entry-content .wp-block-button {
        margin: 61px 0 0 9px; } }

.single article.layout-wide .entry-content,
.single-story article.layout-wide .entry-content {
  max-width: none;
  padding-left: 0;
  padding-right: 0; }

.single .recommend-articles,
.single-story .recommend-articles {
  padding: 60px 0;
  position: relative; }
  @media (min-width: 768px) {
    .single .recommend-articles,
    .single-story .recommend-articles {
      padding: 80px 20px; } }
  @media (min-width: 993px) {
    .single .recommend-articles,
    .single-story .recommend-articles {
      padding: 100px 0; } }
  @media (min-width: 1200px) {
    .single .recommend-articles,
    .single-story .recommend-articles {
      margin: 0 -100px; } }
  @media (min-width: 1501px) {
    .single .recommend-articles,
    .single-story .recommend-articles {
      padding: 120px 0; } }
  @media (min-width: 993px) {
    .single .recommend-articles:before,
    .single-story .recommend-articles:before {
      background-color: #d4d9db;
      content: "";
      display: block;
      height: 60px;
      left: 0;
      position: absolute;
      top: 0;
      width: 1px; } }
  @media (min-width: 993px) and (min-width: 1501px) {
    .single .recommend-articles:before,
    .single-story .recommend-articles:before {
      height: 80px; } }
  .single .recommend-articles:after,
  .single-story .recommend-articles:after {
    background-color: #d4d9db;
    content: "";
    display: block;
    height: 1px;
    left: calc(50% - 50vw);
    position: absolute;
    top: 0;
    width: 100vw; }
  .single .recommend-articles h2,
  .single-story .recommend-articles h2 {
    margin-bottom: 40px; }
    @media (min-width: 768px) {
      .single .recommend-articles h2,
      .single-story .recommend-articles h2 {
        margin-bottom: 50px; } }
    @media (min-width: 993px) {
      .single .recommend-articles h2,
      .single-story .recommend-articles h2 {
        margin-bottom: 60px; } }
  @media (min-width: 993px) {
    .single .recommend-articles__holder,
    .single-story .recommend-articles__holder {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      margin: 0 -15px;
      width: auto; } }
  .single .recommend-articles__holder__col,
  .single-story .recommend-articles__holder__col {
    -ms-flex-negative: 0;
        flex-shrink: 0;
    width: 270px; }
    @media (min-width: 993px) {
      .single .recommend-articles__holder__col,
      .single-story .recommend-articles__holder__col {
        -webkit-box-flex: 0;
            -ms-flex: 0 1 270px;
                flex: 0 1 270px;
        margin: 0 15px;
        width: auto; }
        .single .recommend-articles__holder__col.type-post,
        .single-story .recommend-articles__holder__col.type-post {
          -ms-flex-preferred-size: 370px;
              flex-basis: 370px; } }
    .single .recommend-articles__holder__col__photo,
    .single-story .recommend-articles__holder__col__photo {
      font-size: 0;
      height: 190px;
      margin-bottom: 24px;
      position: relative; }
      @media (min-width: 993px) {
        .single .recommend-articles__holder__col__photo,
        .single-story .recommend-articles__holder__col__photo {
          margin-bottom: 30px; } }
      .single .recommend-articles__holder__col__photo a,
      .single-story .recommend-articles__holder__col__photo a {
        display: block;
        height: 100%;
        width: 100%; }
      .single .recommend-articles__holder__col__photo img,
      .single-story .recommend-articles__holder__col__photo img {
        height: 190px;
        -o-object-fit: cover;
           object-fit: cover;
        -o-object-position: center;
           object-position: center;
        width: 100%; }
    .single .recommend-articles__holder__col__labels,
    .single-story .recommend-articles__holder__col__labels {
      bottom: 0;
      left: 0;
      padding: 10px;
      position: absolute;
      width: 100%; }
      .single .recommend-articles__holder__col__labels span,
      .single-story .recommend-articles__holder__col__labels span {
        font-size: 0.75rem;
        line-height: 1.5;
        background-color: #164f45;
        color: #fff;
        display: inline-block;
        font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
        font-weight: bold;
        margin-right: 10px;
        margin-top: 11px;
        padding: 3px 8px;
        text-decoration: none; }
    .single .recommend-articles__holder__col__info,
    .single-story .recommend-articles__holder__col__info {
      font-size: 0.875rem;
      line-height: 1.42857;
      color: #009932;
      font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
      font-weight: bold;
      margin-bottom: 10px;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      @media (min-width: 993px) {
        .single .recommend-articles__holder__col__info,
        .single-story .recommend-articles__holder__col__info {
          font-size: 1rem;
          line-height: 1.25; } }
    .single .recommend-articles__holder__col h5,
    .single-story .recommend-articles__holder__col h5 {
      margin-bottom: 10px; }
      @media (min-width: 993px) {
        .single .recommend-articles__holder__col h5,
        .single-story .recommend-articles__holder__col h5 {
          margin-bottom: 20px; } }
    .single .recommend-articles__holder__col__text,
    .single-story .recommend-articles__holder__col__text {
      font-size: 0.875rem;
      line-height: 1.71429;
      color: #000;
      letter-spacing: .4px; }

@media (min-width: 768px) {
  .single .type-post .post-info {
    margin-bottom: 60px;
    padding-top: 3px; } }

@media (min-width: 993px) {
  .single .type-post .post-info {
    margin-bottom: 40px; } }

@media (min-width: 993px) {
  .single .type-post .post-info__social {
    margin-top: -1px; } }

.single .type-post .post-info[class*="recommend-articles"] {
  padding: 0;
  margin-bottom: 10px; }

@media (min-width: 768px) {
  .single .type-post .article-intro {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start; } }

@media (min-width: 993px) {
  .single .type-post .article-intro {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; } }

@media (min-width: 768px) {
  .single .type-post .article-intro__text {
    margin-top: 0; } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, .search-results .tabs-nav,
.search-no-results .tabs-nav {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.search-results h1,
.search-no-results h1 {
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .search-results h1,
    .search-no-results h1 {
      margin-bottom: 40px; } }
  @media (min-width: 1200px) {
    .search-results h1,
    .search-no-results h1 {
      margin-bottom: 30px; } }

@media (min-width: 993px) {
  .search-results .site-main .container,
  .search-no-results .site-main .container {
    max-width: 1010px; } }

.search-results .search-results-wrapper,
.search-no-results .search-results-wrapper {
  padding: 30px 0 60px; }
  @media (min-width: 768px) {
    .search-results .search-results-wrapper,
    .search-no-results .search-results-wrapper {
      padding: 40px 0 80px; } }
  @media (min-width: 1200px) {
    .search-results .search-results-wrapper,
    .search-no-results .search-results-wrapper {
      padding-bottom: 100px; } }
  @media (min-width: 1501px) {
    .search-results .search-results-wrapper,
    .search-no-results .search-results-wrapper {
      padding-bottom: 120px; } }

.search-results .page-heading,
.search-no-results .page-heading {
  padding: 0; }

.search-results .search-form,
.search-no-results .search-form {
  margin-bottom: 20px; }
  @media (min-width: 768px) {
    .search-results .search-form,
    .search-no-results .search-form {
      margin-bottom: 30px; } }
  .search-results .search-form input[type="submit"],
  .search-no-results .search-form input[type="submit"] {
    display: none; }
    @media (min-width: 993px) {
      .search-results .search-form input[type="submit"],
      .search-no-results .search-form input[type="submit"] {
        display: inline-block; } }

.search-results .tabs-nav,
.search-no-results .tabs-nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin: 0 -15px 27px;
  letter-spacing: .5px; }
  @media (min-width: 768px) {
    .search-results .tabs-nav,
    .search-no-results .tabs-nav {
      margin: 0 -20px 38px; } }
  @media (min-width: 1200px) {
    .search-results .tabs-nav,
    .search-no-results .tabs-nav {
      margin: 0 -25px 25px; } }
  .search-results .tabs-nav li,
  .search-no-results .tabs-nav li {
    padding: 0 15px;
    margin-bottom: 10px; }
    @media (min-width: 768px) {
      .search-results .tabs-nav li,
      .search-no-results .tabs-nav li {
        padding: 0 20px; } }
    @media (min-width: 1200px) {
      .search-results .tabs-nav li,
      .search-no-results .tabs-nav li {
        padding: 0 25px; } }
    .search-results .tabs-nav li:first-child,
    .search-no-results .tabs-nav li:first-child {
      font-size: 1rem;
      line-height: 1.75;
      letter-spacing: 0;
      font-weight: 700; }
      @media (min-width: 1200px) {
        .search-results .tabs-nav li:first-child,
        .search-no-results .tabs-nav li:first-child {
          font-size: 1.125rem;
          line-height: 1.55556; } }
  .search-results .tabs-nav a,
  .search-no-results .tabs-nav a {
    text-decoration: none; }
    .search-results .tabs-nav a:hover,
    .search-no-results .tabs-nav a:hover {
      color: #009932; }
    .search-results .tabs-nav a.active,
    .search-no-results .tabs-nav a.active {
      color: #009932;
      font-weight: 700; }

.search-results .search-list,
.search-no-results .search-list {
  margin-bottom: 30px; }
  @media (min-width: 768px) {
    .search-results .search-list,
    .search-no-results .search-list {
      margin-bottom: 40px; } }
  @media (min-width: 1200px) {
    .search-results .search-list,
    .search-no-results .search-list {
      margin-bottom: 60px; } }
  .search-results .search-list > article,
  .search-no-results .search-list > article {
    padding: 40px 0;
    border-bottom: 1px solid #d4d9db; }
    @media (min-width: 768px) {
      .search-results .search-list > article,
      .search-no-results .search-list > article {
        padding: 50px 0; } }
    @media (min-width: 1200px) {
      .search-results .search-list > article,
      .search-no-results .search-list > article {
        padding: 40px 0; } }
    .search-results .search-list > article:first-child,
    .search-no-results .search-list > article:first-child {
      padding-top: 0; }
      @media (min-width: 1200px) {
        .search-results .search-list > article:first-child,
        .search-no-results .search-list > article:first-child {
          padding: 40px 0; } }
    .search-results .search-list > article h3,
    .search-no-results .search-list > article h3 {
      margin-bottom: 15px; }
      @media (min-width: 1200px) {
        .search-results .search-list > article h3,
        .search-no-results .search-list > article h3 {
          margin-bottom: 20px; } }
    .search-results .search-list > article p,
    .search-no-results .search-list > article p {
      margin-bottom: 30px; }
      @media (min-width: 1200px) {
        .search-results .search-list > article p,
        .search-no-results .search-list > article p {
          margin-bottom: 20px; } }

.search-results .show-older-wrapper,
.search-no-results .show-older-wrapper {
  text-align: center; }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, .blog-wrapper .blog-sidebar__widgets .category-list, .blog-wrapper .blog-sidebar__widgets .wp-tag-cloud, .blog-wrapper .blog-item__info .post-info {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.blog.filter-is-open,
.archive.filter-is-open {
  height: 100vh;
  overflow: hidden; }

.blog .page-heading,
.archive .page-heading {
  padding-top: 158px; }
  @media (min-width: 768px) {
    .blog .page-heading,
    .archive .page-heading {
      padding-top: 0; } }
  @media (min-width: 768px) {
    .blog .page-heading__breadcrumbs,
    .archive .page-heading__breadcrumbs {
      margin-bottom: 158px; } }
  @media (min-width: 993px) {
    .blog .page-heading__breadcrumbs,
    .archive .page-heading__breadcrumbs {
      margin-bottom: 50px; } }
  @media (min-width: 1501px) {
    .blog .page-heading__breadcrumbs,
    .archive .page-heading__breadcrumbs {
      margin-bottom: 68px; } }
  @media (min-width: 768px) {
    .blog .page-heading__content-wrapper,
    .archive .page-heading__content-wrapper {
      margin: 0 -10px; } }
  .blog .page-heading__title,
  .archive .page-heading__title {
    margin-bottom: 16px; }
    @media (min-width: 993px) {
      .blog .page-heading__title,
      .archive .page-heading__title {
        margin-bottom: 20px; } }
    .blog .page-heading__title span,
    .archive .page-heading__title span {
      padding: 0; }
  .blog .page-heading__desc,
  .archive .page-heading__desc {
    letter-spacing: .4px; }

@media (min-width: 993px) {
  .blog-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding-top: 63px; } }

@media (min-width: 993px) {
  .blog-wrapper .blog-sidebar {
    -webkit-box-flex: 1;
        -ms-flex: 1 0 335px;
            flex: 1 0 335px;
    margin-right: 65px;
    max-width: 335px; } }

.blog-wrapper .blog-sidebar__btn-filter {
  font-size: 1rem;
  line-height: 1.75;
  background-color: #e1f6e8;
  border: none;
  color: #000;
  cursor: pointer;
  font-weight: bold;
  left: 0;
  padding: 35px 0;
  position: absolute;
  text-align: center;
  top: 108px;
  width: 100%; }
  @media (min-width: 768px) {
    .blog-wrapper .blog-sidebar__btn-filter {
      top: 154px; } }
  @media (min-width: 993px) {
    .blog-wrapper .blog-sidebar__btn-filter {
      display: none; } }
  .blog-wrapper .blog-sidebar__btn-filter .btn-content {
    display: inline-block;
    max-width: 540px;
    padding: 0 20px;
    position: relative;
    text-align: left;
    width: 100%; }
    @media (min-width: 768px) {
      .blog-wrapper .blog-sidebar__btn-filter .btn-content {
        max-width: 730px; } }
    .blog-wrapper .blog-sidebar__btn-filter .btn-content:after {
      font-size: 0.4375rem;
      line-height: 1;
      color: #11181b;
      content: "\E909";
      font-family: icomoon;
      position: absolute;
      right: 20px;
      top: 50%;
      -webkit-transform: translate3d(0, -2px, 1px) rotate(0deg);
              transform: translate3d(0, -2px, 1px) rotate(0deg);
      -webkit-transition: -webkit-transform .3s ease;
      transition: -webkit-transform .3s ease;
      -o-transition: transform .3s ease;
      transition: transform .3s ease;
      transition: transform .3s ease, -webkit-transform .3s ease; }
  .blog-wrapper .blog-sidebar__btn-filter.is-open:after {
    -webkit-transform: translate3d(0, -2px, 1px) rotate(180deg);
            transform: translate3d(0, -2px, 1px) rotate(180deg); }

.blog-wrapper .blog-sidebar__widgets {
  background-color: #fff;
  height: calc(100% - 228px);
  left: 0;
  opacity: 0;
  overflow: auto;
  padding: 0 20px;
  position: fixed;
  top: 228px;
  width: 100%;
  z-index: -1; }
  @media (min-width: 768px) {
    .blog-wrapper .blog-sidebar__widgets {
      height: calc(100% - 255px);
      top: 255px; } }
  @media (min-width: 993px) {
    .blog-wrapper .blog-sidebar__widgets {
      height: auto;
      opacity: 1;
      padding: 0;
      position: static; } }
  .blog-wrapper .blog-sidebar__widgets.is-open {
    opacity: 1;
    z-index: 2; }
  .blog-wrapper .blog-sidebar__widgets .sidebar-search {
    margin: 0 auto;
    max-width: 500px;
    position: relative; }
    @media (min-width: 768px) {
      .blog-wrapper .blog-sidebar__widgets .sidebar-search {
        max-width: 690px; } }
    .blog-wrapper .blog-sidebar__widgets .sidebar-search .search-form {
      position: relative;
      margin-bottom: 30px; }
      @media (min-width: 993px) {
        .blog-wrapper .blog-sidebar__widgets .sidebar-search .search-form {
          margin-bottom: 40px; } }
    .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="text"] {
      font-size: 1rem;
      line-height: 2.625;
      border: 1px solid transparent;
      border-bottom-color: #d4d9db;
      border-radius: 0;
      height: 42px;
      padding-left: 0;
      width: 100%;
      background-image: none; }
      .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="text"]::-webkit-input-placeholder {
        font-size: 1rem;
        line-height: 2.625;
        color: #88969a; }
        @media (min-width: 993px) {
          .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="text"]::-webkit-input-placeholder {
            font-size: 0.875rem;
            line-height: 3.57143; } }
      .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="text"]::-moz-placeholder {
        opacity: 1;
        font-size: 1rem;
        line-height: 2.625;
        color: #88969a; }
        @media (min-width: 993px) {
          .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="text"]::-moz-placeholder {
            font-size: 0.875rem;
            line-height: 3.57143; } }
      .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="text"]:-moz-placeholder {
        font-size: 1rem;
        line-height: 2.625;
        color: #88969a; }
        @media (min-width: 993px) {
          .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="text"]:-moz-placeholder {
            font-size: 0.875rem;
            line-height: 3.57143; } }
      .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="text"]:-ms-input-placeholder {
        font-size: 1rem;
        line-height: 2.625;
        color: #88969a; }
        @media (min-width: 993px) {
          .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="text"]:-ms-input-placeholder {
            font-size: 0.875rem;
            line-height: 3.57143; } }
      .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="text"].placeholder {
        font-size: 1rem;
        line-height: 2.625;
        color: #88969a; }
        @media (min-width: 993px) {
          .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="text"].placeholder {
            font-size: 0.875rem;
            line-height: 3.57143; } }
      @media (min-width: 993px) {
        .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="text"] {
          font-size: 0.875rem;
          line-height: 3.57143;
          background-position: 100% 50%;
          height: 50px; } }
      @media (min-width: 1501px) {
        .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="text"] {
          padding-right: 44px; } }
    .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="submit"] {
      display: none;
      position: absolute;
      top: 50%;
      right: 0;
      -webkit-transform: translateY(-50%);
          -ms-transform: translateY(-50%);
              transform: translateY(-50%);
      padding: 0;
      font-size: 0;
      width: 20px;
      height: 20px;
      min-width: auto;
      background-color: transparent;
      background-image: url(../images/search-icon.svg);
      background-repeat: no-repeat;
      background-size: 100%;
      background-position: 150% 50%;
      -webkit-transition: opacity .3s ease;
      -o-transition: opacity .3s ease;
      transition: opacity .3s ease; }
      @media (min-width: 993px) {
        .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="submit"] {
          display: block; } }
      .blog-wrapper .blog-sidebar__widgets .sidebar-search input[type="submit"]:hover {
        opacity: .6; }
  .blog-wrapper .blog-sidebar__widgets .category-list {
    margin: 0 auto 31px;
    max-width: 500px; }
    @media (min-width: 768px) {
      .blog-wrapper .blog-sidebar__widgets .category-list {
        max-width: 690px; } }
    @media (min-width: 993px) {
      .blog-wrapper .blog-sidebar__widgets .category-list {
        margin-bottom: 60px; } }
    .blog-wrapper .blog-sidebar__widgets .category-list li {
      margin-bottom: 16px; }
      @media (min-width: 993px) {
        .blog-wrapper .blog-sidebar__widgets .category-list li {
          margin-bottom: 20px; } }
      .blog-wrapper .blog-sidebar__widgets .category-list li.current-cat a {
        color: #009932; }
      .blog-wrapper .blog-sidebar__widgets .category-list li a {
        font-size: 1rem;
        line-height: 1.75;
        font-weight: bold; }
        @media (min-width: 993px) {
          .blog-wrapper .blog-sidebar__widgets .category-list li a {
            font-size: 1.125rem;
            line-height: 1.55556; } }
        .blog-wrapper .blog-sidebar__widgets .category-list li a:hover {
          color: #009932;
          text-decoration: none; }
  .blog-wrapper .blog-sidebar__widgets .wp-tag-cloud {
    border-bottom: 1px solid #d4d9db;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    padding-bottom: 20px; }
    @media (min-width: 993px) {
      .blog-wrapper .blog-sidebar__widgets .wp-tag-cloud {
        border-bottom: none;
        padding-bottom: none; } }
    .blog-wrapper .blog-sidebar__widgets .wp-tag-cloud li {
      margin: 0 9px 10px 0; }
      @media (min-width: 993px) {
        .blog-wrapper .blog-sidebar__widgets .wp-tag-cloud li {
          margin-bottom: 8px; } }
      .blog-wrapper .blog-sidebar__widgets .wp-tag-cloud li a {
        font-size: 0.75rem;
        line-height: 1.5;
        border: 1px solid #d4d9db;
        display: block;
        font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
        font-weight: bold;
        padding: 4px 7px 6px;
        -webkit-transition: border-color .3s ease, color .3s ease;
        -o-transition: border-color .3s ease, color .3s ease;
        transition: border-color .3s ease, color .3s ease; }
        @media (min-width: 993px) {
          .blog-wrapper .blog-sidebar__widgets .wp-tag-cloud li a {
            padding: 3px 8px 2px; } }
        .blog-wrapper .blog-sidebar__widgets .wp-tag-cloud li a:hover, .blog-wrapper .blog-sidebar__widgets .wp-tag-cloud li a.active-tag {
          border-color: #6cc266;
          color: #6cc266;
          text-decoration: none; }

.blog-wrapper .content-holder {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1; }

.blog-wrapper .latest__list {
  padding-top: 14px; }
  @media (min-width: 768px) {
    .blog-wrapper .latest__list {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
      margin: 0 -25px;
      padding-top: 34px; } }
  @media (min-width: 993px) {
    .blog-wrapper .latest__list {
      margin: 0 -15px;
      padding-top: 0; } }

.blog-wrapper .blog-item {
  margin-bottom: 60px; }
  @media (min-width: 768px) {
    .blog-wrapper .blog-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 50%;
              flex: 0 1 50%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      max-width: 50%;
      padding: 0 25px; } }
  @media (min-width: 993px) {
    .blog-wrapper .blog-item {
      margin-bottom: 80px;
      padding: 0 15px; } }
  .blog-wrapper .blog-item__header {
    margin-bottom: 24px; }
    @media (min-width: 993px) {
      .blog-wrapper .blog-item__header {
        margin-bottom: 23px; } }
  .blog-wrapper .blog-item__image-wrapper {
    border-radius: 2px;
    overflow: hidden;
    padding-top: 56.25%;
    position: relative; }
    .blog-wrapper .blog-item__image-wrapper a {
      height: 100%;
      left: 0;
      position: absolute;
      top: 0;
      width: 100%; }
      .blog-wrapper .blog-item__image-wrapper a img {
        height: 100%; }
  .blog-wrapper .blog-item__description {
    border-bottom: 1px solid #d4d9db;
    padding-bottom: 19px; }
    @media (min-width: 768px) {
      .blog-wrapper .blog-item__description {
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        padding-bottom: 20px; } }
    @media (min-width: 993px) {
      .blog-wrapper .blog-item__description {
        padding-bottom: 42px; } }
  .blog-wrapper .blog-item__info {
    margin-bottom: 10px; }
    @media (min-width: 993px) {
      .blog-wrapper .blog-item__info {
        margin-bottom: 8px; } }
    .blog-wrapper .blog-item__info .post-info {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap; }
      .blog-wrapper .blog-item__info .post-info__item {
        font-size: 0.75rem;
        line-height: 1.83333;
        color: #000;
        font-family: 'Lekton', Arial, 'Helvetica Neue', Helvetica, sans-serif;
        font-weight: bold;
        margin-right: 16px; }
        @media (min-width: 993px) {
          .blog-wrapper .blog-item__info .post-info__item {
            margin-right: 20px; } }
  .blog-wrapper .blog-item__title {
    margin-bottom: 12px; }
    @media (min-width: 768px) {
      .blog-wrapper .blog-item__title {
        margin-bottom: 16px; } }
    @media (min-width: 993px) {
      .blog-wrapper .blog-item__title {
        margin-bottom: 21px; } }
  .blog-wrapper .blog-item__content {
    font-size: 1rem;
    line-height: 1.75;
    color: #000;
    letter-spacing: .4px; }
    @media (min-width: 993px) {
      .blog-wrapper .blog-item__content {
        letter-spacing: .5px; } }
    .blog-wrapper .blog-item__content p {
      letter-spacing: .4px;
      margin-bottom: 0; }
      @media (min-width: 993px) {
        .blog-wrapper .blog-item__content p {
          letter-spacing: .5px; } }
  @media (min-width: 768px) {
    .blog-wrapper .blog-item:nth-child(5n) {
      -webkit-box-flex: 1;
          -ms-flex: 1 0 100%;
              flex: 1 0 100%;
      -webkit-box-orient: horizontal;
      -webkit-box-direction: normal;
          -ms-flex-direction: row;
              flex-direction: row;
      max-width: 100%;
      padding: 0 25px; } }
  @media (min-width: 993px) {
    .blog-wrapper .blog-item:nth-child(5n) {
      padding: 0 15px 80px;
      position: relative; }
      .blog-wrapper .blog-item:nth-child(5n):after {
        background-color: #d4d9db;
        bottom: 0;
        content: "";
        height: 1px;
        left: 15px;
        position: absolute;
        width: calc(100% - 30px); } }
  @media (min-width: 768px) {
    .blog-wrapper .blog-item:nth-child(5n) .blog-item__header {
      -webkit-box-flex: 0;
          -ms-flex: 0 1 50%;
              flex: 0 1 50%;
      margin-bottom: 0;
      padding-right: 10px; } }
  @media (min-width: 993px) {
    .blog-wrapper .blog-item:nth-child(5n) .blog-item__header {
      -webkit-box-flex: 0;
          -ms-flex: 0 0 270px;
              flex: 0 0 270px;
      margin-right: 40px;
      padding-right: 0; } }
  @media (min-width: 768px) {
    .blog-wrapper .blog-item:nth-child(5n) .blog-item__description {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-flex: 0;
          -ms-flex: 0 1 50%;
              flex: 0 1 50%;
      -webkit-box-orient: vertical;
      -webkit-box-direction: normal;
          -ms-flex-direction: column;
              flex-direction: column;
      -webkit-box-pack: center;
          -ms-flex-pack: center;
              justify-content: center;
      margin-left: 50px;
      padding-bottom: 20px; } }
  @media (min-width: 993px) {
    .blog-wrapper .blog-item:nth-child(5n) .blog-item__description {
      border-bottom: none;
      display: block;
      margin-left: 0;
      padding-bottom: 0; } }
  @media (min-width: 768px) {
    .blog-wrapper .blog-item:nth-child(5n) .blog-item__image-wrapper {
      padding-top: 100%; } }
  @media (min-width: 993px) {
    .blog-wrapper .blog-item:nth-child(5n) .blog-item__title {
      margin-bottom: 20px; } }

.blog-wrapper .archive-grid__loadmore {
  display: block;
  -webkit-transform: translateY(-30px);
      -ms-transform: translateY(-30px);
          transform: translateY(-30px); }
  @media (min-width: 768px) {
    .blog-wrapper .archive-grid__loadmore {
      -webkit-transform: translateY(-20px);
          -ms-transform: translateY(-20px);
              transform: translateY(-20px); } }

/*
  This mixin can be used to set the line-height in percents:
  @include line-height(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
  This mixin can be used to set the font-size and line-height in percents:
  @include font-size(fontSize, lineHeight);
*/
/*
    Mixin for breakpoints
    
    @include phone {}
    ...
    @include full-width {}
 */
/*
  This mixin can be used to set the object-fit:
  @include object-fit(contain);
  or object-fit and object-position:
  @include object-fit(cover, top);
  See: https://github.com/bfred-it/object-fit-images/blob/master/preprocessors/mixin.scss
*/
.listreset, .page-template-donate .page-heading .logos-list {
  margin: 0;
  padding: 0;
  list-style: none; }

.clearfix:after {
  content: '';
  display: table;
  clear: both; }

.ellipsis {
  white-space: nowrap;
  /* 1 */
  -o-text-overflow: ellipsis;
     text-overflow: ellipsis;
  /* 2 */
  overflow: hidden; }

.page-template-donate .page-heading {
  display: block;
  padding: 30px 0;
  max-width: 970px;
  margin: 0 auto; }
  @media (min-width: 768px) {
    .page-template-donate .page-heading {
      padding: 40px 0; } }
  @media (min-width: 1501px) {
    .page-template-donate .page-heading {
      padding: 60px 0; } }
  .page-template-donate .page-heading__content-wrapper {
    max-width: none; }
  @media (min-width: 768px) {
    .page-template-donate .page-heading__title {
      max-width: 360px; } }
  @media (min-width: 1200px) {
    .page-template-donate .page-heading__title {
      max-width: 470px;
      margin-bottom: 37px; } }
  .page-template-donate .page-heading__info-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
    @media (max-width: 767px) {
      .page-template-donate .page-heading__info-wrapper.no-big-text {
        -webkit-box-align: end;
            -ms-flex-align: end;
                align-items: flex-end; } }
    .page-template-donate .page-heading__info-wrapper.no-big-text p {
      margin-bottom: 0; }
    @media (max-width: 767px) {
      .page-template-donate .page-heading__info-wrapper.no-big-text .page-heading__info {
        max-width: calc(100% - 150px); } }
    .page-template-donate .page-heading__info-wrapper.no-big-text .logos-list li:last-child {
      margin-bottom: 0; }
  .page-template-donate .page-heading__info {
    font-size: 1rem;
    line-height: 1.5;
    max-width: 130px; }
    @media (min-width: 768px) {
      .page-template-donate .page-heading__info {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        max-width: 330px; } }
    @media (min-width: 1200px) {
      .page-template-donate .page-heading__info {
        font-size: 1.5rem;
        line-height: 1.41667;
        max-width: 500px; } }
    @media (min-width: 768px) {
      .page-template-donate .page-heading__info p {
        margin-bottom: 0; } }
  .page-template-donate .page-heading__big-text {
    font-size: 3rem;
    line-height: 1.20833;
    font-weight: 700;
    color: #2aa757; }
    @media (min-width: 768px) {
      .page-template-donate .page-heading__big-text {
        padding-right: 10px; } }
    @media (min-width: 1200px) {
      .page-template-donate .page-heading__big-text {
        font-size: 4.125rem;
        line-height: 1.21212;
        padding-right: 24px; } }
  .page-template-donate .page-heading .logos-list {
    width: 136px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end; }
    @media (min-width: 768px) {
      .page-template-donate .page-heading .logos-list {
        -webkit-box-align: center;
            -ms-flex-align: center;
                align-items: center;
        -webkit-box-flex: 1;
            -ms-flex-positive: 1;
                flex-grow: 1;
        margin: 0 -15px;
        padding-left: 30px;
        width: auto; } }
    .page-template-donate .page-heading .logos-list li {
      margin-bottom: 20px; }
      @media (min-width: 768px) {
        .page-template-donate .page-heading .logos-list li {
          padding: 5px 15px;
          margin-bottom: 0;
          font-size: 0; } }
    .page-template-donate .page-heading .logos-list a {
      display: block;
      font-size: 0; }
    .page-template-donate .page-heading .logos-list img {
      max-width: 136px;
      max-height: 64px;
      width: auto; }
      @media (min-width: 993px) {
        .page-template-donate .page-heading .logos-list img {
          max-width: 170px;
          max-height: 70px; } }

.page-template-donate .entry-content p:empty {
  margin-bottom: 0; }

