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: 3rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 3.75rem;
}
.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: 'Jost', sans-serif;
  font-size: 2rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-7 {
  font-family: 'Jost', sans-serif;
  font-size: 1.2rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.5rem;
}
/* ---- 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.4rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.8rem;
    font-size: calc( 1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1rem + (1 - 1) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    font-size: 0.96rem;
    font-size: calc( 1.07rem + (1.2 - 1.07) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.07rem + (1.2 - 1.07) * ((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: #106a14 !important;
}
.bg-success {
  background-color: #40b0bf !important;
}
.bg-info {
  background-color: #47b5ed !important;
}
.bg-warning {
  background-color: #fff0b0 !important;
}
.bg-danger {
  background-color: #c2f4b9 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #106a14 !important;
  border-color: #106a14 !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: #051f06 !important;
  border-color: #051f06 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #051f06 !important;
  border-color: #051f06 !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #ff6666 !important;
  border-color: #ff6666 !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: #ff0f0f !important;
  border-color: #ff0f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #ff0f0f !important;
  border-color: #ff0f0f !important;
}
.btn-info,
.btn-info:active {
  background-color: #47b5ed !important;
  border-color: #47b5ed !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: #148cca !important;
  border-color: #148cca !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #ffffff !important;
  background-color: #148cca !important;
  border-color: #148cca !important;
}
.btn-success,
.btn-success:active {
  background-color: #40b0bf !important;
  border-color: #40b0bf !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: #2a747e !important;
  border-color: #2a747e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #2a747e !important;
  border-color: #2a747e !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #fff0b0 !important;
  border-color: #fff0b0 !important;
  color: #b08f00 !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: #594800 !important;
  background-color: #ffe059 !important;
  border-color: #ffe059 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #b08f00 !important;
  background-color: #ffe059 !important;
  border-color: #ffe059 !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #c2f4b9 !important;
  border-color: #c2f4b9 !important;
  color: #2b9618 !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: #164b0c !important;
  background-color: #81e86e !important;
  border-color: #81e86e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #2b9618 !important;
  background-color: #81e86e !important;
  border-color: #81e86e !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: transparent;
  color: #106a14;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #051f06 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-primary-outline.disabled,
.btn-primary-outline:disabled {
  color: #ffffff !important;
  background-color: #106a14 !important;
  border-color: #106a14 !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff6666;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #ff0f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-secondary-outline.disabled,
.btn-secondary-outline:disabled {
  color: #ffffff !important;
  background-color: #ff6666 !important;
  border-color: #ff6666 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #47b5ed;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #148cca !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #ffffff !important;
  background-color: #47b5ed !important;
  border-color: #47b5ed !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #40b0bf;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #2a747e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-success-outline.disabled,
.btn-success-outline:disabled {
  color: #ffffff !important;
  background-color: #40b0bf !important;
  border-color: #40b0bf !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #fff0b0;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffe059 !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #b08f00 !important;
  background-color: #fff0b0 !important;
  border-color: #fff0b0 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #c2f4b9;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #81e86e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #2b9618 !important;
  background-color: #c2f4b9 !important;
  border-color: #c2f4b9 !important;
}
.btn-black-outline,
.btn-black-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  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: transparent!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: transparent;
  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: transparent!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: #106a14 !important;
}
.text-secondary {
  color: #ff6666 !important;
}
.text-success {
  color: #40b0bf !important;
}
.text-info {
  color: #47b5ed !important;
}
.text-warning {
  color: #fff0b0 !important;
}
.text-danger {
  color: #c2f4b9 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #031103 !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #ff0000 !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #266a73 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #1283bc !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #ffdd4a !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #75e661 !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) {
  position: relative;
  background-image: transparent;
  background-size: 10000px 2px;
  background-repeat: no-repeat;
  background-position: 0px 1.2em;
  background-position: -10000px 1.2em;
}
a[class*="text-"]:not(.nav-link):not(.dropdown-item):not([role]):not(.navbar-caption):hover {
  transition: background-position 2s ease-in-out;
  background-image: linear-gradient(currentColor 50%, currentColor 50%);
  background-position: 0px 1.2em;
}
.nav-tabs .nav-link.active {
  color: #106a14;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #47b5ed;
}
.alert-warning {
  background-color: #fff0b0;
}
.alert-danger {
  background-color: #c2f4b9;
}
.mbr-gallery-filter li.active .btn {
  background-color: #106a14;
  border-color: #106a14;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #106a14;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #21d929;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a0d8df;
}
.mbr-plan-header.bg-info .mbr-plan-subtitle,
.mbr-plan-header.bg-info .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-warning .mbr-plan-subtitle,
.mbr-plan-header.bg-warning .mbr-plan-price-desc {
  color: #ffffff;
}
.mbr-plan-header.bg-danger .mbr-plan-subtitle,
.mbr-plan-header.bg-danger .mbr-plan-price-desc {
  color: #ffffff;
}
/* Scroll to top button*/
.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: #106a14 !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: #106a14;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #106a14;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #106a14;
}
.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: #106a14;
  border-bottom-color: #106a14;
}
.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: #106a14 !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #000000 !important;
  background: #ff6666 !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='%23106a14' %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;
}
*:focus-visible {
  outline: red solid 2px !important;
  outline-offset: 2px !important;
  transition: outline 0.2s ease-in-out;
}
.cid-t0gWaR9fAm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0gWaR9fAm nav.navbar {
  position: fixed;
}
.cid-t0gWaR9fAm .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-t0gWaR9fAm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0gWaR9fAm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0gWaR9fAm .dropdown-item:hover,
.cid-t0gWaR9fAm .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t0gWaR9fAm .dropdown-item:hover span {
  color: white;
}
.cid-t0gWaR9fAm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0gWaR9fAm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0gWaR9fAm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0gWaR9fAm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0gWaR9fAm .nav-link {
  position: relative;
}
.cid-t0gWaR9fAm .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0gWaR9fAm .container {
    flex-wrap: nowrap;
  }
}
.cid-t0gWaR9fAm .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gWaR9fAm .dropdown-menu,
.cid-t0gWaR9fAm .navbar.opened {
  background: #ffffff !important;
}
.cid-t0gWaR9fAm .nav-item:focus,
.cid-t0gWaR9fAm .nav-link:focus {
  outline: none;
}
.cid-t0gWaR9fAm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0gWaR9fAm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gWaR9fAm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0gWaR9fAm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0gWaR9fAm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gWaR9fAm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gWaR9fAm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0gWaR9fAm .navbar.opened {
  transition: all 0.3s;
}
.cid-t0gWaR9fAm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0gWaR9fAm .navbar .navbar-logo img {
  width: auto;
}
.cid-t0gWaR9fAm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gWaR9fAm .navbar.collapsed {
  justify-content: center;
}
.cid-t0gWaR9fAm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gWaR9fAm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0gWaR9fAm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t0gWaR9fAm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gWaR9fAm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gWaR9fAm .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-t0gWaR9fAm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gWaR9fAm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gWaR9fAm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gWaR9fAm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gWaR9fAm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gWaR9fAm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gWaR9fAm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gWaR9fAm .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-t0gWaR9fAm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0gWaR9fAm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gWaR9fAm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gWaR9fAm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0gWaR9fAm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0gWaR9fAm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gWaR9fAm .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0gWaR9fAm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0gWaR9fAm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0gWaR9fAm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gWaR9fAm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gWaR9fAm .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t0gWaR9fAm .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t0gWaR9fAm .dropdown-item.active,
.cid-t0gWaR9fAm .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gWaR9fAm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gWaR9fAm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gWaR9fAm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gWaR9fAm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gWaR9fAm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gWaR9fAm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0gWaR9fAm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0gWaR9fAm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0gWaR9fAm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0gWaR9fAm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t0gWaR9fAm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gWaR9fAm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gWaR9fAm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gWaR9fAm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gWaR9fAm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gWaR9fAm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gWaR9fAm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gWaR9fAm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gWaR9fAm .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t0gWaR9fAm .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t0gWaR9fAm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0gWaR9fAm .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-t0gWaR9fAm .navbar {
    height: 70px;
  }
  .cid-t0gWaR9fAm .navbar.opened {
    height: auto;
  }
  .cid-t0gWaR9fAm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gWaR9fAm .container,
.cid-t0gWaR9fAm .container-fluid {
  flex-wrap: wrap;
}
.cid-t0gWaR9fAm .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t0gWaR9fAm .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t0gWaR9fAm .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t0gWaR9fAm .contacts-menu {
    display: none;
  }
}
.cid-t0gWaR9fAm .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t0gWaR9fAm .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t0gWaR9fAm .icon-box:hover {
  transform: scale(1.1);
}
.cid-t0gWaR9fAm .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t0gWaR9fAm .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t0gWaR9fAm .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t0gWaR9fAm .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t0gWaR9fAm .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t0gWaR9fAm .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0gWaR9fAm .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t0gWaR9fAm .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t0gWaR9fAm .card-text {
  color: #767676;
}
.cid-t0gWaR9fAm .card-title {
  color: #767676;
}
.cid-sn1hMP0y3s {
  padding-top: 10rem;
  padding-bottom: 5rem;
  background-image: url("../../../assets/images/puerto-malaga-1800x746.jpg");
}
@media (max-width: 991px) {
  .cid-sn1hMP0y3s .mbr-section-title,
  .cid-sn1hMP0y3s .mbr-section-subtitle,
  .cid-sn1hMP0y3s .mbr-section-btn,
  .cid-sn1hMP0y3s .mbr-text {
    text-align: center;
  }
}
.cid-sn1hMP0y3s .mbr-section-title {
  color: #ffffff;
}
.cid-sn1hMP0y3s .mbr-text,
.cid-sn1hMP0y3s .mbr-section-btn {
  color: #ffffff;
}
.cid-sn1hMP0y3s .mbr-section-subtitle {
  color: #ffffff;
}
.cid-sn1hQ7SZpT {
  padding-top: 4rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
@media (min-width: 1500px) {
  .cid-sn1hQ7SZpT .container {
    max-width: 1400px;
  }
}
.cid-sn1hQ7SZpT .mbr-iconfont {
  display: block;
  font-size: 5rem;
  color: #6592e6;
  margin-bottom: 2rem;
}
.cid-sn1hQ7SZpT .card-wrapper {
  margin-top: 3rem;
}
.cid-sn1hQ7SZpT .row {
  justify-content: center;
}
.cid-sn1hQ7SZpT .mbr-section-title {
  color: #106a14;
}
.cid-sn1iHjvITR {
  background-image: url("../../../assets/images/taller21-1300x867.jpg");
  background-position: right;
}
.cid-sn1iHjvITR .wrapper {
  position: relative;
  border-top: 3px solid #106a14;
  border-right: 3px solid #106a14;
  border-left: 3px solid #106a14;
  padding: 2.5rem 2.5rem;
}
.cid-sn1iHjvITR .wrapper:before {
  content: "";
  background: #106a14;
  position: absolute;
  bottom: 0;
  width: calc(90% - 130px);
  height: 3px;
  right: 0;
}
.cid-sn1iHjvITR .wrapper:after {
  content: "";
  background: #106a14;
  position: absolute;
  bottom: 0;
  width: 10%;
  height: 3px;
  left: 0;
}
.cid-sn1iHjvITR img {
  position: absolute;
  left: 10%;
  bottom: -45px;
  width: 130px;
}
@media (max-width: 767px) {
  .cid-sn1iHjvITR .wrapper {
    padding: 1rem 1.5rem;
  }
}
.cid-sn1iHjvITR H1 {
  color: #353535;
}
.cid-sn1iHjvITR .mbr-text,
.cid-sn1iHjvITR .mbr-section-btn {
  color: #353535;
}
.cid-sn1hYdTTlD {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sn1hYdTTlD .item {
  display: flex;
  align-items: center;
  flex-direction: column;
}
.cid-sn1hYdTTlD .item .icon-wrap {
  text-align: center;
}
.cid-sn1hYdTTlD .item span {
  font-size: 2rem;
  color: #ffffff;
  line-height: 60px;
}
.cid-sn1hYdTTlD .item::before {
  content: "\e96b";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 32px;
  left: -15px;
  top: 12%;
  color: #106a14;
}
.cid-sn1hYdTTlD .item.first:before {
  display: none;
}
.cid-sn1hYdTTlD .item.five:before {
  display: none;
}
.cid-sn1hYdTTlD .icon-box {
  background: #106a14;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  text-align: center;
  display: inline-block;
}
.cid-sn1hYdTTlD .text-box {
  margin-top: 1rem;
  text-align: center;
}
.cid-sn1hYdTTlD .mbr-iconfont {
  color: #106a14 !important;
  position: absolute;
  top: 50%;
  left: 100%;
}
@media (max-width: 991px) {
  .cid-sn1hYdTTlD .item:before {
    display: none;
  }
  .cid-sn1hYdTTlD .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sn1hYdTTlD .card-title,
.cid-sn1hYdTTlD .card-box {
  color: #106a14;
}
.cid-sOKAJCg70W {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #eff4ff;
}
.cid-sOKAJCg70W .mbr-iconfont {
  font-size: 1.4rem !important;
  font-family: 'Moririse2' !important;
  color: #106a14;
  margin-left: 1rem;
}
.cid-sOKAJCg70W .panel-group {
  border: none;
}
.cid-sOKAJCg70W .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-sOKAJCg70W .panel-body,
.cid-sOKAJCg70W .card-header {
  padding: 1rem 0;
}
.cid-sOKAJCg70W .panel-title-edit {
  color: #106a14;
}
.cid-sOKAJCg70W .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-sOKAJCg70W H3 {
  color: #106a14;
}
.cid-t55CheaU6L {
  padding-top: 30px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-t55CheaU6L .mbr-iconfont {
  color: #fff0b0;
}
.cid-t55CheaU6L .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-t55CheaU6L .mbr-text {
  margin: 1.5rem 0;
}
.cid-t55CheaU6L .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-t55CheaU6L .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-t55CheaU6L .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-t55CheaU6L .mbr-section-subtitle,
.cid-t55CheaU6L .mbr-text,
.cid-t55CheaU6L .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-t55CheaU6L .mbr-section-title {
  color: #106a14;
}
.cid-t55CheaU6L .mbr-text,
.cid-t55CheaU6L .social-links .mbr-iconfont {
  color: #106a14;
}
.cid-t5munhblYQ {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-t5munhblYQ .mbr-iconfont {
  color: #fff0b0;
}
.cid-t5munhblYQ .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-t5munhblYQ .mbr-text {
  margin: 1.5rem 0;
}
.cid-t5munhblYQ .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-t5munhblYQ .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-t5munhblYQ .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-t5munhblYQ .mbr-section-subtitle,
.cid-t5munhblYQ .mbr-text,
.cid-t5munhblYQ .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-t5munhblYQ .mbr-section-title {
  color: #106a14;
}
.cid-t5munhblYQ .mbr-text,
.cid-t5munhblYQ .social-links .mbr-iconfont {
  color: #106a14;
}
.cid-t5mw1JtSXt {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-t5mw1JtSXt .mbr-iconfont {
  color: #fff0b0;
}
.cid-t5mw1JtSXt .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-t5mw1JtSXt .mbr-text {
  margin: 1.5rem 0;
}
.cid-t5mw1JtSXt .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-t5mw1JtSXt .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-t5mw1JtSXt .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-t5mw1JtSXt .mbr-section-subtitle,
.cid-t5mw1JtSXt .mbr-text,
.cid-t5mw1JtSXt .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-t5mw1JtSXt .mbr-section-title {
  color: #106a14;
}
.cid-t5mw1JtSXt .mbr-text,
.cid-t5mw1JtSXt .social-links .mbr-iconfont {
  color: #106a14;
}
.cid-t5mybdqkyg {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-t5mybdqkyg .mbr-iconfont {
  color: #fff0b0;
}
.cid-t5mybdqkyg .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-t5mybdqkyg .mbr-text {
  margin: 1.5rem 0;
}
.cid-t5mybdqkyg .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-t5mybdqkyg .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-t5mybdqkyg .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-t5mybdqkyg .mbr-section-subtitle,
.cid-t5mybdqkyg .mbr-text,
.cid-t5mybdqkyg .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-t5mybdqkyg .mbr-section-title {
  color: #106a14;
}
.cid-t5mybdqkyg .mbr-text,
.cid-t5mybdqkyg .social-links .mbr-iconfont {
  color: #106a14;
}
.cid-t5myLmC6Bs {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-t5myLmC6Bs .mbr-iconfont {
  color: #fff0b0;
}
.cid-t5myLmC6Bs .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-t5myLmC6Bs .mbr-text {
  margin: 1.5rem 0;
}
.cid-t5myLmC6Bs .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-t5myLmC6Bs .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-t5myLmC6Bs .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-t5myLmC6Bs .mbr-section-subtitle,
.cid-t5myLmC6Bs .mbr-text,
.cid-t5myLmC6Bs .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-t5myLmC6Bs .mbr-section-title {
  color: #106a14;
}
.cid-t5myLmC6Bs .mbr-text,
.cid-t5myLmC6Bs .social-links .mbr-iconfont {
  color: #106a14;
}
.cid-t5mzlnpM2m {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-t5mzlnpM2m .mbr-iconfont {
  color: #fff0b0;
}
.cid-t5mzlnpM2m .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-t5mzlnpM2m .mbr-text {
  margin: 1.5rem 0;
}
.cid-t5mzlnpM2m .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-t5mzlnpM2m .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-t5mzlnpM2m .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-t5mzlnpM2m .mbr-section-subtitle,
.cid-t5mzlnpM2m .mbr-text,
.cid-t5mzlnpM2m .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-t5mzlnpM2m .mbr-section-title {
  color: #106a14;
}
.cid-t5mzlnpM2m .mbr-text,
.cid-t5mzlnpM2m .social-links .mbr-iconfont {
  color: #106a14;
}
.cid-t5mzPD63Ff {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-t5mzPD63Ff .mbr-iconfont {
  color: #fff0b0;
}
.cid-t5mzPD63Ff .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-t5mzPD63Ff .mbr-text {
  margin: 1.5rem 0;
}
.cid-t5mzPD63Ff .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-t5mzPD63Ff .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-t5mzPD63Ff .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-t5mzPD63Ff .mbr-section-subtitle,
.cid-t5mzPD63Ff .mbr-text,
.cid-t5mzPD63Ff .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-t5mzPD63Ff .mbr-section-title {
  color: #106a14;
}
.cid-t5mzPD63Ff .mbr-text,
.cid-t5mzPD63Ff .social-links .mbr-iconfont {
  color: #106a14;
}
.cid-vhhFr8hOTl {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-vhhFr8hOTl .mbr-iconfont {
  color: #fff0b0;
}
.cid-vhhFr8hOTl .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-vhhFr8hOTl .mbr-text {
  margin: 1.5rem 0;
}
.cid-vhhFr8hOTl .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-vhhFr8hOTl .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-vhhFr8hOTl .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-vhhFr8hOTl .mbr-section-subtitle,
.cid-vhhFr8hOTl .mbr-text,
.cid-vhhFr8hOTl .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-vhhFr8hOTl .mbr-section-title {
  color: #106a14;
}
.cid-vhhFr8hOTl .mbr-text,
.cid-vhhFr8hOTl .social-links .mbr-iconfont {
  color: #106a14;
}
.cid-vi16DsG2hq {
  padding-top: 0px;
  padding-bottom: 15px;
  background-color: #f4f8fa;
}
.cid-vi16DsG2hq .mbr-iconfont {
  color: #fff0b0;
}
.cid-vi16DsG2hq .mbr-iconfont:hover {
  color: #188ef4 !important;
}
.cid-vi16DsG2hq .mbr-text {
  margin: 1.5rem 0;
}
.cid-vi16DsG2hq .card-img {
  margin-bottom: 2rem;
  max-width: 200px;
  max-height: 200px;
  margin: 0 auto 2rem auto;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
  z-index: 1;
  -webkit-box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
  box-shadow: 0px 0px 30px rgba(115, 128, 157, 0.1);
}
.cid-vi16DsG2hq .img-icon {
  width: 100%;
  height: auto;
}
@media (min-width: 992px) {
  .cid-vi16DsG2hq .my-col {
    -webkit-flex: 0 0 20%;
    flex: 0 0 20%;
    max-width: 20%;
    padding: 15px;
  }
}
.cid-vi16DsG2hq .mbr-section-subtitle,
.cid-vi16DsG2hq .mbr-text,
.cid-vi16DsG2hq .social-links .mbr-iconfont {
  color: #8d97ad;
}
.cid-vi16DsG2hq .mbr-section-title {
  color: #106a14;
}
.cid-vi16DsG2hq .mbr-text,
.cid-vi16DsG2hq .social-links .mbr-iconfont {
  color: #106a14;
}
.cid-sn2kXtB9Mk {
  padding-top: 80px;
  background-image: url("../../../assets/images/background12.jpg");
}
.cid-sn2kXtB9Mk .container {
  margin-bottom: 15%;
}
.cid-sn2kXtB9Mk .content-container .btn-bgr {
  z-index: 0;
}
.cid-sn2kXtB9Mk .container-boxes {
  padding-bottom: 60px;
  position: relative;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-align-items: stretch;
  align-items: stretch;
  background-color: #ffffff;
}
.cid-sn2kXtB9Mk .icon-block-top span {
  background-color: #106a14;
  padding: 1.5rem;
  position: absolute;
  border-radius: 50%;
  margin-top: -2.5rem;
  top: 0;
  font-size: 1.8rem;
  width: 78px;
  height: 78px;
}
.cid-sn2kXtB9Mk .box-item {
  position: relative;
  box-shadow: #d2d2d2 0px 0px 15px;
  border-radius: 3px;
  margin-right: 1.5rem;
  width: 29%;
  padding: 2.5rem;
}
.cid-sn2kXtB9Mk .box-item:first-child {
  background-color: #ffffff;
  margin-top: -150px;
}
.cid-sn2kXtB9Mk .box-item:nth-child(2) {
  background-color: #ffffff;
}
.cid-sn2kXtB9Mk .box-item:last-child {
  background-color: #ffffff;
  margin-right: 0;
}
.cid-sn2kXtB9Mk .box-item-text,
.cid-sn2kXtB9Mk .mbr-section-btn {
  color: #8d97ad;
}
.cid-sn2kXtB9Mk .box-list {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0;
}
.cid-sn2kXtB9Mk .box-list li {
  border-bottom: 1px solid;
  padding: 10px 0 5px;
}
.cid-sn2kXtB9Mk .box-list li:last-child {
  border-bottom: none;
}
.cid-sn2kXtB9Mk .box-list li span {
  float: right;
  text-align: right;
  padding-left: 0.5rem;
}
.cid-sn2kXtB9Mk .media-content {
  -webkit-flex-basis: initial;
  flex-basis: initial;
}
@media (min-width: 992px) {
  .cid-sn2kXtB9Mk .box-item {
    margin-top: -150px;
    max-width: 400px;
  }
}
@media (max-width: 767px) {
  .cid-sn2kXtB9Mk .p-descr {
    margin-bottom: 4rem;
  }
}
@media (max-width: 991px) {
  .cid-sn2kXtB9Mk .box-item {
    margin-bottom: 4rem;
    margin-right: 0;
    margin-top: 0;
    width: 90%;
  }
  .cid-sn2kXtB9Mk .box-item:last-child {
    margin-bottom: 0;
  }
  .cid-sn2kXtB9Mk .content-container {
    -webkit-flex-basis: 90%;
    flex-basis: 90%;
  }
  .cid-sn2kXtB9Mk .box-item:first-child {
    margin-top: -100px;
  }
}
.cid-sn2kXtB9Mk .mbr-text {
  color: #efefef;
}
.cid-sn2kXtB9Mk H1 {
  color: #ffffff;
}
.cid-t1GIQO3Cfz {
  padding-top: 60px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t1GIQO3Cfz .block-title {
  color: #106a14;
}
.cid-sn2yEUsX5L {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #fdf6d8;
}
.cid-sn2yEUsX5L .container-fluid {
  padding-left: 0;
}
.cid-sn2yEUsX5L .mbr-text,
.cid-sn2yEUsX5L .mbr-section-btn {
  color: #232323;
}
@media (max-width: 991px) {
  .cid-sn2yEUsX5L .mbr-text,
  .cid-sn2yEUsX5L .mbr-section-btn {
    text-align: center;
  }
}
@media (max-width: 991px) {
  .cid-sn2yEUsX5L .mbr-text,
  .cid-sn2yEUsX5L .mbr-section-title {
    text-align: center;
  }
}
.cid-sn2yEUsX5L a.btn {
  height: 100%;
  margin: 0;
}
.cid-sn2yEUsX5L .mbr-section-btn {
  display: flex;
  margin-bottom: 1rem;
  width: 100%;
}
.cid-sn2yEUsX5L .mbr-section-btn .btn {
  width: 100%;
}
@media (max-width: 991px) {
  .cid-sn2yEUsX5L .image-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sn2yEUsX5L .justify-content-center {
  align-items: center;
}
.cid-sOKw5jSgLq {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sOKw5jSgLq .fb-page,
.cid-sOKw5jSgLq span,
.cid-sOKw5jSgLq iframe {
  width: 500px;
  height: 620px;
}
.cid-sOKw5jSgLq blockquote {
  display: none;
}
.cid-sOKw5jSgLq .fb-page {
  background-color: #1877f2;
  border-radius: 4px;
  background-size: contain;
  background-repeat: no-repeat;
  color: #fff;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' preserveAspectRatio='xMinYMin meet' viewBox='0 0 262 266.895'><path id='path3087' fill='%23fff' d='M182.409,262.307v-99.803h33.499l5.016-38.895h-38.515V98.777c0-11.261,3.127-18.935,19.275-18.935 l20.596-0.009V45.045c-3.562-0.474-15.788-1.533-30.012-1.533c-29.695,0-50.025,18.126-50.025,51.413v28.684h-33.585v38.895h33.585 v99.803H182.409z'></path></svg>");
}
.cid-sOKw5jSgLq .mbr-section-title {
  color: #106a14;
}
.cid-sneMTN0R65 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sneMTN0R65 .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-sneMTN0R65 .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-sneMTN0R65 .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-sneMTN0R65 .form-group {
  padding-right: 0;
}
.cid-sneMTN0R65 .card {
  padding: 3rem 8rem;
}
.cid-sneMTN0R65 .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-sneMTN0R65 .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-sneMTN0R65 .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-sneMTN0R65 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-sneMTN0R65 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-sneMTN0R65 .map-placeholder {
  display: none;
}
.cid-sneMTN0R65 .btn-primary {
  border: 1px solid #106a14 !important;
}
.cid-sneMTN0R65 .btn-primary:hover {
  border: 1px solid #106a14 !important;
}
.cid-sneMTN0R65 .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-sneMTN0R65 .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-sneMTN0R65 .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-sneMTN0R65 .mbr-text {
  color: #444;
}
.cid-sneMTN0R65 h5 {
  margin-bottom: 0;
}
.cid-sneMTN0R65 .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-sneMTN0R65 .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-sneMTN0R65 .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-sneMTN0R65 .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-sneMTN0R65 .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-sneMTN0R65 .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-sneMTN0R65 .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-sneMTN0R65 .social-list a:hover {
  opacity: 0.4;
}
.cid-sneMTN0R65 .media-container-row > div {
  padding: 0px;
}
.cid-sneMTN0R65 .text2 {
  color: #000000;
  text-align: left;
}
.cid-sneMTN0R65 .group-title {
  text-align: left;
  color: #767676;
  padding-bottom: 0.2rem;
}
.cid-sneMTN0R65 .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 1200px) {
  .cid-sneMTN0R65 .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-sneMTN0R65 .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-sneMTN0R65 h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-sneMTN0R65 .form-group {
    max-width: 180px;
  }
  .cid-sneMTN0R65 .card {
    padding: 2rem 1rem;
  }
}
.cid-sneMTN0R65 .links span {
  color: #9e9e9e;
}
.cid-sneMTN0R65 .logo-title,
.cid-sneMTN0R65 .logo-sub-title {
  text-align: center;
}
.cid-sneMTN0R65 .logo-sub-title i {
  color: #9e9e9e;
}
.cid-v2f1zLD8zr.popup-builder {
  background-color: #ffffff;
}
.cid-v2f1zLD8zr.popup-builder .modal {
  position: relative;
  display: block;
  z-index: 1;
}
.cid-v2f1zLD8zr.popup-builder .modal-dialog {
  margin-top: 60px;
  margin-bottom: 60px;
}
.cid-v2f1zLD8zr .modal-content,
.cid-v2f1zLD8zr .modal-dialog {
  height: auto;
}
.cid-v2f1zLD8zr .form-wrapper .input-group-btn {
  margin-right: auto;
  margin-left: auto;
}
.cid-v2f1zLD8zr .form-wrapper .input-group-btn .btn {
  margin: 0 !important;
}
@media (min-width: 769px) {
  .cid-v2f1zLD8zr .form-wrapper .mbr-form .form-group,
  .cid-v2f1zLD8zr .form-wrapper .mbr-form .input-group-btn {
    padding: 0 .5rem;
  }
}
.cid-v2f1zLD8zr .card-img {
  width: 100%;
  margin: auto;
  border-radius: 0;
}
.cid-v2f1zLD8zr .mbr-figure img {
  display: block;
  width: 100%;
  -ms-flex-item-align: center;
  -ms-grid-row-align: center;
  -webkit-align-self: center;
  align-self: center;
}
.cid-v2f1zLD8zr .mbr-text {
  text-align: center;
}
.cid-v2f1zLD8zr .pt-0 {
  padding-top: 0 !important;
}
.cid-v2f1zLD8zr .pb-0 {
  padding-bottom: 0 !important;
}
.cid-v2f1zLD8zr .form-content {
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
}
.cid-v2f1zLD8zr .mbr-overlay {
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  z-index: 0;
  pointer-events: none;
}
.cid-v2f1zLD8zr .modal-open {
  overflow: hidden;
}
.cid-v2f1zLD8zr .modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.cid-v2f1zLD8zr .modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
}
.cid-v2f1zLD8zr .modal-dialog {
  position: relative;
  width: auto;
  margin: .5rem;
  pointer-events: none;
}
.cid-v2f1zLD8zr .modal.fade .modal-dialog {
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  -webkit-transform: translate(0, -50px);
  transform: translate(0, -50px);
}
.cid-v2f1zLD8zr .modal.show .modal-dialog {
  -webkit-transform: none;
  transform: none;
}
.cid-v2f1zLD8zr .modal-dialog-centered {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  min-height: calc(100% - (.5rem * 2));
}
.cid-v2f1zLD8zr .modal-dialog-centered::before {
  display: block;
  height: calc(100vh - (.5rem * 2));
  content: "";
}
.cid-v2f1zLD8zr .modal-content {
  background: #ffffff;
  position: relative;
  display: flex;
  -ms-flex-direction: column;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-clip: padding-box;
  border: none;
  outline: 0;
  -webkit-box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
  box-shadow: 0 10px 40px 0 rgba(0, 0, 0, 0.2);
}
.cid-v2f1zLD8zr .margin-center-pos {
  margin-top: auto;
  margin-bottom: auto;
}
.cid-v2f1zLD8zr .modal-backdrop {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1040;
  width: 100vw;
  height: 100vh;
  background-color: #000;
}
.cid-v2f1zLD8zr .modal-backdrop.fade {
  opacity: 0;
}
.cid-v2f1zLD8zr .modal-backdrop.show {
  opacity: .5;
}
.cid-v2f1zLD8zr .modal-header {
  display: flex;
  -ms-flex-align: start;
  align-items: flex-start;
  -ms-flex-pack: justify;
  justify-content: space-between;
  border-bottom: none;
}
@media (min-width: 992px) {
  .cid-v2f1zLD8zr .modal-header {
    padding: 2rem 2rem 1rem;
  }
}
@media (max-width: 991px) {
  .cid-v2f1zLD8zr .modal-header {
    padding: 1rem;
  }
}
.cid-v2f1zLD8zr .modal-header .close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  margin: -1rem -1rem -1rem auto;
  padding: 1rem;
  opacity: .75;
}
.cid-v2f1zLD8zr .modal-header .close svg {
  fill: #353535;
}
.cid-v2f1zLD8zr .modal-header .close:hover {
  opacity: 1;
}
.cid-v2f1zLD8zr .modal-header .close:focus {
  outline: none;
}
.cid-v2f1zLD8zr .modal-title {
  line-height: 1.5;
  width: 100%;
  margin: 0;
  text-align: center;
}
.cid-v2f1zLD8zr .modal-body {
  position: relative;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
@media (min-width: 992px) {
  .cid-v2f1zLD8zr .modal-body {
    padding: 1rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2f1zLD8zr .modal-body {
    padding: 1rem;
  }
}
.cid-v2f1zLD8zr .modal-footer {
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-top: none;
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v2f1zLD8zr .modal-footer {
    padding: 0rem 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-v2f1zLD8zr .modal-footer {
    padding: 1rem;
  }
}
.cid-v2f1zLD8zr .modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll;
}
@media (min-width: 576px) {
  .cid-v2f1zLD8zr .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto;
  }
  .cid-v2f1zLD8zr .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2));
  }
  .cid-v2f1zLD8zr .modal-dialog-centered::before {
    height: calc(100vh - (1.75rem * 2));
  }
  .cid-v2f1zLD8zr .modal-sm {
    max-width: 300px;
  }
}
@media (min-width: 992px) {
  .cid-v2f1zLD8zr .modal-lg,
  .cid-v2f1zLD8zr .modal-xl {
    max-width: 800px;
  }
}
@media (min-width: 1200px) {
  .cid-v2f1zLD8zr .modal-xl {
    max-width: 1140px;
  }
}
.cid-v2f1zLD8zr .row {
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  margin-right: -15px;
  margin-left: -15px;
}
.cid-v2f1zLD8zr .col-md-4 {
  position: relative;
  width: 100%;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 33.333333%;
  flex: 0 0 33.333333%;
  max-width: 33.333333%;
}
.cid-v2f1zLD8zr .form-group {
  margin-bottom: 1rem;
}
.cid-v2f1zLD8zr .form-control {
  display: block;
  width: 100%;
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5;
}
.cid-v2f1zLD8zr .col {
  -ms-flex-preferred-size: 0;
  flex-basis: 0;
  -ms-flex-positive: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-v2f1zLD8zr .col-md-auto {
  position: relative;
  padding-right: 15px;
  padding-left: 15px;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  width: auto;
  max-width: 100%;
}
.cid-v2f1zLD8zr .mbr-section-btn {
  margin: 0;
}
.cid-v2f1zLD8zr .mbr-section-btn .btn {
  margin: 0;
}
.cid-sneQlsng8P {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #656bc4;
}
.cid-sneQlsng8P img {
  width: 125px;
  margin: auto;
  filter: brightness(250%);
}
.cid-sneQlsng8P .card {
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.cid-sneQlsng8P .card:hover {
  opacity: 0.9;
}
.cid-sneQlsng8P H1 {
  color: #ffffff;
}
.cid-sneQlsng8P .row {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-sneQlsng8P .col-lg-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-sneQlsng8P .row {
  justify-content: center!important;
}
.cid-t0hcIIqpa8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-t0gVENIiul {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0gVENIiul nav.navbar {
  position: fixed;
}
.cid-t0gVENIiul .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-t0gVENIiul .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0gVENIiul .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0gVENIiul .dropdown-item:hover,
.cid-t0gVENIiul .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t0gVENIiul .dropdown-item:hover span {
  color: white;
}
.cid-t0gVENIiul .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0gVENIiul .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0gVENIiul .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0gVENIiul .nav-link {
  position: relative;
}
.cid-t0gVENIiul .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .container {
    flex-wrap: nowrap;
  }
}
.cid-t0gVENIiul .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gVENIiul .dropdown-menu,
.cid-t0gVENIiul .navbar.opened {
  background: #ffffff !important;
}
.cid-t0gVENIiul .nav-item:focus,
.cid-t0gVENIiul .nav-link:focus {
  outline: none;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gVENIiul .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gVENIiul .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.opened {
  transition: all 0.3s;
}
.cid-t0gVENIiul .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0gVENIiul .navbar .navbar-logo img {
  width: auto;
}
.cid-t0gVENIiul .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gVENIiul .navbar.collapsed {
  justify-content: center;
}
.cid-t0gVENIiul .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gVENIiul .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gVENIiul .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gVENIiul .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gVENIiul .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-t0gVENIiul .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0gVENIiul .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gVENIiul .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0gVENIiul .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0gVENIiul .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gVENIiul .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0gVENIiul .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gVENIiul .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gVENIiul .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t0gVENIiul .dropdown-item.active,
.cid-t0gVENIiul .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gVENIiul .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gVENIiul .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0gVENIiul ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0gVENIiul button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t0gVENIiul .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t0gVENIiul a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar {
    height: 70px;
  }
  .cid-t0gVENIiul .navbar.opened {
    height: auto;
  }
  .cid-t0gVENIiul .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gVENIiul .container,
.cid-t0gVENIiul .container-fluid {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t0gVENIiul .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t0gVENIiul .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .contacts-menu {
    display: none;
  }
}
.cid-t0gVENIiul .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t0gVENIiul .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t0gVENIiul .icon-box:hover {
  transform: scale(1.1);
}
.cid-t0gVENIiul .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t0gVENIiul .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t0gVENIiul .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t0gVENIiul .card-text {
  color: #767676;
}
.cid-t0gVENIiul .card-title {
  color: #767676;
}
.cid-t0h8KGb3uD {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/background3.jpg");
}
.cid-t0h8KGb3uD .mbr-text,
.cid-t0h8KGb3uD .mbr-section-btn {
  color: #232323;
}
.cid-t0h8KGb3uD .card-title,
.cid-t0h8KGb3uD .card-box {
  color: #ffffff;
}
.cid-t0h8KGb3uD .mbr-text,
.cid-t0h8KGb3uD .link-wrap {
  color: #ffffff;
}
.cid-sndd0ja1BY {
  padding-top: 35px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sndd0ja1BY .mbr-section-subtitle {
  color: #767676;
}
.cid-sndd0ja1BY .item-image {
  position: relative;
}
@media (min-width: 992px) {
  .cid-sndd0ja1BY .container {
    max-width: 1600px;
  }
}
.cid-sndd0ja1BY .container {
  padding: 0 2rem;
}
.cid-sndd0ja1BY .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sndd0ja1BY .item-caption {
  padding: 3rem;
  padding-bottom: 1rem;
}
.cid-sndd0ja1BY .item-social {
  position: absolute;
  left: 50%;
  align-items: center;
  right: 50%;
  transform: translate(-50%, -50%);
  bottom: -3rem;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, #000000 200%);
  height: 6rem;
}
.cid-sndd0ja1BY .bg1 {
  background: #f5f5f5;
}
.cid-sndd0ja1BY .bg2 {
  background: #fafafa;
}
.cid-sndd0ja1BY .bg3 {
  background: #f5f5f5;
}
.cid-sndd0ja1BY .bg4 {
  background: #fafafa;
}
.cid-sndd0ja1BY .team-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: fit-content;
  transition: all .2s;
  margin-bottom: 0rem;
}
.cid-sndd0ja1BY .team-item:hover .item-social {
  opacity: 1;
}
.cid-sndd0ja1BY .team-item .item-image img {
  width: 100%;
}
.cid-sndd0ja1BY .team-item .item-name p {
  margin-bottom: 0;
}
.cid-sndd0ja1BY .team-item .item-role p {
  margin-bottom: 0;
}
.cid-sndd0ja1BY .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sndd0ja1BY .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-sndd0ja1BY .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
@media (max-width: 767px) {
  .cid-sndd0ja1BY .item-caption {
    padding: 2rem 1rem;
  }
  .cid-sndd0ja1BY .item-social {
    opacity: 1;
  }
}
.cid-sndd0ja1BY H2 {
  color: #106a14;
}
.cid-sndd0ja1BY .item-role {
  color: #353535;
}
.cid-sndd0ja1BY .item-name {
  color: #353535;
}
.cid-sndd0ja1BY .item-text {
  color: #353535;
}
.cid-t0bTDduePb {
  padding-top: 35px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-t0bTDduePb .mbr-section-subtitle {
  color: #767676;
}
.cid-t0bTDduePb .item-image {
  position: relative;
}
@media (min-width: 992px) {
  .cid-t0bTDduePb .container {
    max-width: 1600px;
  }
}
.cid-t0bTDduePb .container {
  padding: 0 2rem;
}
.cid-t0bTDduePb .mbr-iconfont {
  color: #ffffff !important;
}
.cid-t0bTDduePb .item-caption {
  padding: 3rem;
  padding-bottom: 1rem;
}
.cid-t0bTDduePb .item-social {
  position: absolute;
  left: 50%;
  align-items: center;
  right: 50%;
  transform: translate(-50%, -50%);
  bottom: -3rem;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, #000000 200%);
  height: 6rem;
}
.cid-t0bTDduePb .bg1 {
  background: #f5f5f5;
}
.cid-t0bTDduePb .bg2 {
  background: #fafafa;
}
.cid-t0bTDduePb .bg3 {
  background: #f5f5f5;
}
.cid-t0bTDduePb .bg4 {
  background: #fafafa;
}
.cid-t0bTDduePb .team-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: fit-content;
  transition: all .2s;
  margin-bottom: 0rem;
}
.cid-t0bTDduePb .team-item:hover .item-social {
  opacity: 1;
}
.cid-t0bTDduePb .team-item .item-image img {
  width: 100%;
}
.cid-t0bTDduePb .team-item .item-name p {
  margin-bottom: 0;
}
.cid-t0bTDduePb .team-item .item-role p {
  margin-bottom: 0;
}
.cid-t0bTDduePb .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-t0bTDduePb .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-t0bTDduePb .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
@media (max-width: 767px) {
  .cid-t0bTDduePb .item-caption {
    padding: 2rem 1rem;
  }
  .cid-t0bTDduePb .item-social {
    opacity: 1;
  }
}
.cid-t0bTDduePb H2 {
  color: #106a14;
}
.cid-t0bTDduePb .item-role {
  color: #353535;
}
.cid-t0bTDduePb .item-name {
  color: #353535;
}
.cid-t0bTDduePb .item-text {
  color: #353535;
}
.cid-syJMJPFhe7 {
  padding-top: 60px;
  padding-bottom: 45px;
  background-color: #fdf6d8;
}
.cid-syJMJPFhe7 .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  margin: auto auto 1rem 2rem;
  height: fit-content;
  max-width: 300px;
}
.cid-syJMJPFhe7 .card-wrap {
  background-color: #106a14;
  display: flex;
  height: 100%;
  min-height: 300px;
}
.cid-syJMJPFhe7 .card-wrap:hover h4,
.cid-syJMJPFhe7 .card-wrap:hover a {
  background-size: 100% 100%;
}
.cid-syJMJPFhe7 h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 0rem;
  top: -1rem;
}
.cid-syJMJPFhe7 h3:after {
  content: "";
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-syJMJPFhe7 img {
  width: 100%;
}
.cid-syJMJPFhe7 h4 {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-syJMJPFhe7 h4 a {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px) !important;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-syJMJPFhe7 .card-title1,
.cid-syJMJPFhe7 .title-wrap1 {
  color: #ffffff;
}
.cid-syJMJPFhe7 .card-title,
.cid-syJMJPFhe7 .title-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-syJMJPFhe7 .mdpb {
    padding-bottom: 2rem;
  }
  .cid-syJMJPFhe7 .card-box {
    margin: auto auto 0rem 1rem;
  }
}
.cid-syJMJPFhe7 H3 {
  color: #ffffff;
}
.cid-sNVOrhfLTA {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sNVOrhfLTA .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  margin: auto auto 1rem 2rem;
  height: fit-content;
  max-width: 300px;
}
.cid-sNVOrhfLTA .card-wrap {
  background-color: #106a14;
  display: flex;
  height: 100%;
  min-height: 300px;
}
.cid-sNVOrhfLTA .card-wrap:hover h4,
.cid-sNVOrhfLTA .card-wrap:hover a {
  background-size: 100% 100%;
}
.cid-sNVOrhfLTA h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 0rem;
  top: -1rem;
}
.cid-sNVOrhfLTA h3:after {
  content: "";
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-sNVOrhfLTA img {
  width: 100%;
}
.cid-sNVOrhfLTA h4 {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sNVOrhfLTA h4 a {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px) !important;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-sNVOrhfLTA .card-title1,
.cid-sNVOrhfLTA .title-wrap1 {
  color: #ffffff;
}
.cid-sNVOrhfLTA .card-title,
.cid-sNVOrhfLTA .title-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-sNVOrhfLTA .mdpb {
    padding-bottom: 2rem;
  }
  .cid-sNVOrhfLTA .card-box {
    margin: auto auto 0rem 1rem;
  }
}
.cid-sNVOrhfLTA H3 {
  color: #ffffff;
}
.cid-ugNA5GPERi {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #fdf6d8;
}
.cid-ugNA5GPERi .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  margin: auto auto 1rem 2rem;
  height: fit-content;
  max-width: 300px;
}
.cid-ugNA5GPERi .card-wrap {
  background-color: #106a14;
  display: flex;
  height: 100%;
  min-height: 300px;
}
.cid-ugNA5GPERi .card-wrap:hover h4,
.cid-ugNA5GPERi .card-wrap:hover a {
  background-size: 100% 100%;
}
.cid-ugNA5GPERi h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 0rem;
  top: -1rem;
}
.cid-ugNA5GPERi h3:after {
  content: "";
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-ugNA5GPERi img {
  width: 100%;
}
.cid-ugNA5GPERi h4 {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-ugNA5GPERi h4 a {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px) !important;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-ugNA5GPERi .card-title1,
.cid-ugNA5GPERi .title-wrap1 {
  color: #ffffff;
}
.cid-ugNA5GPERi .card-title,
.cid-ugNA5GPERi .title-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-ugNA5GPERi .mdpb {
    padding-bottom: 2rem;
  }
  .cid-ugNA5GPERi .card-box {
    margin: auto auto 0rem 1rem;
  }
}
.cid-ugNA5GPERi H3 {
  color: #ffffff;
}
.cid-uVwGUQezri {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-uVwGUQezri .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  margin: auto auto 1rem 2rem;
  height: fit-content;
  max-width: 300px;
}
.cid-uVwGUQezri .card-wrap {
  background-color: #106a14;
  display: flex;
  height: 100%;
  min-height: 300px;
}
.cid-uVwGUQezri .card-wrap:hover h4,
.cid-uVwGUQezri .card-wrap:hover a {
  background-size: 100% 100%;
}
.cid-uVwGUQezri h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 0rem;
  top: -1rem;
}
.cid-uVwGUQezri h3:after {
  content: "";
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-uVwGUQezri img {
  width: 100%;
}
.cid-uVwGUQezri h4 {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-uVwGUQezri h4 a {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px) !important;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-uVwGUQezri .card-title1,
.cid-uVwGUQezri .title-wrap1 {
  color: #ffffff;
}
.cid-uVwGUQezri .card-title,
.cid-uVwGUQezri .title-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uVwGUQezri .mdpb {
    padding-bottom: 2rem;
  }
  .cid-uVwGUQezri .card-box {
    margin: auto auto 0rem 1rem;
  }
}
.cid-uVwGUQezri H3 {
  color: #ffffff;
}
.cid-uYVBoGaPOp {
  padding-top: 45px;
  padding-bottom: 60px;
  background-color: #fdf6d8;
}
.cid-uYVBoGaPOp .card-box {
  display: flex;
  flex-direction: column;
  position: relative;
  justify-content: center;
  margin: auto auto 1rem 2rem;
  height: fit-content;
  max-width: 300px;
}
.cid-uYVBoGaPOp .card-wrap {
  background-color: #106a14;
  display: flex;
  height: 100%;
  min-height: 300px;
}
.cid-uYVBoGaPOp .card-wrap:hover h4,
.cid-uYVBoGaPOp .card-wrap:hover a {
  background-size: 100% 100%;
}
.cid-uYVBoGaPOp h3 {
  position: absolute;
  transform: rotate(-90deg);
  transform-origin: top left;
  width: fit-content;
  padding: 0;
  margin: 0;
  left: 0rem;
  top: -1rem;
}
.cid-uYVBoGaPOp h3:after {
  content: "";
  width: 30px;
  position: absolute;
  top: 50%;
  height: 1px;
  background-color: #ffffff;
  margin-left: 10px;
}
.cid-uYVBoGaPOp img {
  width: 100%;
}
.cid-uYVBoGaPOp h4 {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px);
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-uYVBoGaPOp h4 a {
  display: inline!important;
  text-decoration: none;
  background-image: linear-gradient(transparent calc(98%), currentColor 1px) !important;
  background-repeat: no-repeat;
  background-position: 0;
  background-size: 0% 100%;
  transition: 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.cid-uYVBoGaPOp .card-title1,
.cid-uYVBoGaPOp .title-wrap1 {
  color: #ffffff;
}
.cid-uYVBoGaPOp .card-title,
.cid-uYVBoGaPOp .title-wrap {
  color: #ffffff;
}
@media (max-width: 992px) {
  .cid-uYVBoGaPOp .mdpb {
    padding-bottom: 2rem;
  }
  .cid-uYVBoGaPOp .card-box {
    margin: auto auto 0rem 1rem;
  }
}
.cid-uYVBoGaPOp H3 {
  color: #ffffff;
}
.cid-t0hcIIqpa8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-t0gVENIiul {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0gVENIiul nav.navbar {
  position: fixed;
}
.cid-t0gVENIiul .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-t0gVENIiul .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0gVENIiul .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0gVENIiul .dropdown-item:hover,
.cid-t0gVENIiul .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t0gVENIiul .dropdown-item:hover span {
  color: white;
}
.cid-t0gVENIiul .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0gVENIiul .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0gVENIiul .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0gVENIiul .nav-link {
  position: relative;
}
.cid-t0gVENIiul .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .container {
    flex-wrap: nowrap;
  }
}
.cid-t0gVENIiul .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gVENIiul .dropdown-menu,
.cid-t0gVENIiul .navbar.opened {
  background: #ffffff !important;
}
.cid-t0gVENIiul .nav-item:focus,
.cid-t0gVENIiul .nav-link:focus {
  outline: none;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gVENIiul .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gVENIiul .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.opened {
  transition: all 0.3s;
}
.cid-t0gVENIiul .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0gVENIiul .navbar .navbar-logo img {
  width: auto;
}
.cid-t0gVENIiul .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gVENIiul .navbar.collapsed {
  justify-content: center;
}
.cid-t0gVENIiul .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gVENIiul .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gVENIiul .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gVENIiul .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gVENIiul .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-t0gVENIiul .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0gVENIiul .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gVENIiul .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0gVENIiul .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0gVENIiul .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gVENIiul .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0gVENIiul .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gVENIiul .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gVENIiul .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t0gVENIiul .dropdown-item.active,
.cid-t0gVENIiul .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gVENIiul .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gVENIiul .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0gVENIiul ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0gVENIiul button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t0gVENIiul .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t0gVENIiul a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar {
    height: 70px;
  }
  .cid-t0gVENIiul .navbar.opened {
    height: auto;
  }
  .cid-t0gVENIiul .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gVENIiul .container,
.cid-t0gVENIiul .container-fluid {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t0gVENIiul .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t0gVENIiul .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .contacts-menu {
    display: none;
  }
}
.cid-t0gVENIiul .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t0gVENIiul .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t0gVENIiul .icon-box:hover {
  transform: scale(1.1);
}
.cid-t0gVENIiul .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t0gVENIiul .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t0gVENIiul .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t0gVENIiul .card-text {
  color: #767676;
}
.cid-t0gVENIiul .card-title {
  color: #767676;
}
.cid-sne3zIGRJv {
  padding-top: 18rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-sne3zIGRJv img,
.cid-sne3zIGRJv .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-sne3zIGRJv .item:focus,
.cid-sne3zIGRJv span:focus {
  outline: none;
}
.cid-sne3zIGRJv .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-sne3zIGRJv .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-sne3zIGRJv .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-sne3zIGRJv .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-sne3zIGRJv .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-sne3zIGRJv .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-sne3zIGRJv .mbr-section-btn {
  margin-top: auto !important;
}
.cid-sne3zIGRJv .mbr-section-title {
  color: #106a14;
}
.cid-sne3zIGRJv .mbr-text,
.cid-sne3zIGRJv .mbr-section-btn {
  text-align: left;
}
.cid-sne3zIGRJv .item-title {
  text-align: left;
}
.cid-sne3zIGRJv .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-sne3zIGRJv .mbr-section-subtitle {
  color: #767676;
}
.cid-t0hcIIqpa8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-t0gVENIiul {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0gVENIiul nav.navbar {
  position: fixed;
}
.cid-t0gVENIiul .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-t0gVENIiul .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0gVENIiul .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0gVENIiul .dropdown-item:hover,
.cid-t0gVENIiul .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t0gVENIiul .dropdown-item:hover span {
  color: white;
}
.cid-t0gVENIiul .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0gVENIiul .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0gVENIiul .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0gVENIiul .nav-link {
  position: relative;
}
.cid-t0gVENIiul .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .container {
    flex-wrap: nowrap;
  }
}
.cid-t0gVENIiul .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gVENIiul .dropdown-menu,
.cid-t0gVENIiul .navbar.opened {
  background: #ffffff !important;
}
.cid-t0gVENIiul .nav-item:focus,
.cid-t0gVENIiul .nav-link:focus {
  outline: none;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gVENIiul .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gVENIiul .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.opened {
  transition: all 0.3s;
}
.cid-t0gVENIiul .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0gVENIiul .navbar .navbar-logo img {
  width: auto;
}
.cid-t0gVENIiul .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gVENIiul .navbar.collapsed {
  justify-content: center;
}
.cid-t0gVENIiul .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gVENIiul .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gVENIiul .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gVENIiul .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gVENIiul .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-t0gVENIiul .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0gVENIiul .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gVENIiul .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0gVENIiul .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0gVENIiul .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gVENIiul .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0gVENIiul .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gVENIiul .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gVENIiul .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t0gVENIiul .dropdown-item.active,
.cid-t0gVENIiul .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gVENIiul .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gVENIiul .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0gVENIiul ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0gVENIiul button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t0gVENIiul .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t0gVENIiul a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar {
    height: 70px;
  }
  .cid-t0gVENIiul .navbar.opened {
    height: auto;
  }
  .cid-t0gVENIiul .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gVENIiul .container,
.cid-t0gVENIiul .container-fluid {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t0gVENIiul .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t0gVENIiul .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .contacts-menu {
    display: none;
  }
}
.cid-t0gVENIiul .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t0gVENIiul .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t0gVENIiul .icon-box:hover {
  transform: scale(1.1);
}
.cid-t0gVENIiul .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t0gVENIiul .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t0gVENIiul .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t0gVENIiul .card-text {
  color: #767676;
}
.cid-t0gVENIiul .card-title {
  color: #767676;
}
.cid-sne6m0ShOp {
  padding-top: 20rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sne6m0ShOp .mbr-section-title {
  color: #106a14;
}
.cid-sne6m0ShOp .mbr-section-subtitle {
  color: #767676;
}
.cid-sne6mYSLxY {
  padding-top: 0rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sne6mYSLxY .line {
  background-color: #106a14;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-sne6mYSLxY .mbr-text {
  color: #767676;
}
.cid-t0hcIIqpa8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-t0gVENIiul {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0gVENIiul nav.navbar {
  position: fixed;
}
.cid-t0gVENIiul .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-t0gVENIiul .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0gVENIiul .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0gVENIiul .dropdown-item:hover,
.cid-t0gVENIiul .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t0gVENIiul .dropdown-item:hover span {
  color: white;
}
.cid-t0gVENIiul .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0gVENIiul .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0gVENIiul .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0gVENIiul .nav-link {
  position: relative;
}
.cid-t0gVENIiul .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .container {
    flex-wrap: nowrap;
  }
}
.cid-t0gVENIiul .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gVENIiul .dropdown-menu,
.cid-t0gVENIiul .navbar.opened {
  background: #ffffff !important;
}
.cid-t0gVENIiul .nav-item:focus,
.cid-t0gVENIiul .nav-link:focus {
  outline: none;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gVENIiul .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gVENIiul .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.opened {
  transition: all 0.3s;
}
.cid-t0gVENIiul .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0gVENIiul .navbar .navbar-logo img {
  width: auto;
}
.cid-t0gVENIiul .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gVENIiul .navbar.collapsed {
  justify-content: center;
}
.cid-t0gVENIiul .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gVENIiul .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gVENIiul .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gVENIiul .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gVENIiul .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-t0gVENIiul .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0gVENIiul .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gVENIiul .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0gVENIiul .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0gVENIiul .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gVENIiul .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0gVENIiul .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gVENIiul .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gVENIiul .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t0gVENIiul .dropdown-item.active,
.cid-t0gVENIiul .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gVENIiul .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gVENIiul .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0gVENIiul ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0gVENIiul button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t0gVENIiul .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t0gVENIiul a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar {
    height: 70px;
  }
  .cid-t0gVENIiul .navbar.opened {
    height: auto;
  }
  .cid-t0gVENIiul .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gVENIiul .container,
.cid-t0gVENIiul .container-fluid {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t0gVENIiul .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t0gVENIiul .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .contacts-menu {
    display: none;
  }
}
.cid-t0gVENIiul .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t0gVENIiul .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t0gVENIiul .icon-box:hover {
  transform: scale(1.1);
}
.cid-t0gVENIiul .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t0gVENIiul .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t0gVENIiul .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t0gVENIiul .card-text {
  color: #767676;
}
.cid-t0gVENIiul .card-title {
  color: #767676;
}
.cid-sn9jDSNqMA {
  padding-top: 24rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1280.jpg");
}
.cid-sn9jDSNqMA .mbr-text,
.cid-sn9jDSNqMA .mbr-section-btn {
  color: #232323;
}
.cid-sn9jDSNqMA .card-title,
.cid-sn9jDSNqMA .card-box {
  color: #ffffff;
}
.cid-sn9jDSNqMA .mbr-text,
.cid-sn9jDSNqMA .link-wrap {
  color: #ffffff;
}
.cid-sn9B0bEr7f {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sn9B0bEr7f .mbr-section-title {
  color: #106a14;
}
.cid-sn9B0bEr7f .mbr-section-subtitle {
  color: #767676;
}
.cid-sn9jjY7D7e {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sn9jjY7D7e H1 {
  color: #353535;
}
.cid-sn9jjY7D7e .mbr-text,
.cid-sn9jjY7D7e .mbr-section-btn {
  color: #767676;
}
.cid-sn9jjY7D7e .img-box {
  position: relative;
}
.cid-sn9jjY7D7e .card-ico span {
  font-size: 96px;
  color: #106a14;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-sn9jjY7D7e .card-ico .ico1 {
  background-color: #106a14;
}
.cid-sn9jjY7D7e .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1rem !important;
}
.cid-sn9jjY7D7e .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-sn9jjY7D7e .img1 {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: 1;
}
.cid-sn9jjY7D7e .img2 {
  position: absolute;
  bottom: 0;
  right: 3rem;
  z-index: 2;
}
.cid-sn9jjY7D7e img {
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
}
@media (max-width: 992px) {
  .cid-sn9jjY7D7e .img-box {
    height: 500px;
  }
  .cid-sn9jjY7D7e .img1 {
    left: 1rem;
  }
  .cid-sn9jjY7D7e .img2 {
    right: 1rem;
  }
  .cid-sn9jjY7D7e img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .cid-sn9jjY7D7e img {
    width: 60%;
  }
  .cid-sn9jjY7D7e .img-box {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .cid-sn9jjY7D7e .author-box {
    justify-content: center;
  }
  .cid-sn9jjY7D7e .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-sn9jjY7D7e .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-sn9jjY7D7e .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-sn9jjY7D7e .card-ico span {
    margin-right: 0rem;
  }
}
.cid-sn9jjY7D7e .author-box {
  display: flex;
  flex-direction: row;
}
.cid-sn9jjY7D7e .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-sn9jjY7D7e .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-sn9jjY7D7e h3,
.cid-sn9jjY7D7e h4 {
  margin: 0;
  padding: 0;
}
.cid-sn9jjY7D7e .card-title,
.cid-sn9jjY7D7e .mbr-section-subtitle {
  color: #232323;
}
.cid-sn9i5581MF {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sn9i5581MF .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sn9i5581MF .item:last-child .icon-box:before {
  display: none;
}
.cid-sn9i5581MF .item.last .icon-box:before {
  display: none;
}
.cid-sn9i5581MF .icon-box {
  background: #106a14;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-sn9i5581MF .icon-box {
    margin-right: 1rem;
  }
}
.cid-sn9i5581MF .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 38px;
  left: 50%;
  top: 113%;
  color: #106a14;
  transform: translate(-50%, 0);
}
.cid-sn9i5581MF span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sn9i5581MF .card {
    margin-bottom: 2rem;
  }
  .cid-sn9i5581MF .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-sn9i5581MF .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-sn9i5581MF .icon-box::before {
    top: 114%;
  }
}
.cid-sn9i5581MF .card-title,
.cid-sn9i5581MF .card-box {
  color: #106a14;
}
.cid-sn9i5581MF .mbr-text,
.cid-sn9i5581MF .mbr-section-btn {
  text-align: center;
  color: #353535;
}
.cid-sn9i5581MF .icon-text {
  text-align: left;
}
.cid-sncOoz3OIY {
  padding-top: 2rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-sncOoz3OIY .timeline-element {
  position: relative;
}
.cid-sncOoz3OIY .timelines-container {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column-reverse;
}
.cid-sncOoz3OIY .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-sncOoz3OIY .mbr-section-title,
.cid-sncOoz3OIY .mbr-section-subtitle,
.cid-sncOoz3OIY .timeline-date {
  text-align: center;
}
.cid-sncOoz3OIY .iconBackground {
  position: absolute;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 2px solid #106a14;
  margin-left: -9px;
}
@media (max-width: 767px) {
  .cid-sncOoz3OIY .iconBackground {
    left: 15px;
    top: 30px;
  }
}
@media (min-width: 768px) {
  .cid-sncOoz3OIY .iconBackground {
    top: 70px;
    left: 50%;
  }
}
.cid-sncOoz3OIY .row:after {
  content: "";
  position: absolute;
  background-color: #106a14;
  width: 2px;
}
@media (max-width: 767px) {
  .cid-sncOoz3OIY .row:after {
    height: calc(100% + 30px);
    top: 50px;
    left: 15px;
  }
}
@media (min-width: 768px) {
  .cid-sncOoz3OIY .row:after {
    height: calc(100% - 20px);
    top: 90px;
    left: 50%;
  }
}
@media (max-width: 767px) {
  .cid-sncOoz3OIY .timeline-date-wrapper,
  .cid-sncOoz3OIY .timeline-text-wrapper,
  .cid-sncOoz3OIY .image-wrapper {
    padding: 0rem;
    padding-left: 2rem;
  }
  .cid-sncOoz3OIY .mbr-timeline-date {
    text-align: center !important;
  }
  .cid-sncOoz3OIY .mbr-timeline-title {
    text-align: center;
    margin-top: 1rem;
  }
}
@media (max-width: 991px) and (min-width: 768px) {
  .cid-sncOoz3OIY .timeline-date-wrapper,
  .cid-sncOoz3OIY .timeline-text-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-sncOoz3OIY .timeline-date-wrapper,
  .cid-sncOoz3OIY .timeline-text-wrapper,
  .cid-sncOoz3OIY .image-wrapper {
    padding: 2rem;
  }
}
.cid-sncOoz3OIY .mbr-section-title {
  color: #106a14;
}
.cid-sncOoz3OIY .mbr-text {
  color: #353535;
  text-align: left;
}
.cid-sncOoz3OIY .mbr-timeline-date {
  color: #106a14;
}
.cid-sqSIMVPBvX {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sqSIMVPBvX .mbr-section-title {
  color: #106a14;
}
.cid-t1vtavhyai {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-t1vtavhyai img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-t1vtavhyai img:hover {
  transform: scale(1.1);
}
.cid-t1vtavhyai .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-t1vtavhyai h2 {
  padding: 0;
  margin: 0;
}
.cid-t1vtavhyai .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1vtavhyai .text-col {
  max-width: 850px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-t1vtavhyai .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-t1vtavhyai .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 600px;
  justify-content: space-between;
}
.cid-t1vtavhyai .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-t1vtavhyai .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-t1vtavhyai .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-t1vtavhyai .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-t1vtavhyai .text-col {
    padding: 2rem 1rem;
  }
}
.cid-t1vtavhyai H2 {
  color: #333333;
}
.cid-t1vtavhyai .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-sqSlGEwJjn {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqSlGEwJjn img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sqSlGEwJjn img:hover {
  transform: scale(1.1);
}
.cid-sqSlGEwJjn .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sqSlGEwJjn h2 {
  padding: 0;
  margin: 0;
}
.cid-sqSlGEwJjn .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sqSlGEwJjn .text-col {
  max-width: 850px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sqSlGEwJjn .mbr-section-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
.cid-sqSlGEwJjn .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 600px;
  justify-content: space-between;
}
.cid-sqSlGEwJjn .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-sqSlGEwJjn .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sqSlGEwJjn .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sqSlGEwJjn .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-sqSlGEwJjn .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sqSlGEwJjn H2 {
  color: #333333;
}
.cid-sqSlGEwJjn .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-sqSytEG0pW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-sqSytEG0pW img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sqSytEG0pW img:hover {
  transform: scale(1.1);
}
.cid-sqSytEG0pW .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sqSytEG0pW h2 {
  padding: 0;
  margin: 0;
}
.cid-sqSytEG0pW .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sqSytEG0pW .text-col {
  max-width: 850px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sqSytEG0pW .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-sqSytEG0pW .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 600px;
  justify-content: space-between;
}
.cid-sqSytEG0pW .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-sqSytEG0pW .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sqSytEG0pW .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sqSytEG0pW .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-sqSytEG0pW .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sqSytEG0pW H2 {
  color: #333333;
}
.cid-sqSytEG0pW .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-sqSCg3QQkk {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-sqSCg3QQkk img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-sqSCg3QQkk img:hover {
  transform: scale(1.1);
}
.cid-sqSCg3QQkk .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-sqSCg3QQkk h2 {
  padding: 0;
  margin: 0;
}
.cid-sqSCg3QQkk .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-sqSCg3QQkk .text-col {
  max-width: 850px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-sqSCg3QQkk .mbr-section-btn {
  position: absolute;
  bottom: 0;
  left: 0;
}
.cid-sqSCg3QQkk .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 600px;
  justify-content: space-between;
}
.cid-sqSCg3QQkk .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-sqSCg3QQkk .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-sqSCg3QQkk .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-sqSCg3QQkk .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-sqSCg3QQkk .text-col {
    padding: 2rem 1rem;
  }
}
.cid-sqSCg3QQkk H2 {
  color: #333333;
}
.cid-sqSCg3QQkk .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-snjsPsil05 {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-snjsPsil05 img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-snjsPsil05 img:hover {
  transform: scale(1.1);
}
.cid-snjsPsil05 .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-snjsPsil05 h2 {
  padding: 0;
  margin: 0;
}
.cid-snjsPsil05 .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snjsPsil05 .text-col {
  max-width: 850px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-snjsPsil05 .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-snjsPsil05 .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 600px;
  justify-content: space-between;
}
.cid-snjsPsil05 .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-snjsPsil05 .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-snjsPsil05 .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-snjsPsil05 .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-snjsPsil05 .text-col {
    padding: 2rem 1rem;
  }
}
.cid-snjsPsil05 H2 {
  color: #333333;
}
.cid-snjsPsil05 .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-t0hcIIqpa8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-t0gVENIiul {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0gVENIiul nav.navbar {
  position: fixed;
}
.cid-t0gVENIiul .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-t0gVENIiul .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0gVENIiul .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0gVENIiul .dropdown-item:hover,
.cid-t0gVENIiul .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t0gVENIiul .dropdown-item:hover span {
  color: white;
}
.cid-t0gVENIiul .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0gVENIiul .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0gVENIiul .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0gVENIiul .nav-link {
  position: relative;
}
.cid-t0gVENIiul .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .container {
    flex-wrap: nowrap;
  }
}
.cid-t0gVENIiul .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gVENIiul .dropdown-menu,
.cid-t0gVENIiul .navbar.opened {
  background: #ffffff !important;
}
.cid-t0gVENIiul .nav-item:focus,
.cid-t0gVENIiul .nav-link:focus {
  outline: none;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gVENIiul .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gVENIiul .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.opened {
  transition: all 0.3s;
}
.cid-t0gVENIiul .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0gVENIiul .navbar .navbar-logo img {
  width: auto;
}
.cid-t0gVENIiul .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gVENIiul .navbar.collapsed {
  justify-content: center;
}
.cid-t0gVENIiul .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gVENIiul .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gVENIiul .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gVENIiul .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gVENIiul .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-t0gVENIiul .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0gVENIiul .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gVENIiul .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0gVENIiul .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0gVENIiul .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gVENIiul .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0gVENIiul .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gVENIiul .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gVENIiul .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t0gVENIiul .dropdown-item.active,
.cid-t0gVENIiul .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gVENIiul .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gVENIiul .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0gVENIiul ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0gVENIiul button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t0gVENIiul .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t0gVENIiul a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar {
    height: 70px;
  }
  .cid-t0gVENIiul .navbar.opened {
    height: auto;
  }
  .cid-t0gVENIiul .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gVENIiul .container,
.cid-t0gVENIiul .container-fluid {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t0gVENIiul .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t0gVENIiul .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .contacts-menu {
    display: none;
  }
}
.cid-t0gVENIiul .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t0gVENIiul .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t0gVENIiul .icon-box:hover {
  transform: scale(1.1);
}
.cid-t0gVENIiul .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t0gVENIiul .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t0gVENIiul .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t0gVENIiul .card-text {
  color: #767676;
}
.cid-t0gVENIiul .card-title {
  color: #767676;
}
.cid-sn2SKuP4Rp {
  padding-top: 225px;
  padding-bottom: 60px;
  background-color: #ffffff;
}
.cid-sn2SKuP4Rp .nav-tabs .nav-item.open .nav-link:focus,
.cid-sn2SKuP4Rp .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sn2SKuP4Rp .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 0px solid lightgray;
}
.cid-sn2SKuP4Rp .nav-tabs .nav-item {
  padding: .0rem;
}
.cid-sn2SKuP4Rp .nav-link {
  padding: .4rem 0.8rem;
}
.cid-sn2SKuP4Rp .nav-tabs .nav-link {
  color: #bbbbbb;
  font-style: normal;
  font-weight: 500;
  transition: all .5s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid #bbbbbb;
}
.cid-sn2SKuP4Rp .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #2ca931;
  border-bottom: 2px solid #2ca931;
}
.cid-sn2SKuP4Rp .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #2ca931;
  font-style: normal;
  border-bottom: 2px solid #2ca931;
}
.cid-sn2SKuP4Rp P {
  color: #767676;
  text-align: left;
}
@media (max-width: 576px) {
  .cid-sn2SKuP4Rp .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-sn2SKuP4Rp .mbr-text,
  .cid-sn2SKuP4Rp .nav-link {
    text-align: center;
  }
}
.cid-t0hcIIqpa8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-t0gVENIiul {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0gVENIiul nav.navbar {
  position: fixed;
}
.cid-t0gVENIiul .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-t0gVENIiul .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0gVENIiul .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0gVENIiul .dropdown-item:hover,
.cid-t0gVENIiul .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t0gVENIiul .dropdown-item:hover span {
  color: white;
}
.cid-t0gVENIiul .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0gVENIiul .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0gVENIiul .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0gVENIiul .nav-link {
  position: relative;
}
.cid-t0gVENIiul .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .container {
    flex-wrap: nowrap;
  }
}
.cid-t0gVENIiul .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gVENIiul .dropdown-menu,
.cid-t0gVENIiul .navbar.opened {
  background: #ffffff !important;
}
.cid-t0gVENIiul .nav-item:focus,
.cid-t0gVENIiul .nav-link:focus {
  outline: none;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gVENIiul .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gVENIiul .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.opened {
  transition: all 0.3s;
}
.cid-t0gVENIiul .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0gVENIiul .navbar .navbar-logo img {
  width: auto;
}
.cid-t0gVENIiul .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gVENIiul .navbar.collapsed {
  justify-content: center;
}
.cid-t0gVENIiul .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gVENIiul .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gVENIiul .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gVENIiul .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gVENIiul .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-t0gVENIiul .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0gVENIiul .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gVENIiul .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0gVENIiul .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0gVENIiul .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gVENIiul .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0gVENIiul .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gVENIiul .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gVENIiul .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t0gVENIiul .dropdown-item.active,
.cid-t0gVENIiul .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gVENIiul .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gVENIiul .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0gVENIiul ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0gVENIiul button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t0gVENIiul .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t0gVENIiul a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar {
    height: 70px;
  }
  .cid-t0gVENIiul .navbar.opened {
    height: auto;
  }
  .cid-t0gVENIiul .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gVENIiul .container,
.cid-t0gVENIiul .container-fluid {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t0gVENIiul .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t0gVENIiul .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .contacts-menu {
    display: none;
  }
}
.cid-t0gVENIiul .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t0gVENIiul .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t0gVENIiul .icon-box:hover {
  transform: scale(1.1);
}
.cid-t0gVENIiul .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t0gVENIiul .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t0gVENIiul .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t0gVENIiul .card-text {
  color: #767676;
}
.cid-t0gVENIiul .card-title {
  color: #767676;
}
.cid-sn36EqLENg {
  padding-top: 225px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-sn36EqLENg .nav-tabs .nav-item.open .nav-link:focus,
.cid-sn36EqLENg .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-sn36EqLENg .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 0px solid lightgray;
}
.cid-sn36EqLENg .nav-tabs .nav-item {
  padding: .0rem;
}
.cid-sn36EqLENg .nav-link {
  padding: .4rem 0.8rem;
}
.cid-sn36EqLENg .nav-tabs .nav-link {
  color: #232323;
  font-style: normal;
  font-weight: 500;
  transition: all .5s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid #232323;
}
.cid-sn36EqLENg .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #106a14;
  border-bottom: 2px solid #106a14;
}
.cid-sn36EqLENg .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #106a14;
  font-style: normal;
  border-bottom: 2px solid #106a14;
}
.cid-sn36EqLENg P {
  color: #767676;
}
@media (max-width: 576px) {
  .cid-sn36EqLENg .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-sn36EqLENg .mbr-text,
  .cid-sn36EqLENg .nav-link {
    text-align: center;
  }
}
.cid-tCqvV7VDNu {
  padding-top: 0px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-tCqvV7VDNu .nav-tabs .nav-item.open .nav-link:focus,
.cid-tCqvV7VDNu .nav-tabs .nav-link.active:focus {
  outline: none;
}
.cid-tCqvV7VDNu .nav-tabs {
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  border-bottom: 0px solid lightgray;
}
.cid-tCqvV7VDNu .nav-tabs .nav-item {
  padding: .0rem;
}
.cid-tCqvV7VDNu .nav-link {
  padding: .4rem 0.8rem;
}
.cid-tCqvV7VDNu .nav-tabs .nav-link {
  color: #232323;
  font-style: normal;
  font-weight: 500;
  transition: all .5s;
  background: transparent;
  border: none;
  border-radius: 0 !important;
  border-bottom: 2px solid #232323;
}
.cid-tCqvV7VDNu .nav-tabs .nav-link:hover {
  cursor: pointer;
  color: #106a14;
  border-bottom: 2px solid #106a14;
}
.cid-tCqvV7VDNu .nav-tabs .nav-link.active {
  font-weight: 500;
  color: #106a14;
  font-style: normal;
  border-bottom: 2px solid #106a14;
}
.cid-tCqvV7VDNu P {
  color: #767676;
}
@media (max-width: 576px) {
  .cid-tCqvV7VDNu .nav-tabs {
    flex-direction: column;
    justify-content: center;
  }
  .cid-tCqvV7VDNu .mbr-text,
  .cid-tCqvV7VDNu .nav-link {
    text-align: center;
  }
}
.cid-t0hcIIqpa8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-t0gVENIiul {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0gVENIiul nav.navbar {
  position: fixed;
}
.cid-t0gVENIiul .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-t0gVENIiul .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0gVENIiul .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0gVENIiul .dropdown-item:hover,
.cid-t0gVENIiul .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t0gVENIiul .dropdown-item:hover span {
  color: white;
}
.cid-t0gVENIiul .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0gVENIiul .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0gVENIiul .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0gVENIiul .nav-link {
  position: relative;
}
.cid-t0gVENIiul .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .container {
    flex-wrap: nowrap;
  }
}
.cid-t0gVENIiul .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gVENIiul .dropdown-menu,
.cid-t0gVENIiul .navbar.opened {
  background: #ffffff !important;
}
.cid-t0gVENIiul .nav-item:focus,
.cid-t0gVENIiul .nav-link:focus {
  outline: none;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gVENIiul .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gVENIiul .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.opened {
  transition: all 0.3s;
}
.cid-t0gVENIiul .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0gVENIiul .navbar .navbar-logo img {
  width: auto;
}
.cid-t0gVENIiul .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gVENIiul .navbar.collapsed {
  justify-content: center;
}
.cid-t0gVENIiul .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gVENIiul .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gVENIiul .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gVENIiul .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gVENIiul .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-t0gVENIiul .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0gVENIiul .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gVENIiul .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0gVENIiul .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0gVENIiul .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gVENIiul .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0gVENIiul .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gVENIiul .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gVENIiul .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t0gVENIiul .dropdown-item.active,
.cid-t0gVENIiul .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gVENIiul .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gVENIiul .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0gVENIiul ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0gVENIiul button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t0gVENIiul .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t0gVENIiul a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar {
    height: 70px;
  }
  .cid-t0gVENIiul .navbar.opened {
    height: auto;
  }
  .cid-t0gVENIiul .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gVENIiul .container,
.cid-t0gVENIiul .container-fluid {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t0gVENIiul .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t0gVENIiul .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .contacts-menu {
    display: none;
  }
}
.cid-t0gVENIiul .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t0gVENIiul .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t0gVENIiul .icon-box:hover {
  transform: scale(1.1);
}
.cid-t0gVENIiul .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t0gVENIiul .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t0gVENIiul .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t0gVENIiul .card-text {
  color: #767676;
}
.cid-t0gVENIiul .card-title {
  color: #767676;
}
.cid-sn3eMjyidc {
  padding-top: 18rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1-1920x1280.jpeg");
}
.cid-sn3eMjyidc .mbr-text,
.cid-sn3eMjyidc .mbr-section-btn {
  color: #232323;
}
.cid-sn3eMjyidc .card-title,
.cid-sn3eMjyidc .card-box {
  color: #ffffff;
}
.cid-sn3eMjyidc .mbr-text,
.cid-sn3eMjyidc .link-wrap {
  color: #ffffff;
}
.cid-sndUBmeOJH {
  padding-top: 100px;
  padding-bottom: 45px;
  background-color: #ffffff;
}
.cid-sndUBmeOJH .mbr-section-subtitle {
  color: #767676;
}
.cid-sndUBmeOJH .item-image {
  position: relative;
}
@media (min-width: 992px) {
  .cid-sndUBmeOJH .container {
    max-width: 1600px;
  }
}
.cid-sndUBmeOJH .container {
  padding: 0 2rem;
}
.cid-sndUBmeOJH .mbr-iconfont {
  color: #ffffff !important;
}
.cid-sndUBmeOJH .item-caption {
  padding: 3rem;
  padding-bottom: 1rem;
}
.cid-sndUBmeOJH .item-social {
  position: absolute;
  left: 50%;
  align-items: center;
  right: 50%;
  transform: translate(-50%, -50%);
  bottom: -3rem;
  opacity: 0;
  transition: all 0.3s;
  width: 100%;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 20%, #000000 200%);
  height: 6rem;
}
.cid-sndUBmeOJH .bg1 {
  background: #f5f5f5;
}
.cid-sndUBmeOJH .bg2 {
  background: #fafafa;
}
.cid-sndUBmeOJH .bg3 {
  background: #f5f5f5;
}
.cid-sndUBmeOJH .bg4 {
  background: #fafafa;
}
.cid-sndUBmeOJH .team-item {
  padding-top: 1rem;
  padding-bottom: 1rem;
  height: fit-content;
  transition: all .2s;
  margin-bottom: 0rem;
}
.cid-sndUBmeOJH .team-item:hover .item-social {
  opacity: 1;
}
.cid-sndUBmeOJH .team-item .item-image img {
  width: 100%;
}
.cid-sndUBmeOJH .team-item .item-name p {
  margin-bottom: 0;
}
.cid-sndUBmeOJH .team-item .item-role p {
  margin-bottom: 0;
}
.cid-sndUBmeOJH .team-item .item-social {
  display: -webkit-flex;
  flex-wrap: wrap;
  justify-content: center;
  -webkit-flex-wrap: wrap;
  -webkit-justify-content: center;
}
.cid-sndUBmeOJH .team-item .item-social .socicon {
  color: #232323;
  font-size: 17px;
}
.cid-sndUBmeOJH .media-row {
  display: -webkit-flex;
  justify-content: center;
  -webkit-justify-content: center;
}
@media (max-width: 767px) {
  .cid-sndUBmeOJH .item-caption {
    padding: 2rem 1rem;
  }
  .cid-sndUBmeOJH .item-social {
    opacity: 1;
  }
}
.cid-sndUBmeOJH H2 {
  color: #106a14;
}
.cid-sndUBmeOJH .item-role {
  color: #353535;
}
.cid-sndUBmeOJH .item-name {
  color: #353535;
}
.cid-sndUBmeOJH .item-text {
  color: #353535;
}
.cid-snqjTgGXhX {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #efeeee;
}
.cid-snqjTgGXhX img {
  width: 100%;
  height: 100%;
  transition: 5s;
  object-fit: cover;
  margin: auto;
}
.cid-snqjTgGXhX img:hover {
  transform: scale(1.1);
}
.cid-snqjTgGXhX .img-col {
  padding: 0;
  overflow: hidden;
  text-align: center;
  justify-content: center;
  position: relative;
}
.cid-snqjTgGXhX h2 {
  padding: 0;
  margin: 0;
}
.cid-snqjTgGXhX .title-wrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-snqjTgGXhX .text-col {
  max-width: 850px;
  margin: auto;
  padding: 6rem 6rem;
}
.cid-snqjTgGXhX .mbr-section-btn {
  position: absolute;
  bottom: 0;
  right: 0;
}
.cid-snqjTgGXhX .mbr-section-btn .btn {
  margin: 0rem!important;
  min-width: 600px;
  justify-content: space-between;
}
.cid-snqjTgGXhX .mbr-section-btn .btn .mbr-iconfont {
  order: 2;
}
.cid-snqjTgGXhX .number {
  border-top: 2px solid currentColor;
  padding-top: 0.6rem;
  margin-right: 3rem;
  margin-bottom: 0;
  margin-top: 0.5rem;
}
@media (max-width: 992px) {
  .cid-snqjTgGXhX .text-col {
    padding: 4rem 4rem;
  }
}
@media (max-width: 767px) {
  .cid-snqjTgGXhX .btn {
    min-width: 200px!important;
    padding: 0.6rem 0.8rem!important;
  }
  .cid-snqjTgGXhX .text-col {
    padding: 2rem 1rem;
  }
}
.cid-snqjTgGXhX H2 {
  color: #333333;
}
.cid-snqjTgGXhX .mbr-text {
  color: #767676;
  text-align: left;
}
.cid-t0hcIIqpa8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-t0gVENIiul {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0gVENIiul nav.navbar {
  position: fixed;
}
.cid-t0gVENIiul .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-t0gVENIiul .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0gVENIiul .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0gVENIiul .dropdown-item:hover,
.cid-t0gVENIiul .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t0gVENIiul .dropdown-item:hover span {
  color: white;
}
.cid-t0gVENIiul .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0gVENIiul .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0gVENIiul .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0gVENIiul .nav-link {
  position: relative;
}
.cid-t0gVENIiul .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .container {
    flex-wrap: nowrap;
  }
}
.cid-t0gVENIiul .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gVENIiul .dropdown-menu,
.cid-t0gVENIiul .navbar.opened {
  background: #ffffff !important;
}
.cid-t0gVENIiul .nav-item:focus,
.cid-t0gVENIiul .nav-link:focus {
  outline: none;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gVENIiul .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gVENIiul .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.opened {
  transition: all 0.3s;
}
.cid-t0gVENIiul .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0gVENIiul .navbar .navbar-logo img {
  width: auto;
}
.cid-t0gVENIiul .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gVENIiul .navbar.collapsed {
  justify-content: center;
}
.cid-t0gVENIiul .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gVENIiul .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gVENIiul .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gVENIiul .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gVENIiul .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-t0gVENIiul .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0gVENIiul .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gVENIiul .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0gVENIiul .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0gVENIiul .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gVENIiul .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0gVENIiul .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gVENIiul .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gVENIiul .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t0gVENIiul .dropdown-item.active,
.cid-t0gVENIiul .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gVENIiul .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gVENIiul .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0gVENIiul ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0gVENIiul button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t0gVENIiul .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t0gVENIiul a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar {
    height: 70px;
  }
  .cid-t0gVENIiul .navbar.opened {
    height: auto;
  }
  .cid-t0gVENIiul .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gVENIiul .container,
.cid-t0gVENIiul .container-fluid {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t0gVENIiul .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t0gVENIiul .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .contacts-menu {
    display: none;
  }
}
.cid-t0gVENIiul .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t0gVENIiul .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t0gVENIiul .icon-box:hover {
  transform: scale(1.1);
}
.cid-t0gVENIiul .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t0gVENIiul .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t0gVENIiul .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t0gVENIiul .card-text {
  color: #767676;
}
.cid-t0gVENIiul .card-title {
  color: #767676;
}
.cid-svRIIHwEVo {
  padding-top: 24rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1275.jpg");
}
.cid-svRIIHwEVo .mbr-text,
.cid-svRIIHwEVo .mbr-section-btn {
  color: #232323;
}
.cid-svRIIHwEVo .card-title,
.cid-svRIIHwEVo .card-box {
  color: #ffffff;
}
.cid-svRIIHwEVo .mbr-text,
.cid-svRIIHwEVo .link-wrap {
  color: #ffffff;
}
.cid-svRIIHIu9h {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-svRIIHIu9h .mbr-section-title {
  color: #106a14;
}
.cid-svRIIHIu9h .mbr-section-subtitle {
  color: #767676;
}
.cid-svRIIHTaH1 {
  padding-top: 45px;
  padding-bottom: 75px;
  background-color: #ffffff;
}
.cid-svRIIHTaH1 H1 {
  color: #353535;
}
.cid-svRIIHTaH1 .mbr-text,
.cid-svRIIHTaH1 .mbr-section-btn {
  color: #767676;
}
.cid-svRIIHTaH1 .img-box {
  position: relative;
}
.cid-svRIIHTaH1 .card-ico span {
  font-size: 96px;
  color: #106a14;
  padding: 0.6rem;
  margin-right: 1.5rem;
  border-radius: 8px;
}
.cid-svRIIHTaH1 .card-ico .ico1 {
  background-color: #106a14;
}
.cid-svRIIHTaH1 .mbr-iconfont {
  transition: all 0.3s;
  color: #ffffff !important;
  font-size: 1rem !important;
}
.cid-svRIIHTaH1 .card {
  display: flex;
  flex-direction: row;
  max-width: 350px;
}
.cid-svRIIHTaH1 .img1 {
  position: absolute;
  top: 0;
  left: 3rem;
  z-index: 1;
}
.cid-svRIIHTaH1 .img2 {
  position: absolute;
  bottom: 0;
  right: 3rem;
  z-index: 2;
}
.cid-svRIIHTaH1 img {
  width: 48%;
  border-radius: 10px;
  box-shadow: 0 10px 55px 5px rgba(255, 153, 153, 0.35);
}
@media (max-width: 992px) {
  .cid-svRIIHTaH1 .img-box {
    height: 500px;
  }
  .cid-svRIIHTaH1 .img1 {
    left: 1rem;
  }
  .cid-svRIIHTaH1 .img2 {
    right: 1rem;
  }
  .cid-svRIIHTaH1 img {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .cid-svRIIHTaH1 img {
    width: 60%;
  }
  .cid-svRIIHTaH1 .img-box {
    height: 300px;
  }
}
@media (max-width: 576px) {
  .cid-svRIIHTaH1 .author-box {
    justify-content: center;
  }
  .cid-svRIIHTaH1 .card {
    flex-direction: column;
    align-items: center;
    padding: 1rem 0!important;
  }
  .cid-svRIIHTaH1 .card .card-ico {
    margin-bottom: 2rem;
  }
  .cid-svRIIHTaH1 .card:hover {
    box-shadow: none;
    transform: none;
  }
  .cid-svRIIHTaH1 .card-ico span {
    margin-right: 0rem;
  }
}
.cid-svRIIHTaH1 .author-box {
  display: flex;
  flex-direction: row;
}
.cid-svRIIHTaH1 .face {
  width: 80px;
  height: 80px;
  border-radius: 100%;
  box-shadow: none;
  margin: 0rem;
}
.cid-svRIIHTaH1 .author {
  padding-left: 2rem;
  margin: auto 0;
}
.cid-svRIIHTaH1 h3,
.cid-svRIIHTaH1 h4 {
  margin: 0;
  padding: 0;
}
.cid-svRIIHTaH1 .card-title,
.cid-svRIIHTaH1 .mbr-section-subtitle {
  color: #232323;
}
.cid-svRIIIfXRB {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #fafafa;
}
.cid-svRIIIfXRB .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-svRIIIfXRB .item:last-child .icon-box:before {
  display: none;
}
.cid-svRIIIfXRB .item.last .icon-box:before {
  display: none;
}
.cid-svRIIIfXRB .icon-box {
  background: #106a14;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 768px) {
  .cid-svRIIIfXRB .icon-box {
    margin-right: 1rem;
  }
}
.cid-svRIIIfXRB .icon-box::before {
  content: "\e925";
  font-family: Moririse2 !important;
  position: absolute;
  font-size: 38px;
  left: 50%;
  top: 113%;
  color: #106a14;
  transform: translate(-50%, 0);
}
.cid-svRIIIfXRB span {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-svRIIIfXRB .card {
    margin-bottom: 2rem;
  }
  .cid-svRIIIfXRB .card-wrapper {
    margin-bottom: 2rem;
  }
  .cid-svRIIIfXRB .icon-box::before {
    top: 141%;
  }
}
@media (max-width: 768px) {
  .cid-svRIIIfXRB .icon-box::before {
    top: 114%;
  }
}
.cid-svRIIIfXRB .card-title,
.cid-svRIIIfXRB .card-box {
  color: #106a14;
}
.cid-svRIIIfXRB .mbr-text,
.cid-svRIIIfXRB .mbr-section-btn {
  text-align: center;
  color: #353535;
}
.cid-svRIIIfXRB .icon-text {
  text-align: left;
}
.cid-svT7iXwyRL {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
@media (max-width: 991px) {
  .cid-svT7iXwyRL .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-svT7iXwyRL img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-svT7iXwyRL .text-wrapper {
    padding: 2rem;
  }
}
.cid-svT7iXwyRL .mbr-section-title {
  color: #106a14;
}
.cid-svRWCZ9Meg {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-svRWCZ9Meg ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-svRWCZ9Meg li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-svRWCZ9Meg ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #106a14;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-svRWCZ9Meg H3 {
  color: #106a14;
}
.cid-svRIIJEqG5 {
  padding-top: 1rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-svRIIJEqG5 .mbr-section-title {
  color: #106a14;
}
.cid-svS3VN9fkW {
  padding-top: 0px;
  padding-bottom: 0px;
  background-color: #ffffff;
}
.cid-svS3VN9fkW .listico {
  padding-right: 1rem;
  font-size: 1.4rem;
}
.cid-svS3VN9fkW .navbar-logo {
  width: 150px;
  margin-bottom: 10px;
  margin: auto;
}
.cid-svS3VN9fkW .btn {
  margin: 0 !important;
  height: 55px;
}
.cid-svS3VN9fkW .form-group {
  padding-right: 0;
}
.cid-svS3VN9fkW .card {
  padding: 3rem 8rem;
}
.cid-svS3VN9fkW .google-map {
  height: 100%;
  min-height: 25rem;
  position: relative;
  width: 100%;
}
.cid-svS3VN9fkW .google-map iframe {
  min-height: 100%;
  width: 100%;
}
.cid-svS3VN9fkW .google-map [data-state-details] {
  color: #6b6763;
  font-family: Montserrat;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-svS3VN9fkW .google-map[data-state] {
  background: #e9e5dc;
}
.cid-svS3VN9fkW .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-svS3VN9fkW .map-placeholder {
  display: none;
}
.cid-svS3VN9fkW .btn-primary {
  border: 1px solid #106a14 !important;
}
.cid-svS3VN9fkW .btn-primary:hover {
  border: 1px solid #106a14 !important;
}
.cid-svS3VN9fkW .stripe {
  border-bottom: 1px solid #0087ab;
  max-width: 100%;
  position: relative;
  margin-bottom: 0.5rem;
}
.cid-svS3VN9fkW .form-control {
  background: transparent;
  padding: 0.5rem 1rem;
  min-height: 55px;
  border-radius: 0px;
}
.cid-svS3VN9fkW .stripe:before {
  content: "";
  position: absolute;
  top: 100%;
  right: 0;
  border-bottom: 1px solid #e9e9e9;
  width: 85%;
}
.cid-svS3VN9fkW .mbr-text {
  color: #444;
}
.cid-svS3VN9fkW h5 {
  margin-bottom: 0;
}
.cid-svS3VN9fkW .navbar-brand {
  margin: auto;
  width: 100%;
  text-align: center;
}
.cid-svS3VN9fkW .list-item {
  display: -webkit-flex;
  padding-top: 10px;
  padding-bottom: 10px;
  align-items: center;
  -webkit-align-items: center;
}
.cid-svS3VN9fkW .tips {
  height: 90px;
  width: 90px;
  border-radius: 6px;
  margin: 4px;
}
.cid-svS3VN9fkW .socicon {
  font-size: 1.3rem;
  background: #e9e9e9;
  border-radius: 100%;
  width: 38px;
  height: 38px;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}
.cid-svS3VN9fkW .social-list {
  display: flex;
  padding-left: 0;
  margin-bottom: 0;
  list-style: none;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
.cid-svS3VN9fkW .social-list .soc-item {
  margin: 0 0.3rem;
}
.cid-svS3VN9fkW .social-list a {
  margin: 0;
  -webkit-transition: 0.2s linear;
  transition: 0.2s linear;
}
.cid-svS3VN9fkW .social-list a:hover {
  opacity: 0.4;
}
.cid-svS3VN9fkW .media-container-row > div {
  padding: 0px;
}
.cid-svS3VN9fkW .text2 {
  color: #000000;
  text-align: left;
}
.cid-svS3VN9fkW .group-title {
  text-align: left;
  color: #767676;
  padding-bottom: 0.2rem;
}
.cid-svS3VN9fkW .links {
  color: #656565;
  line-height: 1.6;
  text-align: left;
}
@media (max-width: 1200px) {
  .cid-svS3VN9fkW .card {
    padding: 3rem;
  }
}
@media (max-width: 991px) {
  .cid-svS3VN9fkW .col-sm-12 {
    margin-bottom: 2rem;
  }
  .cid-svS3VN9fkW h3 {
    margin-bottom: 10px;
  }
}
@media (max-width: 576px) {
  .cid-svS3VN9fkW .form-group {
    max-width: 180px;
  }
  .cid-svS3VN9fkW .card {
    padding: 2rem 1rem;
  }
}
.cid-svS3VN9fkW .links span {
  color: #9e9e9e;
}
.cid-svS3VN9fkW .logo-title,
.cid-svS3VN9fkW .logo-sub-title {
  text-align: center;
}
.cid-svS3VN9fkW .logo-sub-title i {
  color: #9e9e9e;
}
.cid-svS3X2G8Jj {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #656bc4;
}
.cid-svS3X2G8Jj img {
  width: 125px;
  margin: auto;
  filter: brightness(250%);
}
.cid-svS3X2G8Jj .card {
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.cid-svS3X2G8Jj .card:hover {
  opacity: 0.9;
}
.cid-svS3X2G8Jj H1 {
  color: #ffffff;
}
.cid-svS3X2G8Jj .row {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-svS3X2G8Jj .col-lg-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-svS3X2G8Jj .row {
  justify-content: center!important;
}
.cid-t0hcIIqpa8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-t0gVENIiul {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0gVENIiul nav.navbar {
  position: fixed;
}
.cid-t0gVENIiul .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-t0gVENIiul .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0gVENIiul .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0gVENIiul .dropdown-item:hover,
.cid-t0gVENIiul .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t0gVENIiul .dropdown-item:hover span {
  color: white;
}
.cid-t0gVENIiul .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0gVENIiul .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0gVENIiul .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0gVENIiul .nav-link {
  position: relative;
}
.cid-t0gVENIiul .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .container {
    flex-wrap: nowrap;
  }
}
.cid-t0gVENIiul .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gVENIiul .dropdown-menu,
.cid-t0gVENIiul .navbar.opened {
  background: #ffffff !important;
}
.cid-t0gVENIiul .nav-item:focus,
.cid-t0gVENIiul .nav-link:focus {
  outline: none;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gVENIiul .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gVENIiul .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.opened {
  transition: all 0.3s;
}
.cid-t0gVENIiul .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0gVENIiul .navbar .navbar-logo img {
  width: auto;
}
.cid-t0gVENIiul .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gVENIiul .navbar.collapsed {
  justify-content: center;
}
.cid-t0gVENIiul .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gVENIiul .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gVENIiul .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gVENIiul .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gVENIiul .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-t0gVENIiul .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0gVENIiul .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gVENIiul .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0gVENIiul .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0gVENIiul .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gVENIiul .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0gVENIiul .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gVENIiul .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gVENIiul .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t0gVENIiul .dropdown-item.active,
.cid-t0gVENIiul .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gVENIiul .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gVENIiul .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0gVENIiul ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0gVENIiul button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t0gVENIiul .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t0gVENIiul a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar {
    height: 70px;
  }
  .cid-t0gVENIiul .navbar.opened {
    height: auto;
  }
  .cid-t0gVENIiul .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gVENIiul .container,
.cid-t0gVENIiul .container-fluid {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t0gVENIiul .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t0gVENIiul .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .contacts-menu {
    display: none;
  }
}
.cid-t0gVENIiul .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t0gVENIiul .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t0gVENIiul .icon-box:hover {
  transform: scale(1.1);
}
.cid-t0gVENIiul .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t0gVENIiul .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t0gVENIiul .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t0gVENIiul .card-text {
  color: #767676;
}
.cid-t0gVENIiul .card-title {
  color: #767676;
}
.cid-sYXwmsfR8m {
  padding-top: 24rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/escuela2-1980x900.jpg");
}
.cid-sYXwmsfR8m .mbr-text,
.cid-sYXwmsfR8m .mbr-section-btn {
  color: #232323;
}
.cid-sYXwmsfR8m .card-title,
.cid-sYXwmsfR8m .card-box {
  color: #ffffff;
}
.cid-sYXwmsfR8m .mbr-text,
.cid-sYXwmsfR8m .link-wrap {
  color: #ffffff;
}
.cid-sYXwmsyKnI {
  padding-top: 2rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-sYXwmsyKnI .mbr-section-title {
  color: #106a14;
}
.cid-sYXwmsyKnI .mbr-section-subtitle {
  color: #353535;
  text-align: left;
}
.cid-sYXwmsyKnI .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-sYXAkYEUX0 {
  padding-top: 1rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sYXAkYEUX0 .counter-container ul {
  margin: 0;
  list-style: none;
  padding-left: 2.5rem;
}
.cid-sYXAkYEUX0 .counter-container ul li {
  margin-bottom: 1rem;
  list-style: none;
  position: relative;
  padding-left: 1rem;
}
.cid-sYXAkYEUX0 .counter-container ul li:before {
  position: absolute;
  left: -40px;
  content: "";
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  background-color: #106a14;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-top: 5px;
  content: "✓";
}
.cid-sYXD9e6WnL {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sYXD9e6WnL .row {
  flex-direction: row-reverse;
}
.cid-sYXD9e6WnL .video-wrapper iframe {
  width: 100%;
}
.cid-sYXD9e6WnL .mbr-section-title,
.cid-sYXD9e6WnL .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-sYXD9e6WnL .text-wrapper {
    padding: 2rem;
  }
}
.cid-sYXD9e6WnL .mbr-section-title {
  color: #106a14;
}
.cid-sYXD9e6WnL .mbr-section-subtitle {
  color: #106a14;
}
.cid-sYXFdQ5jPo {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYXFdQ5jPo ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sYXFdQ5jPo li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sYXFdQ5jPo ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #106a14;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sYXFdQ5jPo H3 {
  color: #106a14;
}
.cid-sYXFdQ5jPo .list {
  text-align: left;
}
.cid-sYXJu5ne6p {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-sYXJu5ne6p ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sYXJu5ne6p li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sYXJu5ne6p ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #106a14;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sYXJu5ne6p H3 {
  color: #106a14;
}
.cid-sYXKC0rWVM {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYXKC0rWVM ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sYXKC0rWVM li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sYXKC0rWVM ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #106a14;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sYXKC0rWVM H3 {
  color: #106a14;
}
.cid-sYXLrREYed {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYXLrREYed ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sYXLrREYed li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sYXLrREYed ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #106a14;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sYXLrREYed H3 {
  color: #106a14;
}
.cid-sYXMyzaWyN {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYXMyzaWyN ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sYXMyzaWyN li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sYXMyzaWyN ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #106a14;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sYXMyzaWyN H3 {
  color: #106a14;
}
.cid-sYXNZDUGaJ {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-sYXNZDUGaJ ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-sYXNZDUGaJ li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-sYXNZDUGaJ ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #106a14;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-sYXNZDUGaJ H3 {
  color: #106a14;
}
.cid-sYXPwBE9VO {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-sYXPwBE9VO .item {
  display: flex;
  align-items: center;
  margin-bottom: 2rem;
}
.cid-sYXPwBE9VO .icon-box {
  background: #106a14;
  width: 60px;
  min-width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 1rem;
  display: flex;
  justify-content: center;
  align-items: center;
}
.cid-sYXPwBE9VO .mbr-iconfont {
  font-size: 2rem;
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-sYXPwBE9VO .card {
    margin-bottom: 2rem;
  }
  .cid-sYXPwBE9VO .card-wrapper {
    margin-bottom: 2rem;
  }
}
.cid-sYXPwBE9VO .card-title,
.cid-sYXPwBE9VO .card-box {
  color: #106a14;
}
.cid-sYXPwBE9VO .mbr-text,
.cid-sYXPwBE9VO .mbr-section-btn {
  color: #353535;
}
.cid-sYXwmuWX6Z {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-sYXwmuWX6Z .mbr-section-title {
  color: #106a14;
}
.cid-t0hcIIqpa8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-t0gVENIiul {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0gVENIiul nav.navbar {
  position: fixed;
}
.cid-t0gVENIiul .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-t0gVENIiul .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0gVENIiul .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0gVENIiul .dropdown-item:hover,
.cid-t0gVENIiul .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t0gVENIiul .dropdown-item:hover span {
  color: white;
}
.cid-t0gVENIiul .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0gVENIiul .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0gVENIiul .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0gVENIiul .nav-link {
  position: relative;
}
.cid-t0gVENIiul .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .container {
    flex-wrap: nowrap;
  }
}
.cid-t0gVENIiul .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gVENIiul .dropdown-menu,
.cid-t0gVENIiul .navbar.opened {
  background: #ffffff !important;
}
.cid-t0gVENIiul .nav-item:focus,
.cid-t0gVENIiul .nav-link:focus {
  outline: none;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0gVENIiul .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0gVENIiul .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gVENIiul .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gVENIiul .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.opened {
  transition: all 0.3s;
}
.cid-t0gVENIiul .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0gVENIiul .navbar .navbar-logo img {
  width: auto;
}
.cid-t0gVENIiul .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gVENIiul .navbar.collapsed {
  justify-content: center;
}
.cid-t0gVENIiul .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gVENIiul .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gVENIiul .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gVENIiul .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gVENIiul .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gVENIiul .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-t0gVENIiul .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0gVENIiul .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gVENIiul .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gVENIiul .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0gVENIiul .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0gVENIiul .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gVENIiul .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0gVENIiul .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0gVENIiul .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gVENIiul .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gVENIiul .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t0gVENIiul .dropdown-item.active,
.cid-t0gVENIiul .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gVENIiul .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gVENIiul .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gVENIiul .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gVENIiul .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0gVENIiul ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0gVENIiul button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gVENIiul button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gVENIiul nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gVENIiul .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t0gVENIiul .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t0gVENIiul a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0gVENIiul .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-t0gVENIiul .navbar {
    height: 70px;
  }
  .cid-t0gVENIiul .navbar.opened {
    height: auto;
  }
  .cid-t0gVENIiul .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gVENIiul .container,
.cid-t0gVENIiul .container-fluid {
  flex-wrap: wrap;
}
.cid-t0gVENIiul .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t0gVENIiul .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t0gVENIiul .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t0gVENIiul .contacts-menu {
    display: none;
  }
}
.cid-t0gVENIiul .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t0gVENIiul .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t0gVENIiul .icon-box:hover {
  transform: scale(1.1);
}
.cid-t0gVENIiul .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t0gVENIiul .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t0gVENIiul .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0gVENIiul .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t0gVENIiul .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t0gVENIiul .card-text {
  color: #767676;
}
.cid-t0gVENIiul .card-title {
  color: #767676;
}
.cid-t0bk82ynAa {
  padding-top: 8rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/whatsapp-1200x675.jpg");
}
.cid-t0bk82ynAa .mbr-text,
.cid-t0bk82ynAa .mbr-section-btn {
  color: #232323;
}
.cid-t0bk82ynAa .card-title,
.cid-t0bk82ynAa .card-box {
  color: #ffffff;
}
.cid-t0bk82ynAa .mbr-text,
.cid-t0bk82ynAa .link-wrap {
  color: #ffffff;
}
.cid-t0bjESTBQP {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t0bjESTBQP .mbr-section-title {
  color: #106a14;
}
.cid-t0bjGM1mq7 {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t0bjGM1mq7 .mbr-section-subtitle {
  color: #106a14;
}
.cid-t0bjJEw2sC {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t0bjJEw2sC ul {
  list-style: none;
  margin: 0;
  padding-left: 2.5rem;
}
.cid-t0bjJEw2sC li {
  position: relative;
  margin-bottom: 1rem;
}
.cid-t0bjJEw2sC ul li::before {
  position: absolute;
  left: -1.6rem;
  content: "\2022";
  color: #106a14;
  font-weight: bold;
  font-size: 2rem;
  width: 1.6rem;
}
.cid-t0bjJEw2sC .list {
  text-align: left;
}
.cid-t0bjJEw2sC H3 {
  color: #106a14;
}
.cid-t0bqm1cBlX {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t0bqm1cBlX .mbr-section-subtitle {
  color: #106a14;
}
.cid-t0bHFGCIkj {
  padding-top: 2rem;
  padding-bottom: 9rem;
  background-color: #ffffff;
}
.cid-t0bHFGCIkj .mbr-section-subtitle {
  color: #106a14;
}
.cid-t0hcIIqpa8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-t0VH7p7Wmy {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0VH7p7Wmy nav.navbar {
  position: fixed;
}
.cid-t0VH7p7Wmy .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-t0VH7p7Wmy .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0VH7p7Wmy .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0VH7p7Wmy .dropdown-item:hover,
.cid-t0VH7p7Wmy .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t0VH7p7Wmy .dropdown-item:hover span {
  color: white;
}
.cid-t0VH7p7Wmy .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0VH7p7Wmy .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0VH7p7Wmy .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0VH7p7Wmy .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0VH7p7Wmy .nav-link {
  position: relative;
}
.cid-t0VH7p7Wmy .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0VH7p7Wmy .container {
    flex-wrap: nowrap;
  }
}
.cid-t0VH7p7Wmy .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0VH7p7Wmy .dropdown-menu,
.cid-t0VH7p7Wmy .navbar.opened {
  background: #ffffff !important;
}
.cid-t0VH7p7Wmy .nav-item:focus,
.cid-t0VH7p7Wmy .nav-link:focus {
  outline: none;
}
.cid-t0VH7p7Wmy .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0VH7p7Wmy .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0VH7p7Wmy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0VH7p7Wmy .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0VH7p7Wmy .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0VH7p7Wmy .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0VH7p7Wmy .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0VH7p7Wmy .navbar.opened {
  transition: all 0.3s;
}
.cid-t0VH7p7Wmy .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0VH7p7Wmy .navbar .navbar-logo img {
  width: auto;
}
.cid-t0VH7p7Wmy .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0VH7p7Wmy .navbar.collapsed {
  justify-content: center;
}
.cid-t0VH7p7Wmy .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0VH7p7Wmy .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0VH7p7Wmy .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t0VH7p7Wmy .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0VH7p7Wmy .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0VH7p7Wmy .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-t0VH7p7Wmy .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0VH7p7Wmy .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0VH7p7Wmy .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0VH7p7Wmy .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0VH7p7Wmy .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0VH7p7Wmy .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0VH7p7Wmy .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0VH7p7Wmy .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-t0VH7p7Wmy .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0VH7p7Wmy .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0VH7p7Wmy .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0VH7p7Wmy .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0VH7p7Wmy .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0VH7p7Wmy .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0VH7p7Wmy .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0VH7p7Wmy .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0VH7p7Wmy .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0VH7p7Wmy .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0VH7p7Wmy .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0VH7p7Wmy .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t0VH7p7Wmy .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t0VH7p7Wmy .dropdown-item.active,
.cid-t0VH7p7Wmy .dropdown-item:active {
  background-color: transparent;
}
.cid-t0VH7p7Wmy .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0VH7p7Wmy .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0VH7p7Wmy .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0VH7p7Wmy .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0VH7p7Wmy .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0VH7p7Wmy .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0VH7p7Wmy ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0VH7p7Wmy .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0VH7p7Wmy button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0VH7p7Wmy button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t0VH7p7Wmy button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0VH7p7Wmy button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0VH7p7Wmy button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0VH7p7Wmy button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0VH7p7Wmy nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0VH7p7Wmy nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0VH7p7Wmy nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0VH7p7Wmy nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0VH7p7Wmy .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t0VH7p7Wmy .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t0VH7p7Wmy a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0VH7p7Wmy .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-t0VH7p7Wmy .navbar {
    height: 70px;
  }
  .cid-t0VH7p7Wmy .navbar.opened {
    height: auto;
  }
  .cid-t0VH7p7Wmy .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0VH7p7Wmy .container,
.cid-t0VH7p7Wmy .container-fluid {
  flex-wrap: wrap;
}
.cid-t0VH7p7Wmy .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t0VH7p7Wmy .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t0VH7p7Wmy .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t0VH7p7Wmy .contacts-menu {
    display: none;
  }
}
.cid-t0VH7p7Wmy .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t0VH7p7Wmy .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t0VH7p7Wmy .icon-box:hover {
  transform: scale(1.1);
}
.cid-t0VH7p7Wmy .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t0VH7p7Wmy .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t0VH7p7Wmy .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t0VH7p7Wmy .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t0VH7p7Wmy .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t0VH7p7Wmy .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0VH7p7Wmy .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t0VH7p7Wmy .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t0VH7p7Wmy .card-text {
  color: #767676;
}
.cid-t0VH7p7Wmy .card-title {
  color: #767676;
}
.cid-t0WuJTMhp4 {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/mbr-1920x1278.jpg");
}
.cid-t0WuJTMhp4 .mbr-text,
.cid-t0WuJTMhp4 .mbr-section-btn {
  color: #232323;
}
.cid-t0WuJTMhp4 .card-title,
.cid-t0WuJTMhp4 .card-box {
  color: #ffffff;
}
.cid-t0WuJTMhp4 .mbr-text,
.cid-t0WuJTMhp4 .link-wrap {
  color: #ffffff;
}
.cid-t0VH7oHYrf {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t0VH7oHYrf img,
.cid-t0VH7oHYrf .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t0VH7oHYrf .item:focus,
.cid-t0VH7oHYrf span:focus {
  outline: none;
}
.cid-t0VH7oHYrf .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t0VH7oHYrf .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t0VH7oHYrf .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t0VH7oHYrf .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t0VH7oHYrf .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t0VH7oHYrf .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t0VH7oHYrf .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t0VH7oHYrf .mbr-section-title {
  color: #106a14;
}
.cid-t0VH7oHYrf .mbr-text,
.cid-t0VH7oHYrf .mbr-section-btn {
  text-align: left;
}
.cid-t0VH7oHYrf .item-title {
  text-align: left;
  color: #106a14;
}
.cid-t0VH7oHYrf .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t0VH7oHYrf .mbr-section-subtitle {
  color: #767676;
}
.cid-t0W1l0xCnw {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-t0W1l0xCnw img,
.cid-t0W1l0xCnw .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-t0W1l0xCnw .item:focus,
.cid-t0W1l0xCnw span:focus {
  outline: none;
}
.cid-t0W1l0xCnw .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t0W1l0xCnw .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t0W1l0xCnw .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t0W1l0xCnw .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t0W1l0xCnw .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t0W1l0xCnw .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t0W1l0xCnw .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t0W1l0xCnw .mbr-section-title {
  color: #106a14;
}
.cid-t0W1l0xCnw .mbr-text,
.cid-t0W1l0xCnw .mbr-section-btn {
  text-align: left;
}
.cid-t0W1l0xCnw .item-title {
  text-align: left;
  color: #106a14;
}
.cid-t0W1l0xCnw .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t0W1l0xCnw .mbr-section-subtitle {
  color: #767676;
}
.cid-tWbz5iEx8z {
  padding-top: 0rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-tWbz5iEx8z img,
.cid-tWbz5iEx8z .item-img {
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-tWbz5iEx8z .item:focus,
.cid-tWbz5iEx8z span:focus {
  outline: none;
}
.cid-tWbz5iEx8z .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-tWbz5iEx8z .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-tWbz5iEx8z .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-tWbz5iEx8z .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-tWbz5iEx8z .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-tWbz5iEx8z .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-tWbz5iEx8z .mbr-section-btn {
  margin-top: auto !important;
}
.cid-tWbz5iEx8z .mbr-section-title {
  color: #106a14;
}
.cid-tWbz5iEx8z .mbr-text,
.cid-tWbz5iEx8z .mbr-section-btn {
  text-align: left;
}
.cid-tWbz5iEx8z .item-title {
  text-align: left;
  color: #106a14;
}
.cid-tWbz5iEx8z .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-tWbz5iEx8z .mbr-section-subtitle {
  color: #767676;
}
.cid-t0VUULqTFt {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t0VUULqTFt .line {
  background-color: #106a14;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t0VH7pyUZB {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-t1hxq9FM09 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t1hxq9FM09 nav.navbar {
  position: fixed;
}
.cid-t1hxq9FM09 .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-t1hxq9FM09 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t1hxq9FM09 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t1hxq9FM09 .dropdown-item:hover,
.cid-t1hxq9FM09 .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t1hxq9FM09 .dropdown-item:hover span {
  color: white;
}
.cid-t1hxq9FM09 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t1hxq9FM09 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t1hxq9FM09 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t1hxq9FM09 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t1hxq9FM09 .nav-link {
  position: relative;
}
.cid-t1hxq9FM09 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t1hxq9FM09 .container {
    flex-wrap: nowrap;
  }
}
.cid-t1hxq9FM09 .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t1hxq9FM09 .dropdown-menu,
.cid-t1hxq9FM09 .navbar.opened {
  background: #ffffff !important;
}
.cid-t1hxq9FM09 .nav-item:focus,
.cid-t1hxq9FM09 .nav-link:focus {
  outline: none;
}
.cid-t1hxq9FM09 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t1hxq9FM09 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t1hxq9FM09 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t1hxq9FM09 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t1hxq9FM09 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t1hxq9FM09 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t1hxq9FM09 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t1hxq9FM09 .navbar.opened {
  transition: all 0.3s;
}
.cid-t1hxq9FM09 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t1hxq9FM09 .navbar .navbar-logo img {
  width: auto;
}
.cid-t1hxq9FM09 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t1hxq9FM09 .navbar.collapsed {
  justify-content: center;
}
.cid-t1hxq9FM09 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t1hxq9FM09 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t1hxq9FM09 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t1hxq9FM09 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t1hxq9FM09 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t1hxq9FM09 .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-t1hxq9FM09 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t1hxq9FM09 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t1hxq9FM09 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t1hxq9FM09 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t1hxq9FM09 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t1hxq9FM09 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t1hxq9FM09 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t1hxq9FM09 .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-t1hxq9FM09 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t1hxq9FM09 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t1hxq9FM09 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t1hxq9FM09 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t1hxq9FM09 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t1hxq9FM09 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t1hxq9FM09 .navbar.navbar-short {
  min-height: 60px;
}
.cid-t1hxq9FM09 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t1hxq9FM09 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t1hxq9FM09 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t1hxq9FM09 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t1hxq9FM09 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t1hxq9FM09 .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t1hxq9FM09 .dropdown-item.active,
.cid-t1hxq9FM09 .dropdown-item:active {
  background-color: transparent;
}
.cid-t1hxq9FM09 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t1hxq9FM09 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t1hxq9FM09 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t1hxq9FM09 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t1hxq9FM09 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t1hxq9FM09 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t1hxq9FM09 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t1hxq9FM09 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t1hxq9FM09 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t1hxq9FM09 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t1hxq9FM09 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t1hxq9FM09 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1hxq9FM09 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t1hxq9FM09 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t1hxq9FM09 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1hxq9FM09 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t1hxq9FM09 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t1hxq9FM09 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t1hxq9FM09 .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t1hxq9FM09 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t1hxq9FM09 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t1hxq9FM09 .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-t1hxq9FM09 .navbar {
    height: 70px;
  }
  .cid-t1hxq9FM09 .navbar.opened {
    height: auto;
  }
  .cid-t1hxq9FM09 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t1hxq9FM09 .container,
.cid-t1hxq9FM09 .container-fluid {
  flex-wrap: wrap;
}
.cid-t1hxq9FM09 .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t1hxq9FM09 .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t1hxq9FM09 .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t1hxq9FM09 .contacts-menu {
    display: none;
  }
}
.cid-t1hxq9FM09 .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t1hxq9FM09 .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t1hxq9FM09 .icon-box:hover {
  transform: scale(1.1);
}
.cid-t1hxq9FM09 .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t1hxq9FM09 .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t1hxq9FM09 .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t1hxq9FM09 .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t1hxq9FM09 .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t1hxq9FM09 .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t1hxq9FM09 .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t1hxq9FM09 .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t1hxq9FM09 .card-text {
  color: #767676;
}
.cid-t1hxq9FM09 .card-title {
  color: #767676;
}
.cid-t1hxq7YEZi {
  padding-top: 9rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/bienestar-emocional-twitter-1200x670px-1536x858.jpg");
}
.cid-t1hxq7YEZi .mbr-text,
.cid-t1hxq7YEZi .mbr-section-btn {
  color: #232323;
}
.cid-t1hxq7YEZi .card-title,
.cid-t1hxq7YEZi .card-box {
  color: #ffffff;
}
.cid-t1hxq7YEZi .mbr-text,
.cid-t1hxq7YEZi .link-wrap {
  color: #ffffff;
}
.cid-t1hxq8hit1 {
  padding-top: 3rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-t1hxq8hit1 img,
.cid-t1hxq8hit1 .item-img {
  height: 100%;
  height: 500px;
  object-fit: cover;
}
.cid-t1hxq8hit1 .item:focus,
.cid-t1hxq8hit1 span:focus {
  outline: none;
}
.cid-t1hxq8hit1 .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-t1hxq8hit1 .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #fafafa;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-t1hxq8hit1 .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-t1hxq8hit1 .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-t1hxq8hit1 .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-t1hxq8hit1 .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-t1hxq8hit1 .mbr-section-btn {
  margin-top: auto !important;
}
.cid-t1hxq8hit1 .mbr-section-title {
  color: #106a14;
}
.cid-t1hxq8hit1 .mbr-text,
.cid-t1hxq8hit1 .mbr-section-btn {
  text-align: left;
}
.cid-t1hxq8hit1 .item-title {
  text-align: left;
  color: #106a14;
}
.cid-t1hxq8hit1 .item-subtitle {
  text-align: left;
  color: #232323;
}
.cid-t1hxq8hit1 .mbr-section-subtitle {
  color: #767676;
}
.cid-t1hxq9nIzp {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t1hxq9nIzp .line {
  background-color: #106a14;
  align: center;
  height: 2px;
  margin: 0 auto;
}
.cid-t1hxqai2vh {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-t0gWaR9fAm {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-t0gWaR9fAm nav.navbar {
  position: fixed;
}
.cid-t0gWaR9fAm .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-t0gWaR9fAm .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-t0gWaR9fAm .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-t0gWaR9fAm .dropdown-item:hover,
.cid-t0gWaR9fAm .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-t0gWaR9fAm .dropdown-item:hover span {
  color: white;
}
.cid-t0gWaR9fAm .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-t0gWaR9fAm .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-t0gWaR9fAm .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-t0gWaR9fAm .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-t0gWaR9fAm .nav-link {
  position: relative;
}
.cid-t0gWaR9fAm .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-t0gWaR9fAm .container {
    flex-wrap: nowrap;
  }
}
.cid-t0gWaR9fAm .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-t0gWaR9fAm .dropdown-menu,
.cid-t0gWaR9fAm .navbar.opened {
  background: #ffffff !important;
}
.cid-t0gWaR9fAm .nav-item:focus,
.cid-t0gWaR9fAm .nav-link:focus {
  outline: none;
}
.cid-t0gWaR9fAm .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-t0gWaR9fAm .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-t0gWaR9fAm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-t0gWaR9fAm .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-t0gWaR9fAm .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-t0gWaR9fAm .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-t0gWaR9fAm .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-t0gWaR9fAm .navbar.opened {
  transition: all 0.3s;
}
.cid-t0gWaR9fAm .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-t0gWaR9fAm .navbar .navbar-logo img {
  width: auto;
}
.cid-t0gWaR9fAm .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-t0gWaR9fAm .navbar.collapsed {
  justify-content: center;
}
.cid-t0gWaR9fAm .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-t0gWaR9fAm .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-t0gWaR9fAm .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-t0gWaR9fAm .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-t0gWaR9fAm .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-t0gWaR9fAm .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-t0gWaR9fAm .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-t0gWaR9fAm .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-t0gWaR9fAm .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-t0gWaR9fAm .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-t0gWaR9fAm .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-t0gWaR9fAm .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-t0gWaR9fAm .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-t0gWaR9fAm .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-t0gWaR9fAm .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-t0gWaR9fAm .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-t0gWaR9fAm .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-t0gWaR9fAm .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-t0gWaR9fAm .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-t0gWaR9fAm .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-t0gWaR9fAm .navbar.navbar-short {
  min-height: 60px;
}
.cid-t0gWaR9fAm .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-t0gWaR9fAm .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-t0gWaR9fAm .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-t0gWaR9fAm .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-t0gWaR9fAm .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-t0gWaR9fAm .navbar-brand {
    padding-right: 40px;
  }
}
.cid-t0gWaR9fAm .dropdown-item.active,
.cid-t0gWaR9fAm .dropdown-item:active {
  background-color: transparent;
}
.cid-t0gWaR9fAm .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-t0gWaR9fAm .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-t0gWaR9fAm .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-t0gWaR9fAm .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-t0gWaR9fAm .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-t0gWaR9fAm .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-t0gWaR9fAm ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-t0gWaR9fAm .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-t0gWaR9fAm button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-t0gWaR9fAm button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-t0gWaR9fAm button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-t0gWaR9fAm button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gWaR9fAm button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-t0gWaR9fAm button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-t0gWaR9fAm nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gWaR9fAm nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-t0gWaR9fAm nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-t0gWaR9fAm nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-t0gWaR9fAm .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-t0gWaR9fAm .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-t0gWaR9fAm a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-t0gWaR9fAm .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-t0gWaR9fAm .navbar {
    height: 70px;
  }
  .cid-t0gWaR9fAm .navbar.opened {
    height: auto;
  }
  .cid-t0gWaR9fAm .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-t0gWaR9fAm .container,
.cid-t0gWaR9fAm .container-fluid {
  flex-wrap: wrap;
}
.cid-t0gWaR9fAm .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-t0gWaR9fAm .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-t0gWaR9fAm .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-t0gWaR9fAm .contacts-menu {
    display: none;
  }
}
.cid-t0gWaR9fAm .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-t0gWaR9fAm .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-t0gWaR9fAm .icon-box:hover {
  transform: scale(1.1);
}
.cid-t0gWaR9fAm .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-t0gWaR9fAm .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-t0gWaR9fAm .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-t0gWaR9fAm .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-t0gWaR9fAm .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-t0gWaR9fAm .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-t0gWaR9fAm .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-t0gWaR9fAm .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-t0gWaR9fAm .card-text {
  color: #767676;
}
.cid-t0gWaR9fAm .card-title {
  color: #767676;
}
.cid-t23Yu7rz7k {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/ronda-spain-city-bridge.webp");
}
.cid-t244RUiZw1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-t244RUiZw1 .mbr-section-title {
  color: #106a14;
}
.cid-t244RUiZw1 .mbr-section-subtitle {
  color: #353535;
}
.cid-t244YexWBn {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/captura-de-pantalla-2022-04-01-222022-2000x1128.jpg");
}
@media (max-width: 991px) {
  .cid-t244YexWBn .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-t244YexWBn img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-t244YexWBn .text-wrapper {
    padding: 2rem;
  }
}
.cid-t244YexWBn .mbr-section-title {
  color: #106a14;
}
.cid-t244YexWBn .mbr-text {
  color: #000000;
}
.cid-t24rEUyUSf {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-t24rEUyUSf .video-wrapper iframe {
  width: 100%;
}
.cid-t24rEUyUSf .mbr-section-title,
.cid-t24rEUyUSf .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-t24rEUyUSf .text-wrapper {
    padding: 2rem;
  }
}
.cid-t24rEUyUSf .mbr-section-title {
  color: #106a14;
}
.cid-t24rEUyUSf .mbr-section-subtitle {
  color: #106a14;
}
.cid-t24rEUyUSf .mbr-text {
  color: #767676;
}
.cid-t24jieN91H {
  padding-top: 6rem;
  padding-bottom: 0rem;
  background-color: #ffffff;
}
.cid-t24jieN91H .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-t24jieN91H .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-t24jieN91H .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #106a14;
}
.cid-t24jieN91H .panel-body,
.cid-t24jieN91H .card-header {
  padding: 1rem 0;
}
.cid-t24jieN91H .panel-title-edit {
  color: #106a14;
}
.cid-t24jieN91H H3 {
  color: #106a14;
}
.cid-t24jieN91H H4 {
  color: #767676;
}
.cid-t24jMguX34 {
  padding-top: 0rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-t24jMguX34 .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-t24jMguX34 .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-t24jMguX34 .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #106a14;
}
.cid-t24jMguX34 .panel-body,
.cid-t24jMguX34 .card-header {
  padding: 1rem 0;
}
.cid-t24jMguX34 .panel-title-edit {
  color: #106a14;
}
.cid-t2457m71r3 {
  padding-top: 0rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-t2457m71r3 .google-map {
  height: 30rem;
  position: relative;
}
.cid-t2457m71r3 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-t2457m71r3 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-t2457m71r3 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-t2457m71r3 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-t246Eum9m0 {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #656bc4;
}
.cid-t246Eum9m0 img {
  width: 125px;
  margin: auto;
  filter: brightness(250%);
}
.cid-t246Eum9m0 .card {
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.cid-t246Eum9m0 .card:hover {
  opacity: 0.9;
}
.cid-t246Eum9m0 H1 {
  color: #ffffff;
}
.cid-t246Eum9m0 .row {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-t246Eum9m0 .col-lg-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-t246Eum9m0 .row {
  justify-content: center!important;
}
.cid-t0hcIIqpa8 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-tHPXX2VBrt {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-tHPXX2VBrt nav.navbar {
  position: fixed;
}
.cid-tHPXX2VBrt .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-tHPXX2VBrt .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-tHPXX2VBrt .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-tHPXX2VBrt .dropdown-item:hover,
.cid-tHPXX2VBrt .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-tHPXX2VBrt .dropdown-item:hover span {
  color: white;
}
.cid-tHPXX2VBrt .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-tHPXX2VBrt .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-tHPXX2VBrt .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-tHPXX2VBrt .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-tHPXX2VBrt .nav-link {
  position: relative;
}
.cid-tHPXX2VBrt .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-tHPXX2VBrt .container {
    flex-wrap: nowrap;
  }
}
.cid-tHPXX2VBrt .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-tHPXX2VBrt .dropdown-menu,
.cid-tHPXX2VBrt .navbar.opened {
  background: #ffffff !important;
}
.cid-tHPXX2VBrt .nav-item:focus,
.cid-tHPXX2VBrt .nav-link:focus {
  outline: none;
}
.cid-tHPXX2VBrt .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-tHPXX2VBrt .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-tHPXX2VBrt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-tHPXX2VBrt .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-tHPXX2VBrt .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-tHPXX2VBrt .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-tHPXX2VBrt .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-tHPXX2VBrt .navbar.opened {
  transition: all 0.3s;
}
.cid-tHPXX2VBrt .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-tHPXX2VBrt .navbar .navbar-logo img {
  width: auto;
}
.cid-tHPXX2VBrt .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-tHPXX2VBrt .navbar.collapsed {
  justify-content: center;
}
.cid-tHPXX2VBrt .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-tHPXX2VBrt .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-tHPXX2VBrt .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-tHPXX2VBrt .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-tHPXX2VBrt .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-tHPXX2VBrt .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-tHPXX2VBrt .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-tHPXX2VBrt .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-tHPXX2VBrt .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-tHPXX2VBrt .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-tHPXX2VBrt .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-tHPXX2VBrt .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-tHPXX2VBrt .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-tHPXX2VBrt .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-tHPXX2VBrt .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-tHPXX2VBrt .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-tHPXX2VBrt .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-tHPXX2VBrt .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-tHPXX2VBrt .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-tHPXX2VBrt .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-tHPXX2VBrt .navbar.navbar-short {
  min-height: 60px;
}
.cid-tHPXX2VBrt .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-tHPXX2VBrt .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-tHPXX2VBrt .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-tHPXX2VBrt .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-tHPXX2VBrt .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-tHPXX2VBrt .navbar-brand {
    padding-right: 40px;
  }
}
.cid-tHPXX2VBrt .dropdown-item.active,
.cid-tHPXX2VBrt .dropdown-item:active {
  background-color: transparent;
}
.cid-tHPXX2VBrt .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-tHPXX2VBrt .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-tHPXX2VBrt .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-tHPXX2VBrt .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-tHPXX2VBrt .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-tHPXX2VBrt .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-tHPXX2VBrt ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-tHPXX2VBrt .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-tHPXX2VBrt button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-tHPXX2VBrt button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-tHPXX2VBrt button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-tHPXX2VBrt button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHPXX2VBrt button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-tHPXX2VBrt button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-tHPXX2VBrt nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHPXX2VBrt nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-tHPXX2VBrt nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-tHPXX2VBrt nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-tHPXX2VBrt .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-tHPXX2VBrt .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-tHPXX2VBrt a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-tHPXX2VBrt .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-tHPXX2VBrt .navbar {
    height: 70px;
  }
  .cid-tHPXX2VBrt .navbar.opened {
    height: auto;
  }
  .cid-tHPXX2VBrt .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-tHPXX2VBrt .container,
.cid-tHPXX2VBrt .container-fluid {
  flex-wrap: wrap;
}
.cid-tHPXX2VBrt .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-tHPXX2VBrt .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-tHPXX2VBrt .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-tHPXX2VBrt .contacts-menu {
    display: none;
  }
}
.cid-tHPXX2VBrt .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-tHPXX2VBrt .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-tHPXX2VBrt .icon-box:hover {
  transform: scale(1.1);
}
.cid-tHPXX2VBrt .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-tHPXX2VBrt .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-tHPXX2VBrt .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-tHPXX2VBrt .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-tHPXX2VBrt .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-tHPXX2VBrt .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-tHPXX2VBrt .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-tHPXX2VBrt .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-tHPXX2VBrt .card-text {
  color: #767676;
}
.cid-tHPXX2VBrt .card-title {
  color: #767676;
}
.cid-tHPXWVRVhc {
  padding-top: 24rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/coeducacion-1200x800.jpg");
}
.cid-tHPXWVRVhc .mbr-text,
.cid-tHPXWVRVhc .mbr-section-btn {
  color: #232323;
}
.cid-tHPXWVRVhc .card-title,
.cid-tHPXWVRVhc .card-box {
  color: #ffffff;
}
.cid-tHPXWVRVhc .mbr-text,
.cid-tHPXWVRVhc .link-wrap {
  color: #ffffff;
}
.cid-tHPXWWkR3t {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tHPXWWkR3t .mbr-section-title {
  color: #106a14;
}
.cid-tHPXWWkR3t .mbr-section-subtitle {
  color: #767676;
}
.cid-tHQ7mAKA7D {
  padding-top: 3rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tHQ7mAKA7D .mbr-section-subtitle {
  color: #106a14;
}
.cid-tHQkutpiQc {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tHQkutpiQc .mbr-fallback-image.disabled {
  display: none;
}
.cid-tHQkutpiQc .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tHQkutpiQc .mbr-section-title {
  color: #106a14;
}
.cid-tHQkutpiQc .mbr-section-subtitle DIV {
  text-align: left;
}
.cid-tHQkutpiQc .mbr-section-subtitle {
  color: #353535;
}
.cid-tHQnquRPXx {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tHQnquRPXx .mbr-section-subtitle {
  color: #106a14;
}
.cid-tIWJk9tEW1 {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-tIWJk9tEW1 .mbr-fallback-image.disabled {
  display: none;
}
.cid-tIWJk9tEW1 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-tIWJk9tEW1 .row {
  flex-direction: row-reverse;
}
.cid-tIWJk9tEW1 .video-wrapper iframe {
  width: 100%;
}
.cid-tIWJk9tEW1 .mbr-section-title,
.cid-tIWJk9tEW1 .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-tIWJk9tEW1 .text-wrapper {
    padding: 2rem;
  }
}
.cid-tIWJk9tEW1 .mbr-section-title {
  color: #106a14;
}
.cid-tIWJk9tEW1 .mbr-section-subtitle {
  color: #106a14;
}
.cid-tHQqH7yl81 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tHQqH7yl81 .mbr-section-subtitle {
  color: #106a14;
}
.cid-tHQBwt3B8m {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-tHQBwt3B8m .mbr-section-subtitle {
  color: #106a14;
}
.cid-uWX3yXVSM4 {
  padding-top: 1rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-uWX3yXVSM4 .mbr-section-subtitle {
  color: #106a14;
}
.cid-uWX3yXVSM4 .mbr-text {
  text-align: left;
  color: #000000;
}
.cid-uWXFqpv1pW {
  padding-top: 2rem;
  padding-bottom: 2rem;
  background-color: #ffffff;
}
.cid-uWXFqpv1pW .mbr-fallback-image.disabled {
  display: none;
}
.cid-uWXFqpv1pW .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uWXFqpv1pW .row {
  flex-direction: row-reverse;
}
.cid-uWXFqpv1pW .video-wrapper iframe {
  width: 100%;
}
.cid-uWXFqpv1pW .mbr-section-title,
.cid-uWXFqpv1pW .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-uWXFqpv1pW .text-wrapper {
    padding: 2rem;
  }
}
.cid-uWXFqpv1pW .mbr-section-subtitle {
  color: #106a14;
}
.cid-tHPXWZ5iap {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-tHPXWZ5iap .mbr-section-title {
  color: #106a14;
}
.cid-tHPXX3YKLH {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-umETxYK3a3 {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-umETxYK3a3 nav.navbar {
  position: fixed;
}
.cid-umETxYK3a3 .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-umETxYK3a3 .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-umETxYK3a3 .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-umETxYK3a3 .dropdown-item:hover,
.cid-umETxYK3a3 .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-umETxYK3a3 .dropdown-item:hover span {
  color: white;
}
.cid-umETxYK3a3 .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-umETxYK3a3 .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-umETxYK3a3 .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-umETxYK3a3 .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-umETxYK3a3 .nav-link {
  position: relative;
}
.cid-umETxYK3a3 .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-umETxYK3a3 .container {
    flex-wrap: nowrap;
  }
}
.cid-umETxYK3a3 .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-umETxYK3a3 .dropdown-menu,
.cid-umETxYK3a3 .navbar.opened {
  background: #ffffff !important;
}
.cid-umETxYK3a3 .nav-item:focus,
.cid-umETxYK3a3 .nav-link:focus {
  outline: none;
}
.cid-umETxYK3a3 .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-umETxYK3a3 .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-umETxYK3a3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-umETxYK3a3 .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-umETxYK3a3 .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-umETxYK3a3 .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-umETxYK3a3 .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-umETxYK3a3 .navbar.opened {
  transition: all 0.3s;
}
.cid-umETxYK3a3 .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-umETxYK3a3 .navbar .navbar-logo img {
  width: auto;
}
.cid-umETxYK3a3 .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-umETxYK3a3 .navbar.collapsed {
  justify-content: center;
}
.cid-umETxYK3a3 .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-umETxYK3a3 .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-umETxYK3a3 .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-umETxYK3a3 .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-umETxYK3a3 .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-umETxYK3a3 .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-umETxYK3a3 .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-umETxYK3a3 .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-umETxYK3a3 .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-umETxYK3a3 .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-umETxYK3a3 .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-umETxYK3a3 .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-umETxYK3a3 .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-umETxYK3a3 .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-umETxYK3a3 .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-umETxYK3a3 .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-umETxYK3a3 .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-umETxYK3a3 .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-umETxYK3a3 .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-umETxYK3a3 .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-umETxYK3a3 .navbar.navbar-short {
  min-height: 60px;
}
.cid-umETxYK3a3 .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-umETxYK3a3 .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-umETxYK3a3 .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-umETxYK3a3 .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-umETxYK3a3 .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-umETxYK3a3 .navbar-brand {
    padding-right: 40px;
  }
}
.cid-umETxYK3a3 .dropdown-item.active,
.cid-umETxYK3a3 .dropdown-item:active {
  background-color: transparent;
}
.cid-umETxYK3a3 .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-umETxYK3a3 .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-umETxYK3a3 .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-umETxYK3a3 .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-umETxYK3a3 .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-umETxYK3a3 .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-umETxYK3a3 ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-umETxYK3a3 .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-umETxYK3a3 button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-umETxYK3a3 button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-umETxYK3a3 button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-umETxYK3a3 button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umETxYK3a3 button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-umETxYK3a3 button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-umETxYK3a3 nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umETxYK3a3 nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-umETxYK3a3 nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-umETxYK3a3 nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-umETxYK3a3 .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-umETxYK3a3 .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-umETxYK3a3 a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-umETxYK3a3 .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-umETxYK3a3 .navbar {
    height: 70px;
  }
  .cid-umETxYK3a3 .navbar.opened {
    height: auto;
  }
  .cid-umETxYK3a3 .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-umETxYK3a3 .container,
.cid-umETxYK3a3 .container-fluid {
  flex-wrap: wrap;
}
.cid-umETxYK3a3 .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-umETxYK3a3 .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-umETxYK3a3 .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-umETxYK3a3 .contacts-menu {
    display: none;
  }
}
.cid-umETxYK3a3 .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-umETxYK3a3 .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-umETxYK3a3 .icon-box:hover {
  transform: scale(1.1);
}
.cid-umETxYK3a3 .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-umETxYK3a3 .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-umETxYK3a3 .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-umETxYK3a3 .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-umETxYK3a3 .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-umETxYK3a3 .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-umETxYK3a3 .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-umETxYK3a3 .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-umETxYK3a3 .card-text {
  color: #767676;
}
.cid-umETxYK3a3 .card-title {
  color: #767676;
}
.cid-umETxZ9gEs {
  padding-top: 10rem;
  padding-bottom: 10rem;
  background-image: url("../../../assets/images/adobebiblio-1500x750.jpg");
}
.cid-umETxZomHK {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #ffffff;
}
.cid-umETxZomHK .mbr-section-title {
  color: #106a14;
}
.cid-umETxZomHK .mbr-section-subtitle {
  color: #353535;
}
.cid-umETxZGz3f {
  padding-top: 3rem;
  padding-bottom: 4rem;
  background-image: url("../../../assets/images/captura-de-pantalla-2024-08-27-163159-1560x841.png");
}
@media (max-width: 991px) {
  .cid-umETxZGz3f .image-wrapper {
    margin-bottom: 1rem;
  }
}
.cid-umETxZGz3f img {
  width: 100%;
}
@media (min-width: 992px) {
  .cid-umETxZGz3f .text-wrapper {
    padding: 2rem;
  }
}
.cid-umETxZGz3f .mbr-section-title {
  color: #106a14;
}
.cid-umETxZGz3f .mbr-text {
  color: #000000;
}
.cid-umF6devetr {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #ffffff;
}
.cid-umF6devetr .mbr-fallback-image.disabled {
  display: none;
}
.cid-umF6devetr .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-umF6devetr .card-wrapper {
  padding-right: 2rem;
}
@media (max-width: 992px) {
  .cid-umF6devetr .card {
    margin-bottom: 2rem!important;
  }
  .cid-umF6devetr .card-wrapper {
    padding: 0 1rem;
  }
}
@media (max-width: 767px) {
  .cid-umF6devetr .link-wrap {
    align-items: center;
  }
}
.cid-umF6devetr .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-umF6devetr .card-title,
.cid-umF6devetr .card-box {
  color: #106a14;
}
.cid-umETy0jDCZ {
  padding-top: 6rem;
  padding-bottom: 7rem;
  background-color: #ffffff;
}
.cid-umETy0jDCZ .card .card-header {
  background-color: transparent;
  margin-bottom: 0;
}
.cid-umETy0jDCZ .panel-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.cid-umETy0jDCZ .mbr-iconfont {
  padding-left: 1rem;
  font-family: 'Moririse2' !important;
  font-size: 1.4rem !important;
  color: #106a14;
}
.cid-umETy0jDCZ .panel-body,
.cid-umETy0jDCZ .card-header {
  padding: 1rem 0;
}
.cid-umETy0jDCZ .panel-title-edit {
  color: #106a14;
}
.cid-umETy0jDCZ H3 {
  color: #106a14;
}
.cid-umETy0jDCZ H4 {
  color: #767676;
}
.cid-umETy124A2 {
  padding-top: 4rem;
  padding-bottom: 0rem;
  background: #ffffff;
}
.cid-umETy124A2 .google-map {
  height: 30rem;
  position: relative;
}
.cid-umETy124A2 .google-map iframe {
  height: 100%;
  width: 100%;
}
.cid-umETy124A2 .google-map [data-state-details] {
  color: #6b6763;
  height: 1.5em;
  margin-top: -0.75em;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
  position: absolute;
  text-align: center;
  top: 50%;
  width: 100%;
}
.cid-umETy124A2 .google-map[data-state] {
  background: #e9e5dc;
}
.cid-umETy124A2 .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-umETy124A2 .mbr-section-title {
  color: #106a14;
}
.cid-umETy1ndbV {
  padding-top: 15px;
  padding-bottom: 0px;
  background: #656bc4;
}
.cid-umETy1ndbV img {
  width: 125px;
  margin: auto;
  filter: brightness(250%);
}
.cid-umETy1ndbV .card {
  transition: opacity 0.3s;
  height: fit-content;
  padding: 1rem 0rem;
  opacity: 0.5;
  margin-bottom: 1rem;
}
.cid-umETy1ndbV .card:hover {
  opacity: 0.9;
}
.cid-umETy1ndbV H1 {
  color: #ffffff;
}
.cid-umETy1ndbV .row {
  justify-content: space-between;
}
@media (min-width: 992px) {
  .cid-umETy1ndbV .col-lg-1 {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
}
.cid-umETy1ndbV .row {
  justify-content: center!important;
}
.cid-umETy1IUY4 {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
.cid-v0JvBp4yKq {
  z-index: 1000;
  width: 100%;
  position: relative;
  min-height: 60px;
}
.cid-v0JvBp4yKq nav.navbar {
  position: fixed;
}
.cid-v0JvBp4yKq .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-v0JvBp4yKq .dropdown-menu {
  padding: 0;
  border-radius: 4px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
}
.cid-v0JvBp4yKq .dropdown-item {
  border-bottom: 1px solid #e6e6e6;
}
.cid-v0JvBp4yKq .dropdown-item:hover,
.cid-v0JvBp4yKq .dropdown-item:focus {
  background: #106a14 !important;
  color: white !important;
}
.cid-v0JvBp4yKq .dropdown-item:hover span {
  color: white;
}
.cid-v0JvBp4yKq .dropdown-item:first-child {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cid-v0JvBp4yKq .dropdown-item:last-child {
  border-bottom: none;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}
.cid-v0JvBp4yKq .nav-dropdown .link {
  padding: 0 0.3em !important;
  margin: 0.667em 1em !important;
}
.cid-v0JvBp4yKq .nav-dropdown .link.dropdown-toggle::after {
  margin-left: 0.5rem;
  margin-top: 0.2rem;
}
.cid-v0JvBp4yKq .nav-link {
  position: relative;
}
.cid-v0JvBp4yKq .container {
  display: flex;
  margin: auto;
}
@media (min-width: 992px) {
  .cid-v0JvBp4yKq .container {
    flex-wrap: nowrap;
  }
}
.cid-v0JvBp4yKq .iconfont-wrapper {
  color: #222222 !important;
  font-size: 1.5rem;
  padding-right: 0.5rem;
}
.cid-v0JvBp4yKq .dropdown-menu,
.cid-v0JvBp4yKq .navbar.opened {
  background: #ffffff !important;
}
.cid-v0JvBp4yKq .nav-item:focus,
.cid-v0JvBp4yKq .nav-link:focus {
  outline: none;
}
.cid-v0JvBp4yKq .dropdown .dropdown-menu .dropdown-item {
  width: auto;
  transition: all 0.25s ease-in-out;
}
.cid-v0JvBp4yKq .dropdown .dropdown-menu .dropdown-item::after {
  right: 0.5rem;
}
.cid-v0JvBp4yKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-right: 0.5rem;
  vertical-align: sub;
}
.cid-v0JvBp4yKq .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  display: inline-block;
  transform: scale(1, 1);
  transition: all 0.25s ease-in-out;
}
.cid-v0JvBp4yKq .collapsed .dropdown-menu .dropdown-item:before {
  display: none;
}
.cid-v0JvBp4yKq .collapsed .dropdown .dropdown-menu .dropdown-item {
  padding: 0.235em 1.5em 0.235em 1.5em !important;
  transition: none;
  margin: 0 !important;
}
.cid-v0JvBp4yKq .navbar {
  min-height: 70px;
  transition: all 0.3s;
  border-bottom: 1px solid transparent;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
  background: #ffffff;
}
.cid-v0JvBp4yKq .navbar.opened {
  transition: all 0.3s;
}
.cid-v0JvBp4yKq .navbar .dropdown-item {
  padding: 0.5rem 1.8rem;
}
.cid-v0JvBp4yKq .navbar .navbar-logo img {
  width: auto;
}
.cid-v0JvBp4yKq .navbar .navbar-collapse {
  justify-content: flex-end;
  z-index: 1;
}
.cid-v0JvBp4yKq .navbar.collapsed {
  justify-content: center;
}
.cid-v0JvBp4yKq .navbar.collapsed .nav-item .nav-link::before {
  display: none;
}
.cid-v0JvBp4yKq .navbar.collapsed.opened .dropdown-menu {
  top: 0;
}
@media (min-width: 992px) {
  .cid-v0JvBp4yKq .navbar.collapsed.opened:not(.navbar-short) .navbar-collapse {
    max-height: calc(98.5vh - 8rem);
  }
}
.cid-v0JvBp4yKq .navbar.collapsed .dropdown-menu .dropdown-submenu {
  left: 0 !important;
}
.cid-v0JvBp4yKq .navbar.collapsed .dropdown-menu .dropdown-item:after {
  right: auto;
}
.cid-v0JvBp4yKq .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-v0JvBp4yKq .navbar.collapsed ul.navbar-nav li {
  margin: auto;
}
.cid-v0JvBp4yKq .navbar.collapsed .dropdown-menu .dropdown-item {
  padding: 0.25rem 1.5rem;
  text-align: center;
}
.cid-v0JvBp4yKq .navbar.collapsed .icons-menu {
  padding-left: 0;
  padding-right: 0;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}
@media (max-width: 991px) {
  .cid-v0JvBp4yKq .navbar .nav-item .nav-link::before {
    display: none;
  }
  .cid-v0JvBp4yKq .navbar.opened .dropdown-menu {
    top: 0;
  }
  .cid-v0JvBp4yKq .navbar .dropdown-menu .dropdown-submenu {
    left: 0 !important;
  }
  .cid-v0JvBp4yKq .navbar .dropdown-menu .dropdown-item:after {
    right: auto;
  }
  .cid-v0JvBp4yKq .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-v0JvBp4yKq .navbar .navbar-logo img {
    height: 3rem !important;
  }
  .cid-v0JvBp4yKq .navbar ul.navbar-nav li {
    margin: auto;
  }
  .cid-v0JvBp4yKq .navbar .dropdown-menu .dropdown-item {
    padding: 0.25rem 1.5rem !important;
    text-align: center;
  }
  .cid-v0JvBp4yKq .navbar .navbar-brand {
    flex-shrink: initial;
    flex-basis: auto;
    word-break: break-word;
    padding-right: 2rem;
  }
  .cid-v0JvBp4yKq .navbar .navbar-toggler {
    flex-basis: auto;
  }
  .cid-v0JvBp4yKq .navbar .icons-menu {
    padding-left: 0;
    padding-top: 0.5rem;
    padding-bottom: 0.5rem;
  }
}
.cid-v0JvBp4yKq .navbar.navbar-short {
  min-height: 60px;
}
.cid-v0JvBp4yKq .navbar.navbar-short .navbar-logo img {
  height: 2.5rem !important;
}
.cid-v0JvBp4yKq .navbar.navbar-short .navbar-brand {
  min-height: 60px;
  padding: 0;
}
.cid-v0JvBp4yKq .navbar-brand {
  min-height: 70px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  padding: 10px 0;
  transition: all 0.3s;
  word-break: break-word;
  z-index: 1;
}
.cid-v0JvBp4yKq .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-v0JvBp4yKq .navbar-brand .navbar-logo a {
  outline: none;
}
@media (min-width: 992px) {
  .cid-v0JvBp4yKq .navbar-brand {
    padding-right: 40px;
  }
}
.cid-v0JvBp4yKq .dropdown-item.active,
.cid-v0JvBp4yKq .dropdown-item:active {
  background-color: transparent;
}
.cid-v0JvBp4yKq .navbar-expand-lg .navbar-nav .nav-link {
  padding: 0;
}
.cid-v0JvBp4yKq .nav-dropdown .link.dropdown-toggle {
  margin-right: 1.667em;
}
.cid-v0JvBp4yKq .nav-dropdown .link.dropdown-toggle[aria-expanded="true"] {
  margin-right: 0;
  padding: 0.667em 1.667em;
}
.cid-v0JvBp4yKq .navbar.navbar-expand-lg .dropdown .dropdown-menu {
  background: #ffffff;
}
.cid-v0JvBp4yKq .navbar.navbar-expand-lg .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
  left: 100%;
}
.cid-v0JvBp4yKq .navbar .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-v0JvBp4yKq ul.navbar-nav {
  flex-wrap: wrap;
}
.cid-v0JvBp4yKq .navbar-buttons {
  text-align: center;
  min-width: 170px;
}
.cid-v0JvBp4yKq button.navbar-toggler {
  outline: none;
  width: 31px;
  height: 20px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
  align-self: center;
}
.cid-v0JvBp4yKq button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-right: 5px;
  background-color: #106a14;
}
.cid-v0JvBp4yKq button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  transition: all 0.2s;
}
.cid-v0JvBp4yKq button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0JvBp4yKq button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  transition: all 0.15s;
}
.cid-v0JvBp4yKq button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  transition: all 0.2s;
}
.cid-v0JvBp4yKq nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0JvBp4yKq nav.opened .hamburger span:nth-child(2) {
  transform: rotate(45deg);
  transition: all 0.25s;
}
.cid-v0JvBp4yKq nav.opened .hamburger span:nth-child(3) {
  transform: rotate(-45deg);
  transition: all 0.25s;
}
.cid-v0JvBp4yKq nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  transition: all 0.2s;
}
.cid-v0JvBp4yKq .navbar-dropdown {
  padding: 0;
  position: fixed;
}
@media (min-width: 768px) {
  .cid-v0JvBp4yKq .navbar-dropdown {
    padding: 0 1rem;
  }
}
.cid-v0JvBp4yKq a.nav-link {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-v0JvBp4yKq .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-v0JvBp4yKq .navbar {
    height: 70px;
  }
  .cid-v0JvBp4yKq .navbar.opened {
    height: auto;
  }
  .cid-v0JvBp4yKq .nav-item .nav-link:hover::before {
    width: 175%;
    max-width: calc(100% + 2rem);
    left: -1rem;
  }
}
.cid-v0JvBp4yKq .container,
.cid-v0JvBp4yKq .container-fluid {
  flex-wrap: wrap;
}
.cid-v0JvBp4yKq .brand-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding-bottom: 12px;
  padding-top: 12px;
}
.cid-v0JvBp4yKq .contacts-menu {
  display: flex;
  justify-content: flex-end;
}
.cid-v0JvBp4yKq .contacts-menu .mbr-iconfont {
  color: #106a14;
}
@media (max-width: 991px) {
  .cid-v0JvBp4yKq .contacts-menu {
    display: none;
  }
}
.cid-v0JvBp4yKq .card-wrap {
  display: flex;
  align-items: center;
  padding: 10px;
  min-width: 250px;
}
.cid-v0JvBp4yKq .icon-box {
  display: flex;
  padding: 18px;
  border-radius: 50%;
  background-color: #106a14;
  margin-right: 24px;
  transition: 0.3s all;
}
.cid-v0JvBp4yKq .icon-box:hover {
  transform: scale(1.1);
}
.cid-v0JvBp4yKq .navbar-collapse {
  border-top: 1px solid #555555;
}
@media (min-width: 992px) {
  .cid-v0JvBp4yKq .navbar-collapse {
    justify-content: flex-start;
    padding-top: 12px;
    padding-bottom: 12px;
  }
  .cid-v0JvBp4yKq .navbar-collapse .navbar-nav {
    margin: 0 -1em;
    flex-grow: 1;
  }
  .cid-v0JvBp4yKq .navbar-collapse .mbr-section-btn {
    margin-left: auto;
  }
}
.cid-v0JvBp4yKq .navbar-collapse .mbr-section-btn .btn-black {
  color: #106a14 !important;
}
@media (max-width: 577px) {
  .cid-v0JvBp4yKq .navbar-collapse .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-v0JvBp4yKq .navbar-collapse .mbr-section-btn .btn {
    flex-grow: 1;
  }
}
.cid-v0JvBp4yKq .navbar-collapse .nav-link:hover {
  color: #106a14 !important;
}
.cid-v0JvBp4yKq .card-text {
  color: #767676;
}
.cid-v0JvBp4yKq .card-title {
  color: #767676;
}
.cid-v0JvBphXaj {
  padding-top: 36rem;
  padding-bottom: 6rem;
  background-image: url("../../../assets/images/educacionresponsable2a-1344x794.jpg");
}
.cid-v0JvBphXaj .mbr-text,
.cid-v0JvBphXaj .mbr-section-btn {
  color: #232323;
}
.cid-v0JvBphXaj .card-title,
.cid-v0JvBphXaj .card-box {
  color: #ffffff;
}
.cid-v0JvBphXaj .mbr-text,
.cid-v0JvBphXaj .link-wrap {
  color: #ffffff;
}
.cid-v0JvBpn6nu {
  padding-top: 2rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0JvBpn6nu .mbr-section-title {
  color: #106a14;
}
.cid-v0JvBpn6nu .mbr-section-subtitle {
  color: #767676;
}
.cid-v0JvBpvQ3E {
  padding-top: 2rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v0JvBpvQ3E .mbr-section-subtitle {
  color: #106a14;
}
.cid-v0JvBpvQ3E .mbr-text {
  text-align: justify;
}
.cid-v0JCCcYJdO {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v0JCCcYJdO .mbr-section-subtitle {
  color: #106a14;
}
.cid-v0JCCcYJdO .mbr-text {
  color: #000000;
  text-align: justify;
}
.cid-v0KddYVMNo {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v0KddYVMNo .mbr-section-subtitle {
  color: #106a14;
}
.cid-v0KddYVMNo .mbr-text {
  color: #000000;
  text-align: justify;
}
.cid-v0KfBbioKd {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v0KfBbioKd .mbr-section-subtitle {
  color: #106a14;
}
.cid-v0KfBbioKd .mbr-text {
  color: #000000;
  text-align: justify;
}
.cid-v0KiHP2ewG {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v0KiHP2ewG .mbr-section-subtitle {
  color: #106a14;
}
.cid-v0KiHP2ewG .mbr-text {
  color: #000000;
  text-align: justify;
}
.cid-v0Kq8Afhkm {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v0Kq8Afhkm .mbr-section-subtitle {
  color: #106a14;
}
.cid-v0Kq8Afhkm .mbr-text {
  color: #000000;
  text-align: justify;
}
.cid-v0KrS0Z5dP {
  padding-top: 5rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-v0KrS0Z5dP .mbr-section-subtitle {
  color: #106a14;
}
.cid-v0KrS0Z5dP .mbr-text {
  color: #000000;
  text-align: justify;
}
.cid-v0KtPZz7hm {
  padding-top: 5rem;
  padding-bottom: 1rem;
  background-color: #ffffff;
}
.cid-v0KtPZz7hm .mbr-section-subtitle {
  color: #106a14;
}
.cid-v0KtPZz7hm .mbr-text {
  color: #000000;
  text-align: justify;
}
.cid-v0JvBpPUVR {
  padding-top: 1rem;
  padding-bottom: 4rem;
  background-color: #ffffff;
}
.cid-v0JvBpPUVR .mbr-fallback-image.disabled {
  display: none;
}
.cid-v0JvBpPUVR .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-v0JvBpPUVR .row {
  flex-direction: row-reverse;
}
.cid-v0JvBpPUVR .video-wrapper iframe {
  width: 100%;
}
.cid-v0JvBpPUVR .mbr-section-title,
.cid-v0JvBpPUVR .mbr-description {
  text-align: center;
}
@media (min-width: 992px) {
  .cid-v0JvBpPUVR .text-wrapper {
    padding: 2rem;
  }
}
.cid-v0JvBpPUVR .mbr-section-title {
  color: #106a14;
}
.cid-v0JvBpPUVR .mbr-section-subtitle {
  color: #106a14;
}
.cid-v0JvBpPUVR .mbr-text {
  text-align: justify;
}
.cid-v0JvBqpY4c {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #fafafa;
}
.cid-v0JvBqpY4c .mbr-section-title {
  color: #106a14;
}
.cid-v0JvBqyG0k {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #042506;
  overflow: hidden;
}
