@import url(https://fonts.googleapis.com/css?family=Rubik:300,300i,400,400i,500,500i,700,700i,900,900i);





body {
  font-style: normal;
  line-height: 1.5;
}
.mbr-section-title {
  font-style: normal;
  line-height: 1.2;
}
.mbr-section-subtitle {
  line-height: 1.3;
}
.mbr-text {
  font-style: normal;
  line-height: 1.6;
}
.display-1 {
  font-family: 'Rubik', sans-serif;
  font-size: 4.25rem;
}
.display-1 > .mbr-iconfont {
  font-size: 6.8rem;
}
.display-2 {
  font-family: 'Rubik', sans-serif;
  font-size: 3rem;
}
.display-2 > .mbr-iconfont {
  font-size: 4.8rem;
}
.display-4 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
.display-4 > .mbr-iconfont {
  font-size: 1.6rem;
}
.display-5 {
  font-family: 'Rubik', sans-serif;
  font-size: 1.5rem;
}
.display-5 > .mbr-iconfont {
  font-size: 2.4rem;
}
.display-7 {
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
}
.display-7 > .mbr-iconfont {
  font-size: 1.6rem;
}
/* ---- Fluid typography for mobile devices ---- */
/* 1.4 - font scale ratio ( bootstrap == 1.42857 ) */
/* 100vw - current viewport width */
/* (48 - 20)  48 == 48rem == 768px, 20 == 20rem == 320px(minimal supported viewport) */
/* 0.65 - min scale variable, may vary */
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.4rem;
    font-size: calc( 2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (2.1374999999999997rem + (4.25 - 2.1374999999999997) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  font-weight: 500;
  border-width: 2px;
  font-style: normal;
  letter-spacing: 1px;
  margin: .4rem .8rem;
  white-space: normal;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 3rem;
  border-radius: 3px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  word-break: break-word;
}
.btn-sm {
  font-weight: 500;
  letter-spacing: 1px;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 0.6rem 1.5rem;
  border-radius: 3px;
}
.btn-md {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1rem 3rem;
  border-radius: 3px;
}
.btn-lg {
  font-weight: 500;
  letter-spacing: 1px;
  margin: .4rem .8rem !important;
  -webkit-transition: all 0.3s ease-in-out;
  -moz-transition: all 0.3s ease-in-out;
  transition: all 0.3s ease-in-out;
  padding: 1.2rem 3.2rem;
  border-radius: 3px;
}
.bg-primary {
  background-color: #149dcc !important;
}
.bg-success {
  background-color: #fceb13 !important;
}
.bg-info {
  background-color: #82786e !important;
}
.bg-warning {
  background-color: #879a9f !important;
}
.bg-danger {
  background-color: #15a313 !important;
}
.btn-primary,
.btn-primary:active,
.btn-primary.active {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus {
  color: #ffffff;
  background-color: #0d6786;
  border-color: #0d6786;
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #0d6786 !important;
  border-color: #0d6786 !important;
}
.btn-secondary,
.btn-secondary:active,
.btn-secondary.active {
  background-color: #7716be;
  border-color: #7716be;
  color: #ffffff;
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus {
  color: #ffffff;
  background-color: #4c0e79;
  border-color: #4c0e79;
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #4c0e79 !important;
  border-color: #4c0e79 !important;
}
.btn-info,
.btn-info:active,
.btn-info.active {
  background-color: #82786e;
  border-color: #82786e;
  color: #ffffff;
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus {
  color: #ffffff;
  background-color: #59524b;
  border-color: #59524b;
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #59524b !important;
  border-color: #59524b !important;
}
.btn-success,
.btn-success:active,
.btn-success.active {
  background-color: #fceb13;
  border-color: #fceb13;
  color: #ffffff;
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus {
  color: #ffffff;
  background-color: #c0b202;
  border-color: #c0b202;
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #c0b202 !important;
  border-color: #c0b202 !important;
}
.btn-warning,
.btn-warning:active,
.btn-warning.active {
  background-color: #879a9f;
  border-color: #879a9f;
  color: #ffffff;
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus {
  color: #ffffff;
  background-color: #617479;
  border-color: #617479;
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #617479 !important;
  border-color: #617479 !important;
}
.btn-danger,
.btn-danger:active,
.btn-danger.active {
  background-color: #15a313;
  border-color: #15a313;
  color: #ffffff;
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus {
  color: #ffffff;
  background-color: #0c5e0b;
  border-color: #0c5e0b;
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #0c5e0b !important;
  border-color: #0c5e0b !important;
}
.btn-white {
  color: #333333 !important;
}
.btn-white,
.btn-white:active,
.btn-white.active {
  background-color: #ffffff;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus {
  color: #ffffff;
  background-color: #d4d4d4;
  border-color: #d4d4d4;
}
.btn-white.disabled,
.btn-white:disabled {
  color: #ffffff !important;
  background-color: #d4d4d4 !important;
  border-color: #d4d4d4 !important;
}
.btn-black,
.btn-black:active,
.btn-black.active {
  background-color: #333333;
  border-color: #333333;
  color: #ffffff;
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus {
  color: #ffffff;
  background-color: #0d0d0d;
  border-color: #0d0d0d;
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #0d0d0d !important;
  border-color: #0d0d0d !important;
}
.btn-primary-outline,
.btn-primary-outline:active,
.btn-primary-outline.active {
  background: none;
  border-color: #0b566f;
  color: #0b566f;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus {
  color: #ffffff;
  background-color: #149dcc;
  border-color: #149dcc;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #149dcc !important;
  border-color: #149dcc !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active,
.btn-secondary-outline.active {
  background: none;
  border-color: #3e0b63;
  color: #3e0b63;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus {
  color: #ffffff;
  background-color: #7716be;
  border-color: #7716be;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #7716be !important;
  border-color: #7716be !important;
}
.btn-info-outline,
.btn-info-outline:active,
.btn-info-outline.active {
  background: none;
  border-color: #4b453f;
  color: #4b453f;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus {
  color: #ffffff;
  background-color: #82786e;
  border-color: #82786e;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #82786e !important;
  border-color: #82786e !important;
}
.btn-success-outline,
.btn-success-outline:active,
.btn-success-outline.active {
  background: none;
  border-color: #a79b02;
  color: #a79b02;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus {
  color: #ffffff;
  background-color: #fceb13;
  border-color: #fceb13;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #fceb13 !important;
  border-color: #fceb13 !important;
}
.btn-warning-outline,
.btn-warning-outline:active,
.btn-warning-outline.active {
  background: none;
  border-color: #55666b;
  color: #55666b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus {
  color: #ffffff;
  background-color: #879a9f;
  border-color: #879a9f;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #879a9f !important;
  border-color: #879a9f !important;
}
.btn-danger-outline,
.btn-danger-outline:active,
.btn-danger-outline.active {
  background: none;
  border-color: #094808;
  color: #094808;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus {
  color: #ffffff;
  background-color: #15a313;
  border-color: #15a313;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #15a313 !important;
  border-color: #15a313 !important;
}
.btn-black-outline,
.btn-black-outline:active,
.btn-black-outline.active {
  background: none;
  border-color: #000000;
  color: #000000;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus {
  color: #ffffff;
  background-color: #333333;
  border-color: #333333;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #333333 !important;
  border-color: #333333 !important;
}
.btn-white-outline,
.btn-white-outline:active,
.btn-white-outline.active {
  background: none;
  border-color: #ffffff;
  color: #ffffff;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus {
  color: #333333;
  background-color: #ffffff;
  border-color: #ffffff;
}
.text-primary {
  color: #149dcc !important;
}
.text-secondary {
  color: #7716be !important;
}
.text-success {
  color: #fceb13 !important;
}
.text-info {
  color: #82786e !important;
}
.text-warning {
  color: #879a9f !important;
}
.text-danger {
  color: #15a313 !important;
}
.text-white {
  color: #ffffff !important;
}
.text-black {
  color: #000000 !important;
}
a.text-primary:hover,
a.text-primary:focus {
  color: #0b566f !important;
}
a.text-secondary:hover,
a.text-secondary:focus {
  color: #3e0b63 !important;
}
a.text-success:hover,
a.text-success:focus {
  color: #a79b02 !important;
}
a.text-info:hover,
a.text-info:focus {
  color: #4b453f !important;
}
a.text-warning:hover,
a.text-warning:focus {
  color: #55666b !important;
}
a.text-danger:hover,
a.text-danger:focus {
  color: #094808 !important;
}
a.text-white:hover,
a.text-white:focus {
  color: #b3b3b3 !important;
}
a.text-black:hover,
a.text-black:focus {
  color: #4d4d4d !important;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #82786e;
}
.alert-warning {
  background-color: #879a9f;
}
.alert-danger {
  background-color: #15a313;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-section-btn a.btn:not(.btn-form):hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #149dcc;
  border-color: #149dcc;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
.btn-form {
  border-radius: 0;
}
.btn-form:hover {
  cursor: pointer;
}
a,
a:hover {
  color: #149dcc;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b4e6f8;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #fffcdc;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #beb8b2;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ced6d8;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #4eea4b;
}
/* Scroll to top button*/
.scrollToTop_wraper {
  opacity: 0 !important;
}
/* Others*/
.note-check a[data-value=Rubik] {
  font-style: normal;
}
.mbr-arrow a {
  color: #ffffff;
}
.form-control-label {
  position: relative;
  cursor: pointer;
  margin-bottom: .357em;
  padding: 0;
}
.alert {
  color: #ffffff;
  border-radius: 0;
  border: 0;
  font-size: .875rem;
  line-height: 1.5;
  margin-bottom: 1.875rem;
  padding: 1.25rem;
  position: relative;
}
.alert.alert-form::after {
  background-color: inherit;
  bottom: -7px;
  content: "";
  display: block;
  height: 14px;
  left: 50%;
  margin-left: -7px;
  position: absolute;
  transform: rotate(45deg);
  width: 14px;
}
.form-control {
  background-color: #f5f5f5;
  box-shadow: none;
  color: #565656;
  font-family: 'Rubik', sans-serif;
  font-size: 1rem;
  line-height: 1.43;
  min-height: 3.5em;
  padding: 1.07em .5em;
}
.form-control > .mbr-iconfont {
  font-size: 1.6rem;
}
.form-control,
.form-control:focus {
  border: 1px solid #e8e8e8;
}
.form-active .form-control:invalid {
  border-color: red;
}
.mbr-overlay {
  background-color: #000;
  bottom: 0;
  left: 0;
  opacity: .5;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
}
blockquote {
  font-style: italic;
  padding: 10px 0 10px 20px;
  font-size: 1.09rem;
  position: relative;
  border-color: #149dcc;
  border-width: 3px;
}
ul,
ol,
pre,
blockquote {
  margin-bottom: 2.3125rem;
}
pre {
  background: #f4f4f4;
  padding: 10px 24px;
  white-space: pre-wrap;
}
.inactive {
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  pointer-events: none;
  -webkit-user-drag: none;
  user-drag: none;
}
.mbr-section__comments .row {
  justify-content: center;
}
/* Forms */
.mbr-form .btn {
  margin: .4rem 0;
}
.mbr-form .input-group-btn a.btn {
  border-radius: 100px !important;
}
.mbr-form .input-group-btn a.btn:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.mbr-form .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
  padding: 1rem 3rem;
}
.mbr-form .input-group-btn button[type="submit"]:hover {
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.form2 .form-control {
  border-top-left-radius: 100px;
  border-bottom-left-radius: 100px;
}
.form2 .input-group-btn a.btn {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form2 .input-group-btn button[type="submit"] {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.form3 input[type="email"] {
  border-radius: 100px !important;
}
@media (max-width: 349px) {
  .form2 input[type="email"] {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn a.btn {
    border-radius: 100px !important;
  }
  .form2 .input-group-btn button[type="submit"] {
    border-radius: 100px !important;
  }
}
@media (max-width: 767px) {
  .btn {
    font-size: .75rem !important;
  }
  .btn .mbr-iconfont {
    font-size: 1rem !important;
  }
}
/* Social block */
.btn-social {
  font-size: 20px;
  border-radius: 50%;
  padding: 0;
  width: 44px;
  height: 44px;
  line-height: 44px;
  text-align: center;
  position: relative;
  border: 2px solid #c0a375;
  border-color: #149dcc;
  color: #232323;
  cursor: pointer;
}
.btn-social i {
  top: 0;
  line-height: 44px;
  width: 44px;
}
.btn-social:hover {
  color: #fff;
  background: #149dcc;
}
.btn-social + .btn {
  margin-left: .1rem;
}
/* Footer */
.mbr-footer-content li::before,
.mbr-footer .mbr-contacts li::before {
  background: #149dcc;
}
.mbr-footer-content li a:hover,
.mbr-footer .mbr-contacts li a:hover {
  color: #149dcc;
}
.footer3 input[type="email"],
.footer4 input[type="email"] {
  border-radius: 100px !important;
}
.footer3 .input-group-btn a.btn,
.footer4 .input-group-btn a.btn {
  border-radius: 100px !important;
}
.footer3 .input-group-btn button[type="submit"],
.footer4 .input-group-btn button[type="submit"] {
  border-radius: 100px !important;
}
/* Headers*/
.header13 .form-inline input[type="email"],
.header14 .form-inline input[type="email"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="text"],
.header14 .form-inline input[type="text"] {
  border-radius: 100px;
}
.header13 .form-inline input[type="tel"],
.header14 .form-inline input[type="tel"] {
  border-radius: 100px;
}
.header13 .form-inline a.btn,
.header14 .form-inline a.btn {
  border-radius: 100px;
}
.header13 .form-inline button,
.header14 .form-inline button {
  border-radius: 100px !important;
}
.offset-1 {
  margin-left: 8.33333%;
}
.offset-2 {
  margin-left: 16.66667%;
}
.offset-3 {
  margin-left: 25%;
}
.offset-4 {
  margin-left: 33.33333%;
}
.offset-5 {
  margin-left: 41.66667%;
}
.offset-6 {
  margin-left: 50%;
}
.offset-7 {
  margin-left: 58.33333%;
}
.offset-8 {
  margin-left: 66.66667%;
}
.offset-9 {
  margin-left: 75%;
}
.offset-10 {
  margin-left: 83.33333%;
}
.offset-11 {
  margin-left: 91.66667%;
}
@media (min-width: 576px) {
  .offset-sm-0 {
    margin-left: 0%;
  }
  .offset-sm-1 {
    margin-left: 8.33333%;
  }
  .offset-sm-2 {
    margin-left: 16.66667%;
  }
  .offset-sm-3 {
    margin-left: 25%;
  }
  .offset-sm-4 {
    margin-left: 33.33333%;
  }
  .offset-sm-5 {
    margin-left: 41.66667%;
  }
  .offset-sm-6 {
    margin-left: 50%;
  }
  .offset-sm-7 {
    margin-left: 58.33333%;
  }
  .offset-sm-8 {
    margin-left: 66.66667%;
  }
  .offset-sm-9 {
    margin-left: 75%;
  }
  .offset-sm-10 {
    margin-left: 83.33333%;
  }
  .offset-sm-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 768px) {
  .offset-md-0 {
    margin-left: 0%;
  }
  .offset-md-1 {
    margin-left: 8.33333%;
  }
  .offset-md-2 {
    margin-left: 16.66667%;
  }
  .offset-md-3 {
    margin-left: 25%;
  }
  .offset-md-4 {
    margin-left: 33.33333%;
  }
  .offset-md-5 {
    margin-left: 41.66667%;
  }
  .offset-md-6 {
    margin-left: 50%;
  }
  .offset-md-7 {
    margin-left: 58.33333%;
  }
  .offset-md-8 {
    margin-left: 66.66667%;
  }
  .offset-md-9 {
    margin-left: 75%;
  }
  .offset-md-10 {
    margin-left: 83.33333%;
  }
  .offset-md-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 992px) {
  .offset-lg-0 {
    margin-left: 0%;
  }
  .offset-lg-1 {
    margin-left: 8.33333%;
  }
  .offset-lg-2 {
    margin-left: 16.66667%;
  }
  .offset-lg-3 {
    margin-left: 25%;
  }
  .offset-lg-4 {
    margin-left: 33.33333%;
  }
  .offset-lg-5 {
    margin-left: 41.66667%;
  }
  .offset-lg-6 {
    margin-left: 50%;
  }
  .offset-lg-7 {
    margin-left: 58.33333%;
  }
  .offset-lg-8 {
    margin-left: 66.66667%;
  }
  .offset-lg-9 {
    margin-left: 75%;
  }
  .offset-lg-10 {
    margin-left: 83.33333%;
  }
  .offset-lg-11 {
    margin-left: 91.66667%;
  }
}
@media (min-width: 1200px) {
  .offset-xl-0 {
    margin-left: 0%;
  }
  .offset-xl-1 {
    margin-left: 8.33333%;
  }
  .offset-xl-2 {
    margin-left: 16.66667%;
  }
  .offset-xl-3 {
    margin-left: 25%;
  }
  .offset-xl-4 {
    margin-left: 33.33333%;
  }
  .offset-xl-5 {
    margin-left: 41.66667%;
  }
  .offset-xl-6 {
    margin-left: 50%;
  }
  .offset-xl-7 {
    margin-left: 58.33333%;
  }
  .offset-xl-8 {
    margin-left: 66.66667%;
  }
  .offset-xl-9 {
    margin-left: 75%;
  }
  .offset-xl-10 {
    margin-left: 83.33333%;
  }
  .offset-xl-11 {
    margin-left: 91.66667%;
  }
}
.navbar-toggler {
  -webkit-align-self: flex-start;
  -ms-flex-item-align: start;
  align-self: flex-start;
  padding: 0.25rem 0.75rem;
  font-size: 1.25rem;
  line-height: 1;
  background: transparent;
  border: 1px solid transparent;
  -webkit-border-radius: 0.25rem;
  border-radius: 0.25rem;
}
.navbar-toggler:focus,
.navbar-toggler:hover {
  text-decoration: none;
}
.navbar-toggler-icon {
  display: inline-block;
  width: 1.5em;
  height: 1.5em;
  vertical-align: middle;
  content: "";
  background: no-repeat center center;
  -webkit-background-size: 100% 100%;
  -o-background-size: 100% 100%;
  background-size: 100% 100%;
}
.navbar-toggler-left {
  position: absolute;
  left: 1rem;
}
.navbar-toggler-right {
  position: absolute;
  right: 1rem;
}
@media (max-width: 575px) {
  .navbar-toggleable .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 576px) {
  .navbar-toggleable {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable .navbar-toggler {
    display: none;
  }
}
@media (max-width: 767px) {
  .navbar-toggleable-sm .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable-sm > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 768px) {
  .navbar-toggleable-sm {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-sm .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable-sm .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable-sm > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-sm .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable-sm .navbar-toggler {
    display: none;
  }
}
@media (max-width: 991px) {
  .navbar-toggleable-md .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable-md > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 992px) {
  .navbar-toggleable-md {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-md .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable-md .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable-md > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-md .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable-md .navbar-toggler {
    display: none;
  }
}
@media (max-width: 1199px) {
  .navbar-toggleable-lg .navbar-nav .dropdown-menu {
    position: static;
    float: none;
  }
  .navbar-toggleable-lg > .container {
    padding-right: 0;
    padding-left: 0;
  }
}
@media (min-width: 1200px) {
  .navbar-toggleable-lg {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-lg .navbar-nav {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
    -ms-flex-direction: row;
    flex-direction: row;
  }
  .navbar-toggleable-lg .navbar-nav .nav-link {
    padding-right: .5rem;
    padding-left: .5rem;
  }
  .navbar-toggleable-lg > .container {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
  }
  .navbar-toggleable-lg .navbar-collapse {
    display: -webkit-box !important;
    display: -webkit-flex !important;
    display: -ms-flexbox !important;
    display: flex !important;
    width: 100%;
  }
  .navbar-toggleable-lg .navbar-toggler {
    display: none;
  }
}
.navbar-toggleable-xl {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-toggleable-xl .navbar-nav .dropdown-menu {
  position: static;
  float: none;
}
.navbar-toggleable-xl > .container {
  padding-right: 0;
  padding-left: 0;
}
.navbar-toggleable-xl .navbar-nav {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -webkit-flex-direction: row;
  -ms-flex-direction: row;
  flex-direction: row;
}
.navbar-toggleable-xl .navbar-nav .nav-link {
  padding-right: .5rem;
  padding-left: .5rem;
}
.navbar-toggleable-xl > .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
}
.navbar-toggleable-xl .navbar-collapse {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  width: 100%;
}
.navbar-toggleable-xl .navbar-toggler {
  display: none;
}
.card-img {
  width: auto;
}
.menu .navbar.collapsed:not(.beta-menu) {
  flex-direction: column;
}
.carousel-item.active,
.carousel-item-next,
.carousel-item-prev {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.note-air-layout .dropup .dropdown-menu,
.note-air-layout .navbar-fixed-bottom .dropdown .dropdown-menu {
  bottom: initial !important;
}
html,
body {
  height: auto;
  min-height: 100vh;
}
.cid-tm1gKxESex {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #15a313;
}
.cid-tm1gKxESex .mbr-figure {
  margin: 0 auto;
}
.cid-tm1oLYMemi {
  padding-top: 60px;
  padding-bottom: 30px;
  background: #15a313;
  background: linear-gradient(0deg, #15a313, #056604);
}
.cid-tm1oLYMemi .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tm1oLYMemi .video-block {
    width: 100% !important;
  }
}
.cid-tLwOtPKfPc {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #55b4d4;
}
.cid-tLwOtPKfPc .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLwOtPKfPc .section-text {
  padding: 2rem 0;
}
.cid-tLwOtPKfPc .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLwOtPKfPc .inner-container {
    width: 100% !important;
  }
}
.cid-tLwSHh6iOj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tLwSHh6iOj .mbr-section-subtitle {
  color: #767676;
}
.cid-tLwSHh6iOj H2 {
  color: #ffffff;
}
.cid-tm1qEletsz {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #056604;
}
.cid-tm1qEletsz .card-img a {
  display: block;
  padding-top: 2rem;
}
.cid-tm1qEletsz .card-box {
  padding: 0 2rem;
}
.cid-tm1qEletsz .mbr-section-btn {
  padding-top: 1rem;
}
.cid-tm1qEletsz .mbr-section-btn a {
  margin-top: 1rem;
  margin-bottom: 0;
}
.cid-tm1qEletsz h4 {
  font-weight: 500;
  margin-bottom: 0;
  text-align: left;
  padding-top: 2rem;
}
.cid-tm1qEletsz p {
  margin-bottom: 0;
  text-align: left;
  padding-top: 1.5rem;
}
.cid-tm1qEletsz .mbr-text {
  color: #767676;
}
.cid-tm1qEletsz .card-wrapper {
  padding-bottom: 2rem;
  background: #ffffff;
  box-shadow: 0px 0px 0px 0px rgba(0, 0, 0, 0);
  transition: box-shadow 0.3s;
}
.cid-tm1qEletsz .card-wrapper:hover {
  box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.05);
  transition: box-shadow 0.3s;
}
.cid-tm6kSj1nsv {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #15a313;
}
.cid-tm6kSj1nsv .mbr-figure {
  margin: 0 auto;
}
.cid-tLwNdcFyyV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #55b4d4;
}
.cid-tLwNdcFyyV .line {
  background-color: #f7ed4a;
  color: #f7ed4a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tLwNdcFyyV .section-text {
  padding: 2rem 0;
}
.cid-tLwNdcFyyV .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tLwNdcFyyV .inner-container {
    width: 100% !important;
  }
}
.cid-tmzB0nfftt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #056604;
}
.cid-tsgq9b9Eau {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #158514;
}
.cid-tsgq9b9Eau .line {
  background-color: #f90a0a;
  color: #f90a0a;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tsgq9b9Eau .section-text {
  padding: 2rem 0;
}
.cid-tsgq9b9Eau .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tsgq9b9Eau .inner-container {
    width: 100% !important;
  }
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tsfhGIdhNa {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #056604, #1dd75a);
}
.cid-tKZZn8bQbF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #2d772c;
}
.cid-tKZZn8bQbF .mbr-section-subtitle {
  color: #cccccc;
}
.cid-tKZZn8bQbF .formoid {
  margin: auto;
}
.cid-tKZZn8bQbF .form-control {
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
.cid-tKZZn8bQbF a.btn {
  flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
}
.cid-tKZZn8bQbF .input-group-btn {
  align-self: center;
  -webkit-align-self: center;
  z-index: 3;
}
.cid-tKZZn8bQbF .input-group-btn .btn {
  padding-top: 1rem;
  padding-bottom: 1rem;
  border-top-right-radius: 3px;
  border-bottom-right-radius: 3px;
}
.cid-tKZZn8bQbF a:not([href]):not([tabindex]) {
  color: #fff;
}
.cid-tKZZn8bQbF a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tKZZn8bQbF .mbr-subscribe .input-group-btn {
  display: inline-block;
}
.cid-tKZZn8bQbF .mbr-subscribe .input-group-btn button,
.cid-tKZZn8bQbF .mbr-subscribe .input-group-btn a {
  margin-top: 0 !important;
  margin-bottom: 0 !important;
}
@media (max-width: 350px) {
  .cid-tKZZn8bQbF .mbr-subscribe {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tKZZn8bQbF input[type="email"] {
    width: 100%;
    margin-bottom: 2px;
  }
  .cid-tKZZn8bQbF .input-group-btn {
    width: 100%;
  }
  .cid-tKZZn8bQbF .input-group-btn .btn {
    border-radius: 3px;
  }
}
@media (max-width: 768px) {
  .cid-tKZZn8bQbF .input-group-btn a.btn {
    width: 100%;
  }
  .cid-tKZZn8bQbF .input-group-btn {
    width: calc(92%);
  }
  .cid-tKZZn8bQbF .input-group-btn button[type="submit"] {
    width: 100%;
  }
  .cid-tKZZn8bQbF .input-group {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: auto;
    max-width: 300px;
  }
  .cid-tKZZn8bQbF .input-group input[type="email"] {
    width: 100%;
    margin-bottom: 3px;
  }
  .cid-tKZZn8bQbF .input-group span {
    display: inline;
    padding-left: 0;
    padding-right: 0;
  }
  .cid-tKZZn8bQbF .input-group-btn button,
  .cid-tKZZn8bQbF .input-group-btn a {
    margin-left: 0 !important;
    margin-right: 0 !important;
  }
}
@media (min-width: 769px) {
  .cid-tKZZn8bQbF .mbr-subscribe > * {
    margin: 0 0.5rem;
  }
}
.cid-tKZZn8bQbF H2 {
  color: #efefef;
}
.cid-tLwcKZD5i2 {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #2d772c;
}
.cid-tLwcKZD5i2 .image-block {
  margin: auto;
}
.cid-tLwcKZD5i2 figcaption {
  position: relative;
}
.cid-tLwcKZD5i2 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tLwcKZD5i2 .image-block {
    width: 100% !important;
  }
}
.cid-tnBXXkL6Eb {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-tnBXXkL6Eb .content {
    text-align: center;
  }
  .cid-tnBXXkL6Eb .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tnBXXkL6Eb .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tnBXXkL6Eb .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tnBXXkL6Eb .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tnBXXkL6Eb .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tnBXXkL6Eb .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tnBXXkL6Eb .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tnBXXkL6Eb .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tnBXXkL6Eb .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tnBXXkL6Eb .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tnBXXkL6Eb .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tnBXXkL6Eb .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tnBXXkL6Eb P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tsjCd47NPy {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-tsELve6smU {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #182b3a;
}
.cid-tsjMzgHfHh {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #182b3a;
}
.cid-tsjMzgHfHh .image-block {
  margin: auto;
}
.cid-tsjMzgHfHh figcaption {
  position: relative;
}
.cid-tsjMzgHfHh figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tsjMzgHfHh .image-block {
    width: 100% !important;
  }
}
.cid-tsjPSZVgVN {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #182b3a;
}
.cid-tsjPSZVgVN .mbr-text,
.cid-tsjPSZVgVN blockquote {
  color: #767676;
}
.cid-tsjPSZVgVN .mbr-text B {
  color: #ffffff;
}
.cid-tsjPSZVgVN .mbr-text {
  color: #ffffff;
}
.cid-tsjPSZVgVN .mbr-text P {
  text-align: center;
}
.cid-ttghIw6UIu {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ttghIw6UIu .mbr-section-subtitle {
  color: #767676;
}
.cid-ttghIw6UIu .btn {
  margin: 0 0 .5rem 0;
}
.cid-ttghIw6UIu H2 {
  color: #042742;
}
.cid-tsm0WDTFC5 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #042742;
}
.cid-tsm0WDTFC5 .mbr-figure {
  margin: 0 auto;
}
.cid-tsnEHnl0CT {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #042742;
}
.cid-tsnEHnl0CT .line {
  background-color: #7bcffa;
  color: #7bcffa;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tsnEHnl0CT .section-text {
  padding: 2rem 0;
  color: #ffffff;
}
.cid-tsnEHnl0CT .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tsnEHnl0CT .inner-container {
    width: 100% !important;
  }
}
.cid-tskjXfu7ZE {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tskjXfu7ZE .mbr-text,
.cid-tskjXfu7ZE blockquote {
  color: #767676;
}
.cid-tskjXfu7ZE .mbr-text {
  text-align: center;
}
.cid-tsqo9epzlF {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #1dd75a);
}
.cid-tsqo9epzlF .btn {
  margin: 0 0 .5rem 0;
}
.cid-tskiYitbra {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tskiYitbra .mbr-text,
.cid-tskiYitbra blockquote {
  color: #767676;
}
.cid-tskiYitbra .mbr-text {
  text-align: center;
}
.cid-tsqp4ZhpFR {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #1dd75a);
}
.cid-tsqp4ZhpFR .btn {
  margin: 0 0 .5rem 0;
}
.cid-tskjZ6rzny {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tskjZ6rzny .mbr-text,
.cid-tskjZ6rzny blockquote {
  color: #767676;
}
.cid-tskjZ6rzny .mbr-text {
  text-align: center;
}
.cid-tsDUKLThPF {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #1dd75a);
}
.cid-tsDUKLThPF .btn {
  margin: 0 0 .5rem 0;
}
.cid-tskkcqaaab {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-tskkcqaaab .mbr-text,
.cid-tskkcqaaab blockquote {
  color: #767676;
}
.cid-tskkcqaaab .mbr-text {
  text-align: left;
}
.cid-tskkcqaaab .mbr-text P {
  text-align: center;
}
.cid-tsDURWlp0L {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #1dd75a);
}
.cid-tsDURWlp0L .btn {
  margin: 0 0 .5rem 0;
}
.cid-tskkd5xRm7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tskkd5xRm7 .mbr-text,
.cid-tskkd5xRm7 blockquote {
  color: #767676;
}
.cid-tskkd5xRm7 .mbr-text {
  text-align: left;
}
.cid-tskkd5xRm7 .mbr-text P {
  text-align: center;
}
.cid-tsDVO4RKPP {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #1dd75a);
}
.cid-tsDVO4RKPP .btn {
  margin: 0 0 .5rem 0;
}
.cid-tskkdJaxIn {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-tskkdJaxIn .mbr-text,
.cid-tskkdJaxIn blockquote {
  color: #767676;
}
.cid-tskkdJaxIn .mbr-text {
  text-align: left;
}
.cid-tskkdJaxIn .mbr-text P {
  text-align: center;
}
.cid-tsDW3C7Sl9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #1dd75a);
}
.cid-tsDW3C7Sl9 .btn {
  margin: 0 0 .5rem 0;
}
.cid-tskkegnNVb {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tskkegnNVb .mbr-text,
.cid-tskkegnNVb blockquote {
  color: #767676;
}
.cid-tskkegnNVb .mbr-text {
  text-align: left;
}
.cid-tskkegnNVb .mbr-text P {
  text-align: center;
}
.cid-tsDWiXkRG6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #1dd75a);
}
.cid-tsDWiXkRG6 .btn {
  margin: 0 0 .5rem 0;
}
.cid-tskkEqs7bt {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-tskkEqs7bt .mbr-text,
.cid-tskkEqs7bt blockquote {
  color: #767676;
}
.cid-tskkEqs7bt .mbr-text {
  text-align: left;
}
.cid-tskkEqs7bt .mbr-text P {
  text-align: center;
}
.cid-tsDWuRJVaa {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #1dd75a);
}
.cid-tsDWuRJVaa .btn {
  margin: 0 0 .5rem 0;
}
.cid-tspBkrVSfo {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042742;
}
.cid-tspBkrVSfo .mbr-figure {
  margin: 0 auto;
}
.cid-tsqb6nydGQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #042742;
}
.cid-tsqb6nydGQ .line {
  background-color: #7bcffa;
  color: #7bcffa;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tsqb6nydGQ .section-text {
  padding: 2rem 0;
  color: #ffffff;
}
.cid-tsqb6nydGQ .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tsqb6nydGQ .inner-container {
    width: 100% !important;
  }
}
.cid-tsqcKkEzbD {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tsqcKkEzbD .mbr-text,
.cid-tsqcKkEzbD blockquote {
  color: #767676;
}
.cid-tsqcKkEzbD .mbr-text {
  text-align: left;
}
.cid-tsqcKkEzbD .mbr-text P {
  text-align: left;
}
.cid-tsDYQ3JUN0 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #1dd75a);
}
.cid-tsDYQ3JUN0 .btn {
  margin: 0 0 .5rem 0;
}
.cid-tsqdoEghBp {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #efefef;
}
.cid-tsqdoEghBp .mbr-text,
.cid-tsqdoEghBp blockquote {
  color: #767676;
}
.cid-tsqdoEghBp .mbr-text {
  text-align: left;
}
.cid-tsDYWL4CA3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: linear-gradient(45deg, #dbd4b8, #1dd75a);
}
.cid-tsDYWL4CA3 .btn {
  margin: 0 0 .5rem 0;
}
.cid-txNyWrkr7L {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-txDaAFaAyi {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDaAFaAyi .content {
    text-align: center;
  }
  .cid-txDaAFaAyi .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDaAFaAyi .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDaAFaAyi .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDaAFaAyi .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDaAFaAyi .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDaAFaAyi .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDaAFaAyi .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDaAFaAyi .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDaAFaAyi .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDaAFaAyi .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDaAFaAyi .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDaAFaAyi .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDaAFaAyi P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tm7zX7w7qn {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-tm1yQGR1zm {
  padding-top: 30px;
  padding-bottom: 0px;
  background: #ffffff;
  background: linear-gradient(0deg, #3adc6f, #ffffff);
}
.cid-tm1yQGR1zm .image-block {
  margin: auto;
}
.cid-tm1yQGR1zm figcaption {
  position: relative;
}
.cid-tm1yQGR1zm figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tm1yQGR1zm .image-block {
    width: 100% !important;
  }
}
.cid-tm1yRJS4m9 {
  padding-top: 15px;
  padding-bottom: 45px;
  background: #3adc6f;
}
.cid-tm1yRJS4m9 .images-container.container-fluid {
  padding: 0;
}
.cid-tm1yRJS4m9 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
  width: 100% !important;
}
.cid-tm1yRJS4m9 .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tm1yRJS4m9 .media-container-row .img-item img {
  width: 100%;
}
.cid-tm1yRJS4m9 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tm1yRJS4m9 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tm1yRJS4m9 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tm1yRJS4m9 .img-item {
    width: 100% !important;
  }
  .cid-tm1yRJS4m9 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tm1zweuNFQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tm1zweuNFQ .mbr-text,
.cid-tm1zweuNFQ blockquote {
  color: #767676;
}
.cid-tutOIdBCkG {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tutOIdBCkG .image-block {
  margin: auto;
}
.cid-tutOIdBCkG .mbr-figure {
  margin: 0 auto;
}
.cid-tutOIdBCkG figcaption {
  position: relative;
}
.cid-tutOIdBCkG figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tutOIdBCkG .image-block {
    width: 100% !important;
  }
}
.cid-tyhfgClpWa {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzRyWp505y {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzRyWp505y .btn {
  margin: 0 0 .5rem 0;
}
.cid-tyRRhK5ya1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-tyRRhK5ya1 .content {
    text-align: center;
  }
  .cid-tyRRhK5ya1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tyRRhK5ya1 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tyRRhK5ya1 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tyRRhK5ya1 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tyRRhK5ya1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tyRRhK5ya1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tyRRhK5ya1 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tyRRhK5ya1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tyRRhK5ya1 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tyRRhK5ya1 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tyRRhK5ya1 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tyRRhK5ya1 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tyRRhK5ya1 P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tnEoguTzzD {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-tnEoxLrzlZ {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
  background: linear-gradient(0deg, #3adc6f, #ffffff);
}
.cid-tnEoxLrzlZ .image-block {
  margin: auto;
}
.cid-tnEoxLrzlZ figcaption {
  position: relative;
}
.cid-tnEoxLrzlZ figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tnEoxLrzlZ .image-block {
    width: 100% !important;
  }
}
.cid-tnEoMQ45PZ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tnEoMQ45PZ .mbr-text,
.cid-tnEoMQ45PZ blockquote {
  color: #767676;
}
.cid-tnEoMQ45PZ DIV {
  text-align: left;
}
.cid-tLoHA9WhW4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLoHA9WhW4 .mbr-text,
.cid-tLoHA9WhW4 blockquote {
  color: #767676;
}
.cid-tLoHA9WhW4 .mbr-text B {
  color: #2c7f16;
}
.cid-txDw0LBCBA {
  padding-top: 15px;
  padding-bottom: 45px;
  background: #5d924f;
}
.cid-txDw0LBCBA .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-txDw0LBCBA .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-txDw0LBCBA .media-container-row .img-item img {
  width: 100%;
}
.cid-txDw0LBCBA .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-txDw0LBCBA .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-txDw0LBCBA .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-txDw0LBCBA .img-item {
    width: 100% !important;
  }
  .cid-txDw0LBCBA .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tuu0WgH71i {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tuu0WgH71i .image-block {
  margin: auto;
}
.cid-tuu0WgH71i .mbr-figure {
  margin: 0 auto;
}
.cid-tuu0WgH71i figcaption {
  position: relative;
}
.cid-tuu0WgH71i figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tuu0WgH71i .image-block {
    width: 100% !important;
  }
}
.cid-tygSpORS3k {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tygY5KLUbj {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-txD7Rh4TWI {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txD7Rh4TWI .content {
    text-align: center;
  }
  .cid-txD7Rh4TWI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txD7Rh4TWI .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txD7Rh4TWI .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txD7Rh4TWI .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txD7Rh4TWI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txD7Rh4TWI .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txD7Rh4TWI .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txD7Rh4TWI .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txD7Rh4TWI .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txD7Rh4TWI .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txD7Rh4TWI .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txD7Rh4TWI .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txD7Rh4TWI P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-trqiRBk8Wy {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-trqiXIAgNs {
  padding-top: 30px;
  padding-bottom: 60px;
  background: #3adc6f;
  background: linear-gradient(0deg, #ffffff, #3adc6f);
}
.cid-trqiXIAgNs .image-block {
  margin: auto;
}
.cid-trqiXIAgNs figcaption {
  position: relative;
}
.cid-trqiXIAgNs figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-trqiXIAgNs .image-block {
    width: 100% !important;
  }
}
.cid-trqk5kU1P3 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-trqk5kU1P3 .mbr-text,
.cid-trqk5kU1P3 blockquote {
  color: #767676;
}
.cid-tLoyCQqi3I {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLoyCQqi3I .mbr-text,
.cid-tLoyCQqi3I blockquote {
  color: #767676;
}
.cid-tLoyCQqi3I .mbr-text B {
  color: #2c7f16;
}
.cid-trqiZlkjkO {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-trqiZlkjkO .images-container.container-fluid {
  padding: 0;
}
.cid-trqiZlkjkO .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-trqiZlkjkO .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-trqiZlkjkO .media-container-row .img-item img {
  width: 100%;
}
.cid-trqiZlkjkO .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-trqiZlkjkO .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-trqiZlkjkO .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-trqiZlkjkO .img-item {
    width: 100% !important;
  }
  .cid-trqiZlkjkO .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tuu1dzWsSL {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tuu1dzWsSL .image-block {
  margin: auto;
}
.cid-tuu1dzWsSL .mbr-figure {
  margin: 0 auto;
}
.cid-tuu1dzWsSL figcaption {
  position: relative;
}
.cid-tuu1dzWsSL figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tuu1dzWsSL .image-block {
    width: 100% !important;
  }
}
.cid-tyhggGAufb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzRADCUUIK {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzRADCUUIK .btn {
  margin: 0 0 .5rem 0;
}
.cid-tzRAEeZ9Ta {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #2c7f16;
}
.cid-tzRAEeZ9Ta .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tzRAEeZ9Ta .btn {
  margin: 0 0 .5rem 0;
}
.cid-txD9EFBzS5 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txD9EFBzS5 .content {
    text-align: center;
  }
  .cid-txD9EFBzS5 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txD9EFBzS5 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txD9EFBzS5 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txD9EFBzS5 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txD9EFBzS5 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txD9EFBzS5 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txD9EFBzS5 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txD9EFBzS5 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txD9EFBzS5 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txD9EFBzS5 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txD9EFBzS5 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txD9EFBzS5 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txD9EFBzS5 P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tohas4Uu2D {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-tLv0YQdLXm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLv0YQdLXm .mbr-section-subtitle {
  color: #232323;
}
.cid-tLv0ZI0JDT {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLv0ZI0JDT .mbr-text,
.cid-tLv0ZI0JDT blockquote {
  color: #767676;
}
.cid-tLv0ZI0JDT .mbr-text DIV {
  color: #232323;
}
.cid-tr6guGHSbH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tr6guGHSbH .mbr-section-subtitle {
  color: #767676;
}
.cid-tr6guGHSbH H2 {
  text-align: left;
}
.cid-tr6guGHSbH B {
  color: #605d5d;
}
.cid-tr6jwaIuRj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-tr6jwaIuRj .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-tr6jwaIuRj .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-tr6jwaIuRj .mbr-text {
  color: #767676;
}
.cid-tLv92jr3hv {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLv92jr3hv .mbr-text,
.cid-tLv92jr3hv blockquote {
  color: #767676;
}
.cid-tLv92jr3hv .mbr-text {
  color: #232323;
}
.cid-trKN4w2HRA {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #23820a;
}
.cid-trKN4w2HRA .mbr-section-subtitle {
  color: #767676;
}
.cid-trKN4w2HRA .mbr-section-subtitle B {
  color: #ffffff;
}
.cid-trbsVaMFyx {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
  background: linear-gradient(0deg, #efefef, #ffffff);
}
.cid-trbsVaMFyx .image-block {
  margin: auto;
}
.cid-trbsVaMFyx figcaption {
  position: relative;
}
.cid-trbsVaMFyx figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-trbsVaMFyx .image-block {
    width: 100% !important;
  }
}
.cid-trcaAUtnEW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-trcaAUtnEW .counter-container {
  color: #767676;
}
.cid-trcaAUtnEW .counter-container ul {
  margin-bottom: 0;
}
.cid-trcaAUtnEW .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-trcaAUtnEW .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f82901;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-trcaAUtnEW .mbr-text UL {
  text-align: left;
}
.cid-trcbqlPgxS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-trcbqlPgxS .counter-container {
  color: #767676;
}
.cid-trcbqlPgxS .counter-container ul {
  margin-bottom: 0;
}
.cid-trcbqlPgxS .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-trcbqlPgxS .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #000000;
  background: #fceb13;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tLv9xhAh8z {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLv9xhAh8z .mbr-text,
.cid-tLv9xhAh8z blockquote {
  color: #767676;
}
.cid-toQ5QznDGS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-toQ5QznDGS .line {
  background-color: #3adc6f;
  color: #3adc6f;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-toQ5QznDGS .section-text {
  padding: 2rem 0;
}
.cid-toQ5QznDGS .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-toQ5QznDGS .inner-container {
    width: 100% !important;
  }
}
.cid-tohkm4SqOf {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tohkm4SqOf .mbr-section-subtitle {
  color: #767676;
}
.cid-tohkm4SqOf B {
  color: #ffffff;
}
.cid-tohkkc8P3k {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tohkkc8P3k .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-tohkkc8P3k .mbr-author-name {
  font-weight: bold;
}
.cid-tohkkc8P3k .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tohkl36hdC {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-trKK5voBCB {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-trKK5voBCB .mbr-section-subtitle {
  color: #767676;
}
.cid-tohkqAq5Cw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tohkqAq5Cw .mbr-section-subtitle {
  color: #767676;
}
.cid-tohkqAq5Cw B {
  color: #ffffff;
}
.cid-tohkryjkfq {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tohkryjkfq .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-tohkryjkfq .mbr-author-name {
  font-weight: bold;
}
.cid-tohkryjkfq .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tohkrWr2pB {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-trbvbMGCZq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #cccccc;
}
.cid-trbvbMGCZq .counter-container {
  color: #767676;
}
.cid-trbvbMGCZq .counter-container ul {
  margin-bottom: 0;
}
.cid-trbvbMGCZq .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-trbvbMGCZq .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f82901;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
}
.cid-tsvflPWu6L {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #faf161;
}
.cid-tsvflPWu6L .counter-container {
  color: #767676;
}
.cid-tsvflPWu6L .counter-container ul {
  margin-bottom: 0;
}
.cid-tsvflPWu6L .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tsvflPWu6L .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f82901;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
}
.cid-tsAOP09bmg {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #faf161;
}
.cid-tsAOP09bmg .counter-container {
  color: #767676;
}
.cid-tsAOP09bmg .counter-container ul {
  margin-bottom: 0;
}
.cid-tsAOP09bmg .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tsAOP09bmg .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f82901;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
}
.cid-tygNO3Q8dU {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-txDbKkci32 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDbKkci32 .content {
    text-align: center;
  }
  .cid-txDbKkci32 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDbKkci32 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDbKkci32 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDbKkci32 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDbKkci32 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDbKkci32 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDbKkci32 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDbKkci32 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDbKkci32 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDbKkci32 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDbKkci32 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDbKkci32 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDbKkci32 P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tr6ZiVQyPu {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-tr6ZpLlWUi {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tr6ZpLlWUi .image-block {
  margin: auto;
}
.cid-tr6ZpLlWUi figcaption {
  position: relative;
}
.cid-tr6ZpLlWUi figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tr6ZpLlWUi .image-block {
    width: 100% !important;
  }
}
.cid-tr6Zx4o0YQ {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #3adc6f;
}
.cid-tr6Zx4o0YQ .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tr6Zx4o0YQ .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tr6Zx4o0YQ .media-container-row .img-item img {
  width: 100%;
}
.cid-tr6Zx4o0YQ .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tr6Zx4o0YQ .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tr6Zx4o0YQ .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tr6Zx4o0YQ .img-item {
    width: 100% !important;
  }
  .cid-tr6Zx4o0YQ .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tLpYLz9Jm0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLpYLz9Jm0 .mbr-section-subtitle {
  color: #767676;
}
.cid-tr6ZNrUdEK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tr6ZNrUdEK .mbr-text,
.cid-tr6ZNrUdEK blockquote {
  color: #767676;
}
.cid-tyJDL4IMw4 {
  padding-top: 15px;
  padding-bottom: 30px;
  background: #ffffff;
}
.cid-tyJDL4IMw4 .images-container.container-fluid {
  padding: 0;
}
.cid-tyJDL4IMw4 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tyJDL4IMw4 .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tyJDL4IMw4 .media-container-row .img-item img {
  width: 100%;
}
.cid-tyJDL4IMw4 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tyJDL4IMw4 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tyJDL4IMw4 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tyJDL4IMw4 .img-item {
    width: 100% !important;
  }
  .cid-tyJDL4IMw4 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tLohZmPDcw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-tLohZmPDcw .mbr-text,
.cid-tLohZmPDcw blockquote {
  color: #767676;
}
.cid-tLohZmPDcw .mbr-text B {
  color: #2c7f16;
}
.cid-tuu2nwe54L {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tuu2nwe54L .image-block {
  margin: auto;
}
.cid-tuu2nwe54L .mbr-figure {
  margin: 0 auto;
}
.cid-tuu2nwe54L figcaption {
  position: relative;
}
.cid-tuu2nwe54L figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tuu2nwe54L .image-block {
    width: 100% !important;
  }
}
.cid-tyhgvcV0ad {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzRBsSLXb7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzRBsSLXb7 .btn {
  margin: 0 0 .5rem 0;
}
.cid-tzRBtpJKul {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #2c7f16;
}
.cid-tzRBtpJKul .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tzRBtpJKul .btn {
  margin: 0 0 .5rem 0;
}
.cid-txDai9NEsl {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDai9NEsl .content {
    text-align: center;
  }
  .cid-txDai9NEsl .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDai9NEsl .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDai9NEsl .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDai9NEsl .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDai9NEsl .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDai9NEsl .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDai9NEsl .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDai9NEsl .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDai9NEsl .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDai9NEsl .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDai9NEsl .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDai9NEsl .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDai9NEsl P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tr71Q2KdvT {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-tr71UmLviI {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #3adc6f;
  background: linear-gradient(0deg, #ffffff, #3adc6f);
}
.cid-tr71UmLviI .image-block {
  margin: auto;
}
.cid-tr71UmLviI figcaption {
  position: relative;
}
.cid-tr71UmLviI figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tr71UmLviI .image-block {
    width: 100% !important;
  }
}
.cid-tr71ZoT2KX {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-tr71ZoT2KX .images-container.container-fluid {
  padding: 0;
}
.cid-tr71ZoT2KX .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tr71ZoT2KX .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tr71ZoT2KX .media-container-row .img-item img {
  width: 100%;
}
.cid-tr71ZoT2KX .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tr71ZoT2KX .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tr71ZoT2KX .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tr71ZoT2KX .img-item {
    width: 100% !important;
  }
  .cid-tr71ZoT2KX .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tr73oDzhOI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tr73oDzhOI .mbr-text,
.cid-tr73oDzhOI blockquote {
  color: #767676;
}
.cid-tLoiJPS0z1 {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLoiJPS0z1 .mbr-text,
.cid-tLoiJPS0z1 blockquote {
  color: #767676;
}
.cid-tLoiJPS0z1 .mbr-text B {
  color: #2c7f16;
}
.cid-tr73GblGe5 {
  padding-top: 15px;
  padding-bottom: 60px;
  background: #3adc6f;
  background: linear-gradient(0deg, #3adc6f, #ffffff);
}
.cid-tr73GblGe5 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tr73GblGe5 .video-block {
    width: 100% !important;
  }
}
.cid-tuu2TtuK08 {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tuu2TtuK08 .image-block {
  margin: auto;
}
.cid-tuu2TtuK08 .mbr-figure {
  margin: 0 auto;
}
.cid-tuu2TtuK08 figcaption {
  position: relative;
}
.cid-tuu2TtuK08 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tuu2TtuK08 .image-block {
    width: 100% !important;
  }
}
.cid-tyhgC5bZ2A {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzRDdhsq8e {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzRDdhsq8e .btn {
  margin: 0 0 .5rem 0;
}
.cid-tzRDe9uR7b {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #2c7f16;
}
.cid-tzRDe9uR7b .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tzRDe9uR7b .btn {
  margin: 0 0 .5rem 0;
}
.cid-txDar8RP8i {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDar8RP8i .content {
    text-align: center;
  }
  .cid-txDar8RP8i .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDar8RP8i .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDar8RP8i .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDar8RP8i .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDar8RP8i .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDar8RP8i .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDar8RP8i .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDar8RP8i .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDar8RP8i .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDar8RP8i .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDar8RP8i .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDar8RP8i .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDar8RP8i P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tnCVDxbYzG {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tnCVDxbYzG H2 {
  color: #767676;
}
.cid-tnCVXGOtkH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tnCVXGOtkH .counter-container {
  color: #767676;
}
.cid-tnCVXGOtkH .counter-container ul {
  margin-bottom: 0;
}
.cid-tnCVXGOtkH .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tnCVXGOtkH .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tnCWI6hLmg {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tnCWI6hLmg .mbr-section-subtitle {
  color: #767676;
}
.cid-tnCWI6hLmg B {
  color: #ffffff;
}
.cid-tnCWJ4yhXa {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tnCWJ4yhXa .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-tnCWJ4yhXa .mbr-author-name {
  font-weight: bold;
}
.cid-tnCWJ4yhXa .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tnCWK6n6TV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tnCX4GKShI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tnCX4GKShI .mbr-section-subtitle {
  color: #767676;
}
.cid-tnCX4GKShI B {
  color: #ffffff;
}
.cid-tnCX5LKNNx {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tnCX5LKNNx .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-tnCX5LKNNx .mbr-author-name {
  font-weight: bold;
}
.cid-tnCX5LKNNx .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tnCX7ghkZr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tnCXtBZ1zM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tnCXtBZ1zM .mbr-section-subtitle {
  color: #767676;
}
.cid-tnCXtBZ1zM B {
  color: #ffffff;
}
.cid-tnCXunAmUR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tnCXunAmUR .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-tnCXunAmUR .mbr-author-name {
  font-weight: bold;
}
.cid-tnCXunAmUR .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tnCXuFlylR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tygLuTnvDG {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-txDaKmO88G {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDaKmO88G .content {
    text-align: center;
  }
  .cid-txDaKmO88G .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDaKmO88G .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDaKmO88G .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDaKmO88G .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDaKmO88G .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDaKmO88G .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDaKmO88G .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDaKmO88G .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDaKmO88G .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDaKmO88G .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDaKmO88G .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDaKmO88G .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDaKmO88G P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tnyuITE8v1 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-tnyuQy4d1W {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
  background: linear-gradient(0deg, #3adc6f, #ffffff);
}
.cid-tnyuQy4d1W .image-block {
  margin: auto;
}
.cid-tnyuQy4d1W figcaption {
  position: relative;
}
.cid-tnyuQy4d1W figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tnyuQy4d1W .image-block {
    width: 100% !important;
  }
}
.cid-tnyuRKoMEz {
  padding-top: 15px;
  padding-bottom: 45px;
  background: #3adc6f;
}
.cid-tnyuRKoMEz .images-container.container-fluid {
  padding: 0;
}
.cid-tnyuRKoMEz .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tnyuRKoMEz .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tnyuRKoMEz .media-container-row .img-item img {
  width: 100%;
}
.cid-tnyuRKoMEz .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tnyuRKoMEz .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tnyuRKoMEz .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tnyuRKoMEz .img-item {
    width: 100% !important;
  }
  .cid-tnyuRKoMEz .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tLpKj1uhbT {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLpKj1uhbT .mbr-section-subtitle {
  color: #767676;
}
.cid-tnyuUhPVm3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tnyuUhPVm3 .mbr-text,
.cid-tnyuUhPVm3 blockquote {
  color: #767676;
}
.cid-tnyuUhPVm3 P {
  color: #232323;
}
.cid-tLpJEa2NH1 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLpJEa2NH1 .mbr-text,
.cid-tLpJEa2NH1 blockquote {
  color: #767676;
}
.cid-tLpJEa2NH1 .mbr-text B {
  color: #232323;
}
.cid-tLpJEa2NH1 .mbr-text {
  color: #232323;
}
.cid-tymiXYKGNk {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-tymiXYKGNk .content-slider {
  display: flex;
  justify-content: center;
}
.cid-tymiXYKGNk .modal-body .close {
  background: #1b1b1b;
}
.cid-tymiXYKGNk .modal-body .close span {
  font-style: normal;
}
.cid-tymiXYKGNk .carousel-inner > .active,
.cid-tymiXYKGNk .carousel-inner > .next,
.cid-tymiXYKGNk .carousel-inner > .prev {
  display: flex;
}
.cid-tymiXYKGNk .carousel-control .icon-next,
.cid-tymiXYKGNk .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-tymiXYKGNk .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tymiXYKGNk .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-tymiXYKGNk .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-tymiXYKGNk .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-tymiXYKGNk .boxed-slider > div {
  position: relative;
}
.cid-tymiXYKGNk .container img {
  width: 100%;
}
.cid-tymiXYKGNk .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-tymiXYKGNk .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tymiXYKGNk .mbr-table-cell {
  padding: 0;
}
.cid-tymiXYKGNk .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-tymiXYKGNk .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tymiXYKGNk .mbr-overlay {
  z-index: 1;
}
.cid-tymiXYKGNk .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tymiXYKGNk .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-tymiXYKGNk .carousel-item .container {
    width: 100%;
  }
}
.cid-tymiXYKGNk .carousel-item-next.carousel-item-left,
.cid-tymiXYKGNk .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-tymiXYKGNk .active.carousel-item-right,
.cid-tymiXYKGNk .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-tymiXYKGNk .active.carousel-item-left,
.cid-tymiXYKGNk .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-tymiXYKGNk .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-tymiXYKGNk .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-tymiXYKGNk .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-tymiXYKGNk .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-tymiXYKGNk .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-tymiXYKGNk .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-tymiXYKGNk .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-tymiXYKGNk .mbr-slider .carousel-indicators li.active,
.cid-tymiXYKGNk .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-tymiXYKGNk .mbr-slider .carousel-indicators li::after,
.cid-tymiXYKGNk .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-tymiXYKGNk .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-tymiXYKGNk .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-tymiXYKGNk .mbr-slider > .container img {
  width: 100%;
}
.cid-tymiXYKGNk .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-tymiXYKGNk .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-tymiXYKGNk .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-tymiXYKGNk .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-tymiXYKGNk .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-tymiXYKGNk .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-tymiXYKGNk .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-tymiXYKGNk .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-tymiXYKGNk .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-tymiXYKGNk .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-tymiXYKGNk .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-tymiXYKGNk .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-tymiXYKGNk .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-tymiXYKGNk .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-tymiXYKGNk .carousel-inner {
  height: 100%;
}
.cid-tymiXYKGNk .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-tymiXYKGNk .image_wrapper {
  height: 380px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-tymiXYKGNk .image_wrapper img {
  width: auto !important;
  height: 100%;
}
.cid-tymiXYKGNk .carousel-item .container-slide {
  text-align: center;
}
.cid-tymiXYKGNk .content-slider-wrap {
  width: 55%;
}
.cid-tymosTpXNr {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-tymosTpXNr .line {
  background-color: #ffffff;
  color: #ffffff;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-tymosTpXNr .section-text {
  padding: 2rem 0;
}
.cid-tymosTpXNr .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-tymosTpXNr .inner-container {
    width: 100% !important;
  }
}
.cid-tnTMJBIU48 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #5d924f;
}
.cid-tnTMJBIU48 .image-block {
  margin: auto;
}
.cid-tnTMJBIU48 figcaption {
  position: relative;
}
.cid-tnTMJBIU48 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tnTMJBIU48 .image-block {
    width: 100% !important;
  }
}
.cid-txDIiTEVL2 {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #5d924f;
}
.cid-txDIiTEVL2 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-txDIiTEVL2 .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-txDIiTEVL2 .media-container-row .img-item img {
  width: 100%;
}
.cid-txDIiTEVL2 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-txDIiTEVL2 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-txDIiTEVL2 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-txDIiTEVL2 .img-item {
    width: 100% !important;
  }
  .cid-txDIiTEVL2 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tnTMj7xHHB {
  padding-top: 0px;
  padding-bottom: 60px;
  background: #3adc6f;
  background: linear-gradient(0deg, #3adc6f, #ffffff);
}
.cid-tnTMj7xHHB .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tnTMj7xHHB .video-block {
    width: 100% !important;
  }
}
.cid-tuu9GCnfvN {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-tuu9GCnfvN .image-block {
  margin: auto;
}
.cid-tuu9GCnfvN .mbr-figure {
  margin: 0 auto;
}
.cid-tuu9GCnfvN figcaption {
  position: relative;
}
.cid-tuu9GCnfvN figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tuu9GCnfvN .image-block {
    width: 100% !important;
  }
}
.cid-tyhgLEcZLV {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzRZCGLAP4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzRZCGLAP4 .btn {
  margin: 0 0 .5rem 0;
}
.cid-tzS03snim1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #2c7f16;
}
.cid-tzS03snim1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tzS03snim1 .btn {
  margin: 0 0 .5rem 0;
}
.cid-txDaTzdf5K {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDaTzdf5K .content {
    text-align: center;
  }
  .cid-txDaTzdf5K .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDaTzdf5K .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDaTzdf5K .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDaTzdf5K .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDaTzdf5K .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDaTzdf5K .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDaTzdf5K .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDaTzdf5K .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDaTzdf5K .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDaTzdf5K .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDaTzdf5K .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDaTzdf5K .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDaTzdf5K P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tnpxIDqEWo {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #3adc6f;
}
.cid-tnpyj9CgNn {
  padding-top: 15px;
  padding-bottom: 60px;
  background: #3adc6f;
}
.cid-tnpyj9CgNn .image-block {
  margin: auto;
}
.cid-tnpyj9CgNn .mbr-figure {
  margin: 0 auto;
}
.cid-tnpyj9CgNn figcaption {
  position: relative;
}
.cid-tnpyj9CgNn figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tnpyj9CgNn .image-block {
    width: 100% !important;
  }
}
.cid-tnpyriLJve {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #3adc6f;
}
.cid-tnpyriLJve .images-container.container-fluid {
  padding: 0;
}
.cid-tnpyriLJve .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tnpyriLJve .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tnpyriLJve .media-container-row .img-item img {
  width: 100%;
}
.cid-tnpyriLJve .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tnpyriLJve .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tnpyriLJve .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tnpyriLJve .img-item {
    width: 100% !important;
  }
  .cid-tnpyriLJve .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tLpDdjHLCS {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLpDdjHLCS .mbr-section-subtitle {
  color: #767676;
}
.cid-tLpDdjHLCS .mbr-section-subtitle B {
  color: #232323;
}
.cid-tnpyuglqmM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tnpyuglqmM .mbr-text,
.cid-tnpyuglqmM blockquote {
  color: #767676;
}
.cid-tnpyuglqmM P {
  color: #232323;
}
.cid-tLpCLMkUxG {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLpCLMkUxG .mbr-text,
.cid-tLpCLMkUxG blockquote {
  color: #767676;
}
.cid-tLpCLMkUxG .mbr-text B {
  color: #232323;
}
.cid-tLpCLMkUxG .mbr-text {
  color: #232323;
}
.cid-tnJtRl0JZz {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tnJtRl0JZz .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tnJtRl0JZz .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tnJtRl0JZz .media-container-row .img-item .img-cont {
  position: relative;
  overflow: hidden;
}
.cid-tnJtRl0JZz .media-container-row .img-item .img-cont img {
  width: 100%;
}
.cid-tnJtRl0JZz .media-container-row .img-item .img-cont .img-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tnJtRl0JZz .media-container-row .img-item .img-cont .img-caption p {
  margin-bottom: 0;
}
.cid-tnJtRl0JZz .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tnJtRl0JZz .img-item {
    width: 100% !important;
  }
  .cid-tnJtRl0JZz .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tuu9VfGZar {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-tuu9VfGZar .image-block {
  margin: auto;
}
.cid-tuu9VfGZar .mbr-figure {
  margin: 0 auto;
}
.cid-tuu9VfGZar figcaption {
  position: relative;
}
.cid-tuu9VfGZar figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tuu9VfGZar .image-block {
    width: 100% !important;
  }
}
.cid-tyhi370GKN {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzS2iC9zET {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzS2iC9zET .btn {
  margin: 0 0 .5rem 0;
}
.cid-txDbiwhkF1 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDbiwhkF1 .content {
    text-align: center;
  }
  .cid-txDbiwhkF1 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDbiwhkF1 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDbiwhkF1 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDbiwhkF1 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDbiwhkF1 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDbiwhkF1 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDbiwhkF1 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDbiwhkF1 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDbiwhkF1 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDbiwhkF1 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDbiwhkF1 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDbiwhkF1 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDbiwhkF1 P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-ttaObUNcn0 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #077d1e;
}
.cid-ttaObUNcn0 .mbr-section-subtitle {
  color: #767676;
}
.cid-ttaObUNcn0 H2 {
  color: #ffffff;
}
.cid-ttaNIwMMvG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ttaNIwMMvG .mbr-text,
.cid-ttaNIwMMvG blockquote {
  color: #767676;
}
.cid-ttaNIwMMvG .mbr-text P {
  text-align: center;
}
.cid-ttbmgLcvvy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #faf161;
}
.cid-ttbmgLcvvy .counter-container {
  color: #767676;
}
.cid-ttbmgLcvvy .counter-container ul {
  margin-bottom: 0;
}
.cid-ttbmgLcvvy .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-ttbmgLcvvy .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #fd0c48;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
}
.cid-ttbmgLcvvy .mbr-text UL {
  text-align: left;
}
.cid-ttbqiX0sPK {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ttbqiX0sPK .mbr-text,
.cid-ttbqiX0sPK blockquote {
  color: #767676;
}
.cid-ttbqiX0sPK .mbr-text {
  text-align: center;
}
.cid-txDcc2Chuw {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDcc2Chuw .content {
    text-align: center;
  }
  .cid-txDcc2Chuw .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDcc2Chuw .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDcc2Chuw .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDcc2Chuw .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDcc2Chuw .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDcc2Chuw .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDcc2Chuw .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDcc2Chuw .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDcc2Chuw .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDcc2Chuw .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDcc2Chuw .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDcc2Chuw .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDcc2Chuw P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-ttbY1pN38G {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #077d1e;
}
.cid-ttbY1pN38G .mbr-section-subtitle {
  color: #767676;
}
.cid-ttbY1pN38G H2 {
  color: #ffffff;
}
.cid-ttc1v7Dxvq {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #28dc63;
  position: relative;
}
.cid-ttc1v7Dxvq p {
  color: #767676;
}
.cid-ttc1v7Dxvq .card {
  border-radius: 0px;
  margin-bottom: -1px;
}
.cid-ttc1v7Dxvq .card .card-header {
  border-radius: 0px;
  border: 0px;
  padding: 0;
}
.cid-ttc1v7Dxvq .card .card-header a.panel-title {
  margin-bottom: 0;
  margin-top: -1px;
  font-weight: 500;
  font-style: normal;
  display: block;
  text-decoration: none !important;
  line-height: normal;
}
.cid-ttc1v7Dxvq .card .card-header a.panel-title:focus {
  text-decoration: none !important;
}
.cid-ttc1v7Dxvq .card .card-header a.panel-title h4 {
  border: 1px solid #dfdfdf;
  padding: 1.3rem 2rem;
  margin-bottom: 0;
}
.cid-ttc1v7Dxvq .card .card-header a.panel-title h4 .sign {
  padding-right: 1rem;
}
.cid-ttc1v7Dxvq H4 {
  color: #ffffff;
  text-align: center;
}
.cid-ttc1v7Dxvq .panel-text {
  color: #ffffff;
}
.cid-ttcV3AEzyl {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-ttcV3AEzyl .mbr-text,
.cid-ttcV3AEzyl blockquote {
  color: #767676;
}
.cid-ttcV3AEzyl .mbr-text {
  text-align: center;
}
.cid-tyGWVnB222 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #faf161;
}
.cid-tyGWVnB222 .counter-container {
  color: #767676;
}
.cid-tyGWVnB222 .counter-container ul {
  margin-bottom: 0;
}
.cid-tyGWVnB222 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tyGWVnB222 .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #fd0c48;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
}
.cid-tyGWVnB222 .mbr-text UL {
  text-align: left;
}
.cid-tyGWWojdA9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tyGWWojdA9 .mbr-text,
.cid-tyGWWojdA9 blockquote {
  color: #767676;
}
.cid-tyGWWojdA9 .mbr-text {
  text-align: center;
}
.cid-txDcr2WRoj {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDcr2WRoj .content {
    text-align: center;
  }
  .cid-txDcr2WRoj .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDcr2WRoj .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDcr2WRoj .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDcr2WRoj .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDcr2WRoj .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDcr2WRoj .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDcr2WRoj .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDcr2WRoj .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDcr2WRoj .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDcr2WRoj .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDcr2WRoj .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDcr2WRoj .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDcr2WRoj P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-ttrJ1rwaSO {
  padding-top: 90px;
  padding-bottom: 15px;
  background: #28dc63;
  background: linear-gradient(0deg, #ffffff, #28dc63);
}
.cid-ttrJ1rwaSO .image-block {
  margin: auto;
}
.cid-ttrJ1rwaSO figcaption {
  position: relative;
}
.cid-ttrJ1rwaSO figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-ttrJ1rwaSO .image-block {
    width: 100% !important;
  }
}
.cid-ttrJyUoMTC {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ttrJyUoMTC .mbr-text,
.cid-ttrJyUoMTC blockquote {
  color: #767676;
}
.cid-ttrJyUoMTC .mbr-text P {
  text-align: left;
  color: #767676;
}
.cid-tLpkPiUYSY {
  padding-top: 0px;
  padding-bottom: 45px;
  background-color: #2c7f16;
}
.cid-tLpkPiUYSY .testimonials-container {
  margin: 0 auto;
}
.cid-tLpkPiUYSY .testimonials-container .testimonials-item {
  justify-content: center;
  margin-top: 3rem;
}
.cid-tLpkPiUYSY .testimonials-container .testimonials-item .user {
  background: #cccccc;
}
.cid-tLpkPiUYSY .testimonials-container .testimonials-item .user.row {
  margin: 0;
}
.cid-tLpkPiUYSY .testimonials-container .testimonials-item .user .user_image {
  width: 150px;
  height: 150px;
  overflow: hidden;
  margin: 2rem auto 2rem auto;
}
.cid-tLpkPiUYSY .testimonials-container .testimonials-item .user .user_image img {
  width: 100%;
  min-width: 100%;
  min-height: 100%;
}
.cid-tLpkPiUYSY .testimonials-container .testimonials-item .user .testimonials-caption {
  padding: 2rem;
  padding: 2rem 2rem 2rem 0;
}
@media (max-width: 260px) {
  .cid-tLpkPiUYSY .user_image {
    width: 100% !important;
    height: auto !important;
  }
}
@media (max-width: 767px) {
  .cid-tLpkPiUYSY .testimonials-caption {
    padding: 0 2rem 2rem 2rem !important;
  }
}
.cid-tLpkPiUYSY .user_name {
  text-align: center;
}
.cid-tLpkPiUYSY .user_desk {
  text-align: center;
}
.cid-tLpkPiUYSY .user_text {
  text-align: center;
}
.cid-txDcHYJRRU {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDcHYJRRU .content {
    text-align: center;
  }
  .cid-txDcHYJRRU .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDcHYJRRU .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDcHYJRRU .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDcHYJRRU .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDcHYJRRU .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDcHYJRRU .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDcHYJRRU .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDcHYJRRU .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDcHYJRRU .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDcHYJRRU .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDcHYJRRU .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDcHYJRRU .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDcHYJRRU P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-ttrz5AVhtJ {
  padding-top: 105px;
  padding-bottom: 30px;
  background-color: #077d1e;
  background: linear-gradient(45deg, #077d1e, #042742);
}
@media (min-width: 992px) {
  .cid-ttrz5AVhtJ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ttrz5AVhtJ .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-ttrz5AVhtJ .mbr-text {
    text-align: center;
  }
}
.cid-ttEuM4sCpb {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #042742;
  background: linear-gradient(45deg, #042742, #056604);
}
@media (min-width: 992px) {
  .cid-ttEuM4sCpb .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-ttEuM4sCpb .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-ttEuM4sCpb .mbr-text {
    text-align: center;
  }
}
.cid-tulAyshsch {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #077d1e;
  background: linear-gradient(45deg, #077d1e, #042742);
}
@media (min-width: 992px) {
  .cid-tulAyshsch .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tulAyshsch .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tulAyshsch .mbr-text {
    text-align: center;
  }
}
.cid-tulAz4BEDZ {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #042742;
  background: linear-gradient(45deg, #042742, #056604);
}
@media (min-width: 992px) {
  .cid-tulAz4BEDZ .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tulAz4BEDZ .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tulAz4BEDZ .mbr-text {
    text-align: center;
  }
}
.cid-tulAzyLCRp {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #077d1e;
  background: linear-gradient(45deg, #077d1e, #042742);
}
@media (min-width: 992px) {
  .cid-tulAzyLCRp .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tulAzyLCRp .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tulAzyLCRp .mbr-text {
    text-align: center;
  }
}
.cid-tulAzURFmY {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #042742;
  background: linear-gradient(45deg, #042742, #056604);
}
@media (min-width: 992px) {
  .cid-tulAzURFmY .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tulAzURFmY .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tulAzURFmY .mbr-text {
    text-align: center;
  }
}
.cid-tulAAf34qm {
  padding-top: 90px;
  padding-bottom: 30px;
  background-color: #077d1e;
  background: linear-gradient(45deg, #077d1e, #042742);
}
@media (min-width: 992px) {
  .cid-tulAAf34qm .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tulAAf34qm .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tulAAf34qm .mbr-text {
    text-align: center;
  }
}
.cid-txDcY8RmcI {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDcY8RmcI .content {
    text-align: center;
  }
  .cid-txDcY8RmcI .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDcY8RmcI .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDcY8RmcI .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDcY8RmcI .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDcY8RmcI .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDcY8RmcI .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDcY8RmcI .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDcY8RmcI .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDcY8RmcI .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDcY8RmcI .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDcY8RmcI .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDcY8RmcI .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDcY8RmcI P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tu7fF2ZjRb {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #f8f8f8;
}
.cid-tu7fF2ZjRb .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tu7fF2ZjRb .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #cccccc;
  margin-left: 2rem;
}
.cid-tu7fF2ZjRb .timeline-text-content p {
  margin-bottom: 0;
}
.cid-tu7fF2ZjRb .time-line-date-content {
  margin-right: 2rem;
}
.cid-tu7fF2ZjRb .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #cccccc;
  float: right;
}
.cid-tu7fF2ZjRb .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-tu7fF2ZjRb .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7fF2ZjRb .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7fF2ZjRb .mbr-timeline-date,
.cid-tu7fF2ZjRb .timeline-text-content {
  transition: all .4s;
}
.cid-tu7fF2ZjRb .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tu7fF2ZjRb .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-tu7fF2ZjRb .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-tu7fF2ZjRb .reverse .time-line-date-content p {
  float: left;
}
.cid-tu7fF2ZjRb .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #cccccc;
  top: 20px;
  margin-left: -10px;
}
.cid-tu7fF2ZjRb .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #cccccc;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-tu7fF2ZjRb .iconBackground {
    left: 0 !important;
  }
  .cid-tu7fF2ZjRb .separline:before {
    left: 0!important;
  }
  .cid-tu7fF2ZjRb .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-tu7fF2ZjRb .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-tu7fF2ZjRb .time-line-date-content p {
    float: left !important;
  }
  .cid-tu7fF2ZjRb .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-tu7fF2ZjRb .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-tu7fF2ZjRb .mbr-timeline-date I {
  color: #232323;
}
.cid-tu7fF2ZjRb .mbr-timeline-title {
  color: #056604;
}
.cid-tu7fF2ZjRb .mbr-timeline-date {
  color: #232323;
}
.cid-tu7fF2ZjRb .mbr-timeline-text {
  color: #ffffff;
}
.cid-tujoOBxxFm {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tujoOBxxFm .counter-container {
  color: #767676;
}
.cid-tujoOBxxFm .counter-container ul {
  margin-bottom: 0;
}
.cid-tujoOBxxFm .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tujoOBxxFm .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff0040;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tujoOBxxFm .mbr-text UL {
  color: #232323;
}
.cid-tyFYdpGhTY {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-txNwFd5rRA {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txDd5ia4aK {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDd5ia4aK .content {
    text-align: center;
  }
  .cid-txDd5ia4aK .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDd5ia4aK .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDd5ia4aK .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDd5ia4aK .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDd5ia4aK .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDd5ia4aK .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDd5ia4aK .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDd5ia4aK .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDd5ia4aK .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDd5ia4aK .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDd5ia4aK .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDd5ia4aK .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDd5ia4aK P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tu7Jj8LCMQ {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f8f8f8;
}
.cid-tu7Jj8LCMQ .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tu7Jj8LCMQ .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #cccccc;
  margin-left: 2rem;
}
.cid-tu7Jj8LCMQ .timeline-text-content p {
  margin-bottom: 0;
}
.cid-tu7Jj8LCMQ .time-line-date-content {
  margin-right: 2rem;
}
.cid-tu7Jj8LCMQ .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #cccccc;
  float: right;
}
.cid-tu7Jj8LCMQ .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-tu7Jj8LCMQ .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7Jj8LCMQ .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7Jj8LCMQ .mbr-timeline-date,
.cid-tu7Jj8LCMQ .timeline-text-content {
  transition: all .4s;
}
.cid-tu7Jj8LCMQ .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tu7Jj8LCMQ .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-tu7Jj8LCMQ .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-tu7Jj8LCMQ .reverse .time-line-date-content p {
  float: left;
}
.cid-tu7Jj8LCMQ .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #cccccc;
  top: 20px;
  margin-left: -10px;
}
.cid-tu7Jj8LCMQ .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #cccccc;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-tu7Jj8LCMQ .iconBackground {
    left: 0 !important;
  }
  .cid-tu7Jj8LCMQ .separline:before {
    left: 0!important;
  }
  .cid-tu7Jj8LCMQ .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-tu7Jj8LCMQ .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-tu7Jj8LCMQ .time-line-date-content p {
    float: left !important;
  }
  .cid-tu7Jj8LCMQ .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-tu7Jj8LCMQ .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-tu7Jj8LCMQ .mbr-timeline-title {
  color: #23820a;
}
.cid-tyG2Li6YvW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-txNwaNsSAG {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txDdjXvHWP {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDdjXvHWP .content {
    text-align: center;
  }
  .cid-txDdjXvHWP .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDdjXvHWP .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDdjXvHWP .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDdjXvHWP .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDdjXvHWP .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDdjXvHWP .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDdjXvHWP .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDdjXvHWP .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDdjXvHWP .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDdjXvHWP .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDdjXvHWP .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDdjXvHWP .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDdjXvHWP P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tu7DfMuHKM {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f8f8f8;
}
.cid-tu7DfMuHKM .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tu7DfMuHKM .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #cccccc;
  margin-left: 2rem;
}
.cid-tu7DfMuHKM .timeline-text-content p {
  margin-bottom: 0;
}
.cid-tu7DfMuHKM .time-line-date-content {
  margin-right: 2rem;
}
.cid-tu7DfMuHKM .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #cccccc;
  float: right;
}
.cid-tu7DfMuHKM .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-tu7DfMuHKM .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7DfMuHKM .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7DfMuHKM .mbr-timeline-date,
.cid-tu7DfMuHKM .timeline-text-content {
  transition: all .4s;
}
.cid-tu7DfMuHKM .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tu7DfMuHKM .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-tu7DfMuHKM .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-tu7DfMuHKM .reverse .time-line-date-content p {
  float: left;
}
.cid-tu7DfMuHKM .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #cccccc;
  top: 20px;
  margin-left: -10px;
}
.cid-tu7DfMuHKM .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #cccccc;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-tu7DfMuHKM .iconBackground {
    left: 0 !important;
  }
  .cid-tu7DfMuHKM .separline:before {
    left: 0!important;
  }
  .cid-tu7DfMuHKM .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-tu7DfMuHKM .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-tu7DfMuHKM .time-line-date-content p {
    float: left !important;
  }
  .cid-tu7DfMuHKM .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-tu7DfMuHKM .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-tu7DfMuHKM .mbr-timeline-title {
  color: #23820a;
}
.cid-tyG2JaV5ct {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-txNwLFEx02 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txDdbT1YqJ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDdbT1YqJ .content {
    text-align: center;
  }
  .cid-txDdbT1YqJ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDdbT1YqJ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDdbT1YqJ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDdbT1YqJ .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDdbT1YqJ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDdbT1YqJ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDdbT1YqJ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDdbT1YqJ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDdbT1YqJ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDdbT1YqJ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDdbT1YqJ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDdbT1YqJ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDdbT1YqJ P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tu7JkRh00Y {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f8f8f8;
}
.cid-tu7JkRh00Y .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tu7JkRh00Y .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #cccccc;
  margin-left: 2rem;
}
.cid-tu7JkRh00Y .timeline-text-content p {
  margin-bottom: 0;
}
.cid-tu7JkRh00Y .time-line-date-content {
  margin-right: 2rem;
}
.cid-tu7JkRh00Y .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #cccccc;
  float: right;
}
.cid-tu7JkRh00Y .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-tu7JkRh00Y .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7JkRh00Y .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7JkRh00Y .mbr-timeline-date,
.cid-tu7JkRh00Y .timeline-text-content {
  transition: all .4s;
}
.cid-tu7JkRh00Y .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tu7JkRh00Y .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-tu7JkRh00Y .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-tu7JkRh00Y .reverse .time-line-date-content p {
  float: left;
}
.cid-tu7JkRh00Y .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #cccccc;
  top: 20px;
  margin-left: -10px;
}
.cid-tu7JkRh00Y .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #cccccc;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-tu7JkRh00Y .iconBackground {
    left: 0 !important;
  }
  .cid-tu7JkRh00Y .separline:before {
    left: 0!important;
  }
  .cid-tu7JkRh00Y .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-tu7JkRh00Y .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-tu7JkRh00Y .time-line-date-content p {
    float: left !important;
  }
  .cid-tu7JkRh00Y .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-tu7JkRh00Y .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-tu7JkRh00Y .mbr-timeline-title {
  color: #23820a;
}
.cid-tyG2NjWCO8 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-txNx04nYk0 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txDdsqGjMG {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDdsqGjMG .content {
    text-align: center;
  }
  .cid-txDdsqGjMG .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDdsqGjMG .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDdsqGjMG .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDdsqGjMG .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDdsqGjMG .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDdsqGjMG .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDdsqGjMG .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDdsqGjMG .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDdsqGjMG .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDdsqGjMG .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDdsqGjMG .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDdsqGjMG .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDdsqGjMG P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tu7JmXLpsq {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f8f8f8;
}
.cid-tu7JmXLpsq .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tu7JmXLpsq .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #cccccc;
  margin-left: 2rem;
}
.cid-tu7JmXLpsq .timeline-text-content p {
  margin-bottom: 0;
}
.cid-tu7JmXLpsq .time-line-date-content {
  margin-right: 2rem;
}
.cid-tu7JmXLpsq .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #cccccc;
  float: right;
}
.cid-tu7JmXLpsq .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-tu7JmXLpsq .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7JmXLpsq .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7JmXLpsq .mbr-timeline-date,
.cid-tu7JmXLpsq .timeline-text-content {
  transition: all .4s;
}
.cid-tu7JmXLpsq .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tu7JmXLpsq .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-tu7JmXLpsq .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-tu7JmXLpsq .reverse .time-line-date-content p {
  float: left;
}
.cid-tu7JmXLpsq .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #cccccc;
  top: 20px;
  margin-left: -10px;
}
.cid-tu7JmXLpsq .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #cccccc;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-tu7JmXLpsq .iconBackground {
    left: 0 !important;
  }
  .cid-tu7JmXLpsq .separline:before {
    left: 0!important;
  }
  .cid-tu7JmXLpsq .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-tu7JmXLpsq .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-tu7JmXLpsq .time-line-date-content p {
    float: left !important;
  }
  .cid-tu7JmXLpsq .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-tu7JmXLpsq .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-tu7JmXLpsq .mbr-timeline-title {
  color: #23820a;
}
.cid-tuq56lqgBR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-tuq56lqgBR .counter-container {
  color: #767676;
}
.cid-tuq56lqgBR .counter-container ul {
  margin-bottom: 0;
}
.cid-tuq56lqgBR .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tuq56lqgBR .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff0040;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tuq56lqgBR .mbr-text UL {
  color: #232323;
}
.cid-tyG2PDYr4n {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-txNxlW2sWX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txDdCgI46a {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDdCgI46a .content {
    text-align: center;
  }
  .cid-txDdCgI46a .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDdCgI46a .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDdCgI46a .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDdCgI46a .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDdCgI46a .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDdCgI46a .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDdCgI46a .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDdCgI46a .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDdCgI46a .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDdCgI46a .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDdCgI46a .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDdCgI46a .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDdCgI46a P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tu7JovPDKC {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #f8f8f8;
}
.cid-tu7JovPDKC .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tu7JovPDKC .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #cccccc;
  margin-left: 2rem;
}
.cid-tu7JovPDKC .timeline-text-content p {
  margin-bottom: 0;
}
.cid-tu7JovPDKC .time-line-date-content {
  margin-right: 2rem;
}
.cid-tu7JovPDKC .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #cccccc;
  float: right;
}
.cid-tu7JovPDKC .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-tu7JovPDKC .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7JovPDKC .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7JovPDKC .mbr-timeline-date,
.cid-tu7JovPDKC .timeline-text-content {
  transition: all .4s;
}
.cid-tu7JovPDKC .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tu7JovPDKC .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-tu7JovPDKC .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-tu7JovPDKC .reverse .time-line-date-content p {
  float: left;
}
.cid-tu7JovPDKC .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #cccccc;
  top: 20px;
  margin-left: -10px;
}
.cid-tu7JovPDKC .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #cccccc;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-tu7JovPDKC .iconBackground {
    left: 0 !important;
  }
  .cid-tu7JovPDKC .separline:before {
    left: 0!important;
  }
  .cid-tu7JovPDKC .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-tu7JovPDKC .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-tu7JovPDKC .time-line-date-content p {
    float: left !important;
  }
  .cid-tu7JovPDKC .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-tu7JovPDKC .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-tu7JovPDKC .mbr-timeline-title {
  color: #23820a;
}
.cid-tyG2Sw6JT4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-txNxuiL7jt {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-txDdJXt34z {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDdJXt34z .content {
    text-align: center;
  }
  .cid-txDdJXt34z .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDdJXt34z .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDdJXt34z .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDdJXt34z .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDdJXt34z .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDdJXt34z .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDdJXt34z .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDdJXt34z .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDdJXt34z .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDdJXt34z .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDdJXt34z .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDdJXt34z .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDdJXt34z P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tu7JqmZ7K0 {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #f8f8f8;
}
.cid-tu7JqmZ7K0 .mbr-section-subtitle {
  color: #767676;
  text-align: center;
  font-weight: 300;
}
.cid-tu7JqmZ7K0 .timeline-text-content {
  padding: 2rem 2.5rem;
  background: #cccccc;
  margin-left: 2rem;
}
.cid-tu7JqmZ7K0 .timeline-text-content p {
  margin-bottom: 0;
}
.cid-tu7JqmZ7K0 .time-line-date-content {
  margin-right: 2rem;
}
.cid-tu7JqmZ7K0 .time-line-date-content p {
  padding: 2rem 2.5rem;
  background: #cccccc;
  float: right;
}
.cid-tu7JqmZ7K0 .timeline-element {
  margin-bottom: 50px;
  position: relative;
  word-wrap: break-word;
  word-break: break-word;
  display: -webkit-flex;
  flex-direction: row;
  -webkit-flex-direction: row;
}
.cid-tu7JqmZ7K0 .timeline-element:hover .mbr-timeline-date {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7JqmZ7K0 .timeline-element:hover .timeline-text-content {
  box-shadow: 0 7px 20px 0px rgba(0, 0, 0, 0.08);
  transition: all .4s;
}
.cid-tu7JqmZ7K0 .mbr-timeline-date,
.cid-tu7JqmZ7K0 .timeline-text-content {
  transition: all .4s;
}
.cid-tu7JqmZ7K0 .reverse {
  flex-direction: row-reverse;
  -webkit-flex-direction: row-reverse;
}
.cid-tu7JqmZ7K0 .reverse .timeline-text-content {
  margin-right: 2rem;
  margin-left: 0;
}
.cid-tu7JqmZ7K0 .reverse .time-line-date-content {
  margin-left: 2rem;
  margin-right: 0rem;
}
.cid-tu7JqmZ7K0 .reverse .time-line-date-content p {
  float: left;
}
.cid-tu7JqmZ7K0 .iconBackground {
  position: absolute;
  left: 50%;
  width: 20px;
  height: 20px;
  line-height: 30px;
  text-align: center;
  border-radius: 50%;
  font-size: 30px;
  display: inline-block;
  background-color: #cccccc;
  top: 20px;
  margin-left: -10px;
}
.cid-tu7JqmZ7K0 .separline:before {
  top: 20px;
  bottom: 0;
  position: absolute;
  content: "";
  width: 2px;
  background-color: #cccccc;
  left: calc(50% - 1px);
  height: calc(100% + 4rem);
}
@media (max-width: 768px) {
  .cid-tu7JqmZ7K0 .iconBackground {
    left: 0 !important;
  }
  .cid-tu7JqmZ7K0 .separline:before {
    left: 0!important;
  }
  .cid-tu7JqmZ7K0 .timeline-text-content {
    margin-left: 0 !important;
  }
  .cid-tu7JqmZ7K0 .time-line-date-content {
    margin-right: 0 !important;
  }
  .cid-tu7JqmZ7K0 .time-line-date-content p {
    float: left !important;
  }
  .cid-tu7JqmZ7K0 .reverse .time-line-date-content {
    margin-left: 0 !important;
  }
  .cid-tu7JqmZ7K0 .reverse .timeline-text-content {
    margin-right: 0 !important;
  }
}
.cid-tu7JqmZ7K0 .mbr-timeline-title {
  color: #23820a;
}
.cid-tyG2VlFmiM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-txDe2pQD4S {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDe2pQD4S .content {
    text-align: center;
  }
  .cid-txDe2pQD4S .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDe2pQD4S .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDe2pQD4S .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDe2pQD4S .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDe2pQD4S .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDe2pQD4S .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDe2pQD4S .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDe2pQD4S .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDe2pQD4S .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDe2pQD4S .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDe2pQD4S .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDe2pQD4S .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDe2pQD4S P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tm6H7znoy4 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-tm6HofydIn {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #ffffff;
  background: linear-gradient(0deg, #3adc6f, #ffffff);
}
.cid-tm6HofydIn .image-block {
  margin: auto;
}
.cid-tm6HofydIn figcaption {
  position: relative;
}
.cid-tm6HofydIn figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tm6HofydIn .image-block {
    width: 100% !important;
  }
}
.cid-tm6Hxijwve {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #3adc6f;
}
.cid-tm6Hxijwve .images-container.container-fluid {
  padding: 0;
}
.cid-tm6Hxijwve .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tm6Hxijwve .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tm6Hxijwve .media-container-row .img-item img {
  width: 100%;
}
.cid-tm6Hxijwve .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tm6Hxijwve .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tm6Hxijwve .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tm6Hxijwve .img-item {
    width: 100% !important;
  }
  .cid-tm6Hxijwve .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tm6Ib1ccrI {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tm6Ib1ccrI .mbr-text,
.cid-tm6Ib1ccrI blockquote {
  color: #767676;
}
.cid-tLnUtnXBhH {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tLnUtnXBhH .mbr-text,
.cid-tLnUtnXBhH blockquote {
  color: #767676;
}
.cid-tLnUtnXBhH .mbr-text B {
  color: #2c7f16;
}
.cid-tutSLhh0Tk {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tutSLhh0Tk .image-block {
  margin: auto;
}
.cid-tutSLhh0Tk .mbr-figure {
  margin: 0 auto;
}
.cid-tutSLhh0Tk figcaption {
  position: relative;
}
.cid-tutSLhh0Tk figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tutSLhh0Tk .image-block {
    width: 100% !important;
  }
}
.cid-ttsyVK8eLj {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #28dc63;
  background: linear-gradient(0deg, #28dc63, #ffffff);
}
.cid-ttsyVK8eLj .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-ttsyVK8eLj .video-block {
    width: 100% !important;
  }
}
.cid-tyheH6fKGw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzRxKCov5V {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzRxKCov5V .btn {
  margin: 0 0 .5rem 0;
}
.cid-tzRxLt5jWX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #2c7f16;
}
.cid-tzRxLt5jWX .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tzRxLt5jWX .btn {
  margin: 0 0 .5rem 0;
}
.cid-txD8WKyOXd {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txD8WKyOXd .content {
    text-align: center;
  }
  .cid-txD8WKyOXd .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txD8WKyOXd .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txD8WKyOXd .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txD8WKyOXd .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txD8WKyOXd .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txD8WKyOXd .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txD8WKyOXd .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txD8WKyOXd .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txD8WKyOXd .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txD8WKyOXd .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txD8WKyOXd .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txD8WKyOXd .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txD8WKyOXd P {
  color: #ffffff;
}
.cid-tmc7v1uYep {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tmc7qDQfwM {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
  background: linear-gradient(0deg, #3adc6f, #ffffff);
}
.cid-tmc7qDQfwM .image-block {
  margin: auto;
}
.cid-tmc7qDQfwM figcaption {
  position: relative;
}
.cid-tmc7qDQfwM figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tmc7qDQfwM .image-block {
    width: 100% !important;
  }
}
.cid-tmc7r8vFti {
  padding-top: 0px;
  padding-bottom: 30px;
  background: #3adc6f;
}
.cid-tmc7r8vFti .images-container.container-fluid {
  padding: 0;
}
.cid-tmc7r8vFti .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tmc7r8vFti .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tmc7r8vFti .media-container-row .img-item img {
  width: 100%;
}
.cid-tmc7r8vFti .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tmc7r8vFti .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tmc7r8vFti .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tmc7r8vFti .img-item {
    width: 100% !important;
  }
  .cid-tmc7r8vFti .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tmc7xKZJlw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tmc7xKZJlw .mbr-text,
.cid-tmc7xKZJlw blockquote {
  color: #767676;
}
.cid-tLouFWwyPn {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLouFWwyPn .mbr-text,
.cid-tLouFWwyPn blockquote {
  color: #767676;
}
.cid-tLouFWwyPn .mbr-text B {
  color: #2c7f16;
}
.cid-txDzlKpdOo {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #f7ed4a;
}
.cid-txDzlKpdOo .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-txDzlKpdOo .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-txDzlKpdOo .media-container-row .img-item img {
  width: 100%;
}
.cid-txDzlKpdOo .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-txDzlKpdOo .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-txDzlKpdOo .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-txDzlKpdOo .img-item {
    width: 100% !important;
  }
  .cid-txDzlKpdOo .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-txDzVqmuUg {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #f7ed4a;
}
.cid-txDzVqmuUg .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-txDzVqmuUg .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-txDzVqmuUg .media-container-row .img-item img {
  width: 100%;
}
.cid-txDzVqmuUg .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-txDzVqmuUg .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-txDzVqmuUg .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-txDzVqmuUg .img-item {
    width: 100% !important;
  }
  .cid-txDzVqmuUg .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-txDAuUhfGb {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #f7ed4a;
}
.cid-txDAuUhfGb .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-txDAuUhfGb .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-txDAuUhfGb .media-container-row .img-item img {
  width: 100%;
}
.cid-txDAuUhfGb .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-txDAuUhfGb .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-txDAuUhfGb .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-txDAuUhfGb .img-item {
    width: 100% !important;
  }
  .cid-txDAuUhfGb .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tmc8vYpctd {
  padding-top: 30px;
  padding-bottom: 30px;
  background: #3adc6f;
  background: linear-gradient(0deg, #3adc6f, #efefef);
}
.cid-tmc8vYpctd .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tmc8vYpctd .video-block {
    width: 100% !important;
  }
}
.cid-tuu0xJmCNw {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tuu0xJmCNw .image-block {
  margin: auto;
}
.cid-tuu0xJmCNw .mbr-figure {
  margin: 0 auto;
}
.cid-tuu0xJmCNw figcaption {
  position: relative;
}
.cid-tuu0xJmCNw figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tuu0xJmCNw .image-block {
    width: 100% !important;
  }
}
.cid-tyhf7hlFrw {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzRyoSYY0b {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzRyoSYY0b .btn {
  margin: 0 0 .5rem 0;
}
.cid-tzRypvKrLB {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #2c7f16;
}
.cid-tzRypvKrLB .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tzRypvKrLB .btn {
  margin: 0 0 .5rem 0;
}
.cid-txD99lDMnQ {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txD99lDMnQ .content {
    text-align: center;
  }
  .cid-txD99lDMnQ .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txD99lDMnQ .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txD99lDMnQ .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txD99lDMnQ .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txD99lDMnQ .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txD99lDMnQ .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txD99lDMnQ .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txD99lDMnQ .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txD99lDMnQ .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txD99lDMnQ .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txD99lDMnQ .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txD99lDMnQ .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txD99lDMnQ P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-trWL9N56Y9 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-trWLh8z3Zj {
  padding-top: 15px;
  padding-bottom: 60px;
  background: #3adc6f;
  background: linear-gradient(0deg, #ffffff, #3adc6f);
}
.cid-trWLh8z3Zj .image-block {
  margin: auto;
}
.cid-trWLh8z3Zj figcaption {
  position: relative;
}
.cid-trWLh8z3Zj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-trWLh8z3Zj .image-block {
    width: 100% !important;
  }
}
.cid-trWLipfC0E {
  padding-top: 45px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-trWLipfC0E .images-container.container-fluid {
  padding: 0;
}
.cid-trWLipfC0E .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-trWLipfC0E .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-trWLipfC0E .media-container-row .img-item img {
  width: 100%;
}
.cid-trWLipfC0E .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-trWLipfC0E .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-trWLipfC0E .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-trWLipfC0E .img-item {
    width: 100% !important;
  }
  .cid-trWLipfC0E .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tLpYx22eYj {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLpYx22eYj .mbr-section-subtitle {
  color: #767676;
}
.cid-trWOIYnoVP {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-trWOIYnoVP .mbr-text,
.cid-trWOIYnoVP blockquote {
  color: #767676;
}
.cid-tLozN8djoP {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLozN8djoP .mbr-text,
.cid-tLozN8djoP blockquote {
  color: #767676;
}
.cid-tLozN8djoP .mbr-text B {
  color: #2c7f16;
}
.cid-tvrkRTzvvo {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tvrkRTzvvo .image-block {
  margin: auto;
}
.cid-tvrkRTzvvo .mbr-figure {
  margin: 0 auto;
}
.cid-tvrkRTzvvo figcaption {
  position: relative;
}
.cid-tvrkRTzvvo figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tvrkRTzvvo .image-block {
    width: 100% !important;
  }
}
.cid-tyhgnZ7ISp {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzRB2sUAnX {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzRB2sUAnX .btn {
  margin: 0 0 .5rem 0;
}
.cid-tzRB2WZzHn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #2c7f16;
}
.cid-tzRB2WZzHn .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tzRB2WZzHn .btn {
  margin: 0 0 .5rem 0;
}
.cid-txDa83EESL {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDa83EESL .content {
    text-align: center;
  }
  .cid-txDa83EESL .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDa83EESL .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDa83EESL .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDa83EESL .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDa83EESL .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDa83EESL .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDa83EESL .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDa83EESL .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDa83EESL .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDa83EESL .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDa83EESL .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDa83EESL .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDa83EESL P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tsGU32sHdZ {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #28dc63;
}
.cid-tsGTxD7qzn {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
  background: linear-gradient(45deg, #ffffff, #1dd75a);
}
.cid-tsGTxD7qzn .image-block {
  margin: auto;
}
.cid-tsGTxD7qzn .mbr-figure {
  margin: 0 auto;
}
.cid-tsGTxD7qzn figcaption {
  position: relative;
}
.cid-tsGTxD7qzn figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tsGTxD7qzn .image-block {
    width: 100% !important;
  }
}
.cid-tsGVrjTGEJ {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tsGVrjTGEJ .mbr-text,
.cid-tsGVrjTGEJ blockquote {
  color: #767676;
}
.cid-tsGVrjTGEJ .mbr-text P {
  text-align: center;
}
.cid-tsGY24xmFl {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-tsGY24xmFl .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tsGY24xmFl .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tsGY24xmFl .media-container-row .img-item .img-cont {
  position: relative;
  overflow: hidden;
}
.cid-tsGY24xmFl .media-container-row .img-item .img-cont img {
  width: 100%;
}
.cid-tsGY24xmFl .media-container-row .img-item .img-cont .img-caption {
  position: absolute;
  bottom: 0;
  width: 100%;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tsGY24xmFl .media-container-row .img-item .img-cont .img-caption p {
  margin-bottom: 0;
}
.cid-tsGY24xmFl .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tsGY24xmFl .img-item {
    width: 100% !important;
  }
  .cid-tsGY24xmFl .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tsN6z9SANS {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #efefef;
}
.cid-tsN6z9SANS h4 {
  text-align: left;
  font-weight: 500;
}
.cid-tsN6z9SANS p {
  color: #767676;
  text-align: left;
}
.cid-tsN6z9SANS .card-img {
  text-align: left;
  padding-right: 30px;
  -webkit-flex-shrink: 0;
  flex-shrink: 0;
  width: auto;
}
.cid-tsN6z9SANS .card-img span {
  font-size: 72px;
  color: #707070;
}
.cid-tsN6z9SANS .card-title {
  margin-bottom: 0;
}
.cid-tsN6z9SANS .mbr-crt-title {
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
.cid-tsN6z9SANS .media {
  margin: initial;
  align-items: center;
}
@media (max-width: 300px) {
  .cid-tsN6z9SANS .card-img span {
    font-size: 40px !important;
  }
}
.cid-tsHGVNyzWH {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tsHGVNyzWH .images-container.container-fluid {
  padding: 0;
}
.cid-tsHGVNyzWH .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tsHGVNyzWH .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tsHGVNyzWH .media-container-row .img-item img {
  width: 100%;
}
.cid-tsHGVNyzWH .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tsHGVNyzWH .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tsHGVNyzWH .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tsHGVNyzWH .img-item {
    width: 100% !important;
  }
  .cid-tsHGVNyzWH .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tsImrTb1Xy {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tsImrTb1Xy .mbr-text,
.cid-tsImrTb1Xy blockquote {
  color: #767676;
}
.cid-tsImrTb1Xy .mbr-text {
  text-align: center;
}
.cid-tsGYeHPvF7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tsGYeHPvF7 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tsGYeHPvF7 .video-block {
    width: 100% !important;
  }
}
.cid-tsGY6KirPR {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tzRPJmGy5G {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzRPJmGy5G .btn {
  margin: 0 0 .5rem 0;
}
.cid-txDbS8KSug {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDbS8KSug .content {
    text-align: center;
  }
  .cid-txDbS8KSug .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDbS8KSug .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDbS8KSug .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDbS8KSug .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDbS8KSug .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDbS8KSug .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDbS8KSug .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDbS8KSug .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDbS8KSug .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDbS8KSug .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDbS8KSug .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDbS8KSug .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDbS8KSug P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tr1WU9eG7h {
  padding-top: 105px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-tr1XufhSGL {
  padding-top: 0px;
  padding-bottom: 60px;
  background: #3adc6f;
  background: linear-gradient(0deg, #ffffff, #3adc6f);
}
.cid-tr1XufhSGL .image-block {
  margin: auto;
}
.cid-tr1XufhSGL figcaption {
  position: relative;
}
.cid-tr1XufhSGL figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tr1XufhSGL .image-block {
    width: 100% !important;
  }
}
.cid-tr1XULbwh7 {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #3adc6f;
}
.cid-tr1XULbwh7 .images-container.container-fluid {
  padding: 0;
}
.cid-tr1XULbwh7 .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tr1XULbwh7 .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tr1XULbwh7 .media-container-row .img-item img {
  width: 100%;
}
.cid-tr1XULbwh7 .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tr1XULbwh7 .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tr1XULbwh7 .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tr1XULbwh7 .img-item {
    width: 100% !important;
  }
  .cid-tr1XULbwh7 .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tLpYdBRmy6 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLpYdBRmy6 .mbr-section-subtitle {
  color: #767676;
}
.cid-tr1YjLGCbo {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tr1YjLGCbo .mbr-text,
.cid-tr1YjLGCbo blockquote {
  color: #767676;
}
.cid-tr1YjLGCbo P {
  text-align: left;
}
.cid-tLoqYa0N3X {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLoqYa0N3X .mbr-text,
.cid-tLoqYa0N3X blockquote {
  color: #767676;
}
.cid-tLoqYa0N3X .mbr-text B {
  color: #2c7f16;
}
.cid-txJrInAkg8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #f7ed4a;
}
.cid-txJrInAkg8 .counter-container {
  color: #767676;
}
.cid-txJrInAkg8 .counter-container ul {
  margin-bottom: 0;
}
.cid-txJrInAkg8 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-txJrInAkg8 .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #ff0040;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-txJrInAkg8 .mbr-text UL {
  color: #232323;
}
.cid-tvrnRblbEE {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tvrnRblbEE .image-block {
  margin: auto;
}
.cid-tvrnRblbEE .mbr-figure {
  margin: 0 auto;
}
.cid-tvrnRblbEE figcaption {
  position: relative;
}
.cid-tvrnRblbEE figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tvrnRblbEE .image-block {
    width: 100% !important;
  }
}
.cid-tyhfp0VP7R {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzRA2NLEgg {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzRA2NLEgg .btn {
  margin: 0 0 .5rem 0;
}
.cid-tzRA3krJYW {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #2c7f16;
}
.cid-tzRA3krJYW .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tzRA3krJYW .btn {
  margin: 0 0 .5rem 0;
}
.cid-txD9uDGI2l {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txD9uDGI2l .content {
    text-align: center;
  }
  .cid-txD9uDGI2l .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txD9uDGI2l .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txD9uDGI2l .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txD9uDGI2l .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txD9uDGI2l .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txD9uDGI2l .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txD9uDGI2l .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txD9uDGI2l .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txD9uDGI2l .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txD9uDGI2l .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txD9uDGI2l .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txD9uDGI2l .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txD9uDGI2l P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tn5ZfAX4g5 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tn5ZfAX4g5 .mbr-section-subtitle {
  color: #767676;
}
.cid-tn5ZIGUFs1 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tn5ZIGUFs1 .counter-container {
  color: #767676;
}
.cid-tn5ZIGUFs1 .counter-container ul {
  margin-bottom: 0;
}
.cid-tn5ZIGUFs1 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tn5ZIGUFs1 .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #149dcc;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tnCLRXI7Fn {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tnCLRXI7Fn .mbr-section-subtitle {
  color: #767676;
}
.cid-tnCLRXI7Fn B {
  color: #ffffff;
}
.cid-tnCJwHpdV3 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tnCJwHpdV3 .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-tnCJwHpdV3 .mbr-author-name {
  font-weight: bold;
}
.cid-tnCJwHpdV3 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tnCLMXCZIP {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tnCMVMlKYi {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tnCMVMlKYi .mbr-section-subtitle {
  color: #767676;
}
.cid-tnCMVMlKYi B {
  color: #ffffff;
}
.cid-tnCMWB7vXM {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tnCMWB7vXM .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-tnCMWB7vXM .mbr-author-name {
  font-weight: bold;
}
.cid-tnCMWB7vXM .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tnCMYjljQd {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tnCNJ1DBUd {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tnCNJ1DBUd .mbr-section-subtitle {
  color: #767676;
}
.cid-tnCNJ1DBUd B {
  color: #ffffff;
}
.cid-tnCNJBGqs4 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tnCNJBGqs4 .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-tnCNJBGqs4 .mbr-author-name {
  font-weight: bold;
}
.cid-tnCNJBGqs4 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-ts28lijpv7 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tp3jfFf899 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tp3jfFf899 .mbr-section-subtitle {
  color: #767676;
}
.cid-tp3jfFf899 B {
  color: #ffffff;
}
.cid-tp3jgjgX78 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tp3jgjgX78 .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-tp3jgjgX78 .mbr-author-name {
  font-weight: bold;
}
.cid-tp3jgjgX78 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-txxzwqlTdy {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-ttAk41i72s {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-ttAk41i72s .mbr-section-subtitle {
  color: #767676;
}
.cid-ttAk41i72s B {
  color: #ffffff;
}
.cid-tr8DXCRtq6 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tr8DXCRtq6 .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-tr8DXCRtq6 .mbr-author-name {
  font-weight: bold;
}
.cid-tr8DXCRtq6 .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-txxzAKeNPk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tr247VGTv3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tr247VGTv3 .mbr-section-subtitle {
  color: #767676;
}
.cid-tr247VGTv3 B {
  color: #ffffff;
}
.cid-tr242Zv66z {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tr242Zv66z .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-tr242Zv66z .mbr-author-name {
  font-weight: bold;
}
.cid-tr242Zv66z .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tnCNJVT6Rp {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tnCO9aCx3F {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tnCO9aCx3F .mbr-section-subtitle {
  color: #767676;
}
.cid-tnCO9aCx3F B {
  color: #ffffff;
}
.cid-tnCO9F5S2j {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tnCO9F5S2j .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-tnCO9F5S2j .mbr-author-name {
  font-weight: bold;
}
.cid-tnCO9F5S2j .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-tnJpSt0BTR {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tr8DYt15lQ {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tr8DYt15lQ .mbr-section-subtitle {
  color: #767676;
}
.cid-tr8DYt15lQ B {
  color: #ffffff;
}
.cid-trKrWlkr3m {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-trKrWlkr3m .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-trKrWlkr3m .mbr-author-name {
  font-weight: bold;
}
.cid-trKrWlkr3m .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-trKrWJ3Ny5 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-ts279KKvEK {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-ts279KKvEK .mbr-section-subtitle {
  color: #767676;
}
.cid-ts279KKvEK B {
  color: #ffffff;
}
.cid-ts27aM03tG {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-ts27aM03tG .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-ts27aM03tG .mbr-author-name {
  font-weight: bold;
}
.cid-ts27aM03tG .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-ts27b7UULk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #056604;
}
.cid-tp3iOAazF4 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tp3iOAazF4 .mbr-section-subtitle {
  color: #767676;
}
.cid-tp3iOAazF4 B {
  color: #ffffff;
}
.cid-tp3iPbUbrW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tp3iPbUbrW .testimonial-text {
  font-style: italic;
  font-weight: 300;
}
.cid-tp3iPbUbrW .mbr-author-name {
  font-weight: bold;
}
.cid-tp3iPbUbrW .media-container-row {
  word-wrap: break-word;
  word-break: break-word;
}
.cid-ttAlGLlBak {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tygBBLtDjf {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-txD9Wa4V2e {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txD9Wa4V2e .content {
    text-align: center;
  }
  .cid-txD9Wa4V2e .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txD9Wa4V2e .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txD9Wa4V2e .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txD9Wa4V2e .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txD9Wa4V2e .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txD9Wa4V2e .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txD9Wa4V2e .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txD9Wa4V2e .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txD9Wa4V2e .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txD9Wa4V2e .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txD9Wa4V2e .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txD9Wa4V2e .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txD9Wa4V2e P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tnZ4awRxsb {
  padding-top: 75px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-tnZ38jQoSy {
  padding-top: 0px;
  padding-bottom: 60px;
  background: #3adc6f;
}
.cid-tnZ38jQoSy .image-block {
  margin: auto;
}
.cid-tnZ38jQoSy figcaption {
  position: relative;
}
.cid-tnZ38jQoSy figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tnZ38jQoSy .image-block {
    width: 100% !important;
  }
}
.cid-tLpOTkR6Er {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLpOTkR6Er .mbr-section-subtitle {
  color: #767676;
}
.cid-tLpOTkR6Er .mbr-section-subtitle B {
  color: #232323;
}
.cid-tnZ3GMJ5KD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tnZ3GMJ5KD .mbr-text,
.cid-tnZ3GMJ5KD blockquote {
  color: #767676;
}
.cid-tnZ3GMJ5KD P {
  color: #232323;
}
.cid-tLpznqyJ5e {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLpznqyJ5e .mbr-text,
.cid-tLpznqyJ5e blockquote {
  color: #767676;
}
.cid-tLpznqyJ5e .mbr-text B {
  color: #2c7f16;
}
.cid-tLpznqyJ5e .mbr-text {
  color: #232323;
}
.cid-tr04fAp3Ru {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-tr04fAp3Ru .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tr04fAp3Ru .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tr04fAp3Ru .media-container-row .img-item img {
  width: 100%;
}
.cid-tr04fAp3Ru .media-container-row .img-item .img-caption {
  background: #cccccc;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tr04fAp3Ru .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tr04fAp3Ru .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tr04fAp3Ru .img-item {
    width: 100% !important;
  }
  .cid-tr04fAp3Ru .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tulpqTc3nZ {
  padding-top: 45px;
  padding-bottom: 45px;
  background: #ffffff;
}
.cid-tulpqTc3nZ .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tulpqTc3nZ .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tulpqTc3nZ .media-container-row .img-item img {
  width: 100%;
}
.cid-tulpqTc3nZ .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tulpqTc3nZ .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tulpqTc3nZ .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tulpqTc3nZ .img-item {
    width: 100% !important;
  }
  .cid-tulpqTc3nZ .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tnZfiYp7hn {
  padding-top: 15px;
  padding-bottom: 60px;
  background: #3adc6f;
  background: linear-gradient(0deg, #3adc6f, #ffffff);
}
.cid-tnZfiYp7hn .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tnZfiYp7hn .video-block {
    width: 100% !important;
  }
}
.cid-tuu9hhSCh4 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tuu9hhSCh4 .image-block {
  margin: auto;
}
.cid-tuu9hhSCh4 .mbr-figure {
  margin: 0 auto;
}
.cid-tuu9hhSCh4 figcaption {
  position: relative;
}
.cid-tuu9hhSCh4 figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tuu9hhSCh4 .image-block {
    width: 100% !important;
  }
}
.cid-tyhhaXfdyu {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzS0C2Q8hI {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #15a313;
}
.cid-tzS0C2Q8hI .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tzS0C2Q8hI .btn {
  margin: 0 0 .5rem 0;
}
.cid-tyhheZi5In {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-txDb3kQ1qM {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDb3kQ1qM .content {
    text-align: center;
  }
  .cid-txDb3kQ1qM .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDb3kQ1qM .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDb3kQ1qM .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDb3kQ1qM .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDb3kQ1qM .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDb3kQ1qM .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDb3kQ1qM .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDb3kQ1qM .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDb3kQ1qM .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDb3kQ1qM .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDb3kQ1qM .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDb3kQ1qM .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDb3kQ1qM P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-txxHvqi3DV {
  padding-top: 120px;
  padding-bottom: 90px;
  background: linear-gradient(45deg, #dbd4b8, #077d1e);
}
.cid-txxHvqi3DV .btn {
  margin: 0 0 .5rem 0;
}
.cid-txxHvqi3DV H2 {
  text-align: center;
}
.cid-txxHvqi3DV H3 {
  text-align: right;
}
.cid-txDenEk627 {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDenEk627 .content {
    text-align: center;
  }
  .cid-txDenEk627 .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDenEk627 .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDenEk627 .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDenEk627 .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDenEk627 .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDenEk627 .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDenEk627 .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDenEk627 .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDenEk627 .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDenEk627 .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDenEk627 .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDenEk627 .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDenEk627 P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-trebYplsTe {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-tsfbK6uZYS {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #3ec76b);
}
@media (min-width: 992px) {
  .cid-tsfbK6uZYS .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tsfbK6uZYS .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tsfbK6uZYS .mbr-text {
    text-align: center;
  }
}
.cid-trKC0gf7vU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-trKC0gf7vU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-trKC0gf7vU .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-trKC0gf7vU .mbr-text {
  color: #767676;
}
.cid-trKC1f29U8 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-trKC1f29U8 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-trKC1f29U8 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-trKC1f29U8 .mbr-text {
  color: #767676;
}
.cid-trKQbgJ5jU {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-trKQbgJ5jU .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-trKQbgJ5jU .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-trKQbgJ5jU .mbr-text {
  color: #767676;
}
.cid-trKQcaTgwi {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-trKQcaTgwi .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-trKQcaTgwi .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-trKQcaTgwi .mbr-text {
  color: #767676;
}
.cid-trKBJDkW27 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-trKBJDkW27 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-trKBJDkW27 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-trKBJDkW27 .mbr-text {
  color: #767676;
}
.cid-trQP5NTEhw {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-trQP5NTEhw .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-trQP5NTEhw .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-trQP5NTEhw .mbr-text {
  color: #767676;
}
.cid-ts2yGdcbS1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-ts2yGdcbS1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-ts2yGdcbS1 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-ts2yGdcbS1 .mbr-text {
  color: #767676;
}
.cid-trKQStU6WI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-trKQStU6WI .counter-container {
  color: #767676;
}
.cid-trKQStU6WI .counter-container ul {
  margin-bottom: 0;
}
.cid-trKQStU6WI .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-trKQStU6WI .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f82901;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
}
.cid-trEy5pnAyV {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fceb13;
}
.cid-trEtdbgW15 {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-trEtdbgW15 .content-slider {
  display: flex;
  justify-content: center;
}
.cid-trEtdbgW15 .modal-body .close {
  background: #1b1b1b;
}
.cid-trEtdbgW15 .modal-body .close span {
  font-style: normal;
}
.cid-trEtdbgW15 .carousel-inner > .active,
.cid-trEtdbgW15 .carousel-inner > .next,
.cid-trEtdbgW15 .carousel-inner > .prev {
  display: flex;
}
.cid-trEtdbgW15 .carousel-control .icon-next,
.cid-trEtdbgW15 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-trEtdbgW15 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-trEtdbgW15 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-trEtdbgW15 .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-trEtdbgW15 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-trEtdbgW15 .boxed-slider > div {
  position: relative;
}
.cid-trEtdbgW15 .container img {
  width: 100%;
}
.cid-trEtdbgW15 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-trEtdbgW15 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-trEtdbgW15 .mbr-table-cell {
  padding: 0;
}
.cid-trEtdbgW15 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-trEtdbgW15 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-trEtdbgW15 .mbr-overlay {
  z-index: 1;
}
.cid-trEtdbgW15 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-trEtdbgW15 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-trEtdbgW15 .carousel-item .container {
    width: 100%;
  }
}
.cid-trEtdbgW15 .carousel-item-next.carousel-item-left,
.cid-trEtdbgW15 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-trEtdbgW15 .active.carousel-item-right,
.cid-trEtdbgW15 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-trEtdbgW15 .active.carousel-item-left,
.cid-trEtdbgW15 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-trEtdbgW15 .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-trEtdbgW15 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trEtdbgW15 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trEtdbgW15 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-trEtdbgW15 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-trEtdbgW15 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-trEtdbgW15 .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-trEtdbgW15 .mbr-slider .carousel-indicators li.active,
.cid-trEtdbgW15 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-trEtdbgW15 .mbr-slider .carousel-indicators li::after,
.cid-trEtdbgW15 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-trEtdbgW15 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-trEtdbgW15 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-trEtdbgW15 .mbr-slider > .container img {
  width: 100%;
}
.cid-trEtdbgW15 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-trEtdbgW15 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-trEtdbgW15 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-trEtdbgW15 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-trEtdbgW15 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-trEtdbgW15 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-trEtdbgW15 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-trEtdbgW15 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-trEtdbgW15 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-trEtdbgW15 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-trEtdbgW15 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-trEtdbgW15 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-trEtdbgW15 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-trEtdbgW15 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-trEtdbgW15 .carousel-inner {
  height: 100%;
}
.cid-trEtdbgW15 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-trEtdbgW15 .image_wrapper {
  height: 400px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-trEtdbgW15 .image_wrapper img {
  width: auto !important;
  height: 100%;
}
.cid-trEtdbgW15 .carousel-item .container-slide {
  text-align: center;
}
.cid-trEtdbgW15 .content-slider-wrap {
  width: 60%;
}
.cid-trEvqgS2dW {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-trEvqgS2dW .line {
  background-color: #3adc6f;
  color: #3adc6f;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-trEvqgS2dW .section-text {
  padding: 2rem 0;
}
.cid-trEvqgS2dW .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-trEvqgS2dW .inner-container {
    width: 100% !important;
  }
}
.cid-trECncXjZ3 {
  padding-top: 45px;
  padding-bottom: 45px;
  background-color: #232323;
}
.cid-trECncXjZ3 .content-slider {
  display: flex;
  justify-content: center;
}
.cid-trECncXjZ3 .modal-body .close {
  background: #1b1b1b;
}
.cid-trECncXjZ3 .modal-body .close span {
  font-style: normal;
}
.cid-trECncXjZ3 .carousel-inner > .active,
.cid-trECncXjZ3 .carousel-inner > .next,
.cid-trECncXjZ3 .carousel-inner > .prev {
  display: flex;
}
.cid-trECncXjZ3 .carousel-control .icon-next,
.cid-trECncXjZ3 .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-trECncXjZ3 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-trECncXjZ3 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-trECncXjZ3 .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-trECncXjZ3 .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-trECncXjZ3 .boxed-slider > div {
  position: relative;
}
.cid-trECncXjZ3 .container img {
  width: 100%;
}
.cid-trECncXjZ3 .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-trECncXjZ3 .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-trECncXjZ3 .mbr-table-cell {
  padding: 0;
}
.cid-trECncXjZ3 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-trECncXjZ3 .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-trECncXjZ3 .mbr-overlay {
  z-index: 1;
}
.cid-trECncXjZ3 .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-trECncXjZ3 .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-trECncXjZ3 .carousel-item .container {
    width: 100%;
  }
}
.cid-trECncXjZ3 .carousel-item-next.carousel-item-left,
.cid-trECncXjZ3 .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-trECncXjZ3 .active.carousel-item-right,
.cid-trECncXjZ3 .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-trECncXjZ3 .active.carousel-item-left,
.cid-trECncXjZ3 .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-trECncXjZ3 .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-trECncXjZ3 .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trECncXjZ3 .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trECncXjZ3 .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-trECncXjZ3 .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-trECncXjZ3 .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-trECncXjZ3 .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-trECncXjZ3 .mbr-slider .carousel-indicators li.active,
.cid-trECncXjZ3 .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-trECncXjZ3 .mbr-slider .carousel-indicators li::after,
.cid-trECncXjZ3 .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-trECncXjZ3 .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-trECncXjZ3 .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-trECncXjZ3 .mbr-slider > .container img {
  width: 100%;
}
.cid-trECncXjZ3 .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-trECncXjZ3 .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-trECncXjZ3 .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-trECncXjZ3 .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-trECncXjZ3 .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-trECncXjZ3 .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-trECncXjZ3 .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-trECncXjZ3 .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-trECncXjZ3 .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-trECncXjZ3 .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-trECncXjZ3 .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-trECncXjZ3 .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-trECncXjZ3 .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-trECncXjZ3 .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-trECncXjZ3 .carousel-inner {
  height: 100%;
}
.cid-trECncXjZ3 .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-trECncXjZ3 .image_wrapper {
  height: 400px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-trECncXjZ3 .image_wrapper img {
  width: auto !important;
  height: 100%;
}
.cid-trECncXjZ3 .carousel-item .container-slide {
  text-align: center;
}
.cid-trECncXjZ3 .content-slider-wrap {
  width: 60%;
}
.cid-trLqB9y3nI {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #232323;
}
.cid-trLqB9y3nI .mbr-text {
  color: #ffffff;
}
.cid-trLqB9y3nI .mbr-text DIV {
  color: #ffffff;
}
.cid-trLqFfXt4v {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-trLqFfXt4v .mbr-text,
.cid-trLqFfXt4v blockquote {
  color: #767676;
}
.cid-trLqFfXt4v .mbr-text {
  text-align: center;
}
.cid-trLqFfXt4v .mbr-text DIV {
  color: #ffffff;
}
.cid-tyhjdpUtzH {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzRNYezU32 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzRNYezU32 .btn {
  margin: 0 0 .5rem 0;
}
.cid-txDbCUXs6S {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDbCUXs6S .content {
    text-align: center;
  }
  .cid-txDbCUXs6S .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDbCUXs6S .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDbCUXs6S .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDbCUXs6S .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDbCUXs6S .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDbCUXs6S .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDbCUXs6S .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDbCUXs6S .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDbCUXs6S .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDbCUXs6S .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDbCUXs6S .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDbCUXs6S .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDbCUXs6S P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-trSZl5QqjW {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #3adc6f;
}
.cid-tsf9ZhkAiW {
  padding-top: 90px;
  padding-bottom: 90px;
  background-color: #ffffff;
  background: linear-gradient(45deg, #ffffff, #1dd75a);
}
@media (min-width: 992px) {
  .cid-tsf9ZhkAiW .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-tsf9ZhkAiW .mbr-figure {
    padding-bottom: 3rem;
  }
}
@media (max-width: 767px) {
  .cid-tsf9ZhkAiW .mbr-text {
    text-align: center;
  }
}
.cid-trT4T9kRB2 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-trT4T9kRB2 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-trT4T9kRB2 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-trT4T9kRB2 .mbr-text {
  color: #767676;
}
.cid-trT4TBo2f1 {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-trT4TBo2f1 .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-trT4TBo2f1 .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-trT4TBo2f1 .mbr-text {
  color: #767676;
}
.cid-trT4TZSJkD {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-trT4TZSJkD .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-trT4TZSJkD .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-trT4TZSJkD .mbr-text {
  color: #767676;
}
.cid-trT4UR0pAx {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-trT4UR0pAx .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-trT4UR0pAx .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-trT4UR0pAx .mbr-text {
  color: #767676;
}
.cid-trT4UoFDJI {
  padding-top: 60px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-trT4UoFDJI .mbr-figure {
    padding-right: 4rem;
  }
}
@media (max-width: 992px) {
  .cid-trT4UoFDJI .mbr-figure {
    padding-bottom: 1rem;
  }
}
.cid-trT4UoFDJI .mbr-text {
  color: #767676;
}
.cid-ttnV3bXVey {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-ttnV3bXVey .counter-container {
  color: #767676;
}
.cid-ttnV3bXVey .counter-container ul {
  margin-bottom: 0;
}
.cid-ttnV3bXVey .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-ttnV3bXVey .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #077d1e;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-trT5eQZmqJ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-trT5eQZmqJ .counter-container {
  color: #767676;
}
.cid-trT5eQZmqJ .counter-container ul {
  margin-bottom: 0;
}
.cid-trT5eQZmqJ .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-trT5eQZmqJ .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #f82901;
  width: 25px;
  height: 25px;
  border-radius: 50%;
  border-radius: 0;
}
.cid-trT5d1hxxd {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #fceb13;
}
.cid-trT7m0uF2x {
  padding-top: 45px;
  padding-bottom: 0px;
  background-color: #232323;
}
.cid-trT7m0uF2x .content-slider {
  display: flex;
  justify-content: center;
}
.cid-trT7m0uF2x .modal-body .close {
  background: #1b1b1b;
}
.cid-trT7m0uF2x .modal-body .close span {
  font-style: normal;
}
.cid-trT7m0uF2x .carousel-inner > .active,
.cid-trT7m0uF2x .carousel-inner > .next,
.cid-trT7m0uF2x .carousel-inner > .prev {
  display: flex;
}
.cid-trT7m0uF2x .carousel-control .icon-next,
.cid-trT7m0uF2x .carousel-control .icon-prev {
  margin-top: -18px;
  font-size: 40px;
  line-height: 27px;
}
.cid-trT7m0uF2x .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-trT7m0uF2x .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-trT7m0uF2x .content-slider-wrap {
    width: 100%!important;
  }
}
.cid-trT7m0uF2x .boxed-slider {
  position: relative;
  padding: 93px 0;
}
.cid-trT7m0uF2x .boxed-slider > div {
  position: relative;
}
.cid-trT7m0uF2x .container img {
  width: 100%;
}
.cid-trT7m0uF2x .container img + .row {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2;
}
.cid-trT7m0uF2x .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-trT7m0uF2x .mbr-table-cell {
  padding: 0;
}
.cid-trT7m0uF2x .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-trT7m0uF2x .carousel-caption {
  top: 50%;
  right: 0;
  bottom: auto;
  left: 0;
  display: flex;
  align-items: center;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-trT7m0uF2x .mbr-overlay {
  z-index: 1;
}
.cid-trT7m0uF2x .container-slide.container {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-trT7m0uF2x .carousel-item {
  background-position: 50% 50%;
  background-repeat: no-repeat;
  background-size: cover;
  -o-transition: -o-transform 0.6s ease-in-out;
  -webkit-transition: -webkit-transform 0.6s ease-in-out;
  transition: transform 0.6s ease-in-out, -webkit-transform 0.6s ease-in-out, -o-transform 0.6s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-perspective: 1000px;
  perspective: 1000px;
}
@media (max-width: 576px) {
  .cid-trT7m0uF2x .carousel-item .container {
    width: 100%;
  }
}
.cid-trT7m0uF2x .carousel-item-next.carousel-item-left,
.cid-trT7m0uF2x .carousel-item-prev.carousel-item-right {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.cid-trT7m0uF2x .active.carousel-item-right,
.cid-trT7m0uF2x .carousel-item-next {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0);
}
.cid-trT7m0uF2x .active.carousel-item-left,
.cid-trT7m0uF2x .carousel-item-prev {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0);
}
.cid-trT7m0uF2x .mbr-slider .carousel-control {
  top: 50%;
  width: 50px;
  height: 50px;
  margin-top: -1.5rem;
  font-size: 35px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all .3s;
}
.cid-trT7m0uF2x .mbr-slider .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-trT7m0uF2x .mbr-slider .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
.cid-trT7m0uF2x .mbr-slider .carousel-control .mbr-iconfont {
  font-size: 1.5rem;
}
@media (max-width: 767px) {
  .cid-trT7m0uF2x .mbr-slider .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-trT7m0uF2x .mbr-slider .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-trT7m0uF2x .mbr-slider .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: .5;
  transition: all .3s;
}
.cid-trT7m0uF2x .mbr-slider .carousel-indicators li.active,
.cid-trT7m0uF2x .mbr-slider .carousel-indicators li:hover {
  opacity: .9;
}
.cid-trT7m0uF2x .mbr-slider .carousel-indicators li::after,
.cid-trT7m0uF2x .mbr-slider .carousel-indicators li::before {
  content: none;
}
.cid-trT7m0uF2x .mbr-slider .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 576px) {
  .cid-trT7m0uF2x .mbr-slider .carousel-indicators {
    display: none !important;
  }
}
.cid-trT7m0uF2x .mbr-slider > .container img {
  width: 100%;
}
.cid-trT7m0uF2x .mbr-slider > .container img + .row {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  z-index: 2;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}
.cid-trT7m0uF2x .mbr-slider > .container .carousel-indicators {
  margin-bottom: 3px;
}
@media (max-width: 576px) {
  .cid-trT7m0uF2x .mbr-slider > .container .carousel-control {
    margin-bottom: 0;
  }
}
.cid-trT7m0uF2x .mbr-slider .mbr-section {
  padding: 0;
  background-attachment: scroll;
}
.cid-trT7m0uF2x .mbr-slider .mbr-table-cell {
  padding: 0;
}
.cid-trT7m0uF2x .carousel-item .container.container-slide {
  position: initial;
  width: auto;
  min-height: 0;
}
.cid-trT7m0uF2x .full-screen .slider-fullscreen-image {
  min-height: 100vh;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cid-trT7m0uF2x .full-screen .slider-fullscreen-image.active {
  display: -o-flex;
}
.cid-trT7m0uF2x .full-screen .container {
  width: auto;
  padding-right: 0;
  padding-left: 0;
}
.cid-trT7m0uF2x .full-screen .carousel-item .container.container-slide {
  width: 100%;
  min-height: 100vh;
  padding: 0;
}
.cid-trT7m0uF2x .full-screen .carousel-item .container.container-slide img {
  display: none;
}
.cid-trT7m0uF2x .mbr-background-video-preview {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}
.cid-trT7m0uF2x .mbr-overlay ~ .container-slide {
  z-index: auto;
}
.cid-trT7m0uF2x .mbr-slider.slide .container {
  overflow: hidden;
  padding: 0;
}
.cid-trT7m0uF2x .carousel-inner {
  height: 100%;
}
.cid-trT7m0uF2x .slider-fullscreen-image {
  height: 100%;
  background: transparent !important;
}
.cid-trT7m0uF2x .image_wrapper {
  height: 480px;
  width: 100%;
  position: relative;
  display: inline-block;
}
.cid-trT7m0uF2x .image_wrapper img {
  width: auto !important;
  height: 100%;
}
.cid-trT7m0uF2x .carousel-item .container-slide {
  text-align: center;
}
.cid-trT7m0uF2x .content-slider-wrap {
  width: 60%;
}
.cid-trT7sCgbH5 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #232323;
}
.cid-trT7sCgbH5 .line {
  background-color: #3adc6f;
  color: #3adc6f;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-trT7sCgbH5 .section-text {
  padding: 2rem 0;
}
.cid-trT7sCgbH5 .inner-container {
  margin: 0 auto;
}
@media (max-width: 768px) {
  .cid-trT7sCgbH5 .inner-container {
    width: 100% !important;
  }
}
.cid-tyhifmh3E6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzROlNjsW9 {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzROlNjsW9 .btn {
  margin: 0 0 .5rem 0;
}
.cid-txDbsY9L5V {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txDbsY9L5V .content {
    text-align: center;
  }
  .cid-txDbsY9L5V .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txDbsY9L5V .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txDbsY9L5V .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txDbsY9L5V .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txDbsY9L5V .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txDbsY9L5V .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txDbsY9L5V .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txDbsY9L5V .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txDbsY9L5V .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txDbsY9L5V .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txDbsY9L5V .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txDbsY9L5V .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txDbsY9L5V P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tm6BQGU5gB {
  padding-top: 90px;
  padding-bottom: 15px;
  background-color: #3adc6f;
}
.cid-tm6CquWabj {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #3adc6f;
}
.cid-tm6CquWabj .image-block {
  margin: auto;
}
.cid-tm6CquWabj figcaption {
  position: relative;
}
.cid-tm6CquWabj figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tm6CquWabj .image-block {
    width: 100% !important;
  }
}
.cid-tm6DNZVWCR {
  padding-top: 0px;
  padding-bottom: 45px;
  background: #3adc6f;
}
.cid-tm6DNZVWCR .images-container.container-fluid {
  padding: 0;
}
.cid-tm6DNZVWCR .media-container-row {
  margin: 0 auto;
  align-items: stretch;
}
.cid-tm6DNZVWCR .media-container-row .img-item {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  width: 100%;
  z-index: 1;
}
.cid-tm6DNZVWCR .media-container-row .img-item img {
  width: 100%;
}
.cid-tm6DNZVWCR .media-container-row .img-item .img-caption {
  background: #ffffff;
  z-index: 2;
  padding: 1rem 1rem;
  word-break: break-word;
}
.cid-tm6DNZVWCR .media-container-row .img-item .img-caption p {
  margin-bottom: 0;
}
.cid-tm6DNZVWCR .media-container-row .img-item.item1 {
  padding: 0 2rem 0 0;
}
@media (max-width: 992px) {
  .cid-tm6DNZVWCR .img-item {
    width: 100% !important;
  }
  .cid-tm6DNZVWCR .img-item.item1 {
    width: 100%;
    flex-basis: initial !important;
    padding: 0 0 2rem 0 !important;
  }
}
.cid-tm6EeCPJK8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #efefef;
}
.cid-tm6EeCPJK8 .mbr-text,
.cid-tm6EeCPJK8 blockquote {
  color: #767676;
}
.cid-tLnXY1ZhEa {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLnXY1ZhEa .mbr-text,
.cid-tLnXY1ZhEa blockquote {
  color: #767676;
}
.cid-tLnXY1ZhEa .mbr-text B {
  color: #2c7f16;
}
.cid-tutRS8rPnH {
  padding-top: 0px;
  padding-bottom: 0px;
  background: #ffffff;
}
.cid-tutRS8rPnH .image-block {
  margin: auto;
}
.cid-tutRS8rPnH .mbr-figure {
  margin: 0 auto;
}
.cid-tutRS8rPnH figcaption {
  position: relative;
}
.cid-tutRS8rPnH figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tutRS8rPnH .image-block {
    width: 100% !important;
  }
}
.cid-txxMfQ2Lc7 {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #2c7f16;
  background: linear-gradient(0deg, #2c7f16, #ffffff);
}
.cid-txxMfQ2Lc7 .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-txxMfQ2Lc7 .video-block {
    width: 100% !important;
  }
}
.cid-tyheA4z4r3 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #23820a;
}
.cid-tzRuKnsgzc {
  padding-top: 15px;
  padding-bottom: 15px;
  background: linear-gradient(45deg, #dbd4b8, #15a313);
}
.cid-tzRuKnsgzc .btn {
  margin: 0 0 .5rem 0;
}
.cid-tzRwpo6EL1 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #2c7f16;
}
.cid-tzRwpo6EL1 .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tzRwpo6EL1 .btn {
  margin: 0 0 .5rem 0;
}
.cid-txD8xvwoBd {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-txD8xvwoBd .content {
    text-align: center;
  }
  .cid-txD8xvwoBd .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-txD8xvwoBd .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-txD8xvwoBd .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-txD8xvwoBd .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-txD8xvwoBd .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-txD8xvwoBd .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-txD8xvwoBd .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-txD8xvwoBd .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-txD8xvwoBd .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-txD8xvwoBd .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-txD8xvwoBd .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-txD8xvwoBd .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-txD8xvwoBd P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tK9xikoFUJ {
  padding-top: 90px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-tK9xikoFUJ .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tK9xikoFUJ .video-block {
    width: 100% !important;
  }
}
.cid-tK9xlrS4pO {
  padding-top: 15px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tK9xlrS4pO .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tK9xlrS4pO .video-block {
    width: 100% !important;
  }
}
.cid-tK9xMbNE5b {
  padding-top: 60px;
  padding-bottom: 60px;
  background: #ffffff;
}
.cid-tK9xMbNE5b .video-block {
  margin: auto;
}
@media (max-width: 768px) {
  .cid-tK9xMbNE5b .video-block {
    width: 100% !important;
  }
}
.cid-tLwj6GOacB {
  padding-top: 0px;
  padding-bottom: 15px;
  background: #ffffff;
}
.cid-tLwj6GOacB .image-block {
  margin: auto;
}
.cid-tLwj6GOacB figcaption {
  position: relative;
}
.cid-tLwj6GOacB figcaption div {
  position: absolute;
  bottom: 0;
  width: 100%;
}
@media (max-width: 768px) {
  .cid-tLwj6GOacB .image-block {
    width: 100% !important;
  }
}
.cid-tLwhJ5uURq {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-tLwhJ5uURq .content {
    text-align: center;
  }
  .cid-tLwhJ5uURq .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tLwhJ5uURq .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tLwhJ5uURq .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tLwhJ5uURq .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tLwhJ5uURq .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tLwhJ5uURq .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tLwhJ5uURq .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tLwhJ5uURq .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tLwhJ5uURq .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tLwhJ5uURq .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tLwhJ5uURq .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tLwhJ5uURq .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tLwhJ5uURq P {
  color: #ffffff;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tLqe2rqDm6 {
  padding-top: 90px;
  padding-bottom: 0px;
  background-color: #efefef;
}
.cid-tLqe2rqDm6 .mbr-section-subtitle {
  color: #767676;
}
.cid-tLqe2rqDm6 H2 {
  color: #232323;
  text-align: left;
}
.cid-tLqBqqxxqA {
  padding-top: 60px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLqBqqxxqA .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-tLqBqqxxqA H2 {
  text-align: left;
}
.cid-tLqCf8JUtL {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqCf8JUtL .mbr-section-subtitle {
  color: #767676;
}
.cid-tLqCf8JUtL H2 {
  text-align: left;
}
.cid-tLqCf8JUtL .mbr-section-subtitle DIV {
  text-align: left;
  color: #232323;
}
.cid-tLqD0cdB1H {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLqD0cdB1H .mbr-text,
.cid-tLqD0cdB1H blockquote {
  color: #767676;
}
.cid-tLqD0cdB1H .mbr-text {
  color: #232323;
}
.cid-tLqDdnPYqz {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqDdnPYqz .mbr-text,
.cid-tLqDdnPYqz blockquote {
  color: #767676;
}
.cid-tLqDdnPYqz .mbr-text B {
  color: #232323;
}
.cid-tLqDsrFOTQ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqDsrFOTQ .mbr-text,
.cid-tLqDsrFOTQ blockquote {
  color: #767676;
}
.cid-tLqDsrFOTQ .mbr-text B {
  color: #232323;
}
.cid-tLqDsrFOTQ .mbr-text {
  color: #232323;
}
.cid-tLqDRVnOor {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLqDRVnOor .counter-container {
  color: #767676;
}
.cid-tLqDRVnOor .counter-container ul {
  margin-bottom: 0;
}
.cid-tLqDRVnOor .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tLqDRVnOor .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #232323;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tLqDRVnOor .mbr-text UL {
  color: #232323;
}
.cid-tLqGIQgnt6 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqGIQgnt6 .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-tLqGIQgnt6 DIV {
  text-align: left;
}
.cid-tLqGIQgnt6 .mbr-section-subtitle B {
  color: #232323;
}
.cid-tLvcosJApd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLvcosJApd .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-tLvcosJApd .mbr-section-subtitle B {
  color: #232323;
}
.cid-tLqHfxoZ0S {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqHfxoZ0S .mbr-section-subtitle {
  color: #232323;
}
.cid-tLqHfxoZ0S H2 {
  text-align: left;
}
.cid-tLqHUyKqIZ {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqHUyKqIZ .mbr-text,
.cid-tLqHUyKqIZ blockquote {
  color: #767676;
}
.cid-tLqHUyKqIZ .mbr-text {
  color: #232323;
}
.cid-tLqIzYiJC0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqIzYiJC0 .counter-container {
  color: #767676;
}
.cid-tLqIzYiJC0 .counter-container ul {
  margin-bottom: 0;
}
.cid-tLqIzYiJC0 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tLqIzYiJC0 .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #232323;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tLqIzYiJC0 .mbr-text UL {
  color: #232323;
}
.cid-tLqJhEBWyc {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqJhEBWyc .mbr-section-subtitle {
  color: #767676;
}
.cid-tLqJhEBWyc H2 {
  text-align: left;
}
.cid-tLqJDNXbM9 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqJDNXbM9 .mbr-text,
.cid-tLqJDNXbM9 blockquote {
  color: #767676;
}
.cid-tLqJDNXbM9 .mbr-text {
  color: #232323;
}
.cid-tLqKfAhUpi {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqKfAhUpi .mbr-section-subtitle {
  color: #767676;
}
.cid-tLqKfAhUpi H2 {
  text-align: left;
}
.cid-tLqKrOYIqV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqKrOYIqV .mbr-text,
.cid-tLqKrOYIqV blockquote {
  color: #767676;
}
.cid-tLqKrOYIqV .mbr-text {
  color: #232323;
}
.cid-tLqKUqTjw1 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLqKUqTjw1 .counter-container {
  color: #767676;
}
.cid-tLqKUqTjw1 .counter-container ul {
  margin-bottom: 0;
}
.cid-tLqKUqTjw1 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tLqKUqTjw1 .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #232323;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tLqKUqTjw1 .mbr-text UL {
  color: #232323;
}
.cid-tLqM9YipaF {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLqM9YipaF .mbr-text,
.cid-tLqM9YipaF blockquote {
  color: #767676;
}
.cid-tLqM9YipaF .mbr-text B {
  color: #232323;
}
.cid-tLqM9YipaF .mbr-text P {
  color: #232323;
}
.cid-tLqMu8ntEX {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqMu8ntEX .counter-container {
  color: #767676;
}
.cid-tLqMu8ntEX .counter-container ul {
  margin-bottom: 0;
}
.cid-tLqMu8ntEX .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tLqMu8ntEX .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #232323;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tLqMu8ntEX .mbr-text UL {
  color: #232323;
}
.cid-tLqMZD7qVQ {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLqMZD7qVQ .mbr-text,
.cid-tLqMZD7qVQ blockquote {
  color: #767676;
}
.cid-tLqMZD7qVQ .mbr-text DIV {
  color: #232323;
}
.cid-tLqMZD7qVQ .mbr-text {
  color: #232323;
}
.cid-tLqNBjfYBX {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLqNBjfYBX .counter-container {
  color: #767676;
}
.cid-tLqNBjfYBX .counter-container ul {
  margin-bottom: 0;
}
.cid-tLqNBjfYBX .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tLqNBjfYBX .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #232323;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tLqNBjfYBX .mbr-text UL {
  color: #232323;
}
.cid-tLqOfgaKcs {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqOfgaKcs .mbr-text,
.cid-tLqOfgaKcs blockquote {
  color: #767676;
}
.cid-tLqOfgaKcs .mbr-text {
  color: #232323;
}
.cid-tLqOSMts0V {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqOSMts0V .counter-container {
  color: #767676;
}
.cid-tLqOSMts0V .counter-container ul {
  margin-bottom: 0;
}
.cid-tLqOSMts0V .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tLqOSMts0V .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #232323;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tLqOSMts0V .mbr-text UL {
  color: #232323;
}
.cid-tLqPm9TI4P {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLqPm9TI4P .mbr-text,
.cid-tLqPm9TI4P blockquote {
  color: #767676;
}
.cid-tLqPm9TI4P .mbr-text DIV {
  color: #232323;
}
.cid-tLqPm9TI4P .mbr-text {
  color: #232323;
}
.cid-tLqPF8VCtq {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLqPF8VCtq .mbr-text,
.cid-tLqPF8VCtq blockquote {
  color: #767676;
}
.cid-tLqPF8VCtq .mbr-text DIV {
  color: #232323;
}
.cid-tLqPRyhjEM {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqPRyhjEM .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-tLqPRyhjEM DIV {
  text-align: left;
}
.cid-tLtWdzih0w {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLtWdzih0w .mbr-text,
.cid-tLtWdzih0w blockquote {
  color: #767676;
}
.cid-tLtWdzih0w .mbr-text {
  color: #232323;
}
.cid-tLqR4WFug2 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLqR4WFug2 .counter-container {
  color: #767676;
}
.cid-tLqR4WFug2 .counter-container ul {
  margin-bottom: 0;
}
.cid-tLqR4WFug2 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tLqR4WFug2 .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #232323;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tLqR4WFug2 .mbr-text UL {
  color: #232323;
}
.cid-tLtXWz3RuV {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLtXWz3RuV .counter-container {
  color: #767676;
}
.cid-tLtXWz3RuV .counter-container ul {
  margin-bottom: 0;
}
.cid-tLtXWz3RuV .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tLtXWz3RuV .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #232323;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tLtXWz3RuV .mbr-text UL {
  color: #232323;
}
.cid-tLtZybjDhs {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tLtZybjDhs .mbr-text,
.cid-tLtZybjDhs blockquote {
  color: #767676;
}
.cid-tLtZybjDhs .mbr-text {
  color: #232323;
}
.cid-tLtZTszsiu {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLtZTszsiu .counter-container {
  color: #767676;
}
.cid-tLtZTszsiu .counter-container ul {
  margin-bottom: 0;
}
.cid-tLtZTszsiu .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tLtZTszsiu .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #232323;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tLtZTszsiu .mbr-text UL {
  color: #232323;
}
.cid-tLu1d08P67 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLu1d08P67 .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-tLu1d08P67 H2 {
  text-align: left;
}
.cid-tLu1SVrbHb {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLu1SVrbHb .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-tLu1SVrbHb H2 {
  text-align: left;
}
.cid-tLu3hVNI6o {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLu3hVNI6o .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-tLu3hVNI6o H2 {
  text-align: left;
}
.cid-tLu4lqlCk8 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLu4lqlCk8 .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-tLu4lqlCk8 H2 {
  text-align: left;
}
.cid-tLu5ApeoGS {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLu5ApeoGS .mbr-text,
.cid-tLu5ApeoGS blockquote {
  color: #767676;
}
.cid-tLu5ApeoGS .mbr-text {
  text-align: left;
  color: #232323;
}
.cid-tLu5X9imnU {
  padding-top: 15px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLu5X9imnU .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-tLu5X9imnU .mbr-section-subtitle DIV {
  color: #232323;
}
.cid-tLu6r3hNPd {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLu6r3hNPd .mbr-text,
.cid-tLu6r3hNPd blockquote {
  color: #767676;
}
.cid-tLu6r3hNPd .mbr-text {
  color: #232323;
}
.cid-tLu80YdJrN {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLu80YdJrN .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-tLu80YdJrN H2 {
  text-align: left;
}
.cid-tLu7F22LV7 {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLu7F22LV7 .counter-container {
  color: #767676;
}
.cid-tLu7F22LV7 .counter-container ul {
  margin-bottom: 0;
}
.cid-tLu7F22LV7 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tLu7F22LV7 .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #232323;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tLu7F22LV7 .mbr-text UL {
  color: #232323;
}
.cid-tLu9onOqth {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLu9onOqth .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-tLu9onOqth H2 {
  text-align: left;
}
.cid-tLu9WfHbtU {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLu9WfHbtU .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-tLu9WfHbtU H2 {
  text-align: left;
}
.cid-tLuauWqr8g {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLuauWqr8g .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-tLuauWqr8g H2 {
  text-align: left;
}
.cid-tLucGRfmsD {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLucGRfmsD .mbr-section-subtitle {
  color: #767676;
  text-align: left;
}
.cid-tLucGRfmsD H2 {
  text-align: left;
}
.cid-tLucGRfmsD .mbr-section-subtitle DIV {
  color: #232323;
}
.cid-tLudr44C6R {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-tLudr44C6R .mbr-section-subtitle {
  color: #232323;
  text-align: left;
}
.cid-tLudr44C6R H2 {
  text-align: left;
}
.cid-tLue3KGFnh {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #ffffff;
}
.cid-tLue3KGFnh .counter-container {
  color: #767676;
}
.cid-tLue3KGFnh .counter-container ul {
  margin-bottom: 0;
}
.cid-tLue3KGFnh .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
}
.cid-tLue3KGFnh .counter-container ul li:before {
  position: absolute;
  left: 0px;
  margin-top: -10px;
  padding-top: 3px;
  content: '';
  display: inline-block;
  text-align: center;
  margin: 5px 10px;
  line-height: 20px;
  transition: all .2s;
  color: #ffffff;
  background: #232323;
  width: 25px;
  height: 25px;
  border-radius: 50%;
}
.cid-tm1uqcJeyE .navbar {
  padding: .5rem 0;
  background: #3adc6f;
  transition: none;
  min-height: 77px;
}
.cid-tm1uqcJeyE .navbar-dropdown.bg-color.transparent.opened {
  background: #3adc6f;
}
.cid-tm1uqcJeyE a {
  font-style: normal;
}
.cid-tm1uqcJeyE .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: text-bottom;
  position: relative;
  top: -0.2em;
  text-decoration: none;
}
.cid-tm1uqcJeyE .nav-item a {
  padding: 0.7rem 0 !important;
  margin: 0rem .65rem !important;
}
.cid-tm1uqcJeyE .btn {
  padding: 0.4rem 1.5rem;
  display: inline-flex;
  align-items: center;
}
.cid-tm1uqcJeyE .btn .mbr-iconfont {
  font-size: 1.6rem;
}
.cid-tm1uqcJeyE .menu-logo {
  margin-right: auto;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand {
  display: flex;
  margin-left: 5rem;
  padding: 0;
  transition: padding .2s;
  min-height: 3.8rem;
  align-items: center;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap {
  display: -webkit-flex;
  -webkit-align-items: center;
  align-items: center;
  word-break: break-word;
  min-width: 7rem;
  margin: .3rem 0;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
}
.cid-tm1uqcJeyE .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse {
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
  padding-right: 5rem;
  width: auto;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  padding-left: 0;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu {
  background: #3adc6f;
  display: none;
  position: absolute;
  min-width: 5rem;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  text-align: left;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  padding: 0.235em 1.5385em 0.235em 1.5385em !important;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tm1uqcJeyE .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tm1uqcJeyE .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  transform: translateY(100%);
  -webkit-transform: translateY(100%);
  z-index: 1000;
}
.cid-tm1uqcJeyE .navbar.navbar-short {
  min-height: 60px;
  transition: all .2s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-toggler-right {
  top: 20px;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  transition: font-size 0.25s;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-tm1uqcJeyE .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-tm1uqcJeyE button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  transition: all .2s;
  top: 1.5rem;
  right: 1rem;
}
.cid-tm1uqcJeyE button.navbar-toggler:focus {
  outline: none;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #232323;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all .2s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all .15s;
}
.cid-tm1uqcJeyE button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: all .25s;
}
.cid-tm1uqcJeyE nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all .2s;
}
.cid-tm1uqcJeyE .collapsed.navbar-expand {
  flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .btn {
  display: flex;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show {
  display: block !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-nav .nav-item:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-tm1uqcJeyE .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-tm1uqcJeyE .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
.cid-tm1uqcJeyE .collapsed button.navbar-toggler {
  display: block;
}
.cid-tm1uqcJeyE .collapsed .navbar-brand {
  margin-left: 1rem !important;
}
.cid-tm1uqcJeyE .collapsed .navbar-toggleable-sm {
  flex-direction: column;
  -webkit-flex-direction: column;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  transition-duration: .5s;
  transition-property: opacity,padding,height;
}
.cid-tm1uqcJeyE .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-tm1uqcJeyE .collapsed .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: .3em;
  vertical-align: middle;
  content: "";
  border-top: .30em solid;
  border-right: .30em solid transparent;
  border-left: .30em solid transparent;
}
@media (max-width: 991px) {
  .cid-tm1uqcJeyE .navbar-expand {
    flex-direction: column;
  }
  .cid-tm1uqcJeyE img {
    height: 3.8rem !important;
  }
  .cid-tm1uqcJeyE .btn {
    display: flex;
  }
  .cid-tm1uqcJeyE button.navbar-toggler {
    display: block;
  }
  .cid-tm1uqcJeyE .navbar-brand {
    margin-left: 1rem !important;
  }
  .cid-tm1uqcJeyE .navbar-toggleable-sm {
    flex-direction: column;
    -webkit-flex-direction: column;
  }
  .cid-tm1uqcJeyE .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing,
  .cid-tm1uqcJeyE .navbar-collapse.show {
    display: block !important;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-nav .nav-item:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-nav .nav-item:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-tm1uqcJeyE .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-tm1uqcJeyE .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    transition-duration: .5s;
    transition-property: opacity,padding,height;
  }
  .cid-tm1uqcJeyE .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-tm1uqcJeyE .dropdown .dropdown-toggle[data-toggle="dropdown-submenu"]::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: .3em;
    vertical-align: middle;
    content: "";
    border-top: .30em solid;
    border-right: .30em solid transparent;
    border-left: .30em solid transparent;
  }
}
@media (min-width: 767px) {
  .cid-tm1uqcJeyE .menu-logo {
    flex-shrink: 0;
  }
}
.cid-tKZUK81mGf {
  padding-top: 105px;
  padding-bottom: 90px;
  background-color: #82fa62;
}
.cid-tKZUK81mGf .title {
  margin-bottom: 2rem;
}
.cid-tKZUK81mGf .mbr-section-subtitle {
  color: #767676;
}
.cid-tKZUK81mGf a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-tKZUK81mGf a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-tKZUK81mGf .multi-horizontal {
  flex-grow: 1;
  -webkit-flex-grow: 1;
  max-width: 100%;
}
.cid-tKZUK81mGf .input-group-btn {
  display: block;
  text-align: center;
}
.cid-tL012JaieE {
  padding-top: 30px;
  padding-bottom: 0px;
  background-color: #056604;
}
@media (max-width: 767px) {
  .cid-tL012JaieE .content {
    text-align: center;
  }
  .cid-tL012JaieE .content > div:not(:last-child) {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-tL012JaieE .media-wrap {
    margin-bottom: 1rem;
  }
}
.cid-tL012JaieE .media-wrap .mbr-iconfont-logo {
  font-size: 7.5rem;
  color: #f36;
}
.cid-tL012JaieE .media-wrap img {
  height: 6rem;
}
@media (max-width: 767px) {
  .cid-tL012JaieE .footer-lower .copyright {
    margin-bottom: 1rem;
    text-align: center;
  }
}
.cid-tL012JaieE .footer-lower hr {
  margin: 1rem 0;
  border-color: #fff;
  opacity: .05;
}
.cid-tL012JaieE .footer-lower .social-list {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  -webkit-justify-content: flex-end;
}
.cid-tL012JaieE .footer-lower .social-list .mbr-iconfont-social {
  font-size: 1.3rem;
  color: #fff;
}
.cid-tL012JaieE .footer-lower .social-list .soc-item {
  margin: 0 .5rem;
}
.cid-tL012JaieE .footer-lower .social-list a {
  margin: 0;
  opacity: .5;
  -webkit-transition: .2s linear;
  transition: .2s linear;
}
.cid-tL012JaieE .footer-lower .social-list a:hover {
  opacity: 1;
}
@media (max-width: 767px) {
  .cid-tL012JaieE .footer-lower .social-list {
    justify-content: center;
    -webkit-justify-content: center;
  }
}
.cid-tL012JaieE P {
  color: #ffffff;
}
