.btn {
  border-width: 2px;
}
body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Jost', sans-serif;
  font-size: 4.6rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 5.75rem;
}
.display-2 {
  font-family: 'Jost', sans-serif;
  font-size: 2.8rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.5rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1.25rem;
}
.display-5 {
  font-family: 'Satisfy', handwriting;
  font-size: 1.6rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.4rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.75rem;
}
/* ---- 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: 992px) {
  .display-1 {
    font-size: 3.68rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 3.22rem;
    font-size: calc( 2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (2.26rem + (4.6 - 2.26) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 2.24rem;
    font-size: calc( 1.63rem + (2.8 - 1.63) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.63rem + (2.8 - 1.63) * ((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.28rem;
    font-size: calc( 1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.21rem + (1.6 - 1.21) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 1.12rem;
    font-size: calc( 1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.14rem + (1.4 - 1.14) * ((100vw - 20rem) / (48 - 20))));
  }
}
/* Buttons */
.btn {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-sm {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-md {
  padding: 0.6rem 1.2rem;
  border-radius: 4px;
}
.btn-lg {
  padding: 1rem 2.6rem;
  border-radius: 4px;
}
.bg-primary {
  background-color: #5b9143 !important;
}
.bg-success {
  background-color: #7ca950 !important;
}
.bg-info {
  background-color: #008cff !important;
}
.bg-warning {
  background-color: #e6c63b !important;
}
.bg-danger {
  background-color: #ce5316 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #5b9143 !important;
  border-color: #5b9143 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary:hover,
.btn-primary:focus,
.btn-primary.focus,
.btn-primary.active {
  color: #ffffff !important;
  background-color: #365628 !important;
  border-color: #365628 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #365628 !important;
  border-color: #365628 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff0026 !important;
  border-color: #ff0026 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary:hover,
.btn-secondary:focus,
.btn-secondary.focus,
.btn-secondary.active {
  color: #ffffff !important;
  background-color: #a80019 !important;
  border-color: #a80019 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #a80019 !important;
  border-color: #a80019 !important;
}
.btn-info,
.btn-info:active {
  background-color: #008cff !important;
  border-color: #008cff !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-info:hover,
.btn-info:focus,
.btn-info.focus,
.btn-info.active {
  color: #ffffff !important;
  background-color: #005ca8 !important;
  border-color: #005ca8 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #005ca8 !important;
  border-color: #005ca8 !important;
}
.btn-success,
.btn-success:active {
  background-color: #7ca950 !important;
  border-color: #7ca950 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-success:hover,
.btn-success:focus,
.btn-success.focus,
.btn-success.active {
  color: #ffffff !important;
  background-color: #516e34 !important;
  border-color: #516e34 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #516e34 !important;
  border-color: #516e34 !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning:hover,
.btn-warning:focus,
.btn-warning.focus,
.btn-warning.active {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #ffffff !important;
  background-color: #b39617 !important;
  border-color: #b39617 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ce5316 !important;
  border-color: #ce5316 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #80330e !important;
  border-color: #80330e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #80330e !important;
  border-color: #80330e !important;
}
.btn-white,
.btn-white:active {
  background-color: #fafafa !important;
  border-color: #fafafa !important;
  color: #7a7a7a !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-white:hover,
.btn-white:focus,
.btn-white.focus,
.btn-white.active {
  color: #4f4f4f !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-white.disabled,
.btn-white:disabled {
  color: #7a7a7a !important;
  background-color: #cfcfcf !important;
  border-color: #cfcfcf !important;
}
.btn-black,
.btn-black:active {
  background-color: #232323 !important;
  border-color: #232323 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-black:hover,
.btn-black:focus,
.btn-black.focus,
.btn-black.active {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-black.disabled,
.btn-black:disabled {
  color: #ffffff !important;
  background-color: #000000 !important;
  border-color: #000000 !important;
}
.btn-primary-outline,
.btn-primary-outline:active {
  background-color: transparent !important;
  border-color: #5b9143;
  color: #5b9143;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #365628 !important;
  background-color: transparent!important;
  border-color: #365628 !important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #5b9143 !important;
  border-color: #5b9143 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: #ff0026;
  color: #ff0026;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #a80019 !important;
  background-color: transparent!important;
  border-color: #a80019 !important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff0026 !important;
  border-color: #ff0026 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: #008cff;
  color: #008cff;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #005ca8 !important;
  background-color: transparent!important;
  border-color: #005ca8 !important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #008cff !important;
  border-color: #008cff !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: #7ca950;
  color: #7ca950;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #516e34 !important;
  background-color: transparent!important;
  border-color: #516e34 !important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #7ca950 !important;
  border-color: #7ca950 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: #e6c63b;
  color: #e6c63b;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #b39617 !important;
  background-color: transparent!important;
  border-color: #b39617 !important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #ffffff !important;
  background-color: #e6c63b !important;
  border-color: #e6c63b !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: #ce5316;
  color: #ce5316;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #80330e !important;
  background-color: transparent!important;
  border-color: #80330e !important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ce5316 !important;
  border-color: #ce5316 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: #232323;
  color: #232323;
}
.btn-black-outline:hover,
.btn-black-outline:focus,
.btn-black-outline.focus,
.btn-black-outline.active {
  color: #000000 !important;
  background-color: transparent!important;
  border-color: #000000 !important;
  box-shadow: none!important;
}
.btn-black-outline.disabled,
.btn-black-outline:disabled {
  color: #ffffff !important;
  background-color: #232323 !important;
  border-color: #232323 !important;
}
.btn-white-outline,
.btn-white-outline:active {
  background-color: transparent !important;
  border-color: #fafafa;
  color: #fafafa;
}
.btn-white-outline:hover,
.btn-white-outline:focus,
.btn-white-outline.focus,
.btn-white-outline.active {
  color: #cfcfcf !important;
  background-color: transparent!important;
  border-color: #cfcfcf !important;
  box-shadow: none!important;
}
.btn-white-outline.disabled,
.btn-white-outline:disabled {
  color: #7a7a7a !important;
  background-color: #fafafa !important;
  border-color: #fafafa !important;
}
.text-primary {
  color: #5b9143 !important;
}
.text-secondary {
  color: #ff0026 !important;
}
.text-success {
  color: #7ca950 !important;
}
.text-info {
  color: #008cff !important;
}
.text-warning {
  color: #e6c63b !important;
}
.text-danger {
  color: #ce5316 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #2f4b23 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #990017 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #49642f !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #005499 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #a68b15 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #722e0c !important;
}
a.text-white:hover,
a.text-white:focus,
a.text-white.active {
  color: #c7c7c7 !important;
}
a.text-black:hover,
a.text-black:focus,
a.text-black.active {
  color: #000000 !important;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption) {
  transition: 0.2s;
  position: relative;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0 1.2em;
}
.nav-tabs .nav-link.active {
  color: #5b9143;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #008cff;
}
.alert-warning {
  background-color: #e6c63b;
}
.alert-danger {
  background-color: #ce5316;
}
.mbr-section-btn a.btn:not(.btn-form) {
  border-radius: 100px;
}
.mbr-gallery-filter li a {
  border-radius: 100px !important;
}
.mbr-gallery-filter li.active .btn {
  background-color: #5b9143;
  border-color: #5b9143;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
.nav-tabs .nav-link {
  border-radius: 100px !important;
}
a,
a:hover {
  color: #5b9143;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #9ec98a;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #bcd4a4;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #cce8ff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #fdfbf0;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #f7cdb9;
}
/* Scroll to top button*/
#scrollToTop a {
  border-radius: 100px;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1.25rem;
}
.form-control:hover,
.form-control:focus {
  box-shadow: rgba(0, 0, 0, 0.07) 0px 1px 1px 0px, rgba(0, 0, 0, 0.07) 0px 1px 3px 0px, rgba(0, 0, 0, 0.03) 0px 0px 0px 1px;
  border-color: #5b9143 !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1.25rem;
}
blockquote {
  border-color: #5b9143;
}
/* Forms */
.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);
}
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #5b9143;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #5b9143;
}
.jq-selectbox .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:after,
.jq-number__spin.plus:after {
  transition: 0.4s;
  border-top-color: #353535;
  border-bottom-color: #353535;
}
.jq-selectbox:hover .jq-selectbox__trigger-arrow,
.jq-number__spin.minus:hover:after,
.jq-number__spin.plus:hover:after {
  border-top-color: #5b9143;
  border-bottom-color: #5b9143;
}
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_default,
.xdsoft_datetimepicker .xdsoft_calendar td.xdsoft_current,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div.xdsoft_current {
  color: #ffffff !important;
  background-color: #5b9143 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #ff0026 !important;
  box-shadow: none !important;
}
.lazy-bg {
  background-image: none !important;
}
.lazy-placeholder:not(section),
.lazy-none {
  display: block;
  position: relative;
  padding-bottom: 56.25%;
  width: 100%;
  height: auto;
}
iframe.lazy-placeholder,
.lazy-placeholder:after {
  content: '';
  position: absolute;
  width: 200px;
  height: 200px;
  background: transparent no-repeat center;
  background-size: contain;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='32' height='32' viewBox='0 0 64 64' xmlns='http://www.w3.org/2000/svg' stroke='%235b9143' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-svZGrtc3nS {
  z-index: 1000;
  width: 100%;
}
.cid-svZGrtc3nS nav.navbar {
  position: fixed;
}
.cid-svZGrtc3nS .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-svZGrtc3nS .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-svZGrtc3nS .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-svZGrtc3nS .dropdown-item:hover,
.cid-svZGrtc3nS .dropdown-item:focus {
  background: #5b9143 !important;
  color: white !important;
}
.cid-svZGrtc3nS .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-svZGrtc3nS .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-svZGrtc3nS .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-svZGrtc3nS .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-svZGrtc3nS .nav-link {
  position: relative;
}
.cid-svZGrtc3nS .container {
  display: flex;
  margin: auto;
}
.cid-svZGrtc3nS .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-svZGrtc3nS .dropdown-menu,
.cid-svZGrtc3nS .navbar.opened {
  background: #ffffff !important;
}
.cid-svZGrtc3nS .nav-item:focus,
.cid-svZGrtc3nS .nav-link:focus {
  outline: none;
}
.cid-svZGrtc3nS .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-svZGrtc3nS .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-svZGrtc3nS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-svZGrtc3nS .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-svZGrtc3nS .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-svZGrtc3nS .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-svZGrtc3nS .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-svZGrtc3nS .navbar.opened {
  transition: all 0.3s;
}
.cid-svZGrtc3nS .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-svZGrtc3nS .navbar .navbar-logo img {
  width: auto;
}
.cid-svZGrtc3nS .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-svZGrtc3nS .navbar.collapsed {
  justify-content: center;
}
.cid-svZGrtc3nS .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-svZGrtc3nS .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-svZGrtc3nS .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-svZGrtc3nS .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-svZGrtc3nS .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-svZGrtc3nS .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-svZGrtc3nS .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-svZGrtc3nS .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-svZGrtc3nS .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-svZGrtc3nS .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-svZGrtc3nS .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-svZGrtc3nS .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-svZGrtc3nS .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-svZGrtc3nS .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-svZGrtc3nS .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-svZGrtc3nS .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-svZGrtc3nS .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-svZGrtc3nS .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-svZGrtc3nS .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-svZGrtc3nS .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-svZGrtc3nS .navbar.navbar-short {
  min-height: 60px;
}
.cid-svZGrtc3nS .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-svZGrtc3nS .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-svZGrtc3nS .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-svZGrtc3nS .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-svZGrtc3nS .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-svZGrtc3nS .dropdown-item.active,
.cid-svZGrtc3nS .dropdown-item:active {
  background-color: transparent;
}
.cid-svZGrtc3nS .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-svZGrtc3nS .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-svZGrtc3nS .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-svZGrtc3nS .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-svZGrtc3nS .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-svZGrtc3nS .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-svZGrtc3nS ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-svZGrtc3nS .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-svZGrtc3nS button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-svZGrtc3nS button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c5e7a3;
}
.cid-svZGrtc3nS button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-svZGrtc3nS button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svZGrtc3nS button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-svZGrtc3nS button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-svZGrtc3nS nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svZGrtc3nS nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-svZGrtc3nS nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-svZGrtc3nS nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-svZGrtc3nS .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-svZGrtc3nS a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-svZGrtc3nS .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-svZGrtc3nS .navbar {
    height: 70px;
  }
  .cid-svZGrtc3nS .navbar.opened {
    height: auto;
  }
  .cid-svZGrtc3nS .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sNyQLDm1k8 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sNyQLDm1k8 .carousel {
  height: 800px;
}
.cid-sNyQLDm1k8 .carousel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-sNyQLDm1k8 .carousel-item,
.cid-sNyQLDm1k8 .carousel-inner {
  height: 100%;
}
.cid-sNyQLDm1k8 .carousel-caption {
  bottom: 40px;
}
.cid-sNyQLDm1k8 .mobi-mbri-arrow-next {
  margin-left: 5px;
}
.cid-sNyQLDm1k8 .mobi-mbri-arrow-prev {
  margin-right: 5px;
}
.cid-sNyQLDm1k8 .carousel-control:hover {
  background: #1b1b1b;
  color: #fff;
  opacity: 1;
}
.cid-sNyQLDm1k8 .item-wrapper {
  width: 100%;
}
@media (max-width: 767px) {
  .cid-sNyQLDm1k8 .container .carousel-control {
    margin-bottom: 0;
  }
  .cid-sNyQLDm1k8 .content-slider-wrap {
    width: 100% !important;
  }
}
.cid-sNyQLDm1k8 .container .carousel-indicators {
  margin-bottom: 3px;
}
.cid-sNyQLDm1k8 .carousel-control {
  top: 50%;
  width: 60px;
  height: 60px;
  margin-top: -1.5rem;
  font-size: 22px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  transition: all 0.3s;
}
.cid-sNyQLDm1k8 .carousel-control.carousel-control-prev {
  left: 0;
  margin-left: 2.5rem;
}
.cid-sNyQLDm1k8 .carousel-control.carousel-control-next {
  right: 0;
  margin-right: 2.5rem;
}
@media (max-width: 767px) {
  .cid-sNyQLDm1k8 .carousel-control {
    top: auto;
    bottom: 1rem;
  }
}
.cid-sNyQLDm1k8 .carousel-indicators {
  position: absolute;
  bottom: 0;
  margin-bottom: 1.5rem !important;
}
.cid-sNyQLDm1k8 .carousel-indicators li {
  max-width: 15px;
  height: 15px;
  width: 15px;
  max-height: 15px;
  margin: 3px;
  background-color: rgba(0, 0, 0, 0.5);
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 0.5;
  transition: all 0.3s;
}
.cid-sNyQLDm1k8 .carousel-indicators li.active,
.cid-sNyQLDm1k8 .carousel-indicators li:hover {
  opacity: 0.9;
}
.cid-sNyQLDm1k8 .carousel-indicators li::after,
.cid-sNyQLDm1k8 .carousel-indicators li::before {
  content: none;
}
.cid-sNyQLDm1k8 .carousel-indicators.ie-fix {
  left: 50%;
  display: block;
  width: 60%;
  margin-left: -30%;
  text-align: center;
}
@media (max-width: 768px) {
  .cid-sNyQLDm1k8 .carousel-indicators {
    display: none !important;
  }
}
.cid-sNyQLDm1k8 H5 {
  color: #ffffff;
}
.cid-tk4Qgd4Pt5 {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tk4Qgd4Pt5 .mbr-section-subtitle {
  color: #353535;
}
.cid-tli9xvGKFD {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tli9xvGKFD .mbr-section-title {
  color: #7ca950;
}
.cid-tkJF2eXEQQ {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tkJF2eXEQQ .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tkJF2eXEQQ img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tkJF2eXEQQ .mbr-form {
  max-width: 450px;
}
.cid-tkJF2eXEQQ textarea {
  min-height: 150px;
}
.cid-tkJF2eXEQQ .mbr-text {
  color: #333333;
}
.cid-tkJF2eXEQQ .mbr-form .btn {
  width: 100%;
  justify-content: space-between;
}
.cid-tkJF2eXEQQ .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
  order: 2;
}
.cid-tkJF2eXEQQ H2 {
  color: #5b9143;
}
.cid-sDtUMmLXBj {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sDtUMmLXBj .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sDtUMmLXBj .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 0px) {
  .cid-sDtUMmLXBj .row {
    text-align: center;
  }
  .cid-sDtUMmLXBj .row > div {
    margin: auto;
  }
  .cid-sDtUMmLXBj .social-row {
    justify-content: center;
  }
}
.cid-sDtUMmLXBj .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sDtUMmLXBj .list {
  list-style: none;
  padding-left: 0;
  color: #5b9143;
}
@media (max-width: 991px) {
  .cid-sDtUMmLXBj .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sDtUMmLXBj .list {
    margin-bottom: 0rem;
  }
}
.cid-sDtUMmLXBj .mbr-text {
  color: #333333;
}
.cid-sDtUMmLXBj .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sDtUMmLXBj .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sDtUMmLXBj div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sDtUMmLXBj H5 {
  color: #7ca950;
}
.cid-sDtUMmLXBj .copyright {
  color: #707070;
}
.cid-sDtUMmLXBj .mbr-section-subtitle {
  color: #7ca950;
}
.cid-sO34AbqKPB {
  z-index: 1000;
  width: 100%;
}
.cid-sO34AbqKPB nav.navbar {
  position: fixed;
}
.cid-sO34AbqKPB .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sO34AbqKPB .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-sO34AbqKPB .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-sO34AbqKPB .dropdown-item:hover,
.cid-sO34AbqKPB .dropdown-item:focus {
  background: #5b9143 !important;
  color: white !important;
}
.cid-sO34AbqKPB .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-sO34AbqKPB .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-sO34AbqKPB .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-sO34AbqKPB .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-sO34AbqKPB .nav-link {
  position: relative;
}
.cid-sO34AbqKPB .container {
  display: flex;
  margin: auto;
}
.cid-sO34AbqKPB .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-sO34AbqKPB .dropdown-menu,
.cid-sO34AbqKPB .navbar.opened {
  background: #ffffff !important;
}
.cid-sO34AbqKPB .nav-item:focus,
.cid-sO34AbqKPB .nav-link:focus {
  outline: none;
}
.cid-sO34AbqKPB .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-sO34AbqKPB .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-sO34AbqKPB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-sO34AbqKPB .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-sO34AbqKPB .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-sO34AbqKPB .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-sO34AbqKPB .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-sO34AbqKPB .navbar.opened {
  transition: all 0.3s;
}
.cid-sO34AbqKPB .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-sO34AbqKPB .navbar .navbar-logo img {
  width: auto;
}
.cid-sO34AbqKPB .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-sO34AbqKPB .navbar.collapsed {
  justify-content: center;
}
.cid-sO34AbqKPB .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-sO34AbqKPB .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-sO34AbqKPB .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-sO34AbqKPB .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-sO34AbqKPB .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-sO34AbqKPB .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-sO34AbqKPB .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-sO34AbqKPB .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-sO34AbqKPB .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-sO34AbqKPB .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-sO34AbqKPB .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-sO34AbqKPB .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-sO34AbqKPB .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-sO34AbqKPB .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-sO34AbqKPB .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-sO34AbqKPB .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-sO34AbqKPB .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-sO34AbqKPB .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-sO34AbqKPB .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-sO34AbqKPB .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-sO34AbqKPB .navbar.navbar-short {
  min-height: 60px;
}
.cid-sO34AbqKPB .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-sO34AbqKPB .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-sO34AbqKPB .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-sO34AbqKPB .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-sO34AbqKPB .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-sO34AbqKPB .dropdown-item.active,
.cid-sO34AbqKPB .dropdown-item:active {
  background-color: transparent;
}
.cid-sO34AbqKPB .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-sO34AbqKPB .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-sO34AbqKPB .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-sO34AbqKPB .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-sO34AbqKPB .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-sO34AbqKPB .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-sO34AbqKPB ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-sO34AbqKPB .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-sO34AbqKPB button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-sO34AbqKPB button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c5e7a3;
}
.cid-sO34AbqKPB button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-sO34AbqKPB button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sO34AbqKPB button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-sO34AbqKPB button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-sO34AbqKPB nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sO34AbqKPB nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-sO34AbqKPB nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-sO34AbqKPB nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-sO34AbqKPB .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-sO34AbqKPB a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sO34AbqKPB .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-sO34AbqKPB .navbar {
    height: 70px;
  }
  .cid-sO34AbqKPB .navbar.opened {
    height: auto;
  }
  .cid-sO34AbqKPB .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-sO34Acaon1 {
  padding-top: 6rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/guacamole-dip-2000x1333.jpeg");
}
.cid-sO34Acaon1 .mbr-section-title {
  color: #ffffff;
}
.cid-sO34Acaon1 .mbr-text,
.cid-sO34Acaon1 .mbr-section-btn {
  color: #ffe885;
}
.cid-sO34AcBCoj {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-image: url("../../../assets/images/fondos-web-mesa-de-trabajo-1-copia-2000x626.png");
}
@media (max-width: 991px) {
  .cid-sO34AcBCoj .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-sO34AcBCoj img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-sO34AcBCoj .text-wrapper {
    padding: 2rem;
  }
}
.cid-sO34AcBCoj .mbr-section-title {
  color: #7ca950;
}
.cid-sO34AcBCoj .mbr-text {
  color: #707070;
}
.cid-sO34AcBCoj .mbr-description {
  color: #353535;
}
.cid-tjYy2aORIU {
  padding-top: 0rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-tjYy2aORIU .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tjYy2aORIU .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-tjYy2aORIU .mbr-section-title {
  color: #5b9143;
}
.cid-tjYy2aORIU .mbr-text,
.cid-tjYy2aORIU .mbr-section-btn {
  color: #707070;
}
.cid-tkDxLsdzdV {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tkDxLsdzdV blockquote {
  border-color: #5b9143;
  border-radius: 4px;
  background-color: #ffffff;
}
.cid-tkDxLsdzdV .mbr-section-title {
  color: #5b9143;
  text-align: left;
}
.cid-tkDxLsdzdV .mbr-text {
  text-align: left;
}
.cid-tjYy2VcQBr {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tjYy2VcQBr .image-wrap img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-tjYy2VcQBr .image-wrap img {
    display: block;
    margin: auto;
    width: 70%;
  }
}
.cid-tjYy2VcQBr .mbr-section-title {
  color: #5b9143;
}
.cid-tjYy2VcQBr .mbr-text,
.cid-tjYy2VcQBr .mbr-section-btn {
  color: #707070;
}
.cid-tkWla3TpbV {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tkWla3TpbV .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tkWla3TpbV img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tkWla3TpbV .mbr-form {
  max-width: 450px;
}
.cid-tkWla3TpbV textarea {
  min-height: 150px;
}
.cid-tkWla3TpbV .mbr-text {
  color: #333333;
}
.cid-tkWla3TpbV .mbr-form .btn {
  width: 100%;
  justify-content: space-between;
}
.cid-tkWla3TpbV .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
  order: 2;
}
.cid-tkWla3TpbV H2 {
  color: #5b9143;
}
.cid-sO34AebmNq {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sO34AebmNq .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-sO34AebmNq .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 0px) {
  .cid-sO34AebmNq .row {
    text-align: center;
  }
  .cid-sO34AebmNq .row > div {
    margin: auto;
  }
  .cid-sO34AebmNq .social-row {
    justify-content: center;
  }
}
.cid-sO34AebmNq .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-sO34AebmNq .list {
  list-style: none;
  padding-left: 0;
  color: #5b9143;
}
@media (max-width: 991px) {
  .cid-sO34AebmNq .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-sO34AebmNq .list {
    margin-bottom: 0rem;
  }
}
.cid-sO34AebmNq .mbr-text {
  color: #333333;
}
.cid-sO34AebmNq .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-sO34AebmNq .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-sO34AebmNq div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-sO34AebmNq H5 {
  color: #7ca950;
}
.cid-sO34AebmNq .copyright {
  color: #707070;
}
.cid-sO34AebmNq .mbr-section-subtitle {
  color: #7ca950;
}
.cid-tkm441fnKf {
  z-index: 1000;
  width: 100%;
}
.cid-tkm441fnKf nav.navbar {
  position: fixed;
}
.cid-tkm441fnKf .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkm441fnKf .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tkm441fnKf .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkm441fnKf .dropdown-item:hover,
.cid-tkm441fnKf .dropdown-item:focus {
  background: #5b9143 !important;
  color: white !important;
}
.cid-tkm441fnKf .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tkm441fnKf .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tkm441fnKf .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tkm441fnKf .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkm441fnKf .nav-link {
  position: relative;
}
.cid-tkm441fnKf .container {
  display: flex;
  margin: auto;
}
.cid-tkm441fnKf .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tkm441fnKf .dropdown-menu,
.cid-tkm441fnKf .navbar.opened {
  background: #ffffff !important;
}
.cid-tkm441fnKf .nav-item:focus,
.cid-tkm441fnKf .nav-link:focus {
  outline: none;
}
.cid-tkm441fnKf .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkm441fnKf .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkm441fnKf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tkm441fnKf .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkm441fnKf .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkm441fnKf .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkm441fnKf .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tkm441fnKf .navbar.opened {
  transition: all 0.3s;
}
.cid-tkm441fnKf .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tkm441fnKf .navbar .navbar-logo img {
  width: auto;
}
.cid-tkm441fnKf .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkm441fnKf .navbar.collapsed {
  justify-content: center;
}
.cid-tkm441fnKf .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkm441fnKf .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkm441fnKf .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tkm441fnKf .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkm441fnKf .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkm441fnKf .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tkm441fnKf .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkm441fnKf .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tkm441fnKf .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tkm441fnKf .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkm441fnKf .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkm441fnKf .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkm441fnKf .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkm441fnKf .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tkm441fnKf .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tkm441fnKf .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkm441fnKf .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkm441fnKf .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkm441fnKf .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkm441fnKf .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tkm441fnKf .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkm441fnKf .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tkm441fnKf .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tkm441fnKf .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tkm441fnKf .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkm441fnKf .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkm441fnKf .dropdown-item.active,
.cid-tkm441fnKf .dropdown-item:active {
  background-color: transparent;
}
.cid-tkm441fnKf .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkm441fnKf .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkm441fnKf .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkm441fnKf .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tkm441fnKf .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkm441fnKf .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkm441fnKf ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkm441fnKf .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkm441fnKf button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tkm441fnKf button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c5e7a3;
}
.cid-tkm441fnKf button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tkm441fnKf button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkm441fnKf button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkm441fnKf button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tkm441fnKf nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkm441fnKf nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tkm441fnKf nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tkm441fnKf nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkm441fnKf .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tkm441fnKf a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkm441fnKf .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tkm441fnKf .navbar {
    height: 70px;
  }
  .cid-tkm441fnKf .navbar.opened {
    height: auto;
  }
  .cid-tkm441fnKf .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkm442fVLH {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/front-view-fruit-juice-bottles-apple-lemon-feijoas-pipettes-wood-board-lemonades-dark-surface-2000x1335.jpeg");
}
.cid-tkm442fVLH .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tkm442fVLH .mbr-text,
.cid-tkm442fVLH .mbr-section-btn {
  color: #ffe885;
}
.cid-tkm442fVLH .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tkm442PIUf {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tkm442PIUf img,
.cid-tkm442PIUf .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tkm442PIUf .item:focus,
.cid-tkm442PIUf span:focus {
  outline: none;
}
.cid-tkm442PIUf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tkm442PIUf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tkm442PIUf .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tkm442PIUf .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tkm442PIUf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tkm442PIUf .mbr-section-title {
  color: #353535;
}
.cid-tkm442PIUf .item-title {
  color: #7ca950;
  text-align: center;
}
.cid-tkm442PIUf .item-subtitle {
  text-align: center;
}
.cid-tkm442PIUf .mbr-text,
.cid-tkm442PIUf .mbr-section-btn {
  color: #707070;
  text-align: center;
}
.cid-tkWk5nDVW6 {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tkWk5nDVW6 .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tkWk5nDVW6 img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tkWk5nDVW6 .mbr-form {
  max-width: 450px;
}
.cid-tkWk5nDVW6 textarea {
  min-height: 150px;
}
.cid-tkWk5nDVW6 .mbr-text {
  color: #333333;
}
.cid-tkWk5nDVW6 .mbr-form .btn {
  width: 100%;
  justify-content: space-between;
}
.cid-tkWk5nDVW6 .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
  order: 2;
}
.cid-tkWk5nDVW6 H2 {
  color: #5b9143;
}
.cid-tkm444R5vG {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tkm444R5vG .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tkm444R5vG .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 0px) {
  .cid-tkm444R5vG .row {
    text-align: center;
  }
  .cid-tkm444R5vG .row > div {
    margin: auto;
  }
  .cid-tkm444R5vG .social-row {
    justify-content: center;
  }
}
.cid-tkm444R5vG .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tkm444R5vG .list {
  list-style: none;
  padding-left: 0;
  color: #5b9143;
}
@media (max-width: 991px) {
  .cid-tkm444R5vG .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tkm444R5vG .list {
    margin-bottom: 0rem;
  }
}
.cid-tkm444R5vG .mbr-text {
  color: #333333;
}
.cid-tkm444R5vG .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tkm444R5vG .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tkm444R5vG div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tkm444R5vG H5 {
  color: #7ca950;
}
.cid-tkm444R5vG .copyright {
  color: #707070;
}
.cid-tkm444R5vG .mbr-section-subtitle {
  color: #7ca950;
}
.cid-tkm9X4mXpk {
  z-index: 1000;
  width: 100%;
}
.cid-tkm9X4mXpk nav.navbar {
  position: fixed;
}
.cid-tkm9X4mXpk .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkm9X4mXpk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tkm9X4mXpk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkm9X4mXpk .dropdown-item:hover,
.cid-tkm9X4mXpk .dropdown-item:focus {
  background: #5b9143 !important;
  color: white !important;
}
.cid-tkm9X4mXpk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tkm9X4mXpk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tkm9X4mXpk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tkm9X4mXpk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkm9X4mXpk .nav-link {
  position: relative;
}
.cid-tkm9X4mXpk .container {
  display: flex;
  margin: auto;
}
.cid-tkm9X4mXpk .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tkm9X4mXpk .dropdown-menu,
.cid-tkm9X4mXpk .navbar.opened {
  background: #ffffff !important;
}
.cid-tkm9X4mXpk .nav-item:focus,
.cid-tkm9X4mXpk .nav-link:focus {
  outline: none;
}
.cid-tkm9X4mXpk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkm9X4mXpk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkm9X4mXpk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tkm9X4mXpk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkm9X4mXpk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkm9X4mXpk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkm9X4mXpk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tkm9X4mXpk .navbar.opened {
  transition: all 0.3s;
}
.cid-tkm9X4mXpk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tkm9X4mXpk .navbar .navbar-logo img {
  width: auto;
}
.cid-tkm9X4mXpk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkm9X4mXpk .navbar.collapsed {
  justify-content: center;
}
.cid-tkm9X4mXpk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkm9X4mXpk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkm9X4mXpk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tkm9X4mXpk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkm9X4mXpk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkm9X4mXpk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tkm9X4mXpk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkm9X4mXpk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tkm9X4mXpk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tkm9X4mXpk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkm9X4mXpk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkm9X4mXpk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkm9X4mXpk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkm9X4mXpk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tkm9X4mXpk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tkm9X4mXpk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkm9X4mXpk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkm9X4mXpk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkm9X4mXpk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkm9X4mXpk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tkm9X4mXpk .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkm9X4mXpk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tkm9X4mXpk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tkm9X4mXpk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tkm9X4mXpk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkm9X4mXpk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkm9X4mXpk .dropdown-item.active,
.cid-tkm9X4mXpk .dropdown-item:active {
  background-color: transparent;
}
.cid-tkm9X4mXpk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkm9X4mXpk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkm9X4mXpk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkm9X4mXpk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tkm9X4mXpk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkm9X4mXpk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkm9X4mXpk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkm9X4mXpk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkm9X4mXpk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tkm9X4mXpk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c5e7a3;
}
.cid-tkm9X4mXpk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tkm9X4mXpk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkm9X4mXpk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkm9X4mXpk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tkm9X4mXpk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkm9X4mXpk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tkm9X4mXpk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tkm9X4mXpk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkm9X4mXpk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tkm9X4mXpk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkm9X4mXpk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tkm9X4mXpk .navbar {
    height: 70px;
  }
  .cid-tkm9X4mXpk .navbar.opened {
    height: auto;
  }
  .cid-tkm9X4mXpk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkm9X57STO {
  padding-top: 6rem;
  padding-bottom: 9rem;
  background-image: url("../../../assets/images/mbr-1-1920x1281.jpg");
}
.cid-tkm9X57STO .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tkm9X57STO .mbr-text,
.cid-tkm9X57STO .mbr-section-btn {
  color: #ffe885;
}
.cid-tkm9X57STO .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tkm9X5Nej5 {
  padding-top: 3rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tkm9X5Nej5 img,
.cid-tkm9X5Nej5 .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tkm9X5Nej5 .item:focus,
.cid-tkm9X5Nej5 span:focus {
  outline: none;
}
.cid-tkm9X5Nej5 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tkm9X5Nej5 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tkm9X5Nej5 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tkm9X5Nej5 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tkm9X5Nej5 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tkm9X5Nej5 .mbr-section-title {
  color: #353535;
}
.cid-tkm9X5Nej5 .item-title {
  color: #7ca950;
  text-align: center;
}
.cid-tkm9X5Nej5 .item-subtitle {
  text-align: center;
}
.cid-tkm9X5Nej5 .mbr-text,
.cid-tkm9X5Nej5 .mbr-section-btn {
  color: #707070;
  text-align: center;
}
.cid-tkWfrNRaZG {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tkWfrNRaZG .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tkWfrNRaZG img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tkWfrNRaZG .mbr-form {
  max-width: 450px;
}
.cid-tkWfrNRaZG textarea {
  min-height: 150px;
}
.cid-tkWfrNRaZG .mbr-text {
  color: #333333;
}
.cid-tkWfrNRaZG .mbr-form .btn {
  width: 100%;
  justify-content: space-between;
}
.cid-tkWfrNRaZG .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
  order: 2;
}
.cid-tkWfrNRaZG H2 {
  color: #5b9143;
}
.cid-tkm9X73AJ2 {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tkm9X73AJ2 .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tkm9X73AJ2 .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 0px) {
  .cid-tkm9X73AJ2 .row {
    text-align: center;
  }
  .cid-tkm9X73AJ2 .row > div {
    margin: auto;
  }
  .cid-tkm9X73AJ2 .social-row {
    justify-content: center;
  }
}
.cid-tkm9X73AJ2 .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tkm9X73AJ2 .list {
  list-style: none;
  padding-left: 0;
  color: #5b9143;
}
@media (max-width: 991px) {
  .cid-tkm9X73AJ2 .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tkm9X73AJ2 .list {
    margin-bottom: 0rem;
  }
}
.cid-tkm9X73AJ2 .mbr-text {
  color: #333333;
}
.cid-tkm9X73AJ2 .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tkm9X73AJ2 .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tkm9X73AJ2 div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tkm9X73AJ2 H5 {
  color: #7ca950;
}
.cid-tkm9X73AJ2 .copyright {
  color: #707070;
}
.cid-tkm9X73AJ2 .mbr-section-subtitle {
  color: #7ca950;
}
.cid-tkmeJ0Glyk {
  z-index: 1000;
  width: 100%;
}
.cid-tkmeJ0Glyk nav.navbar {
  position: fixed;
}
.cid-tkmeJ0Glyk .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkmeJ0Glyk .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tkmeJ0Glyk .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkmeJ0Glyk .dropdown-item:hover,
.cid-tkmeJ0Glyk .dropdown-item:focus {
  background: #5b9143 !important;
  color: white !important;
}
.cid-tkmeJ0Glyk .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tkmeJ0Glyk .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tkmeJ0Glyk .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tkmeJ0Glyk .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkmeJ0Glyk .nav-link {
  position: relative;
}
.cid-tkmeJ0Glyk .container {
  display: flex;
  margin: auto;
}
.cid-tkmeJ0Glyk .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tkmeJ0Glyk .dropdown-menu,
.cid-tkmeJ0Glyk .navbar.opened {
  background: #ffffff !important;
}
.cid-tkmeJ0Glyk .nav-item:focus,
.cid-tkmeJ0Glyk .nav-link:focus {
  outline: none;
}
.cid-tkmeJ0Glyk .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkmeJ0Glyk .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkmeJ0Glyk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tkmeJ0Glyk .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkmeJ0Glyk .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkmeJ0Glyk .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkmeJ0Glyk .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tkmeJ0Glyk .navbar.opened {
  transition: all 0.3s;
}
.cid-tkmeJ0Glyk .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tkmeJ0Glyk .navbar .navbar-logo img {
  width: auto;
}
.cid-tkmeJ0Glyk .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkmeJ0Glyk .navbar.collapsed {
  justify-content: center;
}
.cid-tkmeJ0Glyk .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkmeJ0Glyk .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkmeJ0Glyk .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tkmeJ0Glyk .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkmeJ0Glyk .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkmeJ0Glyk .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tkmeJ0Glyk .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkmeJ0Glyk .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tkmeJ0Glyk .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tkmeJ0Glyk .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkmeJ0Glyk .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkmeJ0Glyk .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkmeJ0Glyk .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkmeJ0Glyk .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tkmeJ0Glyk .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tkmeJ0Glyk .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkmeJ0Glyk .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkmeJ0Glyk .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkmeJ0Glyk .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkmeJ0Glyk .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tkmeJ0Glyk .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkmeJ0Glyk .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tkmeJ0Glyk .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tkmeJ0Glyk .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tkmeJ0Glyk .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkmeJ0Glyk .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkmeJ0Glyk .dropdown-item.active,
.cid-tkmeJ0Glyk .dropdown-item:active {
  background-color: transparent;
}
.cid-tkmeJ0Glyk .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkmeJ0Glyk .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkmeJ0Glyk .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkmeJ0Glyk .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tkmeJ0Glyk .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkmeJ0Glyk .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkmeJ0Glyk ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkmeJ0Glyk .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkmeJ0Glyk button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tkmeJ0Glyk button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c5e7a3;
}
.cid-tkmeJ0Glyk button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tkmeJ0Glyk button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkmeJ0Glyk button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkmeJ0Glyk button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tkmeJ0Glyk nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkmeJ0Glyk nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tkmeJ0Glyk nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tkmeJ0Glyk nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkmeJ0Glyk .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tkmeJ0Glyk a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkmeJ0Glyk .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tkmeJ0Glyk .navbar {
    height: 70px;
  }
  .cid-tkmeJ0Glyk .navbar.opened {
    height: auto;
  }
  .cid-tkmeJ0Glyk .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkmeJ1CLpm {
  padding-top: 7rem;
  padding-bottom: 8rem;
  background-image: url("../../../assets/images/fd-productos-1-2000x1816.png");
}
.cid-tkmeJ1CLpm .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tkmeJ1CLpm .mbr-text,
.cid-tkmeJ1CLpm .mbr-section-btn {
  color: #ffe885;
}
.cid-tkmeJ1CLpm .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tkW9AdVfvt {
  padding-top: 5rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tkW9AdVfvt .mbr-section-title {
  color: #7ca950;
}
.cid-tkW9AdVfvt .mbr-section-subtitle {
  color: #353535;
}
.cid-tkW90zjdOa {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tkW90zjdOa .mbr-iconfont {
  display: block;
  font-size: 4rem;
  color: #5b9143;
  margin-bottom: 2rem;
}
.cid-tkW90zjdOa .card-wrapper {
  min-height: 220px;
  transition: all 0.3s;
  border-radius: 4px;
  padding: 1rem;
  background: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-tkmeJ2f0bx {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tkmeJ2f0bx img,
.cid-tkmeJ2f0bx .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tkmeJ2f0bx .item:focus,
.cid-tkmeJ2f0bx span:focus {
  outline: none;
}
.cid-tkmeJ2f0bx .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tkmeJ2f0bx .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tkmeJ2f0bx .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tkmeJ2f0bx .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tkmeJ2f0bx .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tkmeJ2f0bx .mbr-section-title {
  color: #353535;
}
.cid-tkmeJ2f0bx .item-title {
  color: #7ca950;
  text-align: center;
}
.cid-tkmeJ2f0bx .item-subtitle {
  text-align: center;
}
.cid-tkmeJ2f0bx .mbr-text,
.cid-tkmeJ2f0bx .mbr-section-btn {
  color: #707070;
  text-align: center;
}
.cid-tkWfwVHLtR {
  padding-top: 0px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tkWfwVHLtR .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tkWfwVHLtR img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tkWfwVHLtR .mbr-form {
  max-width: 450px;
}
.cid-tkWfwVHLtR textarea {
  min-height: 150px;
}
.cid-tkWfwVHLtR .mbr-text {
  color: #333333;
}
.cid-tkWfwVHLtR .mbr-form .btn {
  width: 100%;
  justify-content: space-between;
}
.cid-tkWfwVHLtR .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
  order: 2;
}
.cid-tkWfwVHLtR H2 {
  color: #5b9143;
}
.cid-tkmeJ3QPkN {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tkmeJ3QPkN .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tkmeJ3QPkN .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 0px) {
  .cid-tkmeJ3QPkN .row {
    text-align: center;
  }
  .cid-tkmeJ3QPkN .row > div {
    margin: auto;
  }
  .cid-tkmeJ3QPkN .social-row {
    justify-content: center;
  }
}
.cid-tkmeJ3QPkN .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tkmeJ3QPkN .list {
  list-style: none;
  padding-left: 0;
  color: #5b9143;
}
@media (max-width: 991px) {
  .cid-tkmeJ3QPkN .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tkmeJ3QPkN .list {
    margin-bottom: 0rem;
  }
}
.cid-tkmeJ3QPkN .mbr-text {
  color: #333333;
}
.cid-tkmeJ3QPkN .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tkmeJ3QPkN .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tkmeJ3QPkN div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tkmeJ3QPkN H5 {
  color: #7ca950;
}
.cid-tkmeJ3QPkN .copyright {
  color: #707070;
}
.cid-tkmeJ3QPkN .mbr-section-subtitle {
  color: #7ca950;
}
.cid-tkmghX1TxL {
  z-index: 1000;
  width: 100%;
}
.cid-tkmghX1TxL nav.navbar {
  position: fixed;
}
.cid-tkmghX1TxL .dropdown-item:before {
  font-family: Moririse2 !important;
  content: "\e966";
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1rem;
  top: 0.5rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  transform: scale(0, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkmghX1TxL .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tkmghX1TxL .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tkmghX1TxL .dropdown-item:hover,
.cid-tkmghX1TxL .dropdown-item:focus {
  background: #5b9143 !important;
  color: white !important;
}
.cid-tkmghX1TxL .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tkmghX1TxL .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tkmghX1TxL .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tkmghX1TxL .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tkmghX1TxL .nav-link {
  position: relative;
}
.cid-tkmghX1TxL .container {
  display: flex;
  margin: auto;
}
.cid-tkmghX1TxL .iconfont-wrapper {
  color: #ffffff !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tkmghX1TxL .dropdown-menu,
.cid-tkmghX1TxL .navbar.opened {
  background: #ffffff !important;
}
.cid-tkmghX1TxL .nav-item:focus,
.cid-tkmghX1TxL .nav-link:focus {
  outline: none;
}
.cid-tkmghX1TxL .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tkmghX1TxL .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tkmghX1TxL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tkmghX1TxL .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tkmghX1TxL .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tkmghX1TxL .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tkmghX1TxL .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  background: #ffffff;
}
.cid-tkmghX1TxL .navbar.opened {
  transition: all 0.3s;
}
.cid-tkmghX1TxL .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tkmghX1TxL .navbar .navbar-logo img {
  width: auto;
}
.cid-tkmghX1TxL .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tkmghX1TxL .navbar.collapsed {
  justify-content: center;
}
.cid-tkmghX1TxL .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tkmghX1TxL .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tkmghX1TxL .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 5.5rem);
  }
}
.cid-tkmghX1TxL .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tkmghX1TxL .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tkmghX1TxL .navbar.collapsed .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
  border-top: 0.35em solid;
  border-right: 0.35em solid transparent;
  border-left: 0.35em solid transparent;
  border-bottom: 0;
  top: 41%;
}
.cid-tkmghX1TxL .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tkmghX1TxL .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tkmghX1TxL .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tkmghX1TxL .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tkmghX1TxL .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tkmghX1TxL .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tkmghX1TxL .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tkmghX1TxL .navbar .dropdown-menu .dropdown-toggle[data-toggle="dropdown-submenu"]:after {
    margin-left: 0.5rem;
    margin-top: 0.2rem;
    border-top: 0.35em solid;
    border-right: 0.35em solid transparent;
    border-left: 0.35em solid transparent;
    border-bottom: 0;
    top: 40%;
  }
  .cid-tkmghX1TxL .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tkmghX1TxL .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tkmghX1TxL .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tkmghX1TxL .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tkmghX1TxL .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tkmghX1TxL .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tkmghX1TxL .navbar.navbar-short {
  min-height: 60px;
}
.cid-tkmghX1TxL .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tkmghX1TxL .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tkmghX1TxL .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tkmghX1TxL .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tkmghX1TxL .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-tkmghX1TxL .dropdown-item.active,
.cid-tkmghX1TxL .dropdown-item:active {
  background-color: transparent;
}
.cid-tkmghX1TxL .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tkmghX1TxL .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tkmghX1TxL .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tkmghX1TxL .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tkmghX1TxL .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tkmghX1TxL .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tkmghX1TxL ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tkmghX1TxL .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tkmghX1TxL button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tkmghX1TxL button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #c5e7a3;
}
.cid-tkmghX1TxL button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tkmghX1TxL button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkmghX1TxL button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tkmghX1TxL button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tkmghX1TxL nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkmghX1TxL nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tkmghX1TxL nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tkmghX1TxL nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tkmghX1TxL .navbar-dropdown {
  padding: 0 1rem;
  position: fixed;
}
.cid-tkmghX1TxL a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tkmghX1TxL .icons-menu {
  flex-wrap: nowrap;
  display: flex;
  justify-content: center;
  padding-left: 1rem;
  padding-right: 1rem;
  padding-top: 0.3rem;
  text-align: center;
}
@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  .cid-tkmghX1TxL .navbar {
    height: 70px;
  }
  .cid-tkmghX1TxL .navbar.opened {
    height: auto;
  }
  .cid-tkmghX1TxL .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tkmghY37GU {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/top-view-different-kind-chips-texture-horizontal-2000x1192.jpg");
}
.cid-tkmghY37GU .mbr-section-title {
  color: #ffffff;
  text-align: left;
}
.cid-tkmghY37GU .mbr-text,
.cid-tkmghY37GU .mbr-section-btn {
  color: #ffe885;
}
.cid-tkmghY37GU .mbr-section-subtitle {
  color: #ffffff;
}
.cid-tkmghYCKf8 {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-tkmghYCKf8 img,
.cid-tkmghYCKf8 .item-img {
  width: 100%;
  height: 100%;
  height: 200px;
  object-fit: cover;
}
.cid-tkmghYCKf8 .item:focus,
.cid-tkmghYCKf8 span:focus {
  outline: none;
}
.cid-tkmghYCKf8 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tkmghYCKf8 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #ffffff;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tkmghYCKf8 .item-wrapper .item-content {
    padding: 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tkmghYCKf8 .item-wrapper .item-content {
    padding: 1rem;
  }
}
.cid-tkmghYCKf8 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tkmghYCKf8 .mbr-section-title {
  color: #353535;
}
.cid-tkmghYCKf8 .item-title {
  color: #7ca950;
  text-align: center;
}
.cid-tkmghYCKf8 .item-subtitle {
  text-align: center;
}
.cid-tkmghYCKf8 .mbr-text,
.cid-tkmghYCKf8 .mbr-section-btn {
  color: #707070;
  text-align: center;
}
.cid-tkWfPM9YZD {
  padding-top: 15px;
  padding-bottom: 30px;
  background-color: #ffffff;
}
.cid-tkWfPM9YZD .mbr-overlay {
  background-color: #ffffff;
  opacity: 0.4;
}
.cid-tkWfPM9YZD img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cid-tkWfPM9YZD .mbr-form {
  max-width: 450px;
}
.cid-tkWfPM9YZD textarea {
  min-height: 150px;
}
.cid-tkWfPM9YZD .mbr-text {
  color: #333333;
}
.cid-tkWfPM9YZD .mbr-form .btn {
  width: 100%;
  justify-content: space-between;
}
.cid-tkWfPM9YZD .mbr-form .btn .mbr-iconfont {
  font-size: 1.5rem;
  order: 2;
}
.cid-tkWfPM9YZD H2 {
  color: #5b9143;
}
.cid-tkmgi2r8Lf {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tkmgi2r8Lf .media-wrap {
  padding: 0;
}
@media (max-width: 991px) {
  .cid-tkmgi2r8Lf .media-wrap {
    margin-bottom: 1rem;
  }
}
@media (max-width: 0px) {
  .cid-tkmgi2r8Lf .row {
    text-align: center;
  }
  .cid-tkmgi2r8Lf .row > div {
    margin: auto;
  }
  .cid-tkmgi2r8Lf .social-row {
    justify-content: center;
  }
}
.cid-tkmgi2r8Lf .social-row {
  display: flex;
  flex-wrap: wrap;
}
.cid-tkmgi2r8Lf .list {
  list-style: none;
  padding-left: 0;
  color: #5b9143;
}
@media (max-width: 991px) {
  .cid-tkmgi2r8Lf .list {
    margin-bottom: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-tkmgi2r8Lf .list {
    margin-bottom: 0rem;
  }
}
.cid-tkmgi2r8Lf .mbr-text {
  color: #333333;
}
.cid-tkmgi2r8Lf .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background-color: white;
  margin-right: 0.5rem;
  margin-bottom: 1rem;
  padding: 0.5rem;
  height: 2.5rem;
  width: 2.5rem;
}
.cid-tkmgi2r8Lf .mbr-iconfont {
  color: black;
}
@media (max-width: 991px) {
  .cid-tkmgi2r8Lf div > *:last-child {
    margin-top: 0 !important;
  }
}
.cid-tkmgi2r8Lf H5 {
  color: #7ca950;
}
.cid-tkmgi2r8Lf .copyright {
  color: #707070;
}
.cid-tkmgi2r8Lf .mbr-section-subtitle {
  color: #7ca950;
}
