body {
  font-family: Jost;
}
.display-1 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 3rem;
  line-height: 1.1;
}
.display-1 > .mbr-iconfont {
  font-size: 3.75rem;
}
.display-2 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 2rem;
  line-height: 1.1;
}
.display-2 > .mbr-iconfont {
  font-size: 2.5rem;
}
.display-4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
}
.display-4 > .mbr-iconfont {
  font-size: 1rem;
}
.display-5 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1.5rem;
  line-height: 1.5;
}
.display-5 > .mbr-iconfont {
  font-size: 1.875rem;
}
.display-7 {
  font-family: 'Ubuntu', sans-serif;
  font-size: 1rem;
  line-height: 1.5;
}
.display-7 > .mbr-iconfont {
  font-size: 1.25rem;
}
/* ---- 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: 2.4rem;
  }
}
@media (max-width: 768px) {
  .display-1 {
    font-size: 2.1rem;
    font-size: calc( 1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.1 * (1.7rem + (3 - 1.7) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-2 {
    font-size: 1.6rem;
    font-size: calc( 1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.3 * (1.35rem + (2 - 1.35) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-4 {
    font-size: 0.64rem;
    font-size: calc( 0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (0.93rem + (0.8 - 0.93) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-5 {
    font-size: 1.2rem;
    font-size: calc( 1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20)));
    line-height: calc( 1.4 * (1.175rem + (1.5 - 1.175) * ((100vw - 20rem) / (48 - 20))));
  }
  .display-7 {
    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))));
  }
}
/* 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: #719f4b !important;
}
.bg-success {
  background-color: #353535 !important;
}
.bg-info {
  background-color: #dcd7d0 !important;
}
.bg-warning {
  background-color: #ffe161 !important;
}
.bg-danger {
  background-color: #ff9966 !important;
}
.btn-primary,
.btn-primary:active {
  background-color: #719f4b !important;
  border-color: #719f4b !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: #47642f !important;
  border-color: #47642f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-primary.disabled,
.btn-primary:disabled {
  color: #ffffff !important;
  background-color: #47642f !important;
  border-color: #47642f !important;
}
.btn-secondary,
.btn-secondary:active {
  background-color: #517241 !important;
  border-color: #517241 !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: #2a3b22 !important;
  border-color: #2a3b22 !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-secondary.disabled,
.btn-secondary:disabled {
  color: #ffffff !important;
  background-color: #2a3b22 !important;
  border-color: #2a3b22 !important;
}
.btn-info,
.btn-info:active {
  background-color: #dcd7d0 !important;
  border-color: #dcd7d0 !important;
  color: #63594a !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: #b7ad9e !important;
  border-color: #b7ad9e !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-info.disabled,
.btn-info:disabled {
  color: #63594a !important;
  background-color: #b7ad9e !important;
  border-color: #b7ad9e !important;
}
.btn-success,
.btn-success:active {
  background-color: #353535 !important;
  border-color: #353535 !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: #0a0a0a !important;
  border-color: #0a0a0a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-success.disabled,
.btn-success:disabled {
  color: #ffffff !important;
  background-color: #0a0a0a !important;
  border-color: #0a0a0a !important;
}
.btn-warning,
.btn-warning:active {
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
  color: #614f00 !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: #0a0800 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-warning.disabled,
.btn-warning:disabled {
  color: #614f00 !important;
  background-color: #ffd10a !important;
  border-color: #ffd10a !important;
}
.btn-danger,
.btn-danger:active {
  background-color: #ff9966 !important;
  border-color: #ff9966 !important;
  color: #ffffff !important;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger:hover,
.btn-danger:focus,
.btn-danger.focus,
.btn-danger.active {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !important;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.2);
}
.btn-danger.disabled,
.btn-danger:disabled {
  color: #ffffff !important;
  background-color: #ff5f0f !important;
  border-color: #ff5f0f !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: #719f4b;
}
.btn-primary-outline:hover,
.btn-primary-outline:focus,
.btn-primary-outline.focus,
.btn-primary-outline.active {
  color: #47642f !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: #719f4b !important;
  border-color: #719f4b !important;
}
.btn-secondary-outline,
.btn-secondary-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #517241;
}
.btn-secondary-outline:hover,
.btn-secondary-outline:focus,
.btn-secondary-outline.focus,
.btn-secondary-outline.active {
  color: #2a3b22 !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: #517241 !important;
  border-color: #517241 !important;
}
.btn-info-outline,
.btn-info-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #dcd7d0;
}
.btn-info-outline:hover,
.btn-info-outline:focus,
.btn-info-outline.focus,
.btn-info-outline.active {
  color: #b7ad9e !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-info-outline.disabled,
.btn-info-outline:disabled {
  color: #63594a !important;
  background-color: #dcd7d0 !important;
  border-color: #dcd7d0 !important;
}
.btn-success-outline,
.btn-success-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #353535;
}
.btn-success-outline:hover,
.btn-success-outline:focus,
.btn-success-outline.focus,
.btn-success-outline.active {
  color: #0a0a0a !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: #353535 !important;
  border-color: #353535 !important;
}
.btn-warning-outline,
.btn-warning-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ffe161;
}
.btn-warning-outline:hover,
.btn-warning-outline:focus,
.btn-warning-outline.focus,
.btn-warning-outline.active {
  color: #ffd10a !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-warning-outline.disabled,
.btn-warning-outline:disabled {
  color: #614f00 !important;
  background-color: #ffe161 !important;
  border-color: #ffe161 !important;
}
.btn-danger-outline,
.btn-danger-outline:active {
  background-color: transparent !important;
  border-color: transparent;
  color: #ff9966;
}
.btn-danger-outline:hover,
.btn-danger-outline:focus,
.btn-danger-outline.focus,
.btn-danger-outline.active {
  color: #ff5f0f !important;
  background-color: transparent!important;
  border-color: transparent!important;
  box-shadow: none!important;
}
.btn-danger-outline.disabled,
.btn-danger-outline:disabled {
  color: #ffffff !important;
  background-color: #ff9966 !important;
  border-color: #ff9966 !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: #719f4b !important;
}
.text-secondary {
  color: #517241 !important;
}
.text-success {
  color: #353535 !important;
}
.text-info {
  color: #dcd7d0 !important;
}
.text-warning {
  color: #ffe161 !important;
}
.text-danger {
  color: #ff9966 !important;
}
.text-white {
  color: #fafafa !important;
}
.text-black {
  color: #232323 !important;
}
a.text-primary:hover,
a.text-primary:focus,
a.text-primary.active {
  color: #405a2a !important;
}
a.text-secondary:hover,
a.text-secondary:focus,
a.text-secondary.active {
  color: #23311c !important;
}
a.text-success:hover,
a.text-success:focus,
a.text-success.active {
  color: #020202 !important;
}
a.text-info:hover,
a.text-info:focus,
a.text-info.active {
  color: #b0a596 !important;
}
a.text-warning:hover,
a.text-warning:focus,
a.text-warning.active {
  color: #facb00 !important;
}
a.text-danger:hover,
a.text-danger:focus,
a.text-danger.active {
  color: #ff5500 !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: #719f4b;
}
.nav-tabs .nav-link:not(.active) {
  color: #232323;
}
.alert-success {
  background-color: #70c770;
}
.alert-info {
  background-color: #dcd7d0;
}
.alert-warning {
  background-color: #ffe161;
}
.alert-danger {
  background-color: #ff9966;
}
.mbr-gallery-filter li.active .btn {
  background-color: #719f4b;
  border-color: #719f4b;
  color: #ffffff;
}
.mbr-gallery-filter li.active .btn:focus {
  box-shadow: none;
}
a,
a:hover {
  color: #719f4b;
}
.mbr-plan-header.bg-primary .mbr-plan-subtitle,
.mbr-plan-header.bg-primary .mbr-plan-price-desc {
  color: #b2cf9a;
}
.mbr-plan-header.bg-success .mbr-plan-subtitle,
.mbr-plan-header.bg-success .mbr-plan-price-desc {
  color: #a8a8a8;
}
.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*/
.scrollToTop_wraper {
  display: none;
}
.form-control {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control > .mbr-iconfont {
  font-size: 1rem;
}
.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: #719f4b !important;
}
.form-control:-webkit-input-placeholder {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  line-height: 1.5;
  font-weight: 400;
}
.form-control:-webkit-input-placeholder > .mbr-iconfont {
  font-size: 1rem;
}
blockquote {
  border-color: #719f4b;
}
/* Forms */
.jq-selectbox li:hover,
.jq-selectbox li.selected {
  background-color: #719f4b;
  color: #ffffff;
}
.jq-number__spin {
  transition: 0.25s ease;
}
.jq-number__spin:hover {
  border-color: #719f4b;
}
.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: #719f4b;
  border-bottom-color: #719f4b;
}
.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: #719f4b !important;
  box-shadow: none !important;
}
.xdsoft_datetimepicker .xdsoft_calendar td:hover,
.xdsoft_datetimepicker .xdsoft_timepicker .xdsoft_time_box > div > div:hover {
  color: #ffffff !important;
  background: #517241 !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='%23719f4b' %3e%3cg fill='none' fill-rule='evenodd'%3e%3cg transform='translate(16 16)' stroke-width='2'%3e%3ccircle stroke-opacity='.5' cx='16' cy='16' r='16'/%3e%3cpath d='M32 16c0-9.94-8.06-16-16-16'%3e%3canimateTransform attributeName='transform' type='rotate' from='0 16 16' to='360 16 16' dur='1s' repeatCount='indefinite'/%3e%3c/path%3e%3c/g%3e%3c/g%3e%3c/svg%3e");
}
section.lazy-placeholder:after {
  opacity: 0.5;
}
body {
  overflow-x: hidden;
}
a {
  transition: color 0.6s;
}
.cid-twNKdI7DMJ .navbar {
  background: #fafafa;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  min-height: 77px;
}
@media (min-width: 1200px) {
  .cid-twNKdI7DMJ .navbar .dropdown .dropdown-menu .dropdown-item {
    padding: 0.835em 2.5385em 0.835em 3.5385em !important;
    margin: 0 !important;
  }
  .cid-twNKdI7DMJ .navbar .dropdown .dropdown-menu .dropdown-item:hover {
    padding: 0.835em 2.5385em 0.835em 3.8385em !important;
  }
}
.cid-twNKdI7DMJ .menu-logo {
  display: flex;
  position: relative;
  -webkit-box-align: left;
  align-items: left;
  margin-right: auto;
}
.cid-twNKdI7DMJ .menu-logo .navbar-brand {
  display: flex;
  padding: 0.5rem 0;
  -webkit-transition: padding 0.2s;
  transition: padding 0.2s;
  min-height: 3.8rem;
  -webkit-box-align: Left;
  align-items: left;
}
.cid-twNKdI7DMJ .menu-logo .navbar-brand .navbar-caption-wrap {
  display: flex;
  -webkit-box-align: left;
  align-items: Left;
  word-break: break-word;
  min-width: 7rem;
  margin: 0.3rem 0;
}
.cid-twNKdI7DMJ .menu-logo .navbar-brand .navbar-caption-wrap .navbar-caption {
  line-height: 1.2rem !important;
  padding-right: 2rem;
}
.cid-twNKdI7DMJ .menu-logo .navbar-brand .navbar-logo {
  font-size: 4rem;
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-twNKdI7DMJ .menu-logo .navbar-brand .navbar-logo img {
  display: flex;
  width: auto;
}
.cid-twNKdI7DMJ .menu-logo .navbar-brand .navbar-logo .mbr-iconfont {
  -webkit-transition: font-size 0.25s;
  transition: font-size 0.25s;
}
.cid-twNKdI7DMJ .navbar-dropdown.bg-color.transparent.opened {
  background: #fafafa;
}
.cid-twNKdI7DMJ .navbar.opened {
  text-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
  margin-left: auto;
  max-width: 20rem;
  height: auto;
  -webkit-box-pack: start;
  justify-content: flex-start;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  background: #333333 !important;
}
.cid-twNKdI7DMJ .navbar.opened .collapse .dropdown-item {
  color: #192d5a;
}
.cid-twNKdI7DMJ .navbar.opened a.brand-link {
  color: #ffffff;
}
.cid-twNKdI7DMJ .navbar-fixed-top.opened {
  position: relative;
}
.cid-twNKdI7DMJ a {
  font-style: normal;
}
.cid-twNKdI7DMJ .nav-item span {
  padding-right: 0.4em;
  line-height: 0.5em;
  vertical-align: middle;
  position: relative;
  text-decoration: none;
}
.cid-twNKdI7DMJ .nav-item a {
  padding: 0.4rem 0 !important;
}
.cid-twNKdI7DMJ .nav-item .nav-link {
  color: #192d5a;
}
.cid-twNKdI7DMJ .nav-item .nav-link.display-4 {
  font-size: 15px;
}
.cid-twNKdI7DMJ .widget-icon {
  display: inline-block;
  padding: 0.9rem;
  font-size: 1.25rem;
  margin-right: 10px;
  color: #4f87fb;
  border-radius: 50%;
  border: 1px solid #eee;
  font-weight: bold;
}
.cid-twNKdI7DMJ .info-widget {
  padding-left: 2rem;
  padding-top: 0.5rem;
  padding-right: 3rem;
}
.cid-twNKdI7DMJ .menu-content-right {
  display: flex;
  padding: 28px 0;
  -webkit-box-align: center;
  align-items: center;
}
.cid-twNKdI7DMJ .menu-content-right .info-widget:last-child {
  padding-right: 0;
}
.cid-twNKdI7DMJ .menu-content-right .info-widget:first-child {
  padding-left: 0;
}
@media (max-width: 1200px) {
  .cid-twNKdI7DMJ .menu-content-right {
    display: none;
  }
}
.cid-twNKdI7DMJ .widget-content {
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  padding-bottom: 0.7rem;
}
.cid-twNKdI7DMJ .widget-content .widget-title {
  margin-bottom: 7px;
}
.cid-twNKdI7DMJ .widget-content .widget-text {
  margin-bottom: 0;
}
.cid-twNKdI7DMJ .widget-content .widget-text.display-4 {
  font-size: 13px;
}
.cid-twNKdI7DMJ .right-box .navbar-buttons .content-link {
  color: #ffffff;
  border-left: 1px solid #353535;
}
.cid-twNKdI7DMJ .right-box .navbar-buttons .content-link:first-child {
  border-left: none !important;
}
.cid-twNKdI7DMJ .right-box .navbar-buttons .btn {
  margin: 0;
  padding: 1.89rem 1.5rem !important;
  border-radius: 0 5px 5px 0 !important;
}
.cid-twNKdI7DMJ .right-box .navbar-buttons .btn.display-4 {
  font-size: 13px;
}
@media (max-width: 1200px) {
  .cid-twNKdI7DMJ .right-box {
    display: none;
  }
}
.cid-twNKdI7DMJ .dropdown-item:before {
  color: #ffffff;
  font-family: Material-Design-Icons !important;
  content: '\e716';
  display: inline-block;
  width: 0;
  position: absolute;
  left: 1.125rem;
  top: 1.1rem;
  margin-right: 0.5rem;
  line-height: 1;
  font-size: inherit;
  vertical-align: middle;
  text-align: center;
  overflow: hidden;
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-twNKdI7DMJ .dropdown-item:hover:before {
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  width: 16px;
}
.cid-twNKdI7DMJ .content-text {
  margin-bottom: 0;
}
.cid-twNKdI7DMJ .navbar-nav {
  padding-left: 15px;
  position: relative;
  min-height: 60px;
  color: #ffffff;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  flex-direction: row;
}
@media (min-width: 1200px) {
  .cid-twNKdI7DMJ .navbar-nav .main-menu-animated-line {
    position: absolute;
    left: 0;
    width: 0;
    height: 0;
    z-index: 100;
    border-top: 4px solid #719f4b;
    -webkit-transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
    transition: width 0.4s, left 0.6s cubic-bezier(0.19, 0.65, 0.02, 0.93);
  }
  .cid-twNKdI7DMJ .navbar-nav .main-menu-animated-line.bottom {
    bottom: 0;
  }
  .cid-twNKdI7DMJ .navbar-nav .nav-item a {
    margin: 0 1.3rem !important;
  }
}
@media (max-width: 1200px) {
  .cid-twNKdI7DMJ .navbar-nav .nav-item a {
    margin: 0 !important;
  }
}
.cid-twNKdI7DMJ .navbar-nav .nav-item span {
  padding-right: 0.1rem;
}
.cid-twNKdI7DMJ .display-4 > .mbr-iconfont {
  font-size: 1.8em;
}
.cid-twNKdI7DMJ .display-4 > .btn > .mbr-iconfont {
  font-size: 1.43em;
}
.cid-twNKdI7DMJ .nav-dropdown .dropdown-item {
  font-weight: 400;
}
.cid-twNKdI7DMJ .navbar-buttons.mbr-section-btn {
  display: flex;
  -webkit-box-align: center;
  align-items: center;
  -webkit-box-pack: center;
  justify-content: center;
}
.cid-twNKdI7DMJ .navbar-buttons.mbr-section-btn > .mbr-iconfont {
  font-size: 17px !important;
  margin-right: 13px;
}
.cid-twNKdI7DMJ .navbar-buttons.mbr-section-btn .content-link {
  padding-left: 1rem;
  padding-right: 1rem;
}
.cid-twNKdI7DMJ .nav-dropdown .link {
  font-weight: 600;
}
.cid-twNKdI7DMJ .menu .navbar-brand .logo-text-part {
  vertical-align: top;
}
.cid-twNKdI7DMJ .content-left-side {
  text-align: center;
  padding-top: 3px;
  border-left: 1px solid #eee;
  border-right: 1px solid #eee;
  padding-left: 15px;
  padding-right: 15px;
}
@media (max-width: 575px) {
  .cid-twNKdI7DMJ .content-left-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-twNKdI7DMJ .content-left-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-twNKdI7DMJ .content-left-side .content-link.display-4 {
  font-size: 16px !important;
}
.cid-twNKdI7DMJ .content-left-side .content-link {
  line-height: 3.4375;
}
.cid-twNKdI7DMJ .content-right-side {
  text-align: center;
}
@media (max-width: 575px) {
  .cid-twNKdI7DMJ .content-right-side {
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
    padding: 0.5rem 0;
  }
  .cid-twNKdI7DMJ .content-right-side .content-link {
    font-size: 0.8rem;
    margin: 0;
    padding-bottom: 1rem;
    display: flex;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
}
.cid-twNKdI7DMJ .menu-content-top {
  -webkit-transition: height 0.3s ease-in-out;
  transition: height 0.3s ease-in-out;
  padding-top: 0px;
}
.cid-twNKdI7DMJ .menu-content-bottom {
  padding-bottom: 0px;
}
@media (max-width: 1200px) {
  .cid-twNKdI7DMJ .menu-content-bottom {
    margin-bottom: 1rem;
  }
}
.cid-twNKdI7DMJ .menu-content-top.show {
  display: block;
}
.cid-twNKdI7DMJ .pre-header-right {
  align-self: center;
}
.cid-twNKdI7DMJ .pre-header-right .content-right-side .content-link {
  border-right: 1px solid #eee;
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  padding: 21px 12px;
}
.cid-twNKdI7DMJ .pre-header-right .content-right-side .content-link:hover {
  -webkit-transition: 0.3s all;
  transition: 0.3s all;
  background-color: #c4dcb0;
}
.cid-twNKdI7DMJ .pre-header-right .content-right-side .content-link:hover span {
  color: #000000;
}
.cid-twNKdI7DMJ .pre-header-right .content-right-side .content-link span {
  vertical-align: middle;
  font-size: 1.2rem;
  color: #777;
}
.cid-twNKdI7DMJ .pre-header-right .content-right-side .content-link:first-child {
  border-left: 1px solid #eee;
}
.cid-twNKdI7DMJ .pre-header-right .content-right-side .content-link:last-child {
  border-right: 1px solid #eee;
}
.cid-twNKdI7DMJ .navbar .menu-content-top {
  display: block;
  width: 100%;
}
@media (max-width: 1200px) {
  .cid-twNKdI7DMJ .content-left-side {
    text-align: center;
    padding-bottom: 1rem;
  }
  .cid-twNKdI7DMJ .navbar .menu-content-top {
    display: none;
  }
  .cid-twNKdI7DMJ .dropdown-item {
    padding: 0.235em 0 !important;
    margin: 0 !important;
    -webkit-transition: all 0.25s ease-in-out;
    -moz-transition: all 0.25s ease-in-out;
  }
  .cid-twNKdI7DMJ .dropdown-item:before {
    display: none;
  }
  .cid-twNKdI7DMJ .menu-logo {
    width: 100%;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: justify;
    justify-content: space-between;
  }
  .cid-twNKdI7DMJ img {
    height: 3.8rem !important;
  }
  .cid-twNKdI7DMJ .btn {
    display: flex;
  }
  .cid-twNKdI7DMJ button.navbar-toggler {
    display: block;
    align-self: center;
  }
  .cid-twNKdI7DMJ .navbar-brand {
    margin-left: 1rem !important;
    margin-top: 0.5rem;
  }
  .cid-twNKdI7DMJ .navbar-toggleable-sm {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    flex-direction: column;
  }
  .cid-twNKdI7DMJ .navbar-collapse {
    display: none !important;
    padding-right: 0 !important;
  }
  .cid-twNKdI7DMJ .navbar-collapse.collapsing,
  .cid-twNKdI7DMJ .navbar-collapse.show {
    display: block !important;
  }
  .cid-twNKdI7DMJ .navbar-collapse.collapsing .navbar-nav,
  .cid-twNKdI7DMJ .navbar-collapse.show .navbar-nav {
    display: block;
    text-align: left;
  }
  .cid-twNKdI7DMJ .navbar-collapse.collapsing .navbar-nav .nav-item,
  .cid-twNKdI7DMJ .navbar-collapse.show .navbar-nav .nav-item {
    clear: both;
    padding: 0.5rem 0;
  }
  .cid-twNKdI7DMJ .navbar-collapse.collapsing .navbar-buttons,
  .cid-twNKdI7DMJ .navbar-collapse.show .navbar-buttons {
    text-align: center;
  }
  .cid-twNKdI7DMJ .navbar-collapse.collapsing .navbar-buttons:last-child,
  .cid-twNKdI7DMJ .navbar-collapse.show .navbar-buttons:last-child {
    margin-bottom: 1rem;
  }
  .cid-twNKdI7DMJ .dropdown .dropdown-menu {
    width: 100%;
    text-align: center;
    position: relative;
    opacity: 0;
    display: block;
    height: 0;
    visibility: hidden;
    padding: 0;
    -webkit-transition-duration: 0.5s;
    transition-duration: 0.5s;
    -webkit-transition-property: opacity, padding, height;
    transition-property: opacity, padding, height;
  }
  .cid-twNKdI7DMJ .dropdown.open > .dropdown-menu {
    position: relative;
    opacity: 1;
    height: auto;
    padding: 1.4rem 0;
    visibility: visible;
  }
  .cid-twNKdI7DMJ .dropdown .dropdown-submenu {
    left: 0;
    text-align: center;
    width: 100%;
  }
  .cid-twNKdI7DMJ .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
    margin-top: 0;
    position: inherit;
    right: 0;
    top: 50%;
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.3em;
    vertical-align: middle;
    content: '';
    border-top: 0.3em solid;
    border-right: 0.3em solid transparent;
    border-left: 0.3em solid transparent;
  }
  .cid-twNKdI7DMJ .menu-content-middle {
    width: 100%;
  }
}
@media (min-width: 1200px) {
  .cid-twNKdI7DMJ .menu-content-top .row {
    -webkit-box-pack: justify;
    justify-content: space-between;
    flex-wrap: nowrap;
  }
  .cid-twNKdI7DMJ .content-right-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: end;
    justify-content: flex-end;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-twNKdI7DMJ .content-left-side {
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    -webkit-box-pack: start;
    justify-content: flex-start;
    flex-basis: 70%;
    flex-shrink: 0;
    flex-wrap: wrap;
    text-align: right;
  }
  .cid-twNKdI7DMJ .menu-content-top {
    border-bottom: 1px solid rgba(0, 0, 0, 0.12);
  }
  .cid-twNKdI7DMJ .navbar {
    display: block;
    padding: 0;
  }
  .cid-twNKdI7DMJ .navbar .menu-logo {
    margin-right: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
  }
  .cid-twNKdI7DMJ .navbar.navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
    -webkit-align-self: initial;
    align-self: auto;
    display: flex;
    -webkit-box-align: center;
    align-items: center;
    z-index: 101;
    min-height: 76px;
  }
  .cid-twNKdI7DMJ .navbar-toggler {
    display: none;
  }
}
.cid-twNKdI7DMJ .menu-area-wrapper {
  height: 39px;
  width: 100%;
}
.cid-twNKdI7DMJ .menu-area-wrapper .menu-area {
  background-color: #719f4b;
  position: relative;
  z-index: 9;
  border-radius: 5px;
  line-height: normal !important;
}
@media (max-width: 1200px) {
  .cid-twNKdI7DMJ .menu-area-wrapper .menu-area {
    background: transparent;
  }
}
@media (max-width: 1200px) {
  .cid-twNKdI7DMJ .menu-area-wrapper {
    height: 100%;
  }
}
.cid-twNKdI7DMJ .navbar-short {
  background: transparent;
}
.cid-twNKdI7DMJ .navbar-short .menu-content-top,
.cid-twNKdI7DMJ .navbar-short .menu-content-middle {
  display: none;
}
@media (max-width: 1200px) {
  .cid-twNKdI7DMJ .navbar-short .menu-area-wrapper {
    margin-top: 5rem;
  }
}
.cid-twNKdI7DMJ .btn {
  padding: 0.7rem 1.5rem;
  display: inline-flex;
  -webkit-box-align: center;
  align-items: center;
}
.cid-twNKdI7DMJ .btn .mbr-iconfont {
  font-size: 1.2em;
}
.cid-twNKdI7DMJ .navbar-toggleable-sm .navbar-collapse {
  -webkit-box-pack: end;
  justify-content: flex-end;
}
@media (max-width: 1200px) {
  .cid-twNKdI7DMJ .navbar-toggleable-sm .navbar-collapse {
    width: 300px;
    height: 100%;
    margin-left: 1rem;
    margin-top: 1rem;
  }
}
.cid-twNKdI7DMJ .navbar-toggleable-sm .navbar-collapse .navbar-nav {
  flex-wrap: wrap;
  padding-left: 15px;
}
.cid-twNKdI7DMJ .navbar-toggleable-sm .navbar-collapse .navbar-nav .nav-item {
  -webkit-align-self: center;
  align-self: center;
}
.cid-twNKdI7DMJ .navbar-toggleable-sm .navbar-collapse .navbar-buttons {
  padding-left: 0;
  padding-bottom: 0;
}
.cid-twNKdI7DMJ .dropdown {
  color: #353535 !important;
}
.cid-twNKdI7DMJ .dropdown .dropdown-menu {
  background: #fafafa;
  display: none;
  position: absolute;
  border-top: 3px solid #719f4b;
  min-width: 16.875rem;
  text-align: left;
  padding-top: 0;
  padding-bottom: 0;
  color: #353535 !important;
}
@media (max-width: 1200px) {
  .cid-twNKdI7DMJ .dropdown .dropdown-menu {
    overflow: hidden;
    border-top: none;
    background: #232323 !important;
  }
}
.cid-twNKdI7DMJ .dropdown .dropdown-menu .dropdown-item {
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
  padding-left: 10px !important;
}
.cid-twNKdI7DMJ .dropdown .dropdown-menu .dropdown-item::after {
  right: 1rem;
}
.cid-twNKdI7DMJ .dropdown .dropdown-menu .dropdown-item:hover {
  background-color: #517241;
  color: #ffffff;
}
.cid-twNKdI7DMJ .dropdown .dropdown-menu .dropdown-item:hover .mbr-iconfont:before {
  -webkit-transform: scale(0, 1);
  transform: scale(0, 1);
}
@media (max-width: 1200px) {
  .cid-twNKdI7DMJ .dropdown .dropdown-menu .dropdown-item:hover {
    background-color: #232323;
  }
}
.cid-twNKdI7DMJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont {
  margin-left: -1.8rem;
  padding-right: 1rem;
  font-size: inherit;
}
.cid-twNKdI7DMJ .dropdown .dropdown-menu .dropdown-item .mbr-iconfont:before {
  color: #ffffff;
  display: inline-block;
  -webkit-transform: scale(1, 1);
  transform: scale(1, 1);
  -webkit-transition: all 0.25s ease-in-out;
  transition: all 0.25s ease-in-out;
}
.cid-twNKdI7DMJ .dropdown .dropdown-menu .dropdown-submenu {
  margin: 0;
}
.cid-twNKdI7DMJ .dropdown.open > .dropdown-menu {
  display: block;
}
.cid-twNKdI7DMJ .navbar-toggleable-sm.opened:after {
  position: absolute;
  width: 100vw;
  height: 100vh;
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  left: 0;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  z-index: 1000;
  display: none;
}
.cid-twNKdI7DMJ .navbar.navbar-short {
  min-height: 50px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.cid-twNKdI7DMJ .navbar.navbar-short .navbar-logo a {
  font-size: 2.5rem !important;
  line-height: 2.5rem;
  -webkit-transition: font-size 0.3s;
  transition: font-size 0.3s;
}
.cid-twNKdI7DMJ .navbar.navbar-short .navbar-logo a .mbr-iconfont {
  font-size: 2.5rem !important;
}
.cid-twNKdI7DMJ .navbar.navbar-short .navbar-logo a img {
  height: 3rem !important;
}
.cid-twNKdI7DMJ .navbar.navbar-short .navbar-brand {
  min-height: 3rem;
}
.cid-twNKdI7DMJ button.navbar-toggler.collapsed .hamburger span {
  height: 2px;
}
.cid-twNKdI7DMJ button.navbar-toggler {
  width: 31px;
  height: 18px;
  cursor: pointer;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-twNKdI7DMJ button.navbar-toggler:focus {
  outline: none;
}
.cid-twNKdI7DMJ button.navbar-toggler .hamburger span {
  position: absolute;
  right: 0;
  width: 30px;
  height: 2px;
  border-radius: 20px;
  border-right: 5px;
  background-color: #719f4b;
}
.cid-twNKdI7DMJ button.navbar-toggler .hamburger span:nth-child(1) {
  top: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-twNKdI7DMJ button.navbar-toggler .hamburger span:nth-child(2) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-twNKdI7DMJ button.navbar-toggler .hamburger span:nth-child(3) {
  top: 8px;
  -webkit-transition: all 0.15s;
  transition: all 0.15s;
}
.cid-twNKdI7DMJ button.navbar-toggler .hamburger span:nth-child(4) {
  top: 16px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-twNKdI7DMJ nav.opened .hamburger span {
  height: 4px;
  background-color: #ffffff;
}
.cid-twNKdI7DMJ nav.opened .hamburger span:nth-child(1) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
.cid-twNKdI7DMJ nav.opened .hamburger span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-twNKdI7DMJ nav.opened .hamburger span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.cid-twNKdI7DMJ nav.opened .hamburger span:nth-child(4) {
  top: 8px;
  width: 0;
  opacity: 0;
  right: 50%;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.cid-twNKdI7DMJ .collapsed.navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-twNKdI7DMJ .collapsed .menu-logo {
  margin-right: 0;
}
.cid-twNKdI7DMJ .collapsed .btn {
  display: flex;
}
.cid-twNKdI7DMJ .collapsed .navbar-collapse {
  display: none !important;
  padding-right: 0 !important;
}
.cid-twNKdI7DMJ .collapsed .navbar-collapse.collapsing,
.cid-twNKdI7DMJ .collapsed .navbar-collapse.show {
  display: block !important;
  width: 100%;
}
.cid-twNKdI7DMJ .collapsed .navbar-collapse.collapsing .navbar-nav,
.cid-twNKdI7DMJ .collapsed .navbar-collapse.show .navbar-nav {
  display: block;
  text-align: left;
}
.cid-twNKdI7DMJ .collapsed .navbar-collapse.collapsing .navbar-nav .nav-item,
.cid-twNKdI7DMJ .collapsed .navbar-collapse.show .navbar-nav .nav-item {
  clear: both;
}
.cid-twNKdI7DMJ .collapsed .navbar-collapse.collapsing .navbar-buttons,
.cid-twNKdI7DMJ .collapsed .navbar-collapse.show .navbar-buttons {
  text-align: center;
}
.cid-twNKdI7DMJ .collapsed .navbar-collapse.collapsing .navbar-buttons:last-child,
.cid-twNKdI7DMJ .collapsed .navbar-collapse.show .navbar-buttons:last-child {
  margin-bottom: 1rem;
}
@media (min-width: 1200px) {
  .cid-twNKdI7DMJ .collapsed:not(.navbar-short) .navbar-collapse {
    max-height: calc(100vh - 5.1rem  - 3.5rem);
  }
  .cid-twNKdI7DMJ .collapsed .dropdown .dropdown-menu {
    overflow: hidden;
  }
}
.cid-twNKdI7DMJ .collapsed button.navbar-toggler {
  display: block;
  -webkit-align-self: center;
  align-self: center;
}
.cid-twNKdI7DMJ .collapsed .navbar-brand {
  margin-left: 1rem !important;
  margin-top: 0.5rem;
}
.cid-twNKdI7DMJ .collapsed .navbar-toggleable-sm {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  flex-direction: column;
}
.cid-twNKdI7DMJ .collapsed .dropdown .dropdown-menu {
  width: 100%;
  text-align: center;
  position: relative;
  opacity: 0;
  display: block;
  height: 0;
  visibility: hidden;
  padding: 0;
  -webkit-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-property: opacity, padding, height;
  transition-property: opacity, padding, height;
}
.cid-twNKdI7DMJ .collapsed .dropdown.open > .dropdown-menu {
  position: relative;
  opacity: 1;
  height: auto;
  padding: 1.4rem 0;
  visibility: visible;
}
.cid-twNKdI7DMJ .collapsed .dropdown .dropdown-submenu {
  left: 0;
  text-align: center;
  width: 100%;
}
.cid-twNKdI7DMJ .collapsed .dropdown .dropdown-toggle[data-toggle='dropdown-submenu']::after {
  margin-top: 0;
  position: inherit;
  right: 0;
  top: 50%;
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 0.3em;
  vertical-align: middle;
  content: '';
  border-top: 0.3em solid;
  border-right: 0.3em solid transparent;
  border-left: 0.3em solid transparent;
}
.cid-twNKdI7DMJ .collapsed .dropdown-item:before {
  display: none;
}
.cid-twNKdI7DMJ .navbar-dropdown {
  padding: 0rem 1rem;
  flex-wrap: nowrap;
}
.cid-twNKdI7DMJ .navbar-collapse {
  flex-basis: auto;
  display: flex;
}
.cid-twNKdI7DMJ .nav-link:focus {
  outline: none;
}
.cid-twNKdI7DMJ .navbar-toggler {
  position: relative;
}
.cid-twNKdI7DMJ .dropdown-item.active,
.cid-twNKdI7DMJ .dropdown-item:active {
  color: auto;
}
.cid-twNKdI7DMJ .dropdown-item:hover {
  color: #517241;
}
.cid-twNKdI7DMJ .widget-title,
.cid-twNKdI7DMJ .widget-icon {
  color: #719f4b;
}
.cid-twNKdI7DMJ .widget-text {
  color: #353535;
  text-align: left;
}
.cid-twNLkw2ytL {
  padding-top: 300px;
  padding-bottom: 30px;
  background-image: url("../../../assets/images/-ac9475fa-39b9-4752-be8d-66db4894c2d6-1024x1024.jpg");
}
.cid-twNLkw2ytL .mbr-iconfont2 {
  color: #719f4b;
}
.cid-twNLkw2ytL .mbr-iconfont {
  font-size: 3rem;
  transition: 0.7s;
}
.cid-twNLkw2ytL .card-inner {
  background-color: #fafafa;
  transition: 0.7s;
  z-index: 10;
}
.cid-twNLkw2ytL .btn {
  margin-left: 0rem;
  color: #101010 !important;
}
.cid-twNLkw2ytL .row {
  padding-bottom: 8rem;
}
.cid-twNLkw2ytL .link {
  margin: 0;
}
.cid-twNLkw2ytL .card-title {
  position: relative;
  margin-bottom: 1.3rem;
  padding-bottom: 0.5rem;
}
.cid-twNLkw2ytL .card-title:after {
  position: absolute;
  content: '';
  bottom: 0px;
  left: 0;
  right: 0;
  width: 40px;
  height: 2px;
  background: #719f4b;
  transition: 0.7s;
}
.cid-twNLkw2ytL .card-img {
  margin-bottom: 3.2rem;
}
.cid-twNLkw2ytL .link a {
  position: relative;
  letter-spacing: 2px;
}
.cid-twNLkw2ytL .card:hover .card-inner {
  background-color: #353535;
  box-shadow: 0px 10px 50px 10px rgba(0, 0, 0, 0.3);
}
.cid-twNLkw2ytL .card:hover .mbr-iconfont {
  color: #517241 !important;
}
.cid-twNLkw2ytL .card:hover .card-title {
  color: #ffffff;
}
.cid-twNLkw2ytL .card:hover .card-title:after {
  background: #517241;
}
.cid-twNLkw2ytL .card:hover .mbr-text {
  color: #ffffff;
}
.cid-twNLkw2ytL .media-container-row {
  align-items: flex-end;
}
.cid-twNLkw2ytL .mbr-section-title {
  margin-bottom: 1.5rem;
}
@media (max-width: 767px) {
  .cid-twNLkw2ytL .card {
    padding: 0;
    margin-bottom: 2rem;
  }
  .cid-twNLkw2ytL .card-inner {
    padding: 3rem 1rem;
  }
}
@media (min-width: 767px) {
  .cid-twNLkw2ytL .card-inner {
    padding: 3.4rem 2.5rem 3.6rem;
  }
}
@media (min-width: 767px) and (max-width: 992px) {
  .cid-twNLkw2ytL .card {
    margin-bottom: 2rem;
  }
  .cid-twNLkw2ytL .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
@media (min-width: 992px) {
  .cid-twNLkw2ytL .row {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}
.cid-twNLkw2ytL .card {
  position: relative;
}
.cid-twNLkw2ytL .card-3::after {
  content: '';
  background-color: #719f4b;
  height: 70px;
  width: 97%;
  position: absolute;
  bottom: -20px;
  z-index: 1;
}
.cid-twNLkw2ytL .card:first-child .card-inner {
  background-color: #719f4b;
}
.cid-twNLkw2ytL .card:first-child .card-inner .mbr-iconfont1 {
  color: #fafafa;
}
.cid-twNLkw2ytL .card:first-child .card-inner .card-title:after {
  background: #fafafa;
}
.cid-twNLkw2ytL .card:first-child .card-inner:hover .mbr-iconfont1 {
  color: #719f4b !important;
}
.cid-twNLkw2ytL .card:first-child .card-inner:hover .card-title:after {
  background: #719f4b;
}
.cid-twNLkw2ytL .card:first-child .card-inner:hover {
  background-color: #517241;
}
.cid-twNLkw2ytL .btn:hover {
  color: #ffffff !important;
}
.cid-twNLkw2ytL .line-title {
  width: 40px;
  height: 2px;
  background-color: #ff9966;
  margin-bottom: 1.2rem;
  display: inline-block;
}
.cid-twNLkw2ytL .line-title-big {
  width: 72px;
  height: 3px;
  background-color: #ff9966;
  margin-bottom: 2rem;
  display: inline-block;
}
.cid-twNLkw2ytL .block-title,
.cid-twNLkw2ytL .mbr-section-title,
.cid-twNLkw2ytL .line,
.cid-twNLkw2ytL .mbr-section-btn {
  color: #ffffff;
}
.cid-ub4L4iojtH {
  padding-top: 3rem;
  padding-bottom: 3rem;
  background-color: #fafafa;
}
.cid-ub4L4iojtH img,
.cid-ub4L4iojtH .item-img {
  width: 100%;
  height: 100%;
  height: 300px;
  object-fit: cover;
}
.cid-ub4L4iojtH .item:focus,
.cid-ub4L4iojtH span:focus {
  outline: none;
}
.cid-ub4L4iojtH .item {
  cursor: pointer;
  margin-bottom: 2rem;
}
.cid-ub4L4iojtH .item-wrapper {
  position: relative;
  border-radius: 4px;
  background: #719f4b;
  height: 100%;
  display: flex;
  flex-flow: column nowrap;
}
@media (min-width: 992px) {
  .cid-ub4L4iojtH .item-wrapper .item-content {
    padding: 2rem 2rem 0;
  }
  .cid-ub4L4iojtH .item-wrapper .item-footer {
    padding: 0 2rem 2rem;
  }
}
@media (max-width: 991px) {
  .cid-ub4L4iojtH .item-wrapper .item-content {
    padding: 1rem 1rem 0;
  }
  .cid-ub4L4iojtH .item-wrapper .item-footer {
    padding: 0 1rem 1rem;
  }
}
.cid-ub4L4iojtH .mbr-section-btn {
  margin-top: auto !important;
}
.cid-ub4L4iojtH .mbr-section-title {
  color: #232323;
}
.cid-ub4L4iojtH .mbr-text,
.cid-ub4L4iojtH .mbr-section-btn {
  text-align: left;
  color: #ffffff;
}
.cid-ub4L4iojtH .item-title {
  text-align: left;
  color: #ffffff;
}
.cid-ub4L4iojtH .item-subtitle {
  text-align: left;
  color: #ffffff;
}
.cid-ub4Nnoub1K {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #719f4b;
}
.cid-ub4Nnoub1K .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub4Nnoub1K .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub4Nnoub1K .content-wrapper {
  background: #fafafa;
}
@media (max-width: 991px) {
  .cid-ub4Nnoub1K .content-wrapper .row {
    flex-direction: column-reverse;
  }
  .cid-ub4Nnoub1K .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ub4Nnoub1K .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ub4Nnoub1K .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ub4Nnoub1K .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ub4Nnoub1K .content-wrapper .text-wrapper {
    padding-right: 2rem;
  }
}
.cid-ub4Nnoub1K .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ub4Nnoub1K .card-title {
  color: #517241;
}
.cid-ub4NoeDM0W {
  padding-top: 6rem;
  padding-bottom: 6rem;
  background-color: #fafafa;
}
.cid-ub4NoeDM0W .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub4NoeDM0W .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub4NoeDM0W .content-wrapper {
  background: #353535;
}
@media (max-width: 991px) {
  .cid-ub4NoeDM0W .content-wrapper .image-wrapper {
    margin-bottom: 2rem;
  }
}
@media (max-width: 767px) {
  .cid-ub4NoeDM0W .content-wrapper {
    padding: 1rem;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .cid-ub4NoeDM0W .content-wrapper {
    padding: 2rem;
  }
}
@media (min-width: 992px) {
  .cid-ub4NoeDM0W .content-wrapper {
    padding: 5rem 3rem;
  }
  .cid-ub4NoeDM0W .content-wrapper .text-wrapper {
    padding-left: 2rem;
  }
}
.cid-ub4NoeDM0W .image-wrapper img {
  width: 100%;
  object-fit: cover;
}
.cid-ub4NoeDM0W .mbr-text,
.cid-ub4NoeDM0W .mbr-section-btn {
  color: #ffffff;
}
.cid-ub4NoeDM0W .card-title {
  color: #ffffff;
}
.cid-uOGUiP89dP {
  padding-top: 30px;
  padding-bottom: 45px;
  overflow: hidden;
  background: #719f4b;
}
@media (min-width: 1330px) {
  .cid-uOGUiP89dP .container {
    max-width: 1330px !important;
  }
}
.cid-uOGUiP89dP .content-wrap {
  background-color: #517241;
}
.cid-uOGUiP89dP .card-wrap {
  margin-top: 5rem;
  margin-bottom: 5rem;
  padding: 5rem;
  background-color: #ffffff;
}
@media (min-width: 992px) {
  .cid-uOGUiP89dP .card-wrap {
    width: calc(100% + 10rem);
    margin-left: 46px;
    margin-left: -12.6rem;
  }
}
@media (max-width: 767px) {
  .cid-uOGUiP89dP .card-wrap {
    margin-top: 0;
    margin-bottom: 0;
    padding: 48px 20px 48px 20px;
  }
}
.cid-uOGUiP89dP .img-wrap {
  height: 100%;
}
.cid-uOGUiP89dP .img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}
.cid-uOGUiP89dP .mbr-section-subtitle {
  animation-delay: .2s;
}
.cid-uOGUiP89dP .mbr-section-btn {
  margin-top: 2rem;
  margin-bottom: -0.25rem;
  animation-delay: .4s;
}
.cid-uOGUiP89dP [class*="col"] {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
@media (min-width: 992px) {
  .cid-uOGUiP89dP .container {
    padding-left: 0 !important;
    padding-right: 0 !important;
  }
}
.cid-uOGUiP89dP .mbr-section-subtitle,
.cid-uOGUiP89dP .mbr-section-btn {
  color: #353535;
  text-align: left;
}
.cid-uOGUiP89dP H1 {
  text-align: left;
  color: #517241;
}
.cid-uOGXaF4sEU {
  padding-top: 5rem;
  padding-bottom: 5rem;
  background-color: #517241;
}
.cid-uOGXaF4sEU .mbr-fallback-image.disabled {
  display: none;
}
.cid-uOGXaF4sEU .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
@media (max-width: 992px) {
  .cid-uOGXaF4sEU .container {
    padding: 0 50px;
  }
}
@media (max-width: 768px) {
  .cid-uOGXaF4sEU .container {
    padding: 0 16px;
  }
}
.cid-uOGXaF4sEU .row {
  padding: 60px 64px;
  background-color: #fbfff9;
  justify-content: space-between;
  margin: 0;
  border-radius: 1rem;
}
@media (max-width: 1200px) {
  .cid-uOGXaF4sEU .row {
    padding: 32px 16px;
  }
}
@media (max-width: 992px) {
  .cid-uOGXaF4sEU .row {
    padding: 25px 9px;
  }
}
.cid-uOGXaF4sEU .title-wrapper .mbr-section-title {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uOGXaF4sEU .title-wrapper .mbr-section-title {
    margin-bottom: 32px;
  }
}
.cid-uOGXaF4sEU .image-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uOGXaF4sEU .image-wrapper {
    margin: 0 0 32px 0;
  }
}
.cid-uOGXaF4sEU .image-wrapper img {
  height: 400px;
  object-fit: cover;
  border-radius: .5rem !important;
}
@media (max-width: 992px) {
  .cid-uOGXaF4sEU .image-wrapper img {
    height: 350px;
  }
}
.cid-uOGXaF4sEU .content-wrapper {
  margin-bottom: 50px;
}
@media (max-width: 992px) {
  .cid-uOGXaF4sEU .content-wrapper {
    margin-bottom: 32px;
    height: auto;
  }
}
.cid-uOGXaF4sEU .content-wrapper .content-wrap .mbr-text {
  margin-bottom: 16px;
}
.cid-uOGXaF4sEU .items-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 4rem;
}
@media (max-width: 992px) {
  .cid-uOGXaF4sEU .items-wrapper {
    gap: 2rem;
  }
}
@media (max-width: 768px) {
  .cid-uOGXaF4sEU .items-wrapper {
    display: block;
  }
}
.cid-uOGXaF4sEU .items-wrapper .item {
  padding: 50px;
  background-color: #c4dcb0;
  border-radius: .5rem !important;
}
.cid-uOGXaF4sEU .items-wrapper .item:nth-child(2n) {
  background-color: #f3ffe9;
}
@media (max-width: 992px) {
  .cid-uOGXaF4sEU .items-wrapper .item {
    margin-bottom: 2rem;
    padding: 25px;
  }
}
.cid-uOGXaF4sEU .items-wrapper .item .item-wrapper .card-box .icon-wrapper {
  margin-bottom: 20px;
}
.cid-uOGXaF4sEU .items-wrapper .item .item-wrapper .card-box .icon-wrapper .mbr-iconfont {
  font-size: 40px;
  color: #000000;
  display: inline-flex;
}
.cid-uOGXaF4sEU .items-wrapper .item .item-wrapper .card-box .card-title {
  margin-bottom: 12px;
}
.cid-uOGXaF4sEU .items-wrapper .item .item-wrapper .card-box .card-text {
  margin-bottom: 0;
}
.cid-uOGXaF4sEU .card {
  justify-content: center;
}
.cid-uOGXaF4sEU .mbr-section-title {
  color: #517241;
  text-align: center;
}
.cid-uOGXaF4sEU .mbr-text {
  color: #000000;
}
.cid-uOGXaF4sEU .card-title {
  color: #000000;
}
.cid-uOGXaF4sEU .card-text {
  color: #000000;
  text-align: left;
}
.cid-uOGXaF4sEU .card-title,
.cid-uOGXaF4sEU .icon-wrapper {
  text-align: center;
}
.cid-ub4HOiyJw0 {
  padding-top: 4rem;
  padding-bottom: 3rem;
  background-color: #ffffff;
}
.cid-ub4HOiyJw0 .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub4HOiyJw0 .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub4HOiyJw0 .mbr-section-title {
  color: #517241;
}
.cid-uV5mHJr2UB {
  padding-top: 3rem;
  padding-bottom: 2rem;
  background-color: #719f4b;
}
.cid-uV5mHJr2UB .row {
  flex-direction: row-reverse;
}
.cid-uV5mHJr2UB .row {
  padding-bottom: 20px;
}
@media (min-width: 992px) {
  .cid-uV5mHJr2UB .row {
    padding-bottom: 40px;
  }
}
.cid-uV5mHJr2UB .mbr-section-head {
  display: flex;
}
@media (min-width: 992px) {
  .cid-uV5mHJr2UB .mbr-section-head {
    padding-left: 20px;
  }
}
.cid-uV5mHJr2UB .text-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.08);
  text-align: left;
  width: 100%;
  height: 100%;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-uV5mHJr2UB .text-container {
    padding: 40px;
  }
}
@media (min-width: 1200px) {
  .cid-uV5mHJr2UB .text-container {
    padding: 60px;
  }
}
@media (max-width: 575px) {
  .cid-uV5mHJr2UB .text-container {
    text-align: center!important;
  }
}
.cid-uV5mHJr2UB .mbr-section-title {
  color: #ffffff;
}
.cid-uV5mHJr2UB .mbr-section-subtitle {
  margin-top: 20px;
  color: #ffffff;
  opacity: 0.5;
}
.cid-uV5mHJr2UB .mbr-section-btn {
  margin-top: 20px;
}
@media (max-width: 575px) {
  .cid-uV5mHJr2UB .mbr-section-btn {
    display: flex;
    flex-wrap: wrap;
  }
  .cid-uV5mHJr2UB .mbr-section-btn .btn {
    width: 100%;
  }
}
.cid-uV5mHJr2UB .col-video {
  height: auto;
  display: flex;
  margin-top: 20px;
}
@media (min-width: 992px) {
  .cid-uV5mHJr2UB .col-video {
    margin-top: 0;
    padding-right: 20px;
  }
}
.cid-uV5mHJr2UB .col-video .box {
  display: flex;
  height: 100%;
  width: 100%;
  border-radius: 1rem;
}
.cid-uV5mHJr2UB .col-video .mbr-media {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: column;
  border-radius: 1rem;
}
.cid-uV5mHJr2UB .col-video .mbr-media img {
  height: 360px;
  flex-grow: 1;
  border-radius: 1rem;
}
@media (min-width: 992px) {
  .cid-uV5mHJr2UB .col-video .mbr-media img {
    height: 300px;
  }
}
@media (max-width: 767px) {
  .cid-uV5mHJr2UB .col-video .mbr-media img {
    height: auto;
  }
}
.cid-uV5mHJr2UB .col-video .mbr-media a:hover {
  background-image: none !important;
}
.cid-uV5mHJr2UB .mbr-media {
  position: relative;
}
.cid-uV5mHJr2UB .mbr-media img {
  width: 100%;
  object-fit: cover;
}
.cid-uV5mHJr2UB .icon-wrap {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  position: absolute;
}
.cid-uV5mHJr2UB .mbr-media span {
  font-size: 4rem;
  transition: all 0.2s;
}
.cid-uV5mHJr2UB .modalWindow {
  position: fixed;
  z-index: 5000;
  left: 0;
  top: 0;
  background-color: rgba(61, 61, 61, 0.65);
  width: 100%;
  height: 100%;
}
.cid-uV5mHJr2UB .modalWindow .modalWindow-container {
  display: table-cell;
  vertical-align: middle;
}
.cid-uV5mHJr2UB .modalWindow .modalWindow-video {
  height: calc(44.9943757vw);
  width: 80vw;
  margin: 0 auto;
}
.cid-uV5mHJr2UB .close {
  position: fixed;
  opacity: 0.5;
  font-size: 22px;
  font-weight: 300;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: #fff;
  top: 2.5rem;
  right: 2.5rem;
  border: 2px solid #fff;
  text-shadow: none;
  z-index: 5;
  transition: opacity 0.3s ease;
  align-items: center;
  justify-content: center;
  display: flex;
}
.cid-uV5mHJr2UB .close:hover {
  opacity: 1;
  background: #000;
  color: #fff;
}
.cid-uV5mHJr2UB .mbr-fallback-image.disabled {
  display: none;
}
.cid-uV5mHJr2UB .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-uV5mHJr2UB .mbr-section-subtitle,
.cid-uV5mHJr2UB .mbr-section-btn {
  color: #ffffff;
}
.cid-ub4JCOiWWq {
  padding-top: 30px;
  padding-bottom: 30px;
  background-color: #fafafa;
}
.cid-ub4JCOiWWq .title {
  margin-bottom: 2rem;
}
.cid-ub4JCOiWWq .mbr-section-subtitle {
  color: #517241;
}
.cid-ub4JCOiWWq a:not([href]):not([tabindex]) {
  color: #fff;
  border-radius: 3px;
}
.cid-ub4JCOiWWq a.btn-white:not([href]):not([tabindex]) {
  color: #333;
}
.cid-ub4JCOiWWq .form-group {
  -webkit-flex-grow: 1;
  flex-grow: 1;
  max-width: 100%;
}
.cid-ub4JCOiWWq .input-group-btn {
  display: block;
  text-align: left;
}
.cid-ub4JCOiWWq h3 {
  color: #444;
  letter-spacing: 0.03em;
}
.cid-ub4JCOiWWq .form-control {
  border-radius: 0px !important;
  padding-left: 15px;
}
.cid-ub4JCOiWWq .google-map {
  width: 100%;
  height: 25rem;
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  filter: gray;
}
.cid-ub4JCOiWWq .google-map iframe {
  width: inherit;
  height: 100%;
}
.cid-ub4JCOiWWq .google-map [data-state-details] {
  color: #444444;
  font-family: Muli;
  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-ub4JCOiWWq .google-map[data-state] {
  background: #e9e5dc;
}
.cid-ub4JCOiWWq .google-map[data-state="loading"] [data-state-details] {
  display: none;
}
.cid-ub4JCOiWWq textarea.form-control {
  min-height: 154px;
}
@media (max-width: 991px) {
  .cid-ub4JCOiWWq .mbr-section-title {
    text-align: center;
  }
  .cid-ub4JCOiWWq .mbr-section-subtitle {
    text-align: center;
  }
  .cid-ub4JCOiWWq .input-group-btn {
    text-align: center;
  }
}
.cid-ub4JCOiWWq .mbr-fallback-image.disabled {
  display: none;
}
.cid-ub4JCOiWWq .mbr-fallback-image {
  display: block;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}
.cid-ub4JCOiWWq H2 {
  color: #517241;
}
.cid-twSRK2bneW .footer-head {
  width: 100%;
  position: relative;
  z-index: 5;
  background-color: #fafafa;
  border-bottom-left-radius: 40px;
  border-bottom-right-radius: 40px;
  overflow: hidden;
}
.cid-twSRK2bneW .img-bg {
  content: '';
  position: absolute;
  top: 0;
  right: 57%;
  bottom: 0;
  left: 0;
  background-color: #719f4b;
  border-top-right-radius: 190px;
  border-bottom-left-radius: 40px;
}
@media (max-width: 991px) {
  .cid-twSRK2bneW .img-bg {
    display: none;
  }
}
.cid-twSRK2bneW .container {
  display: flex;
  justify-content: center;
  max-width: 1160px;
}
@media (max-width: 991px) {
  .cid-twSRK2bneW .container {
    padding: 0 !important;
  }
}
.cid-twSRK2bneW .row {
  width: 100%;
  align-items: center;
}
.cid-twSRK2bneW .content-container {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  padding-left: 0 !important;
  padding-right: 0 !important;
  padding-top: 2rem;
  padding-bottom: 2rem;
}
@media (max-width: 991px) {
  .cid-twSRK2bneW .content-container {
    padding-top: 0;
    background-color: #fafafa;
  }
}
@media (max-width: 991px) {
  .cid-twSRK2bneW .col-brand {
    padding: 0 15px 65px 15px;
    padding-top: 2rem;
    border-bottom-left-radius: 40px;
    background-color: #719f4b;
  }
}
.cid-twSRK2bneW .col-links {
  display: flex;
  flex-wrap: wrap;
  padding: 10px;
}
@media (max-width: 991px) {
  .cid-twSRK2bneW .col-links {
    padding: 70px 15px 0 15px;
  }
}
.cid-twSRK2bneW .navbar-brand {
  display: flex;
  flex-basis: auto;
  word-break: break-word;
  min-height: 40px;
  flex-shrink: 0;
  align-items: center;
  margin-right: 0;
  margin-bottom: 20px;
  padding: 0;
  transition: all 0.3s;
  z-index: 1;
  font-weight: 700;
}
.cid-twSRK2bneW .navbar-brand .navbar-logo {
  margin-right: 0.5rem;
}
.cid-twSRK2bneW .navbar-brand .navbar-logo img {
  width: auto;
}
.cid-twSRK2bneW .navbar-brand .navbar-caption {
  line-height: inherit !important;
}
.cid-twSRK2bneW .navbar-brand .navbar-logo a {
  outline: none;
}
.cid-twSRK2bneW .brand-text {
  margin-top: 75px;
  margin-bottom: 0;
  color: #ffffff;
  opacity: 0.85;
  width: 100%;
}
@media (max-width: 991px) {
  .cid-twSRK2bneW .brand-text {
    margin-top: 45px;
  }
}
.cid-twSRK2bneW .mbr-section-subtitle {
  color: #719f4b;
  opacity: 0.85;
  margin-bottom: 10px;
}
.cid-twSRK2bneW .social-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.cid-twSRK2bneW .mbr-iconfont {
  font-size: 16px;
  color: #719f4b;
}
.cid-twSRK2bneW .soc-item {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
  margin-bottom: 15px;
  padding: 0;
  min-height: 28px;
  min-width: 28px;
}
.cid-twSRK2bneW .soc-item a {
  display: flex;
  align-items: center;
  justify-content: center;
}
.cid-twSRK2bneW .soc-item .mbr-iconfont {
  font-size: 28px;
  color: #719f4b !important;
}
@media (max-width: 991px) {
  .cid-twSRK2bneW .col-link {
    width: auto !important;
    max-width: 33.33333333%;
  }
}
@media (max-width: 767px) {
  .cid-twSRK2bneW .col-link {
    max-width: 100%;
    width: 100% !important;
  }
}
@media (max-width: 768px) {
  .cid-twSRK2bneW .col-link1 {
    margin-bottom: 30px;
  }
}
.cid-twSRK2bneW .col-link2 {
  padding-left: 30px;
}
@media (max-width: 768px) {
  .cid-twSRK2bneW .col-link2 {
    padding-left: 0;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .cid-twSRK2bneW .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 991px) {
  .cid-twSRK2bneW .col-link3 {
    padding-left: 70px;
  }
}
@media (max-width: 768px) {
  .cid-twSRK2bneW .col-link3 {
    padding-left: 0;
  }
}
.cid-twSRK2bneW .list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  color: #353535;
}
.cid-twSRK2bneW .list li {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-twSRK2bneW .list a {
  display: flex;
  align-items: center;
  line-height: 1.44;
}
.cid-twSRK2bneW .footer-copyright {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: -40px;
  background-color: #517241;
}
.cid-twSRK2bneW .col-copyright {
  padding: 85px 0 60px 0 !important;
}
@media (max-width: 991px) {
  .cid-twSRK2bneW .col-copyright {
    padding: 85px 10px 60px 10px !important;
  }
}
.cid-twSRK2bneW .copyright {
  color: #ffffff;
}
@media (max-width: 991px) {
  .cid-twSRK2bneW .copyright {
    text-align: center !important;
  }
}
